worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
90
node_modules/@mui/material/IconButton/IconButton.d.ts
generated
vendored
Normal file
90
node_modules/@mui/material/IconButton/IconButton.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { OverridableStringUnion } from '@mui/types';
|
||||
import { Theme } from "../styles/index.js";
|
||||
import { ExtendButtonBase, ExtendButtonBaseTypeMap } from "../ButtonBase/index.js";
|
||||
import { OverrideProps } from "../OverridableComponent/index.js";
|
||||
import { IconButtonClasses } from "./iconButtonClasses.js";
|
||||
export interface IconButtonPropsColorOverrides {}
|
||||
export interface IconButtonPropsSizeOverrides {}
|
||||
export interface IconButtonOwnProps {
|
||||
/**
|
||||
* The icon to display.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<IconButtonClasses>;
|
||||
/**
|
||||
* The color of the component.
|
||||
* It supports both default and custom theme colors, which can be added as shown in the
|
||||
* [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
|
||||
* @default 'default'
|
||||
*/
|
||||
color?: OverridableStringUnion<'inherit' | 'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning', IconButtonPropsColorOverrides>;
|
||||
/**
|
||||
* If `true`, the component is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disabled?: boolean;
|
||||
/**
|
||||
* If `true`, the keyboard focus ripple is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disableFocusRipple?: boolean;
|
||||
/**
|
||||
* If given, uses a negative margin to counteract the padding on one
|
||||
* side (this is often helpful for aligning the left or right
|
||||
* side of the icon with content above or below, without ruining the border
|
||||
* size and shape).
|
||||
* @default false
|
||||
*/
|
||||
edge?: 'start' | 'end' | false;
|
||||
/**
|
||||
* If `true`, the loading indicator is visible and the button is disabled.
|
||||
* If `true | false`, the loading wrapper is always rendered before the children to prevent [Google Translation Crash](https://github.com/mui/material-ui/issues/27853).
|
||||
* @default null
|
||||
*/
|
||||
loading?: boolean | null;
|
||||
/**
|
||||
* Element placed before the children if the button is in loading state.
|
||||
* The node should contain an element with `role="progressbar"` with an accessible name.
|
||||
* By default, it renders a `CircularProgress` that is labeled by the button itself.
|
||||
* @default <CircularProgress color="inherit" size={16} />
|
||||
*/
|
||||
loadingIndicator?: React.ReactNode;
|
||||
/**
|
||||
* The size of the component.
|
||||
* `small` is equivalent to the dense button styling.
|
||||
* @default 'medium'
|
||||
*/
|
||||
size?: OverridableStringUnion<'small' | 'medium' | 'large', IconButtonPropsSizeOverrides>;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
export type IconButtonTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'button'> = ExtendButtonBaseTypeMap<{
|
||||
props: AdditionalProps & IconButtonOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
}>;
|
||||
|
||||
/**
|
||||
* Refer to the [Icons](https://mui.com/material-ui/icons/) section of the documentation
|
||||
* regarding the available icon options.
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Button](https://mui.com/material-ui/react-button/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [IconButton API](https://mui.com/material-ui/api/icon-button/)
|
||||
* - inherits [ButtonBase API](https://mui.com/material-ui/api/button-base/)
|
||||
*/
|
||||
declare const IconButton: ExtendButtonBase<IconButtonTypeMap>;
|
||||
export type IconButtonProps<RootComponent extends React.ElementType = IconButtonTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<IconButtonTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
export default IconButton;
|
||||
327
node_modules/@mui/material/IconButton/IconButton.js
generated
vendored
Normal file
327
node_modules/@mui/material/IconButton/IconButton.js
generated
vendored
Normal file
|
|
@ -0,0 +1,327 @@
|
|||
"use strict";
|
||||
'use client';
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var React = _interopRequireWildcard(require("react"));
|
||||
var _propTypes = _interopRequireDefault(require("prop-types"));
|
||||
var _clsx = _interopRequireDefault(require("clsx"));
|
||||
var _chainPropTypes = _interopRequireDefault(require("@mui/utils/chainPropTypes"));
|
||||
var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
|
||||
var _utils = require("../utils");
|
||||
var _zeroStyled = require("../zero-styled");
|
||||
var _memoTheme = _interopRequireDefault(require("../utils/memoTheme"));
|
||||
var _createSimplePaletteValueFilter = _interopRequireDefault(require("../utils/createSimplePaletteValueFilter"));
|
||||
var _DefaultPropsProvider = require("../DefaultPropsProvider");
|
||||
var _ButtonBase = _interopRequireDefault(require("../ButtonBase"));
|
||||
var _CircularProgress = _interopRequireDefault(require("../CircularProgress"));
|
||||
var _capitalize = _interopRequireDefault(require("../utils/capitalize"));
|
||||
var _iconButtonClasses = _interopRequireWildcard(require("./iconButtonClasses"));
|
||||
var _jsxRuntime = require("react/jsx-runtime");
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
classes,
|
||||
disabled,
|
||||
color,
|
||||
edge,
|
||||
size,
|
||||
loading
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root', loading && 'loading', disabled && 'disabled', color !== 'default' && `color${(0, _capitalize.default)(color)}`, edge && `edge${(0, _capitalize.default)(edge)}`, `size${(0, _capitalize.default)(size)}`],
|
||||
loadingIndicator: ['loadingIndicator'],
|
||||
loadingWrapper: ['loadingWrapper']
|
||||
};
|
||||
return (0, _composeClasses.default)(slots, _iconButtonClasses.getIconButtonUtilityClass, classes);
|
||||
};
|
||||
const IconButtonRoot = (0, _zeroStyled.styled)(_ButtonBase.default, {
|
||||
name: 'MuiIconButton',
|
||||
slot: 'Root',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.root, ownerState.loading && styles.loading, ownerState.color !== 'default' && styles[`color${(0, _capitalize.default)(ownerState.color)}`], ownerState.edge && styles[`edge${(0, _capitalize.default)(ownerState.edge)}`], styles[`size${(0, _capitalize.default)(ownerState.size)}`]];
|
||||
}
|
||||
})((0, _memoTheme.default)(({
|
||||
theme
|
||||
}) => ({
|
||||
textAlign: 'center',
|
||||
flex: '0 0 auto',
|
||||
fontSize: theme.typography.pxToRem(24),
|
||||
padding: 8,
|
||||
borderRadius: '50%',
|
||||
color: (theme.vars || theme).palette.action.active,
|
||||
transition: theme.transitions.create('background-color', {
|
||||
duration: theme.transitions.duration.shortest
|
||||
}),
|
||||
variants: [{
|
||||
props: props => !props.disableRipple,
|
||||
style: {
|
||||
'--IconButton-hoverBg': theme.alpha((theme.vars || theme).palette.action.active, (theme.vars || theme).palette.action.hoverOpacity),
|
||||
'&:hover': {
|
||||
backgroundColor: 'var(--IconButton-hoverBg)',
|
||||
// Reset on touch devices, it doesn't add specificity
|
||||
'@media (hover: none)': {
|
||||
backgroundColor: 'transparent'
|
||||
}
|
||||
}
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
edge: 'start'
|
||||
},
|
||||
style: {
|
||||
marginLeft: -12
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
edge: 'start',
|
||||
size: 'small'
|
||||
},
|
||||
style: {
|
||||
marginLeft: -3
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
edge: 'end'
|
||||
},
|
||||
style: {
|
||||
marginRight: -12
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
edge: 'end',
|
||||
size: 'small'
|
||||
},
|
||||
style: {
|
||||
marginRight: -3
|
||||
}
|
||||
}]
|
||||
})), (0, _memoTheme.default)(({
|
||||
theme
|
||||
}) => ({
|
||||
variants: [{
|
||||
props: {
|
||||
color: 'inherit'
|
||||
},
|
||||
style: {
|
||||
color: 'inherit'
|
||||
}
|
||||
}, ...Object.entries(theme.palette).filter((0, _createSimplePaletteValueFilter.default)()) // check all the used fields in the style below
|
||||
.map(([color]) => ({
|
||||
props: {
|
||||
color
|
||||
},
|
||||
style: {
|
||||
color: (theme.vars || theme).palette[color].main
|
||||
}
|
||||
})), ...Object.entries(theme.palette).filter((0, _createSimplePaletteValueFilter.default)()) // check all the used fields in the style below
|
||||
.map(([color]) => ({
|
||||
props: {
|
||||
color
|
||||
},
|
||||
style: {
|
||||
'--IconButton-hoverBg': theme.alpha((theme.vars || theme).palette[color].main, (theme.vars || theme).palette.action.hoverOpacity)
|
||||
}
|
||||
})), {
|
||||
props: {
|
||||
size: 'small'
|
||||
},
|
||||
style: {
|
||||
padding: 5,
|
||||
fontSize: theme.typography.pxToRem(18)
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
size: 'large'
|
||||
},
|
||||
style: {
|
||||
padding: 12,
|
||||
fontSize: theme.typography.pxToRem(28)
|
||||
}
|
||||
}],
|
||||
[`&.${_iconButtonClasses.default.disabled}`]: {
|
||||
backgroundColor: 'transparent',
|
||||
color: (theme.vars || theme).palette.action.disabled
|
||||
},
|
||||
[`&.${_iconButtonClasses.default.loading}`]: {
|
||||
color: 'transparent'
|
||||
}
|
||||
})));
|
||||
const IconButtonLoadingIndicator = (0, _zeroStyled.styled)('span', {
|
||||
name: 'MuiIconButton',
|
||||
slot: 'LoadingIndicator'
|
||||
})(({
|
||||
theme
|
||||
}) => ({
|
||||
display: 'none',
|
||||
position: 'absolute',
|
||||
visibility: 'visible',
|
||||
top: '50%',
|
||||
left: '50%',
|
||||
transform: 'translate(-50%, -50%)',
|
||||
color: (theme.vars || theme).palette.action.disabled,
|
||||
variants: [{
|
||||
props: {
|
||||
loading: true
|
||||
},
|
||||
style: {
|
||||
display: 'flex'
|
||||
}
|
||||
}]
|
||||
}));
|
||||
|
||||
/**
|
||||
* Refer to the [Icons](/material-ui/icons/) section of the documentation
|
||||
* regarding the available icon options.
|
||||
*/
|
||||
const IconButton = /*#__PURE__*/React.forwardRef(function IconButton(inProps, ref) {
|
||||
const props = (0, _DefaultPropsProvider.useDefaultProps)({
|
||||
props: inProps,
|
||||
name: 'MuiIconButton'
|
||||
});
|
||||
const {
|
||||
edge = false,
|
||||
children,
|
||||
className,
|
||||
color = 'default',
|
||||
disabled = false,
|
||||
disableFocusRipple = false,
|
||||
size = 'medium',
|
||||
id: idProp,
|
||||
loading = null,
|
||||
loadingIndicator: loadingIndicatorProp,
|
||||
...other
|
||||
} = props;
|
||||
const loadingId = (0, _utils.unstable_useId)(idProp);
|
||||
const loadingIndicator = loadingIndicatorProp ?? /*#__PURE__*/(0, _jsxRuntime.jsx)(_CircularProgress.default, {
|
||||
"aria-labelledby": loadingId,
|
||||
color: "inherit",
|
||||
size: 16
|
||||
});
|
||||
const ownerState = {
|
||||
...props,
|
||||
edge,
|
||||
color,
|
||||
disabled,
|
||||
disableFocusRipple,
|
||||
loading,
|
||||
loadingIndicator,
|
||||
size
|
||||
};
|
||||
const classes = useUtilityClasses(ownerState);
|
||||
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(IconButtonRoot, {
|
||||
id: loading ? loadingId : idProp,
|
||||
className: (0, _clsx.default)(classes.root, className),
|
||||
centerRipple: true,
|
||||
focusRipple: !disableFocusRipple,
|
||||
disabled: disabled || loading,
|
||||
ref: ref,
|
||||
...other,
|
||||
ownerState: ownerState,
|
||||
children: [typeof loading === 'boolean' &&
|
||||
/*#__PURE__*/
|
||||
// use plain HTML span to minimize the runtime overhead
|
||||
(0, _jsxRuntime.jsx)("span", {
|
||||
className: classes.loadingWrapper,
|
||||
style: {
|
||||
display: 'contents'
|
||||
},
|
||||
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(IconButtonLoadingIndicator, {
|
||||
className: classes.loadingIndicator,
|
||||
ownerState: ownerState,
|
||||
children: loading && loadingIndicator
|
||||
})
|
||||
}), children]
|
||||
});
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? IconButton.propTypes /* remove-proptypes */ = {
|
||||
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
||||
// │ These PropTypes are generated from the TypeScript type definitions. │
|
||||
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* The icon to display.
|
||||
*/
|
||||
children: (0, _chainPropTypes.default)(_propTypes.default.node, props => {
|
||||
const found = React.Children.toArray(props.children).some(child => /*#__PURE__*/React.isValidElement(child) && child.props.onClick);
|
||||
if (found) {
|
||||
return new Error(['MUI: You are providing an onClick event listener to a child of a button element.', 'Prefer applying it to the IconButton directly.', 'This guarantees that the whole <button> will be responsive to click events.'].join('\n'));
|
||||
}
|
||||
return null;
|
||||
}),
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: _propTypes.default.object,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: _propTypes.default.string,
|
||||
/**
|
||||
* The color of the component.
|
||||
* It supports both default and custom theme colors, which can be added as shown in the
|
||||
* [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
|
||||
* @default 'default'
|
||||
*/
|
||||
color: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['inherit', 'default', 'primary', 'secondary', 'error', 'info', 'success', 'warning']), _propTypes.default.string]),
|
||||
/**
|
||||
* If `true`, the component is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disabled: _propTypes.default.bool,
|
||||
/**
|
||||
* If `true`, the keyboard focus ripple is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disableFocusRipple: _propTypes.default.bool,
|
||||
/**
|
||||
* If `true`, the ripple effect is disabled.
|
||||
*
|
||||
* ⚠️ Without a ripple there is no styling for :focus-visible by default. Be sure
|
||||
* to highlight the element by applying separate styles with the `.Mui-focusVisible` class.
|
||||
* @default false
|
||||
*/
|
||||
disableRipple: _propTypes.default.bool,
|
||||
/**
|
||||
* If given, uses a negative margin to counteract the padding on one
|
||||
* side (this is often helpful for aligning the left or right
|
||||
* side of the icon with content above or below, without ruining the border
|
||||
* size and shape).
|
||||
* @default false
|
||||
*/
|
||||
edge: _propTypes.default.oneOf(['end', 'start', false]),
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
id: _propTypes.default.string,
|
||||
/**
|
||||
* If `true`, the loading indicator is visible and the button is disabled.
|
||||
* If `true | false`, the loading wrapper is always rendered before the children to prevent [Google Translation Crash](https://github.com/mui/material-ui/issues/27853).
|
||||
* @default null
|
||||
*/
|
||||
loading: _propTypes.default.bool,
|
||||
/**
|
||||
* Element placed before the children if the button is in loading state.
|
||||
* The node should contain an element with `role="progressbar"` with an accessible name.
|
||||
* By default, it renders a `CircularProgress` that is labeled by the button itself.
|
||||
* @default <CircularProgress color="inherit" size={16} />
|
||||
*/
|
||||
loadingIndicator: _propTypes.default.node,
|
||||
/**
|
||||
* The size of the component.
|
||||
* `small` is equivalent to the dense button styling.
|
||||
* @default 'medium'
|
||||
*/
|
||||
size: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['small', 'medium', 'large']), _propTypes.default.string]),
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object])
|
||||
} : void 0;
|
||||
var _default = exports.default = IconButton;
|
||||
40
node_modules/@mui/material/IconButton/iconButtonClasses.d.ts
generated
vendored
Normal file
40
node_modules/@mui/material/IconButton/iconButtonClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
export interface IconButtonClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** Styles applied to the root element if `edge="start"`. */
|
||||
edgeStart: string;
|
||||
/** Styles applied to the root element if `edge="end"`. */
|
||||
edgeEnd: string;
|
||||
/** Styles applied to the root element if `color="inherit"`. */
|
||||
colorInherit: string;
|
||||
/** Styles applied to the root element if `color="primary"`. */
|
||||
colorPrimary: string;
|
||||
/** Styles applied to the root element if `color="secondary"`. */
|
||||
colorSecondary: string;
|
||||
/** Styles applied to the root element if `color="error"`. */
|
||||
colorError: string;
|
||||
/** Styles applied to the root element if `color="info"`. */
|
||||
colorInfo: string;
|
||||
/** Styles applied to the root element if `color="success"`. */
|
||||
colorSuccess: string;
|
||||
/** Styles applied to the root element if `color="warning"`. */
|
||||
colorWarning: string;
|
||||
/** State class applied to the root element if `disabled={true}`. */
|
||||
disabled: string;
|
||||
/** Styles applied to the root element if `size="small"`. */
|
||||
sizeSmall: string;
|
||||
/** Styles applied to the root element if `size="medium"`. */
|
||||
sizeMedium: string;
|
||||
/** Styles applied to the root element if `size="large"`. */
|
||||
sizeLarge: string;
|
||||
/** Styles applied to the root element if `loading={true}`. */
|
||||
loading: string;
|
||||
/** Styles applied to the loadingIndicator element. */
|
||||
loadingIndicator: string;
|
||||
/** Styles applied to the loadingWrapper element. */
|
||||
loadingWrapper: string;
|
||||
}
|
||||
export type IconButtonClassKey = keyof IconButtonClasses;
|
||||
export declare function getIconButtonUtilityClass(slot: string): string;
|
||||
declare const iconButtonClasses: IconButtonClasses;
|
||||
export default iconButtonClasses;
|
||||
15
node_modules/@mui/material/IconButton/iconButtonClasses.js
generated
vendored
Normal file
15
node_modules/@mui/material/IconButton/iconButtonClasses.js
generated
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
exports.getIconButtonUtilityClass = getIconButtonUtilityClass;
|
||||
var _generateUtilityClasses = _interopRequireDefault(require("@mui/utils/generateUtilityClasses"));
|
||||
var _generateUtilityClass = _interopRequireDefault(require("@mui/utils/generateUtilityClass"));
|
||||
function getIconButtonUtilityClass(slot) {
|
||||
return (0, _generateUtilityClass.default)('MuiIconButton', slot);
|
||||
}
|
||||
const iconButtonClasses = (0, _generateUtilityClasses.default)('MuiIconButton', ['root', 'disabled', 'colorInherit', 'colorPrimary', 'colorSecondary', 'colorError', 'colorInfo', 'colorSuccess', 'colorWarning', 'edgeStart', 'edgeEnd', 'sizeSmall', 'sizeMedium', 'sizeLarge', 'loading', 'loadingIndicator', 'loadingWrapper']);
|
||||
var _default = exports.default = iconButtonClasses;
|
||||
4
node_modules/@mui/material/IconButton/index.d.ts
generated
vendored
Normal file
4
node_modules/@mui/material/IconButton/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export { default } from "./IconButton.js";
|
||||
export * from "./IconButton.js";
|
||||
export { default as iconButtonClasses } from "./iconButtonClasses.js";
|
||||
export * from "./iconButtonClasses.js";
|
||||
35
node_modules/@mui/material/IconButton/index.js
generated
vendored
Normal file
35
node_modules/@mui/material/IconButton/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
var _exportNames = {
|
||||
iconButtonClasses: true
|
||||
};
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _IconButton.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "iconButtonClasses", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _iconButtonClasses.default;
|
||||
}
|
||||
});
|
||||
var _IconButton = _interopRequireDefault(require("./IconButton"));
|
||||
var _iconButtonClasses = _interopRequireWildcard(require("./iconButtonClasses"));
|
||||
Object.keys(_iconButtonClasses).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
||||
if (key in exports && exports[key] === _iconButtonClasses[key]) return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _iconButtonClasses[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue