paradiego
This commit is contained in:
86
node_modules/@mui/material/Icon/Icon.d.ts
generated
vendored
Normal file
86
node_modules/@mui/material/Icon/Icon.d.ts
generated
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { OverridableStringUnion } from '@mui/types';
|
||||
import { Theme } from '../styles';
|
||||
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
|
||||
import { IconClasses } from './iconClasses';
|
||||
|
||||
export interface IconPropsSizeOverrides {}
|
||||
|
||||
export interface IconPropsColorOverrides {}
|
||||
|
||||
export interface IconOwnProps {
|
||||
/**
|
||||
* The base class applied to the icon. Defaults to 'material-icons', but can be changed to any
|
||||
* other base class that suits the icon font you're using (for example material-icons-rounded, fas, etc).
|
||||
* @default 'material-icons'
|
||||
*/
|
||||
baseClassName?: string;
|
||||
/**
|
||||
* The name of the icon font ligature.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<IconClasses>;
|
||||
/**
|
||||
* 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 'inherit'
|
||||
*/
|
||||
color?: OverridableStringUnion<
|
||||
| 'inherit'
|
||||
| 'action'
|
||||
| 'disabled'
|
||||
| 'primary'
|
||||
| 'secondary'
|
||||
| 'error'
|
||||
| 'info'
|
||||
| 'success'
|
||||
| 'warning',
|
||||
IconPropsColorOverrides
|
||||
>;
|
||||
/**
|
||||
* The fontSize applied to the icon. Defaults to 24px, but can be configure to inherit font size.
|
||||
* @default 'medium'
|
||||
*/
|
||||
fontSize?: OverridableStringUnion<
|
||||
'inherit' | 'large' | 'medium' | 'small',
|
||||
IconPropsSizeOverrides
|
||||
>;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
|
||||
export interface IconTypeMap<
|
||||
AdditionalProps = {},
|
||||
RootComponent extends React.ElementType = 'span',
|
||||
> {
|
||||
props: AdditionalProps & IconOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Icons](https://mui.com/material-ui/icons/)
|
||||
* - [Material Icons](https://mui.com/material-ui/material-icons/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [Icon API](https://mui.com/material-ui/api/icon/)
|
||||
*/
|
||||
declare const Icon: OverridableComponent<IconTypeMap> & { muiName: string };
|
||||
|
||||
export type IconProps<
|
||||
RootComponent extends React.ElementType = IconTypeMap['defaultComponent'],
|
||||
AdditionalProps = {},
|
||||
> = OverrideProps<IconTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
|
||||
export default Icon;
|
||||
187
node_modules/@mui/material/Icon/Icon.js
generated
vendored
Normal file
187
node_modules/@mui/material/Icon/Icon.js
generated
vendored
Normal file
@@ -0,0 +1,187 @@
|
||||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import clsx from 'clsx';
|
||||
import composeClasses from '@mui/utils/composeClasses';
|
||||
import capitalize from "../utils/capitalize.js";
|
||||
import { styled } from "../zero-styled/index.js";
|
||||
import memoTheme from "../utils/memoTheme.js";
|
||||
import createSimplePaletteValueFilter from "../utils/createSimplePaletteValueFilter.js";
|
||||
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
|
||||
import { getIconUtilityClass } from "./iconClasses.js";
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
color,
|
||||
fontSize,
|
||||
classes
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root', color !== 'inherit' && `color${capitalize(color)}`, `fontSize${capitalize(fontSize)}`]
|
||||
};
|
||||
return composeClasses(slots, getIconUtilityClass, classes);
|
||||
};
|
||||
const IconRoot = styled('span', {
|
||||
name: 'MuiIcon',
|
||||
slot: 'Root',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.root, ownerState.color !== 'inherit' && styles[`color${capitalize(ownerState.color)}`], styles[`fontSize${capitalize(ownerState.fontSize)}`]];
|
||||
}
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => ({
|
||||
userSelect: 'none',
|
||||
width: '1em',
|
||||
height: '1em',
|
||||
// Chrome fix for https://bugs.chromium.org/p/chromium/issues/detail?id=820541
|
||||
// To remove at some point.
|
||||
overflow: 'hidden',
|
||||
display: 'inline-block',
|
||||
// allow overflow hidden to take action
|
||||
textAlign: 'center',
|
||||
// support non-square icon
|
||||
flexShrink: 0,
|
||||
variants: [{
|
||||
props: {
|
||||
fontSize: 'inherit'
|
||||
},
|
||||
style: {
|
||||
fontSize: 'inherit'
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
fontSize: 'small'
|
||||
},
|
||||
style: {
|
||||
fontSize: theme.typography.pxToRem(20)
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
fontSize: 'medium'
|
||||
},
|
||||
style: {
|
||||
fontSize: theme.typography.pxToRem(24)
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
fontSize: 'large'
|
||||
},
|
||||
style: {
|
||||
fontSize: theme.typography.pxToRem(36)
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
color: 'action'
|
||||
},
|
||||
style: {
|
||||
color: (theme.vars || theme).palette.action.active
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
color: 'disabled'
|
||||
},
|
||||
style: {
|
||||
color: (theme.vars || theme).palette.action.disabled
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
color: 'inherit'
|
||||
},
|
||||
style: {
|
||||
color: undefined
|
||||
}
|
||||
}, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color]) => ({
|
||||
props: {
|
||||
color
|
||||
},
|
||||
style: {
|
||||
color: (theme.vars || theme).palette[color].main
|
||||
}
|
||||
}))]
|
||||
})));
|
||||
const Icon = /*#__PURE__*/React.forwardRef(function Icon(inProps, ref) {
|
||||
const props = useDefaultProps({
|
||||
props: inProps,
|
||||
name: 'MuiIcon'
|
||||
});
|
||||
const {
|
||||
baseClassName = 'material-icons',
|
||||
className,
|
||||
color = 'inherit',
|
||||
component: Component = 'span',
|
||||
fontSize = 'medium',
|
||||
...other
|
||||
} = props;
|
||||
const ownerState = {
|
||||
...props,
|
||||
baseClassName,
|
||||
color,
|
||||
component: Component,
|
||||
fontSize
|
||||
};
|
||||
const classes = useUtilityClasses(ownerState);
|
||||
return /*#__PURE__*/_jsx(IconRoot, {
|
||||
as: Component,
|
||||
className: clsx(baseClassName,
|
||||
// Prevent the translation of the text content.
|
||||
// The font relies on the exact text content to render the icon.
|
||||
'notranslate', classes.root, className),
|
||||
ownerState: ownerState,
|
||||
"aria-hidden": true,
|
||||
ref: ref,
|
||||
...other
|
||||
});
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? Icon.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 base class applied to the icon. Defaults to 'material-icons', but can be changed to any
|
||||
* other base class that suits the icon font you're using (for example material-icons-rounded, fas, etc).
|
||||
* @default 'material-icons'
|
||||
*/
|
||||
baseClassName: PropTypes.string,
|
||||
/**
|
||||
* The name of the icon font ligature.
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: PropTypes.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 'inherit'
|
||||
*/
|
||||
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['inherit', 'action', 'disabled', 'primary', 'secondary', 'error', 'info', 'success', 'warning']), PropTypes.string]),
|
||||
/**
|
||||
* The component used for the root node.
|
||||
* Either a string to use a HTML element or a component.
|
||||
*/
|
||||
component: PropTypes.elementType,
|
||||
/**
|
||||
* The fontSize applied to the icon. Defaults to 24px, but can be configure to inherit font size.
|
||||
* @default 'medium'
|
||||
*/
|
||||
fontSize: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['inherit', 'large', 'medium', 'small']), PropTypes.string]),
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
||||
} : void 0;
|
||||
if (Icon) {
|
||||
Icon.muiName = 'Icon';
|
||||
}
|
||||
export default Icon;
|
||||
24
node_modules/@mui/material/Icon/iconClasses.d.ts
generated
vendored
Normal file
24
node_modules/@mui/material/Icon/iconClasses.d.ts
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
export interface IconClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: 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="action"`. */
|
||||
colorAction: string;
|
||||
/** Styles applied to the root element if `color="error"`. */
|
||||
colorError: string;
|
||||
/** Styles applied to the root element if `color="disabled"`. */
|
||||
colorDisabled: string;
|
||||
/** Styles applied to the root element if `fontSize="inherit"`. */
|
||||
fontSizeInherit: string;
|
||||
/** Styles applied to the root element if `fontSize="small"`. */
|
||||
fontSizeSmall: string;
|
||||
/** Styles applied to the root element if `fontSize="large"`. */
|
||||
fontSizeLarge: string;
|
||||
}
|
||||
export type IconClassKey = keyof IconClasses;
|
||||
export declare function getIconUtilityClass(slot: string): string;
|
||||
declare const iconClasses: IconClasses;
|
||||
export default iconClasses;
|
||||
7
node_modules/@mui/material/Icon/iconClasses.js
generated
vendored
Normal file
7
node_modules/@mui/material/Icon/iconClasses.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
export function getIconUtilityClass(slot) {
|
||||
return generateUtilityClass('MuiIcon', slot);
|
||||
}
|
||||
const iconClasses = generateUtilityClasses('MuiIcon', ['root', 'colorPrimary', 'colorSecondary', 'colorAction', 'colorError', 'colorDisabled', 'fontSizeInherit', 'fontSizeSmall', 'fontSizeMedium', 'fontSizeLarge']);
|
||||
export default iconClasses;
|
||||
5
node_modules/@mui/material/Icon/index.d.ts
generated
vendored
Normal file
5
node_modules/@mui/material/Icon/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export { default } from './Icon';
|
||||
export * from './Icon';
|
||||
|
||||
export { default as iconClasses } from './iconClasses';
|
||||
export * from './iconClasses';
|
||||
3
node_modules/@mui/material/Icon/index.js
generated
vendored
Normal file
3
node_modules/@mui/material/Icon/index.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export { default } from "./Icon.js";
|
||||
export { default as iconClasses } from "./iconClasses.js";
|
||||
export * from "./iconClasses.js";
|
||||
6
node_modules/@mui/material/Icon/package.json
generated
vendored
Normal file
6
node_modules/@mui/material/Icon/package.json
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"sideEffects": false,
|
||||
"module": "./index.js",
|
||||
"main": "../node/Icon/index.js",
|
||||
"types": "./index.d.ts"
|
||||
}
|
||||
Reference in New Issue
Block a user