@max-ts/components 0.1.1 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/_virtual/jsx-runtime.mjs +5 -0
- package/lib/_virtual/jsx-runtime2.mjs +4 -0
- package/lib/_virtual/react-jsx-runtime.development.mjs +4 -0
- package/lib/_virtual/react-jsx-runtime.production.mjs +4 -0
- package/lib/components/Accordion/Accordion.d.ts +39 -0
- package/lib/components/Accordion/Accordion.mjs +35 -0
- package/lib/components/Accordion/styles.d.ts +21 -0
- package/lib/components/Accordion/styles.mjs +25 -0
- package/lib/components/ActionCell/ActionCell.d.ts +24 -0
- package/lib/components/ActionCell/ActionCell.mjs +40 -0
- package/lib/components/ActionCell/MainAction/MainAction.d.ts +13 -0
- package/lib/components/ActionCell/MainAction/MainAction.mjs +78 -0
- package/lib/components/ActionCell/SecondaryAction/SecondaryActions.d.ts +13 -0
- package/lib/components/ActionCell/SecondaryAction/SecondaryActions.mjs +34 -0
- package/lib/components/ActionCell/styles.d.ts +1 -0
- package/lib/components/ActionCell/styles.mjs +8 -0
- package/lib/components/ActionCell/types.d.ts +66 -0
- package/lib/components/ActionCell/useLogic/useLogic.d.ts +11 -0
- package/lib/components/ActionCell/useLogic/useLogic.mjs +23 -0
- package/lib/components/AsyncAutocomplete/AsyncAutocomplete.d.ts +61 -0
- package/lib/components/AsyncAutocomplete/AsyncAutocomplete.mjs +45 -0
- package/lib/components/AsyncAutocomplete/constants.mjs +7 -0
- package/lib/components/AsyncAutocomplete/useLogic/useLogic.d.ts +12 -0
- package/lib/components/AsyncAutocomplete/useLogic/useLogic.mjs +47 -0
- package/lib/components/Autocomplete/Autocomplete.d.ts +47 -0
- package/lib/components/Autocomplete/Autocomplete.mjs +134 -0
- package/lib/components/Autocomplete/constants.mjs +5 -0
- package/lib/components/Autocomplete/enums.mjs +4 -0
- package/lib/components/Autocomplete/styles.d.ts +7 -0
- package/lib/components/Autocomplete/styles.mjs +12 -0
- package/lib/components/Autocomplete/useLogic/useLogic.d.ts +15 -0
- package/lib/components/Autocomplete/useLogic/useLogic.mjs +34 -0
- package/lib/components/Autocomplete/useLogic/utils/checkIsInputEmpty/checkIsInputEmpty.mjs +4 -0
- package/lib/components/Badge/Badge.d.ts +18 -0
- package/lib/components/Badge/Badge.mjs +23 -0
- package/lib/components/Badge/styles.d.ts +8 -0
- package/lib/components/Badge/styles.mjs +73 -0
- package/lib/components/BottomDrawer/BottomDrawer.d.ts +15 -0
- package/lib/components/BottomDrawer/BottomDrawer.mjs +26 -0
- package/lib/components/BottomDrawer/constants.mjs +5 -0
- package/lib/components/BottomDrawer/styles.d.ts +20 -0
- package/lib/components/BottomDrawer/styles.mjs +34 -0
- package/lib/components/Button/Button.d.ts +35 -0
- package/lib/components/Button/Button.mjs +38 -0
- package/lib/components/Button/constants.mjs +4 -0
- package/lib/components/Button/enums.mjs +7 -0
- package/lib/components/Button/styles.d.ts +5 -0
- package/lib/components/Button/styles.mjs +17 -0
- package/lib/components/Button/types.d.ts +19 -0
- package/lib/components/Button/useLogic/useLogic.d.ts +5 -0
- package/lib/components/Button/useLogic/useLogic.mjs +9 -0
- package/lib/components/Checkbox/Checkbox.d.ts +9 -0
- package/lib/components/Checkbox/Checkbox.mjs +24 -0
- package/lib/components/Checkbox/icons.d.ts +4 -0
- package/lib/components/Checkbox/icons.mjs +45 -0
- package/lib/components/Checkbox/styles.d.ts +5 -0
- package/lib/components/Checkbox/styles.mjs +65 -0
- package/lib/components/CheckboxField/CheckboxField.d.ts +24 -0
- package/lib/components/CheckboxField/CheckboxField.mjs +41 -0
- package/lib/components/CheckboxField/styles.d.ts +8 -0
- package/lib/components/CheckboxField/styles.mjs +12 -0
- package/lib/components/Chevron/Chevron.d.ts +7 -0
- package/lib/components/Chevron/Chevron.mjs +6 -0
- package/lib/components/Chevron/styles.d.ts +5 -0
- package/lib/components/Chevron/styles.mjs +16 -0
- package/lib/components/CircularProgress/CircularProgress.d.ts +19 -0
- package/lib/components/CircularProgress/CircularProgress.mjs +18 -0
- package/lib/components/CircularProgress/constants.mjs +4 -0
- package/lib/components/CircularProgress/useLogic/useLogic.d.ts +6 -0
- package/lib/components/CircularProgress/useLogic/useLogic.mjs +4 -0
- package/lib/components/Collapse/Collapse.d.ts +4 -0
- package/lib/components/Collapse/Collapse.mjs +6 -0
- package/lib/components/ConfigProvider/ConfigProvider.d.ts +91 -0
- package/lib/components/ConfigProvider/ConfigProvider.mjs +53 -0
- package/lib/components/ConfirmAction/ConfirmAction.d.ts +38 -0
- package/lib/components/ConfirmAction/ConfirmAction.mjs +43 -0
- package/lib/components/ConfirmAction/constants.mjs +11 -0
- package/lib/components/ConfirmAction/styles.d.ts +16 -0
- package/lib/components/ConfirmAction/styles.mjs +17 -0
- package/lib/components/ConfirmAction/useLogic/useLogic.d.ts +22 -0
- package/lib/components/ConfirmAction/useLogic/useLogic.mjs +36 -0
- package/lib/components/ConfirmDialog/ConfirmDialog.d.ts +37 -0
- package/lib/components/ConfirmDialog/ConfirmDialog.mjs +26 -0
- package/lib/components/ConfirmDialog/styles.d.ts +9 -0
- package/lib/components/ConfirmDialog/styles.mjs +10 -0
- package/lib/components/ConfirmDialog/useLogic/useLogic.d.ts +10 -0
- package/lib/components/ConfirmDialog/useLogic/useLogic.mjs +12 -0
- package/lib/components/Container/Container.d.ts +8 -0
- package/lib/components/Container/Container.mjs +6 -0
- package/lib/components/Container/styles.d.ts +24 -0
- package/lib/components/Container/styles.mjs +48 -0
- package/lib/components/ContentState/ContentState.d.ts +36 -0
- package/lib/components/ContentState/ContentState.mjs +49 -0
- package/lib/components/ContentState/styles.d.ts +1 -0
- package/lib/components/ContentState/styles.mjs +13 -0
- package/lib/components/ContentState/types.d.ts +29 -0
- package/lib/components/CopyTypography/CopyTypography.d.ts +17 -0
- package/lib/components/CopyTypography/CopyTypography.mjs +32 -0
- package/lib/components/CopyTypography/enums.mjs +4 -0
- package/lib/components/CopyTypography/styles.d.ts +17 -0
- package/lib/components/CopyTypography/styles.mjs +27 -0
- package/lib/components/CopyTypography/useLogic/useLogic.d.ts +10 -0
- package/lib/components/CopyTypography/useLogic/useLogic.mjs +20 -0
- package/lib/components/DataGrid/Body/Body.d.ts +99 -0
- package/lib/components/DataGrid/Body/Body.mjs +53 -0
- package/lib/components/DataGrid/Body/styles.d.ts +4 -0
- package/lib/components/DataGrid/Body/styles.mjs +16 -0
- package/lib/components/DataGrid/Body/useLogic/useLogic.d.ts +11 -0
- package/lib/components/DataGrid/Body/useLogic/useLogic.mjs +17 -0
- package/lib/components/DataGrid/Cell/Cell.d.ts +26 -0
- package/lib/components/DataGrid/Cell/Cell.mjs +25 -0
- package/lib/components/DataGrid/Cell/styles.d.ts +8 -0
- package/lib/components/DataGrid/Cell/styles.mjs +19 -0
- package/lib/components/DataGrid/Cell/useLogic/useLogic.d.ts +8 -0
- package/lib/components/DataGrid/Cell/useLogic/useLogic.mjs +13 -0
- package/lib/components/DataGrid/DataGrid.d.ts +154 -0
- package/lib/components/DataGrid/DataGrid.mjs +90 -0
- package/lib/components/DataGrid/DataGridContext/DataGridContext.d.ts +7 -0
- package/lib/components/DataGrid/DataGridContext/DataGridContext.mjs +12 -0
- package/lib/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.d.ts +6 -0
- package/lib/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.mjs +41 -0
- package/lib/components/DataGrid/Head/Head.d.ts +37 -0
- package/lib/components/DataGrid/Head/Head.mjs +35 -0
- package/lib/components/DataGrid/Head/styles.d.ts +4 -0
- package/lib/components/DataGrid/Head/styles.mjs +20 -0
- package/lib/components/DataGrid/Head/useLogic/useLogic.d.ts +12 -0
- package/lib/components/DataGrid/Head/useLogic/useLogic.mjs +39 -0
- package/lib/components/DataGrid/HeadCell/HeadCell.d.ts +18 -0
- package/lib/components/DataGrid/HeadCell/HeadCell.mjs +32 -0
- package/lib/components/DataGrid/HeadCell/styles.d.ts +22 -0
- package/lib/components/DataGrid/HeadCell/styles.mjs +30 -0
- package/lib/components/DataGrid/HeadCell/useLogic/useLogic.d.ts +10 -0
- package/lib/components/DataGrid/HeadCell/useLogic/useLogic.mjs +16 -0
- package/lib/components/DataGrid/Loader/Loader.mjs +14 -0
- package/lib/components/DataGrid/Loader/styles.d.ts +4 -0
- package/lib/components/DataGrid/Loader/styles.mjs +24 -0
- package/lib/components/DataGrid/NoData/NoData.d.ts +34 -0
- package/lib/components/DataGrid/NoData/NoData.mjs +29 -0
- package/lib/components/DataGrid/Row/NestedChildren/NestedChildren.d.ts +55 -0
- package/lib/components/DataGrid/Row/NestedChildren/NestedChildren.mjs +72 -0
- package/lib/components/DataGrid/Row/NestedChildren/styles.d.ts +20 -0
- package/lib/components/DataGrid/Row/NestedChildren/styles.mjs +68 -0
- package/lib/components/DataGrid/Row/NestedChildren/useLogic/useLogic.d.ts +18 -0
- package/lib/components/DataGrid/Row/NestedChildren/useLogic/useLogic.mjs +27 -0
- package/lib/components/DataGrid/Row/Row.d.ts +91 -0
- package/lib/components/DataGrid/Row/Row.mjs +159 -0
- package/lib/components/DataGrid/Row/RowContext/RowContext.d.ts +7 -0
- package/lib/components/DataGrid/Row/RowContext/RowContext.mjs +11 -0
- package/lib/components/DataGrid/Row/RowContext/RowProvider/RowProvider.d.ts +6 -0
- package/lib/components/DataGrid/Row/RowContext/RowProvider/RowProvider.mjs +25 -0
- package/lib/components/DataGrid/Row/constants.mjs +5 -0
- package/lib/components/DataGrid/Row/styles.d.ts +31 -0
- package/lib/components/DataGrid/Row/styles.mjs +102 -0
- package/lib/components/DataGrid/Row/useLogic/useLogic.d.ts +35 -0
- package/lib/components/DataGrid/Row/useLogic/useLogic.mjs +79 -0
- package/lib/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.d.ts +4 -0
- package/lib/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.mjs +8 -0
- package/lib/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.d.ts +2 -0
- package/lib/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.mjs +14 -0
- package/lib/components/DataGrid/Row/utils/checkIsDisabled/checkIsDisabled.mjs +4 -0
- package/lib/components/DataGrid/constants.mjs +9 -0
- package/lib/components/DataGrid/enums.mjs +5 -0
- package/lib/components/DataGrid/faker.d.ts +24 -0
- package/lib/components/DataGrid/styles.d.ts +5 -0
- package/lib/components/DataGrid/styles.mjs +30 -0
- package/lib/components/DataGrid/types.d.ts +91 -0
- package/lib/components/DataGrid/useLogic/useLogic.d.ts +32 -0
- package/lib/components/DataGrid/useLogic/useLogic.mjs +79 -0
- package/lib/components/DataGrid/useLogic/utils/getGridTemplateColumns/getGridTemplateColumns.mjs +4 -0
- package/lib/components/DataGrid/utils/alignToJustifyContent/alignToJustifyContent.d.ts +5 -0
- package/lib/components/DataGrid/utils/alignToJustifyContent/alignToJustifyContent.mjs +5 -0
- package/lib/components/DataGrid/utils/alignToJustifyContent/constants.mjs +9 -0
- package/lib/components/DataGridActionCell/DataGridActionCell.d.ts +22 -0
- package/lib/components/DataGridActionCell/DataGridActionCell.mjs +35 -0
- package/lib/components/DataGridActionCell/MainAction/MainAction.d.ts +22 -0
- package/lib/components/DataGridActionCell/MainAction/MainAction.mjs +57 -0
- package/lib/components/DataGridActionCell/MainAction/MainIconButton/MainIconButton.d.ts +19 -0
- package/lib/components/DataGridActionCell/MainAction/MainIconButton/MainIconButton.mjs +54 -0
- package/lib/components/DataGridActionCell/MainAction/MainIconButton/useLogic/useLogic.d.ts +11 -0
- package/lib/components/DataGridActionCell/MainAction/MainIconButton/useLogic/useLogic.mjs +17 -0
- package/lib/components/DataGridActionCell/SecondaryAction/SecondaryAction.d.ts +22 -0
- package/lib/components/DataGridActionCell/SecondaryAction/SecondaryAction.mjs +34 -0
- package/lib/components/DataGridActionCell/styles.d.ts +1 -0
- package/lib/components/DataGridActionCell/styles.mjs +8 -0
- package/lib/components/DataGridActionCell/types.d.ts +98 -0
- package/lib/components/DataGridActionCell/useLogic/useLogic.d.ts +10 -0
- package/lib/components/DataGridActionCell/useLogic/useLogic.mjs +49 -0
- package/lib/components/DataGridOld/Body/Body.d.ts +13 -0
- package/lib/components/DataGridOld/Body/styles.d.ts +1 -0
- package/lib/components/DataGridOld/Cell/Cell.d.ts +7 -0
- package/lib/components/DataGridOld/Cell/styles.d.ts +4 -0
- package/lib/components/DataGridOld/DataGridOld.d.ts +20 -0
- package/lib/components/DataGridOld/Head/Head.d.ts +7 -0
- package/lib/components/DataGridOld/Head/styles.d.ts +4 -0
- package/lib/components/DataGridOld/HeadCell/HeadCell.d.ts +5 -0
- package/lib/components/DataGridOld/HeadCell/styles.d.ts +3 -0
- package/lib/components/DataGridOld/Row/Row.d.ts +11 -0
- package/lib/components/DataGridOld/Row/styles.d.ts +5 -0
- package/lib/components/DataGridOld/State/styles.d.ts +1 -0
- package/lib/components/DataGridOld/styles.d.ts +7 -0
- package/lib/components/DataGridOld/types.d.ts +15 -0
- package/lib/components/DataGridPagination/DataGridPagination.d.ts +25 -0
- package/lib/components/DataGridPagination/DataGridPagination.mjs +57 -0
- package/lib/components/DataGridPagination/constants.mjs +5 -0
- package/lib/components/DataGridPagination/faker.d.ts +3 -0
- package/lib/components/DataGridPagination/styles.d.ts +16 -0
- package/lib/components/DataGridPagination/styles.mjs +25 -0
- package/lib/components/DataGridPagination/useLogic/useLogic.d.ts +10 -0
- package/lib/components/DataGridPagination/useLogic/useLogic.mjs +28 -0
- package/lib/components/Description/Description.d.ts +34 -0
- package/lib/components/Description/Description.mjs +39 -0
- package/lib/components/Description/DescriptionContext/DescriptionContext.d.ts +6 -0
- package/lib/components/Description/DescriptionContext/DescriptionContext.mjs +10 -0
- package/lib/components/Description/DescriptionContext/DescriptionContextProvider/DescriptionContextProvider.d.ts +7 -0
- package/lib/components/Description/DescriptionContext/DescriptionContextProvider/DescriptionContextProvider.mjs +11 -0
- package/lib/components/Description/Name/Name.d.ts +3 -0
- package/lib/components/Description/Name/Name.mjs +22 -0
- package/lib/components/Description/Name/styles.d.ts +6 -0
- package/lib/components/Description/Name/styles.mjs +25 -0
- package/lib/components/Description/Value/Value.d.ts +22 -0
- package/lib/components/Description/Value/Value.mjs +37 -0
- package/lib/components/Description/Value/styles.d.ts +43 -0
- package/lib/components/Description/Value/styles.mjs +47 -0
- package/lib/components/Description/Value/useLogic/useLogic.d.ts +9 -0
- package/lib/components/Description/Value/useLogic/useLogic.mjs +11 -0
- package/lib/components/Description/constants.mjs +6 -0
- package/lib/components/Description/styles.d.ts +4 -0
- package/lib/components/Description/styles.mjs +23 -0
- package/lib/components/Description/useLogic/useLogic.d.ts +9 -0
- package/lib/components/Description/useLogic/useLogic.mjs +15 -0
- package/lib/components/DescriptionList/DescriptionList.d.ts +2 -0
- package/lib/components/DescriptionList/DescriptionList.mjs +78 -0
- package/lib/components/DescriptionList/styles.d.ts +22 -0
- package/lib/components/DescriptionList/styles.mjs +46 -0
- package/lib/components/DescriptionList/types.d.ts +32 -0
- package/lib/components/DescriptionList/utils/getTooltipProps/getTooltipProps.mjs +4 -0
- package/lib/components/Dialog/Dialog.d.ts +20 -0
- package/lib/components/Dialog/Dialog.mjs +25 -0
- package/lib/components/Dialog/constants.mjs +10 -0
- package/lib/components/Dialog/styles.d.ts +5 -0
- package/lib/components/Dialog/styles.mjs +16 -0
- package/lib/components/DialogActions/DialogActions.d.ts +4 -0
- package/lib/components/DialogActions/DialogActions.mjs +10 -0
- package/lib/components/DialogActions/styles.d.ts +6 -0
- package/lib/components/DialogActions/styles.mjs +18 -0
- package/lib/components/DialogContent/DialogContent.d.ts +4 -0
- package/lib/components/DialogContent/DialogContent.mjs +6 -0
- package/lib/components/DialogContent/styles.d.ts +2 -0
- package/lib/components/DialogContent/styles.mjs +11 -0
- package/lib/components/DialogContentText/DialogContentText.d.ts +4 -0
- package/lib/components/DialogContentText/DialogContentText.mjs +6 -0
- package/lib/components/DialogContentText/styles.d.ts +1 -0
- package/lib/components/DialogContentText/styles.mjs +7 -0
- package/lib/components/DialogHeader/DialogHeader.d.ts +16 -0
- package/lib/components/DialogHeader/DialogHeader.mjs +39 -0
- package/lib/components/DialogHeader/styles.d.ts +18 -0
- package/lib/components/DialogHeader/styles.mjs +31 -0
- package/lib/components/DialogTitle/DialogTitle.d.ts +6 -0
- package/lib/components/DialogTitle/DialogTitle.mjs +28 -0
- package/lib/components/Divider/Divider.d.ts +4 -0
- package/lib/components/Divider/Divider.mjs +6 -0
- package/lib/components/DropdownButton/DropdownButton.d.ts +9 -0
- package/lib/components/DropdownButton/DropdownButton.mjs +32 -0
- package/lib/components/ErrorBoundary/ErrorBoundary.d.ts +36 -0
- package/lib/components/ErrorBoundary/ErrorBoundary.mjs +33 -0
- package/lib/components/ErrorBoundary/constants.mjs +11 -0
- package/lib/components/ErrorBoundary/enums.mjs +4 -0
- package/lib/components/Filename/Filename.d.ts +21 -0
- package/lib/components/Filename/Filename.mjs +34 -0
- package/lib/components/Filename/styles.d.ts +17 -0
- package/lib/components/Filename/styles.mjs +19 -0
- package/lib/components/Filename/useLogic/useLogic.d.ts +16 -0
- package/lib/components/Filename/useLogic/useLogic.mjs +16 -0
- package/lib/components/Filename/useLogic/utils/findExtension/constants.mjs +19 -0
- package/lib/components/Filename/useLogic/utils/findExtension/findExtension.mjs +12 -0
- package/lib/components/Filename/useLogic/utils/truncateString/constants.mjs +4 -0
- package/lib/components/Filename/useLogic/utils/truncateString/truncateString.mjs +19 -0
- package/lib/components/FormControl/FormControl.d.ts +4 -0
- package/lib/components/FormControl/FormControl.mjs +6 -0
- package/lib/components/FormControlLabel/FormControlLabel.d.ts +2 -0
- package/lib/components/FormControlLabel/FormControlLabel.mjs +6 -0
- package/lib/components/FormControlLabel/styles.d.ts +2 -0
- package/lib/components/FormControlLabel/styles.mjs +14 -0
- package/lib/components/FormControlLabel/types.d.ts +3 -0
- package/lib/components/FormHelperText/FormHelperText.d.ts +7 -0
- package/lib/components/FormHelperText/FormHelperText.mjs +12 -0
- package/lib/components/FormHelperText/FormHelperTextContent/FormHelperTextContent.d.ts +7 -0
- package/lib/components/FormHelperText/FormHelperTextContent/FormHelperTextContent.mjs +17 -0
- package/lib/components/FormHelperText/FormHelperTextContent/styles.d.ts +9 -0
- package/lib/components/FormHelperText/FormHelperTextContent/styles.mjs +22 -0
- package/lib/components/FormLabel/FormLabel.d.ts +4 -0
- package/lib/components/FormLabel/FormLabel.mjs +6 -0
- package/lib/components/FormLabel/styles.d.ts +1 -0
- package/lib/components/FormLabel/styles.mjs +8 -0
- package/lib/components/GuidTypography/GuidTypography.d.ts +3 -0
- package/lib/components/GuidTypography/GuidTypography.mjs +6 -0
- package/lib/components/IconButton/IconButton.d.ts +9 -0
- package/lib/components/IconButton/IconButton.mjs +28 -0
- package/lib/components/IconButton/styles.d.ts +23 -0
- package/lib/components/IconButton/styles.mjs +33 -0
- package/lib/components/IconDropdownButton/IconDropdownButton.d.ts +9 -0
- package/lib/components/IconDropdownButton/IconDropdownButton.mjs +25 -0
- package/lib/components/InternalErrorPlaceholder/InternalErrorPlaceholder.mjs +35 -0
- package/lib/components/Link/Link.d.ts +24 -0
- package/lib/components/Link/Link.mjs +18 -0
- package/lib/components/Link/styles.d.ts +1 -0
- package/lib/components/Link/styles.mjs +39 -0
- package/lib/components/List/List.d.ts +4 -0
- package/lib/components/List/List.mjs +6 -0
- package/lib/components/ListItem/ListItem.d.ts +4 -0
- package/lib/components/ListItem/ListItem.mjs +6 -0
- package/lib/components/ListItem/constants.d.ts +5 -0
- package/lib/components/ListItem/constants.mjs +4 -0
- package/lib/components/ListItem/styles.d.ts +11 -0
- package/lib/components/ListItem/styles.mjs +25 -0
- package/lib/components/ListItemButton/ListItemButton.d.ts +21 -0
- package/lib/components/ListItemButton/ListItemButton.mjs +33 -0
- package/lib/components/ListItemIcon/ListItemIcon.d.ts +5 -0
- package/lib/components/ListItemIcon/ListItemIcon.mjs +9 -0
- package/lib/components/ListItemIcon/styles.d.ts +1 -0
- package/lib/components/ListItemIcon/styles.mjs +7 -0
- package/lib/components/ListItemText/ListItemText.d.ts +4 -0
- package/lib/components/ListItemText/ListItemText.mjs +6 -0
- package/lib/components/ListSubheader/ListSubheader.d.ts +4 -0
- package/lib/components/ListSubheader/ListSubheader.mjs +6 -0
- package/lib/components/Menu/Menu.d.ts +9 -0
- package/lib/components/Menu/Menu.mjs +19 -0
- package/lib/components/MenuItem/MenuItem.d.ts +28 -0
- package/lib/components/MenuItem/MenuItem.mjs +35 -0
- package/lib/components/MenuList/MenuList.d.ts +2 -0
- package/lib/components/MenuList/MenuList.mjs +6 -0
- package/lib/components/MenuList/styles.d.ts +1 -0
- package/lib/components/MenuList/styles.mjs +12 -0
- package/lib/components/MenuList/types.d.ts +3 -0
- package/lib/components/NavMenu/Item/Item.d.ts +16 -0
- package/lib/components/NavMenu/Item/Item.mjs +44 -0
- package/lib/components/NavMenu/Item/ItemButton/ItemButton.d.ts +11 -0
- package/lib/components/NavMenu/Item/ItemButton/ItemButton.mjs +49 -0
- package/lib/components/NavMenu/Item/ItemButton/styles.d.ts +639 -0
- package/lib/components/NavMenu/Item/ItemButton/styles.mjs +126 -0
- package/lib/components/NavMenu/Item/List/List.d.ts +13 -0
- package/lib/components/NavMenu/Item/List/List.mjs +23 -0
- package/lib/components/NavMenu/NavMenu.d.ts +15 -0
- package/lib/components/NavMenu/NavMenu.mjs +10 -0
- package/lib/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.mjs +26 -0
- package/lib/components/OverflowTypography/OverflowTypography.d.ts +34 -0
- package/lib/components/OverflowTypography/OverflowTypography.mjs +46 -0
- package/lib/components/OverflowTypography/hooks/useOverflowed/useOverflowed.d.ts +5 -0
- package/lib/components/OverflowTypography/hooks/useOverflowed/useOverflowed.mjs +27 -0
- package/lib/components/OverflowTypography/styles.d.ts +35 -0
- package/lib/components/OverflowTypography/styles.mjs +30 -0
- package/lib/components/OverflowTypography/useLogic/useLogic.d.ts +8 -0
- package/lib/components/OverflowTypography/useLogic/useLogic.mjs +19 -0
- package/lib/components/OverflowTypography/utils/truncateString/truncateString.mjs +7 -0
- package/lib/components/Pagination/Pagination.d.ts +2 -0
- package/lib/components/Pagination/Pagination.mjs +6 -0
- package/lib/components/Pagination/types.d.ts +3 -0
- package/lib/components/Paper/Paper.d.ts +14 -0
- package/lib/components/Paper/Paper.mjs +6 -0
- package/lib/components/Placeholder/Image/Image.d.ts +21 -0
- package/lib/components/Placeholder/Image/Image.mjs +6 -0
- package/lib/components/Placeholder/Image/styles.d.ts +4 -0
- package/lib/components/Placeholder/Image/styles.mjs +24 -0
- package/lib/components/Placeholder/Placeholder.d.ts +45 -0
- package/lib/components/Placeholder/Placeholder.mjs +42 -0
- package/lib/components/Placeholder/constants.d.ts +14 -0
- package/lib/components/Placeholder/constants.mjs +28 -0
- package/lib/components/Placeholder/styles.d.ts +35 -0
- package/lib/components/Placeholder/styles.mjs +77 -0
- package/lib/components/Popover/Popover.d.ts +9 -0
- package/lib/components/Popover/Popover.mjs +18 -0
- package/lib/components/ProgressBar/ProgressBar.mjs +16 -0
- package/lib/components/Radio/Icon/Icon.mjs +46 -0
- package/lib/components/Radio/Radio.d.ts +9 -0
- package/lib/components/Radio/Radio.mjs +11 -0
- package/lib/components/Radio/constants.mjs +11 -0
- package/lib/components/Radio/styles.d.ts +5 -0
- package/lib/components/Radio/styles.mjs +64 -0
- package/lib/components/RadioField/RadioField.d.ts +25 -0
- package/lib/components/RadioField/RadioField.mjs +33 -0
- package/lib/components/RadioField/styles.d.ts +2 -0
- package/lib/components/RadioField/styles.mjs +10 -0
- package/lib/components/RadioGroup/RadioGroup.d.ts +30 -0
- package/lib/components/RadioGroup/RadioGroup.mjs +43 -0
- package/lib/components/RadioGroup/RadioGroupContext/RadioGroupContext.d.ts +4 -0
- package/lib/components/RadioGroup/RadioGroupContext/RadioGroupContext.mjs +7 -0
- package/lib/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/RadioGroupContextProvider.d.ts +6 -0
- package/lib/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/RadioGroupContextProvider.mjs +6 -0
- package/lib/components/RadioGroupField/RadioGroupField.d.ts +8 -0
- package/lib/components/RadioGroupField/RadioGroupField.mjs +14 -0
- package/lib/components/SearchField/SearchField.d.ts +3 -0
- package/lib/components/SearchField/SearchField.mjs +57 -0
- package/lib/components/SearchField/styles.d.ts +22 -0
- package/lib/components/SearchField/styles.mjs +35 -0
- package/lib/components/Select/Select.d.ts +25 -0
- package/lib/components/Select/Select.mjs +125 -0
- package/lib/components/Select/constants.mjs +4 -0
- package/lib/components/Select/styles.d.ts +23 -0
- package/lib/components/Select/styles.mjs +56 -0
- package/lib/components/Select/useLogic/useLogic.d.ts +10 -0
- package/lib/components/Select/useLogic/useLogic.mjs +33 -0
- package/lib/components/Skeleton/Skeleton.d.ts +14 -0
- package/lib/components/Skeleton/Skeleton.mjs +6 -0
- package/lib/components/Skeleton/styles.d.ts +1 -0
- package/lib/components/Skeleton/styles.mjs +18 -0
- package/lib/components/Switch/Switch.d.ts +4 -0
- package/lib/components/Switch/Switch.mjs +9 -0
- package/lib/components/Switch/styles.d.ts +1 -0
- package/lib/components/Switch/styles.mjs +16 -0
- package/lib/components/Tab/Tab.d.ts +7 -0
- package/lib/components/Tab/Tab.mjs +6 -0
- package/lib/components/Tab/styles.d.ts +1 -0
- package/lib/components/Tab/styles.mjs +24 -0
- package/lib/components/Tabs/Tabs.d.ts +13 -0
- package/lib/components/Tabs/Tabs.mjs +10 -0
- package/lib/components/Tabs/styles.d.ts +2 -0
- package/lib/components/Tabs/styles.mjs +21 -0
- package/lib/components/Tag/Tag.d.ts +36 -0
- package/lib/components/Tag/Tag.mjs +59 -0
- package/lib/components/Tag/enums.mjs +6 -0
- package/lib/components/Tag/styles.d.ts +26 -0
- package/lib/components/Tag/styles.mjs +214 -0
- package/lib/components/Tag/types.d.ts +5 -0
- package/lib/components/TagBadge/TagBadge.d.ts +23 -0
- package/lib/components/TagBadge/TagBadge.mjs +25 -0
- package/lib/components/TagBadge/styles.d.ts +5 -0
- package/lib/components/TagBadge/styles.mjs +16 -0
- package/lib/components/TagBadge/utils/getCheckableTagBadgeBgColor/getCheckableTagBadgeBgColor.d.ts +15 -0
- package/lib/components/TagBadge/utils/getCheckableTagBadgeBgColor/getCheckableTagBadgeBgColor.mjs +9 -0
- package/lib/components/TagsList/Tag/Tag.d.ts +25 -0
- package/lib/components/TagsList/Tag/Tag.mjs +19 -0
- package/lib/components/TagsList/Tag/styles.d.ts +11 -0
- package/lib/components/TagsList/Tag/styles.mjs +17 -0
- package/lib/components/TagsList/Tag/useLogic/useLogic.d.ts +4 -0
- package/lib/components/TagsList/Tag/useLogic/useLogic.mjs +8 -0
- package/lib/components/TagsList/TagsList.d.ts +34 -0
- package/lib/components/TagsList/TagsList.mjs +34 -0
- package/lib/components/TagsList/styles.d.ts +1 -0
- package/lib/components/TagsList/styles.mjs +8 -0
- package/lib/components/TagsList/useLogic/useLogic.d.ts +14 -0
- package/lib/components/TagsList/useLogic/useLogic.mjs +69 -0
- package/lib/components/TagsList/utils/getElementByText/getElementByText.mjs +13 -0
- package/lib/components/TagsList/utils/getKey/getKey.d.ts +2 -0
- package/lib/components/TagsList/utils/getKey/getKey.mjs +9 -0
- package/lib/components/TextArea/TextArea.d.ts +3 -0
- package/lib/components/TextArea/TextArea.mjs +6 -0
- package/lib/components/TextField/TextField.d.ts +28 -0
- package/lib/components/TextField/TextField.mjs +56 -0
- package/lib/components/Tooltip/Tooltip.d.ts +16 -0
- package/lib/components/Tooltip/Tooltip.mjs +27 -0
- package/lib/components/Tooltip/constants.mjs +4 -0
- package/lib/components/Tooltip/styles.d.ts +7 -0
- package/lib/components/Tooltip/styles.mjs +46 -0
- package/lib/components/Tooltip/types.d.ts +2 -0
- package/lib/components/Typography/Typography.d.ts +34 -0
- package/lib/components/Typography/Typography.mjs +25 -0
- package/lib/components/Typography/enums.mjs +4 -0
- package/lib/components/Typography/hooks/useTypographyColor/useTypographyColor.d.ts +16 -0
- package/lib/components/Typography/hooks/useTypographyColor/useTypographyColor.mjs +24 -0
- package/lib/components/Typography/styles.mjs +9 -0
- package/lib/components/Typography/types.d.ts +4 -0
- package/lib/hooks/useMenu/useMenu.d.ts +21 -0
- package/lib/hooks/useMenu/useMenu.mjs +10 -0
- package/lib/hooks/usePopover/usePopover.d.ts +11 -0
- package/lib/hooks/usePopover/usePopover.mjs +11 -0
- package/lib/hooks/useToggle/useToggle.mjs +12 -0
- package/lib/hooks/useViewportType/useViewportType.mjs +8 -0
- package/lib/index.mjs +215 -0
- package/lib/node_modules/.pnpm/react@19.0.0/node_modules/react/cjs/react-jsx-runtime.development.mjs +408 -0
- package/lib/node_modules/.pnpm/react@19.0.0/node_modules/react/cjs/react-jsx-runtime.production.mjs +35 -0
- package/lib/node_modules/.pnpm/react@19.0.0/node_modules/react/jsx-runtime.mjs +10 -0
- package/lib/theme/baseTheme/baseTheme.d.ts +9 -0
- package/lib/theme/baseTheme/baseTheme.mjs +28 -0
- package/lib/theme/breakpoints.d.ts +2 -0
- package/lib/theme/breakpoints.mjs +12 -0
- package/lib/theme/components/MuiAlert.d.ts +3 -0
- package/lib/theme/components/MuiAlert.mjs +67 -0
- package/lib/theme/components/MuiAutocomplete.d.ts +3 -0
- package/lib/theme/components/MuiAutocomplete.mjs +85 -0
- package/lib/theme/components/MuiButton.d.ts +32 -0
- package/lib/theme/components/MuiButton.mjs +296 -0
- package/lib/theme/components/MuiButtonBase.d.ts +3 -0
- package/lib/theme/components/MuiButtonBase.mjs +15 -0
- package/lib/theme/components/MuiCircularProgress.d.ts +4 -0
- package/lib/theme/components/MuiCircularProgress.mjs +14 -0
- package/lib/theme/components/MuiDialog.d.ts +3 -0
- package/lib/theme/components/MuiDialog.mjs +12 -0
- package/lib/theme/components/MuiDialogActions.d.ts +3 -0
- package/lib/theme/components/MuiDialogActions.mjs +13 -0
- package/lib/theme/components/MuiDialogContent.d.ts +3 -0
- package/lib/theme/components/MuiDialogContent.mjs +12 -0
- package/lib/theme/components/MuiDialogTitle.d.ts +3 -0
- package/lib/theme/components/MuiDialogTitle.mjs +23 -0
- package/lib/theme/components/MuiDrawer.d.ts +3 -0
- package/lib/theme/components/MuiDrawer.mjs +15 -0
- package/lib/theme/components/MuiFormHelperText.d.ts +4 -0
- package/lib/theme/components/MuiFormHelperText.mjs +20 -0
- package/lib/theme/components/MuiFormLabel.d.ts +4 -0
- package/lib/theme/components/MuiFormLabel.mjs +14 -0
- package/lib/theme/components/MuiInputLabel.d.ts +4 -0
- package/lib/theme/components/MuiInputLabel.mjs +31 -0
- package/lib/theme/components/MuiLinearProgress.d.ts +4 -0
- package/lib/theme/components/MuiLinearProgress.mjs +20 -0
- package/lib/theme/components/MuiListItemButton.d.ts +3 -0
- package/lib/theme/components/MuiListItemButton.mjs +15 -0
- package/lib/theme/components/MuiListItemText.d.ts +3 -0
- package/lib/theme/components/MuiListItemText.mjs +15 -0
- package/lib/theme/components/MuiMenu.d.ts +4 -0
- package/lib/theme/components/MuiMenu.mjs +31 -0
- package/lib/theme/components/MuiMenuItem.d.ts +4 -0
- package/lib/theme/components/MuiMenuItem.mjs +30 -0
- package/lib/theme/components/MuiOutlinedInput.d.ts +4 -0
- package/lib/theme/components/MuiOutlinedInput.mjs +73 -0
- package/lib/theme/components/MuiPaginationItem.d.ts +3 -0
- package/lib/theme/components/MuiPaginationItem.mjs +15 -0
- package/lib/theme/components/MuiPaper.d.ts +3 -0
- package/lib/theme/components/MuiPaper.mjs +17 -0
- package/lib/theme/components/MuiStep.d.ts +3 -0
- package/lib/theme/components/MuiStep.mjs +15 -0
- package/lib/theme/components/MuiStepConnector.d.ts +3 -0
- package/lib/theme/components/MuiStepConnector.mjs +10 -0
- package/lib/theme/components/MuiStepLabel.d.ts +3 -0
- package/lib/theme/components/MuiStepLabel.mjs +28 -0
- package/lib/theme/components/MuiSwitch.d.ts +3 -0
- package/lib/theme/components/MuiSwitch.mjs +123 -0
- package/lib/theme/components/MuiTab.d.ts +3 -0
- package/lib/theme/components/MuiTab.mjs +14 -0
- package/lib/theme/components/MuiTableCell.d.ts +3 -0
- package/lib/theme/components/MuiTableCell.mjs +15 -0
- package/lib/theme/components/MuiTableHead.d.ts +3 -0
- package/lib/theme/components/MuiTableHead.mjs +14 -0
- package/lib/theme/components/MuiTableRow.d.ts +3 -0
- package/lib/theme/components/MuiTableRow.mjs +18 -0
- package/lib/theme/components/MuiTabs.d.ts +3 -0
- package/lib/theme/components/MuiTabs.mjs +18 -0
- package/lib/theme/components/MuiTextField.d.ts +3 -0
- package/lib/theme/components/MuiTextField.mjs +24 -0
- package/lib/theme/components/MuiToggleButton.d.ts +3 -0
- package/lib/theme/components/MuiToggleButton.mjs +13 -0
- package/lib/theme/components/MuiToggleButtonGroup.d.ts +3 -0
- package/lib/theme/components/MuiToggleButtonGroup.mjs +9 -0
- package/lib/theme/components/MuiTypography.d.ts +21 -0
- package/lib/theme/components/MuiTypography.mjs +22 -0
- package/lib/theme/components/components.d.ts +21 -0
- package/lib/theme/components/components.mjs +120 -0
- package/lib/theme/constants.mjs +4 -0
- package/lib/theme/elevation.mjs +10 -0
- package/lib/theme/hooks/useTheme/index.d.ts +2 -0
- package/lib/theme/hooks/useTheme/index.mjs +5 -0
- package/lib/theme/palette/componentsColors/componentsColors.d.ts +5 -0
- package/lib/theme/palette/componentsColors/componentsColors.mjs +7 -0
- package/lib/theme/palette/componentsColors/linkColors/linkColors.mjs +9 -0
- package/lib/theme/palette/palette.d.ts +2 -0
- package/lib/theme/palette/palette.mjs +125 -0
- package/lib/theme/palette/types.d.ts +44 -0
- package/lib/theme/shape.mjs +8 -0
- package/lib/theme/types.d.ts +19 -0
- package/lib/theme/typography.d.ts +3 -0
- package/lib/theme/typography.mjs +95 -0
- package/package.json +18 -10
- package/.storybook/main.ts +0 -26
- package/.storybook/preview.ts +0 -14
- package/.turbo/turbo-build.log +0 -26
- package/.turbo/turbo-type$colon$check.log +0 -5
- package/CHANGELOG.md +0 -19
- package/dist/components/Accordion/Accordion.d.ts +0 -39
- package/dist/components/Accordion/styles.d.ts +0 -21
- package/dist/components/ActionCell/ActionCell.d.ts +0 -24
- package/dist/components/ActionCell/MainAction/MainAction.d.ts +0 -13
- package/dist/components/ActionCell/SecondaryAction/SecondaryActions.d.ts +0 -13
- package/dist/components/ActionCell/styles.d.ts +0 -1
- package/dist/components/ActionCell/types.d.ts +0 -66
- package/dist/components/ActionCell/useLogic/useLogic.d.ts +0 -11
- package/dist/components/AsyncAutocomplete/AsyncAutocomplete.d.ts +0 -61
- package/dist/components/AsyncAutocomplete/useLogic/useLogic.d.ts +0 -12
- package/dist/components/Autocomplete/Autocomplete.d.ts +0 -47
- package/dist/components/Autocomplete/styles.d.ts +0 -7
- package/dist/components/Autocomplete/useLogic/useLogic.d.ts +0 -15
- package/dist/components/Badge/Badge.d.ts +0 -18
- package/dist/components/Badge/styles.d.ts +0 -8
- package/dist/components/BottomDrawer/BottomDrawer.d.ts +0 -15
- package/dist/components/BottomDrawer/styles.d.ts +0 -20
- package/dist/components/Button/Button.d.ts +0 -35
- package/dist/components/Button/styles.d.ts +0 -5
- package/dist/components/Button/types.d.ts +0 -19
- package/dist/components/Button/useLogic/useLogic.d.ts +0 -5
- package/dist/components/Checkbox/Checkbox.d.ts +0 -9
- package/dist/components/Checkbox/icons.d.ts +0 -4
- package/dist/components/Checkbox/styles.d.ts +0 -5
- package/dist/components/CheckboxField/CheckboxField.d.ts +0 -24
- package/dist/components/CheckboxField/styles.d.ts +0 -8
- package/dist/components/Chevron/Chevron.d.ts +0 -7
- package/dist/components/Chevron/styles.d.ts +0 -5
- package/dist/components/CircularProgress/CircularProgress.d.ts +0 -19
- package/dist/components/CircularProgress/useLogic/useLogic.d.ts +0 -6
- package/dist/components/Collapse/Collapse.d.ts +0 -4
- package/dist/components/ConfigProvider/ConfigProvider.d.ts +0 -91
- package/dist/components/ConfirmAction/ConfirmAction.d.ts +0 -38
- package/dist/components/ConfirmAction/styles.d.ts +0 -16
- package/dist/components/ConfirmAction/useLogic/useLogic.d.ts +0 -22
- package/dist/components/ConfirmDialog/ConfirmDialog.d.ts +0 -37
- package/dist/components/ConfirmDialog/styles.d.ts +0 -9
- package/dist/components/ConfirmDialog/useLogic/useLogic.d.ts +0 -10
- package/dist/components/Container/Container.d.ts +0 -8
- package/dist/components/Container/styles.d.ts +0 -24
- package/dist/components/ContentState/ContentState.d.ts +0 -36
- package/dist/components/ContentState/styles.d.ts +0 -1
- package/dist/components/ContentState/types.d.ts +0 -29
- package/dist/components/CopyTypography/CopyTypography.d.ts +0 -17
- package/dist/components/CopyTypography/styles.d.ts +0 -17
- package/dist/components/CopyTypography/useLogic/useLogic.d.ts +0 -10
- package/dist/components/DataGrid/Body/Body.d.ts +0 -99
- package/dist/components/DataGrid/Body/styles.d.ts +0 -4
- package/dist/components/DataGrid/Body/useLogic/useLogic.d.ts +0 -11
- package/dist/components/DataGrid/Cell/Cell.d.ts +0 -26
- package/dist/components/DataGrid/Cell/styles.d.ts +0 -8
- package/dist/components/DataGrid/Cell/useLogic/useLogic.d.ts +0 -8
- package/dist/components/DataGrid/DataGrid.d.ts +0 -154
- package/dist/components/DataGrid/DataGridContext/DataGridContext.d.ts +0 -7
- package/dist/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.d.ts +0 -6
- package/dist/components/DataGrid/Head/Head.d.ts +0 -37
- package/dist/components/DataGrid/Head/styles.d.ts +0 -4
- package/dist/components/DataGrid/Head/useLogic/useLogic.d.ts +0 -12
- package/dist/components/DataGrid/HeadCell/HeadCell.d.ts +0 -18
- package/dist/components/DataGrid/HeadCell/styles.d.ts +0 -22
- package/dist/components/DataGrid/HeadCell/useLogic/useLogic.d.ts +0 -10
- package/dist/components/DataGrid/Loader/styles.d.ts +0 -4
- package/dist/components/DataGrid/NoData/NoData.d.ts +0 -34
- package/dist/components/DataGrid/Row/NestedChildren/NestedChildren.d.ts +0 -55
- package/dist/components/DataGrid/Row/NestedChildren/styles.d.ts +0 -20
- package/dist/components/DataGrid/Row/NestedChildren/useLogic/useLogic.d.ts +0 -18
- package/dist/components/DataGrid/Row/Row.d.ts +0 -91
- package/dist/components/DataGrid/Row/RowContext/RowContext.d.ts +0 -7
- package/dist/components/DataGrid/Row/RowContext/RowProvider/RowProvider.d.ts +0 -6
- package/dist/components/DataGrid/Row/styles.d.ts +0 -31
- package/dist/components/DataGrid/Row/useLogic/useLogic.d.ts +0 -35
- package/dist/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.d.ts +0 -4
- package/dist/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.d.ts +0 -2
- package/dist/components/DataGrid/faker.d.ts +0 -24
- package/dist/components/DataGrid/styles.d.ts +0 -5
- package/dist/components/DataGrid/types.d.ts +0 -91
- package/dist/components/DataGrid/useLogic/useLogic.d.ts +0 -32
- package/dist/components/DataGrid/utils/alignToJustifyContent/alignToJustifyContent.d.ts +0 -5
- package/dist/components/DataGridActionCell/DataGridActionCell.d.ts +0 -22
- package/dist/components/DataGridActionCell/MainAction/MainAction.d.ts +0 -22
- package/dist/components/DataGridActionCell/MainAction/MainIconButton/MainIconButton.d.ts +0 -19
- package/dist/components/DataGridActionCell/MainAction/MainIconButton/useLogic/useLogic.d.ts +0 -11
- package/dist/components/DataGridActionCell/SecondaryAction/SecondaryAction.d.ts +0 -22
- package/dist/components/DataGridActionCell/styles.d.ts +0 -1
- package/dist/components/DataGridActionCell/types.d.ts +0 -98
- package/dist/components/DataGridActionCell/useLogic/useLogic.d.ts +0 -10
- package/dist/components/DataGridOld/Body/Body.d.ts +0 -13
- package/dist/components/DataGridOld/Body/styles.d.ts +0 -1
- package/dist/components/DataGridOld/Cell/Cell.d.ts +0 -7
- package/dist/components/DataGridOld/Cell/styles.d.ts +0 -4
- package/dist/components/DataGridOld/DataGridOld.d.ts +0 -20
- package/dist/components/DataGridOld/Head/Head.d.ts +0 -7
- package/dist/components/DataGridOld/Head/styles.d.ts +0 -4
- package/dist/components/DataGridOld/HeadCell/HeadCell.d.ts +0 -5
- package/dist/components/DataGridOld/HeadCell/styles.d.ts +0 -3
- package/dist/components/DataGridOld/Row/Row.d.ts +0 -11
- package/dist/components/DataGridOld/Row/styles.d.ts +0 -5
- package/dist/components/DataGridOld/State/styles.d.ts +0 -1
- package/dist/components/DataGridOld/styles.d.ts +0 -7
- package/dist/components/DataGridOld/types.d.ts +0 -15
- package/dist/components/DataGridPagination/DataGridPagination.d.ts +0 -25
- package/dist/components/DataGridPagination/faker.d.ts +0 -3
- package/dist/components/DataGridPagination/styles.d.ts +0 -16
- package/dist/components/DataGridPagination/useLogic/useLogic.d.ts +0 -10
- package/dist/components/Description/Description.d.ts +0 -34
- package/dist/components/Description/DescriptionContext/DescriptionContext.d.ts +0 -6
- package/dist/components/Description/DescriptionContext/DescriptionContextProvider/DescriptionContextProvider.d.ts +0 -7
- package/dist/components/Description/Name/Name.d.ts +0 -3
- package/dist/components/Description/Name/styles.d.ts +0 -6
- package/dist/components/Description/Value/Value.d.ts +0 -22
- package/dist/components/Description/Value/styles.d.ts +0 -43
- package/dist/components/Description/Value/useLogic/useLogic.d.ts +0 -9
- package/dist/components/Description/styles.d.ts +0 -4
- package/dist/components/Description/useLogic/useLogic.d.ts +0 -9
- package/dist/components/DescriptionList/DescriptionList.d.ts +0 -2
- package/dist/components/DescriptionList/styles.d.ts +0 -22
- package/dist/components/DescriptionList/types.d.ts +0 -32
- package/dist/components/Dialog/Dialog.d.ts +0 -20
- package/dist/components/Dialog/styles.d.ts +0 -5
- package/dist/components/DialogActions/DialogActions.d.ts +0 -4
- package/dist/components/DialogActions/styles.d.ts +0 -6
- package/dist/components/DialogContent/DialogContent.d.ts +0 -4
- package/dist/components/DialogContent/styles.d.ts +0 -2
- package/dist/components/DialogContentText/DialogContentText.d.ts +0 -4
- package/dist/components/DialogContentText/styles.d.ts +0 -1
- package/dist/components/DialogHeader/DialogHeader.d.ts +0 -17
- package/dist/components/DialogHeader/styles.d.ts +0 -18
- package/dist/components/DialogTitle/DialogTitle.d.ts +0 -6
- package/dist/components/Divider/Divider.d.ts +0 -4
- package/dist/components/DropdownButton/DropdownButton.d.ts +0 -9
- package/dist/components/ErrorBoundary/ErrorBoundary.d.ts +0 -36
- package/dist/components/Filename/Filename.d.ts +0 -21
- package/dist/components/Filename/styles.d.ts +0 -17
- package/dist/components/Filename/useLogic/useLogic.d.ts +0 -16
- package/dist/components/FormControl/FormControl.d.ts +0 -4
- package/dist/components/FormControlLabel/FormControlLabel.d.ts +0 -2
- package/dist/components/FormControlLabel/styles.d.ts +0 -2
- package/dist/components/FormControlLabel/types.d.ts +0 -3
- package/dist/components/FormHelperText/FormHelperText.d.ts +0 -7
- package/dist/components/FormHelperText/FormHelperTextContent/FormHelperTextContent.d.ts +0 -7
- package/dist/components/FormHelperText/FormHelperTextContent/styles.d.ts +0 -9
- package/dist/components/FormLabel/FormLabel.d.ts +0 -4
- package/dist/components/FormLabel/styles.d.ts +0 -1
- package/dist/components/GuidTypography/GuidTypography.d.ts +0 -3
- package/dist/components/IconButton/IconButton.d.ts +0 -9
- package/dist/components/IconButton/styles.d.ts +0 -23
- package/dist/components/IconDropdownButton/IconDropdownButton.d.ts +0 -9
- package/dist/components/Link/Link.d.ts +0 -24
- package/dist/components/Link/styles.d.ts +0 -1
- package/dist/components/List/List.d.ts +0 -4
- package/dist/components/ListItem/ListItem.d.ts +0 -4
- package/dist/components/ListItemButton/ListItemButton.d.ts +0 -21
- package/dist/components/ListItemIcon/ListItemIcon.d.ts +0 -5
- package/dist/components/ListItemIcon/styles.d.ts +0 -1
- package/dist/components/ListItemText/ListItemText.d.ts +0 -4
- package/dist/components/ListSubheader/ListSubheader.d.ts +0 -4
- package/dist/components/Menu/Menu.d.ts +0 -9
- package/dist/components/MenuItem/MenuItem.d.ts +0 -28
- package/dist/components/MenuList/MenuList.d.ts +0 -2
- package/dist/components/MenuList/styles.d.ts +0 -1
- package/dist/components/MenuList/types.d.ts +0 -3
- package/dist/components/NavMenu/Item/Item.d.ts +0 -16
- package/dist/components/NavMenu/Item/ItemButton/ItemButton.d.ts +0 -11
- package/dist/components/NavMenu/Item/ItemButton/styles.d.ts +0 -639
- package/dist/components/NavMenu/Item/List/List.d.ts +0 -13
- package/dist/components/NavMenu/NavMenu.d.ts +0 -15
- package/dist/components/OverflowTypography/OverflowTypography.d.ts +0 -35
- package/dist/components/OverflowTypography/hooks/useOverflowed/useOverflowed.d.ts +0 -5
- package/dist/components/OverflowTypography/styles.d.ts +0 -35
- package/dist/components/OverflowTypography/useLogic/useLogic.d.ts +0 -8
- package/dist/components/Pagination/Pagination.d.ts +0 -2
- package/dist/components/Pagination/types.d.ts +0 -3
- package/dist/components/Paper/Paper.d.ts +0 -14
- package/dist/components/Placeholder/Image/Image.d.ts +0 -21
- package/dist/components/Placeholder/Image/styles.d.ts +0 -4
- package/dist/components/Placeholder/Placeholder.d.ts +0 -45
- package/dist/components/Placeholder/constants.d.ts +0 -14
- package/dist/components/Placeholder/styles.d.ts +0 -35
- package/dist/components/Popover/Popover.d.ts +0 -9
- package/dist/components/Radio/Radio.d.ts +0 -9
- package/dist/components/Radio/styles.d.ts +0 -5
- package/dist/components/RadioField/RadioField.d.ts +0 -25
- package/dist/components/RadioField/styles.d.ts +0 -2
- package/dist/components/RadioGroup/RadioGroup.d.ts +0 -30
- package/dist/components/RadioGroup/RadioGroupContext/RadioGroupContext.d.ts +0 -4
- package/dist/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/RadioGroupContextProvider.d.ts +0 -6
- package/dist/components/RadioGroupField/RadioGroupField.d.ts +0 -8
- package/dist/components/SearchField/SearchField.d.ts +0 -3
- package/dist/components/SearchField/styles.d.ts +0 -22
- package/dist/components/Select/Select.d.ts +0 -25
- package/dist/components/Select/styles.d.ts +0 -23
- package/dist/components/Select/useLogic/useLogic.d.ts +0 -10
- package/dist/components/Skeleton/Skeleton.d.ts +0 -14
- package/dist/components/Skeleton/styles.d.ts +0 -1
- package/dist/components/Switch/Switch.d.ts +0 -4
- package/dist/components/Switch/styles.d.ts +0 -1
- package/dist/components/Tab/Tab.d.ts +0 -7
- package/dist/components/Tab/styles.d.ts +0 -1
- package/dist/components/Tabs/Tabs.d.ts +0 -13
- package/dist/components/Tabs/styles.d.ts +0 -2
- package/dist/components/Tag/Tag.d.ts +0 -36
- package/dist/components/Tag/styles.d.ts +0 -27
- package/dist/components/Tag/types.d.ts +0 -5
- package/dist/components/TagBadge/TagBadge.d.ts +0 -23
- package/dist/components/TagBadge/styles.d.ts +0 -5
- package/dist/components/TagBadge/utils/getCheckableTagBadgeBgColor/getCheckableTagBadgeBgColor.d.ts +0 -15
- package/dist/components/TagsList/Tag/Tag.d.ts +0 -25
- package/dist/components/TagsList/Tag/styles.d.ts +0 -11
- package/dist/components/TagsList/Tag/useLogic/useLogic.d.ts +0 -4
- package/dist/components/TagsList/TagsList.d.ts +0 -34
- package/dist/components/TagsList/styles.d.ts +0 -1
- package/dist/components/TagsList/useLogic/useLogic.d.ts +0 -14
- package/dist/components/TagsList/utils/getKey/getKey.d.ts +0 -2
- package/dist/components/TextArea/TextArea.d.ts +0 -3
- package/dist/components/TextField/TextField.d.ts +0 -28
- package/dist/components/Tooltip/Tooltip.d.ts +0 -16
- package/dist/components/Tooltip/styles.d.ts +0 -7
- package/dist/components/Tooltip/types.d.ts +0 -2
- package/dist/components/Typography/Typography.d.ts +0 -48
- package/dist/components/Typography/hooks/useTypographyColor/useTypographyColor.d.ts +0 -16
- package/dist/components/Typography/types.d.ts +0 -4
- package/dist/hooks/useMenu/useMenu.d.ts +0 -21
- package/dist/hooks/usePopover/usePopover.d.ts +0 -11
- package/dist/index.js +0 -1214
- package/dist/index.mjs +0 -1214
- package/dist/theme/baseTheme/baseTheme.d.ts +0 -9
- package/dist/theme/breakpoints.d.ts +0 -2
- package/dist/theme/components/MuiAlert.d.ts +0 -3
- package/dist/theme/components/MuiAutocomplete.d.ts +0 -3
- package/dist/theme/components/MuiButton.d.ts +0 -32
- package/dist/theme/components/MuiButtonBase.d.ts +0 -3
- package/dist/theme/components/MuiCircularProgress.d.ts +0 -4
- package/dist/theme/components/MuiDialog.d.ts +0 -3
- package/dist/theme/components/MuiDialogActions.d.ts +0 -3
- package/dist/theme/components/MuiDialogContent.d.ts +0 -3
- package/dist/theme/components/MuiDialogTitle.d.ts +0 -3
- package/dist/theme/components/MuiDrawer.d.ts +0 -3
- package/dist/theme/components/MuiFormHelperText.d.ts +0 -4
- package/dist/theme/components/MuiFormLabel.d.ts +0 -4
- package/dist/theme/components/MuiInputLabel.d.ts +0 -4
- package/dist/theme/components/MuiLinearProgress.d.ts +0 -4
- package/dist/theme/components/MuiListItemButton.d.ts +0 -3
- package/dist/theme/components/MuiListItemText.d.ts +0 -3
- package/dist/theme/components/MuiMenu.d.ts +0 -4
- package/dist/theme/components/MuiMenuItem.d.ts +0 -4
- package/dist/theme/components/MuiOutlinedInput.d.ts +0 -4
- package/dist/theme/components/MuiPaginationItem.d.ts +0 -3
- package/dist/theme/components/MuiPaper.d.ts +0 -3
- package/dist/theme/components/MuiStep.d.ts +0 -3
- package/dist/theme/components/MuiStepConnector.d.ts +0 -3
- package/dist/theme/components/MuiStepLabel.d.ts +0 -3
- package/dist/theme/components/MuiSwitch.d.ts +0 -3
- package/dist/theme/components/MuiTab.d.ts +0 -3
- package/dist/theme/components/MuiTableCell.d.ts +0 -3
- package/dist/theme/components/MuiTableHead.d.ts +0 -3
- package/dist/theme/components/MuiTableRow.d.ts +0 -3
- package/dist/theme/components/MuiTabs.d.ts +0 -3
- package/dist/theme/components/MuiTextField.d.ts +0 -3
- package/dist/theme/components/MuiToggleButton.d.ts +0 -3
- package/dist/theme/components/MuiToggleButtonGroup.d.ts +0 -3
- package/dist/theme/components/MuiTypography.d.ts +0 -21
- package/dist/theme/components/components.d.ts +0 -21
- package/dist/theme/hooks/useTheme/index.d.ts +0 -2
- package/dist/theme/palette/componentsColors/componentsColors.d.ts +0 -5
- package/dist/theme/palette/palette.d.ts +0 -2
- package/dist/theme/palette/types.d.ts +0 -44
- package/dist/theme/types.d.ts +0 -21
- package/dist/theme/typography.d.ts +0 -153
- package/rslib.config.ts +0 -32
- package/src/components/Accordion/Accordion.stories.tsx +0 -128
- package/src/components/Accordion/Accordion.tsx +0 -80
- package/src/components/Accordion/index.ts +0 -1
- package/src/components/Accordion/styles.ts +0 -30
- package/src/components/ActionCell/ActionCell.stories.tsx +0 -227
- package/src/components/ActionCell/ActionCell.tsx +0 -71
- package/src/components/ActionCell/MainAction/MainAction.tsx +0 -86
- package/src/components/ActionCell/MainAction/index.ts +0 -1
- package/src/components/ActionCell/SecondaryAction/SecondaryActions.tsx +0 -45
- package/src/components/ActionCell/SecondaryAction/index.ts +0 -1
- package/src/components/ActionCell/index.ts +0 -1
- package/src/components/ActionCell/styles.ts +0 -6
- package/src/components/ActionCell/types.ts +0 -89
- package/src/components/ActionCell/useLogic/index.ts +0 -1
- package/src/components/ActionCell/useLogic/useLogic.ts +0 -46
- package/src/components/AsyncAutocomplete/AsyncAutocomplete.stories.tsx +0 -245
- package/src/components/AsyncAutocomplete/AsyncAutocomplete.tsx +0 -139
- package/src/components/AsyncAutocomplete/constants.ts +0 -7
- package/src/components/AsyncAutocomplete/index.ts +0 -1
- package/src/components/AsyncAutocomplete/useLogic/index.ts +0 -1
- package/src/components/AsyncAutocomplete/useLogic/useLogic.ts +0 -117
- package/src/components/Autocomplete/Autocomplete.stories.tsx +0 -276
- package/src/components/Autocomplete/Autocomplete.tsx +0 -301
- package/src/components/Autocomplete/constants.ts +0 -3
- package/src/components/Autocomplete/enums.ts +0 -4
- package/src/components/Autocomplete/index.ts +0 -1
- package/src/components/Autocomplete/styles.ts +0 -10
- package/src/components/Autocomplete/useLogic/index.ts +0 -1
- package/src/components/Autocomplete/useLogic/useLogic.ts +0 -88
- package/src/components/Autocomplete/useLogic/utils/checkIsInputEmpty/checkIsInputEmpty.ts +0 -8
- package/src/components/Autocomplete/useLogic/utils/checkIsInputEmpty/index.ts +0 -1
- package/src/components/Autocomplete/useLogic/utils/index.ts +0 -1
- package/src/components/Badge/Badge.stories.tsx +0 -190
- package/src/components/Badge/Badge.tsx +0 -43
- package/src/components/Badge/index.ts +0 -3
- package/src/components/Badge/styles.ts +0 -104
- package/src/components/Badge/types.ts +0 -9
- package/src/components/BottomDrawer/BottomDrawer.stories.tsx +0 -105
- package/src/components/BottomDrawer/BottomDrawer.tsx +0 -52
- package/src/components/BottomDrawer/constants.ts +0 -3
- package/src/components/BottomDrawer/index.ts +0 -1
- package/src/components/BottomDrawer/styles.ts +0 -44
- package/src/components/Button/Button.stories.tsx +0 -204
- package/src/components/Button/Button.tsx +0 -84
- package/src/components/Button/constants.ts +0 -1
- package/src/components/Button/enums.ts +0 -26
- package/src/components/Button/index.ts +0 -7
- package/src/components/Button/styles.ts +0 -19
- package/src/components/Button/types.ts +0 -30
- package/src/components/Button/useLogic/index.ts +0 -1
- package/src/components/Button/useLogic/useLogic.ts +0 -19
- package/src/components/Checkbox/Checkbox.stories.tsx +0 -152
- package/src/components/Checkbox/Checkbox.tsx +0 -39
- package/src/components/Checkbox/icons.tsx +0 -41
- package/src/components/Checkbox/index.ts +0 -1
- package/src/components/Checkbox/styles.ts +0 -70
- package/src/components/CheckboxField/CheckboxField.stories.tsx +0 -51
- package/src/components/CheckboxField/CheckboxField.tsx +0 -64
- package/src/components/CheckboxField/index.ts +0 -1
- package/src/components/CheckboxField/styles.ts +0 -17
- package/src/components/Chevron/Chevron.stories.tsx +0 -36
- package/src/components/Chevron/Chevron.tsx +0 -12
- package/src/components/Chevron/index.ts +0 -1
- package/src/components/Chevron/styles.tsx +0 -17
- package/src/components/CircularProgress/CircularProgress.stories.tsx +0 -53
- package/src/components/CircularProgress/CircularProgress.tsx +0 -42
- package/src/components/CircularProgress/constants.ts +0 -9
- package/src/components/CircularProgress/index.ts +0 -1
- package/src/components/CircularProgress/useLogic/index.ts +0 -1
- package/src/components/CircularProgress/useLogic/useLogic.ts +0 -9
- package/src/components/Collapse/Collapse.stories.tsx +0 -69
- package/src/components/Collapse/Collapse.tsx +0 -10
- package/src/components/Collapse/index.ts +0 -1
- package/src/components/ConfigProvider/ConfigProvider.tsx +0 -165
- package/src/components/ConfigProvider/index.ts +0 -1
- package/src/components/ConfirmAction/ConfirmAction.stories.tsx +0 -116
- package/src/components/ConfirmAction/ConfirmAction.tsx +0 -97
- package/src/components/ConfirmAction/constants.ts +0 -9
- package/src/components/ConfirmAction/index.ts +0 -1
- package/src/components/ConfirmAction/styles.ts +0 -17
- package/src/components/ConfirmAction/useLogic/index.ts +0 -1
- package/src/components/ConfirmAction/useLogic/useLogic.ts +0 -46
- package/src/components/ConfirmDialog/ConfirmDialog.stories.tsx +0 -69
- package/src/components/ConfirmDialog/ConfirmDialog.tsx +0 -83
- package/src/components/ConfirmDialog/index.ts +0 -1
- package/src/components/ConfirmDialog/styles.ts +0 -8
- package/src/components/ConfirmDialog/useLogic/index.ts +0 -1
- package/src/components/ConfirmDialog/useLogic/useLogic.ts +0 -23
- package/src/components/Container/Container.tsx +0 -15
- package/src/components/Container/index.ts +0 -1
- package/src/components/Container/styles.ts +0 -76
- package/src/components/ContentState/ContentState.stories.tsx +0 -244
- package/src/components/ContentState/ContentState.tsx +0 -90
- package/src/components/ContentState/index.ts +0 -3
- package/src/components/ContentState/styles.ts +0 -11
- package/src/components/ContentState/types.ts +0 -30
- package/src/components/CopyTypography/CopyTypography.stories.tsx +0 -94
- package/src/components/CopyTypography/CopyTypography.tsx +0 -55
- package/src/components/CopyTypography/enums.ts +0 -5
- package/src/components/CopyTypography/index.ts +0 -1
- package/src/components/CopyTypography/styles.ts +0 -28
- package/src/components/CopyTypography/useLogic/index.ts +0 -1
- package/src/components/CopyTypography/useLogic/useLogic.ts +0 -38
- package/src/components/DataGrid/Body/Body.tsx +0 -185
- package/src/components/DataGrid/Body/index.ts +0 -1
- package/src/components/DataGrid/Body/styles.tsx +0 -16
- package/src/components/DataGrid/Body/useLogic/index.ts +0 -1
- package/src/components/DataGrid/Body/useLogic/useLogic.ts +0 -20
- package/src/components/DataGrid/Cell/Cell.tsx +0 -63
- package/src/components/DataGrid/Cell/index.ts +0 -1
- package/src/components/DataGrid/Cell/styles.ts +0 -26
- package/src/components/DataGrid/Cell/useLogic/index.ts +0 -1
- package/src/components/DataGrid/Cell/useLogic/useLogic.ts +0 -35
- package/src/components/DataGrid/DataGrid.stories.tsx +0 -1883
- package/src/components/DataGrid/DataGrid.tsx +0 -307
- package/src/components/DataGrid/DataGridContext/DataGridContext.ts +0 -15
- package/src/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.tsx +0 -83
- package/src/components/DataGrid/DataGridContext/DataGridProvider/index.ts +0 -1
- package/src/components/DataGrid/DataGridContext/index.ts +0 -3
- package/src/components/DataGrid/Head/Head.tsx +0 -110
- package/src/components/DataGrid/Head/index.ts +0 -1
- package/src/components/DataGrid/Head/styles.ts +0 -21
- package/src/components/DataGrid/Head/useLogic/index.ts +0 -1
- package/src/components/DataGrid/Head/useLogic/useLogic.tsx +0 -65
- package/src/components/DataGrid/HeadCell/HeadCell.tsx +0 -68
- package/src/components/DataGrid/HeadCell/index.ts +0 -1
- package/src/components/DataGrid/HeadCell/styles.ts +0 -39
- package/src/components/DataGrid/HeadCell/useLogic/index.ts +0 -1
- package/src/components/DataGrid/HeadCell/useLogic/useLogic.ts +0 -29
- package/src/components/DataGrid/Loader/Loader.tsx +0 -26
- package/src/components/DataGrid/Loader/index.ts +0 -1
- package/src/components/DataGrid/Loader/styles.ts +0 -26
- package/src/components/DataGrid/NoData/NoData.tsx +0 -65
- package/src/components/DataGrid/NoData/index.ts +0 -1
- package/src/components/DataGrid/Row/NestedChildren/NestedChildren.tsx +0 -158
- package/src/components/DataGrid/Row/NestedChildren/index.ts +0 -1
- package/src/components/DataGrid/Row/NestedChildren/styles.ts +0 -80
- package/src/components/DataGrid/Row/NestedChildren/useLogic/index.ts +0 -1
- package/src/components/DataGrid/Row/NestedChildren/useLogic/useLogic.ts +0 -44
- package/src/components/DataGrid/Row/Row.tsx +0 -307
- package/src/components/DataGrid/Row/RowContext/RowContext.ts +0 -14
- package/src/components/DataGrid/Row/RowContext/RowProvider/RowProvider.tsx +0 -35
- package/src/components/DataGrid/Row/RowContext/RowProvider/index.ts +0 -1
- package/src/components/DataGrid/Row/RowContext/index.ts +0 -3
- package/src/components/DataGrid/Row/constants.ts +0 -3
- package/src/components/DataGrid/Row/index.ts +0 -3
- package/src/components/DataGrid/Row/styles.ts +0 -124
- package/src/components/DataGrid/Row/useLogic/index.ts +0 -1
- package/src/components/DataGrid/Row/useLogic/useLogic.ts +0 -144
- package/src/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.ts +0 -20
- package/src/components/DataGrid/Row/useLogic/utils/getColumnsMap/index.ts +0 -1
- package/src/components/DataGrid/Row/useLogic/utils/index.ts +0 -3
- package/src/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/index.ts +0 -1
- package/src/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.ts +0 -34
- package/src/components/DataGrid/Row/utils/checkIsDisabled/checkIsDisabled.ts +0 -15
- package/src/components/DataGrid/Row/utils/checkIsDisabled/index.ts +0 -1
- package/src/components/DataGrid/Row/utils/index.ts +0 -1
- package/src/components/DataGrid/constants.ts +0 -11
- package/src/components/DataGrid/enums.ts +0 -9
- package/src/components/DataGrid/faker.ts +0 -116
- package/src/components/DataGrid/index.ts +0 -11
- package/src/components/DataGrid/styles.ts +0 -31
- package/src/components/DataGrid/types.ts +0 -118
- package/src/components/DataGrid/useLogic/index.ts +0 -1
- package/src/components/DataGrid/useLogic/useLogic.tsx +0 -139
- package/src/components/DataGrid/useLogic/utils/getGridTemplateColumns/getGridTemplateColumns.ts +0 -7
- package/src/components/DataGrid/useLogic/utils/getGridTemplateColumns/index.ts +0 -1
- package/src/components/DataGrid/useLogic/utils/index.ts +0 -1
- package/src/components/DataGrid/utils/alignToJustifyContent/alignToJustifyContent.ts +0 -20
- package/src/components/DataGrid/utils/alignToJustifyContent/constants.ts +0 -7
- package/src/components/DataGrid/utils/alignToJustifyContent/index.ts +0 -1
- package/src/components/DataGrid/utils/index.ts +0 -1
- package/src/components/DataGridActionCell/DataGridActionCell.stories.tsx +0 -272
- package/src/components/DataGridActionCell/DataGridActionCell.tsx +0 -70
- package/src/components/DataGridActionCell/MainAction/MainAction.tsx +0 -76
- package/src/components/DataGridActionCell/MainAction/MainIconButton/MainIconButton.tsx +0 -88
- package/src/components/DataGridActionCell/MainAction/MainIconButton/index.ts +0 -1
- package/src/components/DataGridActionCell/MainAction/MainIconButton/useLogic/index.ts +0 -1
- package/src/components/DataGridActionCell/MainAction/MainIconButton/useLogic/useLogic.ts +0 -31
- package/src/components/DataGridActionCell/MainAction/index.ts +0 -1
- package/src/components/DataGridActionCell/SecondaryAction/SecondaryAction.tsx +0 -54
- package/src/components/DataGridActionCell/SecondaryAction/index.ts +0 -1
- package/src/components/DataGridActionCell/index.ts +0 -1
- package/src/components/DataGridActionCell/styles.ts +0 -6
- package/src/components/DataGridActionCell/types.ts +0 -123
- package/src/components/DataGridActionCell/useLogic/index.ts +0 -1
- package/src/components/DataGridActionCell/useLogic/useLogic.ts +0 -53
- package/src/components/DataGridOld/Body/Body.tsx +0 -56
- package/src/components/DataGridOld/Body/index.ts +0 -1
- package/src/components/DataGridOld/Body/styles.ts +0 -12
- package/src/components/DataGridOld/Cell/Cell.tsx +0 -41
- package/src/components/DataGridOld/Cell/index.ts +0 -1
- package/src/components/DataGridOld/Cell/styles.ts +0 -25
- package/src/components/DataGridOld/DataGridOld.tsx +0 -65
- package/src/components/DataGridOld/Head/Head.tsx +0 -31
- package/src/components/DataGridOld/Head/index.ts +0 -1
- package/src/components/DataGridOld/Head/styles.ts +0 -11
- package/src/components/DataGridOld/HeadCell/HeadCell.tsx +0 -14
- package/src/components/DataGridOld/HeadCell/index.ts +0 -1
- package/src/components/DataGridOld/HeadCell/styles.ts +0 -29
- package/src/components/DataGridOld/Row/Row.tsx +0 -53
- package/src/components/DataGridOld/Row/index.ts +0 -1
- package/src/components/DataGridOld/Row/styles.ts +0 -24
- package/src/components/DataGridOld/State/State.tsx +0 -32
- package/src/components/DataGridOld/State/index.ts +0 -1
- package/src/components/DataGridOld/State/styles.ts +0 -25
- package/src/components/DataGridOld/constants.ts +0 -1
- package/src/components/DataGridOld/index.ts +0 -2
- package/src/components/DataGridOld/styles.ts +0 -24
- package/src/components/DataGridOld/types.ts +0 -18
- package/src/components/DataGridPagination/DataGridPagination.stories.tsx +0 -207
- package/src/components/DataGridPagination/DataGridPagination.tsx +0 -102
- package/src/components/DataGridPagination/constants.ts +0 -3
- package/src/components/DataGridPagination/faker.ts +0 -36
- package/src/components/DataGridPagination/index.ts +0 -1
- package/src/components/DataGridPagination/styles.ts +0 -26
- package/src/components/DataGridPagination/useLogic/index.ts +0 -1
- package/src/components/DataGridPagination/useLogic/useLogic.ts +0 -53
- package/src/components/Description/Description.stories.tsx +0 -328
- package/src/components/Description/Description.tsx +0 -73
- package/src/components/Description/DescriptionContext/DescriptionContext.tsx +0 -15
- package/src/components/Description/DescriptionContext/DescriptionContextProvider/DescriptionContextProvider.tsx +0 -21
- package/src/components/Description/DescriptionContext/DescriptionContextProvider/index.ts +0 -1
- package/src/components/Description/DescriptionContext/index.ts +0 -3
- package/src/components/Description/Name/Name.tsx +0 -28
- package/src/components/Description/Name/index.ts +0 -1
- package/src/components/Description/Name/styles.ts +0 -29
- package/src/components/Description/Value/Value.tsx +0 -73
- package/src/components/Description/Value/index.ts +0 -1
- package/src/components/Description/Value/styles.ts +0 -62
- package/src/components/Description/Value/useLogic/index.ts +0 -1
- package/src/components/Description/Value/useLogic/useLogic.ts +0 -18
- package/src/components/Description/constants.ts +0 -5
- package/src/components/Description/index.ts +0 -3
- package/src/components/Description/styles.ts +0 -27
- package/src/components/Description/useLogic/index.ts +0 -1
- package/src/components/Description/useLogic/useLogic.ts +0 -21
- package/src/components/DescriptionList/DescriptionList.stories.tsx +0 -476
- package/src/components/DescriptionList/DescriptionList.tsx +0 -108
- package/src/components/DescriptionList/index.ts +0 -3
- package/src/components/DescriptionList/styles.ts +0 -67
- package/src/components/DescriptionList/types.ts +0 -46
- package/src/components/DescriptionList/utils/getTooltipProps/getTooltipProps.ts +0 -3
- package/src/components/DescriptionList/utils/getTooltipProps/index.ts +0 -1
- package/src/components/DescriptionList/utils/index.ts +0 -1
- package/src/components/Dialog/Dialog.stories.tsx +0 -430
- package/src/components/Dialog/Dialog.tsx +0 -68
- package/src/components/Dialog/constants.ts +0 -7
- package/src/components/Dialog/index.ts +0 -1
- package/src/components/Dialog/styles.ts +0 -26
- package/src/components/DialogActions/DialogActions.stories.tsx +0 -112
- package/src/components/DialogActions/DialogActions.tsx +0 -19
- package/src/components/DialogActions/index.ts +0 -1
- package/src/components/DialogActions/styles.ts +0 -17
- package/src/components/DialogContent/DialogContent.stories.tsx +0 -68
- package/src/components/DialogContent/DialogContent.tsx +0 -11
- package/src/components/DialogContent/index.ts +0 -1
- package/src/components/DialogContent/styles.ts +0 -13
- package/src/components/DialogContentText/DialogContentText.stories.tsx +0 -65
- package/src/components/DialogContentText/DialogContentText.tsx +0 -12
- package/src/components/DialogContentText/index.ts +0 -1
- package/src/components/DialogContentText/styles.ts +0 -8
- package/src/components/DialogHeader/DialogHeader.stories.tsx +0 -108
- package/src/components/DialogHeader/DialogHeader.tsx +0 -58
- package/src/components/DialogHeader/index.ts +0 -1
- package/src/components/DialogHeader/styles.ts +0 -63
- package/src/components/DialogTitle/DialogTitle.tsx +0 -43
- package/src/components/DialogTitle/index.ts +0 -1
- package/src/components/Divider/Divider.stories.tsx +0 -58
- package/src/components/Divider/Divider.tsx +0 -10
- package/src/components/Divider/index.ts +0 -1
- package/src/components/DropdownButton/DropdownButton.stories.tsx +0 -191
- package/src/components/DropdownButton/DropdownButton.tsx +0 -46
- package/src/components/DropdownButton/index.ts +0 -1
- package/src/components/ErrorBoundary/ErrorBoundary.stories.tsx +0 -58
- package/src/components/ErrorBoundary/ErrorBoundary.stubs.tsx +0 -67
- package/src/components/ErrorBoundary/ErrorBoundary.tsx +0 -73
- package/src/components/ErrorBoundary/constants.ts +0 -15
- package/src/components/ErrorBoundary/enums.ts +0 -9
- package/src/components/ErrorBoundary/index.ts +0 -1
- package/src/components/Filename/Filename.stories.tsx +0 -244
- package/src/components/Filename/Filename.tsx +0 -57
- package/src/components/Filename/index.ts +0 -1
- package/src/components/Filename/styles.ts +0 -18
- package/src/components/Filename/useLogic/index.ts +0 -1
- package/src/components/Filename/useLogic/useLogic.ts +0 -36
- package/src/components/Filename/useLogic/utils/findExtension/constants.ts +0 -16
- package/src/components/Filename/useLogic/utils/findExtension/findExtension.ts +0 -17
- package/src/components/Filename/useLogic/utils/findExtension/index.ts +0 -1
- package/src/components/Filename/useLogic/utils/index.ts +0 -1
- package/src/components/Filename/useLogic/utils/truncateString/constants.ts +0 -1
- package/src/components/Filename/useLogic/utils/truncateString/index.ts +0 -1
- package/src/components/Filename/useLogic/utils/truncateString/truncateString.ts +0 -24
- package/src/components/FormControl/FormControl.tsx +0 -12
- package/src/components/FormControl/index.tsx +0 -1
- package/src/components/FormControlLabel/FormControlLabel.tsx +0 -6
- package/src/components/FormControlLabel/index.ts +0 -3
- package/src/components/FormControlLabel/styles.ts +0 -14
- package/src/components/FormControlLabel/types.ts +0 -6
- package/src/components/FormHelperText/FormHelperText.tsx +0 -29
- package/src/components/FormHelperText/FormHelperTextContent/FormHelperTextContent.tsx +0 -38
- package/src/components/FormHelperText/FormHelperTextContent/index.ts +0 -1
- package/src/components/FormHelperText/FormHelperTextContent/styles.ts +0 -44
- package/src/components/FormHelperText/index.ts +0 -3
- package/src/components/FormLabel/FormLabel.tsx +0 -11
- package/src/components/FormLabel/index.ts +0 -1
- package/src/components/FormLabel/styles.ts +0 -6
- package/src/components/GuidTypography/GuidTypography.stories.tsx +0 -58
- package/src/components/GuidTypography/GuidTypography.tsx +0 -10
- package/src/components/GuidTypography/index.ts +0 -1
- package/src/components/IconButton/IconButton.stories.tsx +0 -236
- package/src/components/IconButton/IconButton.tsx +0 -52
- package/src/components/IconButton/index.ts +0 -1
- package/src/components/IconButton/styles.ts +0 -52
- package/src/components/IconDropdownButton/IconDropdownButton.stories.tsx +0 -197
- package/src/components/IconDropdownButton/IconDropdownButton.tsx +0 -38
- package/src/components/IconDropdownButton/index.ts +0 -1
- package/src/components/InternalErrorPlaceholder/InternalErrorPlaceholder.stories.tsx +0 -34
- package/src/components/InternalErrorPlaceholder/InternalErrorPlaceholder.tsx +0 -39
- package/src/components/InternalErrorPlaceholder/index.ts +0 -1
- package/src/components/Link/Link.stories.tsx +0 -89
- package/src/components/Link/Link.tsx +0 -44
- package/src/components/Link/index.ts +0 -1
- package/src/components/Link/styles.ts +0 -37
- package/src/components/List/List.stories.tsx +0 -255
- package/src/components/List/List.tsx +0 -9
- package/src/components/List/index.ts +0 -1
- package/src/components/ListItem/ListItem.stories.tsx +0 -85
- package/src/components/ListItem/ListItem.tsx +0 -12
- package/src/components/ListItem/index.ts +0 -1
- package/src/components/ListItemButton/ListItemButton.stories.tsx +0 -113
- package/src/components/ListItemButton/ListItemButton.tsx +0 -68
- package/src/components/ListItemButton/constants.ts +0 -5
- package/src/components/ListItemButton/index.ts +0 -1
- package/src/components/ListItemIcon/ListItemIcon.stories.tsx +0 -42
- package/src/components/ListItemIcon/ListItemIcon.tsx +0 -14
- package/src/components/ListItemIcon/index.ts +0 -1
- package/src/components/ListItemIcon/styles.ts +0 -5
- package/src/components/ListItemText/ListItemText.stories.tsx +0 -40
- package/src/components/ListItemText/ListItemText.tsx +0 -11
- package/src/components/ListItemText/index.ts +0 -1
- package/src/components/ListSubheader/ListSubheader.stories.tsx +0 -43
- package/src/components/ListSubheader/ListSubheader.tsx +0 -12
- package/src/components/ListSubheader/index.ts +0 -1
- package/src/components/Menu/Menu.stories.tsx +0 -109
- package/src/components/Menu/Menu.tsx +0 -38
- package/src/components/Menu/index.ts +0 -1
- package/src/components/MenuItem/MenuItem.stories.tsx +0 -111
- package/src/components/MenuItem/MenuItem.tsx +0 -67
- package/src/components/MenuItem/index.ts +0 -1
- package/src/components/MenuList/MenuList.stories.tsx +0 -87
- package/src/components/MenuList/MenuList.tsx +0 -6
- package/src/components/MenuList/index.ts +0 -3
- package/src/components/MenuList/styles.ts +0 -10
- package/src/components/MenuList/types.ts +0 -6
- package/src/components/NavMenu/Item/Item.tsx +0 -87
- package/src/components/NavMenu/Item/ItemButton/ItemButton.tsx +0 -75
- package/src/components/NavMenu/Item/ItemButton/index.ts +0 -1
- package/src/components/NavMenu/Item/ItemButton/styles.ts +0 -143
- package/src/components/NavMenu/Item/List/List.tsx +0 -43
- package/src/components/NavMenu/Item/List/index.ts +0 -1
- package/src/components/NavMenu/Item/index.ts +0 -1
- package/src/components/NavMenu/NavMenu.stories.tsx +0 -117
- package/src/components/NavMenu/NavMenu.tsx +0 -32
- package/src/components/NavMenu/index.ts +0 -1
- package/src/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.stories.tsx +0 -32
- package/src/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.tsx +0 -30
- package/src/components/OutdatedReleasePlaceholder/index.ts +0 -1
- package/src/components/OverflowTypography/OverflowTypography.stories.tsx +0 -105
- package/src/components/OverflowTypography/OverflowTypography.tsx +0 -106
- package/src/components/OverflowTypography/hooks/index.ts +0 -1
- package/src/components/OverflowTypography/hooks/useOverflowed/index.ts +0 -1
- package/src/components/OverflowTypography/hooks/useOverflowed/useOverflowed.ts +0 -58
- package/src/components/OverflowTypography/index.ts +0 -1
- package/src/components/OverflowTypography/styles.ts +0 -39
- package/src/components/OverflowTypography/useLogic/index.ts +0 -1
- package/src/components/OverflowTypography/useLogic/useLogic.ts +0 -29
- package/src/components/OverflowTypography/utils/index.ts +0 -1
- package/src/components/OverflowTypography/utils/truncateString/index.ts +0 -1
- package/src/components/OverflowTypography/utils/truncateString/truncateString.ts +0 -9
- package/src/components/Pagination/Pagination.stories.tsx +0 -56
- package/src/components/Pagination/Pagination.tsx +0 -7
- package/src/components/Pagination/index.ts +0 -3
- package/src/components/Pagination/types.ts +0 -13
- package/src/components/Paper/Paper.tsx +0 -25
- package/src/components/Paper/index.ts +0 -1
- package/src/components/Placeholder/Image/Image.tsx +0 -16
- package/src/components/Placeholder/Image/index.ts +0 -1
- package/src/components/Placeholder/Image/styles.ts +0 -24
- package/src/components/Placeholder/Placeholder.stories.tsx +0 -205
- package/src/components/Placeholder/Placeholder.tsx +0 -108
- package/src/components/Placeholder/constants.ts +0 -31
- package/src/components/Placeholder/index.ts +0 -5
- package/src/components/Placeholder/styles.ts +0 -94
- package/src/components/Placeholder/types.ts +0 -1
- package/src/components/Popover/Popover.stories.tsx +0 -211
- package/src/components/Popover/Popover.tsx +0 -39
- package/src/components/Popover/index.ts +0 -1
- package/src/components/ProgressBar/ProgressBar.stories.tsx +0 -31
- package/src/components/ProgressBar/ProgressBar.tsx +0 -26
- package/src/components/ProgressBar/index.ts +0 -1
- package/src/components/Radio/Icon/Icon.tsx +0 -37
- package/src/components/Radio/Icon/index.ts +0 -1
- package/src/components/Radio/Radio.stories.tsx +0 -32
- package/src/components/Radio/Radio.tsx +0 -24
- package/src/components/Radio/constants.ts +0 -9
- package/src/components/Radio/index.ts +0 -1
- package/src/components/Radio/styles.ts +0 -70
- package/src/components/RadioField/RadioField.stories.tsx +0 -74
- package/src/components/RadioField/RadioField.tsx +0 -55
- package/src/components/RadioField/index.ts +0 -1
- package/src/components/RadioField/styles.ts +0 -10
- package/src/components/RadioGroup/RadioGroup.stories.tsx +0 -60
- package/src/components/RadioGroup/RadioGroup.tsx +0 -79
- package/src/components/RadioGroup/RadioGroupContext/RadioGroupContext.ts +0 -9
- package/src/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/RadioGroupContextProvider.tsx +0 -18
- package/src/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/index.ts +0 -1
- package/src/components/RadioGroup/RadioGroupContext/index.ts +0 -3
- package/src/components/RadioGroup/index.ts +0 -3
- package/src/components/RadioGroupField/RadioGroupField.tsx +0 -17
- package/src/components/RadioGroupField/index.ts +0 -1
- package/src/components/SearchField/SearchField.tsx +0 -93
- package/src/components/SearchField/index.ts +0 -1
- package/src/components/SearchField/styles.ts +0 -38
- package/src/components/Select/Select.stories.tsx +0 -320
- package/src/components/Select/Select.tsx +0 -204
- package/src/components/Select/constants.ts +0 -1
- package/src/components/Select/index.ts +0 -1
- package/src/components/Select/styles.ts +0 -60
- package/src/components/Select/useLogic/index.ts +0 -1
- package/src/components/Select/useLogic/useLogic.ts +0 -53
- package/src/components/Skeleton/Skeleton.stories.tsx +0 -78
- package/src/components/Skeleton/Skeleton.tsx +0 -31
- package/src/components/Skeleton/index.ts +0 -1
- package/src/components/Skeleton/styles.ts +0 -16
- package/src/components/Switch/Switch.stories.tsx +0 -179
- package/src/components/Switch/Switch.tsx +0 -14
- package/src/components/Switch/index.ts +0 -1
- package/src/components/Switch/styles.ts +0 -14
- package/src/components/Tab/Tab.stories.tsx +0 -53
- package/src/components/Tab/Tab.tsx +0 -20
- package/src/components/Tab/index.ts +0 -1
- package/src/components/Tab/styles.ts +0 -22
- package/src/components/Tabs/Tabs.stories.tsx +0 -74
- package/src/components/Tabs/Tabs.tsx +0 -27
- package/src/components/Tabs/index.ts +0 -1
- package/src/components/Tabs/styles.ts +0 -20
- package/src/components/Tag/Tag.stories.tsx +0 -592
- package/src/components/Tag/Tag.tsx +0 -102
- package/src/components/Tag/enums.ts +0 -20
- package/src/components/Tag/index.ts +0 -3
- package/src/components/Tag/styles.ts +0 -332
- package/src/components/Tag/types.ts +0 -9
- package/src/components/TagBadge/TagBadge.stories.tsx +0 -231
- package/src/components/TagBadge/TagBadge.tsx +0 -47
- package/src/components/TagBadge/index.ts +0 -1
- package/src/components/TagBadge/styles.ts +0 -14
- package/src/components/TagBadge/utils/getCheckableTagBadgeBgColor/getCheckableTagBadgeBgColor.ts +0 -31
- package/src/components/TagBadge/utils/getCheckableTagBadgeBgColor/index.ts +0 -1
- package/src/components/TagBadge/utils/index.ts +0 -1
- package/src/components/TagsList/Tag/Tag.tsx +0 -49
- package/src/components/TagsList/Tag/index.ts +0 -1
- package/src/components/TagsList/Tag/styles.ts +0 -19
- package/src/components/TagsList/Tag/useLogic/index.ts +0 -1
- package/src/components/TagsList/Tag/useLogic/useLogic.ts +0 -11
- package/src/components/TagsList/TagsList.tsx +0 -80
- package/src/components/TagsList/index.ts +0 -3
- package/src/components/TagsList/styles.ts +0 -6
- package/src/components/TagsList/types.ts +0 -1
- package/src/components/TagsList/useLogic/index.ts +0 -1
- package/src/components/TagsList/useLogic/useLogic.ts +0 -184
- package/src/components/TagsList/utils/getElementByText/getElementByText.ts +0 -21
- package/src/components/TagsList/utils/getElementByText/index.ts +0 -1
- package/src/components/TagsList/utils/getKey/getKey.ts +0 -11
- package/src/components/TagsList/utils/getKey/index.ts +0 -1
- package/src/components/TagsList/utils/index.ts +0 -3
- package/src/components/TextArea/TextArea.stories.tsx +0 -81
- package/src/components/TextArea/TextArea.tsx +0 -8
- package/src/components/TextArea/index.ts +0 -1
- package/src/components/TextField/TextField.stories.tsx +0 -94
- package/src/components/TextField/TextField.tsx +0 -117
- package/src/components/TextField/index.ts +0 -1
- package/src/components/Tooltip/Tooltip.stories.tsx +0 -234
- package/src/components/Tooltip/Tooltip.tsx +0 -48
- package/src/components/Tooltip/constants.ts +0 -4
- package/src/components/Tooltip/index.ts +0 -3
- package/src/components/Tooltip/styles.tsx +0 -65
- package/src/components/Tooltip/types.ts +0 -3
- package/src/components/Typography/Typography.stories.tsx +0 -191
- package/src/components/Typography/Typography.tsx +0 -107
- package/src/components/Typography/enums.ts +0 -14
- package/src/components/Typography/hooks/index.ts +0 -1
- package/src/components/Typography/hooks/useTypographyColor/index.ts +0 -1
- package/src/components/Typography/hooks/useTypographyColor/useTypographyColor.tsx +0 -54
- package/src/components/Typography/index.ts +0 -3
- package/src/components/Typography/styles.ts +0 -9
- package/src/components/Typography/types.ts +0 -30
- package/src/components/index.ts +0 -151
- package/src/components/types.ts +0 -1
- package/src/hooks/index.ts +0 -4
- package/src/hooks/useMenu/index.ts +0 -1
- package/src/hooks/useMenu/useMenu.stories.tsx +0 -31
- package/src/hooks/useMenu/useMenu.ts +0 -45
- package/src/hooks/usePopover/index.ts +0 -1
- package/src/hooks/usePopover/usePopover.ts +0 -27
- package/src/hooks/useToggle/index.ts +0 -1
- package/src/hooks/useToggle/useToggle.ts +0 -76
- package/src/hooks/useViewportType/index.ts +0 -1
- package/src/hooks/useViewportType/useViewportType.stories.tsx +0 -30
- package/src/hooks/useViewportType/useViewportType.ts +0 -13
- package/src/illustrations/certificates-not-found.svg +0 -91
- package/src/illustrations/data-access-disabled.svg +0 -103
- package/src/illustrations/data-access-success.svg +0 -119
- package/src/illustrations/drop-files-in.svg +0 -40
- package/src/illustrations/drop-files-out.svg +0 -43
- package/src/illustrations/error.svg +0 -159
- package/src/illustrations/features.svg +0 -35
- package/src/illustrations/mail.svg +0 -84
- package/src/illustrations/no-data.svg +0 -1
- package/src/illustrations/no-notifications.svg +0 -102
- package/src/illustrations/outdated-release.svg +0 -173
- package/src/illustrations/placeholder.svg +0 -20
- package/src/illustrations/search.svg +0 -38
- package/src/illustrations/sketchpad.svg +0 -114
- package/src/illustrations/technical-support.svg +0 -341
- package/src/theme/baseTheme/baseTheme.ts +0 -49
- package/src/theme/baseTheme/index.ts +0 -1
- package/src/theme/breakpoints.ts +0 -11
- package/src/theme/components/MuiAlert.ts +0 -70
- package/src/theme/components/MuiAutocomplete.ts +0 -94
- package/src/theme/components/MuiButton.ts +0 -418
- package/src/theme/components/MuiButtonBase.ts +0 -16
- package/src/theme/components/MuiCircularProgress.ts +0 -22
- package/src/theme/components/MuiDialog.ts +0 -13
- package/src/theme/components/MuiDialogActions.ts +0 -17
- package/src/theme/components/MuiDialogContent.ts +0 -13
- package/src/theme/components/MuiDialogTitle.ts +0 -24
- package/src/theme/components/MuiDrawer.ts +0 -15
- package/src/theme/components/MuiFormHelperText.ts +0 -23
- package/src/theme/components/MuiFormLabel.ts +0 -16
- package/src/theme/components/MuiInputLabel.ts +0 -33
- package/src/theme/components/MuiLinearProgress.ts +0 -22
- package/src/theme/components/MuiListItemButton.ts +0 -16
- package/src/theme/components/MuiListItemText.ts +0 -16
- package/src/theme/components/MuiMenu.ts +0 -32
- package/src/theme/components/MuiMenuItem.ts +0 -36
- package/src/theme/components/MuiOutlinedInput.ts +0 -75
- package/src/theme/components/MuiPaginationItem.ts +0 -16
- package/src/theme/components/MuiPaper.ts +0 -38
- package/src/theme/components/MuiStep.ts +0 -16
- package/src/theme/components/MuiStepConnector.ts +0 -11
- package/src/theme/components/MuiStepLabel.ts +0 -30
- package/src/theme/components/MuiSwitch.ts +0 -153
- package/src/theme/components/MuiTab.ts +0 -15
- package/src/theme/components/MuiTableCell.ts +0 -16
- package/src/theme/components/MuiTableHead.ts +0 -15
- package/src/theme/components/MuiTableRow.ts +0 -19
- package/src/theme/components/MuiTabs.ts +0 -19
- package/src/theme/components/MuiTextField.ts +0 -28
- package/src/theme/components/MuiToggleButton.ts +0 -14
- package/src/theme/components/MuiToggleButtonGroup.ts +0 -10
- package/src/theme/components/MuiTypography.ts +0 -41
- package/src/theme/components/components.ts +0 -155
- package/src/theme/components/index.ts +0 -1
- package/src/theme/constants.ts +0 -1
- package/src/theme/elevation.ts +0 -15
- package/src/theme/hooks/index.ts +0 -1
- package/src/theme/hooks/useTheme/index.ts +0 -7
- package/src/theme/index.ts +0 -13
- package/src/theme/palette/componentsColors/componentsColors.ts +0 -9
- package/src/theme/palette/componentsColors/index.ts +0 -1
- package/src/theme/palette/componentsColors/linkColors/index.ts +0 -1
- package/src/theme/palette/componentsColors/linkColors/linkColors.ts +0 -13
- package/src/theme/palette/index.ts +0 -5
- package/src/theme/palette/palette.ts +0 -125
- package/src/theme/palette/types.ts +0 -55
- package/src/theme/shape.ts +0 -11
- package/src/theme/types.ts +0 -30
- package/src/theme/typography.ts +0 -191
- package/test.tsx +0 -1
- package/tsconfig.json +0 -16
- /package/{dist → lib}/components/Accordion/index.d.ts +0 -0
- /package/{dist → lib}/components/ActionCell/MainAction/index.d.ts +0 -0
- /package/{dist → lib}/components/ActionCell/SecondaryAction/index.d.ts +0 -0
- /package/{dist → lib}/components/ActionCell/index.d.ts +0 -0
- /package/{dist → lib}/components/ActionCell/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/AsyncAutocomplete/constants.d.ts +0 -0
- /package/{dist → lib}/components/AsyncAutocomplete/index.d.ts +0 -0
- /package/{dist → lib}/components/AsyncAutocomplete/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/Autocomplete/constants.d.ts +0 -0
- /package/{dist → lib}/components/Autocomplete/enums.d.ts +0 -0
- /package/{dist → lib}/components/Autocomplete/index.d.ts +0 -0
- /package/{dist → lib}/components/Autocomplete/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/Autocomplete/useLogic/utils/checkIsInputEmpty/checkIsInputEmpty.d.ts +0 -0
- /package/{dist → lib}/components/Autocomplete/useLogic/utils/checkIsInputEmpty/index.d.ts +0 -0
- /package/{dist → lib}/components/Autocomplete/useLogic/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/Badge/index.d.ts +0 -0
- /package/{dist → lib}/components/Badge/types.d.ts +0 -0
- /package/{dist → lib}/components/BottomDrawer/constants.d.ts +0 -0
- /package/{dist → lib}/components/BottomDrawer/index.d.ts +0 -0
- /package/{dist → lib}/components/Button/constants.d.ts +0 -0
- /package/{dist → lib}/components/Button/enums.d.ts +0 -0
- /package/{dist → lib}/components/Button/index.d.ts +0 -0
- /package/{dist → lib}/components/Button/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/Checkbox/index.d.ts +0 -0
- /package/{dist → lib}/components/CheckboxField/index.d.ts +0 -0
- /package/{dist → lib}/components/Chevron/index.d.ts +0 -0
- /package/{dist → lib}/components/CircularProgress/constants.d.ts +0 -0
- /package/{dist → lib}/components/CircularProgress/index.d.ts +0 -0
- /package/{dist → lib}/components/CircularProgress/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/Collapse/index.d.ts +0 -0
- /package/{dist → lib}/components/ConfigProvider/index.d.ts +0 -0
- /package/{dist → lib}/components/ConfirmAction/constants.d.ts +0 -0
- /package/{dist → lib}/components/ConfirmAction/index.d.ts +0 -0
- /package/{dist → lib}/components/ConfirmAction/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/ConfirmDialog/index.d.ts +0 -0
- /package/{dist → lib}/components/ConfirmDialog/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/Container/index.d.ts +0 -0
- /package/{dist → lib}/components/ContentState/index.d.ts +0 -0
- /package/{dist → lib}/components/CopyTypography/enums.d.ts +0 -0
- /package/{dist → lib}/components/CopyTypography/index.d.ts +0 -0
- /package/{dist → lib}/components/CopyTypography/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Body/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Body/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Cell/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Cell/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/DataGridContext/DataGridProvider/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/DataGridContext/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Head/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Head/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/HeadCell/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/HeadCell/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Loader/Loader.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Loader/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/NoData/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/NestedChildren/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/NestedChildren/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/RowContext/RowProvider/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/RowContext/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/constants.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/useLogic/utils/getColumnsMap/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/useLogic/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/utils/checkIsDisabled/checkIsDisabled.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/utils/checkIsDisabled/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/Row/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/constants.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/enums.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/useLogic/utils/getGridTemplateColumns/getGridTemplateColumns.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/useLogic/utils/getGridTemplateColumns/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/useLogic/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/utils/alignToJustifyContent/constants.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/utils/alignToJustifyContent/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGrid/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridActionCell/MainAction/MainIconButton/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridActionCell/MainAction/MainIconButton/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridActionCell/MainAction/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridActionCell/SecondaryAction/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridActionCell/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridActionCell/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridOld/Body/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridOld/Cell/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridOld/Head/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridOld/HeadCell/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridOld/Row/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridOld/State/State.d.ts +0 -0
- /package/{dist → lib}/components/DataGridOld/State/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridOld/constants.d.ts +0 -0
- /package/{dist → lib}/components/DataGridOld/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridPagination/constants.d.ts +0 -0
- /package/{dist → lib}/components/DataGridPagination/index.d.ts +0 -0
- /package/{dist → lib}/components/DataGridPagination/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/Description/DescriptionContext/DescriptionContextProvider/index.d.ts +0 -0
- /package/{dist → lib}/components/Description/DescriptionContext/index.d.ts +0 -0
- /package/{dist → lib}/components/Description/Name/index.d.ts +0 -0
- /package/{dist → lib}/components/Description/Value/index.d.ts +0 -0
- /package/{dist → lib}/components/Description/Value/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/Description/constants.d.ts +0 -0
- /package/{dist → lib}/components/Description/index.d.ts +0 -0
- /package/{dist → lib}/components/Description/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/DescriptionList/index.d.ts +0 -0
- /package/{dist → lib}/components/DescriptionList/utils/getTooltipProps/getTooltipProps.d.ts +0 -0
- /package/{dist → lib}/components/DescriptionList/utils/getTooltipProps/index.d.ts +0 -0
- /package/{dist → lib}/components/DescriptionList/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/Dialog/constants.d.ts +0 -0
- /package/{dist → lib}/components/Dialog/index.d.ts +0 -0
- /package/{dist → lib}/components/DialogActions/index.d.ts +0 -0
- /package/{dist → lib}/components/DialogContent/index.d.ts +0 -0
- /package/{dist → lib}/components/DialogContentText/index.d.ts +0 -0
- /package/{dist → lib}/components/DialogHeader/index.d.ts +0 -0
- /package/{dist → lib}/components/DialogTitle/index.d.ts +0 -0
- /package/{dist → lib}/components/Divider/index.d.ts +0 -0
- /package/{dist → lib}/components/DropdownButton/index.d.ts +0 -0
- /package/{dist → lib}/components/ErrorBoundary/ErrorBoundary.stubs.d.ts +0 -0
- /package/{dist → lib}/components/ErrorBoundary/constants.d.ts +0 -0
- /package/{dist → lib}/components/ErrorBoundary/enums.d.ts +0 -0
- /package/{dist → lib}/components/ErrorBoundary/index.d.ts +0 -0
- /package/{dist → lib}/components/Filename/index.d.ts +0 -0
- /package/{dist → lib}/components/Filename/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/Filename/useLogic/utils/findExtension/constants.d.ts +0 -0
- /package/{dist → lib}/components/Filename/useLogic/utils/findExtension/findExtension.d.ts +0 -0
- /package/{dist → lib}/components/Filename/useLogic/utils/findExtension/index.d.ts +0 -0
- /package/{dist → lib}/components/Filename/useLogic/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/Filename/useLogic/utils/truncateString/constants.d.ts +0 -0
- /package/{dist → lib}/components/Filename/useLogic/utils/truncateString/index.d.ts +0 -0
- /package/{dist → lib}/components/Filename/useLogic/utils/truncateString/truncateString.d.ts +0 -0
- /package/{dist → lib}/components/FormControl/index.d.ts +0 -0
- /package/{dist → lib}/components/FormControlLabel/index.d.ts +0 -0
- /package/{dist → lib}/components/FormHelperText/FormHelperTextContent/index.d.ts +0 -0
- /package/{dist → lib}/components/FormHelperText/index.d.ts +0 -0
- /package/{dist → lib}/components/FormLabel/index.d.ts +0 -0
- /package/{dist → lib}/components/GuidTypography/index.d.ts +0 -0
- /package/{dist → lib}/components/IconButton/index.d.ts +0 -0
- /package/{dist → lib}/components/IconDropdownButton/index.d.ts +0 -0
- /package/{dist → lib}/components/InternalErrorPlaceholder/InternalErrorPlaceholder.d.ts +0 -0
- /package/{dist → lib}/components/InternalErrorPlaceholder/index.d.ts +0 -0
- /package/{dist → lib}/components/Link/index.d.ts +0 -0
- /package/{dist → lib}/components/List/index.d.ts +0 -0
- /package/{dist → lib}/components/ListItem/index.d.ts +0 -0
- /package/{dist → lib}/components/ListItemButton/constants.d.ts +0 -0
- /package/{dist → lib}/components/ListItemButton/index.d.ts +0 -0
- /package/{dist → lib}/components/ListItemIcon/index.d.ts +0 -0
- /package/{dist → lib}/components/ListItemText/index.d.ts +0 -0
- /package/{dist → lib}/components/ListSubheader/index.d.ts +0 -0
- /package/{dist → lib}/components/Menu/index.d.ts +0 -0
- /package/{dist → lib}/components/MenuItem/index.d.ts +0 -0
- /package/{dist → lib}/components/MenuList/index.d.ts +0 -0
- /package/{dist → lib}/components/NavMenu/Item/ItemButton/index.d.ts +0 -0
- /package/{dist → lib}/components/NavMenu/Item/List/index.d.ts +0 -0
- /package/{dist → lib}/components/NavMenu/Item/index.d.ts +0 -0
- /package/{dist → lib}/components/NavMenu/index.d.ts +0 -0
- /package/{dist → lib}/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.d.ts +0 -0
- /package/{dist → lib}/components/OutdatedReleasePlaceholder/index.d.ts +0 -0
- /package/{dist → lib}/components/OverflowTypography/hooks/index.d.ts +0 -0
- /package/{dist → lib}/components/OverflowTypography/hooks/useOverflowed/index.d.ts +0 -0
- /package/{dist → lib}/components/OverflowTypography/index.d.ts +0 -0
- /package/{dist → lib}/components/OverflowTypography/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/OverflowTypography/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/OverflowTypography/utils/truncateString/index.d.ts +0 -0
- /package/{dist → lib}/components/OverflowTypography/utils/truncateString/truncateString.d.ts +0 -0
- /package/{dist → lib}/components/Pagination/index.d.ts +0 -0
- /package/{dist → lib}/components/Paper/index.d.ts +0 -0
- /package/{dist → lib}/components/Placeholder/Image/index.d.ts +0 -0
- /package/{dist → lib}/components/Placeholder/index.d.ts +0 -0
- /package/{dist → lib}/components/Placeholder/types.d.ts +0 -0
- /package/{dist → lib}/components/Popover/index.d.ts +0 -0
- /package/{dist → lib}/components/ProgressBar/ProgressBar.d.ts +0 -0
- /package/{dist → lib}/components/ProgressBar/index.d.ts +0 -0
- /package/{dist → lib}/components/Radio/Icon/Icon.d.ts +0 -0
- /package/{dist → lib}/components/Radio/Icon/index.d.ts +0 -0
- /package/{dist → lib}/components/Radio/constants.d.ts +0 -0
- /package/{dist → lib}/components/Radio/index.d.ts +0 -0
- /package/{dist → lib}/components/RadioField/index.d.ts +0 -0
- /package/{dist → lib}/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/index.d.ts +0 -0
- /package/{dist → lib}/components/RadioGroup/RadioGroupContext/index.d.ts +0 -0
- /package/{dist → lib}/components/RadioGroup/index.d.ts +0 -0
- /package/{dist → lib}/components/RadioGroupField/index.d.ts +0 -0
- /package/{dist → lib}/components/SearchField/index.d.ts +0 -0
- /package/{dist → lib}/components/Select/constants.d.ts +0 -0
- /package/{dist → lib}/components/Select/index.d.ts +0 -0
- /package/{dist → lib}/components/Select/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/Skeleton/index.d.ts +0 -0
- /package/{dist → lib}/components/Switch/index.d.ts +0 -0
- /package/{dist → lib}/components/Tab/index.d.ts +0 -0
- /package/{dist → lib}/components/Tabs/index.d.ts +0 -0
- /package/{dist → lib}/components/Tag/enums.d.ts +0 -0
- /package/{dist → lib}/components/Tag/index.d.ts +0 -0
- /package/{dist → lib}/components/TagBadge/index.d.ts +0 -0
- /package/{dist → lib}/components/TagBadge/utils/getCheckableTagBadgeBgColor/index.d.ts +0 -0
- /package/{dist → lib}/components/TagBadge/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/TagsList/Tag/index.d.ts +0 -0
- /package/{dist → lib}/components/TagsList/Tag/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/TagsList/index.d.ts +0 -0
- /package/{dist → lib}/components/TagsList/types.d.ts +0 -0
- /package/{dist → lib}/components/TagsList/useLogic/index.d.ts +0 -0
- /package/{dist → lib}/components/TagsList/utils/getElementByText/getElementByText.d.ts +0 -0
- /package/{dist → lib}/components/TagsList/utils/getElementByText/index.d.ts +0 -0
- /package/{dist → lib}/components/TagsList/utils/getKey/index.d.ts +0 -0
- /package/{dist → lib}/components/TagsList/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/TextArea/index.d.ts +0 -0
- /package/{dist → lib}/components/TextField/index.d.ts +0 -0
- /package/{dist → lib}/components/Tooltip/constants.d.ts +0 -0
- /package/{dist → lib}/components/Tooltip/index.d.ts +0 -0
- /package/{dist → lib}/components/Typography/enums.d.ts +0 -0
- /package/{dist → lib}/components/Typography/hooks/index.d.ts +0 -0
- /package/{dist → lib}/components/Typography/hooks/useTypographyColor/index.d.ts +0 -0
- /package/{dist → lib}/components/Typography/index.d.ts +0 -0
- /package/{dist → lib}/components/Typography/styles.d.ts +0 -0
- /package/{dist → lib}/components/index.d.ts +0 -0
- /package/{dist → lib}/components/types.d.ts +0 -0
- /package/{dist → lib}/hooks/index.d.ts +0 -0
- /package/{dist → lib}/hooks/useMenu/index.d.ts +0 -0
- /package/{dist → lib}/hooks/usePopover/index.d.ts +0 -0
- /package/{dist → lib}/hooks/useToggle/index.d.ts +0 -0
- /package/{dist → lib}/hooks/useToggle/useToggle.d.ts +0 -0
- /package/{dist → lib}/hooks/useViewportType/index.d.ts +0 -0
- /package/{dist → lib}/hooks/useViewportType/useViewportType.d.ts +0 -0
- /package/{dist → lib}/index.d.ts +0 -0
- /package/{dist → lib}/theme/baseTheme/index.d.ts +0 -0
- /package/{dist → lib}/theme/components/index.d.ts +0 -0
- /package/{dist → lib}/theme/constants.d.ts +0 -0
- /package/{dist → lib}/theme/elevation.d.ts +0 -0
- /package/{dist → lib}/theme/hooks/index.d.ts +0 -0
- /package/{dist → lib}/theme/index.d.ts +0 -0
- /package/{dist → lib}/theme/palette/componentsColors/index.d.ts +0 -0
- /package/{dist → lib}/theme/palette/componentsColors/linkColors/index.d.ts +0 -0
- /package/{dist → lib}/theme/palette/componentsColors/linkColors/linkColors.d.ts +0 -0
- /package/{dist → lib}/theme/palette/index.d.ts +0 -0
- /package/{dist → lib}/theme/shape.d.ts +0 -0
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import type { CSSProperties, ReactNode } from 'react';
|
|
2
|
-
import type { SortStates } from './enums';
|
|
3
|
-
export type AlignVariant = 'left' | 'center' | 'right';
|
|
4
|
-
export type SortState = `${SortStates}`;
|
|
5
|
-
export type RenderCell<Data> = (params: Data) => ReactNode;
|
|
6
|
-
export type CellValue = unknown;
|
|
7
|
-
export type DataGridSort<TSortField> = {
|
|
8
|
-
/**
|
|
9
|
-
* @example {fieldId: 'test'}
|
|
10
|
-
* Значение поля сортируемой колонки
|
|
11
|
-
*/
|
|
12
|
-
fieldId: TSortField;
|
|
13
|
-
/**
|
|
14
|
-
* @example {sort: 'asc'}
|
|
15
|
-
* Значение возрастающий или убывающий сортировки (asc | desc)
|
|
16
|
-
*/
|
|
17
|
-
sort: SortState;
|
|
18
|
-
};
|
|
19
|
-
export type DataGridColumns<TData extends Record<string, CellValue>> = {
|
|
20
|
-
/**
|
|
21
|
-
* @example {field: 'test'}
|
|
22
|
-
* Значение ключа поля данных для колонки
|
|
23
|
-
*/
|
|
24
|
-
field?: keyof TData;
|
|
25
|
-
/**
|
|
26
|
-
* Название колонки таблицы
|
|
27
|
-
*/
|
|
28
|
-
label?: string;
|
|
29
|
-
/**
|
|
30
|
-
* Если true, будет включена сортировка колонки
|
|
31
|
-
*/
|
|
32
|
-
sortable?: boolean;
|
|
33
|
-
pointer?: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* @example {renderCell: (row) => <div>Hello Cell</div>'}
|
|
36
|
-
* Кастомное отображение ячеек для колонки
|
|
37
|
-
*/
|
|
38
|
-
renderCell?: RenderCell<TData>;
|
|
39
|
-
/**
|
|
40
|
-
* @example {format: (row) => new Date(row.createDate).toLocaleDateString()}
|
|
41
|
-
* Функция для кастомного форматирования данных ячеек для колонки
|
|
42
|
-
*/
|
|
43
|
-
format?: (data: TData) => CellValue;
|
|
44
|
-
/**
|
|
45
|
-
* CSS свойство размещения контента в ячейке
|
|
46
|
-
*/
|
|
47
|
-
align?: AlignVariant;
|
|
48
|
-
/**
|
|
49
|
-
* @example {width: '100%'}
|
|
50
|
-
* Ширина ячейка. Допустимые единицы: px, %, fr
|
|
51
|
-
*/
|
|
52
|
-
width?: CSSProperties['width'];
|
|
53
|
-
};
|
|
54
|
-
export type DataGridRowOptionColumns<TData extends Record<string, CellValue>> = {
|
|
55
|
-
/**
|
|
56
|
-
* Значение ключа поля данных для колонки
|
|
57
|
-
*/
|
|
58
|
-
field: keyof TData;
|
|
59
|
-
/**
|
|
60
|
-
* Кастомное отображение ячеек для колонки
|
|
61
|
-
*/
|
|
62
|
-
renderCell?: RenderCell<TData>;
|
|
63
|
-
};
|
|
64
|
-
export type DataGridRowOptions<TData extends Record<string, CellValue>> = {
|
|
65
|
-
/**
|
|
66
|
-
* Если true, строка будет недоступна для взаимодействия
|
|
67
|
-
*/
|
|
68
|
-
isDisabled?: boolean;
|
|
69
|
-
/**
|
|
70
|
-
* Если true, последняя ячейка не будет блокироваться при `isDisabled=true`
|
|
71
|
-
* @default 'true'
|
|
72
|
-
*/
|
|
73
|
-
isDisabledLastCell?: boolean;
|
|
74
|
-
/**
|
|
75
|
-
* Если true, строка не будет доступна для выбора
|
|
76
|
-
*/
|
|
77
|
-
isNotSelectable?: boolean;
|
|
78
|
-
/**
|
|
79
|
-
* Причина блокировки строки
|
|
80
|
-
*/
|
|
81
|
-
disabledReason?: string;
|
|
82
|
-
/**
|
|
83
|
-
* Настройка отображения колонок дочерних элементов
|
|
84
|
-
*/
|
|
85
|
-
childrenColumns?: DataGridRowOptionColumns<TData>[];
|
|
86
|
-
};
|
|
87
|
-
export type DataGridRow = Record<string, CellValue>;
|
|
88
|
-
export type DataGridRowWithOptions<TData extends DataGridRow> = TData & {
|
|
89
|
-
options?: DataGridRowOptions<TData>;
|
|
90
|
-
children?: DataGridRowWithOptions<TData>[];
|
|
91
|
-
};
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { type ChangeEvent } from 'react';
|
|
2
|
-
import type { DataGridProps } from '../DataGrid';
|
|
3
|
-
import type { CellValue, DataGridRow } from '../types';
|
|
4
|
-
type UseLogicParams<TData extends Record<string, CellValue> = DataGridRow, TSortField extends keyof TData = keyof TData> = DataGridProps<TData, TSortField>;
|
|
5
|
-
export declare const useLogic: <TData extends Record<string, CellValue> = DataGridRow, TSortField extends keyof TData = keyof TData>({ keyId, columns, rows, variant, tree, subrows, selectedRows, isLoading, isDisabled, onSelectRow, }: UseLogicParams<TData, TSortField>) => {
|
|
6
|
-
isDataGridDisabled: boolean | undefined;
|
|
7
|
-
treeRenderConfig: {
|
|
8
|
-
isInitialExpanded?: boolean;
|
|
9
|
-
expandedLevel?: number;
|
|
10
|
-
initialVisibleChildrenCount?: number;
|
|
11
|
-
} | undefined;
|
|
12
|
-
renderRows: TData[];
|
|
13
|
-
headProps: {
|
|
14
|
-
rowsCount: number;
|
|
15
|
-
uncheckedRowsCount: number;
|
|
16
|
-
gridColumns: string;
|
|
17
|
-
isSelectable: boolean;
|
|
18
|
-
columns: import("../types").DataGridColumns<TData>[];
|
|
19
|
-
onSelectAllRows: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
20
|
-
};
|
|
21
|
-
bodyProps: {
|
|
22
|
-
gridColumns: string;
|
|
23
|
-
isSelectable: boolean;
|
|
24
|
-
onSelectRow: (row: TData) => (event: ChangeEvent<HTMLInputElement>) => void;
|
|
25
|
-
};
|
|
26
|
-
loaderProps: {
|
|
27
|
-
isLoading: boolean | undefined;
|
|
28
|
-
isVisibleDivider: boolean;
|
|
29
|
-
isDisabled: boolean | undefined;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import type { CSSProperties } from 'react';
|
|
2
|
-
import type { AlignVariant } from '../../types';
|
|
3
|
-
type JustifyContentVariant = CSSProperties['justifyContent'];
|
|
4
|
-
export declare const alignToJustifyContent: (align: AlignVariant | undefined) => JustifyContentVariant;
|
|
5
|
-
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type { MainActionKind, SecondaryActionKind } from './types';
|
|
2
|
-
export type DataGridActions<TAction> = {
|
|
3
|
-
/**
|
|
4
|
-
* Основные действия
|
|
5
|
-
*/
|
|
6
|
-
main: MainActionKind<TAction>[];
|
|
7
|
-
/**
|
|
8
|
-
* Вторичные действия
|
|
9
|
-
*/
|
|
10
|
-
secondary?: SecondaryActionKind<TAction>[];
|
|
11
|
-
};
|
|
12
|
-
export type DataGridActionCellProps<TRow> = {
|
|
13
|
-
/**
|
|
14
|
-
* Действия
|
|
15
|
-
*/
|
|
16
|
-
actions: DataGridActions<TRow>;
|
|
17
|
-
/**
|
|
18
|
-
* Данные строки
|
|
19
|
-
*/
|
|
20
|
-
row: TRow;
|
|
21
|
-
};
|
|
22
|
-
export declare const DataGridActionCell: <TRow>(props: DataGridActionCellProps<TRow>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { type TooltipProps } from '../../Tooltip';
|
|
2
|
-
import type { ActionCellHandler, MainActionKind } from '../types';
|
|
3
|
-
type MainActionProps<TAction> = {
|
|
4
|
-
/**
|
|
5
|
-
* Основные действия
|
|
6
|
-
*/
|
|
7
|
-
action: MainActionKind<TAction>;
|
|
8
|
-
/**
|
|
9
|
-
* Обработчик клика на действие
|
|
10
|
-
*/
|
|
11
|
-
onActionClick: ActionCellHandler<TAction>;
|
|
12
|
-
/**
|
|
13
|
-
* Если true, action не доступен
|
|
14
|
-
*/
|
|
15
|
-
isDisabled?: boolean;
|
|
16
|
-
/**
|
|
17
|
-
* Положение тултипа
|
|
18
|
-
*/
|
|
19
|
-
tooltipPlacement?: TooltipProps['placement'];
|
|
20
|
-
};
|
|
21
|
-
export declare const MainAction: <TAction>({ action, onActionClick, isDisabled, tooltipPlacement, }: MainActionProps<TAction>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
export {};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { type IconButtonProps } from '../../../IconButton';
|
|
2
|
-
import { type TooltipProps } from '../../../Tooltip';
|
|
3
|
-
import type { ActionCellHandler, SingleAction } from '../../types';
|
|
4
|
-
export type MainIconButtonProps<TAction> = {
|
|
5
|
-
action: IconButtonProps<'button'> & SingleAction<TAction>;
|
|
6
|
-
/**
|
|
7
|
-
* Обработчик клика на действие
|
|
8
|
-
*/
|
|
9
|
-
onActionClick: ActionCellHandler<TAction>;
|
|
10
|
-
/**
|
|
11
|
-
* Если true, action не доступен
|
|
12
|
-
*/
|
|
13
|
-
isDisabled?: boolean;
|
|
14
|
-
/**
|
|
15
|
-
* Положение тултипа
|
|
16
|
-
*/
|
|
17
|
-
tooltipPlacement?: TooltipProps['placement'];
|
|
18
|
-
};
|
|
19
|
-
export declare const MainIconButton: <TAction>(props: MainIconButtonProps<TAction>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { MainIconButtonProps } from '../MainIconButton';
|
|
2
|
-
type UseLogicParam<TAction> = MainIconButtonProps<TAction>;
|
|
3
|
-
export declare const useLogic: <TAction>({ action }: UseLogicParam<TAction>) => {
|
|
4
|
-
tooltipProps: {
|
|
5
|
-
title: string;
|
|
6
|
-
open: boolean;
|
|
7
|
-
onOpen: () => void;
|
|
8
|
-
onClose: () => void;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type { TooltipProps } from '../../Tooltip';
|
|
2
|
-
import type { ActionCellHandler, SecondaryActionKind } from '../types';
|
|
3
|
-
type SecondaryActionProps<TAction> = {
|
|
4
|
-
/**
|
|
5
|
-
* Вторичные действия
|
|
6
|
-
*/
|
|
7
|
-
actions: SecondaryActionKind<TAction>[];
|
|
8
|
-
/**
|
|
9
|
-
* Обработчик нажатия на действие
|
|
10
|
-
*/
|
|
11
|
-
onActionClick: ActionCellHandler<TAction>;
|
|
12
|
-
/**
|
|
13
|
-
* Если true, action не доступен
|
|
14
|
-
*/
|
|
15
|
-
isDisabled?: boolean;
|
|
16
|
-
/**
|
|
17
|
-
* Положение тултипа
|
|
18
|
-
*/
|
|
19
|
-
tooltipPlacement?: TooltipProps['placement'];
|
|
20
|
-
};
|
|
21
|
-
export declare const SecondaryActions: <TAction>({ actions, onActionClick, tooltipPlacement, isDisabled, }: SecondaryActionProps<TAction>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const Wrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
import type { MouseEventHandler, ReactNode } from 'react';
|
|
2
|
-
import type { ConfirmActionProps } from '../ConfirmAction';
|
|
3
|
-
import type { IconButtonProps } from '../IconButton';
|
|
4
|
-
import type { MenuItemProps } from '../MenuItem';
|
|
5
|
-
export type NestedAction<TAction> = MenuItemProps & {
|
|
6
|
-
/**
|
|
7
|
-
* Название действия
|
|
8
|
-
*/
|
|
9
|
-
name: string;
|
|
10
|
-
/**
|
|
11
|
-
* Обработчик действия
|
|
12
|
-
*/
|
|
13
|
-
onClick?: (row: TAction) => void;
|
|
14
|
-
};
|
|
15
|
-
export type SingleAction<TAction> = {
|
|
16
|
-
/**
|
|
17
|
-
* Название действия
|
|
18
|
-
*/
|
|
19
|
-
name: string;
|
|
20
|
-
/**
|
|
21
|
-
* Иконка действия
|
|
22
|
-
*/
|
|
23
|
-
icon?: ReactNode;
|
|
24
|
-
/**
|
|
25
|
-
* Флаг показа выпадающего списка при клике
|
|
26
|
-
*/
|
|
27
|
-
nested?: false;
|
|
28
|
-
/**
|
|
29
|
-
* Если `true`, при клике на кнопку будет вызываться подтверждение действия
|
|
30
|
-
*/
|
|
31
|
-
needConfirm?: boolean;
|
|
32
|
-
/**
|
|
33
|
-
* Поясняющий текст для подтверждения действия
|
|
34
|
-
*/
|
|
35
|
-
confirmText?: ConfirmActionProps['text'];
|
|
36
|
-
/**
|
|
37
|
-
* Параметры кнопки подтверждения действия
|
|
38
|
-
*/
|
|
39
|
-
confirmButtonProps?: ConfirmActionProps['confirmButtonProps'];
|
|
40
|
-
/**
|
|
41
|
-
* Если true, блокирует взаимодействие с actions
|
|
42
|
-
*/
|
|
43
|
-
isBlockingOperation?: boolean;
|
|
44
|
-
/**
|
|
45
|
-
* Причина блокировки действия
|
|
46
|
-
*/
|
|
47
|
-
disabledReason?: string;
|
|
48
|
-
/**
|
|
49
|
-
* Причина блокировки строки во время загрузки
|
|
50
|
-
*/
|
|
51
|
-
loadingNote?: string;
|
|
52
|
-
/**
|
|
53
|
-
* Обработчик действия
|
|
54
|
-
*/
|
|
55
|
-
onClick?: (row: TAction) => void;
|
|
56
|
-
};
|
|
57
|
-
export type MultipleAction<TAction> = MenuItemProps & {
|
|
58
|
-
/**
|
|
59
|
-
* Иконка действия
|
|
60
|
-
*/
|
|
61
|
-
icon: ReactNode;
|
|
62
|
-
/**
|
|
63
|
-
* Список действий для выпадающего списка
|
|
64
|
-
*/
|
|
65
|
-
actions: Array<NestedAction<TAction>>;
|
|
66
|
-
/**
|
|
67
|
-
* Флаг показа выпадающего списка при клике
|
|
68
|
-
*/
|
|
69
|
-
nested: true;
|
|
70
|
-
/**
|
|
71
|
-
* Название действия
|
|
72
|
-
*/
|
|
73
|
-
name: string;
|
|
74
|
-
/**
|
|
75
|
-
* Причина блокировки строки во время загрузки
|
|
76
|
-
*/
|
|
77
|
-
loadingNote?: string;
|
|
78
|
-
/**
|
|
79
|
-
* Если true, блокирует взаимодействие с actions
|
|
80
|
-
*/
|
|
81
|
-
isBlockingOperation?: boolean;
|
|
82
|
-
/**
|
|
83
|
-
* Если true, происходит загрузка
|
|
84
|
-
*/
|
|
85
|
-
loading?: boolean;
|
|
86
|
-
};
|
|
87
|
-
export type ActionCellHandler<TAction> = (onClick: SingleAction<TAction>['onClick'] | NestedAction<TAction>['onClick']) => MouseEventHandler<HTMLButtonElement | HTMLAnchorElement | HTMLLIElement> | undefined;
|
|
88
|
-
export type MainActionKind<TAction> = (IconButtonProps<'button'> & SingleAction<TAction>) | MultipleAction<TAction>;
|
|
89
|
-
export type SecondaryActionKind<TAction> = MenuItemProps & SingleAction<TAction> & {
|
|
90
|
-
/**
|
|
91
|
-
* Причина блокировки действия
|
|
92
|
-
*/
|
|
93
|
-
disabledReason?: string;
|
|
94
|
-
/**
|
|
95
|
-
* Если true, происходит загрузка
|
|
96
|
-
*/
|
|
97
|
-
loading?: boolean;
|
|
98
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { type MouseEventHandler } from 'react';
|
|
2
|
-
import type { DataGridActionCellProps } from '../DataGridActionCell';
|
|
3
|
-
import type { NestedAction, SingleAction } from '../types';
|
|
4
|
-
type UseLogicParams<TRowData> = DataGridActionCellProps<TRowData>;
|
|
5
|
-
export declare const useLogic: <TRowData>({ row, actions, }: UseLogicParams<TRowData>) => {
|
|
6
|
-
isDisabledAction: boolean;
|
|
7
|
-
handleActionClick: (onClick: SingleAction<TRowData>["onClick"] | NestedAction<TRowData>["onClick"]) => () => void;
|
|
8
|
-
handleWrapperClick: MouseEventHandler<HTMLDivElement>;
|
|
9
|
-
};
|
|
10
|
-
export {};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { DataGridColumn } from '../types';
|
|
2
|
-
export type BodyProps<TRow> = {
|
|
3
|
-
noDataText?: string;
|
|
4
|
-
noDataImgSrc?: string;
|
|
5
|
-
isLoading?: boolean;
|
|
6
|
-
isEmpty?: boolean;
|
|
7
|
-
columns: DataGridColumn<TRow>[];
|
|
8
|
-
rows: TRow[];
|
|
9
|
-
rowHeight: number;
|
|
10
|
-
keyId: keyof TRow;
|
|
11
|
-
onRowClick?: (row: TRow) => void;
|
|
12
|
-
};
|
|
13
|
-
export declare function Body<TRow>({ isEmpty, isLoading, noDataText, noDataImgSrc, columns, rows, rowHeight, keyId, onRowClick, }: BodyProps<TRow>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const StyledBody: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, keyof import("react").ClassAttributes<HTMLUListElement> | keyof import("react").HTMLAttributes<HTMLUListElement>>, {}>;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { DataGridColumn } from '../types';
|
|
2
|
-
export type CellProps<TRow> = {
|
|
3
|
-
row: TRow;
|
|
4
|
-
column: DataGridColumn<TRow>;
|
|
5
|
-
rowIndex: number;
|
|
6
|
-
};
|
|
7
|
-
export declare function Cell<TRow>({ row, column, rowIndex }: CellProps<TRow>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export declare const StyledCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
2
|
-
$align?: "left" | "center" | "right" | "justify";
|
|
3
|
-
$disabled?: boolean;
|
|
4
|
-
}, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import("react").HTMLAttributes<HTMLDivElement> | keyof import("react").ClassAttributes<HTMLDivElement>>, {}>;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { CSSProperties, ReactNode } from 'react';
|
|
2
|
-
import type { DataGridColumn } from './types';
|
|
3
|
-
export type DataGridProps<TRow> = {
|
|
4
|
-
rows: TRow[];
|
|
5
|
-
columns: DataGridColumn<TRow>[];
|
|
6
|
-
className?: string;
|
|
7
|
-
height?: CSSProperties['height'];
|
|
8
|
-
noDataText?: string;
|
|
9
|
-
noDataImgSrc?: string;
|
|
10
|
-
rowHeight?: number;
|
|
11
|
-
keyId: keyof TRow;
|
|
12
|
-
isLoading?: boolean;
|
|
13
|
-
isDisabled?: boolean;
|
|
14
|
-
isEmpty?: boolean;
|
|
15
|
-
onSelectRow?: (row: TRow[]) => void;
|
|
16
|
-
onRowClick?: (row: TRow) => void;
|
|
17
|
-
minDisplayRows?: number;
|
|
18
|
-
footer?: ReactNode;
|
|
19
|
-
};
|
|
20
|
-
export declare function DataGrid<TRow>({ rows, columns, height, className, noDataText, rowHeight, keyId, onRowClick, isLoading, isDisabled, isEmpty, noDataImgSrc, footer, }: DataGridProps<TRow>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { DataGridColumn } from '../types';
|
|
2
|
-
type DataGridHeaderProps<TRow> = {
|
|
3
|
-
columns: DataGridColumn<TRow>[];
|
|
4
|
-
height: number;
|
|
5
|
-
};
|
|
6
|
-
export declare function Head<TRow>({ columns, height }: DataGridHeaderProps<TRow>): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export {};
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export declare const StyledHead: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
2
|
-
$height: number;
|
|
3
|
-
$gridTemplateColumns: string;
|
|
4
|
-
}, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, keyof import("react").HTMLAttributes<HTMLElement> | keyof import("react").ClassAttributes<HTMLElement>>, {}>;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export declare const StyledHeadCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
2
|
-
$align?: "left" | "center" | "right" | "justify";
|
|
3
|
-
}, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import("react").HTMLAttributes<HTMLDivElement> | keyof import("react").ClassAttributes<HTMLDivElement>>, {}>;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { DataGridColumn } from '../types';
|
|
2
|
-
type RowProps<TRow> = {
|
|
3
|
-
row: TRow;
|
|
4
|
-
columns: DataGridColumn<TRow>[];
|
|
5
|
-
rowIndex: number;
|
|
6
|
-
rowId: string;
|
|
7
|
-
rowHeight: number;
|
|
8
|
-
onRowClick?: (row: TRow) => void;
|
|
9
|
-
};
|
|
10
|
-
export declare function Row<TRow>({ row, rowHeight, onRowClick, columns, rowIndex, rowId, }: RowProps<TRow>): import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export declare const StyledRow: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
2
|
-
$height: number;
|
|
3
|
-
$gridTemplateColumns: string;
|
|
4
|
-
$selectable: boolean;
|
|
5
|
-
}, Pick<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, keyof import("react").ClassAttributes<HTMLLIElement> | keyof import("react").LiHTMLAttributes<HTMLLIElement>>, {}>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const Container: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { CSSProperties } from 'react';
|
|
2
|
-
export declare const Container: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
3
|
-
$height: CSSProperties["height"];
|
|
4
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
5
|
-
export declare const Wrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
6
|
-
$disabled?: boolean;
|
|
7
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from 'react';
|
|
2
|
-
export type DataGridColumn<TRow> = {
|
|
3
|
-
title: string;
|
|
4
|
-
key?: keyof TRow;
|
|
5
|
-
width?: number | string;
|
|
6
|
-
align?: 'left' | 'center' | 'right' | 'justify';
|
|
7
|
-
isDisabled?: boolean;
|
|
8
|
-
headComponent?: ReactNode;
|
|
9
|
-
component?: (row: TRow, index: number) => ReactNode;
|
|
10
|
-
getCellValue?: (row: TRow) => string | number | null | undefined;
|
|
11
|
-
cellClassName?: (row: TRow) => string;
|
|
12
|
-
cellColor?: (row: TRow) => string;
|
|
13
|
-
};
|
|
14
|
-
export type DataGridColumns<TRow> = DataGridColumn<TRow>[];
|
|
15
|
-
export type AlignVariant = 'left' | 'center' | 'right' | 'justify';
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { type PaginationProps } from '../Pagination';
|
|
2
|
-
export type DataGridPaginationProps = Omit<PaginationProps, 'count'> & {
|
|
3
|
-
/**
|
|
4
|
-
* Количество всех записей
|
|
5
|
-
*/
|
|
6
|
-
totalCount: number;
|
|
7
|
-
/**
|
|
8
|
-
* Текущая страница
|
|
9
|
-
*/
|
|
10
|
-
page: number;
|
|
11
|
-
/**
|
|
12
|
-
* Максимальное количество записей на страницу
|
|
13
|
-
*/
|
|
14
|
-
rowsPerPage?: number;
|
|
15
|
-
/**
|
|
16
|
-
* Конфигурация списка кол-ва элементов, отображаемых на одной странице
|
|
17
|
-
*/
|
|
18
|
-
rowsPerPageOptions?: number[];
|
|
19
|
-
isForceCounter?: boolean;
|
|
20
|
-
/**
|
|
21
|
-
* Коллбэк для установки количества отображаемых элементов на странице
|
|
22
|
-
*/
|
|
23
|
-
onSetCountPerPage?: (rowsPerPage: number) => void;
|
|
24
|
-
};
|
|
25
|
-
export declare const DataGridPagination: (props: DataGridPaginationProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { CellValue, DataGridRowOptions, DataGridRowWithOptions } from '../DataGrid';
|
|
2
|
-
export declare const makeRandomDate: () => string;
|
|
3
|
-
export declare const makeDataList: <TData extends Record<string, CellValue>>(dataObjTemplate: TData, options?: DataGridRowOptions<TData>) => DataGridRowWithOptions<TData>[];
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export declare const PaginationWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
2
|
-
export declare const Range: import("@emotion/styled").StyledComponent<{
|
|
3
|
-
ref?: import("react").Ref<HTMLSpanElement> | undefined;
|
|
4
|
-
children?: import("react").ReactNode;
|
|
5
|
-
align?: "inherit" | "left" | "center" | "right" | "justify" | undefined;
|
|
6
|
-
gutterBottom?: boolean | undefined;
|
|
7
|
-
noWrap?: boolean | undefined;
|
|
8
|
-
paragraph?: boolean | undefined;
|
|
9
|
-
} & {
|
|
10
|
-
color?: import("../Typography").TypographyColor;
|
|
11
|
-
variant?: import("../Typography").TypographyVariant;
|
|
12
|
-
colorIntensity?: import("../Typography").Intensity;
|
|
13
|
-
component?: "symbol" | "object" | "style" | "clipPath" | "filter" | "mask" | "path" | import("react").ComponentType<any> | "map" | "search" | "big" | "link" | "small" | "sub" | "sup" | "marker" | "svg" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "center" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "main" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "slot" | "script" | "section" | "select" | "source" | "span" | "strong" | "summary" | "table" | "template" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "animate" | "animateMotion" | "animateTransform" | "circle" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "metadata" | "mpath" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "set" | "stop" | "switch" | "text" | "textPath" | "tspan" | "use" | "view";
|
|
14
|
-
isUpperCase?: boolean;
|
|
15
|
-
} & import("react").HTMLAttributes<HTMLParagraphElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
16
|
-
export declare const RangeWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { SelectChangeEvent } from '@mui/material';
|
|
2
|
-
import type { DataGridPaginationProps } from '../DataGridPagination';
|
|
3
|
-
type UseLogicParams = DataGridPaginationProps;
|
|
4
|
-
export declare const useLogic: ({ totalCount, rowsPerPage, page, onSetCountPerPage, }: UseLogicParams) => {
|
|
5
|
-
isVisiblePagination: boolean;
|
|
6
|
-
pageCount: number;
|
|
7
|
-
formattedRange: () => string;
|
|
8
|
-
handleChangeRowsPerPage: (event: SelectChangeEvent<unknown>) => void;
|
|
9
|
-
};
|
|
10
|
-
export {};
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from 'react';
|
|
2
|
-
export type DescriptionProps = {
|
|
3
|
-
/**
|
|
4
|
-
* Элементы Description.Name и Description.Value
|
|
5
|
-
*/
|
|
6
|
-
children: ReactNode;
|
|
7
|
-
/**
|
|
8
|
-
* Позиционирует элементы либо по разным краям, либо по левому краю
|
|
9
|
-
*/
|
|
10
|
-
justifyContent?: 'space-between' | 'start';
|
|
11
|
-
/**
|
|
12
|
-
* Добавляет dashed разделитель, заполняющего свободное пространство между Name Value
|
|
13
|
-
*/
|
|
14
|
-
leader?: boolean;
|
|
15
|
-
/**
|
|
16
|
-
* Определяет разделитель между Name Value
|
|
17
|
-
* @default ':'
|
|
18
|
-
*/
|
|
19
|
-
separator?: string;
|
|
20
|
-
/**
|
|
21
|
-
* Определяет тип корневого HTML-элемента
|
|
22
|
-
*/
|
|
23
|
-
component?: 'div' | 'dl';
|
|
24
|
-
/**
|
|
25
|
-
* Определяет перенос строк
|
|
26
|
-
* @default 'default'
|
|
27
|
-
*/
|
|
28
|
-
direction?: 'default' | 'column' | 'row';
|
|
29
|
-
};
|
|
30
|
-
export declare const Description: {
|
|
31
|
-
(props: DescriptionProps): import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
Name: ({ children, color, ...props }: import("./Name").NameProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
Value: (props: import("./Value").ValueProps) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from 'react';
|
|
2
|
-
import { type DescriptionContextProps } from '../DescriptionContext';
|
|
3
|
-
type Props = DescriptionContextProps & {
|
|
4
|
-
children: ReactNode;
|
|
5
|
-
};
|
|
6
|
-
export declare const DescriptionContextProvider: ({ children, leader, separator, direction, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
type WrapperProps = {
|
|
2
|
-
$leader?: boolean;
|
|
3
|
-
};
|
|
4
|
-
export declare const Wrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & WrapperProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, {}>;
|
|
5
|
-
export declare const DashedSeparator: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
6
|
-
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from 'react';
|
|
2
|
-
import type { TypographyProps } from '../../Typography';
|
|
3
|
-
export type ValueProps = Pick<TypographyProps, 'color' | 'variant' | 'children'> & {
|
|
4
|
-
/**
|
|
5
|
-
* @example <Description.Item stub="нет значения">value</Description.Item>
|
|
6
|
-
* Заглушка, отображающаяся, если нет значения
|
|
7
|
-
*/
|
|
8
|
-
stub?: ReactNode;
|
|
9
|
-
/**
|
|
10
|
-
* Добавляет возможность копирования
|
|
11
|
-
*/
|
|
12
|
-
canCopy?: boolean;
|
|
13
|
-
/**
|
|
14
|
-
* Позиционирует иконку "копировать" (слева / справа от текста)
|
|
15
|
-
*/
|
|
16
|
-
copyPosition?: 'left' | 'right';
|
|
17
|
-
/**
|
|
18
|
-
* Текст, который будет скопирован. Перекрывает обычное копирование если children является строкой
|
|
19
|
-
*/
|
|
20
|
-
copyText?: string;
|
|
21
|
-
};
|
|
22
|
-
export declare const Value: (props: ValueProps) => import("react/jsx-runtime").JSX.Element;
|