react-miui 0.32.3 → 0.34.0
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/.claude/settings.json +12 -0
- package/.claude/settings.local.json +11 -1
- package/.storybook/main.ts +4 -1
- package/.storybook/preview.tsx +10 -4
- package/CHANGELOG.md +16 -0
- package/dist/components/form/Checkbox.styled.d.ts +6 -6
- package/dist/components/form/ColorPicker.styled.d.ts +5 -5
- package/dist/components/form/Label.d.ts +3 -3
- package/dist/components/form/Label.styled.d.ts +5 -5
- package/dist/components/form/Select.styled.d.ts +3 -3
- package/dist/components/form/Toggle.d.ts +3 -3
- package/dist/components/form/Toggle.styled.d.ts +5 -5
- package/dist/components/form/choice/Choice.styled.d.ts +3 -3
- package/dist/components/form/choice/ChoiceItem.styled.d.ts +2 -2
- package/dist/components/form/input/Input.css.d.ts +47 -1
- package/dist/components/form/input/Input.css.d.ts.map +1 -1
- package/dist/components/form/input/Input.css.js +49 -1
- package/dist/components/form/input/Input.css.js.map +1 -1
- package/dist/components/form/input/Input.d.ts +5 -1
- package/dist/components/form/input/Input.d.ts.map +1 -1
- package/dist/components/form/input/Input.js +28 -5
- package/dist/components/form/input/Input.js.map +1 -1
- package/dist/components/form/input/Input.styled.d.ts +183 -10
- package/dist/components/form/input/Input.styled.d.ts.map +1 -1
- package/dist/components/form/input/Input.styled.js +5 -1
- package/dist/components/form/input/Input.styled.js.map +1 -1
- package/dist/components/form/textarea/TextArea.d.ts +6 -1
- package/dist/components/form/textarea/TextArea.d.ts.map +1 -1
- package/dist/components/form/textarea/TextArea.js +32 -4
- package/dist/components/form/textarea/TextArea.js.map +1 -1
- package/dist/components/form/textarea/TextArea.styled.d.ts +177 -4
- package/dist/components/form/textarea/TextArea.styled.d.ts.map +1 -1
- package/dist/components/form/textarea/TextArea.styled.js +10 -2
- package/dist/components/form/textarea/TextArea.styled.js.map +1 -1
- package/dist/components/layout/card/Card.styled.d.ts +3 -3
- package/dist/components/layout/header/Header.styled.d.ts +9 -9
- package/dist/components/layout/header/HeaderIconAction.styled.d.ts +8 -8
- package/dist/components/layout/header/StickyHeader.d.ts +3 -3
- package/dist/components/layout/header/StickyHeader.styled.d.ts +6 -6
- package/dist/components/layout/list/Header.d.ts +7 -7
- package/dist/components/layout/list/Item.d.ts +8 -8
- package/dist/components/layout/list/Item.styled.d.ts +9 -9
- package/dist/components/layout/list/Label.d.ts +2 -2
- package/dist/components/layout/list/List.d.ts +18 -18
- package/dist/components/layout/list/Value.d.ts +2 -2
- package/dist/components/layout/section/SearchContainer.d.ts +2 -2
- package/dist/components/layout/section/Section.d.ts +5 -5
- package/dist/components/layout/section/SectionContainer.d.ts +2 -2
- package/dist/components/layout/table/Table.styled.d.ts +3 -3
- package/dist/components/native/index.d.ts +2 -2
- package/dist/components/ui/action/Action.styled.d.ts +8 -8
- package/dist/components/ui/action/EqualActions.styled.d.ts +3 -3
- package/dist/components/ui/button/Button.styled.d.ts +3 -3
- package/dist/components/ui/directionPad/Button.styled.d.ts +4 -4
- package/dist/components/ui/directionPad/Middle.styled.d.ts +2 -2
- package/dist/components/ui/directionPad/Pad.styled.d.ts +4 -4
- package/dist/components/ui/drawer/Drawer.d.ts +10 -1
- package/dist/components/ui/drawer/Drawer.d.ts.map +1 -1
- package/dist/components/ui/drawer/Drawer.js +135 -15
- package/dist/components/ui/drawer/Drawer.js.map +1 -1
- package/dist/components/ui/drawer/Drawer.styled.d.ts +90 -5
- package/dist/components/ui/drawer/Drawer.styled.d.ts.map +1 -1
- package/dist/components/ui/drawer/Drawer.styled.js +13 -1
- package/dist/components/ui/drawer/Drawer.styled.js.map +1 -1
- package/dist/components/ui/keyValue/KeyValue.styled.d.ts +13 -13
- package/dist/components/ui/line/Line.d.ts +3 -3
- package/dist/components/ui/message/Message.styled.d.ts +3 -3
- package/dist/components/ui/modal/Modal.d.ts +2 -2
- package/dist/components/ui/modal/Modal.d.ts.map +1 -1
- package/dist/components/ui/modal/Modal.js.map +1 -1
- package/dist/components/ui/modal/Modal.styled.d.ts +10 -10
- package/dist/components/ui/modal/ModalButtons.styled.d.ts +5 -5
- package/dist/components/ui/pop/Pop.styled.d.ts +12 -12
- package/dist/components/ui/progress/Progress.styled.d.ts +8 -8
- package/dist/components/ui/stats/Stats.styled.d.ts +11 -11
- package/dist/components/ui/tabs/Item.styled.d.ts +2 -2
- package/dist/components/ui/tabs/Selector.styled.d.ts +5 -5
- package/dist/components/ui/toaster/Toaster.d.ts +8 -15
- package/dist/components/ui/toaster/Toaster.d.ts.map +1 -1
- package/dist/components/ui/toaster/Toaster.js +31 -55
- package/dist/components/ui/toaster/Toaster.js.map +1 -1
- package/dist/components/ui/toolButton/ToolButton.styled.d.ts +3 -3
- package/dist/components/ui/tooltip/Tooltip.d.ts +30 -0
- package/dist/components/ui/tooltip/Tooltip.d.ts.map +1 -0
- package/dist/components/ui/tooltip/Tooltip.js +81 -0
- package/dist/components/ui/tooltip/Tooltip.js.map +1 -0
- package/dist/components/ui/tooltip/Tooltip.styled.d.ts +173 -0
- package/dist/components/ui/tooltip/Tooltip.styled.d.ts.map +1 -0
- package/dist/components/ui/{toaster/Notification.js → tooltip/Tooltip.styled.js} +30 -18
- package/dist/components/ui/tooltip/Tooltip.styled.js.map +1 -0
- package/dist/components/utils/Gap.d.ts +3 -3
- package/dist/components/utils/Spacer.d.ts +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/theme.d.ts +86 -86
- package/docs/assets/highlight.css +7 -0
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/classes/index.Pop.html +18 -18
- package/docs/documents/Test.html +2 -2
- package/docs/enums/index.ICON.html +2 -2
- package/docs/functions/index.Action.html +5 -5
- package/docs/functions/index.Button.html +5 -5
- package/docs/functions/index.Card.html +4 -4
- package/docs/functions/index.Checkbox.html +5 -5
- package/docs/functions/index.Choice.html +4 -4
- package/docs/functions/index.ColorPicker.html +5 -5
- package/docs/functions/index.CoveringLoader.html +5 -5
- package/docs/functions/index.DirectionPad.html +4 -4
- package/docs/functions/index.Drawer.html +4 -4
- package/docs/functions/index.EqualActions.html +4 -4
- package/docs/functions/index.FullLoader.html +5 -5
- package/docs/functions/index.Gap.html +4 -4
- package/docs/functions/index.HandleEsc.html +6 -6
- package/docs/functions/index.Header.html +5 -5
- package/docs/functions/index.HeaderIconAction.html +5 -5
- package/docs/functions/index.Icon-1.html +4 -4
- package/docs/functions/index.If.html +6 -6
- package/docs/functions/index.Input.html +1 -1
- package/docs/functions/index.KeyValue.html +4 -4
- package/docs/functions/index.Label.html +4 -4
- package/docs/functions/index.Line.html +5 -5
- package/docs/functions/index.List.html +4 -4
- package/docs/functions/index.Loader.html +5 -5
- package/docs/functions/index.Loading.html +6 -6
- package/docs/functions/index.Message.html +5 -5
- package/docs/functions/index.Modal.html +4 -4
- package/docs/functions/index.ModalButtons.html +4 -4
- package/docs/functions/index.PopLoader.html +5 -5
- package/docs/functions/index.PopOption.html +4 -4
- package/docs/functions/index.Progress.html +4 -4
- package/docs/functions/index.SearchContainer.html +4 -4
- package/docs/functions/index.Section.html +5 -5
- package/docs/functions/index.Select.html +4 -4
- package/docs/functions/index.Selector.html +4 -4
- package/docs/functions/index.Spacer.html +4 -4
- package/docs/functions/index.Stats.html +4 -4
- package/docs/functions/index.StickyHeader.html +5 -5
- package/docs/functions/index.Table.html +4 -4
- package/docs/functions/index.TextArea.html +4 -4
- package/docs/functions/index.ToasterProvider.html +29 -0
- package/docs/functions/index.Toggle.html +5 -5
- package/docs/functions/index.ToolButton.html +5 -5
- package/docs/functions/index.Tooltip.html +18 -0
- package/docs/functions/index.TooltipProvider.html +6 -0
- package/docs/functions/index.borderPxToRem.html +1 -1
- package/docs/functions/index.createTheme.html +1 -1
- package/docs/functions/index.css.html +1 -1
- package/docs/functions/index.dimensionsPxToRem.html +1 -1
- package/docs/functions/index.fontPxToRem.html +1 -1
- package/docs/functions/index.getCssText.html +1 -1
- package/docs/functions/index.globalCss.html +2 -2
- package/docs/functions/index.injectGlobalStyles.html +1 -1
- package/docs/functions/index.keyframes.html +1 -1
- package/docs/functions/index.pxToRem.html +1 -1
- package/docs/functions/index.styled.html +1 -1
- package/docs/functions/index.toast.html +12 -0
- package/docs/functions/index.useToaster.html +1 -1
- package/docs/index.html +2 -2
- package/docs/interfaces/index.IconProps.html +2 -2
- package/docs/interfaces/index.InputCustomProps.html +7 -2
- package/docs/interfaces/index.LoaderProps.html +6 -6
- package/docs/interfaces/index.StickyHeaderProps.html +4 -4
- package/docs/interfaces/index.ToasterProviderProps.html +28 -0
- package/docs/interfaces/index.TooltipProps.html +36 -0
- package/docs/interfaces/index.TooltipProviderProps.html +13 -0
- package/docs/modules/index.html +1 -1
- package/docs/modules.html +1 -1
- package/docs/types/index.ActionProps.html +1 -1
- package/docs/types/index.CardProps.html +1 -1
- package/docs/types/index.CheckboxProps.html +2 -2
- package/docs/types/index.ChoiceProps.html +1 -1
- package/docs/types/index.ColorPickerProps.html +1 -1
- package/docs/types/index.DirectionPadProps.html +1 -1
- package/docs/types/index.DrawerFrom.html +1 -0
- package/docs/types/index.DrawerProps.html +28 -1
- package/docs/types/index.EqualActionsProps.html +1 -1
- package/docs/types/index.HeaderProps.html +1 -1
- package/docs/types/index.InputProps.html +1 -1
- package/docs/types/index.KeyValueProps.html +1 -1
- package/docs/types/index.LabelProps.html +1 -1
- package/docs/types/index.OverwriteProps.html +1 -1
- package/docs/types/index.ProgressProps.html +2 -2
- package/docs/types/index.SelectProps.html +1 -1
- package/docs/types/index.SelectorProps.html +1 -1
- package/docs/types/index.Stat.html +1 -1
- package/docs/types/index.StatsProps.html +1 -1
- package/docs/types/index.TextAreaProps.html +1 -1
- package/docs/types/index.ThemeCSS.html +1 -1
- package/docs/types/index.ToggleProps.html +2 -2
- package/docs/variables/index.ActionBadgeSelector.html +1 -1
- package/docs/variables/index.ActionCircleSelector.html +1 -1
- package/docs/variables/index.CheckboxCheckmarkWrapperSelector.html +1 -1
- package/docs/variables/index.CheckboxTextLabelSelector.html +1 -1
- package/docs/variables/index.ChoiceItemSelector.html +1 -1
- package/docs/variables/index.ColorPickerColorDisplaySelector.html +1 -1
- package/docs/variables/index.DirectionPadButtonDotSelector.html +1 -1
- package/docs/variables/index.DirectionPadButtonSelector.html +1 -1
- package/docs/variables/index.DirectionPadLineSelector.html +1 -1
- package/docs/variables/index.DirectionPadMiddleSelector.html +1 -1
- package/docs/variables/index.DrawerContentSelector.html +1 -1
- package/docs/variables/index.HeaderAfterSelector.html +1 -1
- package/docs/variables/index.HeaderBeforeSelector.html +1 -1
- package/docs/variables/index.HeaderContentsSelector.html +1 -1
- package/docs/variables/index.HeaderIconActionIconSelector.html +1 -1
- package/docs/variables/index.InputContainerSelector.html +1 -0
- package/docs/variables/index.InputInputSelector.html +1 -1
- package/docs/variables/index.InputLabelSelector.html +1 -0
- package/docs/variables/index.InputPrefixSelector.html +1 -1
- package/docs/variables/index.InputSuffixSelector.html +1 -1
- package/docs/variables/index.KeyValueIconSelector.html +1 -1
- package/docs/variables/index.KeyValueItemSelector.html +1 -1
- package/docs/variables/index.KeyValueKeySelector.html +1 -1
- package/docs/variables/index.KeyValuePairSelector.html +1 -1
- package/docs/variables/index.KeyValueValueSelector.html +1 -1
- package/docs/variables/index.LabelTextSelector.html +1 -1
- package/docs/variables/index.ListItemInnerContainerClassNameSelector.html +1 -1
- package/docs/variables/index.ModalContainerSelector.html +1 -1
- package/docs/variables/index.ModalRemovePaddingSelector.html +1 -1
- package/docs/variables/index.ModalTitleSelector.html +1 -1
- package/docs/variables/index.PopListSelector.html +1 -1
- package/docs/variables/index.PopOptionButtonSelector.html +1 -1
- package/docs/variables/index.PopOptionIconSelector.html +1 -1
- package/docs/variables/index.PopOverlaySelector.html +1 -1
- package/docs/variables/index.ProgressBackgroundSelector.html +1 -1
- package/docs/variables/index.ProgressValueSelector.html +1 -1
- package/docs/variables/index.SelectorItemSelector.html +1 -1
- package/docs/variables/index.StatsItemSelector.html +1 -1
- package/docs/variables/index.StatsLabelSelector.html +1 -1
- package/docs/variables/index.StatsSeparatorSelector.html +1 -1
- package/docs/variables/index.StatsValueSelector.html +1 -1
- package/docs/variables/index.TextAreaLabelSelector.html +1 -0
- package/docs/variables/index.TextAreaTextAreaSelector.html +1 -0
- package/docs/variables/index.TextAreaWrapperSelector.html +1 -0
- package/docs/variables/index.ToggleStyledToggleSelector.html +1 -1
- package/docs/variables/index.TooltipContentSelector.html +1 -0
- package/docs/variables/index.config.html +1 -1
- package/docs/variables/index.cssReset.html +2 -2
- package/docs/variables/index.darkTheme.html +1 -1
- package/docs/variables/index.miuiScrollbars.html +1 -1
- package/docs/variables/index.theme.html +1 -1
- package/esm/components/form/Checkbox.styled.d.ts +6 -6
- package/esm/components/form/ColorPicker.styled.d.ts +5 -5
- package/esm/components/form/Label.d.ts +3 -3
- package/esm/components/form/Label.styled.d.ts +5 -5
- package/esm/components/form/Select.styled.d.ts +3 -3
- package/esm/components/form/Toggle.d.ts +3 -3
- package/esm/components/form/Toggle.styled.d.ts +5 -5
- package/esm/components/form/choice/Choice.styled.d.ts +3 -3
- package/esm/components/form/choice/ChoiceItem.styled.d.ts +2 -2
- package/esm/components/form/input/Input.css.d.ts +47 -1
- package/esm/components/form/input/Input.css.d.ts.map +1 -1
- package/esm/components/form/input/Input.css.js +47 -1
- package/esm/components/form/input/Input.css.js.map +1 -1
- package/esm/components/form/input/Input.d.ts +5 -1
- package/esm/components/form/input/Input.d.ts.map +1 -1
- package/esm/components/form/input/Input.js +27 -6
- package/esm/components/form/input/Input.js.map +1 -1
- package/esm/components/form/input/Input.styled.d.ts +183 -10
- package/esm/components/form/input/Input.styled.d.ts.map +1 -1
- package/esm/components/form/input/Input.styled.js +4 -2
- package/esm/components/form/input/Input.styled.js.map +1 -1
- package/esm/components/form/textarea/TextArea.d.ts +6 -1
- package/esm/components/form/textarea/TextArea.d.ts.map +1 -1
- package/esm/components/form/textarea/TextArea.js +31 -6
- package/esm/components/form/textarea/TextArea.js.map +1 -1
- package/esm/components/form/textarea/TextArea.styled.d.ts +177 -4
- package/esm/components/form/textarea/TextArea.styled.d.ts.map +1 -1
- package/esm/components/form/textarea/TextArea.styled.js +14 -4
- package/esm/components/form/textarea/TextArea.styled.js.map +1 -1
- package/esm/components/layout/card/Card.styled.d.ts +3 -3
- package/esm/components/layout/header/Header.styled.d.ts +9 -9
- package/esm/components/layout/header/HeaderIconAction.styled.d.ts +8 -8
- package/esm/components/layout/header/StickyHeader.d.ts +3 -3
- package/esm/components/layout/header/StickyHeader.styled.d.ts +6 -6
- package/esm/components/layout/list/Header.d.ts +7 -7
- package/esm/components/layout/list/Item.d.ts +8 -8
- package/esm/components/layout/list/Item.styled.d.ts +9 -9
- package/esm/components/layout/list/Label.d.ts +2 -2
- package/esm/components/layout/list/List.d.ts +18 -18
- package/esm/components/layout/list/Value.d.ts +2 -2
- package/esm/components/layout/section/SearchContainer.d.ts +2 -2
- package/esm/components/layout/section/Section.d.ts +5 -5
- package/esm/components/layout/section/SectionContainer.d.ts +2 -2
- package/esm/components/layout/table/Table.styled.d.ts +3 -3
- package/esm/components/native/index.d.ts +2 -2
- package/esm/components/ui/action/Action.styled.d.ts +8 -8
- package/esm/components/ui/action/EqualActions.styled.d.ts +3 -3
- package/esm/components/ui/button/Button.styled.d.ts +3 -3
- package/esm/components/ui/directionPad/Button.styled.d.ts +4 -4
- package/esm/components/ui/directionPad/Middle.styled.d.ts +2 -2
- package/esm/components/ui/directionPad/Pad.styled.d.ts +4 -4
- package/esm/components/ui/drawer/Drawer.d.ts +10 -1
- package/esm/components/ui/drawer/Drawer.d.ts.map +1 -1
- package/esm/components/ui/drawer/Drawer.js +139 -15
- package/esm/components/ui/drawer/Drawer.js.map +1 -1
- package/esm/components/ui/drawer/Drawer.styled.d.ts +90 -5
- package/esm/components/ui/drawer/Drawer.styled.d.ts.map +1 -1
- package/esm/components/ui/drawer/Drawer.styled.js +12 -1
- package/esm/components/ui/drawer/Drawer.styled.js.map +1 -1
- package/esm/components/ui/keyValue/KeyValue.styled.d.ts +13 -13
- package/esm/components/ui/line/Line.d.ts +3 -3
- package/esm/components/ui/message/Message.styled.d.ts +3 -3
- package/esm/components/ui/modal/Modal.d.ts +2 -2
- package/esm/components/ui/modal/Modal.d.ts.map +1 -1
- package/esm/components/ui/modal/Modal.js.map +1 -1
- package/esm/components/ui/modal/Modal.styled.d.ts +10 -10
- package/esm/components/ui/modal/ModalButtons.styled.d.ts +5 -5
- package/esm/components/ui/pop/Pop.styled.d.ts +12 -12
- package/esm/components/ui/progress/Progress.styled.d.ts +8 -8
- package/esm/components/ui/stats/Stats.styled.d.ts +11 -11
- package/esm/components/ui/tabs/Item.styled.d.ts +2 -2
- package/esm/components/ui/tabs/Selector.styled.d.ts +5 -5
- package/esm/components/ui/toaster/Toaster.d.ts +8 -15
- package/esm/components/ui/toaster/Toaster.d.ts.map +1 -1
- package/esm/components/ui/toaster/Toaster.js +19 -74
- package/esm/components/ui/toaster/Toaster.js.map +1 -1
- package/esm/components/ui/toolButton/ToolButton.styled.d.ts +3 -3
- package/esm/components/ui/tooltip/Tooltip.d.ts +30 -0
- package/esm/components/ui/tooltip/Tooltip.d.ts.map +1 -0
- package/esm/components/ui/tooltip/Tooltip.js +43 -0
- package/esm/components/ui/tooltip/Tooltip.js.map +1 -0
- package/esm/components/ui/tooltip/Tooltip.styled.d.ts +173 -0
- package/esm/components/ui/tooltip/Tooltip.styled.d.ts.map +1 -0
- package/esm/components/ui/tooltip/Tooltip.styled.js +28 -0
- package/esm/components/ui/tooltip/Tooltip.styled.js.map +1 -0
- package/esm/components/utils/Gap.d.ts +3 -3
- package/esm/components/utils/Spacer.d.ts +2 -2
- package/esm/index.d.ts +1 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -0
- package/esm/index.js.map +1 -1
- package/esm/theme.d.ts +86 -86
- package/package.json +22 -20
- package/patches/{@stitches+react+1.2.8.patch → @stitches__react@1.2.8.patch} +6 -6
- package/pnpm-workspace.yaml +3 -0
- package/src/bugfixes/ToastsFromModal.stories.tsx +59 -0
- package/src/components/form/input/Input.css.ts +52 -0
- package/src/components/form/input/Input.stories.tsx +32 -1
- package/src/components/form/input/Input.styled.ts +7 -1
- package/src/components/form/input/Input.tsx +67 -13
- package/src/components/form/textarea/TextArea.stories.tsx +25 -1
- package/src/components/form/textarea/TextArea.styled.ts +17 -3
- package/src/components/form/textarea/TextArea.tsx +76 -12
- package/src/components/ui/drawer/Drawer.stories.tsx +143 -59
- package/src/components/ui/drawer/Drawer.styled.ts +13 -0
- package/src/components/ui/drawer/Drawer.tsx +214 -20
- package/src/components/ui/modal/Modal.tsx +0 -1
- package/src/components/ui/modal/ModalButtons.stories.tsx +3 -3
- package/src/components/ui/toaster/Toaster.stories.tsx +160 -30
- package/src/components/ui/toaster/Toaster.tsx +28 -94
- package/src/components/ui/tooltip/Tooltip.stories.tsx +285 -0
- package/src/components/ui/tooltip/Tooltip.styled.ts +36 -0
- package/src/components/ui/tooltip/Tooltip.tsx +195 -0
- package/src/index.ts +1 -0
- package/storybook-static/assets/Action.stories-DBtNlWQo.js +1 -0
- package/storybook-static/assets/Button.stories-DFO8nsTN.js +1 -0
- package/storybook-static/assets/Card.stories-BoCt66U4.js +1 -0
- package/storybook-static/assets/Checkbox.stories-C58YeH4u.js +1 -0
- package/storybook-static/assets/Choice.stories-Cf7UbPxn.js +1 -0
- package/storybook-static/assets/Color-23OOGO2C-CELuW8GR.js +1 -0
- package/storybook-static/assets/ColorPicker.stories-Dc7-AuPQ.js +1 -0
- package/storybook-static/assets/CoveringLoader.stories-DrUQAhI6.js +1 -0
- package/storybook-static/assets/DocsRenderer-LL677BLK-BOcEjZ28.js +755 -0
- package/storybook-static/assets/Drawer.stories-D3_-TuT0.js +1 -0
- package/storybook-static/assets/EqualActions.stories-CwjZlkUA.js +1 -0
- package/storybook-static/assets/FullLoader.stories-DFAaVMfI.js +1 -0
- package/storybook-static/assets/Header.stories-BN7BuQx2.js +1 -0
- package/storybook-static/assets/Header.stories-CzPBNEkp.js +1 -0
- package/storybook-static/assets/HeaderIconAction.stories-Dm3Q-BVW.js +1 -0
- package/storybook-static/assets/Icon.stories-D1YeVBlB.js +1 -0
- package/storybook-static/assets/Input.stories-Cbj2X3kT.js +197 -0
- package/storybook-static/assets/Item.stories-CmjyxdgQ.js +1 -0
- package/storybook-static/assets/KeyValue.stories-CogaZP09.js +1 -0
- package/storybook-static/assets/Label.stories-B6pCT45X.js +1 -0
- package/storybook-static/assets/Label.stories-BR3gNHqM.js +1 -0
- package/storybook-static/assets/Line.stories-BJLer7gg.js +1 -0
- package/storybook-static/assets/List.stories-MSQY1Rdo.js +1 -0
- package/storybook-static/assets/Loader.stories-CbN84qNp.js +1 -0
- package/storybook-static/assets/Loading.stories-BOANGXsc.js +1 -0
- package/storybook-static/assets/Message.stories-_51K9ZDn.js +1 -0
- package/storybook-static/assets/Modal.stories-CixfvMuM.js +1 -0
- package/storybook-static/assets/ModalButtons.stories-DHHsnoGB.js +1 -0
- package/storybook-static/assets/Pad.stories-hrKerezi.js +1 -0
- package/storybook-static/assets/Pop.stories-BTlQGve1.js +1 -0
- package/storybook-static/assets/PopLoader.stories-CyskY4fX.js +1 -0
- package/storybook-static/assets/Progress.stories-BLMPF6Ju.js +1 -0
- package/storybook-static/assets/Section.stories-M-QRH2_i.js +1 -0
- package/storybook-static/assets/Select.stories-BJjJqLTa.js +1 -0
- package/storybook-static/assets/Selector.stories-BxHyFnYo.js +1 -0
- package/storybook-static/assets/Stats.stories-VB0pi5k5.js +1 -0
- package/storybook-static/assets/StickyHeader.stories-BnxgnjJW.js +3 -0
- package/storybook-static/assets/Table.stories-6F-WrDBs.js +1 -0
- package/storybook-static/assets/TextArea.stories-DqzHYgIv.js +1 -0
- package/storybook-static/assets/Toaster.stories-C0ktk0DW.js +1 -0
- package/storybook-static/assets/Toggle.stories-tBlD8SJi.js +1 -0
- package/storybook-static/assets/ToolButton.stories-0rGBGqAt.js +1 -0
- package/storybook-static/assets/Value.stories-CFT20m8r.js +1 -0
- package/storybook-static/assets/WithTooltip-65CFNBJE-CEiAC9o_.js +9 -0
- package/storybook-static/assets/formatter-EIJCOSYU-3FZOx6vn.js +1 -0
- package/storybook-static/assets/iframe-DvhcA1iZ.js +1244 -0
- package/storybook-static/assets/preload-helper-PPVm8Dsz.js +1 -0
- package/storybook-static/assets/react-18-oqx706Mo.js +1 -0
- package/storybook-static/assets/syntaxhighlighter-W7WJGI2T-D7f2o1Z3.js +6 -0
- package/storybook-static/favicon-wrapper.svg +46 -0
- package/storybook-static/favicon.svg +1 -0
- package/storybook-static/iframe.html +709 -0
- package/storybook-static/index.html +146 -0
- package/storybook-static/index.json +1 -0
- package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/project.json +1 -0
- package/storybook-static/sb-addons/docs-1/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/onboarding-2/manager-bundle.js +97 -0
- package/storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +630 -0
- package/storybook-static/sb-common-assets/favicon-wrapper.svg +46 -0
- package/storybook-static/sb-common-assets/favicon.svg +1 -0
- package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/sb-manager/globals-runtime.js +76749 -0
- package/storybook-static/sb-manager/globals.js +24 -0
- package/storybook-static/sb-manager/manager-stores.js +23 -0
- package/storybook-static/sb-manager/runtime.js +27463 -0
- package/storybook-static/vite-inject-mocker-entry.js +2 -0
- package/dist/components/ui/toaster/Notification.d.ts +0 -9
- package/dist/components/ui/toaster/Notification.d.ts.map +0 -1
- package/dist/components/ui/toaster/Notification.js.map +0 -1
- package/dist/components/ui/toaster/Toaster.styled.d.ts +0 -89
- package/dist/components/ui/toaster/Toaster.styled.d.ts.map +0 -1
- package/dist/components/ui/toaster/Toaster.styled.js +0 -39
- package/dist/components/ui/toaster/Toaster.styled.js.map +0 -1
- package/dist/components/ui/toaster/types.d.ts +0 -7
- package/dist/components/ui/toaster/types.d.ts.map +0 -1
- package/dist/components/ui/toaster/types.js +0 -3
- package/dist/components/ui/toaster/types.js.map +0 -1
- package/docs/classes/index.ToasterProvider.html +0 -120
- package/esm/components/form/Checkbox.stories.d.ts +0 -9
- package/esm/components/form/Checkbox.stories.d.ts.map +0 -1
- package/esm/components/form/Checkbox.stories.js +0 -80
- package/esm/components/form/Checkbox.stories.js.map +0 -1
- package/esm/components/form/ColorPicker.stories.d.ts +0 -10
- package/esm/components/form/ColorPicker.stories.d.ts.map +0 -1
- package/esm/components/form/ColorPicker.stories.js +0 -75
- package/esm/components/form/ColorPicker.stories.js.map +0 -1
- package/esm/components/form/Label.stories.d.ts +0 -11
- package/esm/components/form/Label.stories.d.ts.map +0 -1
- package/esm/components/form/Label.stories.js +0 -43
- package/esm/components/form/Label.stories.js.map +0 -1
- package/esm/components/form/Select.stories.d.ts +0 -8
- package/esm/components/form/Select.stories.d.ts.map +0 -1
- package/esm/components/form/Select.stories.js +0 -24
- package/esm/components/form/Select.stories.js.map +0 -1
- package/esm/components/form/Toggle.stories.d.ts +0 -14
- package/esm/components/form/Toggle.stories.d.ts.map +0 -1
- package/esm/components/form/Toggle.stories.js +0 -76
- package/esm/components/form/Toggle.stories.js.map +0 -1
- package/esm/components/form/choice/Choice.stories.d.ts +0 -10
- package/esm/components/form/choice/Choice.stories.d.ts.map +0 -1
- package/esm/components/form/choice/Choice.stories.js +0 -80
- package/esm/components/form/choice/Choice.stories.js.map +0 -1
- package/esm/components/form/input/Input.stories.d.ts +0 -10
- package/esm/components/form/input/Input.stories.d.ts.map +0 -1
- package/esm/components/form/input/Input.stories.js +0 -54
- package/esm/components/form/input/Input.stories.js.map +0 -1
- package/esm/components/form/textarea/TextArea.stories.d.ts +0 -8
- package/esm/components/form/textarea/TextArea.stories.d.ts.map +0 -1
- package/esm/components/form/textarea/TextArea.stories.js +0 -19
- package/esm/components/form/textarea/TextArea.stories.js.map +0 -1
- package/esm/components/icons/Icon.stories.d.ts +0 -10
- package/esm/components/icons/Icon.stories.d.ts.map +0 -1
- package/esm/components/icons/Icon.stories.js +0 -49
- package/esm/components/icons/Icon.stories.js.map +0 -1
- package/esm/components/layout/card/Card.stories.d.ts +0 -11
- package/esm/components/layout/card/Card.stories.d.ts.map +0 -1
- package/esm/components/layout/card/Card.stories.js +0 -39
- package/esm/components/layout/card/Card.stories.js.map +0 -1
- package/esm/components/layout/header/Header.stories.d.ts +0 -11
- package/esm/components/layout/header/Header.stories.d.ts.map +0 -1
- package/esm/components/layout/header/Header.stories.js +0 -56
- package/esm/components/layout/header/Header.stories.js.map +0 -1
- package/esm/components/layout/header/HeaderIconAction.stories.d.ts +0 -10
- package/esm/components/layout/header/HeaderIconAction.stories.d.ts.map +0 -1
- package/esm/components/layout/header/HeaderIconAction.stories.js +0 -43
- package/esm/components/layout/header/HeaderIconAction.stories.js.map +0 -1
- package/esm/components/layout/header/StickyHeader.stories.d.ts +0 -9
- package/esm/components/layout/header/StickyHeader.stories.d.ts.map +0 -1
- package/esm/components/layout/header/StickyHeader.stories.js +0 -60
- package/esm/components/layout/header/StickyHeader.stories.js.map +0 -1
- package/esm/components/layout/list/Header.stories.d.ts +0 -8
- package/esm/components/layout/list/Header.stories.d.ts.map +0 -1
- package/esm/components/layout/list/Header.stories.js +0 -27
- package/esm/components/layout/list/Header.stories.js.map +0 -1
- package/esm/components/layout/list/Item.stories.d.ts +0 -11
- package/esm/components/layout/list/Item.stories.d.ts.map +0 -1
- package/esm/components/layout/list/Item.stories.js +0 -98
- package/esm/components/layout/list/Item.stories.js.map +0 -1
- package/esm/components/layout/list/Label.stories.d.ts +0 -8
- package/esm/components/layout/list/Label.stories.d.ts.map +0 -1
- package/esm/components/layout/list/Label.stories.js +0 -29
- package/esm/components/layout/list/Label.stories.js.map +0 -1
- package/esm/components/layout/list/List.stories.d.ts +0 -9
- package/esm/components/layout/list/List.stories.d.ts.map +0 -1
- package/esm/components/layout/list/List.stories.js +0 -46
- package/esm/components/layout/list/List.stories.js.map +0 -1
- package/esm/components/layout/list/Value.stories.d.ts +0 -8
- package/esm/components/layout/list/Value.stories.d.ts.map +0 -1
- package/esm/components/layout/list/Value.stories.js +0 -23
- package/esm/components/layout/list/Value.stories.js.map +0 -1
- package/esm/components/layout/section/Section.stories.d.ts +0 -8
- package/esm/components/layout/section/Section.stories.d.ts.map +0 -1
- package/esm/components/layout/section/Section.stories.js +0 -31
- package/esm/components/layout/section/Section.stories.js.map +0 -1
- package/esm/components/layout/table/Table.stories.d.ts +0 -8
- package/esm/components/layout/table/Table.stories.d.ts.map +0 -1
- package/esm/components/layout/table/Table.stories.js +0 -49
- package/esm/components/layout/table/Table.stories.js.map +0 -1
- package/esm/components/ui/action/Action.stories.d.ts +0 -11
- package/esm/components/ui/action/Action.stories.d.ts.map +0 -1
- package/esm/components/ui/action/Action.stories.js +0 -58
- package/esm/components/ui/action/Action.stories.js.map +0 -1
- package/esm/components/ui/action/EqualActions.stories.d.ts +0 -10
- package/esm/components/ui/action/EqualActions.stories.d.ts.map +0 -1
- package/esm/components/ui/action/EqualActions.stories.js +0 -38
- package/esm/components/ui/action/EqualActions.stories.js.map +0 -1
- package/esm/components/ui/button/Button.stories.d.ts +0 -9
- package/esm/components/ui/button/Button.stories.d.ts.map +0 -1
- package/esm/components/ui/button/Button.stories.js +0 -35
- package/esm/components/ui/button/Button.stories.js.map +0 -1
- package/esm/components/ui/directionPad/Pad.stories.d.ts +0 -10
- package/esm/components/ui/directionPad/Pad.stories.d.ts.map +0 -1
- package/esm/components/ui/directionPad/Pad.stories.js +0 -79
- package/esm/components/ui/directionPad/Pad.stories.js.map +0 -1
- package/esm/components/ui/drawer/Drawer.stories.d.ts +0 -11
- package/esm/components/ui/drawer/Drawer.stories.d.ts.map +0 -1
- package/esm/components/ui/drawer/Drawer.stories.js +0 -102
- package/esm/components/ui/drawer/Drawer.stories.js.map +0 -1
- package/esm/components/ui/keyValue/KeyValue.stories.d.ts +0 -11
- package/esm/components/ui/keyValue/KeyValue.stories.d.ts.map +0 -1
- package/esm/components/ui/keyValue/KeyValue.stories.js +0 -98
- package/esm/components/ui/keyValue/KeyValue.stories.js.map +0 -1
- package/esm/components/ui/line/Line.stories.d.ts +0 -8
- package/esm/components/ui/line/Line.stories.d.ts.map +0 -1
- package/esm/components/ui/line/Line.stories.js +0 -27
- package/esm/components/ui/line/Line.stories.js.map +0 -1
- package/esm/components/ui/loader/CoveringLoader.stories.d.ts +0 -8
- package/esm/components/ui/loader/CoveringLoader.stories.d.ts.map +0 -1
- package/esm/components/ui/loader/CoveringLoader.stories.js +0 -50
- package/esm/components/ui/loader/CoveringLoader.stories.js.map +0 -1
- package/esm/components/ui/loader/FullLoader.stories.d.ts +0 -8
- package/esm/components/ui/loader/FullLoader.stories.d.ts.map +0 -1
- package/esm/components/ui/loader/FullLoader.stories.js +0 -19
- package/esm/components/ui/loader/FullLoader.stories.js.map +0 -1
- package/esm/components/ui/loader/Loader.stories.d.ts +0 -8
- package/esm/components/ui/loader/Loader.stories.d.ts.map +0 -1
- package/esm/components/ui/loader/Loader.stories.js +0 -23
- package/esm/components/ui/loader/Loader.stories.js.map +0 -1
- package/esm/components/ui/loader/Loading.stories.d.ts +0 -8
- package/esm/components/ui/loader/Loading.stories.d.ts.map +0 -1
- package/esm/components/ui/loader/Loading.stories.js +0 -32
- package/esm/components/ui/loader/Loading.stories.js.map +0 -1
- package/esm/components/ui/loader/PopLoader.stories.d.ts +0 -8
- package/esm/components/ui/loader/PopLoader.stories.d.ts.map +0 -1
- package/esm/components/ui/loader/PopLoader.stories.js +0 -24
- package/esm/components/ui/loader/PopLoader.stories.js.map +0 -1
- package/esm/components/ui/message/Message.stories.d.ts +0 -9
- package/esm/components/ui/message/Message.stories.d.ts.map +0 -1
- package/esm/components/ui/message/Message.stories.js +0 -43
- package/esm/components/ui/message/Message.stories.js.map +0 -1
- package/esm/components/ui/modal/Modal.stories.d.ts +0 -10
- package/esm/components/ui/modal/Modal.stories.d.ts.map +0 -1
- package/esm/components/ui/modal/Modal.stories.js +0 -84
- package/esm/components/ui/modal/Modal.stories.js.map +0 -1
- package/esm/components/ui/modal/ModalButtons.stories.d.ts +0 -8
- package/esm/components/ui/modal/ModalButtons.stories.d.ts.map +0 -1
- package/esm/components/ui/modal/ModalButtons.stories.js +0 -19
- package/esm/components/ui/modal/ModalButtons.stories.js.map +0 -1
- package/esm/components/ui/pop/Pop.stories.d.ts +0 -8
- package/esm/components/ui/pop/Pop.stories.d.ts.map +0 -1
- package/esm/components/ui/pop/Pop.stories.js +0 -65
- package/esm/components/ui/pop/Pop.stories.js.map +0 -1
- package/esm/components/ui/progress/Progress.stories.d.ts +0 -9
- package/esm/components/ui/progress/Progress.stories.d.ts.map +0 -1
- package/esm/components/ui/progress/Progress.stories.js +0 -29
- package/esm/components/ui/progress/Progress.stories.js.map +0 -1
- package/esm/components/ui/stats/Stats.stories.d.ts +0 -11
- package/esm/components/ui/stats/Stats.stories.d.ts.map +0 -1
- package/esm/components/ui/stats/Stats.stories.js +0 -104
- package/esm/components/ui/stats/Stats.stories.js.map +0 -1
- package/esm/components/ui/tabs/Selector.stories.d.ts +0 -12
- package/esm/components/ui/tabs/Selector.stories.d.ts.map +0 -1
- package/esm/components/ui/tabs/Selector.stories.js +0 -110
- package/esm/components/ui/tabs/Selector.stories.js.map +0 -1
- package/esm/components/ui/toaster/Notification.d.ts +0 -9
- package/esm/components/ui/toaster/Notification.d.ts.map +0 -1
- package/esm/components/ui/toaster/Notification.js +0 -17
- package/esm/components/ui/toaster/Notification.js.map +0 -1
- package/esm/components/ui/toaster/Toaster.stories.d.ts +0 -7
- package/esm/components/ui/toaster/Toaster.stories.d.ts.map +0 -1
- package/esm/components/ui/toaster/Toaster.stories.js +0 -39
- package/esm/components/ui/toaster/Toaster.stories.js.map +0 -1
- package/esm/components/ui/toaster/Toaster.styled.d.ts +0 -89
- package/esm/components/ui/toaster/Toaster.styled.d.ts.map +0 -1
- package/esm/components/ui/toaster/Toaster.styled.js +0 -36
- package/esm/components/ui/toaster/Toaster.styled.js.map +0 -1
- package/esm/components/ui/toaster/types.d.ts +0 -7
- package/esm/components/ui/toaster/types.d.ts.map +0 -1
- package/esm/components/ui/toaster/types.js +0 -2
- package/esm/components/ui/toaster/types.js.map +0 -1
- package/esm/components/ui/toolButton/ToolButton.stories.d.ts +0 -8
- package/esm/components/ui/toolButton/ToolButton.stories.d.ts.map +0 -1
- package/esm/components/ui/toolButton/ToolButton.stories.js +0 -29
- package/esm/components/ui/toolButton/ToolButton.stories.js.map +0 -1
- package/src/components/ui/toaster/Notification.tsx +0 -39
- package/src/components/ui/toaster/Toaster.styled.ts +0 -42
- package/src/components/ui/toaster/types.ts +0 -9
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const StyledTextAreaWrapper: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {
|
|
2
2
|
disabled?: boolean | "true";
|
|
3
3
|
readOnly?: boolean | "true";
|
|
4
4
|
focused?: boolean | "true";
|
|
5
5
|
error?: boolean | "true";
|
|
6
|
-
}, {}, import("
|
|
6
|
+
}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
7
7
|
colors: {
|
|
8
8
|
background: "white";
|
|
9
9
|
mainColor: "#008ad2";
|
|
@@ -66,7 +66,7 @@ declare const StyledTextArea: import("@stitches/react/types/styled-component").S
|
|
|
66
66
|
tableStripedBg: "#fafafa";
|
|
67
67
|
toolButtonText: "#666e80";
|
|
68
68
|
};
|
|
69
|
-
}, import("
|
|
69
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
70
70
|
mx: (value: string | number) => {
|
|
71
71
|
marginLeft: string | number;
|
|
72
72
|
marginRight: string | number;
|
|
@@ -88,5 +88,178 @@ declare const StyledTextArea: import("@stitches/react/types/styled-component").S
|
|
|
88
88
|
height: string | number;
|
|
89
89
|
};
|
|
90
90
|
}>>;
|
|
91
|
-
|
|
91
|
+
declare const StyledTextArea: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"textarea", {}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
92
|
+
colors: {
|
|
93
|
+
background: "white";
|
|
94
|
+
mainColor: "#008ad2";
|
|
95
|
+
mainColorAlt: "#006AA9";
|
|
96
|
+
activeBg: "#e7e7e7";
|
|
97
|
+
inactiveBg: "#d3d3de";
|
|
98
|
+
inactiveDarkBg: "#999";
|
|
99
|
+
toggleHandleBg: "#e0e0e0";
|
|
100
|
+
toggleHandleBorder: "#cdcdcd";
|
|
101
|
+
toggleBgDisabled: "#f0f0f0";
|
|
102
|
+
toggleHandleBorderDisabled: "#c29f7d";
|
|
103
|
+
toggleHandleBgDisabled: "#deae84";
|
|
104
|
+
icon: "#636363";
|
|
105
|
+
border: "#d5d5d5";
|
|
106
|
+
buttonBorder: "#bababa";
|
|
107
|
+
headerBorder: "#c8c8c9";
|
|
108
|
+
headerBg: "#efeff0";
|
|
109
|
+
headerText: "#484848";
|
|
110
|
+
text: "#323232";
|
|
111
|
+
text2: "#181818";
|
|
112
|
+
text3: "#000000";
|
|
113
|
+
sub: "#959595";
|
|
114
|
+
popText: "#666";
|
|
115
|
+
toolbarBorder: "#ababab";
|
|
116
|
+
toolbarBg: "#f8f8f8";
|
|
117
|
+
modalBg: "#f7f7f7";
|
|
118
|
+
modalButtonBg: "#f8f8f8";
|
|
119
|
+
modalButtonBorder: "#c2c2c2";
|
|
120
|
+
inputDisabledBg: "#f3f3f3";
|
|
121
|
+
inputDisabledText: "#959595";
|
|
122
|
+
choiceBg: "#ffffff";
|
|
123
|
+
choiceText: "#999999";
|
|
124
|
+
choiceActiveBg: "#f3f3f3";
|
|
125
|
+
choiceActiveText: "#313131";
|
|
126
|
+
choiceBorder: "#cfcfcf";
|
|
127
|
+
selectorText: "#606060";
|
|
128
|
+
selectorActive: "#008ad2";
|
|
129
|
+
blue1: "#038bf4";
|
|
130
|
+
blue2: "#b7d6f5";
|
|
131
|
+
blue3: "#dbe6ff";
|
|
132
|
+
blue4: "#33b4ff";
|
|
133
|
+
blue5: "#30a2e6";
|
|
134
|
+
orange1: "#ff7200";
|
|
135
|
+
orange1Darker: "#cc5b00";
|
|
136
|
+
purple1: "#7357e8";
|
|
137
|
+
green1: "#3ec234";
|
|
138
|
+
green1Darker: "#38af2f";
|
|
139
|
+
pink1: "#ff388f";
|
|
140
|
+
red1: "#ea2700";
|
|
141
|
+
yellow1: "#ffde9d";
|
|
142
|
+
yellow2: "#e4a429";
|
|
143
|
+
yellow3: "#fff5db";
|
|
144
|
+
pinky1: "#f5c0b7";
|
|
145
|
+
pinky2: "#e07b67";
|
|
146
|
+
pinky3: "#ffe1db";
|
|
147
|
+
grey1: "#737373";
|
|
148
|
+
focusColor: "#dcaf00";
|
|
149
|
+
scrollbarsThumb: "#737373";
|
|
150
|
+
scrollbarsBg: "transparent";
|
|
151
|
+
tableStripedBg: "#fafafa";
|
|
152
|
+
toolButtonText: "#666e80";
|
|
153
|
+
};
|
|
154
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
155
|
+
mx: (value: string | number) => {
|
|
156
|
+
marginLeft: string | number;
|
|
157
|
+
marginRight: string | number;
|
|
158
|
+
};
|
|
159
|
+
my: (value: string | number) => {
|
|
160
|
+
marginTop: string | number;
|
|
161
|
+
marginBottom: string | number;
|
|
162
|
+
};
|
|
163
|
+
px: (value: string | number) => {
|
|
164
|
+
paddingLeft: string | number;
|
|
165
|
+
paddingRight: string | number;
|
|
166
|
+
};
|
|
167
|
+
py: (value: string | number) => {
|
|
168
|
+
paddingTop: string | number;
|
|
169
|
+
paddingBottom: string | number;
|
|
170
|
+
};
|
|
171
|
+
size: (value: string | number) => {
|
|
172
|
+
width: string | number;
|
|
173
|
+
height: string | number;
|
|
174
|
+
};
|
|
175
|
+
}>>;
|
|
176
|
+
declare const StyledLabel: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"label", {
|
|
177
|
+
floating?: boolean | "true";
|
|
178
|
+
error?: boolean | "true";
|
|
179
|
+
}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
180
|
+
colors: {
|
|
181
|
+
background: "white";
|
|
182
|
+
mainColor: "#008ad2";
|
|
183
|
+
mainColorAlt: "#006AA9";
|
|
184
|
+
activeBg: "#e7e7e7";
|
|
185
|
+
inactiveBg: "#d3d3de";
|
|
186
|
+
inactiveDarkBg: "#999";
|
|
187
|
+
toggleHandleBg: "#e0e0e0";
|
|
188
|
+
toggleHandleBorder: "#cdcdcd";
|
|
189
|
+
toggleBgDisabled: "#f0f0f0";
|
|
190
|
+
toggleHandleBorderDisabled: "#c29f7d";
|
|
191
|
+
toggleHandleBgDisabled: "#deae84";
|
|
192
|
+
icon: "#636363";
|
|
193
|
+
border: "#d5d5d5";
|
|
194
|
+
buttonBorder: "#bababa";
|
|
195
|
+
headerBorder: "#c8c8c9";
|
|
196
|
+
headerBg: "#efeff0";
|
|
197
|
+
headerText: "#484848";
|
|
198
|
+
text: "#323232";
|
|
199
|
+
text2: "#181818";
|
|
200
|
+
text3: "#000000";
|
|
201
|
+
sub: "#959595";
|
|
202
|
+
popText: "#666";
|
|
203
|
+
toolbarBorder: "#ababab";
|
|
204
|
+
toolbarBg: "#f8f8f8";
|
|
205
|
+
modalBg: "#f7f7f7";
|
|
206
|
+
modalButtonBg: "#f8f8f8";
|
|
207
|
+
modalButtonBorder: "#c2c2c2";
|
|
208
|
+
inputDisabledBg: "#f3f3f3";
|
|
209
|
+
inputDisabledText: "#959595";
|
|
210
|
+
choiceBg: "#ffffff";
|
|
211
|
+
choiceText: "#999999";
|
|
212
|
+
choiceActiveBg: "#f3f3f3";
|
|
213
|
+
choiceActiveText: "#313131";
|
|
214
|
+
choiceBorder: "#cfcfcf";
|
|
215
|
+
selectorText: "#606060";
|
|
216
|
+
selectorActive: "#008ad2";
|
|
217
|
+
blue1: "#038bf4";
|
|
218
|
+
blue2: "#b7d6f5";
|
|
219
|
+
blue3: "#dbe6ff";
|
|
220
|
+
blue4: "#33b4ff";
|
|
221
|
+
blue5: "#30a2e6";
|
|
222
|
+
orange1: "#ff7200";
|
|
223
|
+
orange1Darker: "#cc5b00";
|
|
224
|
+
purple1: "#7357e8";
|
|
225
|
+
green1: "#3ec234";
|
|
226
|
+
green1Darker: "#38af2f";
|
|
227
|
+
pink1: "#ff388f";
|
|
228
|
+
red1: "#ea2700";
|
|
229
|
+
yellow1: "#ffde9d";
|
|
230
|
+
yellow2: "#e4a429";
|
|
231
|
+
yellow3: "#fff5db";
|
|
232
|
+
pinky1: "#f5c0b7";
|
|
233
|
+
pinky2: "#e07b67";
|
|
234
|
+
pinky3: "#ffe1db";
|
|
235
|
+
grey1: "#737373";
|
|
236
|
+
focusColor: "#dcaf00";
|
|
237
|
+
scrollbarsThumb: "#737373";
|
|
238
|
+
scrollbarsBg: "transparent";
|
|
239
|
+
tableStripedBg: "#fafafa";
|
|
240
|
+
toolButtonText: "#666e80";
|
|
241
|
+
};
|
|
242
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
243
|
+
mx: (value: string | number) => {
|
|
244
|
+
marginLeft: string | number;
|
|
245
|
+
marginRight: string | number;
|
|
246
|
+
};
|
|
247
|
+
my: (value: string | number) => {
|
|
248
|
+
marginTop: string | number;
|
|
249
|
+
marginBottom: string | number;
|
|
250
|
+
};
|
|
251
|
+
px: (value: string | number) => {
|
|
252
|
+
paddingLeft: string | number;
|
|
253
|
+
paddingRight: string | number;
|
|
254
|
+
};
|
|
255
|
+
py: (value: string | number) => {
|
|
256
|
+
paddingTop: string | number;
|
|
257
|
+
paddingBottom: string | number;
|
|
258
|
+
};
|
|
259
|
+
size: (value: string | number) => {
|
|
260
|
+
width: string | number;
|
|
261
|
+
height: string | number;
|
|
262
|
+
};
|
|
263
|
+
}>>;
|
|
264
|
+
export { StyledTextAreaWrapper, StyledTextArea, StyledLabel, };
|
|
92
265
|
//# sourceMappingURL=TextArea.styled.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextArea.styled.d.ts","sourceRoot":"","sources":["../../../../src/components/form/textarea/TextArea.styled.ts"],"names":[],"mappings":"AAIA,QAAA,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"TextArea.styled.d.ts","sourceRoot":"","sources":["../../../../src/components/form/textarea/TextArea.styled.ts"],"names":[],"mappings":"AAIA,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAIzB,CAAC;AAEH,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GASlB,CAAC;AAEH,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAIf,CAAC;AAEH,OAAO,EACH,qBAAqB,EACrB,cAAc,EACd,WAAW,GACd,CAAC"}
|
|
@@ -1,14 +1,24 @@
|
|
|
1
1
|
import { miuiScrollbars } from "../../../scrollbars.css.js";
|
|
2
|
-
import { dimensionsPxToRem, styled } from "../../../theme.js";
|
|
3
|
-
import { input, wrapper } from "../input/Input.css.js";
|
|
2
|
+
import { dimensionsPxToRem, fontPxToRem, styled } from "../../../theme.js";
|
|
3
|
+
import { input, label as inputLabel, wrapper } from "../input/Input.css.js";
|
|
4
|
+
const StyledTextAreaWrapper = styled("div", {
|
|
5
|
+
...wrapper,
|
|
6
|
+
display: "block",
|
|
7
|
+
padding: 0,
|
|
8
|
+
});
|
|
4
9
|
const StyledTextArea = styled("textarea", {
|
|
5
10
|
...miuiScrollbars,
|
|
6
11
|
...input,
|
|
7
|
-
|
|
12
|
+
backgroundColor: "transparent",
|
|
8
13
|
padding: `1.2em ${dimensionsPxToRem(36)}`,
|
|
9
14
|
height: "unset",
|
|
10
15
|
resize: "vertical",
|
|
11
16
|
minHeight: dimensionsPxToRem(103),
|
|
12
17
|
});
|
|
13
|
-
|
|
18
|
+
const StyledLabel = styled("label", inputLabel, {
|
|
19
|
+
top: `calc(${fontPxToRem(25)} * 1.7)`,
|
|
20
|
+
left: dimensionsPxToRem(36),
|
|
21
|
+
transform: "translateY(-50%)",
|
|
22
|
+
});
|
|
23
|
+
export { StyledTextAreaWrapper, StyledTextArea, StyledLabel, };
|
|
14
24
|
//# sourceMappingURL=TextArea.styled.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextArea.styled.js","sourceRoot":"","sources":["../../../../src/components/form/textarea/TextArea.styled.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"TextArea.styled.js","sourceRoot":"","sources":["../../../../src/components/form/textarea/TextArea.styled.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxE,OAAO,EAAE,KAAK,EAAE,KAAK,IAAI,UAAU,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAEzE,MAAM,qBAAqB,GAAG,MAAM,CAAC,KAAK,EAAE;IACxC,GAAG,OAAO;IACV,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,CAAC;CACb,CAAC,CAAC;AAEH,MAAM,cAAc,GAAG,MAAM,CAAC,UAAU,EAAE;IACtC,GAAG,cAAc;IACjB,GAAG,KAAK;IAER,eAAe,EAAE,aAAa;IAC9B,OAAO,EAAE,SAAS,iBAAiB,CAAC,EAAE,CAAC,EAAE;IACzC,MAAM,EAAE,OAAO;IACf,MAAM,EAAE,UAAU;IAClB,SAAS,EAAE,iBAAiB,CAAC,GAAG,CAAC;CACpC,CAAC,CAAC;AAEH,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,EAAE,UAAU,EAAE;IAC5C,GAAG,EAAE,QAAQ,WAAW,CAAC,EAAE,CAAC,SAAS;IACrC,IAAI,EAAE,iBAAiB,CAAC,EAAE,CAAC;IAC3B,SAAS,EAAE,kBAAkB;CAChC,CAAC,CAAC;AAEH,OAAO,EACH,qBAAqB,EACrB,cAAc,EACd,WAAW,GACd,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
declare const StyledCard: import("
|
|
1
|
+
declare const StyledCard: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {
|
|
2
2
|
variant?: "margin";
|
|
3
|
-
}, {}, import("
|
|
3
|
+
}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
4
4
|
colors: {
|
|
5
5
|
background: "white";
|
|
6
6
|
mainColor: "#008ad2";
|
|
@@ -63,7 +63,7 @@ declare const StyledCard: import("@stitches/react/types/styled-component").Style
|
|
|
63
63
|
tableStripedBg: "#fafafa";
|
|
64
64
|
toolButtonText: "#666e80";
|
|
65
65
|
};
|
|
66
|
-
}, import("
|
|
66
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
67
67
|
mx: (value: string | number) => {
|
|
68
68
|
marginLeft: string | number;
|
|
69
69
|
marginRight: string | number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const Contents: import("
|
|
1
|
+
declare const Contents: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
2
2
|
colors: {
|
|
3
3
|
background: "white";
|
|
4
4
|
mainColor: "#008ad2";
|
|
@@ -61,7 +61,7 @@ declare const Contents: import("@stitches/react/types/styled-component").StyledC
|
|
|
61
61
|
tableStripedBg: "#fafafa";
|
|
62
62
|
toolButtonText: "#666e80";
|
|
63
63
|
};
|
|
64
|
-
}, import("
|
|
64
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
65
65
|
mx: (value: string | number) => {
|
|
66
66
|
marginLeft: string | number;
|
|
67
67
|
marginRight: string | number;
|
|
@@ -83,7 +83,7 @@ declare const Contents: import("@stitches/react/types/styled-component").StyledC
|
|
|
83
83
|
height: string | number;
|
|
84
84
|
};
|
|
85
85
|
}>>;
|
|
86
|
-
declare const Before: import("
|
|
86
|
+
declare const Before: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
87
87
|
colors: {
|
|
88
88
|
background: "white";
|
|
89
89
|
mainColor: "#008ad2";
|
|
@@ -146,7 +146,7 @@ declare const Before: import("@stitches/react/types/styled-component").StyledCom
|
|
|
146
146
|
tableStripedBg: "#fafafa";
|
|
147
147
|
toolButtonText: "#666e80";
|
|
148
148
|
};
|
|
149
|
-
}, import("
|
|
149
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
150
150
|
mx: (value: string | number) => {
|
|
151
151
|
marginLeft: string | number;
|
|
152
152
|
marginRight: string | number;
|
|
@@ -168,7 +168,7 @@ declare const Before: import("@stitches/react/types/styled-component").StyledCom
|
|
|
168
168
|
height: string | number;
|
|
169
169
|
};
|
|
170
170
|
}>>;
|
|
171
|
-
declare const After: import("
|
|
171
|
+
declare const After: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
172
172
|
colors: {
|
|
173
173
|
background: "white";
|
|
174
174
|
mainColor: "#008ad2";
|
|
@@ -231,7 +231,7 @@ declare const After: import("@stitches/react/types/styled-component").StyledComp
|
|
|
231
231
|
tableStripedBg: "#fafafa";
|
|
232
232
|
toolButtonText: "#666e80";
|
|
233
233
|
};
|
|
234
|
-
}, import("
|
|
234
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
235
235
|
mx: (value: string | number) => {
|
|
236
236
|
marginLeft: string | number;
|
|
237
237
|
marginRight: string | number;
|
|
@@ -253,11 +253,11 @@ declare const After: import("@stitches/react/types/styled-component").StyledComp
|
|
|
253
253
|
height: string | number;
|
|
254
254
|
};
|
|
255
255
|
}>>;
|
|
256
|
-
declare const StyledHeader: import("
|
|
256
|
+
declare const StyledHeader: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {
|
|
257
257
|
variant?: "toolbar" | "colored";
|
|
258
258
|
position?: "bottom" | "left" | "right" | "top";
|
|
259
259
|
center?: boolean | "true";
|
|
260
|
-
}, {}, import("
|
|
260
|
+
}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
261
261
|
colors: {
|
|
262
262
|
background: "white";
|
|
263
263
|
mainColor: "#008ad2";
|
|
@@ -320,7 +320,7 @@ declare const StyledHeader: import("@stitches/react/types/styled-component").Sty
|
|
|
320
320
|
tableStripedBg: "#fafafa";
|
|
321
321
|
toolButtonText: "#666e80";
|
|
322
322
|
};
|
|
323
|
-
}, import("
|
|
323
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
324
324
|
mx: (value: string | number) => {
|
|
325
325
|
marginLeft: string | number;
|
|
326
326
|
marginRight: string | number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const sharedStyles: import("
|
|
1
|
+
declare const sharedStyles: import("../../../../node_modules/@stitches/react/types/styled-component").CssComponent<never, {}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
2
2
|
colors: {
|
|
3
3
|
background: "white";
|
|
4
4
|
mainColor: "#008ad2";
|
|
@@ -61,7 +61,7 @@ declare const sharedStyles: import("@stitches/react/types/styled-component").Css
|
|
|
61
61
|
tableStripedBg: "#fafafa";
|
|
62
62
|
toolButtonText: "#666e80";
|
|
63
63
|
};
|
|
64
|
-
}, import("
|
|
64
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
65
65
|
mx: (value: string | number) => {
|
|
66
66
|
marginLeft: string | number;
|
|
67
67
|
marginRight: string | number;
|
|
@@ -83,7 +83,7 @@ declare const sharedStyles: import("@stitches/react/types/styled-component").Css
|
|
|
83
83
|
height: string | number;
|
|
84
84
|
};
|
|
85
85
|
}>>;
|
|
86
|
-
declare const Btn: import("
|
|
86
|
+
declare const Btn: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"button", {}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
87
87
|
colors: {
|
|
88
88
|
background: "white";
|
|
89
89
|
mainColor: "#008ad2";
|
|
@@ -146,7 +146,7 @@ declare const Btn: import("@stitches/react/types/styled-component").StyledCompon
|
|
|
146
146
|
tableStripedBg: "#fafafa";
|
|
147
147
|
toolButtonText: "#666e80";
|
|
148
148
|
};
|
|
149
|
-
}, import("
|
|
149
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
150
150
|
mx: (value: string | number) => {
|
|
151
151
|
marginLeft: string | number;
|
|
152
152
|
marginRight: string | number;
|
|
@@ -168,7 +168,7 @@ declare const Btn: import("@stitches/react/types/styled-component").StyledCompon
|
|
|
168
168
|
height: string | number;
|
|
169
169
|
};
|
|
170
170
|
}>>;
|
|
171
|
-
declare const A: import("
|
|
171
|
+
declare const A: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"a", {}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
172
172
|
colors: {
|
|
173
173
|
background: "white";
|
|
174
174
|
mainColor: "#008ad2";
|
|
@@ -231,7 +231,7 @@ declare const A: import("@stitches/react/types/styled-component").StyledComponen
|
|
|
231
231
|
tableStripedBg: "#fafafa";
|
|
232
232
|
toolButtonText: "#666e80";
|
|
233
233
|
};
|
|
234
|
-
}, import("
|
|
234
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
235
235
|
mx: (value: string | number) => {
|
|
236
236
|
marginLeft: string | number;
|
|
237
237
|
marginRight: string | number;
|
|
@@ -253,7 +253,7 @@ declare const A: import("@stitches/react/types/styled-component").StyledComponen
|
|
|
253
253
|
height: string | number;
|
|
254
254
|
};
|
|
255
255
|
}>>;
|
|
256
|
-
declare const StyledIcon: import("
|
|
256
|
+
declare const StyledIcon: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<import("../../icons/Icon").IconProps & import("react").RefAttributes<SVGSVGElement>>, {}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
257
257
|
colors: {
|
|
258
258
|
background: "white";
|
|
259
259
|
mainColor: "#008ad2";
|
|
@@ -316,7 +316,7 @@ declare const StyledIcon: import("@stitches/react/types/styled-component").Style
|
|
|
316
316
|
tableStripedBg: "#fafafa";
|
|
317
317
|
toolButtonText: "#666e80";
|
|
318
318
|
};
|
|
319
|
-
}, import("
|
|
319
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
320
320
|
mx: (value: string | number) => {
|
|
321
321
|
marginLeft: string | number;
|
|
322
322
|
marginRight: string | number;
|
|
@@ -7,9 +7,9 @@ interface Props {
|
|
|
7
7
|
}
|
|
8
8
|
declare const StickyHeader: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>> & {
|
|
9
9
|
displayName: string;
|
|
10
|
-
Content: import("
|
|
10
|
+
Content: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {
|
|
11
11
|
position?: "bottom" | "left" | "right" | "top";
|
|
12
|
-
}, {}, import("
|
|
12
|
+
}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
13
13
|
colors: {
|
|
14
14
|
background: "white";
|
|
15
15
|
mainColor: "#008ad2";
|
|
@@ -72,7 +72,7 @@ declare const StickyHeader: React.ForwardRefExoticComponent<Props & React.RefAtt
|
|
|
72
72
|
tableStripedBg: "#fafafa";
|
|
73
73
|
toolButtonText: "#666e80";
|
|
74
74
|
};
|
|
75
|
-
}, import("
|
|
75
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
76
76
|
mx: (value: string | number) => {
|
|
77
77
|
marginLeft: string | number;
|
|
78
78
|
marginRight: string | number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
declare const StyledStickyHeader: import("
|
|
1
|
+
declare const StyledStickyHeader: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {
|
|
2
2
|
position?: "bottom" | "left" | "right" | "top";
|
|
3
|
-
}, {}, import("
|
|
3
|
+
}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
4
4
|
colors: {
|
|
5
5
|
background: "white";
|
|
6
6
|
mainColor: "#008ad2";
|
|
@@ -63,7 +63,7 @@ declare const StyledStickyHeader: import("@stitches/react/types/styled-component
|
|
|
63
63
|
tableStripedBg: "#fafafa";
|
|
64
64
|
toolButtonText: "#666e80";
|
|
65
65
|
};
|
|
66
|
-
}, import("
|
|
66
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
67
67
|
mx: (value: string | number) => {
|
|
68
68
|
marginLeft: string | number;
|
|
69
69
|
marginRight: string | number;
|
|
@@ -85,9 +85,9 @@ declare const StyledStickyHeader: import("@stitches/react/types/styled-component
|
|
|
85
85
|
height: string | number;
|
|
86
86
|
};
|
|
87
87
|
}>>;
|
|
88
|
-
declare const Content: import("
|
|
88
|
+
declare const Content: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {
|
|
89
89
|
position?: "bottom" | "left" | "right" | "top";
|
|
90
|
-
}, {}, import("
|
|
90
|
+
}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
91
91
|
colors: {
|
|
92
92
|
background: "white";
|
|
93
93
|
mainColor: "#008ad2";
|
|
@@ -150,7 +150,7 @@ declare const Content: import("@stitches/react/types/styled-component").StyledCo
|
|
|
150
150
|
tableStripedBg: "#fafafa";
|
|
151
151
|
toolButtonText: "#666e80";
|
|
152
152
|
};
|
|
153
|
-
}, import("
|
|
153
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
154
154
|
mx: (value: string | number) => {
|
|
155
155
|
marginLeft: string | number;
|
|
156
156
|
marginRight: string | number;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
declare const Header: React.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<Omit<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
|
|
3
3
|
ref?: ((instance: HTMLLIElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLLIElement> | null | undefined;
|
|
4
|
-
}, "inset" | "css" | "selected"> & import("
|
|
4
|
+
}, "inset" | "css" | "selected"> & import("../../../../node_modules/@stitches/react/types/styled-component").TransformProps<{
|
|
5
5
|
inset?: boolean | "true";
|
|
6
6
|
selected?: boolean | "true";
|
|
7
7
|
}, {}> & {
|
|
8
|
-
css?: import("
|
|
8
|
+
css?: import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
9
9
|
colors: {
|
|
10
10
|
background: "white";
|
|
11
11
|
mainColor: "#008ad2";
|
|
@@ -68,7 +68,7 @@ declare const Header: React.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<Omit<O
|
|
|
68
68
|
tableStripedBg: "#fafafa";
|
|
69
69
|
toolButtonText: "#666e80";
|
|
70
70
|
};
|
|
71
|
-
}, import("
|
|
71
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
72
72
|
mx: (value: string | number) => {
|
|
73
73
|
marginLeft: string | number;
|
|
74
74
|
marginRight: string | number;
|
|
@@ -92,10 +92,10 @@ declare const Header: React.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<Omit<O
|
|
|
92
92
|
}>;
|
|
93
93
|
} & import("./Item").ItemProps, "ref"> & React.RefAttributes<HTMLLIElement>, "ref"> & {
|
|
94
94
|
ref?: ((instance: HTMLLIElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLLIElement> | null | undefined;
|
|
95
|
-
}, "inset" | "css"> & import("
|
|
95
|
+
}, "inset" | "css"> & import("../../../../node_modules/@stitches/react/types/styled-component").TransformProps<{
|
|
96
96
|
inset?: boolean | "true";
|
|
97
97
|
}, {}> & {
|
|
98
|
-
css?: import("
|
|
98
|
+
css?: import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
99
99
|
colors: {
|
|
100
100
|
background: "white";
|
|
101
101
|
mainColor: "#008ad2";
|
|
@@ -158,7 +158,7 @@ declare const Header: React.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<Omit<O
|
|
|
158
158
|
tableStripedBg: "#fafafa";
|
|
159
159
|
toolButtonText: "#666e80";
|
|
160
160
|
};
|
|
161
|
-
}, import("
|
|
161
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
162
162
|
mx: (value: string | number) => {
|
|
163
163
|
marginLeft: string | number;
|
|
164
164
|
marginRight: string | number;
|
|
@@ -180,7 +180,7 @@ declare const Header: React.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<Omit<O
|
|
|
180
180
|
height: string | number;
|
|
181
181
|
};
|
|
182
182
|
}>;
|
|
183
|
-
} & import("
|
|
183
|
+
} & import("../../../../node_modules/@stitches/react/types/styled-component").TransformProps<{
|
|
184
184
|
inset?: boolean | "true";
|
|
185
185
|
}, {}> & {
|
|
186
186
|
as?: string;
|
|
@@ -21,11 +21,11 @@ interface SubComponents {
|
|
|
21
21
|
declare const ListItemInnerContainerClassNameSelector: string;
|
|
22
22
|
declare const Item: React.ForwardRefExoticComponent<Omit<Omit<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
|
|
23
23
|
ref?: ((instance: HTMLLIElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLLIElement> | null | undefined;
|
|
24
|
-
}, "inset" | "css" | "selected"> & import("
|
|
24
|
+
}, "inset" | "css" | "selected"> & import("../../../../node_modules/@stitches/react/types/styled-component").TransformProps<{
|
|
25
25
|
inset?: boolean | "true";
|
|
26
26
|
selected?: boolean | "true";
|
|
27
27
|
}, {}> & {
|
|
28
|
-
css?: import("
|
|
28
|
+
css?: import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
29
29
|
colors: {
|
|
30
30
|
background: "white";
|
|
31
31
|
mainColor: "#008ad2";
|
|
@@ -88,7 +88,7 @@ declare const Item: React.ForwardRefExoticComponent<Omit<Omit<Omit<React.Detaile
|
|
|
88
88
|
tableStripedBg: "#fafafa";
|
|
89
89
|
toolButtonText: "#666e80";
|
|
90
90
|
};
|
|
91
|
-
}, import("
|
|
91
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
92
92
|
mx: (value: string | number) => {
|
|
93
93
|
marginLeft: string | number;
|
|
94
94
|
marginRight: string | number;
|
|
@@ -113,8 +113,8 @@ declare const Item: React.ForwardRefExoticComponent<Omit<Omit<Omit<React.Detaile
|
|
|
113
113
|
} & Props, "ref"> & React.RefAttributes<HTMLLIElement>> & {
|
|
114
114
|
Label: React.FC<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
115
115
|
ref?: ((instance: HTMLDivElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
116
|
-
}, "css"> & import("
|
|
117
|
-
css?: import("
|
|
116
|
+
}, "css"> & import("../../../../node_modules/@stitches/react/types/styled-component").TransformProps<{}, {}> & {
|
|
117
|
+
css?: import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
118
118
|
colors: {
|
|
119
119
|
background: "white";
|
|
120
120
|
mainColor: "#008ad2";
|
|
@@ -177,7 +177,7 @@ declare const Item: React.ForwardRefExoticComponent<Omit<Omit<Omit<React.Detaile
|
|
|
177
177
|
tableStripedBg: "#fafafa";
|
|
178
178
|
toolButtonText: "#666e80";
|
|
179
179
|
};
|
|
180
|
-
}, import("
|
|
180
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
181
181
|
mx: (value: string | number) => {
|
|
182
182
|
marginLeft: string | number;
|
|
183
183
|
marginRight: string | number;
|
|
@@ -202,7 +202,7 @@ declare const Item: React.ForwardRefExoticComponent<Omit<Omit<Omit<React.Detaile
|
|
|
202
202
|
} & {
|
|
203
203
|
sub?: React.ReactNode;
|
|
204
204
|
}>;
|
|
205
|
-
Value: import("
|
|
205
|
+
Value: import("../../../../node_modules/@stitches/react/types/styled-component").StyledComponent<"div", {}, {}, import("../../../../node_modules/@stitches/react/types/css-util").CSS<{}, {
|
|
206
206
|
colors: {
|
|
207
207
|
background: "white";
|
|
208
208
|
mainColor: "#008ad2";
|
|
@@ -265,7 +265,7 @@ declare const Item: React.ForwardRefExoticComponent<Omit<Omit<Omit<React.Detaile
|
|
|
265
265
|
tableStripedBg: "#fafafa";
|
|
266
266
|
toolButtonText: "#666e80";
|
|
267
267
|
};
|
|
268
|
-
}, import("
|
|
268
|
+
}, import("../../../../node_modules/@stitches/react/types/config").DefaultThemeMap, {
|
|
269
269
|
mx: (value: string | number) => {
|
|
270
270
|
marginLeft: string | number;
|
|
271
271
|
marginRight: string | number;
|