@m4l/components 9.3.12 → 9.3.13-JT010925.beta.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/@types/types.d.ts +207 -61
- package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +0 -2
- package/{storybook/components/DataGrid → components/DataGrid/tests}/helpers/filterFieldsSeedData.d.ts +1 -1
- package/{storybook/components/DataGrid → components/DataGrid/tests}/helpers/getRowsWithBackendSimulation.d.ts +2 -2
- package/{storybook/components/DataGrid → components/DataGrid/tests}/helpers/sortsSeedData.d.ts +1 -1
- package/{storybook/components/DataGrid → components/DataGrid/tests}/helpers/types.d.ts +3 -3
- package/{storybook/components/DataGrid → components/DataGrid/tests}/helpers/useSeed.d.ts +2 -2
- package/components/NumberInput/hooks/useNumberInput/useNumberInput.js +0 -2
- package/components/ObjectLogs/slots/ObjectLogsSlots.d.ts +1 -1
- package/components/ObjectLogs/slots/ObjectLogsSlots.js +2 -2
- package/components/ObjectLogs/subcomponents/DetailDialog/index.js +2 -4
- package/components/SideBar/tests/constants.d.ts +1 -0
- package/components/Stepper/Stepper.d.ts +8 -0
- package/components/Stepper/Stepper.js +77 -0
- package/components/Stepper/Stepper.styles.d.ts +2 -0
- package/components/Stepper/Stepper.styles.js +309 -0
- package/components/Stepper/constants.d.ts +2 -0
- package/components/Stepper/constants.js +6 -0
- package/components/Stepper/dictionary.d.ts +8 -0
- package/components/Stepper/dictionary.js +14 -0
- package/components/Stepper/helpers/evaluateVisibilityStepCondition/index.d.ts +9 -0
- package/components/Stepper/helpers/evaluateVisibilityStepCondition/index.js +17 -0
- package/components/Stepper/helpers/findNextVisibleValidStep/index.d.ts +10 -0
- package/components/Stepper/helpers/findNextVisibleValidStep/index.js +13 -0
- package/components/Stepper/helpers/findPrevVisibleValidStep/index.d.ts +10 -0
- package/components/Stepper/helpers/findPrevVisibleValidStep/index.js +13 -0
- package/components/Stepper/helpers/index.d.ts +4 -0
- package/components/Stepper/helpers/index.js +1 -0
- package/components/Stepper/helpers/isLastVisibleValidStep/index.d.ts +10 -0
- package/components/Stepper/helpers/isLastVisibleValidStep/index.js +16 -0
- package/components/Stepper/hooks/useIsLastVisibleValidStep/index.d.ts +6 -0
- package/components/Stepper/hooks/useIsLastVisibleValidStep/index.js +25 -0
- package/components/Stepper/hooks/useStepper/index.d.ts +5 -0
- package/components/Stepper/hooks/useStepper/index.js +14 -0
- package/components/Stepper/hooks/useStepperActions/index.d.ts +8 -0
- package/components/Stepper/hooks/useStepperActions/index.js +76 -0
- package/components/Stepper/hooks/useStickyStepperFooter/index.d.ts +7 -0
- package/components/Stepper/hooks/useStickyStepperFooter/index.js +20 -0
- package/components/Stepper/icons.d.ts +9 -0
- package/components/Stepper/icons.js +12 -0
- package/components/Stepper/index.d.ts +14 -0
- package/components/Stepper/index.js +1 -0
- package/components/Stepper/slots/StepperEnum.d.ts +27 -0
- package/components/Stepper/slots/StepperEnum.js +37 -0
- package/components/Stepper/slots/StepperSlot.d.ts +60 -0
- package/components/Stepper/slots/StepperSlot.js +102 -0
- package/components/Stepper/store/StepperContext/index.d.ts +17 -0
- package/components/Stepper/store/StepperContext/index.js +91 -0
- package/components/Stepper/store/StepperStore/index.d.ts +16 -0
- package/components/Stepper/store/StepperStore/index.js +131 -0
- package/components/Stepper/store/types.d.ts +61 -0
- package/components/Stepper/subcomponents/ContentArea/index.d.ts +6 -0
- package/components/Stepper/subcomponents/ContentArea/index.js +24 -0
- package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperIcon/index.d.ts +4 -0
- package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperIcon/index.js +26 -0
- package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperTitle/index.d.ts +4 -0
- package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperTitle/index.js +23 -0
- package/components/Stepper/subcomponents/StepArea/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepArea/index.js +139 -0
- package/components/Stepper/subcomponents/StepArea/subcomponents/Inidicator/index.d.ts +5 -0
- package/components/Stepper/subcomponents/StepArea/subcomponents/Inidicator/index.js +82 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.js +25 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperNextButton/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperNextButton/index.js +42 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperPrevButton/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperPrevButton/index.js +49 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js +20 -0
- package/components/Stepper/subcomponents/StepperButtons/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/index.js +1 -0
- package/components/Stepper/subcomponents/StepperContent/index.d.ts +7 -0
- package/components/Stepper/subcomponents/StepperContent/index.js +23 -0
- package/components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.js +42 -0
- package/components/Stepper/subcomponents/StepperFooter/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepperFooter/index.js +48 -0
- package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterLeftActions/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterLeftActions/index.js +9 -0
- package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterRightActions/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterRightActions/index.js +33 -0
- package/components/Stepper/types.d.ts +162 -0
- package/components/areas/contexts/AreasContext/store.js +2 -2
- package/components/extended/React-Json-Viewer/ReactJsonViewer.js +2 -2
- package/components/extended/React-Json-Viewer/helpers/getReactJsonViewerTheme/getReactJsonViewerTheme.d.ts +2 -2
- package/components/extended/React-Json-Viewer/helpers/getReactJsonViewerTheme/getReactJsonViewerTheme.js +16 -16
- package/components/extended/React-Json-Viewer/types.d.ts +2 -2
- package/components/hook-form/RHFAutocompleteAsync/reducer/RHFAutocompleteReducer.js +0 -5
- package/components/hook-form/RHFormContext/index.d.ts +1 -1
- package/components/hook-form/RHFormContext/index.js +5 -4
- package/components/hook-form/RHFormContext/types.d.ts +3 -1
- package/components/index.d.ts +1 -0
- package/helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.d.ts +11 -0
- package/helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.js +44 -0
- package/helpers/getStepsAndValidationSchema/index.d.ts +2 -0
- package/helpers/getStepsAndValidationSchema/index.js +1 -0
- package/helpers/getStepsAndValidationSchema/types.d.ts +21 -0
- package/helpers/getStepsAndValidationSchema/types.js +1 -0
- package/helpers/index.d.ts +1 -0
- package/helpers/index.js +1 -0
- package/index.d.ts +1 -0
- package/index.js +80 -52
- package/package.json +2 -2
- package/.storybook/constants.d.ts +0 -21
- package/.storybook/decorators/WithAppearanceContext/WithAppearanceContext.d.ts +0 -6
- package/.storybook/decorators/WithAppearanceContext/index.d.ts +0 -0
- package/.storybook/decorators/WithContexts/WithContexts.d.ts +0 -5
- package/.storybook/decorators/WithContexts/constants.d.ts +0 -10
- package/.storybook/decorators/WithContexts/index.d.ts +0 -1
- package/.storybook/decorators/WithContexts/styles.d.ts +0 -1
- package/.storybook/decorators/WithContexts/subcomponents/AppWithTheme.d.ts +0 -6
- package/.storybook/decorators/WithContexts/types.d.ts +0 -7
- package/.storybook/decorators/WithDictionaryContext/WithDictionaryContext.d.ts +0 -21
- package/.storybook/decorators/WithDictionaryContext/contants.d.ts +0 -3
- package/.storybook/decorators/WithDictionaryContext/index.d.ts +0 -1
- package/.storybook/decorators/WithForm/WithForm.d.ts +0 -8
- package/.storybook/decorators/WithForm/index.d.ts +0 -1
- package/.storybook/decorators/WithFormAutoValidation/WithFormAutoValidation.d.ts +0 -7
- package/.storybook/decorators/WithFormAutoValidation/index.d.ts +0 -1
- package/.storybook/decorators/WithPopupsProvider/WithPopupsProvider.d.ts +0 -10
- package/.storybook/decorators/WithPopupsProvider/index.d.ts +0 -1
- package/.storybook/decorators/WithScaleIcons/WithScaleIcons.d.ts +0 -7
- package/.storybook/decorators/WithScaleIcons/index.d.ts +0 -1
- package/.storybook/decorators/WithWindowsContainer/WithWindowsContainer.d.ts +0 -5
- package/.storybook/decorators/WithWindowsContainer/index.d.ts +0 -2
- package/.storybook/decorators/WithWindowsContainer/subcomponents/WindowsContainer/WindowsContainer.d.ts +0 -5
- package/.storybook/decorators/WithWindowsContainer/subcomponents/WindowsContainer/index.d.ts +0 -1
- package/.storybook/decorators/WithWindowsContainer/subcomponents/WindowsContainer/types.d.ts +0 -4
- package/.storybook/decorators/WithWindowsContainerSizer/WithWindowsContainerSizer.d.ts +0 -5
- package/.storybook/decorators/WithWindowsToolsAndParmsMFContexts/WithWindowsToolsAndParmsMFContexts.d.ts +0 -5
- package/.storybook/decorators/WithWrapper/WithWrapper.d.ts +0 -24
- package/.storybook/decorators/WithWrapper/index.d.ts +0 -1
- package/.storybook/decorators/WithWrapper/types.d.ts +0 -11
- package/.storybook/decorators/index.d.ts +0 -7
- package/.storybook/main.d.ts +0 -3
- package/.storybook/mocks/config-msw.d.ts +0 -21
- package/.storybook/mocks/index.d.ts +0 -2
- package/.storybook/mocks/network-mocks.d.ts +0 -1
- package/.storybook/storybook.vite.d.ts +0 -2
- package/.storybook/test-utils/index.d.ts +0 -1
- package/.storybook/test-utils/waitForHelpers.d.ts +0 -4
- package/.storybook/utils/flattenDeep.d.ts +0 -8
- package/.storybook/utils/getGlobalsFromSearchParams.d.ts +0 -7
- package/.storybook/utils/getStylesColorsByMode.d.ts +0 -820
- package/components/extended/React-Resizable/Resizable/stories/constants.d.ts +0 -3
- package/components/extended/React-Resizable/Resizable/stories/types.d.ts +0 -3
- package/components/extended/React-Resizable/ResizableBox/stories/constants.d.ts +0 -3
- package/components/extended/React-Resizable/ResizableBox/stories/types.d.ts +0 -3
- package/components/mui_extended/FormControlLabel/FormControlLabel.stories.d.ts +0 -15
- package/hooks/useComponentSize/useComponentSize.stories.d.ts +0 -47
- package/storybook/components/AccountPopover/AccountPopover.stories.d.ts +0 -11
- package/storybook/components/Areas/AreasAdmin/AreasAdmin.stories.d.ts +0 -8
- package/storybook/components/Areas/AreasViewer/AreasViewer.stories.d.ts +0 -7
- package/storybook/components/Areas/AreasViewer/hooks/useWindowsActions.d.ts +0 -4
- package/storybook/components/Areas/AreasViewer/moks/mokData.d.ts +0 -14
- package/storybook/components/Areas/AreasViewer/subcomponents/AreasViewerRender.d.ts +0 -4
- package/storybook/components/Areas/AreasViewer/subcomponents/Launcher/Launcher.d.ts +0 -5
- package/storybook/components/Areas/AreasViewer/subcomponents/Launcher/PopupButton.d.ts +0 -21
- package/storybook/components/Areas/AreasViewer/subcomponents/Launcher/PopupContentExample.d.ts +0 -4
- package/storybook/components/Areas/AreasViewer/subcomponents/layouts/ClientsLayout.d.ts +0 -4
- package/storybook/components/Areas/AreasViewer/subcomponents/layouts/UsersLayout.d.ts +0 -4
- package/storybook/components/Areas/AreasViewerWithNetwork/AreasViewerWithNetwork.stories.d.ts +0 -7
- package/storybook/components/Areas/AreasViewerWithNetwork/moks/mokData.d.ts +0 -14
- package/storybook/components/Areas/AreasViewerWithNetwork/moks/mokRed.d.ts +0 -1
- package/storybook/components/Areas/AreasViewerWithNetwork/subcomponents/ClientsHeaderActions.d.ts +0 -4
- package/storybook/components/Areas/AreasViewerWithNetwork/subcomponents/UsersHeaderActions.d.ts +0 -4
- package/storybook/components/Areas/AreasViewerWithNetwork/subcomponents/WithExtendedContainer.d.ts +0 -5
- package/storybook/components/Card/Card.stories.d.ts +0 -45
- package/storybook/components/Card/subcomponents/ContentCard.d.ts +0 -8
- package/storybook/components/Card/subcomponents/constants.d.ts +0 -9
- package/storybook/components/Chip/Chip.stories.d.ts +0 -37
- package/storybook/components/Color/Color.stories.d.ts +0 -14
- package/storybook/components/ContainerFlow/ContainerFlow.stories.d.ts +0 -32
- package/storybook/components/ContainerFlow/subcomponents/RenderFlexColumn/index.d.ts +0 -5
- package/storybook/components/ContainerFlow/subcomponents/RenderFlexColumn1Wrappers/index.d.ts +0 -5
- package/storybook/components/ContainerFlow/subcomponents/RenderFlexColumn2Wrappers/index.d.ts +0 -5
- package/storybook/components/ContainerFlow/subcomponents/RenderFlexColumn3Wrappers/index.d.ts +0 -5
- package/storybook/components/ContainerFlow/subcomponents/RenderFlexWrap/index.d.ts +0 -5
- package/storybook/components/ContainerFlow/subcomponents/RenderGridLayout/index.d.ts +0 -5
- package/storybook/components/ContainerFlow/wrapperItems/index.d.ts +0 -10
- package/storybook/components/DataGrid/DataGrid.stories.d.ts +0 -87
- package/storybook/components/DataGrid/MswHandles.d.ts +0 -1
- package/storybook/components/DataGrid/subcomponents/DataGridRender.d.ts +0 -18
- package/storybook/components/DragResizeWindowRND/stories/DragResizeWindowRND.stories.d.ts +0 -10
- package/storybook/components/DragResizeWindowRND/stories/constants.d.ts +0 -3
- package/storybook/components/DragResizeWindowRND/stories/subcomponents/ContentExample.d.ts +0 -4
- package/storybook/components/DragResizeWindowRND/stories/subcomponents/RNDWindowsContainer/RNDWindowsContainer.d.ts +0 -5
- package/storybook/components/DragResizeWindowRND/stories/subcomponents/RNDWindowsContainer/index.d.ts +0 -1
- package/storybook/components/DragResizeWindowRND/stories/subcomponents/RNDWindowsContainer/types.d.ts +0 -4
- package/storybook/components/DragResizeWindowRND/stories/subcomponents/WithExtendedContainer.d.ts +0 -5
- package/storybook/components/DragResizeWindowRND/stories/types.d.ts +0 -3
- package/storybook/components/DynamicFilter/DynamicFilter.stories.d.ts +0 -49
- package/storybook/components/DynamicFilter/mocks/mocksData.d.ts +0 -1
- package/storybook/components/DynamicSort/DynamicSort.stories.d.ts +0 -45
- package/storybook/components/FormContainer/FormContainer.stories.d.ts +0 -9
- package/storybook/components/HelperError/HelperError.stories.d.ts +0 -9
- package/storybook/components/Icon/Icon.stories.d.ts +0 -25
- package/storybook/components/Label/Label.stories.d.ts +0 -18
- package/storybook/components/LanguagePopover/LanguagePopover.stories.d.ts +0 -17
- package/storybook/components/LanguagePopover/moks/mokData.d.ts +0 -4
- package/storybook/components/LoadingError/Loadingerror.stories.d.ts +0 -9
- package/storybook/components/MenuActions/MenuActions.stories.d.ts +0 -72
- package/storybook/components/ModalDialog/ModalDialog.stories.d.ts +0 -8
- package/storybook/components/ModalDialog/subcomponent/WithExtendedContainer.d.ts +0 -33
- package/storybook/components/NoItemPrivileges/NoItemPrivileges.stories.d.ts +0 -12
- package/storybook/components/NoItemSelect/NoItemSelect.stories.d.ts +0 -12
- package/storybook/components/NumberInput/NumberInput.default.stories.d.ts +0 -17
- package/storybook/components/ObjectLogs/ObjectLogs.stories.d.ts +0 -7
- package/storybook/components/ObjectLogs/mockData/index.d.ts +0 -4
- package/storybook/components/PDFViewer/PDFViewer.stories.d.ts +0 -9
- package/storybook/components/Pager/Pager.stories.d.ts +0 -21
- package/storybook/components/Pager/subcomopnents/WithContextDataProvider.d.ts +0 -4
- package/storybook/components/PaperForm/PaperForm.stories.d.ts +0 -31
- package/storybook/components/PopupsViewer/basic.stories.d.ts +0 -16
- package/storybook/components/PopupsViewer/dictionary.d.ts +0 -1
- package/storybook/components/PopupsViewer/subcomponents/PopupActions.d.ts +0 -6
- package/storybook/components/PopupsViewer/subcomponents/PopupContentExample.d.ts +0 -5
- package/storybook/components/PopupsViewer/subcomponents/WithExtendedPopupsContainer.d.ts +0 -5
- package/storybook/components/PopupsViewer/subcomponents/initialPopups.d.ts +0 -6
- package/storybook/components/PopupsViewer/types.d.ts +0 -3
- package/storybook/components/PrintingSystem/PrintingSystem.stories.d.ts +0 -6
- package/storybook/components/PropertyValue/PropertyValue.stories.d.ts +0 -65
- package/storybook/components/ScrollBar/ScrollBar.stories.d.ts +0 -7
- package/storybook/components/SettingsLayout/SettingsLayout.stories.d.ts +0 -6
- package/storybook/components/SettingsLayout/subcomponents/SettingsLayoutRender/SettingsLayoutsRender.d.ts +0 -5
- package/storybook/components/SettingsLayout/subcomponents/SettingsLayoutRender/index.d.ts +0 -1
- package/storybook/components/SideBar/SideBar.stories.d.ts +0 -24
- package/storybook/components/SideBar/data/menuData.d.ts +0 -2
- package/storybook/components/SideBar/subcomponents/FooterComponentHost/FooterComponentHost.d.ts +0 -4
- package/storybook/components/SideBar/subcomponents/FooterComponentHost/constants.d.ts +0 -3
- package/storybook/components/SideBar/subcomponents/FooterComponentHost/index.d.ts +0 -1
- package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/FooterComponentMicrofrontend.d.ts +0 -4
- package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/FooterComponentMicrofrontend.stories.d.ts +0 -14
- package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/constants.d.ts +0 -1
- package/storybook/components/SideBar/subcomponents/FooterComponentMicrofrontend/index.d.ts +0 -1
- package/storybook/components/SideBar/subcomponents/HeaderComponentHost/HeaderComponentHost.d.ts +0 -5
- package/storybook/components/SideBar/subcomponents/HeaderComponentHost/constants.d.ts +0 -1
- package/storybook/components/SideBar/subcomponents/HeaderComponentMicrofrontend/HeaderComponentMicrofrontend.d.ts +0 -5
- package/storybook/components/SideBar/subcomponents/HeaderComponentMicrofrontend/constants.d.ts +0 -1
- package/storybook/components/SideBar/subcomponents/SibarDecorator.d.ts +0 -3
- package/storybook/components/ToastContainer/ToastContainer.stories.d.ts +0 -47
- package/storybook/components/WindowBase/windowBase.stories.d.ts +0 -69
- package/storybook/components/WindowConfirm/windowConfirm.stories.d.ts +0 -8
- package/storybook/components/appBar/AppBar.stories.d.ts +0 -9
- package/storybook/components/commonActions/components/ActionCancel/ActionCancel.stories.d.ts +0 -22
- package/storybook/components/commonActions/components/ActionFormCancel/ActionFormCancel.stories.d.ts +0 -6
- package/storybook/components/commonActions/components/ActionFormIntro/ActionFormIntro.stories.d.ts +0 -14
- package/storybook/components/commonActions/components/ActionIntro/ActionIntro.stories.d.ts +0 -22
- package/storybook/components/commonActions/components/ActionsContainer/ActionsContainer.stories.d.ts +0 -13
- package/storybook/components/extended/React-Json-Viewer/ReactJsonViewer.stories.d.ts +0 -9
- package/storybook/components/extended/React-Router-Dom/NavLink/NavLInk.stories.d.ts +0 -16
- package/storybook/components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.stories.d.ts +0 -9
- package/storybook/components/extended/React-Splitter-Layout/SplitLayout.stories.d.ts +0 -13
- package/storybook/components/extended/React-resizable-panels/SplitLayout.stories.d.ts +0 -13
- package/storybook/components/extended/mui/Accordion/Accordion.stories.d.ts +0 -77
- package/storybook/components/extended/mui/Autocomplete/AutoComple.stories.d.ts +0 -21
- package/storybook/components/extended/mui/Badge/Badge.stories.d.ts +0 -37
- package/storybook/components/extended/mui/Button/Button.stories.d.ts +0 -19
- package/storybook/components/extended/mui/Button/ButtonDataGridWithActions.d.ts +0 -5
- package/storybook/components/extended/mui/CheckBox/CheckBox.stories.d.ts +0 -19
- package/storybook/components/extended/mui/CircularProgress/CircularProgress.default.stories.d.ts +0 -14
- package/storybook/components/extended/mui/CircularProgress/CircularProgress.sizes.stories.d.ts +0 -18
- package/storybook/components/extended/mui/DataTimePicker/DataTimePicker.stories.d.ts +0 -21
- package/storybook/components/extended/mui/Dialog/Dialog.stories.d.ts +0 -7
- package/storybook/components/extended/mui/Dialog/subcomponents/ContentExample.d.ts +0 -29
- package/storybook/components/extended/mui/Dialog/subcomponents/WithExtendedContainer.d.ts +0 -34
- package/storybook/components/extended/mui/Divider/Divider.stories.d.ts +0 -15
- package/storybook/components/extended/mui/IconButton/IconButton.stories.d.ts +0 -39
- package/storybook/components/extended/mui/LoadingButton/LoadingButton.stories.d.ts +0 -42
- package/storybook/components/extended/mui/MenuDivider/MenuDivider.stories.d.ts +0 -25
- package/storybook/components/extended/mui/MenuItem/MenuItem.stories.d.ts +0 -65
- package/storybook/components/extended/mui/Popover/Popover.stories.d.ts +0 -14
- package/storybook/components/extended/mui/Popover/WithPopoverContext.d.ts +0 -11
- package/storybook/components/extended/mui/Popover/types.d.ts +0 -11
- package/storybook/components/extended/mui/Popper/Popper.stories.d.ts +0 -9
- package/storybook/components/extended/mui/Select/Select.stories.d.ts +0 -38
- package/storybook/components/extended/mui/Skeleton/Colors/Default/Variants/Circular/skeleton.defaultCircular.stories.d.ts +0 -14
- package/storybook/components/extended/mui/Skeleton/Colors/Default/Variants/Rectangular/skeleton.defaultRectangular.stories.d.ts +0 -14
- package/storybook/components/extended/mui/Skeleton/Colors/Default/Variants/Rounded/skeleton.defaultRounded.stories.d.ts +0 -15
- package/storybook/components/extended/mui/Skeleton/Colors/Default/Variants/Text/skeleton.defaultText.stories.d.ts +0 -15
- package/storybook/components/extended/mui/Stack/Stack.stories.d.ts +0 -13
- package/storybook/components/extended/mui/Tab/Tab.stories.d.ts +0 -57
- package/storybook/components/extended/mui/TabContent/TabContent.stories.d.ts +0 -17
- package/storybook/components/extended/mui/Tabs/Tabs.stories.d.ts +0 -8
- package/storybook/components/extended/mui/TextField/TextFieldText.stories.d.ts +0 -32
- package/storybook/components/extended/mui/TimePicker/TimePicker.stories.d.ts +0 -21
- package/storybook/components/extended/mui/ToggleButton/ToggleButton.stories.d.ts +0 -53
- package/storybook/components/extended/mui/ToggleIconButton/ToggleIconButton.stories.d.ts +0 -49
- package/storybook/components/extended/mui/Tooltip/Tooltip.stories.d.ts +0 -17
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/body/Estados/typography.body.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/bodyDens/Estados/typography.bodyDens.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/h1/Estados/typography.h1.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/h2/Estados/typography.h2.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/h3/Estados/typography.h3.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/h5/Estados/typography.h5.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/paragraph/Estados/typography.paragraph.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/paragraphDens/Estados/typography.paragraphDens.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/subtitle/Estados/typography.subtitle.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/Typography/PaletteColor/text.primary/Variantes/subtitleDens/Estados/typography.subtitleDens.estados.stories.d.ts +0 -23
- package/storybook/components/extended/mui/avatar/Avatar.stories.d.ts +0 -12
- package/storybook/components/extended/react-resizable/ResizableBox/resizableBox.stories.d.ts +0 -13
- package/storybook/components/formatters/BooleanFormatter/BooleanFormatter.stories.d.ts +0 -41
- package/storybook/components/formatters/ChipStatusFormatter/ChipStatusFormatter.stories.d.ts +0 -13
- package/storybook/components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.stories.d.ts +0 -13
- package/storybook/components/formatters/DateFormatter/DateFormatter.stories.d.ts +0 -29
- package/storybook/components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.stories.d.ts +0 -157
- package/storybook/components/formatters/DistanceToNowFormatter/subcomponents/WithDTNFProvider.d.ts +0 -5
- package/storybook/components/formatters/DistanceToNowFormatter/types.d.ts +0 -3
- package/storybook/components/formatters/PeriodFormatter/PeriodFormatter.stories.d.ts +0 -36
- package/storybook/components/formatters/PoinsFormatter/PointsFormatter.stories.d.ts +0 -21
- package/storybook/components/formatters/PriceFormatter/PriceFormatter.stories.d.ts +0 -17
- package/storybook/components/formatters/UncertaintyFormatter/UncertaintyFormatter.stories.d.ts +0 -13
- package/storybook/components/image/image.stories.d.ts +0 -11
- package/storybook/hook-form/RHFAutocomplete/RHFAutocomplete.stories.d.ts +0 -22
- package/storybook/hook-form/RHFAutocomplete/constants.d.ts +0 -23
- package/storybook/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.stories.d.ts +0 -23
- package/storybook/hook-form/RHFAutocompleteAsync/constants.d.ts +0 -14
- package/storybook/hook-form/RHFAutocompleteAsync/handlers.d.ts +0 -1
- package/storybook/hook-form/RHFCheckBox/RHFCheckBox.stories.d.ts +0 -8
- package/storybook/hook-form/RHFColorPicker/RHFColorPicker.stories.d.ts +0 -21
- package/storybook/hook-form/RHFDateTime/RHFDateTime.stories.d.ts +0 -21
- package/storybook/hook-form/RHFNumberInput/RHFNumberInput.stories.d.ts +0 -21
- package/storybook/hook-form/RHFPeriod/RHFPeriod.stories.d.ts +0 -8
- package/storybook/hook-form/RHFSelect/RHFSelect.stories.d.ts +0 -32
- package/storybook/hook-form/RHFTextField/RHFTextField.stories.d.ts +0 -25
- package/storybook/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.stories.d.ts +0 -27
- package/storybook/hook-form/RHFTimePicker/RHFTimePicker.stories.d.ts +0 -21
- package/storybook/hook-form/RHFUploadImage/RHFUploadImage.stories.d.ts +0 -8
- package/storybook/hook-form/RHFUploadSingleFile/RHFUploadSingleFile.stories.d.ts +0 -11
- package/storybook/wrappers/LineGuide/LineGuide.d.ts +0 -9
- package/storybook/wrappers/LineGuide/styles.d.ts +0 -1
- package/storybook/wrappers/LineGuide/types.d.ts +0 -5
- /package/{storybook/components/DataGrid → components/DataGrid/tests}/helpers/getRows.d.ts +0 -0
- /package/{storybook/components/DataGrid → components/DataGrid/tests}/helpers/icons.d.ts +0 -0
- /package/{storybook/components/DataGrid → components/DataGrid/tests}/helpers/useColumns.d.ts +0 -0
|
@@ -1,820 +0,0 @@
|
|
|
1
|
-
export declare const colorsLight: {
|
|
2
|
-
readonly mode: "light";
|
|
3
|
-
readonly common: import('@mui/material').CommonColors;
|
|
4
|
-
readonly primary: {
|
|
5
|
-
readonly light: string;
|
|
6
|
-
readonly main: string;
|
|
7
|
-
readonly dark: string;
|
|
8
|
-
readonly contrastText: string;
|
|
9
|
-
readonly enabled: string;
|
|
10
|
-
readonly enabledOpacity: string;
|
|
11
|
-
readonly hover: string;
|
|
12
|
-
readonly hoverOpacity: string;
|
|
13
|
-
readonly focus: string;
|
|
14
|
-
readonly focusOpacity: string;
|
|
15
|
-
readonly focusVisible: string;
|
|
16
|
-
readonly selected: string;
|
|
17
|
-
readonly selectedOpacity: string;
|
|
18
|
-
readonly active: string;
|
|
19
|
-
readonly activeOpacity: string;
|
|
20
|
-
readonly opacity: string;
|
|
21
|
-
readonly toneOpacity: string;
|
|
22
|
-
readonly semanticText: string;
|
|
23
|
-
readonly opacityGradient1: string;
|
|
24
|
-
readonly opacityGradient2: string;
|
|
25
|
-
};
|
|
26
|
-
readonly default: {
|
|
27
|
-
readonly semanticText: string;
|
|
28
|
-
readonly focusVisible: string;
|
|
29
|
-
readonly enabled: string;
|
|
30
|
-
readonly focus: string;
|
|
31
|
-
readonly light: string;
|
|
32
|
-
readonly dark: string;
|
|
33
|
-
readonly main: string;
|
|
34
|
-
readonly contrastText: string;
|
|
35
|
-
readonly enabledOpacity: string;
|
|
36
|
-
readonly hover: string;
|
|
37
|
-
readonly hoverOpacity: string;
|
|
38
|
-
readonly focusOpacity: string;
|
|
39
|
-
readonly selected: string;
|
|
40
|
-
readonly selectedOpacity: string;
|
|
41
|
-
readonly active: string;
|
|
42
|
-
readonly activeOpacity: string;
|
|
43
|
-
readonly opacity: string;
|
|
44
|
-
readonly toneOpacity: string;
|
|
45
|
-
readonly opacityGradient1: string;
|
|
46
|
-
readonly opacityGradient2: string;
|
|
47
|
-
};
|
|
48
|
-
readonly divider: string;
|
|
49
|
-
readonly text: {
|
|
50
|
-
readonly primary: string;
|
|
51
|
-
readonly secondary: string;
|
|
52
|
-
readonly disabled: string;
|
|
53
|
-
};
|
|
54
|
-
readonly background: {
|
|
55
|
-
readonly default: string;
|
|
56
|
-
readonly neutral: string;
|
|
57
|
-
readonly surface: string;
|
|
58
|
-
readonly hover: string;
|
|
59
|
-
readonly backdrop: string;
|
|
60
|
-
readonly base: string;
|
|
61
|
-
readonly blur: string;
|
|
62
|
-
readonly paper: "#fff";
|
|
63
|
-
};
|
|
64
|
-
readonly chips: {
|
|
65
|
-
readonly error: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
66
|
-
readonly info: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
67
|
-
readonly success: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
68
|
-
readonly warning: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
69
|
-
readonly default: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
70
|
-
readonly forest: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
71
|
-
readonly pink: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
72
|
-
readonly orange: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
73
|
-
readonly candy: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
74
|
-
readonly persianGreen: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
75
|
-
readonly aqua: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
76
|
-
readonly disabled: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
77
|
-
readonly primary: {
|
|
78
|
-
readonly outlined: {
|
|
79
|
-
readonly color: string;
|
|
80
|
-
readonly backgroundColor: string;
|
|
81
|
-
readonly backgroundHover: string;
|
|
82
|
-
readonly backgroundActive: string;
|
|
83
|
-
readonly colorTone: string;
|
|
84
|
-
readonly backgroundColorTone: string;
|
|
85
|
-
readonly backgroundHoverTone: string;
|
|
86
|
-
readonly backgroundActiveTone: string;
|
|
87
|
-
};
|
|
88
|
-
readonly contained: {
|
|
89
|
-
readonly color: string;
|
|
90
|
-
readonly backgroundColor: string;
|
|
91
|
-
readonly backgroundHover: string;
|
|
92
|
-
readonly backgroundActive: string;
|
|
93
|
-
readonly colorTone: string;
|
|
94
|
-
readonly backgroundColorTone: string;
|
|
95
|
-
readonly backgroundHoverTone: string;
|
|
96
|
-
readonly backgroundActiveTone: string;
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
};
|
|
100
|
-
readonly border: {
|
|
101
|
-
readonly main: string;
|
|
102
|
-
readonly dens: string;
|
|
103
|
-
readonly default: string;
|
|
104
|
-
readonly secondary: string;
|
|
105
|
-
readonly disabled: string;
|
|
106
|
-
readonly error: string;
|
|
107
|
-
};
|
|
108
|
-
readonly general: {
|
|
109
|
-
readonly scrollBar: string;
|
|
110
|
-
readonly gridHover: string;
|
|
111
|
-
};
|
|
112
|
-
readonly grey: import('@mui/material').Color;
|
|
113
|
-
readonly skeleton: {
|
|
114
|
-
readonly default: string;
|
|
115
|
-
readonly transition: string;
|
|
116
|
-
};
|
|
117
|
-
readonly info: {
|
|
118
|
-
readonly focusVisible: string;
|
|
119
|
-
readonly enabled: string;
|
|
120
|
-
readonly focus: string;
|
|
121
|
-
readonly light: string;
|
|
122
|
-
readonly dark: string;
|
|
123
|
-
readonly main: string;
|
|
124
|
-
readonly contrastText: string;
|
|
125
|
-
readonly enabledOpacity: string;
|
|
126
|
-
readonly hover: string;
|
|
127
|
-
readonly hoverOpacity: string;
|
|
128
|
-
readonly focusOpacity: string;
|
|
129
|
-
readonly selected: string;
|
|
130
|
-
readonly selectedOpacity: string;
|
|
131
|
-
readonly active: string;
|
|
132
|
-
readonly activeOpacity: string;
|
|
133
|
-
readonly opacity: string;
|
|
134
|
-
readonly toneOpacity: string;
|
|
135
|
-
readonly semanticText: string;
|
|
136
|
-
readonly opacityGradient1: string;
|
|
137
|
-
readonly opacityGradient2: string;
|
|
138
|
-
};
|
|
139
|
-
readonly success: {
|
|
140
|
-
readonly focusVisible: string;
|
|
141
|
-
readonly enabled: string;
|
|
142
|
-
readonly focus: string;
|
|
143
|
-
readonly light: string;
|
|
144
|
-
readonly dark: string;
|
|
145
|
-
readonly main: string;
|
|
146
|
-
readonly contrastText: string;
|
|
147
|
-
readonly enabledOpacity: string;
|
|
148
|
-
readonly hover: string;
|
|
149
|
-
readonly hoverOpacity: string;
|
|
150
|
-
readonly focusOpacity: string;
|
|
151
|
-
readonly selected: string;
|
|
152
|
-
readonly selectedOpacity: string;
|
|
153
|
-
readonly active: string;
|
|
154
|
-
readonly activeOpacity: string;
|
|
155
|
-
readonly opacity: string;
|
|
156
|
-
readonly toneOpacity: string;
|
|
157
|
-
readonly semanticText: string;
|
|
158
|
-
readonly opacityGradient1: string;
|
|
159
|
-
readonly opacityGradient2: string;
|
|
160
|
-
};
|
|
161
|
-
readonly warning: {
|
|
162
|
-
readonly focusVisible: string;
|
|
163
|
-
readonly enabled: string;
|
|
164
|
-
readonly focus: string;
|
|
165
|
-
readonly light: string;
|
|
166
|
-
readonly dark: string;
|
|
167
|
-
readonly main: string;
|
|
168
|
-
readonly contrastText: string;
|
|
169
|
-
readonly enabledOpacity: string;
|
|
170
|
-
readonly hover: string;
|
|
171
|
-
readonly hoverOpacity: string;
|
|
172
|
-
readonly focusOpacity: string;
|
|
173
|
-
readonly selected: string;
|
|
174
|
-
readonly selectedOpacity: string;
|
|
175
|
-
readonly active: string;
|
|
176
|
-
readonly activeOpacity: string;
|
|
177
|
-
readonly opacity: string;
|
|
178
|
-
readonly toneOpacity: string;
|
|
179
|
-
readonly semanticText: string;
|
|
180
|
-
readonly opacityGradient1: string;
|
|
181
|
-
readonly opacityGradient2: string;
|
|
182
|
-
};
|
|
183
|
-
readonly error: {
|
|
184
|
-
readonly focusVisible: string;
|
|
185
|
-
readonly enabled: string;
|
|
186
|
-
readonly focus: string;
|
|
187
|
-
readonly light: string;
|
|
188
|
-
readonly dark: string;
|
|
189
|
-
readonly main: string;
|
|
190
|
-
readonly contrastText: string;
|
|
191
|
-
readonly enabledOpacity: string;
|
|
192
|
-
readonly hover: string;
|
|
193
|
-
readonly hoverOpacity: string;
|
|
194
|
-
readonly focusOpacity: string;
|
|
195
|
-
readonly selected: string;
|
|
196
|
-
readonly selectedOpacity: string;
|
|
197
|
-
readonly active: string;
|
|
198
|
-
readonly activeOpacity: string;
|
|
199
|
-
readonly opacity: string;
|
|
200
|
-
readonly toneOpacity: string;
|
|
201
|
-
readonly semanticText: string;
|
|
202
|
-
readonly opacityGradient1: string;
|
|
203
|
-
readonly opacityGradient2: string;
|
|
204
|
-
};
|
|
205
|
-
} | {
|
|
206
|
-
readonly mode: "dark";
|
|
207
|
-
readonly common: import('@mui/material').CommonColors;
|
|
208
|
-
readonly primary: {
|
|
209
|
-
readonly light: string;
|
|
210
|
-
readonly main: string;
|
|
211
|
-
readonly dark: string;
|
|
212
|
-
readonly contrastText: string;
|
|
213
|
-
readonly enabled: string;
|
|
214
|
-
readonly enabledOpacity: string;
|
|
215
|
-
readonly hover: string;
|
|
216
|
-
readonly hoverOpacity: string;
|
|
217
|
-
readonly focus: string;
|
|
218
|
-
readonly focusOpacity: string;
|
|
219
|
-
readonly focusVisible: string;
|
|
220
|
-
readonly selected: string;
|
|
221
|
-
readonly selectedOpacity: string;
|
|
222
|
-
readonly active: string;
|
|
223
|
-
readonly activeOpacity: string;
|
|
224
|
-
readonly opacity: string;
|
|
225
|
-
readonly toneOpacity: string;
|
|
226
|
-
readonly semanticText: string;
|
|
227
|
-
readonly opacityGradient1: string;
|
|
228
|
-
readonly opacityGradient2: string;
|
|
229
|
-
};
|
|
230
|
-
readonly default: {
|
|
231
|
-
readonly semanticText: string;
|
|
232
|
-
readonly focusVisible: string;
|
|
233
|
-
readonly enabled: string;
|
|
234
|
-
readonly focus: string;
|
|
235
|
-
readonly light: string;
|
|
236
|
-
readonly dark: string;
|
|
237
|
-
readonly main: string;
|
|
238
|
-
readonly contrastText: string;
|
|
239
|
-
readonly enabledOpacity: string;
|
|
240
|
-
readonly hover: string;
|
|
241
|
-
readonly hoverOpacity: string;
|
|
242
|
-
readonly focusOpacity: string;
|
|
243
|
-
readonly selected: string;
|
|
244
|
-
readonly selectedOpacity: string;
|
|
245
|
-
readonly active: string;
|
|
246
|
-
readonly activeOpacity: string;
|
|
247
|
-
readonly opacity: string;
|
|
248
|
-
readonly toneOpacity: string;
|
|
249
|
-
readonly opacityGradient1: string;
|
|
250
|
-
readonly opacityGradient2: string;
|
|
251
|
-
};
|
|
252
|
-
readonly text: {
|
|
253
|
-
readonly primary: string;
|
|
254
|
-
readonly secondary: string;
|
|
255
|
-
readonly disabled: string;
|
|
256
|
-
};
|
|
257
|
-
readonly divider: string;
|
|
258
|
-
readonly background: {
|
|
259
|
-
readonly default: string;
|
|
260
|
-
readonly neutral: string;
|
|
261
|
-
readonly surface: string;
|
|
262
|
-
readonly hover: string;
|
|
263
|
-
readonly backdrop: string;
|
|
264
|
-
readonly base: string;
|
|
265
|
-
readonly blur: string;
|
|
266
|
-
readonly paper: "#000";
|
|
267
|
-
};
|
|
268
|
-
readonly chips: {
|
|
269
|
-
readonly error: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
270
|
-
readonly info: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
271
|
-
readonly success: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
272
|
-
readonly warning: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
273
|
-
readonly default: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
274
|
-
readonly forest: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
275
|
-
readonly pink: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
276
|
-
readonly orange: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
277
|
-
readonly candy: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
278
|
-
readonly persianGreen: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
279
|
-
readonly aqua: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
280
|
-
readonly disabled: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
281
|
-
readonly primary: {
|
|
282
|
-
readonly outlined: {
|
|
283
|
-
readonly color: string;
|
|
284
|
-
readonly backgroundColor: string;
|
|
285
|
-
readonly backgroundHover: string;
|
|
286
|
-
readonly backgroundActive: string;
|
|
287
|
-
readonly colorTone: string;
|
|
288
|
-
readonly backgroundColorTone: string;
|
|
289
|
-
readonly backgroundHoverTone: string;
|
|
290
|
-
readonly backgroundActiveTone: string;
|
|
291
|
-
};
|
|
292
|
-
readonly contained: {
|
|
293
|
-
readonly color: string;
|
|
294
|
-
readonly backgroundColor: string;
|
|
295
|
-
readonly backgroundHover: string;
|
|
296
|
-
readonly backgroundActive: string;
|
|
297
|
-
readonly colorTone: string;
|
|
298
|
-
readonly backgroundColorTone: string;
|
|
299
|
-
readonly backgroundHoverTone: string;
|
|
300
|
-
readonly backgroundActiveTone: string;
|
|
301
|
-
};
|
|
302
|
-
};
|
|
303
|
-
};
|
|
304
|
-
readonly border: {
|
|
305
|
-
readonly main: string;
|
|
306
|
-
readonly dens: string;
|
|
307
|
-
readonly default: string;
|
|
308
|
-
readonly secondary: string;
|
|
309
|
-
readonly disabled: string;
|
|
310
|
-
readonly error: string;
|
|
311
|
-
};
|
|
312
|
-
readonly general: {
|
|
313
|
-
readonly scrollBar: string;
|
|
314
|
-
readonly gridHover: string;
|
|
315
|
-
};
|
|
316
|
-
readonly grey: import('@mui/material').Color;
|
|
317
|
-
readonly skeleton: {
|
|
318
|
-
readonly default: string;
|
|
319
|
-
readonly transition: string;
|
|
320
|
-
};
|
|
321
|
-
readonly info: {
|
|
322
|
-
readonly focusVisible: string;
|
|
323
|
-
readonly enabled: string;
|
|
324
|
-
readonly focus: string;
|
|
325
|
-
readonly light: string;
|
|
326
|
-
readonly dark: string;
|
|
327
|
-
readonly main: string;
|
|
328
|
-
readonly contrastText: string;
|
|
329
|
-
readonly enabledOpacity: string;
|
|
330
|
-
readonly hover: string;
|
|
331
|
-
readonly hoverOpacity: string;
|
|
332
|
-
readonly focusOpacity: string;
|
|
333
|
-
readonly selected: string;
|
|
334
|
-
readonly selectedOpacity: string;
|
|
335
|
-
readonly active: string;
|
|
336
|
-
readonly activeOpacity: string;
|
|
337
|
-
readonly opacity: string;
|
|
338
|
-
readonly toneOpacity: string;
|
|
339
|
-
readonly semanticText: string;
|
|
340
|
-
readonly opacityGradient1: string;
|
|
341
|
-
readonly opacityGradient2: string;
|
|
342
|
-
};
|
|
343
|
-
readonly success: {
|
|
344
|
-
readonly focusVisible: string;
|
|
345
|
-
readonly enabled: string;
|
|
346
|
-
readonly focus: string;
|
|
347
|
-
readonly light: string;
|
|
348
|
-
readonly dark: string;
|
|
349
|
-
readonly main: string;
|
|
350
|
-
readonly contrastText: string;
|
|
351
|
-
readonly enabledOpacity: string;
|
|
352
|
-
readonly hover: string;
|
|
353
|
-
readonly hoverOpacity: string;
|
|
354
|
-
readonly focusOpacity: string;
|
|
355
|
-
readonly selected: string;
|
|
356
|
-
readonly selectedOpacity: string;
|
|
357
|
-
readonly active: string;
|
|
358
|
-
readonly activeOpacity: string;
|
|
359
|
-
readonly opacity: string;
|
|
360
|
-
readonly toneOpacity: string;
|
|
361
|
-
readonly semanticText: string;
|
|
362
|
-
readonly opacityGradient1: string;
|
|
363
|
-
readonly opacityGradient2: string;
|
|
364
|
-
};
|
|
365
|
-
readonly warning: {
|
|
366
|
-
readonly focusVisible: string;
|
|
367
|
-
readonly enabled: string;
|
|
368
|
-
readonly focus: string;
|
|
369
|
-
readonly light: string;
|
|
370
|
-
readonly dark: string;
|
|
371
|
-
readonly main: string;
|
|
372
|
-
readonly contrastText: string;
|
|
373
|
-
readonly enabledOpacity: string;
|
|
374
|
-
readonly hover: string;
|
|
375
|
-
readonly hoverOpacity: string;
|
|
376
|
-
readonly focusOpacity: string;
|
|
377
|
-
readonly selected: string;
|
|
378
|
-
readonly selectedOpacity: string;
|
|
379
|
-
readonly active: string;
|
|
380
|
-
readonly activeOpacity: string;
|
|
381
|
-
readonly opacity: string;
|
|
382
|
-
readonly toneOpacity: string;
|
|
383
|
-
readonly semanticText: string;
|
|
384
|
-
readonly opacityGradient1: string;
|
|
385
|
-
readonly opacityGradient2: string;
|
|
386
|
-
};
|
|
387
|
-
readonly error: {
|
|
388
|
-
readonly focusVisible: string;
|
|
389
|
-
readonly enabled: string;
|
|
390
|
-
readonly focus: string;
|
|
391
|
-
readonly light: string;
|
|
392
|
-
readonly dark: string;
|
|
393
|
-
readonly main: string;
|
|
394
|
-
readonly contrastText: string;
|
|
395
|
-
readonly enabledOpacity: string;
|
|
396
|
-
readonly hover: string;
|
|
397
|
-
readonly hoverOpacity: string;
|
|
398
|
-
readonly focusOpacity: string;
|
|
399
|
-
readonly selected: string;
|
|
400
|
-
readonly selectedOpacity: string;
|
|
401
|
-
readonly active: string;
|
|
402
|
-
readonly activeOpacity: string;
|
|
403
|
-
readonly opacity: string;
|
|
404
|
-
readonly toneOpacity: string;
|
|
405
|
-
readonly semanticText: string;
|
|
406
|
-
readonly opacityGradient1: string;
|
|
407
|
-
readonly opacityGradient2: string;
|
|
408
|
-
};
|
|
409
|
-
};
|
|
410
|
-
export declare const colorsDark: {
|
|
411
|
-
readonly mode: "light";
|
|
412
|
-
readonly common: import('@mui/material').CommonColors;
|
|
413
|
-
readonly primary: {
|
|
414
|
-
readonly light: string;
|
|
415
|
-
readonly main: string;
|
|
416
|
-
readonly dark: string;
|
|
417
|
-
readonly contrastText: string;
|
|
418
|
-
readonly enabled: string;
|
|
419
|
-
readonly enabledOpacity: string;
|
|
420
|
-
readonly hover: string;
|
|
421
|
-
readonly hoverOpacity: string;
|
|
422
|
-
readonly focus: string;
|
|
423
|
-
readonly focusOpacity: string;
|
|
424
|
-
readonly focusVisible: string;
|
|
425
|
-
readonly selected: string;
|
|
426
|
-
readonly selectedOpacity: string;
|
|
427
|
-
readonly active: string;
|
|
428
|
-
readonly activeOpacity: string;
|
|
429
|
-
readonly opacity: string;
|
|
430
|
-
readonly toneOpacity: string;
|
|
431
|
-
readonly semanticText: string;
|
|
432
|
-
readonly opacityGradient1: string;
|
|
433
|
-
readonly opacityGradient2: string;
|
|
434
|
-
};
|
|
435
|
-
readonly default: {
|
|
436
|
-
readonly semanticText: string;
|
|
437
|
-
readonly focusVisible: string;
|
|
438
|
-
readonly enabled: string;
|
|
439
|
-
readonly focus: string;
|
|
440
|
-
readonly light: string;
|
|
441
|
-
readonly dark: string;
|
|
442
|
-
readonly main: string;
|
|
443
|
-
readonly contrastText: string;
|
|
444
|
-
readonly enabledOpacity: string;
|
|
445
|
-
readonly hover: string;
|
|
446
|
-
readonly hoverOpacity: string;
|
|
447
|
-
readonly focusOpacity: string;
|
|
448
|
-
readonly selected: string;
|
|
449
|
-
readonly selectedOpacity: string;
|
|
450
|
-
readonly active: string;
|
|
451
|
-
readonly activeOpacity: string;
|
|
452
|
-
readonly opacity: string;
|
|
453
|
-
readonly toneOpacity: string;
|
|
454
|
-
readonly opacityGradient1: string;
|
|
455
|
-
readonly opacityGradient2: string;
|
|
456
|
-
};
|
|
457
|
-
readonly divider: string;
|
|
458
|
-
readonly text: {
|
|
459
|
-
readonly primary: string;
|
|
460
|
-
readonly secondary: string;
|
|
461
|
-
readonly disabled: string;
|
|
462
|
-
};
|
|
463
|
-
readonly background: {
|
|
464
|
-
readonly default: string;
|
|
465
|
-
readonly neutral: string;
|
|
466
|
-
readonly surface: string;
|
|
467
|
-
readonly hover: string;
|
|
468
|
-
readonly backdrop: string;
|
|
469
|
-
readonly base: string;
|
|
470
|
-
readonly blur: string;
|
|
471
|
-
readonly paper: "#fff";
|
|
472
|
-
};
|
|
473
|
-
readonly chips: {
|
|
474
|
-
readonly error: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
475
|
-
readonly info: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
476
|
-
readonly success: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
477
|
-
readonly warning: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
478
|
-
readonly default: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
479
|
-
readonly forest: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
480
|
-
readonly pink: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
481
|
-
readonly orange: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
482
|
-
readonly candy: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
483
|
-
readonly persianGreen: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
484
|
-
readonly aqua: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
485
|
-
readonly disabled: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
486
|
-
readonly primary: {
|
|
487
|
-
readonly outlined: {
|
|
488
|
-
readonly color: string;
|
|
489
|
-
readonly backgroundColor: string;
|
|
490
|
-
readonly backgroundHover: string;
|
|
491
|
-
readonly backgroundActive: string;
|
|
492
|
-
readonly colorTone: string;
|
|
493
|
-
readonly backgroundColorTone: string;
|
|
494
|
-
readonly backgroundHoverTone: string;
|
|
495
|
-
readonly backgroundActiveTone: string;
|
|
496
|
-
};
|
|
497
|
-
readonly contained: {
|
|
498
|
-
readonly color: string;
|
|
499
|
-
readonly backgroundColor: string;
|
|
500
|
-
readonly backgroundHover: string;
|
|
501
|
-
readonly backgroundActive: string;
|
|
502
|
-
readonly colorTone: string;
|
|
503
|
-
readonly backgroundColorTone: string;
|
|
504
|
-
readonly backgroundHoverTone: string;
|
|
505
|
-
readonly backgroundActiveTone: string;
|
|
506
|
-
};
|
|
507
|
-
};
|
|
508
|
-
};
|
|
509
|
-
readonly border: {
|
|
510
|
-
readonly main: string;
|
|
511
|
-
readonly dens: string;
|
|
512
|
-
readonly default: string;
|
|
513
|
-
readonly secondary: string;
|
|
514
|
-
readonly disabled: string;
|
|
515
|
-
readonly error: string;
|
|
516
|
-
};
|
|
517
|
-
readonly general: {
|
|
518
|
-
readonly scrollBar: string;
|
|
519
|
-
readonly gridHover: string;
|
|
520
|
-
};
|
|
521
|
-
readonly grey: import('@mui/material').Color;
|
|
522
|
-
readonly skeleton: {
|
|
523
|
-
readonly default: string;
|
|
524
|
-
readonly transition: string;
|
|
525
|
-
};
|
|
526
|
-
readonly info: {
|
|
527
|
-
readonly focusVisible: string;
|
|
528
|
-
readonly enabled: string;
|
|
529
|
-
readonly focus: string;
|
|
530
|
-
readonly light: string;
|
|
531
|
-
readonly dark: string;
|
|
532
|
-
readonly main: string;
|
|
533
|
-
readonly contrastText: string;
|
|
534
|
-
readonly enabledOpacity: string;
|
|
535
|
-
readonly hover: string;
|
|
536
|
-
readonly hoverOpacity: string;
|
|
537
|
-
readonly focusOpacity: string;
|
|
538
|
-
readonly selected: string;
|
|
539
|
-
readonly selectedOpacity: string;
|
|
540
|
-
readonly active: string;
|
|
541
|
-
readonly activeOpacity: string;
|
|
542
|
-
readonly opacity: string;
|
|
543
|
-
readonly toneOpacity: string;
|
|
544
|
-
readonly semanticText: string;
|
|
545
|
-
readonly opacityGradient1: string;
|
|
546
|
-
readonly opacityGradient2: string;
|
|
547
|
-
};
|
|
548
|
-
readonly success: {
|
|
549
|
-
readonly focusVisible: string;
|
|
550
|
-
readonly enabled: string;
|
|
551
|
-
readonly focus: string;
|
|
552
|
-
readonly light: string;
|
|
553
|
-
readonly dark: string;
|
|
554
|
-
readonly main: string;
|
|
555
|
-
readonly contrastText: string;
|
|
556
|
-
readonly enabledOpacity: string;
|
|
557
|
-
readonly hover: string;
|
|
558
|
-
readonly hoverOpacity: string;
|
|
559
|
-
readonly focusOpacity: string;
|
|
560
|
-
readonly selected: string;
|
|
561
|
-
readonly selectedOpacity: string;
|
|
562
|
-
readonly active: string;
|
|
563
|
-
readonly activeOpacity: string;
|
|
564
|
-
readonly opacity: string;
|
|
565
|
-
readonly toneOpacity: string;
|
|
566
|
-
readonly semanticText: string;
|
|
567
|
-
readonly opacityGradient1: string;
|
|
568
|
-
readonly opacityGradient2: string;
|
|
569
|
-
};
|
|
570
|
-
readonly warning: {
|
|
571
|
-
readonly focusVisible: string;
|
|
572
|
-
readonly enabled: string;
|
|
573
|
-
readonly focus: string;
|
|
574
|
-
readonly light: string;
|
|
575
|
-
readonly dark: string;
|
|
576
|
-
readonly main: string;
|
|
577
|
-
readonly contrastText: string;
|
|
578
|
-
readonly enabledOpacity: string;
|
|
579
|
-
readonly hover: string;
|
|
580
|
-
readonly hoverOpacity: string;
|
|
581
|
-
readonly focusOpacity: string;
|
|
582
|
-
readonly selected: string;
|
|
583
|
-
readonly selectedOpacity: string;
|
|
584
|
-
readonly active: string;
|
|
585
|
-
readonly activeOpacity: string;
|
|
586
|
-
readonly opacity: string;
|
|
587
|
-
readonly toneOpacity: string;
|
|
588
|
-
readonly semanticText: string;
|
|
589
|
-
readonly opacityGradient1: string;
|
|
590
|
-
readonly opacityGradient2: string;
|
|
591
|
-
};
|
|
592
|
-
readonly error: {
|
|
593
|
-
readonly focusVisible: string;
|
|
594
|
-
readonly enabled: string;
|
|
595
|
-
readonly focus: string;
|
|
596
|
-
readonly light: string;
|
|
597
|
-
readonly dark: string;
|
|
598
|
-
readonly main: string;
|
|
599
|
-
readonly contrastText: string;
|
|
600
|
-
readonly enabledOpacity: string;
|
|
601
|
-
readonly hover: string;
|
|
602
|
-
readonly hoverOpacity: string;
|
|
603
|
-
readonly focusOpacity: string;
|
|
604
|
-
readonly selected: string;
|
|
605
|
-
readonly selectedOpacity: string;
|
|
606
|
-
readonly active: string;
|
|
607
|
-
readonly activeOpacity: string;
|
|
608
|
-
readonly opacity: string;
|
|
609
|
-
readonly toneOpacity: string;
|
|
610
|
-
readonly semanticText: string;
|
|
611
|
-
readonly opacityGradient1: string;
|
|
612
|
-
readonly opacityGradient2: string;
|
|
613
|
-
};
|
|
614
|
-
} | {
|
|
615
|
-
readonly mode: "dark";
|
|
616
|
-
readonly common: import('@mui/material').CommonColors;
|
|
617
|
-
readonly primary: {
|
|
618
|
-
readonly light: string;
|
|
619
|
-
readonly main: string;
|
|
620
|
-
readonly dark: string;
|
|
621
|
-
readonly contrastText: string;
|
|
622
|
-
readonly enabled: string;
|
|
623
|
-
readonly enabledOpacity: string;
|
|
624
|
-
readonly hover: string;
|
|
625
|
-
readonly hoverOpacity: string;
|
|
626
|
-
readonly focus: string;
|
|
627
|
-
readonly focusOpacity: string;
|
|
628
|
-
readonly focusVisible: string;
|
|
629
|
-
readonly selected: string;
|
|
630
|
-
readonly selectedOpacity: string;
|
|
631
|
-
readonly active: string;
|
|
632
|
-
readonly activeOpacity: string;
|
|
633
|
-
readonly opacity: string;
|
|
634
|
-
readonly toneOpacity: string;
|
|
635
|
-
readonly semanticText: string;
|
|
636
|
-
readonly opacityGradient1: string;
|
|
637
|
-
readonly opacityGradient2: string;
|
|
638
|
-
};
|
|
639
|
-
readonly default: {
|
|
640
|
-
readonly semanticText: string;
|
|
641
|
-
readonly focusVisible: string;
|
|
642
|
-
readonly enabled: string;
|
|
643
|
-
readonly focus: string;
|
|
644
|
-
readonly light: string;
|
|
645
|
-
readonly dark: string;
|
|
646
|
-
readonly main: string;
|
|
647
|
-
readonly contrastText: string;
|
|
648
|
-
readonly enabledOpacity: string;
|
|
649
|
-
readonly hover: string;
|
|
650
|
-
readonly hoverOpacity: string;
|
|
651
|
-
readonly focusOpacity: string;
|
|
652
|
-
readonly selected: string;
|
|
653
|
-
readonly selectedOpacity: string;
|
|
654
|
-
readonly active: string;
|
|
655
|
-
readonly activeOpacity: string;
|
|
656
|
-
readonly opacity: string;
|
|
657
|
-
readonly toneOpacity: string;
|
|
658
|
-
readonly opacityGradient1: string;
|
|
659
|
-
readonly opacityGradient2: string;
|
|
660
|
-
};
|
|
661
|
-
readonly text: {
|
|
662
|
-
readonly primary: string;
|
|
663
|
-
readonly secondary: string;
|
|
664
|
-
readonly disabled: string;
|
|
665
|
-
};
|
|
666
|
-
readonly divider: string;
|
|
667
|
-
readonly background: {
|
|
668
|
-
readonly default: string;
|
|
669
|
-
readonly neutral: string;
|
|
670
|
-
readonly surface: string;
|
|
671
|
-
readonly hover: string;
|
|
672
|
-
readonly backdrop: string;
|
|
673
|
-
readonly base: string;
|
|
674
|
-
readonly blur: string;
|
|
675
|
-
readonly paper: "#000";
|
|
676
|
-
};
|
|
677
|
-
readonly chips: {
|
|
678
|
-
readonly error: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
679
|
-
readonly info: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
680
|
-
readonly success: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
681
|
-
readonly warning: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
682
|
-
readonly default: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
683
|
-
readonly forest: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
684
|
-
readonly pink: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
685
|
-
readonly orange: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
686
|
-
readonly candy: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
687
|
-
readonly persianGreen: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
688
|
-
readonly aqua: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
689
|
-
readonly disabled: Record<import('@m4l/styles').ChipColorVariant, import('@m4l/styles').ChipColor>;
|
|
690
|
-
readonly primary: {
|
|
691
|
-
readonly outlined: {
|
|
692
|
-
readonly color: string;
|
|
693
|
-
readonly backgroundColor: string;
|
|
694
|
-
readonly backgroundHover: string;
|
|
695
|
-
readonly backgroundActive: string;
|
|
696
|
-
readonly colorTone: string;
|
|
697
|
-
readonly backgroundColorTone: string;
|
|
698
|
-
readonly backgroundHoverTone: string;
|
|
699
|
-
readonly backgroundActiveTone: string;
|
|
700
|
-
};
|
|
701
|
-
readonly contained: {
|
|
702
|
-
readonly color: string;
|
|
703
|
-
readonly backgroundColor: string;
|
|
704
|
-
readonly backgroundHover: string;
|
|
705
|
-
readonly backgroundActive: string;
|
|
706
|
-
readonly colorTone: string;
|
|
707
|
-
readonly backgroundColorTone: string;
|
|
708
|
-
readonly backgroundHoverTone: string;
|
|
709
|
-
readonly backgroundActiveTone: string;
|
|
710
|
-
};
|
|
711
|
-
};
|
|
712
|
-
};
|
|
713
|
-
readonly border: {
|
|
714
|
-
readonly main: string;
|
|
715
|
-
readonly dens: string;
|
|
716
|
-
readonly default: string;
|
|
717
|
-
readonly secondary: string;
|
|
718
|
-
readonly disabled: string;
|
|
719
|
-
readonly error: string;
|
|
720
|
-
};
|
|
721
|
-
readonly general: {
|
|
722
|
-
readonly scrollBar: string;
|
|
723
|
-
readonly gridHover: string;
|
|
724
|
-
};
|
|
725
|
-
readonly grey: import('@mui/material').Color;
|
|
726
|
-
readonly skeleton: {
|
|
727
|
-
readonly default: string;
|
|
728
|
-
readonly transition: string;
|
|
729
|
-
};
|
|
730
|
-
readonly info: {
|
|
731
|
-
readonly focusVisible: string;
|
|
732
|
-
readonly enabled: string;
|
|
733
|
-
readonly focus: string;
|
|
734
|
-
readonly light: string;
|
|
735
|
-
readonly dark: string;
|
|
736
|
-
readonly main: string;
|
|
737
|
-
readonly contrastText: string;
|
|
738
|
-
readonly enabledOpacity: string;
|
|
739
|
-
readonly hover: string;
|
|
740
|
-
readonly hoverOpacity: string;
|
|
741
|
-
readonly focusOpacity: string;
|
|
742
|
-
readonly selected: string;
|
|
743
|
-
readonly selectedOpacity: string;
|
|
744
|
-
readonly active: string;
|
|
745
|
-
readonly activeOpacity: string;
|
|
746
|
-
readonly opacity: string;
|
|
747
|
-
readonly toneOpacity: string;
|
|
748
|
-
readonly semanticText: string;
|
|
749
|
-
readonly opacityGradient1: string;
|
|
750
|
-
readonly opacityGradient2: string;
|
|
751
|
-
};
|
|
752
|
-
readonly success: {
|
|
753
|
-
readonly focusVisible: string;
|
|
754
|
-
readonly enabled: string;
|
|
755
|
-
readonly focus: string;
|
|
756
|
-
readonly light: string;
|
|
757
|
-
readonly dark: string;
|
|
758
|
-
readonly main: string;
|
|
759
|
-
readonly contrastText: string;
|
|
760
|
-
readonly enabledOpacity: string;
|
|
761
|
-
readonly hover: string;
|
|
762
|
-
readonly hoverOpacity: string;
|
|
763
|
-
readonly focusOpacity: string;
|
|
764
|
-
readonly selected: string;
|
|
765
|
-
readonly selectedOpacity: string;
|
|
766
|
-
readonly active: string;
|
|
767
|
-
readonly activeOpacity: string;
|
|
768
|
-
readonly opacity: string;
|
|
769
|
-
readonly toneOpacity: string;
|
|
770
|
-
readonly semanticText: string;
|
|
771
|
-
readonly opacityGradient1: string;
|
|
772
|
-
readonly opacityGradient2: string;
|
|
773
|
-
};
|
|
774
|
-
readonly warning: {
|
|
775
|
-
readonly focusVisible: string;
|
|
776
|
-
readonly enabled: string;
|
|
777
|
-
readonly focus: string;
|
|
778
|
-
readonly light: string;
|
|
779
|
-
readonly dark: string;
|
|
780
|
-
readonly main: string;
|
|
781
|
-
readonly contrastText: string;
|
|
782
|
-
readonly enabledOpacity: string;
|
|
783
|
-
readonly hover: string;
|
|
784
|
-
readonly hoverOpacity: string;
|
|
785
|
-
readonly focusOpacity: string;
|
|
786
|
-
readonly selected: string;
|
|
787
|
-
readonly selectedOpacity: string;
|
|
788
|
-
readonly active: string;
|
|
789
|
-
readonly activeOpacity: string;
|
|
790
|
-
readonly opacity: string;
|
|
791
|
-
readonly toneOpacity: string;
|
|
792
|
-
readonly semanticText: string;
|
|
793
|
-
readonly opacityGradient1: string;
|
|
794
|
-
readonly opacityGradient2: string;
|
|
795
|
-
};
|
|
796
|
-
readonly error: {
|
|
797
|
-
readonly focusVisible: string;
|
|
798
|
-
readonly enabled: string;
|
|
799
|
-
readonly focus: string;
|
|
800
|
-
readonly light: string;
|
|
801
|
-
readonly dark: string;
|
|
802
|
-
readonly main: string;
|
|
803
|
-
readonly contrastText: string;
|
|
804
|
-
readonly enabledOpacity: string;
|
|
805
|
-
readonly hover: string;
|
|
806
|
-
readonly hoverOpacity: string;
|
|
807
|
-
readonly focusOpacity: string;
|
|
808
|
-
readonly selected: string;
|
|
809
|
-
readonly selectedOpacity: string;
|
|
810
|
-
readonly active: string;
|
|
811
|
-
readonly activeOpacity: string;
|
|
812
|
-
readonly opacity: string;
|
|
813
|
-
readonly toneOpacity: string;
|
|
814
|
-
readonly semanticText: string;
|
|
815
|
-
readonly opacityGradient1: string;
|
|
816
|
-
readonly opacityGradient2: string;
|
|
817
|
-
};
|
|
818
|
-
};
|
|
819
|
-
export declare const generalColors: string[];
|
|
820
|
-
export declare const keysColors: string[];
|