paradiego

This commit is contained in:
2024-09-18 13:34:19 -03:00
commit 3f0e204289
12510 changed files with 1486101 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
import * as React from 'react';
import { SxProps } from '@mui/system';
import { Theme } from '..';
import { ExtendButtonBase, ExtendButtonBaseTypeMap } from '../ButtonBase';
import { OverrideProps } from '../OverridableComponent';
import { TableSortLabelClasses } from './tableSortLabelClasses';
export interface TableSortLabelOwnProps {
/**
* If `true`, the label will have the active styling (should be true for the sorted column).
* @default false
*/
active?: boolean;
/**
* Label contents, the arrow will be appended automatically.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<TableSortLabelClasses>;
/**
* The current sort direction.
* @default 'asc'
*/
direction?: 'asc' | 'desc';
/**
* Hide sort icon when active is false.
* @default false
*/
hideSortIcon?: boolean;
/**
* Sort icon to use.
* @default ArrowDownwardIcon
*/
IconComponent?: React.JSXElementConstructor<{
className: string;
}>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
export type TableSortLabelTypeMap<
AdditionalProps = {},
RootComponent extends React.ElementType = 'span',
> = ExtendButtonBaseTypeMap<{
props: AdditionalProps & TableSortLabelOwnProps;
defaultComponent: RootComponent;
}>;
/**
* A button based label for placing inside `TableCell` for column sorting.
*
* Demos:
*
* - [Table](https://mui.com/material-ui/react-table/)
*
* API:
*
* - [TableSortLabel API](https://mui.com/material-ui/api/table-sort-label/)
* - inherits [ButtonBase API](https://mui.com/material-ui/api/button-base/)
*/
declare const TableSortLabel: ExtendButtonBase<TableSortLabelTypeMap>;
export type TableSortLabelProps<
RootComponent extends React.ElementType = TableSortLabelTypeMap['defaultComponent'],
AdditionalProps = {},
> = OverrideProps<TableSortLabelTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
component?: React.ElementType;
};
export default TableSortLabel;

View File

@@ -0,0 +1,179 @@
'use client';
import composeClasses from '@mui/utils/composeClasses';
import clsx from 'clsx';
import PropTypes from 'prop-types';
import * as React from 'react';
import ButtonBase from "../ButtonBase/index.js";
import ArrowDownwardIcon from "../internal/svg-icons/ArrowDownward.js";
import { styled } from "../zero-styled/index.js";
import memoTheme from "../utils/memoTheme.js";
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
import capitalize from "../utils/capitalize.js";
import tableSortLabelClasses, { getTableSortLabelUtilityClass } from "./tableSortLabelClasses.js";
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
const useUtilityClasses = ownerState => {
const {
classes,
direction,
active
} = ownerState;
const slots = {
root: ['root', active && 'active', `direction${capitalize(direction)}`],
icon: ['icon', `iconDirection${capitalize(direction)}`]
};
return composeClasses(slots, getTableSortLabelUtilityClass, classes);
};
const TableSortLabelRoot = styled(ButtonBase, {
name: 'MuiTableSortLabel',
slot: 'Root',
overridesResolver: (props, styles) => {
const {
ownerState
} = props;
return [styles.root, ownerState.active && styles.active];
}
})(memoTheme(({
theme
}) => ({
cursor: 'pointer',
display: 'inline-flex',
justifyContent: 'flex-start',
flexDirection: 'inherit',
alignItems: 'center',
'&:focus': {
color: (theme.vars || theme).palette.text.secondary
},
'&:hover': {
color: (theme.vars || theme).palette.text.secondary,
[`& .${tableSortLabelClasses.icon}`]: {
opacity: 0.5
}
},
[`&.${tableSortLabelClasses.active}`]: {
color: (theme.vars || theme).palette.text.primary,
[`& .${tableSortLabelClasses.icon}`]: {
opacity: 1,
color: (theme.vars || theme).palette.text.secondary
}
}
})));
const TableSortLabelIcon = styled('span', {
name: 'MuiTableSortLabel',
slot: 'Icon',
overridesResolver: (props, styles) => {
const {
ownerState
} = props;
return [styles.icon, styles[`iconDirection${capitalize(ownerState.direction)}`]];
}
})(memoTheme(({
theme
}) => ({
fontSize: 18,
marginRight: 4,
marginLeft: 4,
opacity: 0,
transition: theme.transitions.create(['opacity', 'transform'], {
duration: theme.transitions.duration.shorter
}),
userSelect: 'none',
variants: [{
props: {
direction: 'desc'
},
style: {
transform: 'rotate(0deg)'
}
}, {
props: {
direction: 'asc'
},
style: {
transform: 'rotate(180deg)'
}
}]
})));
/**
* A button based label for placing inside `TableCell` for column sorting.
*/
const TableSortLabel = /*#__PURE__*/React.forwardRef(function TableSortLabel(inProps, ref) {
const props = useDefaultProps({
props: inProps,
name: 'MuiTableSortLabel'
});
const {
active = false,
children,
className,
direction = 'asc',
hideSortIcon = false,
IconComponent = ArrowDownwardIcon,
...other
} = props;
const ownerState = {
...props,
active,
direction,
hideSortIcon,
IconComponent
};
const classes = useUtilityClasses(ownerState);
return /*#__PURE__*/_jsxs(TableSortLabelRoot, {
className: clsx(classes.root, className),
component: "span",
disableRipple: true,
ownerState: ownerState,
ref: ref,
...other,
children: [children, hideSortIcon && !active ? null : /*#__PURE__*/_jsx(TableSortLabelIcon, {
as: IconComponent,
className: clsx(classes.icon),
ownerState: ownerState
})]
});
});
process.env.NODE_ENV !== "production" ? TableSortLabel.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`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* If `true`, the label will have the active styling (should be true for the sorted column).
* @default false
*/
active: PropTypes.bool,
/**
* Label contents, the arrow will be appended automatically.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The current sort direction.
* @default 'asc'
*/
direction: PropTypes.oneOf(['asc', 'desc']),
/**
* Hide sort icon when active is false.
* @default false
*/
hideSortIcon: PropTypes.bool,
/**
* Sort icon to use.
* @default ArrowDownwardIcon
*/
IconComponent: PropTypes.elementType,
/**
* 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;
export default TableSortLabel;

5
node_modules/@mui/material/TableSortLabel/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
export { default } from './TableSortLabel';
export * from './TableSortLabel';
export { default as tableSortLabelClasses } from './tableSortLabelClasses';
export * from './tableSortLabelClasses';

3
node_modules/@mui/material/TableSortLabel/index.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
export { default } from "./TableSortLabel.js";
export { default as tableSortLabelClasses } from "./tableSortLabelClasses.js";
export * from "./tableSortLabelClasses.js";

View File

@@ -0,0 +1,6 @@
{
"sideEffects": false,
"module": "./index.js",
"main": "../node/TableSortLabel/index.js",
"types": "./index.d.ts"
}

View File

@@ -0,0 +1,24 @@
export interface TableSortLabelClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `direction="desc"`. */
directionDesc: string;
/** Styles applied to the root element if `direction="asc"`. */
directionAsc: string;
/** State class applied to the root element if `active={true}`. */
active: string;
/** Styles applied to the icon component. */
icon: string;
/** Styles applied to the icon component if `direction="desc"`.
* @deprecated Combine the [.MuiTableSortLabel-icon](/material-ui/api/table-sort-label/#table-sort-label-classes-icon) and [.MuiTableSortLabel-directionDesc](/material-ui/api/table-sort-label/#table-sort-label-classes-direction-desc) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
*/
iconDirectionDesc: string;
/** Styles applied to the icon component if `direction="asc"`.
* @deprecated Combine the [.MuiTableSortLabel-icon](/material-ui/api/table-sort-label/#table-sort-label-classes-icon) and [.MuiTableSortLabel-directionAsc](/material-ui/api/table-sort-label/#table-sort-label-classes-direction-asc) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
*/
iconDirectionAsc: string;
}
export type TableSortLabelClassKey = keyof TableSortLabelClasses;
export declare function getTableSortLabelUtilityClass(slot: string): string;
declare const tableSortLabelClasses: TableSortLabelClasses;
export default tableSortLabelClasses;

View File

@@ -0,0 +1,7 @@
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
import generateUtilityClass from '@mui/utils/generateUtilityClass';
export function getTableSortLabelUtilityClass(slot) {
return generateUtilityClass('MuiTableSortLabel', slot);
}
const tableSortLabelClasses = generateUtilityClasses('MuiTableSortLabel', ['root', 'active', 'icon', 'iconDirectionDesc', 'iconDirectionAsc', 'directionDesc', 'directionAsc']);
export default tableSortLabelClasses;