@gobolt/genesis 0.2.13 → 0.2.15
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/dist/_virtual/_commonjsHelpers.cjs +5 -1
- package/dist/_virtual/_commonjsHelpers.js +3 -3
- package/dist/_virtual/advancedFormat.cjs +6 -1
- package/dist/_virtual/advancedFormat.js +5 -5
- package/dist/_virtual/advancedFormat2.cjs +3 -1
- package/dist/_virtual/advancedFormat2.js +2 -2
- package/dist/_virtual/customParseFormat.cjs +6 -1
- package/dist/_virtual/customParseFormat.js +5 -5
- package/dist/_virtual/customParseFormat2.cjs +3 -1
- package/dist/_virtual/customParseFormat2.js +2 -2
- package/dist/_virtual/dayjs.min.cjs +6 -1
- package/dist/_virtual/dayjs.min.js +5 -5
- package/dist/_virtual/dayjs.min2.cjs +3 -1
- package/dist/_virtual/dayjs.min2.js +2 -2
- package/dist/_virtual/index.cjs +6 -1
- package/dist/_virtual/index.js +5 -5
- package/dist/_virtual/index2.cjs +3 -1
- package/dist/_virtual/index2.js +2 -2
- package/dist/_virtual/index3.cjs +4 -1
- package/dist/_virtual/index3.js +3 -3
- package/dist/_virtual/index4.cjs +3 -1
- package/dist/_virtual/index4.js +2 -2
- package/dist/_virtual/index5.cjs +6 -1
- package/dist/_virtual/index5.js +5 -5
- package/dist/_virtual/index6.cjs +6 -1
- package/dist/_virtual/index6.js +5 -5
- package/dist/_virtual/index7.cjs +3 -1
- package/dist/_virtual/index7.js +2 -2
- package/dist/_virtual/localeData.cjs +6 -1
- package/dist/_virtual/localeData.js +5 -5
- package/dist/_virtual/localeData2.cjs +3 -1
- package/dist/_virtual/localeData2.js +2 -2
- package/dist/_virtual/react-is.development.cjs +3 -1
- package/dist/_virtual/react-is.development.js +2 -2
- package/dist/_virtual/react-is.production.min.cjs +3 -1
- package/dist/_virtual/react-is.production.min.js +2 -2
- package/dist/_virtual/weekOfYear.cjs +6 -1
- package/dist/_virtual/weekOfYear.js +5 -5
- package/dist/_virtual/weekOfYear2.cjs +3 -1
- package/dist/_virtual/weekOfYear2.js +2 -2
- package/dist/_virtual/weekYear.cjs +6 -1
- package/dist/_virtual/weekYear.js +5 -5
- package/dist/_virtual/weekYear2.cjs +3 -1
- package/dist/_virtual/weekYear2.js +2 -2
- package/dist/_virtual/weekday.cjs +6 -1
- package/dist/_virtual/weekday.js +5 -5
- package/dist/_virtual/weekday2.cjs +3 -1
- package/dist/_virtual/weekday2.js +2 -2
- package/dist/components/Avatar/Avatar.cjs +76 -1
- package/dist/components/Avatar/Avatar.js +59 -47
- package/dist/components/Avatar/styles.cjs +11 -3
- package/dist/components/Avatar/styles.js +9 -6
- package/dist/components/Badge/Badge.cjs +80 -1
- package/dist/components/Badge/Badge.js +68 -63
- package/dist/components/Badge/styles.cjs +29 -16
- package/dist/components/Badge/styles.js +26 -17
- package/dist/components/Breadcrumb/Breadcrumb.cjs +9 -1
- package/dist/components/Breadcrumb/Breadcrumb.js +7 -7
- package/dist/components/Breadcrumb/styles.cjs +21 -11
- package/dist/components/Breadcrumb/styles.js +18 -16
- package/dist/components/Button/Button.cjs +35 -1
- package/dist/components/Button/Button.js +29 -23
- package/dist/components/Button/IconButton.cjs +29 -1
- package/dist/components/Button/IconButton.js +23 -22
- package/dist/components/Button/UtilityButton.cjs +29 -1
- package/dist/components/Button/UtilityButton.js +23 -22
- package/dist/components/Button/icon-button-styles.cjs +44 -29
- package/dist/components/Button/icon-button-styles.js +42 -30
- package/dist/components/Button/styles.cjs +90 -31
- package/dist/components/Button/styles.js +88 -39
- package/dist/components/Card/Card.cjs +17 -1
- package/dist/components/Card/Card.js +16 -14
- package/dist/components/Card/styles.cjs +12 -4
- package/dist/components/Card/styles.js +10 -7
- package/dist/components/Checkbox/Checkbox.cjs +28 -1
- package/dist/components/Checkbox/Checkbox.js +23 -19
- package/dist/components/Checkbox/styles.cjs +27 -19
- package/dist/components/Checkbox/styles.js +25 -22
- package/dist/components/DatePicker/DatePicker.cjs +18 -1
- package/dist/components/DatePicker/DatePicker.js +10 -10
- package/dist/components/DateRangePicker/DateRangePicker.cjs +19 -1
- package/dist/components/DateRangePicker/DateRangePicker.js +11 -10
- package/dist/components/ErrorBoundary/ErrorBoundary.cjs +71 -1
- package/dist/components/ErrorBoundary/ErrorBoundary.js +36 -27
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.cjs +29 -1
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.js +16 -16
- package/dist/components/ErrorBoundaryFallback/styles.cjs +6 -2
- package/dist/components/ErrorBoundaryFallback/styles.js +4 -4
- package/dist/components/Form/Form.cjs +18 -1
- package/dist/components/Form/Form.js +12 -11
- package/dist/components/Form/styles.cjs +6 -2
- package/dist/components/Form/styles.js +4 -4
- package/dist/components/GoBolt/GoBolt.cjs +6 -0
- package/dist/components/GoBolt/GoBolt.d.ts +7 -0
- package/dist/components/GoBolt/GoBolt.js +7 -0
- package/dist/components/GoBolt/index.d.ts +2 -0
- package/dist/components/Input/Input.cjs +29 -1
- package/dist/components/Input/Input.js +23 -21
- package/dist/components/Input/styles.cjs +91 -28
- package/dist/components/Input/styles.js +84 -63
- package/dist/components/Layout/Content/Content.cjs +24 -1
- package/dist/components/Layout/Content/Content.js +22 -20
- package/dist/components/Layout/Content/styles.cjs +13 -6
- package/dist/components/Layout/Content/styles.js +11 -8
- package/dist/components/Layout/Layout.cjs +7 -1
- package/dist/components/Layout/Layout.js +6 -4
- package/dist/components/Message/Message.cjs +87 -1
- package/dist/components/Message/Message.js +68 -63
- package/dist/components/Message/styles.cjs +24 -16
- package/dist/components/Message/styles.js +22 -20
- package/dist/components/Notification/Notification.cjs +89 -1
- package/dist/components/Notification/Notification.js +67 -60
- package/dist/components/Notification/NotificationBadge/NotificationBadge.cjs +50 -1
- package/dist/components/Notification/NotificationBadge/NotificationBadge.js +44 -42
- package/dist/components/Notification/NotificationBadge/icons/ASN.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/ASN.js +5 -5
- package/dist/components/Notification/NotificationBadge/icons/Appointment.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Appointment.js +5 -5
- package/dist/components/Notification/NotificationBadge/icons/Inventory.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Inventory.js +5 -5
- package/dist/components/Notification/NotificationBadge/icons/Parcel.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Parcel.js +5 -5
- package/dist/components/Notification/NotificationBadge/icons/Product.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Product.js +5 -5
- package/dist/components/Notification/NotificationBadge/icons/Route.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Route.js +5 -5
- package/dist/components/Notification/NotificationBadge/icons/Shipment.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Shipment.js +5 -5
- package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.js +5 -5
- package/dist/components/Notification/NotificationBadge/icons/System.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/System.js +5 -5
- package/dist/components/Notification/NotificationBadge/styles.cjs +14 -7
- package/dist/components/Notification/NotificationBadge/styles.js +12 -10
- package/dist/components/Notification/NotificationRightChevron.cjs +22 -1
- package/dist/components/Notification/NotificationRightChevron.js +5 -5
- package/dist/components/Notification/styles.cjs +33 -19
- package/dist/components/Notification/styles.js +30 -25
- package/dist/components/Popover/Popover.cjs +25 -1
- package/dist/components/Popover/Popover.js +24 -22
- package/dist/components/Popover/styles.cjs +11 -3
- package/dist/components/Popover/styles.js +9 -6
- package/dist/components/Progress/Progress.cjs +64 -1
- package/dist/components/Progress/Progress.js +55 -47
- package/dist/components/Progress/Progress.util.cjs +42 -1
- package/dist/components/Progress/Progress.util.js +37 -29
- package/dist/components/Progress/ProgressText.cjs +41 -1
- package/dist/components/Progress/ProgressText.js +40 -38
- package/dist/components/Progress/styles.cjs +11 -3
- package/dist/components/Progress/styles.js +9 -6
- package/dist/components/Radio/Radio.cjs +115 -4
- package/dist/components/Radio/Radio.js +87 -48
- package/dist/components/Radio/RadioGroup.cjs +34 -1
- package/dist/components/Radio/RadioGroup.js +32 -30
- package/dist/components/Radio/states/RadioChecked.cjs +17 -1
- package/dist/components/Radio/states/RadioChecked.js +6 -6
- package/dist/components/Radio/states/RadioCheckedDisabled.cjs +17 -1
- package/dist/components/Radio/states/RadioCheckedDisabled.js +6 -6
- package/dist/components/Radio/states/RadioCheckedFocussed.cjs +29 -1
- package/dist/components/Radio/states/RadioCheckedFocussed.js +7 -7
- package/dist/components/Radio/states/RadioCheckedHover.cjs +17 -1
- package/dist/components/Radio/states/RadioCheckedHover.js +6 -6
- package/dist/components/Radio/states/RadioUnchecked.cjs +14 -1
- package/dist/components/Radio/states/RadioUnchecked.js +5 -5
- package/dist/components/Radio/states/RadioUncheckedDisabled.cjs +14 -1
- package/dist/components/Radio/states/RadioUncheckedDisabled.js +5 -5
- package/dist/components/Radio/states/RadioUncheckedFocussed.cjs +28 -1
- package/dist/components/Radio/states/RadioUncheckedFocussed.js +6 -6
- package/dist/components/Radio/states/RadioUncheckedHover.cjs +17 -1
- package/dist/components/Radio/states/RadioUncheckedHover.js +6 -6
- package/dist/components/Row/Row.cjs +39 -1
- package/dist/components/Row/Row.js +28 -28
- package/dist/components/Row/RowActions/RowActions.cjs +24 -1
- package/dist/components/Row/RowActions/RowActions.js +22 -14
- package/dist/components/Row/RowActions/styles.cjs +5 -2
- package/dist/components/Row/RowActions/styles.js +3 -3
- package/dist/components/Row/RowLabelValue/RowLabelValue.cjs +42 -1
- package/dist/components/Row/RowLabelValue/RowLabelValue.js +34 -28
- package/dist/components/Row/RowLabelValue/RowSkeleton.cjs +28 -1
- package/dist/components/Row/RowLabelValue/RowSkeleton.js +26 -21
- package/dist/components/Row/RowLabelValue/styles.cjs +22 -9
- package/dist/components/Row/RowLabelValue/styles.js +20 -13
- package/dist/components/Row/styles.cjs +17 -7
- package/dist/components/Row/styles.js +15 -9
- package/dist/components/SegmentedControls/SegmentedControls.cjs +25 -1
- package/dist/components/SegmentedControls/SegmentedControls.js +18 -18
- package/dist/components/SegmentedControls/styles.cjs +22 -14
- package/dist/components/SegmentedControls/styles.js +19 -18
- package/dist/components/Select/Select.cjs +45 -2
- package/dist/components/Select/Select.js +37 -31
- package/dist/components/Select/index.d.ts +0 -2
- package/dist/components/Select/styles.cjs +64 -39
- package/dist/components/Select/styles.js +61 -47
- package/dist/components/SelectCount/SelectCount.cjs +44 -0
- package/dist/components/SelectCount/SelectCount.d.ts +12 -0
- package/dist/components/SelectCount/SelectCount.js +45 -0
- package/dist/components/SelectCount/__stories__/SelectCount.stories.d.ts +7 -0
- package/dist/components/SelectCount/index.d.ts +2 -0
- package/dist/components/Shapes/Shapes.cjs +15 -1
- package/dist/components/Shapes/Shapes.js +14 -6
- package/dist/components/Shapes/variants/Circle.cjs +22 -1
- package/dist/components/Shapes/variants/Circle.js +6 -6
- package/dist/components/Shapes/variants/Rectangle.cjs +22 -1
- package/dist/components/Shapes/variants/Rectangle.js +6 -6
- package/dist/components/Shapes/variants/Triangle.cjs +22 -1
- package/dist/components/Shapes/variants/Triangle.js +6 -6
- package/dist/components/Switch/Switch.cjs +23 -1
- package/dist/components/Switch/Switch.js +22 -20
- package/dist/components/Switch/styles.cjs +24 -17
- package/dist/components/Switch/styles.js +21 -20
- package/dist/components/Table/Table.cjs +26 -1
- package/dist/components/Table/Table.js +18 -18
- package/dist/components/Table/TableControls/PrimaryTableControlsRow.cjs +124 -1
- package/dist/components/Table/TableControls/PrimaryTableControlsRow.js +71 -65
- package/dist/components/Table/TableControls/SecondaryTableControlsRow.cjs +78 -1
- package/dist/components/Table/TableControls/SecondaryTableControlsRow.js +71 -64
- package/dist/components/Table/TableControls/TableControls.cjs +36 -1
- package/dist/components/Table/TableControls/TableControls.js +25 -24
- package/dist/components/Table/TableWithControls/TableWithControls.cjs +42 -1
- package/dist/components/Table/TableWithControls/TableWithControls.js +32 -28
- package/dist/components/Table/TableWithControls/useTableWithControls.cjs +144 -1
- package/dist/components/Table/TableWithControls/useTableWithControls.js +100 -88
- package/dist/components/Table/__mocks__/table-mocks.cjs +70 -1
- package/dist/components/Table/__mocks__/table-mocks.js +33 -25
- package/dist/components/Table/styles.cjs +12 -4
- package/dist/components/Table/styles.js +10 -7
- package/dist/components/Table/useTable.cjs +80 -1
- package/dist/components/Table/useTable.js +56 -41
- package/dist/components/Tabs/Tabs.cjs +22 -1
- package/dist/components/Tabs/Tabs.js +13 -13
- package/dist/components/Tabs/styles.cjs +21 -13
- package/dist/components/Tabs/styles.js +19 -16
- package/dist/components/Tile/Tile.cjs +22 -1
- package/dist/components/Tile/Tile.js +21 -19
- package/dist/components/Tile/styles.cjs +13 -6
- package/dist/components/Tile/styles.js +11 -8
- package/dist/components/Toast/Toast.cjs +90 -1
- package/dist/components/Toast/Toast.js +69 -64
- package/dist/components/Toast/styles.cjs +23 -15
- package/dist/components/Toast/styles.js +21 -19
- package/dist/components/Tooltip/Tooltip.cjs +24 -1
- package/dist/components/Tooltip/Tooltip.js +23 -21
- package/dist/components/Tooltip/styles.cjs +12 -4
- package/dist/components/Tooltip/styles.js +10 -7
- package/dist/components/Typography/Typography.cjs +71 -1
- package/dist/components/Typography/Typography.js +61 -58
- package/dist/components/Typography/styles.cjs +95 -20
- package/dist/components/Typography/styles.js +90 -69
- package/dist/components/index.d.ts +4 -2
- package/dist/components/shared/DropdownChevron.cjs +26 -1
- package/dist/components/shared/DropdownChevron.js +9 -9
- package/dist/constants/index.cjs +99 -1
- package/dist/constants/index.js +30 -23
- package/dist/index.cjs +88 -1
- package/dist/index.js +87 -85
- package/dist/node_modules/@ant-design/colors/es/generate.cjs +120 -1
- package/dist/node_modules/@ant-design/colors/es/generate.js +80 -33
- package/dist/node_modules/@ant-design/colors/es/presets.cjs +72 -1
- package/dist/node_modules/@ant-design/colors/es/presets.js +70 -69
- package/dist/node_modules/@ant-design/cssinjs/es/Cache.cjs +49 -1
- package/dist/node_modules/@ant-design/cssinjs/es/Cache.js +31 -22
- package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.cjs +23 -1
- package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.js +18 -12
- package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.cjs +65 -1
- package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.js +36 -28
- package/dist/node_modules/@ant-design/cssinjs/es/extractStyle.cjs +11 -1
- package/dist/node_modules/@ant-design/cssinjs/es/extractStyle.js +6 -6
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCSSVarRegister.cjs +67 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCSSVarRegister.js +59 -43
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.cjs +124 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.js +105 -73
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.cjs +38 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.js +18 -13
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.cjs +57 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.js +32 -20
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.cjs +90 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.js +60 -35
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useHMR.cjs +23 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useHMR.js +17 -15
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useStyleRegister.cjs +330 -3
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useStyleRegister.js +266 -171
- package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.cjs +12 -1
- package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.js +9 -6
- package/dist/node_modules/@ant-design/cssinjs/es/linters/hashedAnimationLinter.cjs +10 -1
- package/dist/node_modules/@ant-design/cssinjs/es/linters/hashedAnimationLinter.js +8 -4
- package/dist/node_modules/@ant-design/cssinjs/es/linters/utils.cjs +7 -1
- package/dist/node_modules/@ant-design/cssinjs/es/linters/utils.js +5 -5
- package/dist/node_modules/@ant-design/cssinjs/es/theme/Theme.cjs +29 -1
- package/dist/node_modules/@ant-design/cssinjs/es/theme/Theme.js +23 -13
- package/dist/node_modules/@ant-design/cssinjs/es/theme/ThemeCache.cjs +139 -1
- package/dist/node_modules/@ant-design/cssinjs/es/theme/ThemeCache.js +104 -69
- package/dist/node_modules/@ant-design/cssinjs/es/theme/createTheme.cjs +12 -1
- package/dist/node_modules/@ant-design/cssinjs/es/theme/createTheme.js +10 -7
- package/dist/node_modules/@ant-design/cssinjs/es/transformers/legacyLogicalProperties.cjs +14 -1
- package/dist/node_modules/@ant-design/cssinjs/es/transformers/legacyLogicalProperties.js +12 -3
- package/dist/node_modules/@ant-design/cssinjs/es/util/cacheMapUtil.cjs +60 -1
- package/dist/node_modules/@ant-design/cssinjs/es/util/cacheMapUtil.js +53 -34
- package/dist/node_modules/@ant-design/cssinjs/es/util/css-variables.cjs +37 -1
- package/dist/node_modules/@ant-design/cssinjs/es/util/css-variables.js +33 -23
- package/dist/node_modules/@ant-design/cssinjs/es/util/index.cjs +78 -1
- package/dist/node_modules/@ant-design/cssinjs/es/util/index.js +68 -41
- package/dist/node_modules/@ant-design/cssinjs-utils/es/_util/hooks/useUniqueMemo.cjs +87 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/_util/hooks/useUniqueMemo.js +66 -41
- package/dist/node_modules/@ant-design/cssinjs-utils/es/hooks/useCSP.cjs +5 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/hooks/useCSP.js +2 -2
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/CSSCalculator.cjs +116 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/CSSCalculator.js +96 -38
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/NumCalculator.cjs +72 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/NumCalculator.js +55 -26
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/calculator.cjs +7 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/calculator.js +5 -5
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/index.cjs +10 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/index.js +7 -7
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/genStyleUtils.cjs +204 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/genStyleUtils.js +166 -123
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getCompVarPrefix.cjs +5 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getCompVarPrefix.js +3 -3
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getComponentToken.cjs +31 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getComponentToken.js +23 -17
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getDefaultComponentToken.cjs +10 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getDefaultComponentToken.js +7 -7
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/maxmin.cjs +40 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/maxmin.js +22 -17
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/statistic.cjs +68 -1
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/statistic.js +59 -46
- package/dist/node_modules/@ant-design/fast-color/es/FastColor.cjs +473 -1
- package/dist/node_modules/@ant-design/fast-color/es/FastColor.js +303 -155
- package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.cjs +65 -1
- package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.js +42 -36
- package/dist/node_modules/@ant-design/icons/es/components/Context.cjs +4 -1
- package/dist/node_modules/@ant-design/icons/es/components/Context.js +3 -3
- package/dist/node_modules/@ant-design/icons/es/components/IconBase.cjs +77 -1
- package/dist/node_modules/@ant-design/icons/es/components/IconBase.js +45 -31
- package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.cjs +20 -1
- package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.js +16 -13
- package/dist/node_modules/@ant-design/icons/es/icons/BarsOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/BarsOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CalendarOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CalendarOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CaretUpOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CaretUpOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleFilled.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleLeftOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleLeftOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleRightOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleRightOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/EllipsisOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EllipsisOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/EnterOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EnterOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/FileOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/FileOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/FilterFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/FilterFilled.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOpenOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOpenOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/HolderOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/HolderOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleFilled.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/MinusSquareOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/MinusSquareOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/PlusSquareOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/PlusSquareOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/QuestionCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/QuestionCircleOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/icons/WarningFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/WarningFilled.js +14 -11
- package/dist/node_modules/@ant-design/icons/es/utils.cjs +79 -49
- package/dist/node_modules/@ant-design/icons/es/utils.js +68 -108
- package/dist/node_modules/@ant-design/icons-svg/es/asn/BarsOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/BarsOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CalendarOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CalendarOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownFilled.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownFilled.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretUpOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretUpOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleFilled.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleFilled.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleFilled.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleFilled.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleFilled.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleFilled.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CopyOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CopyOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleLeftOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleLeftOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleRightOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleRightOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DownOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DownOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EditOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EditOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EllipsisOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EllipsisOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EnterOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EnterOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleFilled.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleFilled.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeInvisibleOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeInvisibleOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FileOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FileOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FilterFilled.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FilterFilled.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOpenOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOpenOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/HolderOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/HolderOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LeftOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LeftOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LoadingOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LoadingOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleFilled.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleFilled.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusSquareOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusSquareOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusSquareOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusSquareOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/QuestionCircleOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/QuestionCircleOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/RightOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/RightOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SearchOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SearchOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SwapRightOutlined.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SwapRightOutlined.js +2 -2
- package/dist/node_modules/@ant-design/icons-svg/es/asn/WarningFilled.cjs +3 -1
- package/dist/node_modules/@ant-design/icons-svg/es/asn/WarningFilled.js +2 -2
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.cjs +7 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +4 -4
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.cjs +5 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +2 -2
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.cjs +6 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +4 -4
- package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.cjs +6 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +3 -3
- package/dist/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.cjs +25 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +14 -14
- package/dist/node_modules/@babel/runtime/helpers/esm/classCallCheck.cjs +5 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +2 -2
- package/dist/node_modules/@babel/runtime/helpers/esm/construct.cjs +11 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/construct.js +9 -9
- package/dist/node_modules/@babel/runtime/helpers/esm/createClass.cjs +14 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/createClass.js +10 -10
- package/dist/node_modules/@babel/runtime/helpers/esm/createSuper.cjs +16 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/createSuper.js +12 -12
- package/dist/node_modules/@babel/runtime/helpers/esm/defineProperty.cjs +11 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/defineProperty.js +7 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/extends.cjs +11 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/extends.js +8 -8
- package/dist/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.cjs +7 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +5 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/inherits.cjs +15 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/inherits.js +11 -11
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeFunction.cjs +9 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +5 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.cjs +12 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +4 -4
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArray.cjs +5 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +3 -3
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.cjs +23 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +13 -13
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableRest.cjs +5 -2
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +3 -4
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.cjs +5 -2
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +3 -4
- package/dist/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.cjs +5 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +3 -3
- package/dist/node_modules/@babel/runtime/helpers/esm/objectSpread2.cjs +24 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +17 -17
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.cjs +12 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +7 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.cjs +11 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +8 -8
- package/dist/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.cjs +9 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +7 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.cjs +287 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js +201 -201
- package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.cjs +7 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +5 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/slicedToArray.cjs +9 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +7 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/toArray.cjs +9 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/toArray.js +7 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/toConsumableArray.cjs +9 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +7 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/toPrimitive.cjs +13 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +9 -9
- package/dist/node_modules/@babel/runtime/helpers/esm/toPropertyKey.cjs +8 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +6 -6
- package/dist/node_modules/@babel/runtime/helpers/esm/typeof.cjs +10 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/typeof.js +7 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.cjs +10 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +5 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.cjs +28 -1
- package/dist/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +22 -22
- package/dist/node_modules/@emotion/hash/dist/hash.browser.esm.cjs +30 -1
- package/dist/node_modules/@emotion/hash/dist/hash.browser.esm.js +24 -15
- package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.cjs +50 -1
- package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.js +2 -2
- package/dist/node_modules/@rc-component/async-validator/es/index.cjs +276 -1
- package/dist/node_modules/@rc-component/async-validator/es/index.js +241 -123
- package/dist/node_modules/@rc-component/async-validator/es/messages.cjs +58 -1
- package/dist/node_modules/@rc-component/async-validator/es/messages.js +8 -7
- package/dist/node_modules/@rc-component/async-validator/es/rule/enum.cjs +10 -1
- package/dist/node_modules/@rc-component/async-validator/es/rule/enum.js +8 -4
- package/dist/node_modules/@rc-component/async-validator/es/rule/index.cjs +16 -1
- package/dist/node_modules/@rc-component/async-validator/es/rule/index.js +14 -14
- package/dist/node_modules/@rc-component/async-validator/es/rule/pattern.cjs +18 -1
- package/dist/node_modules/@rc-component/async-validator/es/rule/pattern.js +14 -9
- package/dist/node_modules/@rc-component/async-validator/es/rule/range.cjs +41 -1
- package/dist/node_modules/@rc-component/async-validator/es/rule/range.js +39 -7
- package/dist/node_modules/@rc-component/async-validator/es/rule/required.cjs +8 -1
- package/dist/node_modules/@rc-component/async-validator/es/rule/required.js +6 -4
- package/dist/node_modules/@rc-component/async-validator/es/rule/type.cjs +75 -1
- package/dist/node_modules/@rc-component/async-validator/es/rule/type.js +51 -38
- package/dist/node_modules/@rc-component/async-validator/es/rule/url.cjs +58 -1
- package/dist/node_modules/@rc-component/async-validator/es/rule/url.js +46 -24
- package/dist/node_modules/@rc-component/async-validator/es/rule/whitespace.cjs +8 -1
- package/dist/node_modules/@rc-component/async-validator/es/rule/whitespace.js +6 -4
- package/dist/node_modules/@rc-component/async-validator/es/util.cjs +244 -1
- package/dist/node_modules/@rc-component/async-validator/es/util.js +203 -123
- package/dist/node_modules/@rc-component/async-validator/es/validator/any.cjs +15 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/any.js +12 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/array.cjs +18 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/array.js +15 -9
- package/dist/node_modules/@rc-component/async-validator/es/validator/boolean.cjs +18 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/boolean.js +15 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/date.cjs +27 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/date.js +23 -12
- package/dist/node_modules/@rc-component/async-validator/es/validator/enum.cjs +19 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/enum.js +16 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/float.cjs +19 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/float.js +16 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/index.cjs +36 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/index.js +34 -34
- package/dist/node_modules/@rc-component/async-validator/es/validator/integer.cjs +19 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/integer.js +16 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/method.cjs +18 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/method.js +15 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/number.cjs +22 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/number.js +19 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/object.cjs +18 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/object.js +15 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/pattern.cjs +18 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/pattern.js +15 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/regexp.cjs +18 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/regexp.js +15 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/required.cjs +10 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/required.js +8 -6
- package/dist/node_modules/@rc-component/async-validator/es/validator/string.cjs +23 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/string.js +20 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/type.cjs +19 -1
- package/dist/node_modules/@rc-component/async-validator/es/validator/type.js +16 -10
- package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.cjs +125 -1
- package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.js +86 -63
- package/dist/node_modules/@rc-component/color-picker/es/color.cjs +61 -1
- package/dist/node_modules/@rc-component/color-picker/es/color.js +50 -35
- package/dist/node_modules/@rc-component/color-picker/es/components/ColorBlock.cjs +18 -1
- package/dist/node_modules/@rc-component/color-picker/es/components/ColorBlock.js +13 -12
- package/dist/node_modules/@rc-component/color-picker/es/components/Gradient.cjs +25 -1
- package/dist/node_modules/@rc-component/color-picker/es/components/Gradient.js +18 -14
- package/dist/node_modules/@rc-component/color-picker/es/components/Handler.cjs +14 -1
- package/dist/node_modules/@rc-component/color-picker/es/components/Handler.js +9 -9
- package/dist/node_modules/@rc-component/color-picker/es/components/Palette.cjs +13 -1
- package/dist/node_modules/@rc-component/color-picker/es/components/Palette.js +10 -10
- package/dist/node_modules/@rc-component/color-picker/es/components/Picker.cjs +63 -1
- package/dist/node_modules/@rc-component/color-picker/es/components/Picker.js +51 -45
- package/dist/node_modules/@rc-component/color-picker/es/components/Slider.cjs +86 -1
- package/dist/node_modules/@rc-component/color-picker/es/components/Slider.js +73 -62
- package/dist/node_modules/@rc-component/color-picker/es/components/Transform.cjs +16 -1
- package/dist/node_modules/@rc-component/color-picker/es/components/Transform.js +9 -9
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorDrag.cjs +81 -1
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorDrag.js +69 -28
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorState.cjs +17 -1
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorState.js +13 -12
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useComponent.cjs +29 -1
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useComponent.js +8 -8
- package/dist/node_modules/@rc-component/color-picker/es/util.cjs +67 -1
- package/dist/node_modules/@rc-component/color-picker/es/util.js +46 -29
- package/dist/node_modules/@rc-component/context/es/Immutable.cjs +77 -1
- package/dist/node_modules/@rc-component/context/es/Immutable.js +47 -28
- package/dist/node_modules/@rc-component/context/es/context.cjs +95 -1
- package/dist/node_modules/@rc-component/context/es/context.js +61 -47
- package/dist/node_modules/@rc-component/portal/es/Context.cjs +23 -1
- package/dist/node_modules/@rc-component/portal/es/Context.js +3 -3
- package/dist/node_modules/@rc-component/portal/es/Portal.cjs +91 -1
- package/dist/node_modules/@rc-component/portal/es/Portal.js +68 -40
- package/dist/node_modules/@rc-component/portal/es/index.cjs +4 -1
- package/dist/node_modules/@rc-component/portal/es/index.js +2 -2
- package/dist/node_modules/@rc-component/portal/es/mock.cjs +7 -1
- package/dist/node_modules/@rc-component/portal/es/mock.js +5 -5
- package/dist/node_modules/@rc-component/portal/es/useDom.cjs +81 -1
- package/dist/node_modules/@rc-component/portal/es/useDom.js +55 -29
- package/dist/node_modules/@rc-component/portal/es/useScrollLocker.cjs +48 -5
- package/dist/node_modules/@rc-component/portal/es/useScrollLocker.js +25 -24
- package/dist/node_modules/@rc-component/portal/es/util.cjs +5 -1
- package/dist/node_modules/@rc-component/portal/es/util.js +2 -2
- package/dist/node_modules/@rc-component/trigger/es/Popup/Arrow.cjs +62 -1
- package/dist/node_modules/@rc-component/trigger/es/Popup/Arrow.js +37 -15
- package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.cjs +45 -1
- package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.js +20 -17
- package/dist/node_modules/@rc-component/trigger/es/Popup/PopupContent.cjs +31 -1
- package/dist/node_modules/@rc-component/trigger/es/Popup/PopupContent.js +10 -8
- package/dist/node_modules/@rc-component/trigger/es/Popup/index.cjs +156 -1
- package/dist/node_modules/@rc-component/trigger/es/Popup/index.js +124 -79
- package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.cjs +37 -1
- package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.js +16 -11
- package/dist/node_modules/@rc-component/trigger/es/context.cjs +23 -1
- package/dist/node_modules/@rc-component/trigger/es/context.js +3 -3
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAction.cjs +44 -1
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAction.js +22 -9
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAlign.cjs +441 -1
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAlign.js +379 -143
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.cjs +36 -1
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.js +29 -19
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.cjs +71 -1
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.js +45 -27
- package/dist/node_modules/@rc-component/trigger/es/index.cjs +368 -1
- package/dist/node_modules/@rc-component/trigger/es/index.js +324 -189
- package/dist/node_modules/@rc-component/trigger/es/util.cjs +109 -1
- package/dist/node_modules/@rc-component/trigger/es/util.js +102 -53
- package/dist/node_modules/antd/es/_util/ActionButton.cjs +118 -1
- package/dist/node_modules/antd/es/_util/ActionButton.js +83 -55
- package/dist/node_modules/antd/es/_util/ContextIsolator.cjs +26 -1
- package/dist/node_modules/antd/es/_util/ContextIsolator.js +22 -15
- package/dist/node_modules/antd/es/_util/PurePanel.cjs +106 -1
- package/dist/node_modules/antd/es/_util/PurePanel.js +76 -57
- package/dist/node_modules/antd/es/_util/colors.cjs +12 -1
- package/dist/node_modules/antd/es/_util/colors.js +10 -6
- package/dist/node_modules/antd/es/_util/easings.cjs +10 -1
- package/dist/node_modules/antd/es/_util/easings.js +8 -4
- package/dist/node_modules/antd/es/_util/extendsObject.cjs +17 -1
- package/dist/node_modules/antd/es/_util/extendsObject.js +14 -10
- package/dist/node_modules/antd/es/_util/gapSize.cjs +12 -1
- package/dist/node_modules/antd/es/_util/gapSize.js +9 -6
- package/dist/node_modules/antd/es/_util/getAllowClear.cjs +15 -1
- package/dist/node_modules/antd/es/_util/getAllowClear.js +13 -8
- package/dist/node_modules/antd/es/_util/getRenderPropValue.cjs +8 -1
- package/dist/node_modules/antd/es/_util/getRenderPropValue.js +7 -2
- package/dist/node_modules/antd/es/_util/getScroll.cjs +27 -1
- package/dist/node_modules/antd/es/_util/getScroll.js +22 -9
- package/dist/node_modules/antd/es/_util/hooks/useForceUpdate.cjs +26 -1
- package/dist/node_modules/antd/es/_util/hooks/useForceUpdate.js +5 -5
- package/dist/node_modules/antd/es/_util/hooks/useMultipleSelect.cjs +31 -1
- package/dist/node_modules/antd/es/_util/hooks/useMultipleSelect.js +29 -12
- package/dist/node_modules/antd/es/_util/hooks/useProxyImperativeHandle.cjs +33 -1
- package/dist/node_modules/antd/es/_util/hooks/useProxyImperativeHandle.js +28 -18
- package/dist/node_modules/antd/es/_util/hooks/useSyncState.cjs +31 -1
- package/dist/node_modules/antd/es/_util/hooks/useSyncState.js +9 -7
- package/dist/node_modules/antd/es/_util/hooks/useZIndex.cjs +58 -1
- package/dist/node_modules/antd/es/_util/hooks/useZIndex.js +46 -32
- package/dist/node_modules/antd/es/_util/isPrimitive.cjs +3 -1
- package/dist/node_modules/antd/es/_util/isPrimitive.js +2 -2
- package/dist/node_modules/antd/es/_util/motion.cjs +45 -1
- package/dist/node_modules/antd/es/_util/motion.js +33 -22
- package/dist/node_modules/antd/es/_util/placements.cjs +176 -1
- package/dist/node_modules/antd/es/_util/placements.js +69 -43
- package/dist/node_modules/antd/es/_util/reactNode.cjs +17 -1
- package/dist/node_modules/antd/es/_util/reactNode.js +14 -9
- package/dist/node_modules/antd/es/_util/responsiveObserver.cjs +114 -1
- package/dist/node_modules/antd/es/_util/responsiveObserver.js +82 -53
- package/dist/node_modules/antd/es/_util/scrollTo.cjs +34 -1
- package/dist/node_modules/antd/es/_util/scrollTo.js +30 -13
- package/dist/node_modules/antd/es/_util/statusUtils.cjs +14 -1
- package/dist/node_modules/antd/es/_util/statusUtils.js +11 -11
- package/dist/node_modules/antd/es/_util/toList.cjs +7 -1
- package/dist/node_modules/antd/es/_util/toList.js +5 -3
- package/dist/node_modules/antd/es/_util/warning.cjs +77 -1
- package/dist/node_modules/antd/es/_util/warning.js +50 -29
- package/dist/node_modules/antd/es/_util/wave/WaveEffect.cjs +154 -1
- package/dist/node_modules/antd/es/_util/wave/WaveEffect.js +110 -82
- package/dist/node_modules/antd/es/_util/wave/index.cjs +52 -1
- package/dist/node_modules/antd/es/_util/wave/index.js +44 -30
- package/dist/node_modules/antd/es/_util/wave/interface.cjs +5 -1
- package/dist/node_modules/antd/es/_util/wave/interface.js +3 -3
- package/dist/node_modules/antd/es/_util/wave/style.cjs +47 -1
- package/dist/node_modules/antd/es/_util/wave/style.js +14 -13
- package/dist/node_modules/antd/es/_util/wave/useWave.cjs +60 -1
- package/dist/node_modules/antd/es/_util/wave/useWave.js +33 -26
- package/dist/node_modules/antd/es/_util/wave/util.cjs +24 -1
- package/dist/node_modules/antd/es/_util/wave/util.js +20 -11
- package/dist/node_modules/antd/es/_util/zindexContext.cjs +7 -1
- package/dist/node_modules/antd/es/_util/zindexContext.js +6 -4
- package/dist/node_modules/antd/es/avatar/Avatar.cjs +189 -1
- package/dist/node_modules/antd/es/avatar/Avatar.js +152 -112
- package/dist/node_modules/antd/es/avatar/AvatarContext.cjs +23 -1
- package/dist/node_modules/antd/es/avatar/AvatarContext.js +3 -3
- package/dist/node_modules/antd/es/avatar/AvatarGroup.cjs +123 -1
- package/dist/node_modules/antd/es/avatar/AvatarGroup.js +90 -74
- package/dist/node_modules/antd/es/avatar/index.cjs +6 -1
- package/dist/node_modules/antd/es/avatar/index.js +5 -5
- package/dist/node_modules/antd/es/avatar/style/index.cjs +146 -1
- package/dist/node_modules/antd/es/avatar/style/index.js +86 -81
- package/dist/node_modules/antd/es/breadcrumb/Breadcrumb.cjs +168 -1
- package/dist/node_modules/antd/es/breadcrumb/Breadcrumb.js +132 -104
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbItem.cjs +112 -1
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbItem.js +80 -64
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbSeparator.cjs +38 -1
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbSeparator.js +13 -12
- package/dist/node_modules/antd/es/breadcrumb/index.cjs +3 -1
- package/dist/node_modules/antd/es/breadcrumb/index.js +2 -2
- package/dist/node_modules/antd/es/breadcrumb/style/index.cjs +113 -4
- package/dist/node_modules/antd/es/breadcrumb/style/index.js +59 -57
- package/dist/node_modules/antd/es/breadcrumb/useItemRender.cjs +75 -1
- package/dist/node_modules/antd/es/breadcrumb/useItemRender.js +44 -35
- package/dist/node_modules/antd/es/breadcrumb/useItems.cjs +44 -1
- package/dist/node_modules/antd/es/breadcrumb/useItems.js +39 -26
- package/dist/node_modules/antd/es/button/DefaultLoadingIcon.cjs +80 -1
- package/dist/node_modules/antd/es/button/DefaultLoadingIcon.js +65 -57
- package/dist/node_modules/antd/es/button/IconWrapper.cjs +18 -1
- package/dist/node_modules/antd/es/button/IconWrapper.js +15 -14
- package/dist/node_modules/antd/es/button/button-group.cjs +89 -1
- package/dist/node_modules/antd/es/button/button-group.js +40 -33
- package/dist/node_modules/antd/es/button/button.cjs +251 -1
- package/dist/node_modules/antd/es/button/button.js +221 -154
- package/dist/node_modules/antd/es/button/buttonHelpers.cjs +64 -1
- package/dist/node_modules/antd/es/button/buttonHelpers.js +56 -38
- package/dist/node_modules/antd/es/button/index.cjs +4 -1
- package/dist/node_modules/antd/es/button/index.js +2 -2
- package/dist/node_modules/antd/es/button/style/compact.cjs +54 -1
- package/dist/node_modules/antd/es/button/style/compact.js +28 -25
- package/dist/node_modules/antd/es/button/style/group.cjs +70 -1
- package/dist/node_modules/antd/es/button/style/group.js +25 -24
- package/dist/node_modules/antd/es/button/style/index.cjs +491 -1
- package/dist/node_modules/antd/es/button/style/index.js +327 -295
- package/dist/node_modules/antd/es/button/style/token.cjs +93 -1
- package/dist/node_modules/antd/es/button/style/token.js +66 -57
- package/dist/node_modules/antd/es/calendar/locale/en_US.cjs +3 -1
- package/dist/node_modules/antd/es/calendar/locale/en_US.js +2 -2
- package/dist/node_modules/antd/es/card/Card.cjs +207 -1
- package/dist/node_modules/antd/es/card/Card.js +167 -138
- package/dist/node_modules/antd/es/card/Grid.cjs +50 -1
- package/dist/node_modules/antd/es/card/Grid.js +23 -20
- package/dist/node_modules/antd/es/card/Meta.cjs +62 -1
- package/dist/node_modules/antd/es/card/Meta.js +38 -30
- package/dist/node_modules/antd/es/card/index.cjs +11 -1
- package/dist/node_modules/antd/es/card/index.js +10 -8
- package/dist/node_modules/antd/es/card/style/index.cjs +361 -10
- package/dist/node_modules/antd/es/card/style/index.js +194 -185
- package/dist/node_modules/antd/es/checkbox/Checkbox.cjs +148 -1
- package/dist/node_modules/antd/es/checkbox/Checkbox.js +122 -85
- package/dist/node_modules/antd/es/checkbox/Group.cjs +134 -1
- package/dist/node_modules/antd/es/checkbox/Group.js +107 -75
- package/dist/node_modules/antd/es/checkbox/GroupContext.cjs +4 -1
- package/dist/node_modules/antd/es/checkbox/GroupContext.js +3 -3
- package/dist/node_modules/antd/es/checkbox/index.cjs +10 -1
- package/dist/node_modules/antd/es/checkbox/index.js +9 -7
- package/dist/node_modules/antd/es/checkbox/style/index.cjs +247 -7
- package/dist/node_modules/antd/es/checkbox/style/index.js +81 -80
- package/dist/node_modules/antd/es/checkbox/useBubbleLock.cjs +25 -1
- package/dist/node_modules/antd/es/checkbox/useBubbleLock.js +21 -12
- package/dist/node_modules/antd/es/color-picker/color.cjs +118 -1
- package/dist/node_modules/antd/es/color-picker/color.js +68 -45
- package/dist/node_modules/antd/es/color-picker/components/ColorPresets.cjs +20 -1
- package/dist/node_modules/antd/es/color-picker/components/ColorPresets.js +13 -9
- package/dist/node_modules/antd/es/config-provider/DisabledContext.cjs +35 -1
- package/dist/node_modules/antd/es/config-provider/DisabledContext.js +12 -11
- package/dist/node_modules/antd/es/config-provider/MotionWrapper.cjs +57 -1
- package/dist/node_modules/antd/es/config-provider/MotionWrapper.js +19 -12
- package/dist/node_modules/antd/es/config-provider/PropWarning.cjs +35 -1
- package/dist/node_modules/antd/es/config-provider/PropWarning.js +13 -9
- package/dist/node_modules/antd/es/config-provider/SizeContext.cjs +35 -1
- package/dist/node_modules/antd/es/config-provider/SizeContext.js +12 -11
- package/dist/node_modules/antd/es/config-provider/UnstableContext.cjs +41 -1
- package/dist/node_modules/antd/es/config-provider/UnstableContext.js +16 -12
- package/dist/node_modules/antd/es/config-provider/context.cjs +62 -1
- package/dist/node_modules/antd/es/config-provider/context.js +38 -25
- package/dist/node_modules/antd/es/config-provider/cssVariables.cjs +69 -4
- package/dist/node_modules/antd/es/config-provider/cssVariables.js +62 -29
- package/dist/node_modules/antd/es/config-provider/defaultRenderEmpty.cjs +40 -1
- package/dist/node_modules/antd/es/config-provider/defaultRenderEmpty.js +18 -16
- package/dist/node_modules/antd/es/config-provider/hooks/useCSSVarCls.cjs +22 -1
- package/dist/node_modules/antd/es/config-provider/hooks/useCSSVarCls.js +5 -5
- package/dist/node_modules/antd/es/config-provider/hooks/useConfig.cjs +13 -1
- package/dist/node_modules/antd/es/config-provider/hooks/useConfig.js +9 -8
- package/dist/node_modules/antd/es/config-provider/hooks/useSize.cjs +20 -1
- package/dist/node_modules/antd/es/config-provider/hooks/useSize.js +18 -6
- package/dist/node_modules/antd/es/config-provider/hooks/useTheme.cjs +46 -1
- package/dist/node_modules/antd/es/config-provider/hooks/useTheme.js +38 -32
- package/dist/node_modules/antd/es/config-provider/hooks/useThemeKey.cjs +28 -1
- package/dist/node_modules/antd/es/config-provider/hooks/useThemeKey.js +8 -5
- package/dist/node_modules/antd/es/config-provider/index.cjs +414 -1
- package/dist/node_modules/antd/es/config-provider/index.js +369 -296
- package/dist/node_modules/antd/es/date-picker/PickerButton.cjs +27 -1
- package/dist/node_modules/antd/es/date-picker/PickerButton.js +5 -5
- package/dist/node_modules/antd/es/date-picker/generatePicker/constant.cjs +16 -1
- package/dist/node_modules/antd/es/date-picker/generatePicker/constant.js +15 -11
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateRangePicker.cjs +170 -1
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateRangePicker.js +131 -109
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateSinglePicker.cjs +202 -1
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateSinglePicker.js +160 -121
- package/dist/node_modules/antd/es/date-picker/generatePicker/index.cjs +26 -1
- package/dist/node_modules/antd/es/date-picker/generatePicker/index.js +23 -12
- package/dist/node_modules/antd/es/date-picker/generatePicker/useComponents.cjs +9 -1
- package/dist/node_modules/antd/es/date-picker/generatePicker/useComponents.js +7 -7
- package/dist/node_modules/antd/es/date-picker/index.cjs +11 -1
- package/dist/node_modules/antd/es/date-picker/index.js +10 -9
- package/dist/node_modules/antd/es/date-picker/locale/en_US.cjs +19 -1
- package/dist/node_modules/antd/es/date-picker/locale/en_US.js +6 -6
- package/dist/node_modules/antd/es/date-picker/style/index.cjs +462 -11
- package/dist/node_modules/antd/es/date-picker/style/index.js +207 -202
- package/dist/node_modules/antd/es/date-picker/style/multiple.cjs +114 -1
- package/dist/node_modules/antd/es/date-picker/style/multiple.js +50 -45
- package/dist/node_modules/antd/es/date-picker/style/panel.cjs +618 -12
- package/dist/node_modules/antd/es/date-picker/style/panel.js +267 -249
- package/dist/node_modules/antd/es/date-picker/style/token.cjs +74 -1
- package/dist/node_modules/antd/es/date-picker/style/token.js +55 -46
- package/dist/node_modules/antd/es/date-picker/style/variants.cjs +52 -1
- package/dist/node_modules/antd/es/date-picker/style/variants.js +20 -20
- package/dist/node_modules/antd/es/date-picker/util.cjs +89 -1
- package/dist/node_modules/antd/es/date-picker/util.js +63 -19
- package/dist/node_modules/antd/es/dropdown/dropdown-button.cjs +132 -1
- package/dist/node_modules/antd/es/dropdown/dropdown-button.js +108 -89
- package/dist/node_modules/antd/es/dropdown/dropdown.cjs +235 -1
- package/dist/node_modules/antd/es/dropdown/dropdown.js +188 -130
- package/dist/node_modules/antd/es/dropdown/index.cjs +6 -1
- package/dist/node_modules/antd/es/dropdown/index.js +5 -5
- package/dist/node_modules/antd/es/dropdown/style/index.cjs +320 -15
- package/dist/node_modules/antd/es/dropdown/style/index.js +154 -147
- package/dist/node_modules/antd/es/dropdown/style/status.cjs +24 -1
- package/dist/node_modules/antd/es/dropdown/style/status.js +14 -13
- package/dist/node_modules/antd/es/empty/empty.cjs +95 -1
- package/dist/node_modules/antd/es/empty/empty.js +26 -21
- package/dist/node_modules/antd/es/empty/index.cjs +103 -1
- package/dist/node_modules/antd/es/empty/index.js +78 -62
- package/dist/node_modules/antd/es/empty/simple.cjs +85 -1
- package/dist/node_modules/antd/es/empty/simple.js +36 -31
- package/dist/node_modules/antd/es/empty/style/index.cjs +88 -1
- package/dist/node_modules/antd/es/empty/style/index.js +45 -43
- package/dist/node_modules/antd/es/form/ErrorList.cjs +117 -1
- package/dist/node_modules/antd/es/form/ErrorList.js +84 -66
- package/dist/node_modules/antd/es/form/Form.cjs +178 -1
- package/dist/node_modules/antd/es/form/Form.js +145 -109
- package/dist/node_modules/antd/es/form/FormItem/ItemHolder.cjs +174 -1
- package/dist/node_modules/antd/es/form/FormItem/ItemHolder.js +112 -95
- package/dist/node_modules/antd/es/form/FormItem/StatusProvider.cjs +92 -1
- package/dist/node_modules/antd/es/form/FormItem/StatusProvider.js +67 -55
- package/dist/node_modules/antd/es/form/FormItem/index.cjs +275 -1
- package/dist/node_modules/antd/es/form/FormItem/index.js +232 -148
- package/dist/node_modules/antd/es/form/FormItemInput.cjs +141 -1
- package/dist/node_modules/antd/es/form/FormItemInput.js +113 -83
- package/dist/node_modules/antd/es/form/FormItemLabel.cjs +124 -1
- package/dist/node_modules/antd/es/form/FormItemLabel.js +91 -70
- package/dist/node_modules/antd/es/form/FormList.cjs +62 -1
- package/dist/node_modules/antd/es/form/FormList.js +32 -29
- package/dist/node_modules/antd/es/form/context.cjs +73 -1
- package/dist/node_modules/antd/es/form/context.js +47 -31
- package/dist/node_modules/antd/es/form/hooks/useChildren.cjs +10 -1
- package/dist/node_modules/antd/es/form/hooks/useChildren.js +8 -7
- package/dist/node_modules/antd/es/form/hooks/useDebounce.cjs +34 -1
- package/dist/node_modules/antd/es/form/hooks/useDebounce.js +11 -10
- package/dist/node_modules/antd/es/form/hooks/useForm.cjs +96 -1
- package/dist/node_modules/antd/es/form/hooks/useForm.js +64 -43
- package/dist/node_modules/antd/es/form/hooks/useFormInstance.cjs +29 -1
- package/dist/node_modules/antd/es/form/hooks/useFormInstance.js +7 -7
- package/dist/node_modules/antd/es/form/hooks/useFormItemStatus.cjs +41 -1
- package/dist/node_modules/antd/es/form/hooks/useFormItemStatus.js +15 -15
- package/dist/node_modules/antd/es/form/hooks/useFormWarning.cjs +39 -1
- package/dist/node_modules/antd/es/form/hooks/useFormWarning.js +16 -13
- package/dist/node_modules/antd/es/form/hooks/useFrameState.cjs +57 -1
- package/dist/node_modules/antd/es/form/hooks/useFrameState.js +34 -17
- package/dist/node_modules/antd/es/form/hooks/useItemRef.cjs +41 -1
- package/dist/node_modules/antd/es/form/hooks/useItemRef.js +18 -11
- package/dist/node_modules/antd/es/form/hooks/useVariants.cjs +45 -1
- package/dist/node_modules/antd/es/form/hooks/useVariants.js +22 -14
- package/dist/node_modules/antd/es/form/index.cjs +23 -1
- package/dist/node_modules/antd/es/form/index.js +20 -20
- package/dist/node_modules/antd/es/form/style/explain.cjs +45 -3
- package/dist/node_modules/antd/es/form/style/explain.js +16 -14
- package/dist/node_modules/antd/es/form/style/fallbackCmp.cjs +39 -1
- package/dist/node_modules/antd/es/form/style/fallbackCmp.js +13 -12
- package/dist/node_modules/antd/es/form/style/index.cjs +521 -7
- package/dist/node_modules/antd/es/form/style/index.js +223 -206
- package/dist/node_modules/antd/es/form/util.cjs +36 -1
- package/dist/node_modules/antd/es/form/util.js +32 -14
- package/dist/node_modules/antd/es/form/validateMessagesContext.cjs +4 -1
- package/dist/node_modules/antd/es/form/validateMessagesContext.js +3 -3
- package/dist/node_modules/antd/es/grid/RowContext.cjs +4 -1
- package/dist/node_modules/antd/es/grid/RowContext.js +3 -3
- package/dist/node_modules/antd/es/grid/col.cjs +120 -1
- package/dist/node_modules/antd/es/grid/col.js +93 -60
- package/dist/node_modules/antd/es/grid/hooks/useBreakpoint.cjs +23 -1
- package/dist/node_modules/antd/es/grid/hooks/useBreakpoint.js +20 -13
- package/dist/node_modules/antd/es/grid/hooks/useGutter.cjs +29 -1
- package/dist/node_modules/antd/es/grid/hooks/useGutter.js +23 -19
- package/dist/node_modules/antd/es/grid/row.cjs +114 -1
- package/dist/node_modules/antd/es/grid/row.js +87 -63
- package/dist/node_modules/antd/es/grid/style/index.cjs +180 -1
- package/dist/node_modules/antd/es/grid/style/index.js +107 -76
- package/dist/node_modules/antd/es/input/Group.cjs +65 -1
- package/dist/node_modules/antd/es/input/Group.js +43 -32
- package/dist/node_modules/antd/es/input/Input.cjs +166 -1
- package/dist/node_modules/antd/es/input/Input.js +153 -125
- package/dist/node_modules/antd/es/input/OTP/OTPInput.cjs +89 -1
- package/dist/node_modules/antd/es/input/OTP/OTPInput.js +62 -44
- package/dist/node_modules/antd/es/input/OTP/index.cjs +216 -1
- package/dist/node_modules/antd/es/input/OTP/index.js +175 -123
- package/dist/node_modules/antd/es/input/Password.cjs +124 -1
- package/dist/node_modules/antd/es/input/Password.js +93 -61
- package/dist/node_modules/antd/es/input/Search.cjs +169 -1
- package/dist/node_modules/antd/es/input/Search.js +142 -102
- package/dist/node_modules/antd/es/input/TextArea.cjs +148 -1
- package/dist/node_modules/antd/es/input/TextArea.js +110 -97
- package/dist/node_modules/antd/es/input/hooks/useRemovePasswordTimeout.cjs +25 -1
- package/dist/node_modules/antd/es/input/hooks/useRemovePasswordTimeout.js +21 -10
- package/dist/node_modules/antd/es/input/index.cjs +14 -1
- package/dist/node_modules/antd/es/input/index.js +13 -13
- package/dist/node_modules/antd/es/input/style/index.cjs +698 -16
- package/dist/node_modules/antd/es/input/style/index.js +273 -256
- package/dist/node_modules/antd/es/input/style/otp.cjs +51 -1
- package/dist/node_modules/antd/es/input/style/otp.js +21 -20
- package/dist/node_modules/antd/es/input/style/textarea.cjs +104 -4
- package/dist/node_modules/antd/es/input/style/textarea.js +38 -36
- package/dist/node_modules/antd/es/input/style/token.cjs +74 -1
- package/dist/node_modules/antd/es/input/style/token.js +53 -47
- package/dist/node_modules/antd/es/input/style/variants.cjs +322 -1
- package/dist/node_modules/antd/es/input/style/variants.js +195 -180
- package/dist/node_modules/antd/es/input/utils.cjs +5 -1
- package/dist/node_modules/antd/es/input/utils.js +3 -3
- package/dist/node_modules/antd/es/layout/Sider.cjs +193 -1
- package/dist/node_modules/antd/es/layout/Sider.js +147 -108
- package/dist/node_modules/antd/es/layout/context.cjs +28 -1
- package/dist/node_modules/antd/es/layout/context.js +3 -3
- package/dist/node_modules/antd/es/layout/style/index.cjs +130 -1
- package/dist/node_modules/antd/es/layout/style/index.js +66 -63
- package/dist/node_modules/antd/es/layout/style/sider.cjs +130 -1
- package/dist/node_modules/antd/es/layout/style/sider.js +60 -59
- package/dist/node_modules/antd/es/locale/context.cjs +4 -1
- package/dist/node_modules/antd/es/locale/context.js +3 -3
- package/dist/node_modules/antd/es/locale/en_US.cjs +146 -1
- package/dist/node_modules/antd/es/locale/en_US.js +23 -22
- package/dist/node_modules/antd/es/locale/index.cjs +52 -1
- package/dist/node_modules/antd/es/locale/index.js +27 -21
- package/dist/node_modules/antd/es/locale/useLocale.cjs +41 -1
- package/dist/node_modules/antd/es/locale/useLocale.js +20 -14
- package/dist/node_modules/antd/es/menu/MenuContext.cjs +8 -1
- package/dist/node_modules/antd/es/menu/MenuContext.js +5 -5
- package/dist/node_modules/antd/es/menu/MenuDivider.cjs +52 -1
- package/dist/node_modules/antd/es/menu/MenuDivider.js +27 -23
- package/dist/node_modules/antd/es/menu/MenuItem.cjs +100 -1
- package/dist/node_modules/antd/es/menu/MenuItem.js +75 -56
- package/dist/node_modules/antd/es/menu/OverrideContext.cjs +59 -1
- package/dist/node_modules/antd/es/menu/OverrideContext.js +33 -27
- package/dist/node_modules/antd/es/menu/SubMenu.cjs +74 -1
- package/dist/node_modules/antd/es/menu/SubMenu.js +48 -44
- package/dist/node_modules/antd/es/menu/index.cjs +50 -1
- package/dist/node_modules/antd/es/menu/index.js +28 -24
- package/dist/node_modules/antd/es/menu/menu.cjs +160 -1
- package/dist/node_modules/antd/es/menu/menu.js +127 -105
- package/dist/node_modules/antd/es/menu/style/horizontal.cjs +58 -3
- package/dist/node_modules/antd/es/menu/style/horizontal.js +22 -22
- package/dist/node_modules/antd/es/menu/style/index.cjs +579 -2
- package/dist/node_modules/antd/es/menu/style/index.js +338 -301
- package/dist/node_modules/antd/es/menu/style/rtl.cjs +41 -2
- package/dist/node_modules/antd/es/menu/style/rtl.js +14 -14
- package/dist/node_modules/antd/es/menu/style/theme.cjs +228 -1
- package/dist/node_modules/antd/es/menu/style/theme.js +113 -112
- package/dist/node_modules/antd/es/menu/style/vertical.cjs +200 -9
- package/dist/node_modules/antd/es/menu/style/vertical.js +92 -89
- package/dist/node_modules/antd/es/modal/locale.cjs +18 -1
- package/dist/node_modules/antd/es/modal/locale.js +14 -11
- package/dist/node_modules/antd/es/pagination/Pagination.cjs +206 -1
- package/dist/node_modules/antd/es/pagination/Pagination.js +153 -122
- package/dist/node_modules/antd/es/pagination/index.cjs +3 -1
- package/dist/node_modules/antd/es/pagination/index.js +2 -2
- package/dist/node_modules/antd/es/pagination/style/bordered.cjs +105 -1
- package/dist/node_modules/antd/es/pagination/style/bordered.js +56 -55
- package/dist/node_modules/antd/es/pagination/style/index.cjs +545 -16
- package/dist/node_modules/antd/es/pagination/style/index.js +242 -233
- package/dist/node_modules/antd/es/pagination/useShowSizeChanger.cjs +14 -1
- package/dist/node_modules/antd/es/pagination/useShowSizeChanger.js +12 -4
- package/dist/node_modules/antd/es/popconfirm/PurePanel.cjs +117 -1
- package/dist/node_modules/antd/es/popconfirm/PurePanel.js +87 -78
- package/dist/node_modules/antd/es/popconfirm/index.cjs +126 -1
- package/dist/node_modules/antd/es/popconfirm/index.js +98 -77
- package/dist/node_modules/antd/es/popconfirm/style/index.cjs +84 -1
- package/dist/node_modules/antd/es/popconfirm/style/index.js +42 -40
- package/dist/node_modules/antd/es/popover/PurePanel.cjs +100 -1
- package/dist/node_modules/antd/es/popover/PurePanel.js +67 -55
- package/dist/node_modules/antd/es/popover/index.cjs +127 -1
- package/dist/node_modules/antd/es/popover/index.js +98 -76
- package/dist/node_modules/antd/es/popover/style/index.cjs +179 -1
- package/dist/node_modules/antd/es/popover/style/index.js +100 -92
- package/dist/node_modules/antd/es/progress/Circle.cjs +98 -1
- package/dist/node_modules/antd/es/progress/Circle.js +73 -53
- package/dist/node_modules/antd/es/progress/Line.cjs +149 -1
- package/dist/node_modules/antd/es/progress/Line.js +116 -93
- package/dist/node_modules/antd/es/progress/Steps.cjs +65 -1
- package/dist/node_modules/antd/es/progress/Steps.js +37 -31
- package/dist/node_modules/antd/es/progress/index.cjs +3 -1
- package/dist/node_modules/antd/es/progress/index.js +2 -2
- package/dist/node_modules/antd/es/progress/progress.cjs +180 -1
- package/dist/node_modules/antd/es/progress/progress.js +148 -103
- package/dist/node_modules/antd/es/progress/style/index.cjs +322 -1
- package/dist/node_modules/antd/es/progress/style/index.js +140 -131
- package/dist/node_modules/antd/es/progress/utils.cjs +89 -1
- package/dist/node_modules/antd/es/progress/utils.js +80 -40
- package/dist/node_modules/antd/es/radio/context.cjs +30 -1
- package/dist/node_modules/antd/es/radio/context.js +9 -6
- package/dist/node_modules/antd/es/radio/group.cjs +134 -1
- package/dist/node_modules/antd/es/radio/group.js +111 -87
- package/dist/node_modules/antd/es/radio/index.cjs +12 -1
- package/dist/node_modules/antd/es/radio/index.js +10 -10
- package/dist/node_modules/antd/es/radio/radio.cjs +123 -1
- package/dist/node_modules/antd/es/radio/radio.js +96 -71
- package/dist/node_modules/antd/es/radio/radioButton.cjs +52 -1
- package/dist/node_modules/antd/es/radio/radioButton.js +26 -22
- package/dist/node_modules/antd/es/radio/style/index.cjs +477 -2
- package/dist/node_modules/antd/es/radio/style/index.js +250 -235
- package/dist/node_modules/antd/es/result/index.cjs +134 -1
- package/dist/node_modules/antd/es/result/index.js +104 -87
- package/dist/node_modules/antd/es/result/noFound.cjs +255 -1
- package/dist/node_modules/antd/es/result/noFound.js +63 -63
- package/dist/node_modules/antd/es/result/serverError.cjs +295 -1
- package/dist/node_modules/antd/es/result/serverError.js +70 -70
- package/dist/node_modules/antd/es/result/style/index.cjs +128 -1
- package/dist/node_modules/antd/es/result/style/index.js +75 -66
- package/dist/node_modules/antd/es/result/unauthorized.cjs +245 -1
- package/dist/node_modules/antd/es/result/unauthorized.js +58 -58
- package/dist/node_modules/antd/es/segmented/index.cjs +99 -1
- package/dist/node_modules/antd/es/segmented/index.js +73 -61
- package/dist/node_modules/antd/es/segmented/style/index.cjs +232 -1
- package/dist/node_modules/antd/es/segmented/style/index.js +108 -101
- package/dist/node_modules/antd/es/select/index.cjs +246 -1
- package/dist/node_modules/antd/es/select/index.js +200 -148
- package/dist/node_modules/antd/es/select/mergedBuiltinPlacements.cjs +35 -1
- package/dist/node_modules/antd/es/select/mergedBuiltinPlacements.js +15 -14
- package/dist/node_modules/antd/es/select/style/dropdown.cjs +148 -12
- package/dist/node_modules/antd/es/select/style/dropdown.js +72 -65
- package/dist/node_modules/antd/es/select/style/index.cjs +258 -1
- package/dist/node_modules/antd/es/select/style/index.js +91 -87
- package/dist/node_modules/antd/es/select/style/multiple.cjs +298 -6
- package/dist/node_modules/antd/es/select/style/multiple.js +139 -120
- package/dist/node_modules/antd/es/select/style/single.cjs +170 -11
- package/dist/node_modules/antd/es/select/style/single.js +65 -62
- package/dist/node_modules/antd/es/select/style/token.cjs +60 -1
- package/dist/node_modules/antd/es/select/style/token.js +53 -47
- package/dist/node_modules/antd/es/select/style/variants.cjs +229 -1
- package/dist/node_modules/antd/es/select/style/variants.js +156 -146
- package/dist/node_modules/antd/es/select/useIcons.cjs +100 -1
- package/dist/node_modules/antd/es/select/useIcons.js +72 -49
- package/dist/node_modules/antd/es/select/useShowArrow.cjs +5 -1
- package/dist/node_modules/antd/es/select/useShowArrow.js +3 -3
- package/dist/node_modules/antd/es/skeleton/Avatar.cjs +54 -1
- package/dist/node_modules/antd/es/skeleton/Avatar.js +31 -26
- package/dist/node_modules/antd/es/skeleton/Button.cjs +54 -1
- package/dist/node_modules/antd/es/skeleton/Button.js +31 -26
- package/dist/node_modules/antd/es/skeleton/Element.cjs +50 -1
- package/dist/node_modules/antd/es/skeleton/Element.js +27 -24
- package/dist/node_modules/antd/es/skeleton/Image.cjs +57 -1
- package/dist/node_modules/antd/es/skeleton/Image.js +31 -26
- package/dist/node_modules/antd/es/skeleton/Input.cjs +54 -1
- package/dist/node_modules/antd/es/skeleton/Input.js +31 -26
- package/dist/node_modules/antd/es/skeleton/Node.cjs +50 -1
- package/dist/node_modules/antd/es/skeleton/Node.js +27 -23
- package/dist/node_modules/antd/es/skeleton/Paragraph.cjs +59 -1
- package/dist/node_modules/antd/es/skeleton/Paragraph.js +31 -26
- package/dist/node_modules/antd/es/skeleton/Skeleton.cjs +152 -1
- package/dist/node_modules/antd/es/skeleton/Skeleton.js +118 -91
- package/dist/node_modules/antd/es/skeleton/Title.cjs +40 -1
- package/dist/node_modules/antd/es/skeleton/Title.js +13 -13
- package/dist/node_modules/antd/es/skeleton/index.cjs +3 -1
- package/dist/node_modules/antd/es/skeleton/index.js +2 -2
- package/dist/node_modules/antd/es/skeleton/style/index.cjs +328 -8
- package/dist/node_modules/antd/es/skeleton/style/index.js +204 -187
- package/dist/node_modules/antd/es/space/Compact.cjs +122 -1
- package/dist/node_modules/antd/es/space/Compact.js +89 -70
- package/dist/node_modules/antd/es/space/Item.cjs +44 -1
- package/dist/node_modules/antd/es/space/Item.js +21 -18
- package/dist/node_modules/antd/es/space/context.cjs +8 -1
- package/dist/node_modules/antd/es/space/context.js +6 -5
- package/dist/node_modules/antd/es/space/index.cjs +127 -1
- package/dist/node_modules/antd/es/space/index.js +104 -75
- package/dist/node_modules/antd/es/space/style/compact.cjs +18 -1
- package/dist/node_modules/antd/es/space/style/compact.js +5 -5
- package/dist/node_modules/antd/es/space/style/index.cjs +97 -1
- package/dist/node_modules/antd/es/space/style/index.js +30 -28
- package/dist/node_modules/antd/es/spin/Indicator/Looper.cjs +44 -1
- package/dist/node_modules/antd/es/spin/Indicator/Looper.js +21 -18
- package/dist/node_modules/antd/es/spin/Indicator/Progress.cjs +85 -1
- package/dist/node_modules/antd/es/spin/Indicator/Progress.js +53 -41
- package/dist/node_modules/antd/es/spin/Indicator/index.cjs +43 -1
- package/dist/node_modules/antd/es/spin/Indicator/index.js +20 -16
- package/dist/node_modules/antd/es/spin/index.cjs +136 -1
- package/dist/node_modules/antd/es/spin/index.js +105 -86
- package/dist/node_modules/antd/es/spin/style/index.cjs +299 -1
- package/dist/node_modules/antd/es/spin/style/index.js +92 -88
- package/dist/node_modules/antd/es/spin/usePercent.cjs +50 -1
- package/dist/node_modules/antd/es/spin/usePercent.js +29 -18
- package/dist/node_modules/antd/es/style/compact-item-vertical.cjs +43 -1
- package/dist/node_modules/antd/es/style/compact-item-vertical.js +13 -13
- package/dist/node_modules/antd/es/style/compact-item.cjs +64 -1
- package/dist/node_modules/antd/es/style/compact-item.js +30 -26
- package/dist/node_modules/antd/es/style/index.cjs +165 -1
- package/dist/node_modules/antd/es/style/index.js +67 -53
- package/dist/node_modules/antd/es/style/motion/collapse.cjs +19 -3
- package/dist/node_modules/antd/es/style/motion/collapse.js +9 -9
- package/dist/node_modules/antd/es/style/motion/motion.cjs +37 -7
- package/dist/node_modules/antd/es/style/motion/motion.js +19 -16
- package/dist/node_modules/antd/es/style/motion/move.cjs +159 -4
- package/dist/node_modules/antd/es/style/motion/move.js +51 -40
- package/dist/node_modules/antd/es/style/motion/slide.cjs +164 -4
- package/dist/node_modules/antd/es/style/motion/slide.js +51 -40
- package/dist/node_modules/antd/es/style/motion/zoom.cjs +209 -4
- package/dist/node_modules/antd/es/style/motion/zoom.js +69 -54
- package/dist/node_modules/antd/es/style/placementArrow.cjs +170 -1
- package/dist/node_modules/antd/es/style/placementArrow.js +85 -79
- package/dist/node_modules/antd/es/style/roundedArrow.cjs +90 -1
- package/dist/node_modules/antd/es/style/roundedArrow.js +48 -31
- package/dist/node_modules/antd/es/switch/index.cjs +102 -1
- package/dist/node_modules/antd/es/switch/index.js +76 -60
- package/dist/node_modules/antd/es/switch/style/index.cjs +336 -1
- package/dist/node_modules/antd/es/switch/style/index.js +205 -187
- package/dist/node_modules/antd/es/table/Column.cjs +3 -1
- package/dist/node_modules/antd/es/table/Column.js +2 -2
- package/dist/node_modules/antd/es/table/ColumnGroup.cjs +3 -1
- package/dist/node_modules/antd/es/table/ColumnGroup.js +2 -2
- package/dist/node_modules/antd/es/table/ExpandIcon.cjs +49 -1
- package/dist/node_modules/antd/es/table/ExpandIcon.js +22 -20
- package/dist/node_modules/antd/es/table/InternalTable.cjs +402 -1
- package/dist/node_modules/antd/es/table/InternalTable.js +347 -224
- package/dist/node_modules/antd/es/table/RcTable/VirtualTable.cjs +15 -1
- package/dist/node_modules/antd/es/table/RcTable/VirtualTable.js +9 -8
- package/dist/node_modules/antd/es/table/RcTable/index.cjs +15 -1
- package/dist/node_modules/antd/es/table/RcTable/index.js +9 -8
- package/dist/node_modules/antd/es/table/Table.cjs +51 -1
- package/dist/node_modules/antd/es/table/Table.js +27 -23
- package/dist/node_modules/antd/es/table/hooks/useContainerWidth.cjs +16 -1
- package/dist/node_modules/antd/es/table/hooks/useContainerWidth.js +12 -9
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterDropdown.cjs +486 -1
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterDropdown.js +399 -288
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterSearch.cjs +47 -1
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterSearch.js +23 -20
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterWrapper.cjs +40 -1
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterWrapper.js +19 -14
- package/dist/node_modules/antd/es/table/hooks/useFilter/index.cjs +223 -1
- package/dist/node_modules/antd/es/table/hooks/useFilter/index.js +182 -130
- package/dist/node_modules/antd/es/table/hooks/useLazyKVMap.cjs +49 -1
- package/dist/node_modules/antd/es/table/hooks/useLazyKVMap.js +23 -19
- package/dist/node_modules/antd/es/table/hooks/usePagination.cjs +67 -1
- package/dist/node_modules/antd/es/table/hooks/usePagination.js +57 -39
- package/dist/node_modules/antd/es/table/hooks/useSelection.cjs +533 -1
- package/dist/node_modules/antd/es/table/hooks/useSelection.js +468 -299
- package/dist/node_modules/antd/es/table/hooks/useSorter.cjs +392 -1
- package/dist/node_modules/antd/es/table/hooks/useSorter.js +332 -203
- package/dist/node_modules/antd/es/table/hooks/useTitleColumns.cjs +38 -1
- package/dist/node_modules/antd/es/table/hooks/useTitleColumns.js +18 -7
- package/dist/node_modules/antd/es/table/index.cjs +3 -1
- package/dist/node_modules/antd/es/table/index.js +2 -2
- package/dist/node_modules/antd/es/table/style/bordered.cjs +151 -10
- package/dist/node_modules/antd/es/table/style/bordered.js +72 -53
- package/dist/node_modules/antd/es/table/style/ellipsis.cjs +32 -4
- package/dist/node_modules/antd/es/table/style/ellipsis.js +11 -11
- package/dist/node_modules/antd/es/table/style/empty.cjs +21 -1
- package/dist/node_modules/antd/es/table/style/empty.js +12 -9
- package/dist/node_modules/antd/es/table/style/expand.cjs +134 -1
- package/dist/node_modules/antd/es/table/style/expand.js +58 -56
- package/dist/node_modules/antd/es/table/style/filter.cjs +167 -1
- package/dist/node_modules/antd/es/table/style/filter.js +85 -81
- package/dist/node_modules/antd/es/table/style/fixed.cjs +121 -21
- package/dist/node_modules/antd/es/table/style/fixed.js +50 -49
- package/dist/node_modules/antd/es/table/style/index.cjs +333 -10
- package/dist/node_modules/antd/es/table/style/index.js +236 -221
- package/dist/node_modules/antd/es/table/style/pagination.cjs +46 -1
- package/dist/node_modules/antd/es/table/style/pagination.js +12 -12
- package/dist/node_modules/antd/es/table/style/radius.cjs +58 -1
- package/dist/node_modules/antd/es/table/style/radius.js +17 -17
- package/dist/node_modules/antd/es/table/style/rtl.cjs +46 -1
- package/dist/node_modules/antd/es/table/style/rtl.js +10 -10
- package/dist/node_modules/antd/es/table/style/selection.cjs +107 -5
- package/dist/node_modules/antd/es/table/style/selection.js +53 -53
- package/dist/node_modules/antd/es/table/style/size.cjs +56 -8
- package/dist/node_modules/antd/es/table/style/size.js +28 -27
- package/dist/node_modules/antd/es/table/style/sorter.cjs +94 -4
- package/dist/node_modules/antd/es/table/style/sorter.js +32 -32
- package/dist/node_modules/antd/es/table/style/sticky.cjs +67 -1
- package/dist/node_modules/antd/es/table/style/sticky.js +30 -29
- package/dist/node_modules/antd/es/table/style/summary.cjs +40 -1
- package/dist/node_modules/antd/es/table/style/summary.js +16 -15
- package/dist/node_modules/antd/es/table/style/virtual.cjs +85 -4
- package/dist/node_modules/antd/es/table/style/virtual.js +35 -33
- package/dist/node_modules/antd/es/table/util.cjs +30 -1
- package/dist/node_modules/antd/es/table/util.js +27 -10
- package/dist/node_modules/antd/es/tabs/TabPane.cjs +6 -1
- package/dist/node_modules/antd/es/tabs/TabPane.js +5 -3
- package/dist/node_modules/antd/es/tabs/hooks/useAnimateConfig.cjs +36 -1
- package/dist/node_modules/antd/es/tabs/hooks/useAnimateConfig.js +33 -22
- package/dist/node_modules/antd/es/tabs/hooks/useLegacyItems.cjs +63 -1
- package/dist/node_modules/antd/es/tabs/hooks/useLegacyItems.js +35 -27
- package/dist/node_modules/antd/es/tabs/index.cjs +134 -1
- package/dist/node_modules/antd/es/tabs/index.js +105 -90
- package/dist/node_modules/antd/es/tabs/style/index.cjs +851 -3
- package/dist/node_modules/antd/es/tabs/style/index.js +384 -374
- package/dist/node_modules/antd/es/tabs/style/motion.cjs +41 -1
- package/dist/node_modules/antd/es/tabs/style/motion.js +11 -11
- package/dist/node_modules/antd/es/theme/context.cjs +13 -1
- package/dist/node_modules/antd/es/theme/context.js +10 -9
- package/dist/node_modules/antd/es/theme/interface/presetColors.cjs +3 -1
- package/dist/node_modules/antd/es/theme/interface/presetColors.js +2 -2
- package/dist/node_modules/antd/es/theme/themes/default/colorAlgorithm.cjs +9 -1
- package/dist/node_modules/antd/es/theme/themes/default/colorAlgorithm.js +8 -4
- package/dist/node_modules/antd/es/theme/themes/default/colors.cjs +50 -1
- package/dist/node_modules/antd/es/theme/themes/default/colors.js +39 -37
- package/dist/node_modules/antd/es/theme/themes/default/index.cjs +32 -1
- package/dist/node_modules/antd/es/theme/themes/default/index.js +28 -20
- package/dist/node_modules/antd/es/theme/themes/default/theme.cjs +15 -1
- package/dist/node_modules/antd/es/theme/themes/default/theme.js +4 -4
- package/dist/node_modules/antd/es/theme/themes/seed.cjs +69 -2
- package/dist/node_modules/antd/es/theme/themes/seed.js +8 -7
- package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.cjs +86 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.js +80 -71
- package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.cjs +19 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.js +13 -13
- package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.cjs +12 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.js +7 -7
- package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.cjs +36 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.js +32 -24
- package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.cjs +22 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.js +15 -12
- package/dist/node_modules/antd/es/theme/themes/shared/genRadius.cjs +43 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genRadius.js +40 -9
- package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.cjs +28 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.js +14 -14
- package/dist/node_modules/antd/es/theme/useToken.cjs +132 -1
- package/dist/node_modules/antd/es/theme/useToken.js +112 -97
- package/dist/node_modules/antd/es/theme/util/alias.cjs +149 -12
- package/dist/node_modules/antd/es/theme/util/alias.js +108 -97
- package/dist/node_modules/antd/es/theme/util/genPresetColor.cjs +17 -1
- package/dist/node_modules/antd/es/theme/util/genPresetColor.js +13 -10
- package/dist/node_modules/antd/es/theme/util/genStyleUtils.cjs +52 -1
- package/dist/node_modules/antd/es/theme/util/genStyleUtils.js +35 -34
- package/dist/node_modules/antd/es/theme/util/getAlphaColor.cjs +41 -1
- package/dist/node_modules/antd/es/theme/util/getAlphaColor.js +32 -28
- package/dist/node_modules/antd/es/theme/util/useResetIconStyle.cjs +28 -1
- package/dist/node_modules/antd/es/theme/util/useResetIconStyle.js +11 -11
- package/dist/node_modules/antd/es/time-picker/locale/en_US.cjs +6 -1
- package/dist/node_modules/antd/es/time-picker/locale/en_US.js +2 -2
- package/dist/node_modules/antd/es/tooltip/PurePanel.cjs +59 -1
- package/dist/node_modules/antd/es/tooltip/PurePanel.js +34 -27
- package/dist/node_modules/antd/es/tooltip/index.cjs +221 -1
- package/dist/node_modules/antd/es/tooltip/index.js +172 -125
- package/dist/node_modules/antd/es/tooltip/style/index.cjs +152 -1
- package/dist/node_modules/antd/es/tooltip/style/index.js +83 -77
- package/dist/node_modules/antd/es/tooltip/util.cjs +21 -1
- package/dist/node_modules/antd/es/tooltip/util.js +18 -11
- package/dist/node_modules/antd/es/tree/DirectoryTree.cjs +177 -1
- package/dist/node_modules/antd/es/tree/DirectoryTree.js +147 -93
- package/dist/node_modules/antd/es/tree/Tree.cjs +122 -1
- package/dist/node_modules/antd/es/tree/Tree.js +94 -78
- package/dist/node_modules/antd/es/tree/index.cjs +10 -1
- package/dist/node_modules/antd/es/tree/index.js +7 -7
- package/dist/node_modules/antd/es/tree/style/directory.cjs +55 -1
- package/dist/node_modules/antd/es/tree/style/directory.js +22 -22
- package/dist/node_modules/antd/es/tree/style/index.cjs +386 -1
- package/dist/node_modules/antd/es/tree/style/index.js +155 -144
- package/dist/node_modules/antd/es/tree/utils/dictUtil.cjs +73 -1
- package/dist/node_modules/antd/es/tree/utils/dictUtil.js +64 -44
- package/dist/node_modules/antd/es/tree/utils/dropIndicator.cjs +37 -1
- package/dist/node_modules/antd/es/tree/utils/dropIndicator.js +24 -20
- package/dist/node_modules/antd/es/tree/utils/iconUtil.cjs +95 -1
- package/dist/node_modules/antd/es/tree/utils/iconUtil.js +67 -44
- package/dist/node_modules/antd/es/typography/Base/CopyBtn.cjs +62 -1
- package/dist/node_modules/antd/es/typography/Base/CopyBtn.js +38 -33
- package/dist/node_modules/antd/es/typography/Base/Ellipsis.cjs +202 -1
- package/dist/node_modules/antd/es/typography/Base/Ellipsis.js +144 -98
- package/dist/node_modules/antd/es/typography/Base/EllipsisTooltip.cjs +40 -1
- package/dist/node_modules/antd/es/typography/Base/EllipsisTooltip.js +18 -13
- package/dist/node_modules/antd/es/typography/Base/index.cjs +354 -1
- package/dist/node_modules/antd/es/typography/Base/index.js +306 -217
- package/dist/node_modules/antd/es/typography/Base/util.cjs +33 -1
- package/dist/node_modules/antd/es/typography/Base/util.js +29 -16
- package/dist/node_modules/antd/es/typography/Editable.cjs +132 -1
- package/dist/node_modules/antd/es/typography/Editable.js +101 -79
- package/dist/node_modules/antd/es/typography/Link.cjs +51 -1
- package/dist/node_modules/antd/es/typography/Link.js +23 -21
- package/dist/node_modules/antd/es/typography/Paragraph.cjs +28 -1
- package/dist/node_modules/antd/es/typography/Paragraph.js +6 -6
- package/dist/node_modules/antd/es/typography/Text.cjs +55 -1
- package/dist/node_modules/antd/es/typography/Text.js +29 -22
- package/dist/node_modules/antd/es/typography/Title.cjs +48 -1
- package/dist/node_modules/antd/es/typography/Title.js +22 -20
- package/dist/node_modules/antd/es/typography/Typography.cjs +76 -1
- package/dist/node_modules/antd/es/typography/Typography.js +51 -39
- package/dist/node_modules/antd/es/typography/hooks/useCopyClick.cjs +96 -1
- package/dist/node_modules/antd/es/typography/hooks/useCopyClick.js +58 -41
- package/dist/node_modules/antd/es/typography/hooks/useMergedConfig.cjs +28 -1
- package/dist/node_modules/antd/es/typography/hooks/useMergedConfig.js +7 -7
- package/dist/node_modules/antd/es/typography/hooks/usePrevious.cjs +10 -1
- package/dist/node_modules/antd/es/typography/hooks/usePrevious.js +8 -7
- package/dist/node_modules/antd/es/typography/hooks/useTooltipProps.cjs +23 -1
- package/dist/node_modules/antd/es/typography/hooks/useTooltipProps.js +22 -11
- package/dist/node_modules/antd/es/typography/index.cjs +12 -1
- package/dist/node_modules/antd/es/typography/index.js +11 -11
- package/dist/node_modules/antd/es/typography/style/index.cjs +113 -12
- package/dist/node_modules/antd/es/typography/style/index.js +65 -45
- package/dist/node_modules/antd/es/typography/style/mixins.cjs +236 -6
- package/dist/node_modules/antd/es/typography/style/mixins.js +74 -59
- package/dist/node_modules/antd/es/version/index.cjs +3 -1
- package/dist/node_modules/antd/es/version/index.js +2 -2
- package/dist/node_modules/antd/es/version/version.cjs +3 -1
- package/dist/node_modules/antd/es/version/version.js +2 -2
- package/dist/node_modules/classnames/index.cjs +62 -2
- package/dist/node_modules/classnames/index.js +51 -27
- package/dist/node_modules/clsx/dist/clsx.m.cjs +15 -1
- package/dist/node_modules/clsx/dist/clsx.m.js +11 -11
- package/dist/node_modules/compute-scroll-into-view/dist/index.cjs +57 -1
- package/dist/node_modules/compute-scroll-into-view/dist/index.js +45 -45
- package/dist/node_modules/copy-to-clipboard/index.cjs +100 -1
- package/dist/node_modules/copy-to-clipboard/index.js +88 -36
- package/dist/node_modules/date-fns/_lib/addLeadingZeros.cjs +7 -1
- package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +5 -4
- package/dist/node_modules/date-fns/_lib/defaultOptions.cjs +6 -1
- package/dist/node_modules/date-fns/_lib/defaultOptions.js +4 -4
- package/dist/node_modules/date-fns/_lib/format/formatters.cjs +652 -1
- package/dist/node_modules/date-fns/_lib/format/formatters.js +263 -194
- package/dist/node_modules/date-fns/_lib/format/lightFormatters.cjs +61 -1
- package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +33 -30
- package/dist/node_modules/date-fns/_lib/format/longFormatters.cjs +57 -1
- package/dist/node_modules/date-fns/_lib/format/longFormatters.js +33 -27
- package/dist/node_modules/date-fns/_lib/getRoundingMethod.cjs +9 -1
- package/dist/node_modules/date-fns/_lib/getRoundingMethod.js +6 -5
- package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.cjs +19 -1
- package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +14 -12
- package/dist/node_modules/date-fns/_lib/protectedTokens.cjs +22 -1
- package/dist/node_modules/date-fns/_lib/protectedTokens.js +17 -14
- package/dist/node_modules/date-fns/compareAsc.cjs +17 -1
- package/dist/node_modules/date-fns/compareAsc.js +14 -6
- package/dist/node_modules/date-fns/constants.cjs +9 -1
- package/dist/node_modules/date-fns/constants.js +8 -5
- package/dist/node_modules/date-fns/constructFrom.cjs +11 -1
- package/dist/node_modules/date-fns/constructFrom.js +8 -4
- package/dist/node_modules/date-fns/constructNow.cjs +8 -1
- package/dist/node_modules/date-fns/constructNow.js +5 -5
- package/dist/node_modules/date-fns/differenceInCalendarDays.cjs +14 -1
- package/dist/node_modules/date-fns/differenceInCalendarDays.js +11 -8
- package/dist/node_modules/date-fns/differenceInCalendarMonths.cjs +12 -1
- package/dist/node_modules/date-fns/differenceInCalendarMonths.js +9 -6
- package/dist/node_modules/date-fns/differenceInMilliseconds.cjs +8 -1
- package/dist/node_modules/date-fns/differenceInMilliseconds.js +5 -5
- package/dist/node_modules/date-fns/differenceInMonths.cjs +31 -1
- package/dist/node_modules/date-fns/differenceInMonths.js +26 -17
- package/dist/node_modules/date-fns/differenceInSeconds.cjs +10 -1
- package/dist/node_modules/date-fns/differenceInSeconds.js +7 -7
- package/dist/node_modules/date-fns/endOfDay.cjs +10 -1
- package/dist/node_modules/date-fns/endOfDay.js +7 -6
- package/dist/node_modules/date-fns/endOfMonth.cjs +12 -1
- package/dist/node_modules/date-fns/endOfMonth.js +9 -6
- package/dist/node_modules/date-fns/format.cjs +79 -1
- package/dist/node_modules/date-fns/format.js +68 -48
- package/dist/node_modules/date-fns/formatDistance.cjs +91 -1
- package/dist/node_modules/date-fns/formatDistance.js +82 -41
- package/dist/node_modules/date-fns/formatDistanceToNow.cjs +9 -1
- package/dist/node_modules/date-fns/formatDistanceToNow.js +6 -6
- package/dist/node_modules/date-fns/getDayOfYear.cjs +13 -1
- package/dist/node_modules/date-fns/getDayOfYear.js +10 -8
- package/dist/node_modules/date-fns/getISOWeek.cjs +13 -1
- package/dist/node_modules/date-fns/getISOWeek.js +10 -9
- package/dist/node_modules/date-fns/getISOWeekYear.cjs +26 -1
- package/dist/node_modules/date-fns/getISOWeekYear.js +23 -12
- package/dist/node_modules/date-fns/getWeek.cjs +13 -1
- package/dist/node_modules/date-fns/getWeek.js +10 -9
- package/dist/node_modules/date-fns/getWeekYear.cjs +30 -1
- package/dist/node_modules/date-fns/getWeekYear.js +27 -14
- package/dist/node_modules/date-fns/isDate.cjs +7 -1
- package/dist/node_modules/date-fns/isDate.js +4 -4
- package/dist/node_modules/date-fns/isLastDayOfMonth.cjs +11 -1
- package/dist/node_modules/date-fns/isLastDayOfMonth.js +8 -8
- package/dist/node_modules/date-fns/isValid.cjs +13 -1
- package/dist/node_modules/date-fns/isValid.js +10 -9
- package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.cjs +9 -1
- package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +6 -5
- package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.cjs +19 -1
- package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +14 -12
- package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.cjs +42 -1
- package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +33 -21
- package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.cjs +15 -1
- package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +12 -11
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.cjs +84 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +21 -6
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.cjs +35 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +15 -12
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.cjs +11 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +4 -3
- package/dist/node_modules/date-fns/locale/en-US/_lib/localize.cjs +163 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +39 -30
- package/dist/node_modules/date-fns/locale/en-US/_lib/match.cjs +121 -1
- package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +46 -34
- package/dist/node_modules/date-fns/locale/en-US.cjs +21 -1
- package/dist/node_modules/date-fns/locale/en-US.js +13 -13
- package/dist/node_modules/date-fns/startOfDay.cjs +10 -1
- package/dist/node_modules/date-fns/startOfDay.js +7 -6
- package/dist/node_modules/date-fns/startOfISOWeek.cjs +8 -1
- package/dist/node_modules/date-fns/startOfISOWeek.js +5 -5
- package/dist/node_modules/date-fns/startOfISOWeekYear.cjs +14 -1
- package/dist/node_modules/date-fns/startOfISOWeekYear.js +11 -8
- package/dist/node_modules/date-fns/startOfWeek.cjs +17 -1
- package/dist/node_modules/date-fns/startOfWeek.js +14 -8
- package/dist/node_modules/date-fns/startOfWeekYear.cjs +19 -1
- package/dist/node_modules/date-fns/startOfWeekYear.js +16 -10
- package/dist/node_modules/date-fns/startOfYear.cjs +13 -1
- package/dist/node_modules/date-fns/startOfYear.js +10 -7
- package/dist/node_modules/date-fns/toDate.cjs +14 -1
- package/dist/node_modules/date-fns/toDate.js +11 -5
- package/dist/node_modules/dayjs/dayjs.min.cjs +285 -1
- package/dist/node_modules/dayjs/dayjs.min.js +223 -219
- package/dist/node_modules/dayjs/plugin/advancedFormat.cjs +57 -1
- package/dist/node_modules/dayjs/plugin/advancedFormat.js +34 -30
- package/dist/node_modules/dayjs/plugin/customParseFormat.cjs +132 -1
- package/dist/node_modules/dayjs/plugin/customParseFormat.js +110 -104
- package/dist/node_modules/dayjs/plugin/localeData.cjs +85 -1
- package/dist/node_modules/dayjs/plugin/localeData.js +68 -64
- package/dist/node_modules/dayjs/plugin/weekOfYear.cjs +32 -1
- package/dist/node_modules/dayjs/plugin/weekOfYear.js +26 -22
- package/dist/node_modules/dayjs/plugin/weekYear.cjs +22 -1
- package/dist/node_modules/dayjs/plugin/weekYear.js +17 -13
- package/dist/node_modules/dayjs/plugin/weekday.cjs +22 -1
- package/dist/node_modules/dayjs/plugin/weekday.js +17 -13
- package/dist/node_modules/debounce/index.cjs +83 -1
- package/dist/node_modules/debounce/index.js +73 -33
- package/dist/node_modules/rc-checkbox/es/index.cjs +91 -1
- package/dist/node_modules/rc-checkbox/es/index.js +60 -49
- package/dist/node_modules/rc-dropdown/es/Dropdown.cjs +102 -1
- package/dist/node_modules/rc-dropdown/es/Dropdown.js +96 -68
- package/dist/node_modules/rc-dropdown/es/Overlay.cjs +22 -1
- package/dist/node_modules/rc-dropdown/es/Overlay.js +19 -12
- package/dist/node_modules/rc-dropdown/es/hooks/useAccessibility.cjs +79 -1
- package/dist/node_modules/rc-dropdown/es/hooks/useAccessibility.js +51 -26
- package/dist/node_modules/rc-dropdown/es/index.cjs +3 -1
- package/dist/node_modules/rc-dropdown/es/index.js +2 -2
- package/dist/node_modules/rc-dropdown/es/placements.cjs +45 -1
- package/dist/node_modules/rc-dropdown/es/placements.js +17 -15
- package/dist/node_modules/rc-field-form/es/Field.cjs +510 -1
- package/dist/node_modules/rc-field-form/es/Field.js +406 -219
- package/dist/node_modules/rc-field-form/es/FieldContext.cjs +63 -1
- package/dist/node_modules/rc-field-form/es/FieldContext.js +39 -36
- package/dist/node_modules/rc-field-form/es/Form.cjs +128 -1
- package/dist/node_modules/rc-field-form/es/Form.js +91 -59
- package/dist/node_modules/rc-field-form/es/FormContext.cjs +79 -1
- package/dist/node_modules/rc-field-form/es/FormContext.js +45 -31
- package/dist/node_modules/rc-field-form/es/List.cjs +148 -1
- package/dist/node_modules/rc-field-form/es/List.js +113 -65
- package/dist/node_modules/rc-field-form/es/ListContext.cjs +23 -1
- package/dist/node_modules/rc-field-form/es/ListContext.js +3 -3
- package/dist/node_modules/rc-field-form/es/index.cjs +42 -1
- package/dist/node_modules/rc-field-form/es/index.js +20 -19
- package/dist/node_modules/rc-field-form/es/useForm.cjs +795 -1
- package/dist/node_modules/rc-field-form/es/useForm.js +677 -444
- package/dist/node_modules/rc-field-form/es/useWatch.cjs +80 -1
- package/dist/node_modules/rc-field-form/es/useWatch.js +66 -39
- package/dist/node_modules/rc-field-form/es/utils/NameMap.cjs +75 -1
- package/dist/node_modules/rc-field-form/es/utils/NameMap.js +50 -40
- package/dist/node_modules/rc-field-form/es/utils/asyncUtil.cjs +28 -1
- package/dist/node_modules/rc-field-form/es/utils/asyncUtil.js +24 -10
- package/dist/node_modules/rc-field-form/es/utils/messages.cjs +50 -1
- package/dist/node_modules/rc-field-form/es/utils/messages.js +16 -15
- package/dist/node_modules/rc-field-form/es/utils/typeUtil.cjs +12 -1
- package/dist/node_modules/rc-field-form/es/utils/typeUtil.js +9 -6
- package/dist/node_modules/rc-field-form/es/utils/validateUtil.cjs +290 -1
- package/dist/node_modules/rc-field-form/es/utils/validateUtil.js +212 -139
- package/dist/node_modules/rc-field-form/es/utils/valueUtil.cjs +88 -1
- package/dist/node_modules/rc-field-form/es/utils/valueUtil.js +77 -48
- package/dist/node_modules/rc-input/es/BaseInput.cjs +94 -1
- package/dist/node_modules/rc-input/es/BaseInput.js +82 -59
- package/dist/node_modules/rc-input/es/Input.cjs +202 -1
- package/dist/node_modules/rc-input/es/Input.js +164 -111
- package/dist/node_modules/rc-input/es/hooks/useCount.cjs +43 -1
- package/dist/node_modules/rc-input/es/hooks/useCount.js +20 -17
- package/dist/node_modules/rc-input/es/index.cjs +6 -1
- package/dist/node_modules/rc-input/es/index.js +2 -2
- package/dist/node_modules/rc-input/es/utils/commonUtils.cjs +66 -1
- package/dist/node_modules/rc-input/es/utils/commonUtils.js +52 -43
- package/dist/node_modules/rc-menu/es/Divider.cjs +38 -1
- package/dist/node_modules/rc-menu/es/Divider.js +15 -10
- package/dist/node_modules/rc-menu/es/Icon.cjs +36 -1
- package/dist/node_modules/rc-menu/es/Icon.js +15 -6
- package/dist/node_modules/rc-menu/es/Menu.cjs +322 -1
- package/dist/node_modules/rc-menu/es/Menu.js +263 -181
- package/dist/node_modules/rc-menu/es/MenuItem.cjs +166 -1
- package/dist/node_modules/rc-menu/es/MenuItem.js +130 -87
- package/dist/node_modules/rc-menu/es/MenuItemGroup.cjs +68 -1
- package/dist/node_modules/rc-menu/es/MenuItemGroup.js +43 -31
- package/dist/node_modules/rc-menu/es/SubMenu/InlineSubMenuList.cjs +75 -1
- package/dist/node_modules/rc-menu/es/SubMenu/InlineSubMenuList.js +52 -37
- package/dist/node_modules/rc-menu/es/SubMenu/PopupTrigger.cjs +84 -1
- package/dist/node_modules/rc-menu/es/SubMenu/PopupTrigger.js +56 -45
- package/dist/node_modules/rc-menu/es/SubMenu/SubMenuList.cjs +40 -1
- package/dist/node_modules/rc-menu/es/SubMenu/SubMenuList.js +19 -16
- package/dist/node_modules/rc-menu/es/SubMenu/index.cjs +232 -1
- package/dist/node_modules/rc-menu/es/SubMenu/index.js +198 -127
- package/dist/node_modules/rc-menu/es/context/IdContext.cjs +35 -1
- package/dist/node_modules/rc-menu/es/context/IdContext.js +13 -10
- package/dist/node_modules/rc-menu/es/context/MenuContext.cjs +52 -1
- package/dist/node_modules/rc-menu/es/context/MenuContext.js +28 -22
- package/dist/node_modules/rc-menu/es/context/PathContext.cjs +40 -1
- package/dist/node_modules/rc-menu/es/context/PathContext.js +18 -17
- package/dist/node_modules/rc-menu/es/context/PrivateContext.cjs +23 -1
- package/dist/node_modules/rc-menu/es/context/PrivateContext.js +3 -3
- package/dist/node_modules/rc-menu/es/hooks/useAccessibility.cjs +230 -1
- package/dist/node_modules/rc-menu/es/hooks/useAccessibility.js +167 -96
- package/dist/node_modules/rc-menu/es/hooks/useActive.cjs +46 -1
- package/dist/node_modules/rc-menu/es/hooks/useActive.js +24 -17
- package/dist/node_modules/rc-menu/es/hooks/useDirectionStyle.cjs +35 -1
- package/dist/node_modules/rc-menu/es/hooks/useDirectionStyle.js +11 -10
- package/dist/node_modules/rc-menu/es/hooks/useKeyRecords.cjs +121 -1
- package/dist/node_modules/rc-menu/es/hooks/useKeyRecords.js +92 -55
- package/dist/node_modules/rc-menu/es/hooks/useMemoCallback.cjs +34 -1
- package/dist/node_modules/rc-menu/es/hooks/useMemoCallback.js +12 -10
- package/dist/node_modules/rc-menu/es/hooks/useUUID.cjs +37 -1
- package/dist/node_modules/rc-menu/es/hooks/useUUID.js +16 -14
- package/dist/node_modules/rc-menu/es/index.cjs +20 -1
- package/dist/node_modules/rc-menu/es/index.js +17 -17
- package/dist/node_modules/rc-menu/es/placements.cjs +77 -1
- package/dist/node_modules/rc-menu/es/placements.js +24 -22
- package/dist/node_modules/rc-menu/es/utils/commonUtil.cjs +46 -1
- package/dist/node_modules/rc-menu/es/utils/commonUtil.js +22 -14
- package/dist/node_modules/rc-menu/es/utils/motionUtil.cjs +11 -1
- package/dist/node_modules/rc-menu/es/utils/motionUtil.js +9 -6
- package/dist/node_modules/rc-menu/es/utils/nodeUtil.cjs +83 -1
- package/dist/node_modules/rc-menu/es/utils/nodeUtil.js +58 -44
- package/dist/node_modules/rc-menu/es/utils/timeUtil.cjs +5 -1
- package/dist/node_modules/rc-menu/es/utils/timeUtil.js +3 -3
- package/dist/node_modules/rc-menu/es/utils/warnUtil.cjs +15 -1
- package/dist/node_modules/rc-menu/es/utils/warnUtil.js +12 -10
- package/dist/node_modules/rc-motion/es/CSSMotion.cjs +120 -1
- package/dist/node_modules/rc-motion/es/CSSMotion.js +90 -61
- package/dist/node_modules/rc-motion/es/CSSMotionList.cjs +143 -1
- package/dist/node_modules/rc-motion/es/CSSMotionList.js +99 -70
- package/dist/node_modules/rc-motion/es/DomWrapper.cjs +41 -1
- package/dist/node_modules/rc-motion/es/DomWrapper.js +17 -15
- package/dist/node_modules/rc-motion/es/context.cjs +33 -1
- package/dist/node_modules/rc-motion/es/context.js +11 -10
- package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.cjs +48 -1
- package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.js +24 -13
- package/dist/node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.cjs +5 -1
- package/dist/node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.js +4 -4
- package/dist/node_modules/rc-motion/es/hooks/useNextFrame.cjs +51 -1
- package/dist/node_modules/rc-motion/es/hooks/useNextFrame.js +25 -20
- package/dist/node_modules/rc-motion/es/hooks/useStatus.cjs +182 -1
- package/dist/node_modules/rc-motion/es/hooks/useStatus.js +150 -80
- package/dist/node_modules/rc-motion/es/hooks/useStepQueue.cjs +74 -1
- package/dist/node_modules/rc-motion/es/hooks/useStepQueue.js +47 -30
- package/dist/node_modules/rc-motion/es/index.cjs +7 -1
- package/dist/node_modules/rc-motion/es/index.js +4 -4
- package/dist/node_modules/rc-motion/es/interface.cjs +21 -1
- package/dist/node_modules/rc-motion/es/interface.js +20 -11
- package/dist/node_modules/rc-motion/es/util/diff.cjs +94 -1
- package/dist/node_modules/rc-motion/es/util/diff.js +82 -52
- package/dist/node_modules/rc-motion/es/util/motion.cjs +73 -1
- package/dist/node_modules/rc-motion/es/util/motion.js +62 -38
- package/dist/node_modules/rc-overflow/es/Item.cjs +77 -1
- package/dist/node_modules/rc-overflow/es/Item.js +52 -42
- package/dist/node_modules/rc-overflow/es/Overflow.cjs +240 -1
- package/dist/node_modules/rc-overflow/es/Overflow.js +200 -124
- package/dist/node_modules/rc-overflow/es/RawItem.cjs +47 -1
- package/dist/node_modules/rc-overflow/es/RawItem.js +24 -21
- package/dist/node_modules/rc-overflow/es/context.cjs +4 -1
- package/dist/node_modules/rc-overflow/es/context.js +3 -3
- package/dist/node_modules/rc-overflow/es/hooks/channelUpdate.cjs +14 -1
- package/dist/node_modules/rc-overflow/es/hooks/channelUpdate.js +11 -10
- package/dist/node_modules/rc-overflow/es/hooks/useEffectState.cjs +55 -1
- package/dist/node_modules/rc-overflow/es/hooks/useEffectState.js +28 -21
- package/dist/node_modules/rc-overflow/es/index.cjs +3 -1
- package/dist/node_modules/rc-overflow/es/index.js +2 -2
- package/dist/node_modules/rc-pagination/es/Options.cjs +105 -1
- package/dist/node_modules/rc-pagination/es/Options.js +101 -61
- package/dist/node_modules/rc-pagination/es/Pager.cjs +29 -1
- package/dist/node_modules/rc-pagination/es/Pager.js +25 -18
- package/dist/node_modules/rc-pagination/es/Pagination.cjs +384 -1
- package/dist/node_modules/rc-pagination/es/Pagination.js +339 -235
- package/dist/node_modules/rc-pagination/es/locale/en_US.cjs +17 -1
- package/dist/node_modules/rc-pagination/es/locale/en_US.js +2 -2
- package/dist/node_modules/rc-pagination/es/locale/zh_CN.cjs +17 -1
- package/dist/node_modules/rc-pagination/es/locale/zh_CN.js +2 -2
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/Footer.cjs +68 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/Footer.js +46 -32
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PopupPanel.cjs +78 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PopupPanel.js +53 -36
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PresetPanel.cjs +48 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PresetPanel.js +23 -20
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/index.cjs +154 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/index.js +123 -80
- package/dist/node_modules/rc-picker/es/PickerInput/RangePicker.cjs +399 -1
- package/dist/node_modules/rc-picker/es/PickerInput/RangePicker.js +343 -227
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Icon.cjs +49 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Icon.js +21 -19
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Input.cjs +268 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Input.js +205 -123
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/MaskFormat.cjs +93 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/MaskFormat.js +69 -46
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/RangeSelector.cjs +186 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/RangeSelector.js +144 -108
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/MultipleDates.cjs +70 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/MultipleDates.js +43 -38
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/index.cjs +155 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/index.js +122 -97
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useClearIcon.cjs +36 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useClearIcon.js +13 -9
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useInputProps.cjs +149 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useInputProps.js +102 -81
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useRootProps.cjs +29 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useRootProps.js +8 -8
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/util.cjs +14 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/util.js +4 -4
- package/dist/node_modules/rc-picker/es/PickerInput/SinglePicker.cjs +353 -1
- package/dist/node_modules/rc-picker/es/PickerInput/SinglePicker.js +307 -215
- package/dist/node_modules/rc-picker/es/PickerInput/context.cjs +23 -1
- package/dist/node_modules/rc-picker/es/PickerInput/context.js +3 -3
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useCellRender.cjs +53 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useCellRender.js +28 -15
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDelayState.cjs +38 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDelayState.js +33 -18
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDisabledBoundary.cjs +23 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDisabledBoundary.js +16 -7
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldFormat.cjs +40 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldFormat.js +14 -11
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldsInvalidate.cjs +54 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldsInvalidate.js +31 -18
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFilledProps.cjs +100 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFilledProps.js +75 -51
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInputReadOnly.cjs +8 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInputReadOnly.js +6 -3
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInvalidate.cjs +52 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInvalidate.js +44 -20
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useLockEffect.cjs +41 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useLockEffect.js +17 -15
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useOpen.cjs +19 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useOpen.js +16 -11
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePickerRef.cjs +40 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePickerRef.js +15 -14
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePresets.cjs +42 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePresets.js +21 -14
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeActive.cjs +71 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeActive.js +49 -23
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeDisabledDate.cjs +27 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeDisabledDate.js +23 -15
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangePickerValue.cjs +155 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangePickerValue.js +112 -61
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeValue.cjs +195 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeValue.js +147 -97
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useShowNow.cjs +14 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useShowNow.js +12 -3
- package/dist/node_modules/rc-picker/es/PickerPanel/DatePanel/index.cjs +165 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/DatePanel/index.js +123 -95
- package/dist/node_modules/rc-picker/es/PickerPanel/DateTimePanel/index.cjs +52 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/DateTimePanel/index.js +30 -22
- package/dist/node_modules/rc-picker/es/PickerPanel/DecadePanel/index.cjs +102 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/DecadePanel/index.js +75 -57
- package/dist/node_modules/rc-picker/es/PickerPanel/MonthPanel/index.cjs +95 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/MonthPanel/index.js +63 -52
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelBody.cjs +121 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelBody.js +92 -61
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelHeader.cjs +124 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelHeader.js +87 -66
- package/dist/node_modules/rc-picker/es/PickerPanel/QuarterPanel/index.cjs +86 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/QuarterPanel/index.js +53 -46
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/TimeColumn.cjs +124 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/TimeColumn.js +94 -64
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/index.cjs +238 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/index.js +200 -122
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/useScrollTo.cjs +85 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/useScrollTo.js +53 -28
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/util.cjs +31 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/util.js +26 -17
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/index.cjs +43 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/index.js +22 -19
- package/dist/node_modules/rc-picker/es/PickerPanel/WeekPanel/index.cjs +60 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/WeekPanel/index.js +32 -22
- package/dist/node_modules/rc-picker/es/PickerPanel/YearPanel/index.cjs +104 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/YearPanel/index.js +73 -58
- package/dist/node_modules/rc-picker/es/PickerPanel/context.cjs +60 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/context.js +36 -32
- package/dist/node_modules/rc-picker/es/PickerPanel/index.cjs +227 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/index.js +179 -120
- package/dist/node_modules/rc-picker/es/PickerTrigger/index.cjs +87 -1
- package/dist/node_modules/rc-picker/es/PickerTrigger/index.js +29 -24
- package/dist/node_modules/rc-picker/es/PickerTrigger/util.cjs +6 -1
- package/dist/node_modules/rc-picker/es/PickerTrigger/util.js +4 -4
- package/dist/node_modules/rc-picker/es/generate/dayjs.cjs +218 -1
- package/dist/node_modules/rc-picker/es/generate/dayjs.js +108 -95
- package/dist/node_modules/rc-picker/es/hooks/useLocale.cjs +50 -1
- package/dist/node_modules/rc-picker/es/hooks/useLocale.js +44 -26
- package/dist/node_modules/rc-picker/es/hooks/useSyncState.cjs +35 -1
- package/dist/node_modules/rc-picker/es/hooks/useSyncState.js +13 -9
- package/dist/node_modules/rc-picker/es/hooks/useTimeConfig.cjs +147 -1
- package/dist/node_modules/rc-picker/es/hooks/useTimeConfig.js +107 -60
- package/dist/node_modules/rc-picker/es/hooks/useTimeInfo.cjs +124 -1
- package/dist/node_modules/rc-picker/es/hooks/useTimeInfo.js +87 -57
- package/dist/node_modules/rc-picker/es/hooks/useToggleDates.cjs +18 -1
- package/dist/node_modules/rc-picker/es/hooks/useToggleDates.js +14 -12
- package/dist/node_modules/rc-picker/es/index.cjs +9 -1
- package/dist/node_modules/rc-picker/es/index.js +7 -7
- package/dist/node_modules/rc-picker/es/locale/common.cjs +8 -1
- package/dist/node_modules/rc-picker/es/locale/common.js +3 -3
- package/dist/node_modules/rc-picker/es/locale/en_US.cjs +31 -1
- package/dist/node_modules/rc-picker/es/locale/en_US.js +4 -4
- package/dist/node_modules/rc-picker/es/utils/dateUtil.cjs +137 -1
- package/dist/node_modules/rc-picker/es/utils/dateUtil.js +106 -76
- package/dist/node_modules/rc-picker/es/utils/miscUtil.cjs +66 -1
- package/dist/node_modules/rc-picker/es/utils/miscUtil.js +49 -36
- package/dist/node_modules/rc-picker/es/utils/uiUtil.cjs +8 -1
- package/dist/node_modules/rc-picker/es/utils/uiUtil.js +6 -3
- package/dist/node_modules/rc-progress/es/Circle/PtgCircle.cjs +83 -1
- package/dist/node_modules/rc-progress/es/Circle/PtgCircle.js +51 -38
- package/dist/node_modules/rc-progress/es/Circle/index.cjs +127 -1
- package/dist/node_modules/rc-progress/es/Circle/index.js +95 -69
- package/dist/node_modules/rc-progress/es/Circle/util.cjs +31 -1
- package/dist/node_modules/rc-progress/es/Circle/util.js +21 -12
- package/dist/node_modules/rc-progress/es/Line.cjs +4 -1
- package/dist/node_modules/rc-progress/es/Line.js +1 -1
- package/dist/node_modules/rc-progress/es/common.cjs +37 -1
- package/dist/node_modules/rc-progress/es/common.js +26 -15
- package/dist/node_modules/rc-progress/es/hooks/useId.cjs +45 -1
- package/dist/node_modules/rc-progress/es/hooks/useId.js +22 -14
- package/dist/node_modules/rc-resize-observer/es/Collection.cjs +49 -1
- package/dist/node_modules/rc-resize-observer/es/Collection.js +28 -19
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.cjs +41 -1
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.js +17 -15
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/index.cjs +102 -1
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/index.js +70 -45
- package/dist/node_modules/rc-resize-observer/es/index.cjs +52 -1
- package/dist/node_modules/rc-resize-observer/es/index.js +29 -19
- package/dist/node_modules/rc-resize-observer/es/utils/observerUtil.cjs +33 -1
- package/dist/node_modules/rc-resize-observer/es/utils/observerUtil.js +27 -16
- package/dist/node_modules/rc-segmented/es/MotionThumb.cjs +171 -1
- package/dist/node_modules/rc-segmented/es/MotionThumb.js +131 -84
- package/dist/node_modules/rc-segmented/es/index.cjs +195 -1
- package/dist/node_modules/rc-segmented/es/index.js +148 -115
- package/dist/node_modules/rc-select/es/BaseSelect/Polite.cjs +43 -1
- package/dist/node_modules/rc-select/es/BaseSelect/Polite.js +13 -12
- package/dist/node_modules/rc-select/es/BaseSelect/index.cjs +442 -3
- package/dist/node_modules/rc-select/es/BaseSelect/index.js +384 -241
- package/dist/node_modules/rc-select/es/OptGroup.cjs +6 -1
- package/dist/node_modules/rc-select/es/OptGroup.js +3 -3
- package/dist/node_modules/rc-select/es/Option.cjs +6 -1
- package/dist/node_modules/rc-select/es/Option.js +3 -3
- package/dist/node_modules/rc-select/es/OptionList.cjs +321 -1
- package/dist/node_modules/rc-select/es/OptionList.js +255 -169
- package/dist/node_modules/rc-select/es/Select.cjs +387 -1
- package/dist/node_modules/rc-select/es/Select.js +325 -215
- package/dist/node_modules/rc-select/es/SelectContext.cjs +23 -1
- package/dist/node_modules/rc-select/es/SelectContext.js +3 -3
- package/dist/node_modules/rc-select/es/SelectTrigger.cjs +130 -1
- package/dist/node_modules/rc-select/es/SelectTrigger.js +73 -54
- package/dist/node_modules/rc-select/es/Selector/Input.cjs +103 -1
- package/dist/node_modules/rc-select/es/Selector/Input.js +71 -44
- package/dist/node_modules/rc-select/es/Selector/MultipleSelector.cjs +162 -1
- package/dist/node_modules/rc-select/es/Selector/MultipleSelector.js +129 -105
- package/dist/node_modules/rc-select/es/Selector/SingleSelector.cjs +91 -1
- package/dist/node_modules/rc-select/es/Selector/SingleSelector.js +65 -49
- package/dist/node_modules/rc-select/es/Selector/index.cjs +144 -1
- package/dist/node_modules/rc-select/es/Selector/index.js +118 -67
- package/dist/node_modules/rc-select/es/TransBtn.cjs +45 -1
- package/dist/node_modules/rc-select/es/TransBtn.js +17 -15
- package/dist/node_modules/rc-select/es/hooks/useAllowClear.cjs +32 -1
- package/dist/node_modules/rc-select/es/hooks/useAllowClear.js +27 -18
- package/dist/node_modules/rc-select/es/hooks/useBaseProps.cjs +28 -1
- package/dist/node_modules/rc-select/es/hooks/useBaseProps.js +6 -6
- package/dist/node_modules/rc-select/es/hooks/useCache.cjs +54 -1
- package/dist/node_modules/rc-select/es/hooks/useCache.js +29 -20
- package/dist/node_modules/rc-select/es/hooks/useDelayReset.cjs +44 -1
- package/dist/node_modules/rc-select/es/hooks/useDelayReset.js +20 -13
- package/dist/node_modules/rc-select/es/hooks/useFilterOptions.cjs +74 -1
- package/dist/node_modules/rc-select/es/hooks/useFilterOptions.js +47 -30
- package/dist/node_modules/rc-select/es/hooks/useId.cjs +46 -1
- package/dist/node_modules/rc-select/es/hooks/useId.js +23 -15
- package/dist/node_modules/rc-select/es/hooks/useLayoutEffect.cjs +30 -1
- package/dist/node_modules/rc-select/es/hooks/useLayoutEffect.js +9 -5
- package/dist/node_modules/rc-select/es/hooks/useLock.cjs +44 -1
- package/dist/node_modules/rc-select/es/hooks/useLock.js +18 -12
- package/dist/node_modules/rc-select/es/hooks/useOptions.cjs +59 -1
- package/dist/node_modules/rc-select/es/hooks/useOptions.js +35 -18
- package/dist/node_modules/rc-select/es/hooks/useRefFunc.cjs +30 -1
- package/dist/node_modules/rc-select/es/hooks/useRefFunc.js +8 -8
- package/dist/node_modules/rc-select/es/hooks/useSelectTriggerControl.cjs +53 -1
- package/dist/node_modules/rc-select/es/hooks/useSelectTriggerControl.js +28 -20
- package/dist/node_modules/rc-select/es/index.cjs +11 -1
- package/dist/node_modules/rc-select/es/index.js +8 -8
- package/dist/node_modules/rc-select/es/utils/commonUtil.cjs +36 -1
- package/dist/node_modules/rc-select/es/utils/commonUtil.js +30 -19
- package/dist/node_modules/rc-select/es/utils/keyUtil.cjs +39 -1
- package/dist/node_modules/rc-select/es/utils/keyUtil.js +30 -30
- package/dist/node_modules/rc-select/es/utils/legacyUtil.cjs +54 -1
- package/dist/node_modules/rc-select/es/utils/legacyUtil.js +29 -25
- package/dist/node_modules/rc-select/es/utils/platformUtil.cjs +5 -1
- package/dist/node_modules/rc-select/es/utils/platformUtil.js +2 -2
- package/dist/node_modules/rc-select/es/utils/valueUtil.cjs +108 -1
- package/dist/node_modules/rc-select/es/utils/valueUtil.js +92 -58
- package/dist/node_modules/rc-select/es/utils/warningPropsUtil.cjs +114 -1
- package/dist/node_modules/rc-select/es/utils/warningPropsUtil.js +81 -47
- package/dist/node_modules/rc-switch/es/index.cjs +77 -1
- package/dist/node_modules/rc-switch/es/index.js +51 -38
- package/dist/node_modules/rc-table/es/Body/BodyRow.cjs +122 -1
- package/dist/node_modules/rc-table/es/Body/BodyRow.js +96 -75
- package/dist/node_modules/rc-table/es/Body/ExpandedRow.cjs +56 -1
- package/dist/node_modules/rc-table/es/Body/ExpandedRow.js +32 -25
- package/dist/node_modules/rc-table/es/Body/MeasureCell.cjs +47 -1
- package/dist/node_modules/rc-table/es/Body/MeasureCell.js +16 -12
- package/dist/node_modules/rc-table/es/Body/MeasureRow.cjs +48 -1
- package/dist/node_modules/rc-table/es/Body/MeasureRow.js +18 -18
- package/dist/node_modules/rc-table/es/Body/index.cjs +89 -1
- package/dist/node_modules/rc-table/es/Body/index.js +66 -49
- package/dist/node_modules/rc-table/es/Cell/index.cjs +124 -1
- package/dist/node_modules/rc-table/es/Cell/index.js +97 -51
- package/dist/node_modules/rc-table/es/Cell/useCellRender.cjs +81 -1
- package/dist/node_modules/rc-table/es/Cell/useCellRender.js +53 -34
- package/dist/node_modules/rc-table/es/Cell/useHoverState.cjs +16 -1
- package/dist/node_modules/rc-table/es/Cell/useHoverState.js +10 -10
- package/dist/node_modules/rc-table/es/ColGroup.cjs +62 -1
- package/dist/node_modules/rc-table/es/ColGroup.js +36 -21
- package/dist/node_modules/rc-table/es/FixedHolder/index.cjs +142 -1
- package/dist/node_modules/rc-table/es/FixedHolder/index.js +103 -81
- package/dist/node_modules/rc-table/es/Footer/Cell.cjs +51 -1
- package/dist/node_modules/rc-table/es/Footer/Cell.js +25 -20
- package/dist/node_modules/rc-table/es/Footer/Row.cjs +28 -1
- package/dist/node_modules/rc-table/es/Footer/Row.js +7 -7
- package/dist/node_modules/rc-table/es/Footer/Summary.cjs +10 -1
- package/dist/node_modules/rc-table/es/Footer/Summary.js +8 -8
- package/dist/node_modules/rc-table/es/Footer/SummaryContext.cjs +23 -1
- package/dist/node_modules/rc-table/es/Footer/SummaryContext.js +3 -3
- package/dist/node_modules/rc-table/es/Footer/index.cjs +53 -1
- package/dist/node_modules/rc-table/es/Footer/index.js +28 -22
- package/dist/node_modules/rc-table/es/Header/Header.cjs +106 -1
- package/dist/node_modules/rc-table/es/Header/Header.js +78 -49
- package/dist/node_modules/rc-table/es/Header/HeaderRow.cjs +64 -1
- package/dist/node_modules/rc-table/es/Header/HeaderRow.js +38 -27
- package/dist/node_modules/rc-table/es/Panel/index.cjs +28 -1
- package/dist/node_modules/rc-table/es/Panel/index.js +7 -7
- package/dist/node_modules/rc-table/es/Table.cjs +569 -1
- package/dist/node_modules/rc-table/es/Table.js +501 -343
- package/dist/node_modules/rc-table/es/VirtualTable/BodyGrid.cjs +230 -1
- package/dist/node_modules/rc-table/es/VirtualTable/BodyGrid.js +179 -124
- package/dist/node_modules/rc-table/es/VirtualTable/BodyLine.cjs +103 -1
- package/dist/node_modules/rc-table/es/VirtualTable/BodyLine.js +78 -56
- package/dist/node_modules/rc-table/es/VirtualTable/VirtualCell.cjs +92 -1
- package/dist/node_modules/rc-table/es/VirtualTable/VirtualCell.js +65 -43
- package/dist/node_modules/rc-table/es/VirtualTable/context.cjs +8 -1
- package/dist/node_modules/rc-table/es/VirtualTable/context.js +5 -4
- package/dist/node_modules/rc-table/es/VirtualTable/index.cjs +96 -1
- package/dist/node_modules/rc-table/es/VirtualTable/index.js +64 -48
- package/dist/node_modules/rc-table/es/constant.cjs +5 -1
- package/dist/node_modules/rc-table/es/constant.js +4 -3
- package/dist/node_modules/rc-table/es/context/PerfContext.cjs +25 -1
- package/dist/node_modules/rc-table/es/context/PerfContext.js +4 -4
- package/dist/node_modules/rc-table/es/context/TableContext.cjs +10 -1
- package/dist/node_modules/rc-table/es/context/TableContext.js +8 -7
- package/dist/node_modules/rc-table/es/hooks/useColumns/index.cjs +226 -1
- package/dist/node_modules/rc-table/es/hooks/useColumns/index.js +181 -117
- package/dist/node_modules/rc-table/es/hooks/useColumns/useWidthColumns.cjs +79 -1
- package/dist/node_modules/rc-table/es/hooks/useColumns/useWidthColumns.js +51 -29
- package/dist/node_modules/rc-table/es/hooks/useExpand.cjs +82 -1
- package/dist/node_modules/rc-table/es/hooks/useExpand.js +61 -25
- package/dist/node_modules/rc-table/es/hooks/useFixedInfo.cjs +15 -1
- package/dist/node_modules/rc-table/es/hooks/useFixedInfo.js +11 -11
- package/dist/node_modules/rc-table/es/hooks/useFlattenRecords.cjs +56 -1
- package/dist/node_modules/rc-table/es/hooks/useFlattenRecords.js +27 -23
- package/dist/node_modules/rc-table/es/hooks/useFrame.cjs +58 -1
- package/dist/node_modules/rc-table/es/hooks/useFrame.js +46 -30
- package/dist/node_modules/rc-table/es/hooks/useHover.cjs +32 -1
- package/dist/node_modules/rc-table/es/hooks/useHover.js +10 -7
- package/dist/node_modules/rc-table/es/hooks/useRenderTimes.cjs +56 -1
- package/dist/node_modules/rc-table/es/hooks/useRenderTimes.js +32 -18
- package/dist/node_modules/rc-table/es/hooks/useRowInfo.cjs +54 -1
- package/dist/node_modules/rc-table/es/hooks/useRowInfo.js +46 -28
- package/dist/node_modules/rc-table/es/hooks/useSticky.cjs +42 -1
- package/dist/node_modules/rc-table/es/hooks/useSticky.js +19 -17
- package/dist/node_modules/rc-table/es/hooks/useStickyOffsets.cjs +29 -1
- package/dist/node_modules/rc-table/es/hooks/useStickyOffsets.js +25 -16
- package/dist/node_modules/rc-table/es/stickyScrollBar.cjs +191 -1
- package/dist/node_modules/rc-table/es/stickyScrollBar.js +143 -85
- package/dist/node_modules/rc-table/es/sugar/Column.cjs +5 -1
- package/dist/node_modules/rc-table/es/sugar/Column.js +2 -2
- package/dist/node_modules/rc-table/es/sugar/ColumnGroup.cjs +5 -1
- package/dist/node_modules/rc-table/es/sugar/ColumnGroup.js +2 -2
- package/dist/node_modules/rc-table/es/utils/expandUtil.cjs +63 -1
- package/dist/node_modules/rc-table/es/utils/expandUtil.js +35 -24
- package/dist/node_modules/rc-table/es/utils/fixUtil.cjs +46 -1
- package/dist/node_modules/rc-table/es/utils/fixUtil.js +39 -26
- package/dist/node_modules/rc-table/es/utils/legacyUtil.cjs +26 -1
- package/dist/node_modules/rc-table/es/utils/legacyUtil.js +24 -11
- package/dist/node_modules/rc-table/es/utils/offsetUtil.cjs +12 -1
- package/dist/node_modules/rc-table/es/utils/offsetUtil.js +8 -6
- package/dist/node_modules/rc-table/es/utils/valueUtil.cjs +31 -1
- package/dist/node_modules/rc-table/es/utils/valueUtil.js +26 -17
- package/dist/node_modules/rc-tabs/es/TabContext.cjs +4 -1
- package/dist/node_modules/rc-tabs/es/TabContext.js +3 -3
- package/dist/node_modules/rc-tabs/es/TabNavList/AddButton.cjs +40 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/AddButton.js +16 -13
- package/dist/node_modules/rc-tabs/es/TabNavList/ExtraContent.cjs +49 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/ExtraContent.js +27 -12
- package/dist/node_modules/rc-tabs/es/TabNavList/OperationNode.cjs +181 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/OperationNode.js +129 -98
- package/dist/node_modules/rc-tabs/es/TabNavList/TabNode.cjs +100 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/TabNode.js +63 -51
- package/dist/node_modules/rc-tabs/es/TabNavList/Wrapper.cjs +51 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/Wrapper.js +26 -22
- package/dist/node_modules/rc-tabs/es/TabNavList/index.cjs +486 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/index.js +392 -218
- package/dist/node_modules/rc-tabs/es/TabPanelList/TabPane.cjs +39 -1
- package/dist/node_modules/rc-tabs/es/TabPanelList/TabPane.js +17 -15
- package/dist/node_modules/rc-tabs/es/TabPanelList/index.cjs +65 -1
- package/dist/node_modules/rc-tabs/es/TabPanelList/index.js +40 -35
- package/dist/node_modules/rc-tabs/es/Tabs.cjs +134 -1
- package/dist/node_modules/rc-tabs/es/Tabs.js +101 -84
- package/dist/node_modules/rc-tabs/es/hooks/useAnimateConfig.cjs +37 -1
- package/dist/node_modules/rc-tabs/es/hooks/useAnimateConfig.js +35 -18
- package/dist/node_modules/rc-tabs/es/hooks/useIndicator.cjs +64 -1
- package/dist/node_modules/rc-tabs/es/hooks/useIndicator.js +60 -24
- package/dist/node_modules/rc-tabs/es/hooks/useOffsets.cjs +32 -1
- package/dist/node_modules/rc-tabs/es/hooks/useOffsets.js +23 -17
- package/dist/node_modules/rc-tabs/es/hooks/useSyncState.cjs +36 -1
- package/dist/node_modules/rc-tabs/es/hooks/useSyncState.js +14 -9
- package/dist/node_modules/rc-tabs/es/hooks/useTouchMove.cjs +139 -1
- package/dist/node_modules/rc-tabs/es/hooks/useTouchMove.js +106 -67
- package/dist/node_modules/rc-tabs/es/hooks/useUpdate.cjs +43 -1
- package/dist/node_modules/rc-tabs/es/hooks/useUpdate.js +36 -21
- package/dist/node_modules/rc-tabs/es/hooks/useVisibleRange.cjs +50 -1
- package/dist/node_modules/rc-tabs/es/hooks/useVisibleRange.js +35 -19
- package/dist/node_modules/rc-tabs/es/index.cjs +3 -1
- package/dist/node_modules/rc-tabs/es/index.js +2 -2
- package/dist/node_modules/rc-tabs/es/util.cjs +32 -1
- package/dist/node_modules/rc-tabs/es/util.js +27 -18
- package/dist/node_modules/rc-textarea/es/ResizableTextArea.cjs +133 -1
- package/dist/node_modules/rc-textarea/es/ResizableTextArea.js +101 -63
- package/dist/node_modules/rc-textarea/es/TextArea.cjs +177 -1
- package/dist/node_modules/rc-textarea/es/TextArea.js +160 -106
- package/dist/node_modules/rc-textarea/es/calculateNodeHeight.cjs +92 -12
- package/dist/node_modules/rc-textarea/es/calculateNodeHeight.js +85 -41
- package/dist/node_modules/rc-textarea/es/index.cjs +9 -1
- package/dist/node_modules/rc-textarea/es/index.js +2 -2
- package/dist/node_modules/rc-tooltip/es/Popup.cjs +35 -1
- package/dist/node_modules/rc-tooltip/es/Popup.js +13 -13
- package/dist/node_modules/rc-tooltip/es/Tooltip.cjs +85 -1
- package/dist/node_modules/rc-tooltip/es/Tooltip.js +61 -53
- package/dist/node_modules/rc-tooltip/es/index.cjs +6 -1
- package/dist/node_modules/rc-tooltip/es/index.js +2 -2
- package/dist/node_modules/rc-tooltip/es/placements.cjs +87 -1
- package/dist/node_modules/rc-tooltip/es/placements.js +33 -30
- package/dist/node_modules/rc-tree/es/DropIndicator.cjs +33 -1
- package/dist/node_modules/rc-tree/es/DropIndicator.js +17 -11
- package/dist/node_modules/rc-tree/es/Indent.cjs +40 -1
- package/dist/node_modules/rc-tree/es/Indent.js +17 -13
- package/dist/node_modules/rc-tree/es/MotionTreeNode.cjs +104 -1
- package/dist/node_modules/rc-tree/es/MotionTreeNode.js +78 -56
- package/dist/node_modules/rc-tree/es/NodeList.cjs +247 -1
- package/dist/node_modules/rc-tree/es/NodeList.js +178 -130
- package/dist/node_modules/rc-tree/es/Tree.cjs +966 -1
- package/dist/node_modules/rc-tree/es/Tree.js +785 -509
- package/dist/node_modules/rc-tree/es/TreeNode.cjs +273 -1
- package/dist/node_modules/rc-tree/es/TreeNode.js +265 -153
- package/dist/node_modules/rc-tree/es/contextTypes.cjs +25 -1
- package/dist/node_modules/rc-tree/es/contextTypes.js +5 -4
- package/dist/node_modules/rc-tree/es/index.cjs +7 -1
- package/dist/node_modules/rc-tree/es/index.js +4 -4
- package/dist/node_modules/rc-tree/es/useUnmount.cjs +41 -1
- package/dist/node_modules/rc-tree/es/useUnmount.js +17 -13
- package/dist/node_modules/rc-tree/es/util.cjs +213 -1
- package/dist/node_modules/rc-tree/es/util.js +187 -115
- package/dist/node_modules/rc-tree/es/utils/conductUtil.cjs +170 -1
- package/dist/node_modules/rc-tree/es/utils/conductUtil.js +147 -81
- package/dist/node_modules/rc-tree/es/utils/diffUtil.cjs +51 -1
- package/dist/node_modules/rc-tree/es/utils/diffUtil.js +38 -29
- package/dist/node_modules/rc-tree/es/utils/keyUtil.cjs +5 -1
- package/dist/node_modules/rc-tree/es/utils/keyUtil.js +3 -3
- package/dist/node_modules/rc-tree/es/utils/treeUtil.cjs +271 -1
- package/dist/node_modules/rc-tree/es/utils/treeUtil.js +236 -158
- package/dist/node_modules/rc-util/es/Children/toArray.cjs +21 -1
- package/dist/node_modules/rc-util/es/Children/toArray.js +19 -8
- package/dist/node_modules/rc-util/es/Dom/addEventListener.cjs +18 -1
- package/dist/node_modules/rc-util/es/Dom/addEventListener.js +14 -9
- package/dist/node_modules/rc-util/es/Dom/canUseDom.cjs +5 -1
- package/dist/node_modules/rc-util/es/Dom/canUseDom.js +3 -3
- package/dist/node_modules/rc-util/es/Dom/contains.cjs +18 -1
- package/dist/node_modules/rc-util/es/Dom/contains.js +15 -11
- package/dist/node_modules/rc-util/es/Dom/dynamicCSS.cjs +123 -1
- package/dist/node_modules/rc-util/es/Dom/dynamicCSS.js +103 -66
- package/dist/node_modules/rc-util/es/Dom/findDOMNode.cjs +31 -1
- package/dist/node_modules/rc-util/es/Dom/findDOMNode.js +24 -17
- package/dist/node_modules/rc-util/es/Dom/focus.cjs +39 -1
- package/dist/node_modules/rc-util/es/Dom/focus.js +33 -17
- package/dist/node_modules/rc-util/es/Dom/isVisible.cjs +25 -1
- package/dist/node_modules/rc-util/es/Dom/isVisible.js +20 -16
- package/dist/node_modules/rc-util/es/Dom/shadow.cjs +13 -1
- package/dist/node_modules/rc-util/es/Dom/shadow.js +9 -9
- package/dist/node_modules/rc-util/es/Dom/styleChecker.cjs +28 -1
- package/dist/node_modules/rc-util/es/Dom/styleChecker.js +23 -15
- package/dist/node_modules/rc-util/es/KeyCode.cjs +154 -1
- package/dist/node_modules/rc-util/es/KeyCode.js +2 -2
- package/dist/node_modules/rc-util/es/React/isFragment.cjs +14 -1
- package/dist/node_modules/rc-util/es/React/isFragment.js +9 -7
- package/dist/node_modules/rc-util/es/React/render.cjs +108 -1
- package/dist/node_modules/rc-util/es/React/render.js +63 -52
- package/dist/node_modules/rc-util/es/getScrollBarSize.cjs +64 -5
- package/dist/node_modules/rc-util/es/getScrollBarSize.js +55 -34
- package/dist/node_modules/rc-util/es/hooks/useEvent.cjs +34 -1
- package/dist/node_modules/rc-util/es/hooks/useEvent.js +12 -10
- package/dist/node_modules/rc-util/es/hooks/useId.cjs +60 -1
- package/dist/node_modules/rc-util/es/hooks/useId.js +33 -18
- package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.cjs +45 -1
- package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.js +21 -16
- package/dist/node_modules/rc-util/es/hooks/useMemo.cjs +30 -1
- package/dist/node_modules/rc-util/es/hooks/useMemo.js +9 -5
- package/dist/node_modules/rc-util/es/hooks/useMergedState.cjs +41 -1
- package/dist/node_modules/rc-util/es/hooks/useMergedState.js +37 -20
- package/dist/node_modules/rc-util/es/hooks/useState.cjs +40 -1
- package/dist/node_modules/rc-util/es/hooks/useState.js +16 -11
- package/dist/node_modules/rc-util/es/hooks/useSyncState.cjs +38 -1
- package/dist/node_modules/rc-util/es/hooks/useSyncState.js +16 -12
- package/dist/node_modules/rc-util/es/isEqual.cjs +46 -1
- package/dist/node_modules/rc-util/es/isEqual.js +40 -28
- package/dist/node_modules/rc-util/es/isMobile.cjs +9 -1
- package/dist/node_modules/rc-util/es/isMobile.js +7 -6
- package/dist/node_modules/rc-util/es/omit.cjs +11 -1
- package/dist/node_modules/rc-util/es/omit.js +9 -6
- package/dist/node_modules/rc-util/es/pickAttrs.cjs +40 -18
- package/dist/node_modules/rc-util/es/pickAttrs.js +37 -38
- package/dist/node_modules/rc-util/es/raf.cjs +49 -1
- package/dist/node_modules/rc-util/es/raf.js +41 -31
- package/dist/node_modules/rc-util/es/ref.cjs +76 -1
- package/dist/node_modules/rc-util/es/ref.js +66 -44
- package/dist/node_modules/rc-util/es/utils/get.cjs +12 -1
- package/dist/node_modules/rc-util/es/utils/get.js +9 -7
- package/dist/node_modules/rc-util/es/utils/set.cjs +74 -1
- package/dist/node_modules/rc-util/es/utils/set.js +64 -37
- package/dist/node_modules/rc-util/es/warning.cjs +53 -1
- package/dist/node_modules/rc-util/es/warning.js +42 -33
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.cjs +185 -2
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.js +179 -89
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.cjs +101 -2
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.js +89 -61
- package/dist/node_modules/rc-util/node_modules/react-is/index.cjs +16 -1
- package/dist/node_modules/rc-util/node_modules/react-is/index.js +14 -7
- package/dist/node_modules/rc-virtual-list/es/Filler.cjs +60 -1
- package/dist/node_modules/rc-virtual-list/es/Filler.js +35 -27
- package/dist/node_modules/rc-virtual-list/es/Item.cjs +31 -1
- package/dist/node_modules/rc-virtual-list/es/Item.js +8 -7
- package/dist/node_modules/rc-virtual-list/es/List.cjs +451 -1
- package/dist/node_modules/rc-virtual-list/es/List.js +381 -234
- package/dist/node_modules/rc-virtual-list/es/ScrollBar.cjs +216 -1
- package/dist/node_modules/rc-virtual-list/es/ScrollBar.js +172 -88
- package/dist/node_modules/rc-virtual-list/es/hooks/useChildren.cjs +42 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useChildren.js +17 -15
- package/dist/node_modules/rc-virtual-list/es/hooks/useDiffItem.cjs +36 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useDiffItem.js +15 -10
- package/dist/node_modules/rc-virtual-list/es/hooks/useFrameWheel.cjs +71 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useFrameWheel.js +63 -33
- package/dist/node_modules/rc-virtual-list/es/hooks/useGetSize.cjs +58 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useGetSize.js +31 -16
- package/dist/node_modules/rc-virtual-list/es/hooks/useHeights.cjs +87 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useHeights.js +57 -35
- package/dist/node_modules/rc-virtual-list/es/hooks/useMobileTouchMove.cjs +83 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useMobileTouchMove.js +78 -32
- package/dist/node_modules/rc-virtual-list/es/hooks/useOriginScroll.cjs +40 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useOriginScroll.js +33 -19
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollDrag.cjs +92 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollDrag.js +62 -38
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollTo.cjs +136 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollTo.js +92 -56
- package/dist/node_modules/rc-virtual-list/es/index.cjs +3 -1
- package/dist/node_modules/rc-virtual-list/es/index.js +2 -2
- package/dist/node_modules/rc-virtual-list/es/utils/CacheMap.cjs +42 -1
- package/dist/node_modules/rc-virtual-list/es/utils/CacheMap.js +22 -15
- package/dist/node_modules/rc-virtual-list/es/utils/algorithmUtil.cjs +42 -1
- package/dist/node_modules/rc-virtual-list/es/utils/algorithmUtil.js +33 -16
- package/dist/node_modules/rc-virtual-list/es/utils/isFirefox.cjs +4 -1
- package/dist/node_modules/rc-virtual-list/es/utils/isFirefox.js +3 -3
- package/dist/node_modules/rc-virtual-list/es/utils/scrollbarUtil.cjs +13 -1
- package/dist/node_modules/rc-virtual-list/es/utils/scrollbarUtil.js +11 -5
- package/dist/node_modules/react-icons/fa6/index.cjs +7 -1
- package/dist/node_modules/react-icons/fa6/index.js +4 -4
- package/dist/node_modules/react-icons/fi/index.cjs +7 -1
- package/dist/node_modules/react-icons/fi/index.js +4 -4
- package/dist/node_modules/react-icons/hi/index.cjs +27 -1
- package/dist/node_modules/react-icons/hi/index.js +19 -19
- package/dist/node_modules/react-icons/hi2/index.cjs +7 -1
- package/dist/node_modules/react-icons/hi2/index.js +4 -4
- package/dist/node_modules/react-icons/lib/iconBase.cjs +127 -1
- package/dist/node_modules/react-icons/lib/iconBase.js +99 -79
- package/dist/node_modules/react-icons/lib/iconContext.cjs +12 -1
- package/dist/node_modules/react-icons/lib/iconContext.js +6 -5
- package/dist/node_modules/react-icons/lu/index.cjs +7 -1
- package/dist/node_modules/react-icons/lu/index.js +4 -4
- package/dist/node_modules/react-icons/pi/index.cjs +11 -1
- package/dist/node_modules/react-icons/pi/index.js +7 -7
- package/dist/node_modules/react-icons/tb/index.cjs +7 -1
- package/dist/node_modules/react-icons/tb/index.js +4 -4
- package/dist/node_modules/react-toastify/dist/index.cjs +392 -2
- package/dist/node_modules/react-toastify/dist/index.js +298 -291
- package/dist/node_modules/react-toastify/node_modules/clsx/dist/clsx.cjs +17 -1
- package/dist/node_modules/react-toastify/node_modules/clsx/dist/clsx.js +13 -13
- package/dist/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.cjs +494 -1
- package/dist/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js +411 -206
- package/dist/node_modules/scroll-into-view-if-needed/dist/index.cjs +24 -1
- package/dist/node_modules/scroll-into-view-if-needed/dist/index.js +20 -20
- package/dist/node_modules/stylis/src/Enum.cjs +15 -1
- package/dist/node_modules/stylis/src/Enum.js +14 -8
- package/dist/node_modules/stylis/src/Parser.cjs +163 -1
- package/dist/node_modules/stylis/src/Parser.js +86 -58
- package/dist/node_modules/stylis/src/Serializer.cjs +28 -1
- package/dist/node_modules/stylis/src/Serializer.js +23 -22
- package/dist/node_modules/stylis/src/Tokenizer.cjs +149 -1
- package/dist/node_modules/stylis/src/Tokenizer.js +97 -78
- package/dist/node_modules/stylis/src/Utility.cjs +37 -1
- package/dist/node_modules/stylis/src/Utility.js +28 -27
- package/dist/node_modules/throttle-debounce/esm/index.cjs +60 -1
- package/dist/node_modules/throttle-debounce/esm/index.js +50 -24
- package/dist/node_modules/toggle-selection/index.cjs +41 -1
- package/dist/node_modules/toggle-selection/index.js +29 -16
- package/dist/providers/BreakpointProvider.cjs +28 -1
- package/dist/providers/BreakpointProvider.js +26 -14
- package/dist/providers/GenesisProvider.cjs +16 -1
- package/dist/providers/GenesisProvider.js +14 -11
- package/dist/providers/ToastProvider.cjs +72 -1
- package/dist/providers/ToastProvider.js +41 -33
- package/dist/providers/useGenesis.cjs +15 -1
- package/dist/providers/useGenesis.js +11 -9
- package/dist/styles/design-tokens/variables.cjs +395 -1
- package/dist/styles/design-tokens/variables.js +394 -198
- package/dist/styles/global-styles.cjs +11 -2
- package/dist/styles/global-styles.js +3 -3
- package/dist/styles/theme/genesis-theme.cjs +1324 -1
- package/dist/styles/theme/genesis-theme.js +545 -414
- package/dist/utils/icon-util.cjs +93 -1
- package/dist/utils/icon-util.js +73 -68
- package/dist/utils/styled.cjs +10 -1
- package/dist/utils/styled.js +9 -7
- package/dist/utils/user-util.cjs +14 -1
- package/dist/utils/user-util.js +11 -6
- package/package.json +3 -1
- package/dist/components/Select/CountMultiSelect/CountMultiSelect.cjs +0 -1
- package/dist/components/Select/CountMultiSelect/CountMultiSelect.d.ts +0 -12
- package/dist/components/Select/CountMultiSelect/CountMultiSelect.js +0 -40
- package/dist/components/Select/CountMultiSelect/__stories__/CountMultiSelect.stories.d.ts +0 -7
- package/dist/components/Select/CountMultiSelect/index.d.ts +0 -2
|
@@ -1 +1,1324 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../design-tokens/variables.cjs"),g={wide:1280,medium:1024,narrow:480},l={BorderRadiusNone:e.BorderRadiusNone,BorderRadiusXs:e.BorderRadiusXs,BorderRadiusSm:e.BorderRadiusSm,BorderRadiusMd:e.BorderRadiusMd,BorderRadiusLg:e.BorderRadiusLg,BorderRadiusXl:e.BorderRadiusXl,BorderRadiusXxl:e.BorderRadiusXxl,BorderRadiusXxxl:e.BorderRadiusXxxl,BorderRadiusRounded:e.BorderRadiusRounded},t={Size1:e.Size1,Size1_5:e.Size1_5,Size2:e.Size2,Size2_5:e.Size2_5,Size3:e.Size3,Size4:e.Size4,Size5:e.Size5,Size6:e.Size6,Size7:e.Size7,Size8:e.Size8,Size10:e.Size10,Size12:e.Size12,Size13:e.Size13,Size14:e.Size14,Size16:e.Size16,Size18:e.Size18,Size20:e.Size20,Size24:e.Size24,Size27:e.Size27,Size28:e.Size28,Size30:e.Size30,Size32:e.Size32,Size34:e.Size34,Size35:e.Size35,Size39:e.Size39,Size43:e.Size43,Size50:e.Size50,Size64:e.Size64,Size05:e.Size05,Size15:e.Size15,Size025:e.Size025,Size25:e.Size25,xs:e.Size1,sm:e.Size2,md:e.Size3,lg:e.Size4,typography1:12,typography2:14,typography3:16},y={display1:"display1",display2:"display2",display3:"display3",heading1:"heading1",heading2:"heading2",heading3:"heading3",subHeading1:"subHeading1",subHeading2:"subHeading2",subHeading3:"subHeading3",body1:"body1",body2:"body2",body3:"body3",body4:"body4",body5:"body5",message:"message",overline1:"overline1",overline2:"overline2",overline3:"overline3",label1:"label1",label2:"label2",label3:"label3",link1:"link1",link2:"link2",link3:"link3",digits1:"digits1",digits2:"digits2",digits3:"digits3"},u={display1:{fontSize:e.TypographyWideFontSizeDisplay1,lineHeight:"3.5rem",fontWeight:700,letterSpacing:"0"},display2:{fontSize:e.TypographyWideFontSizeDisplay2,lineHeight:"3rem",fontWeight:700,letterSpacing:"0"},display3:{fontSize:e.TypographyWideFontSizeDisplay3,lineHeight:"2.5rem",fontWeight:700,letterSpacing:"0"},heading1:{fontSize:e.TypographyWideFontSizeHeading1,lineHeight:"2rem",fontWeight:700,letterSpacing:"0"},heading2:{fontSize:e.TypographyWideFontSizeHeading2,lineHeight:"1.75rem",fontWeight:700,letterSpacing:"0"},heading3:{fontSize:e.TypographyWideFontSizeHeading3,lineHeight:"1.5rem",fontWeight:700,letterSpacing:"0"},subHeading1:{fontSize:e.TypographyWideFontSizeSubHeading1,lineHeight:"1.25rem",fontWeight:600,letterSpacing:"0"},subHeading2:{fontSize:e.TypographyWideFontSizeSubHeading2,lineHeight:"1.25rem",fontWeight:600,letterSpacing:"0"},subHeading3:{fontSize:e.TypographyWideFontSizeSubHeading3,lineHeight:"1rem",fontWeight:600,letterSpacing:"0"},body1:{fontSize:e.TypographyWideFontSizeBody1,lineHeight:"1.5rem",fontWeight:400,letterSpacing:"0"},body2:{fontSize:e.TypographyWideFontSizeBody2,lineHeight:"1.25rem",fontWeight:400,letterSpacing:"0"},body3:{fontSize:e.TypographyWideFontSizeBody3,lineHeight:"1rem",fontWeight:400,letterSpacing:"0"},body4:{fontSize:e.TypographyWideFontSizeBody4,lineHeight:"0.875rem",fontWeight:400,letterSpacing:"0"},body5:{fontSize:e.TypographyWideFontSizeBody5,lineHeight:"0.75rem",fontWeight:400,letterSpacing:"0"},message:{fontSize:e.TypographyWideFontSizeMessage,lineHeight:"23px",fontWeight:400,letterSpacing:"0"},overline1:{fontSize:e.TypographyWideFontSizeOverline1,lineHeight:"0.75rem",fontWeight:500,letterSpacing:"0"},overline2:{fontSize:e.TypographyWideFontSizeOverline2,lineHeight:"0.75rem",fontWeight:500,letterSpacing:"0"},overline3:{fontSize:e.TypographyWideFontSizeOverline3,lineHeight:"0.75rem",fontWeight:500,letterSpacing:"0"},label1:{fontSize:e.TypographyWideFontSizeLabel1,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},label2:{fontSize:e.TypographyWideFontSizeLabel2,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},label3:{fontSize:e.TypographyWideFontSizeLabel3,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},link1:{fontSize:e.TypographyWideFontSizeLink1,lineHeight:"1.5rem",fontWeight:500,letterSpacing:"0"},link2:{fontSize:e.TypographyWideFontSizeLink2,lineHeight:"1.25rem",fontWeight:500,letterSpacing:"0"},link3:{fontSize:e.TypographyWideFontSizeLink3,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},digits1:{fontSize:e.TypographyWideFontSizeDigits1,lineHeight:"3.5rem",fontWeight:700,letterSpacing:"0"},digits2:{fontSize:e.TypographyWideFontSizeDigits2,lineHeight:"3rem",fontWeight:700,letterSpacing:"0"},digits3:{fontSize:e.TypographyWideFontSizeDigits3,lineHeight:"2.5rem",fontWeight:700,letterSpacing:"0"}},S={display1:{fontSize:e.TypographyMediumFontSizeDisplay1,lineHeight:"3.5rem",fontWeight:700,letterSpacing:"0"},display2:{fontSize:e.TypographyMediumFontSizeDisplay2,lineHeight:"3rem",fontWeight:700,letterSpacing:"0"},display3:{fontSize:e.TypographyMediumFontSizeDisplay3,lineHeight:"2.5rem",fontWeight:700,letterSpacing:"0"},heading1:{fontSize:e.TypographyMediumFontSizeHeading1,lineHeight:"2rem",fontWeight:700,letterSpacing:"0"},heading2:{fontSize:e.TypographyMediumFontSizeHeading2,lineHeight:"1.75rem",fontWeight:700,letterSpacing:"0"},heading3:{fontSize:e.TypographyMediumFontSizeHeading3,lineHeight:"1.5rem",fontWeight:700,letterSpacing:"0"},subHeading1:{fontSize:e.TypographyMediumFontSizeSubHeading1,lineHeight:"1.25rem",fontWeight:600,letterSpacing:"0"},subHeading2:{fontSize:e.TypographyMediumFontSizeSubHeading2,lineHeight:"1.25rem",fontWeight:600,letterSpacing:"0"},subHeading3:{fontSize:e.TypographyMediumFontSizeSubHeading3,lineHeight:"1rem",fontWeight:600,letterSpacing:"0"},body1:{fontSize:e.TypographyMediumFontSizeBody1,lineHeight:"1.5rem",fontWeight:400,letterSpacing:"0"},body2:{fontSize:e.TypographyMediumFontSizeBody2,lineHeight:"1.25rem",fontWeight:400,letterSpacing:"0"},body3:{fontSize:e.TypographyMediumFontSizeBody3,lineHeight:"1rem",fontWeight:400,letterSpacing:"0"},body4:{fontSize:e.TypographyMediumFontSizeBody4,lineHeight:"0.875rem",fontWeight:400,letterSpacing:"0"},body5:{fontSize:e.TypographyMediumFontSizeBody5,lineHeight:"0.75rem",fontWeight:400,letterSpacing:"0"},message:{fontSize:e.TypographyMediumFontSizeMessage,lineHeight:"23px",fontWeight:400,letterSpacing:"0"},overline1:{fontSize:e.TypographyMediumFontSizeOverline1,lineHeight:"0.75rem",fontWeight:500,letterSpacing:"0"},overline2:{fontSize:e.TypographyMediumFontSizeOverline2,lineHeight:"0.75rem",fontWeight:500,letterSpacing:"0"},overline3:{fontSize:e.TypographyMediumFontSizeOverline3,lineHeight:"0.75rem",fontWeight:500,letterSpacing:"0"},label1:{fontSize:e.TypographyMediumFontSizeLabel1,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},label2:{fontSize:e.TypographyMediumFontSizeLabel2,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},label3:{fontSize:e.TypographyMediumFontSizeLabel3,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},link1:{fontSize:e.TypographyMediumFontSizeLink1,lineHeight:"1.5rem",fontWeight:500,letterSpacing:"0"},link2:{fontSize:e.TypographyMediumFontSizeLink2,lineHeight:"1.25rem",fontWeight:500,letterSpacing:"0"},link3:{fontSize:e.TypographyMediumFontSizeLink3,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},digits1:{fontSize:e.TypographyMediumFontSizeDigits1,lineHeight:"3.5rem",fontWeight:700,letterSpacing:"0"},digits2:{fontSize:e.TypographyMediumFontSizeDigits2,lineHeight:"3rem",fontWeight:700,letterSpacing:"0"},digits3:{fontSize:e.TypographyMediumFontSizeDigits3,lineHeight:"2.5rem",fontWeight:700,letterSpacing:"0"}},h={display1:{fontSize:e.TypographyNarrowFontSizeDisplay1,lineHeight:"3.5rem",fontWeight:700,letterSpacing:"0"},display2:{fontSize:e.TypographyNarrowFontSizeDisplay2,lineHeight:"3rem",fontWeight:700,letterSpacing:"0"},display3:{fontSize:e.TypographyNarrowFontSizeDisplay3,lineHeight:"2.5rem",fontWeight:700,letterSpacing:"0"},heading1:{fontSize:e.TypographyNarrowFontSizeHeading1,lineHeight:"2rem",fontWeight:700,letterSpacing:"0"},heading2:{fontSize:e.TypographyNarrowFontSizeHeading2,lineHeight:"1.75rem",fontWeight:700,letterSpacing:"0"},heading3:{fontSize:e.TypographyNarrowFontSizeHeading3,lineHeight:"1.5rem",fontWeight:700,letterSpacing:"0"},subHeading1:{fontSize:e.TypographyNarrowFontSizeSubHeading1,lineHeight:"1.25rem",fontWeight:600,letterSpacing:"0"},subHeading2:{fontSize:e.TypographyNarrowFontSizeSubHeading2,lineHeight:"1.25rem",fontWeight:600,letterSpacing:"0"},subHeading3:{fontSize:e.TypographyNarrowFontSizeSubHeading3,lineHeight:"1rem",fontWeight:600,letterSpacing:"0"},body1:{fontSize:e.TypographyNarrowFontSizeBody1,lineHeight:"1.5rem",fontWeight:400,letterSpacing:"0"},body2:{fontSize:e.TypographyNarrowFontSizeBody2,lineHeight:"1.25rem",fontWeight:400,letterSpacing:"0"},body3:{fontSize:e.TypographyNarrowFontSizeBody3,lineHeight:"1rem",fontWeight:400,letterSpacing:"0"},body4:{fontSize:e.TypographyNarrowFontSizeBody4,lineHeight:"0.875rem",fontWeight:400,letterSpacing:"0"},body5:{fontSize:e.TypographyNarrowFontSizeBody5,lineHeight:"0.75rem",fontWeight:400,letterSpacing:"0"},message:{fontSize:e.TypographyNarrowFontSizeMessage,lineHeight:"23px",fontWeight:400,letterSpacing:"0"},overline1:{fontSize:e.TypographyNarrowFontSizeOverline1,lineHeight:"0.75rem",fontWeight:500,letterSpacing:"0"},overline2:{fontSize:e.TypographyNarrowFontSizeOverline2,lineHeight:"0.75rem",fontWeight:500,letterSpacing:"0"},overline3:{fontSize:e.TypographyNarrowFontSizeOverline3,lineHeight:"0.75rem",fontWeight:500,letterSpacing:"0"},label1:{fontSize:e.TypographyNarrowFontSizeLabel1,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},label2:{fontSize:e.TypographyNarrowFontSizeLabel2,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},label3:{fontSize:e.TypographyNarrowFontSizeLabel3,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},link1:{fontSize:e.TypographyNarrowFontSizeLink1,lineHeight:"1.5rem",fontWeight:500,letterSpacing:"0"},link2:{fontSize:e.TypographyNarrowFontSizeLink2,lineHeight:"1.25rem",fontWeight:500,letterSpacing:"0"},link3:{fontSize:e.TypographyNarrowFontSizeLink3,lineHeight:"1rem",fontWeight:500,letterSpacing:"0"},digits1:{fontSize:e.TypographyNarrowFontSizeDigits1,lineHeight:"3.5rem",fontWeight:700,letterSpacing:"0"},digits2:{fontSize:e.TypographyNarrowFontSizeDigits2,lineHeight:"3rem",fontWeight:700,letterSpacing:"0"},digits3:{fontSize:e.TypographyNarrowFontSizeDigits3,lineHeight:"2.5rem",fontWeight:700,letterSpacing:"0"}},f={fontFamily:e.TypographyPrimaryFontFamily,wide:u,medium:S,narrow:h},o={red:{100:e.ColorRed100,200:e.ColorRed200,300:e.ColorRed300,400:e.ColorRed400,500:e.ColorRed500,600:e.ColorRed600,700:e.ColorRed700,800:e.ColorRed800,900:e.ColorRed900},orange:{100:e.ColorOrange100,200:e.ColorOrange200,300:e.ColorOrange300,400:e.ColorOrange400,500:e.ColorOrange500,600:e.ColorOrange600,700:e.ColorOrange700,800:e.ColorOrange800,900:e.ColorOrange900},yellow:{100:e.ColorYellow100,200:e.ColorYellow200,300:e.ColorYellow300,400:e.ColorYellow400,500:e.ColorYellow500,600:e.ColorYellow600,700:e.ColorYellow700,800:e.ColorYellow800,900:e.ColorYellow900},green:{100:e.ColorGreen100,200:e.ColorGreen200,300:e.ColorGreen300,400:e.ColorGreen400,500:e.ColorGreen500,600:e.ColorGreen600,700:e.ColorGreen700,800:e.ColorGreen800,900:e.ColorGreen900},sky:{100:e.ColorSky100,200:e.ColorSky200,300:e.ColorSky300,400:e.ColorSky400,500:e.ColorSky500,600:e.ColorSky600,700:e.ColorSky700,800:e.ColorSky800,900:e.ColorSky900},blue:{100:e.ColorBlue100,200:e.ColorBlue200,300:e.ColorBlue300,400:e.ColorBlue400,500:e.ColorBlue500,600:e.ColorBlue600,700:e.ColorBlue700,800:e.ColorBlue800,900:e.ColorBlue900},purple:{100:e.ColorPurple100,200:e.ColorPurple200,300:e.ColorPurple300,400:e.ColorPurple400,500:e.ColorPurple500,600:e.ColorPurple600,700:e.ColorPurple700,800:e.ColorPurple800,900:e.ColorPurple900},gray:{100:e.ColorGray100,200:e.ColorGray200,300:e.ColorGray300,400:e.ColorGray400,500:e.ColorGray500,600:e.ColorGray600,700:e.ColorGray700,800:e.ColorGray800,900:e.ColorGray900,black:e.ColorGrayBlack,white:e.ColorGrayWhite}},v={padding:{verPadding:t.Size25,horPadding:t.Size6},gap:t.Size2,radius:l.BorderRadiusMd},z={padding:{verPadding:10,horPadding:12},gap:t.Size2,radius:l.BorderRadiusSm},C={padding:{verPadding:10,horPadding:12},gap:t.Size2,radius:l.BorderRadiusSm},b={suffixPrefixVerPadding:11,suffixPrefixHorPadding:t.Size2},n={color:"#6C6C6C",backgroundColor:"#EEEEEE",borderColor:"#CBCBCB"},a={color:"#CF3237",backgroundColor:"#FFEBEE",borderColor:"#FFEBEE"},r={interactive:{primary:{active:"#30606B",hover:"#00282B",pressed:"#214148",onsurface:"#FFFFFF"},secondary:{active:"#9A9A9A",hover:"#222222",pressed:"#101010",onsurface:"#3E3E3E"},tertiary:{active:"#FFCA7D",hover:"#E7A13C",pressed:"#B27330",onsurface:"#222222"},destructive:{active:"#CF3237",hover:"#AA292D",pressed:"#842023",onsurface:"#FFFFFF"},link:{active:"#30606B"},utility:{active:"#FFF",onsurface:"#222222",border:"#CBCBCB",hover:"#DEEFF3",pressed:"#CBCBCB"}},inputs:{onsurface:{focus:"#384DF6"}},transparent:"transparent"},i={interactive:{tertiary:{active:"#FFCA7D",hover:"#E7A13C",pressed:"#B27330",onsurface:"#222222"}}},d={primary:{active:{color:r.interactive.primary.onsurface,backgroundColor:r.interactive.primary.active,borderColor:r.interactive.primary.active},hover:{color:r.interactive.primary.onsurface,backgroundColor:r.interactive.primary.hover,borderColor:r.interactive.primary.hover},pressed:{color:r.interactive.primary.onsurface,backgroundColor:r.interactive.primary.pressed,borderColor:r.interactive.primary.pressed},focussed:{color:r.interactive.primary.onsurface,backgroundColor:r.interactive.primary.active,borderColor:r.interactive.primary.active,ringColor:r.inputs.onsurface.focus},error:{...a,ringColor:r.inputs.onsurface.focus},default:{color:r.interactive.primary.onsurface,backgroundColor:r.interactive.primary.active,borderColor:r.interactive.primary.active,ringColor:r.inputs.onsurface.focus},disabled:n},secondary:{active:{color:r.interactive.secondary.onsurface,backgroundColor:r.transparent,borderColor:r.interactive.secondary.active},hover:{color:r.interactive.primary.onsurface,backgroundColor:r.interactive.secondary.hover,borderColor:r.interactive.secondary.hover},pressed:{color:r.interactive.primary.onsurface,backgroundColor:r.interactive.secondary.pressed,borderColor:r.interactive.secondary.active},focussed:{color:r.interactive.secondary.onsurface,backgroundColor:r.transparent,borderColor:r.interactive.secondary.active,ringColor:r.inputs.onsurface.focus},error:{...a,ringColor:r.inputs.onsurface.focus},default:{color:r.interactive.secondary.onsurface,backgroundColor:r.transparent,borderColor:r.interactive.secondary.active,ringColor:r.inputs.onsurface.focus},disabled:n},tertiary:{active:{color:r.interactive.tertiary.onsurface,backgroundColor:r.interactive.tertiary.active,borderColor:r.interactive.tertiary.active},hover:{color:r.interactive.tertiary.onsurface,backgroundColor:r.interactive.tertiary.hover,borderColor:r.interactive.tertiary.hover},pressed:{color:r.interactive.tertiary.onsurface,backgroundColor:r.interactive.tertiary.pressed,borderColor:r.interactive.tertiary.pressed},focussed:{color:r.interactive.tertiary.onsurface,backgroundColor:r.interactive.tertiary.active,borderColor:r.interactive.tertiary.active,ringColor:r.inputs.onsurface.focus},error:{...a,ringColor:r.inputs.onsurface.focus},default:{color:r.interactive.tertiary.onsurface,backgroundColor:r.interactive.tertiary.active,borderColor:r.interactive.tertiary.active,ringColor:r.inputs.onsurface.focus},disabled:n},destructive:{active:{color:r.interactive.destructive.onsurface,backgroundColor:r.interactive.destructive.active,borderColor:r.interactive.destructive.active},hover:{color:r.interactive.destructive.onsurface,backgroundColor:r.interactive.destructive.hover,borderColor:r.interactive.destructive.hover},pressed:{color:r.interactive.destructive.onsurface,backgroundColor:r.interactive.destructive.pressed,borderColor:r.interactive.destructive.pressed},focussed:{color:r.interactive.destructive.onsurface,backgroundColor:r.interactive.destructive.active,borderColor:r.interactive.destructive.active,ringColor:r.inputs.onsurface.focus},error:{...a,ringColor:r.inputs.onsurface.focus},default:{color:r.interactive.destructive.onsurface,backgroundColor:r.interactive.destructive.active,borderColor:r.interactive.destructive.active,ringColor:r.inputs.onsurface.focus},disabled:n},utility:{active:{color:r.interactive.secondary.onsurface,backgroundColor:"#FFF",borderColor:r.interactive.secondary.active},hover:{color:r.interactive.utility.onsurface,backgroundColor:r.interactive.utility.hover,borderColor:r.interactive.utility.border},pressed:{color:r.interactive.secondary.onsurface,backgroundColor:r.interactive.utility.pressed,borderColor:r.interactive.utility.pressed},focussed:{color:r.interactive.secondary.onsurface,backgroundColor:"#FFF",borderColor:r.interactive.secondary.active,ringColor:r.inputs.onsurface.focus},error:{...a,ringColor:r.inputs.onsurface.focus},default:{color:r.interactive.secondary.onsurface,backgroundColor:r.transparent,borderColor:r.interactive.secondary.active,ringColor:r.inputs.onsurface.focus},disabled:n},icon:{active:{color:r.interactive.tertiary.onsurface,backgroundColor:"transparent",borderColor:"transparent"},hover:{color:r.interactive.tertiary.onsurface,backgroundColor:"#DEEFF3",borderColor:"transparent"},pressed:{color:r.interactive.tertiary.onsurface,backgroundColor:"#DEEFF3",borderColor:"transparent"},selected:{color:r.interactive.tertiary.onsurface,backgroundColor:"#DEEFF3",borderColor:"transparent"},focussed:{color:r.interactive.tertiary.onsurface,backgroundColor:"transparent",borderColor:"transparent",ringColor:r.inputs.onsurface.focus},error:{...a,ringColor:r.inputs.onsurface.focus},default:{color:r.interactive.tertiary.onsurface,backgroundColor:r.interactive.tertiary.active,borderColor:r.interactive.tertiary.active,ringColor:r.inputs.onsurface.focus},disabled:n},status:{error:{default:"#CF3237",ringColor:r.inputs.onsurface.focus,onsurface:"#AA292D",surface:"#F9D4D5","surface-hover":"#F3A9AB"},success:{default:"#32863E",ringColor:r.inputs.onsurface.focus,onsurface:"#296E33",surface:"#D3EFD7","surface-hover":"#A7DFAF"},warning:{default:e.ColorYellow500,ringColor:r.inputs.onsurface.focus,onsurface:"#704819",surface:"#FFF2DF","surface-hover":"#FFE5BE"},info:{default:"#384DF6",ringColor:r.inputs.onsurface.focus,onsurface:"#2E3FCA",surface:"#D7DBFD"},generic:{default:"#9A9A9A",ringColor:r.inputs.onsurface.focus,onsurface:"#3E3E3E",surface:"#F4F4F4","surface-hover":"#F4F4F4"},hollow:{default:"#9A9A9A",ringColor:r.inputs.onsurface.focus,onsurface:"#3E3E3E",surface:"#F4F4F4","surface-hover":"#FFFFFF"},disabled:{default:"#6C6C6C",ringColor:r.inputs.onsurface.focus,onsurface:"#EEEEEE",surface:"#EEEEEE"}},timebox:{evening:{default:"#9F539F"}},interactive:{primary:{active:"#30606B",hover:"#00282B",pressed:"#214148",onsurface:"#FFFFFF"},secondary:{active:"#9A9A9A",hover:"#222222",pressed:"#101010",onsurface:"#3E3E3E"},tertiary:{active:"#FFCA7D",hover:"#E7A13C",pressed:"#B27330",onsurface:"#222222"},link:{active:e.ColorSky700,hover:e.ColorSky900,disabled:e.ColorGray100,current:"#384DF6"},...r.interactive},inputs:{surface:{active:e.ColorGrayWhite,border:e.ColorGray500,disabled:e.ColorGray100,checked:"#384DF6","checked-hover":"#24319D"},onsurface:{active:"#222222",focus:"#384DF6",placeholder:"#6C6C6C","icon-disabled":"#6C6C6C"},progress:{empty:e.ColorGray300,success:e.ColorGreen400,error:e.ColorRed500,info:e.ColorBlue400}},surface:{border:"#CBCBCB",secondary:"#F4F4F4",tertiary:"#EEEEEE","border-light":"#DFDFDF"},transparent:"transparent",onsurface:{copy:"#3E3E3E","copy-light":e.ColorGray700,"copy-dark":"#222222","copy-disabled":"#6C6C6C"}},F=d;o.gray.white,o.gray.white,o.gray.white,o.gray.white,o.gray[600],o.gray.white,o.gray.white,o.gray.white,o.gray.white,o.gray[600],o.gray.white,o.gray.white,o.gray.white,o.gray.white,o.gray[600],i.interactive.tertiary.onsurface,i.interactive.tertiary.active,i.interactive.tertiary.active,i.interactive.tertiary.onsurface,i.interactive.tertiary.hover,i.interactive.tertiary.hover,i.interactive.tertiary.onsurface,i.interactive.tertiary.pressed,i.interactive.tertiary.pressed,i.interactive.tertiary.onsurface,i.interactive.tertiary.active,i.interactive.tertiary.active,i.interactive.tertiary.onsurface,i.interactive.tertiary.active,i.interactive.tertiary.active,i.interactive.tertiary.onsurface,i.interactive.tertiary.onsurface,i.interactive.tertiary.onsurface,i.interactive.tertiary.pressed,i.interactive.tertiary.pressed,i.interactive.tertiary.onsurface,i.interactive.tertiary.active,i.interactive.tertiary.active,i.interactive.tertiary.onsurface,i.interactive.tertiary.active,i.interactive.tertiary.active;const m={general:{1:"box-shadow: 0px 4px 16px 0px #00000026",2:"box-shadow: 0px 8px 24px -4px #00000026",3:"box-shadow: 0px 2px 3px -1px #00000026",4:"box-shadow: 4px 0px 7px -3px #0000001F"},actions:{1:"box-shadow: 0px 2px 2px -1px #00000033",2:"box-shadow: 0px 1px 2px 0px #00000026"},inputs:{1:"box-shadow: 0px 1px 2px 0px #0000001F"}},H={instant:0,veryfast:.15,fast:.33,medium:.5,slow:1,veryslow:2},W={"ver-padding":4,"right-padding":8,"left-padding":8,radius:50},T={"ver-padding":t.Size1,"hor-padding":t.Size2,radius:l.BorderRadiusMd,gap:t.Size1},k={"ver-padding":t.Size5,"hor-padding":t.Size6,gap:t.Size2},B={button:v,utilityButton:z,iconButton:C,input:b,row:k,badge:W,popover:T},w=(s,p)=>s.status[p].default,c={breakpoints:g,sizing:t,borderRadius:l,typography:f,allColors:o,components:B,motion:H,shadows:m,getStatusColor:w},E={...c,colors:d,mode:"light"},x={...c,colors:F,mode:"dark"};exports.TypographySizeKey=y;exports.baseTokens=c;exports.breakpoints=g;exports.darkTheme=x;exports.lightTheme=E;exports.sizing=t;
|
|
1
|
+
"use strict";
|
|
2
|
+
var variables = require("../design-tokens/variables.cjs");
|
|
3
|
+
const breakpoints = {
|
|
4
|
+
wide: 1280,
|
|
5
|
+
medium: 1024,
|
|
6
|
+
narrow: 480
|
|
7
|
+
};
|
|
8
|
+
const borderRadius = {
|
|
9
|
+
BorderRadiusNone: variables.BorderRadiusNone,
|
|
10
|
+
BorderRadiusXs: variables.BorderRadiusXs,
|
|
11
|
+
BorderRadiusSm: variables.BorderRadiusSm,
|
|
12
|
+
BorderRadiusMd: variables.BorderRadiusMd,
|
|
13
|
+
BorderRadiusLg: variables.BorderRadiusLg,
|
|
14
|
+
BorderRadiusXl: variables.BorderRadiusXl,
|
|
15
|
+
BorderRadiusXxl: variables.BorderRadiusXxl,
|
|
16
|
+
BorderRadiusXxxl: variables.BorderRadiusXxxl,
|
|
17
|
+
BorderRadiusRounded: variables.BorderRadiusRounded
|
|
18
|
+
};
|
|
19
|
+
const sizing = {
|
|
20
|
+
Size1: variables.Size1,
|
|
21
|
+
// 4px
|
|
22
|
+
Size1_5: variables.Size1_5,
|
|
23
|
+
// 6px
|
|
24
|
+
Size2: variables.Size2,
|
|
25
|
+
// 8px
|
|
26
|
+
Size2_5: variables.Size2_5,
|
|
27
|
+
// 10px
|
|
28
|
+
Size3: variables.Size3,
|
|
29
|
+
// 12px
|
|
30
|
+
Size4: variables.Size4,
|
|
31
|
+
// 16px
|
|
32
|
+
Size5: variables.Size5,
|
|
33
|
+
// 20px
|
|
34
|
+
Size6: variables.Size6,
|
|
35
|
+
// 24px
|
|
36
|
+
Size7: variables.Size7,
|
|
37
|
+
// 28px
|
|
38
|
+
Size8: variables.Size8,
|
|
39
|
+
// 32px
|
|
40
|
+
Size10: variables.Size10,
|
|
41
|
+
// 40px
|
|
42
|
+
Size12: variables.Size12,
|
|
43
|
+
// 48px
|
|
44
|
+
Size13: variables.Size13,
|
|
45
|
+
// 52px
|
|
46
|
+
Size14: variables.Size14,
|
|
47
|
+
// 56px
|
|
48
|
+
Size16: variables.Size16,
|
|
49
|
+
// 64px
|
|
50
|
+
Size18: variables.Size18,
|
|
51
|
+
// 72px
|
|
52
|
+
Size20: variables.Size20,
|
|
53
|
+
// 80px
|
|
54
|
+
Size24: variables.Size24,
|
|
55
|
+
// 96px
|
|
56
|
+
Size27: variables.Size27,
|
|
57
|
+
// 108px
|
|
58
|
+
Size28: variables.Size28,
|
|
59
|
+
// 112px
|
|
60
|
+
Size30: variables.Size30,
|
|
61
|
+
// 120px
|
|
62
|
+
Size32: variables.Size32,
|
|
63
|
+
// 128px
|
|
64
|
+
Size34: variables.Size34,
|
|
65
|
+
// 136px
|
|
66
|
+
Size35: variables.Size35,
|
|
67
|
+
// 140px
|
|
68
|
+
Size39: variables.Size39,
|
|
69
|
+
// 156px
|
|
70
|
+
Size43: variables.Size43,
|
|
71
|
+
// 172px
|
|
72
|
+
Size50: variables.Size50,
|
|
73
|
+
// 200px
|
|
74
|
+
Size64: variables.Size64,
|
|
75
|
+
// 256px
|
|
76
|
+
Size05: variables.Size05,
|
|
77
|
+
// 2px
|
|
78
|
+
Size15: variables.Size15,
|
|
79
|
+
// 6px
|
|
80
|
+
Size025: variables.Size025,
|
|
81
|
+
// 1px
|
|
82
|
+
Size25: variables.Size25,
|
|
83
|
+
// 10px
|
|
84
|
+
xs: variables.Size1,
|
|
85
|
+
// 4px
|
|
86
|
+
sm: variables.Size2,
|
|
87
|
+
// 8px
|
|
88
|
+
md: variables.Size3,
|
|
89
|
+
// 12px
|
|
90
|
+
lg: variables.Size4,
|
|
91
|
+
// 16px
|
|
92
|
+
typography1: 12,
|
|
93
|
+
typography2: 14,
|
|
94
|
+
typography3: 16
|
|
95
|
+
};
|
|
96
|
+
const TypographySizeKey = {
|
|
97
|
+
display1: "display1",
|
|
98
|
+
display2: "display2",
|
|
99
|
+
display3: "display3",
|
|
100
|
+
heading1: "heading1",
|
|
101
|
+
heading2: "heading2",
|
|
102
|
+
heading3: "heading3",
|
|
103
|
+
subHeading1: "subHeading1",
|
|
104
|
+
subHeading2: "subHeading2",
|
|
105
|
+
subHeading3: "subHeading3",
|
|
106
|
+
body1: "body1",
|
|
107
|
+
body2: "body2",
|
|
108
|
+
body3: "body3",
|
|
109
|
+
body4: "body4",
|
|
110
|
+
body5: "body5",
|
|
111
|
+
message: "message",
|
|
112
|
+
overline1: "overline1",
|
|
113
|
+
overline2: "overline2",
|
|
114
|
+
overline3: "overline3",
|
|
115
|
+
label1: "label1",
|
|
116
|
+
label2: "label2",
|
|
117
|
+
label3: "label3",
|
|
118
|
+
link1: "link1",
|
|
119
|
+
link2: "link2",
|
|
120
|
+
link3: "link3",
|
|
121
|
+
digits1: "digits1",
|
|
122
|
+
digits2: "digits2",
|
|
123
|
+
digits3: "digits3"
|
|
124
|
+
};
|
|
125
|
+
const wideTypography = {
|
|
126
|
+
display1: {
|
|
127
|
+
fontSize: variables.TypographyWideFontSizeDisplay1,
|
|
128
|
+
lineHeight: "3.5rem",
|
|
129
|
+
fontWeight: 700,
|
|
130
|
+
letterSpacing: "0"
|
|
131
|
+
},
|
|
132
|
+
display2: {
|
|
133
|
+
fontSize: variables.TypographyWideFontSizeDisplay2,
|
|
134
|
+
lineHeight: "3rem",
|
|
135
|
+
fontWeight: 700,
|
|
136
|
+
letterSpacing: "0"
|
|
137
|
+
},
|
|
138
|
+
display3: {
|
|
139
|
+
fontSize: variables.TypographyWideFontSizeDisplay3,
|
|
140
|
+
lineHeight: "2.5rem",
|
|
141
|
+
fontWeight: 700,
|
|
142
|
+
letterSpacing: "0"
|
|
143
|
+
},
|
|
144
|
+
heading1: {
|
|
145
|
+
fontSize: variables.TypographyWideFontSizeHeading1,
|
|
146
|
+
lineHeight: "2rem",
|
|
147
|
+
fontWeight: 700,
|
|
148
|
+
letterSpacing: "0"
|
|
149
|
+
},
|
|
150
|
+
heading2: {
|
|
151
|
+
fontSize: variables.TypographyWideFontSizeHeading2,
|
|
152
|
+
lineHeight: "1.75rem",
|
|
153
|
+
fontWeight: 700,
|
|
154
|
+
letterSpacing: "0"
|
|
155
|
+
},
|
|
156
|
+
heading3: {
|
|
157
|
+
fontSize: variables.TypographyWideFontSizeHeading3,
|
|
158
|
+
lineHeight: "1.5rem",
|
|
159
|
+
fontWeight: 700,
|
|
160
|
+
letterSpacing: "0"
|
|
161
|
+
},
|
|
162
|
+
subHeading1: {
|
|
163
|
+
fontSize: variables.TypographyWideFontSizeSubHeading1,
|
|
164
|
+
lineHeight: "1.25rem",
|
|
165
|
+
fontWeight: 600,
|
|
166
|
+
letterSpacing: "0"
|
|
167
|
+
},
|
|
168
|
+
subHeading2: {
|
|
169
|
+
fontSize: variables.TypographyWideFontSizeSubHeading2,
|
|
170
|
+
lineHeight: "1.25rem",
|
|
171
|
+
fontWeight: 600,
|
|
172
|
+
letterSpacing: "0"
|
|
173
|
+
},
|
|
174
|
+
subHeading3: {
|
|
175
|
+
fontSize: variables.TypographyWideFontSizeSubHeading3,
|
|
176
|
+
lineHeight: "1rem",
|
|
177
|
+
fontWeight: 600,
|
|
178
|
+
letterSpacing: "0"
|
|
179
|
+
},
|
|
180
|
+
body1: {
|
|
181
|
+
fontSize: variables.TypographyWideFontSizeBody1,
|
|
182
|
+
lineHeight: "1.5rem",
|
|
183
|
+
fontWeight: 400,
|
|
184
|
+
letterSpacing: "0"
|
|
185
|
+
},
|
|
186
|
+
body2: {
|
|
187
|
+
fontSize: variables.TypographyWideFontSizeBody2,
|
|
188
|
+
lineHeight: "1.25rem",
|
|
189
|
+
fontWeight: 400,
|
|
190
|
+
letterSpacing: "0"
|
|
191
|
+
},
|
|
192
|
+
body3: {
|
|
193
|
+
fontSize: variables.TypographyWideFontSizeBody3,
|
|
194
|
+
lineHeight: "1rem",
|
|
195
|
+
fontWeight: 400,
|
|
196
|
+
letterSpacing: "0"
|
|
197
|
+
},
|
|
198
|
+
body4: {
|
|
199
|
+
fontSize: variables.TypographyWideFontSizeBody4,
|
|
200
|
+
lineHeight: "0.875rem",
|
|
201
|
+
fontWeight: 400,
|
|
202
|
+
letterSpacing: "0"
|
|
203
|
+
},
|
|
204
|
+
body5: {
|
|
205
|
+
fontSize: variables.TypographyWideFontSizeBody5,
|
|
206
|
+
lineHeight: "0.75rem",
|
|
207
|
+
fontWeight: 400,
|
|
208
|
+
letterSpacing: "0"
|
|
209
|
+
},
|
|
210
|
+
message: {
|
|
211
|
+
fontSize: variables.TypographyWideFontSizeMessage,
|
|
212
|
+
lineHeight: "23px",
|
|
213
|
+
fontWeight: 400,
|
|
214
|
+
letterSpacing: "0"
|
|
215
|
+
},
|
|
216
|
+
overline1: {
|
|
217
|
+
fontSize: variables.TypographyWideFontSizeOverline1,
|
|
218
|
+
lineHeight: "0.75rem",
|
|
219
|
+
fontWeight: 500,
|
|
220
|
+
letterSpacing: "0"
|
|
221
|
+
},
|
|
222
|
+
overline2: {
|
|
223
|
+
fontSize: variables.TypographyWideFontSizeOverline2,
|
|
224
|
+
lineHeight: "0.75rem",
|
|
225
|
+
fontWeight: 500,
|
|
226
|
+
letterSpacing: "0"
|
|
227
|
+
},
|
|
228
|
+
overline3: {
|
|
229
|
+
fontSize: variables.TypographyWideFontSizeOverline3,
|
|
230
|
+
lineHeight: "0.75rem",
|
|
231
|
+
fontWeight: 500,
|
|
232
|
+
letterSpacing: "0"
|
|
233
|
+
},
|
|
234
|
+
label1: {
|
|
235
|
+
fontSize: variables.TypographyWideFontSizeLabel1,
|
|
236
|
+
lineHeight: "1rem",
|
|
237
|
+
fontWeight: 500,
|
|
238
|
+
letterSpacing: "0"
|
|
239
|
+
},
|
|
240
|
+
label2: {
|
|
241
|
+
fontSize: variables.TypographyWideFontSizeLabel2,
|
|
242
|
+
lineHeight: "1rem",
|
|
243
|
+
fontWeight: 500,
|
|
244
|
+
letterSpacing: "0"
|
|
245
|
+
},
|
|
246
|
+
label3: {
|
|
247
|
+
fontSize: variables.TypographyWideFontSizeLabel3,
|
|
248
|
+
lineHeight: "1rem",
|
|
249
|
+
fontWeight: 500,
|
|
250
|
+
letterSpacing: "0"
|
|
251
|
+
},
|
|
252
|
+
link1: {
|
|
253
|
+
fontSize: variables.TypographyWideFontSizeLink1,
|
|
254
|
+
lineHeight: "1.5rem",
|
|
255
|
+
fontWeight: 500,
|
|
256
|
+
letterSpacing: "0"
|
|
257
|
+
},
|
|
258
|
+
link2: {
|
|
259
|
+
fontSize: variables.TypographyWideFontSizeLink2,
|
|
260
|
+
lineHeight: "1.25rem",
|
|
261
|
+
fontWeight: 500,
|
|
262
|
+
letterSpacing: "0"
|
|
263
|
+
},
|
|
264
|
+
link3: {
|
|
265
|
+
fontSize: variables.TypographyWideFontSizeLink3,
|
|
266
|
+
lineHeight: "1rem",
|
|
267
|
+
fontWeight: 500,
|
|
268
|
+
letterSpacing: "0"
|
|
269
|
+
},
|
|
270
|
+
digits1: {
|
|
271
|
+
fontSize: variables.TypographyWideFontSizeDigits1,
|
|
272
|
+
lineHeight: "3.5rem",
|
|
273
|
+
fontWeight: 700,
|
|
274
|
+
letterSpacing: "0"
|
|
275
|
+
},
|
|
276
|
+
digits2: {
|
|
277
|
+
fontSize: variables.TypographyWideFontSizeDigits2,
|
|
278
|
+
lineHeight: "3rem",
|
|
279
|
+
fontWeight: 700,
|
|
280
|
+
letterSpacing: "0"
|
|
281
|
+
},
|
|
282
|
+
digits3: {
|
|
283
|
+
fontSize: variables.TypographyWideFontSizeDigits3,
|
|
284
|
+
lineHeight: "2.5rem",
|
|
285
|
+
fontWeight: 700,
|
|
286
|
+
letterSpacing: "0"
|
|
287
|
+
}
|
|
288
|
+
};
|
|
289
|
+
const mediumTypography = {
|
|
290
|
+
display1: {
|
|
291
|
+
fontSize: variables.TypographyMediumFontSizeDisplay1,
|
|
292
|
+
lineHeight: "3.5rem",
|
|
293
|
+
fontWeight: 700,
|
|
294
|
+
letterSpacing: "0"
|
|
295
|
+
},
|
|
296
|
+
display2: {
|
|
297
|
+
fontSize: variables.TypographyMediumFontSizeDisplay2,
|
|
298
|
+
lineHeight: "3rem",
|
|
299
|
+
fontWeight: 700,
|
|
300
|
+
letterSpacing: "0"
|
|
301
|
+
},
|
|
302
|
+
display3: {
|
|
303
|
+
fontSize: variables.TypographyMediumFontSizeDisplay3,
|
|
304
|
+
lineHeight: "2.5rem",
|
|
305
|
+
fontWeight: 700,
|
|
306
|
+
letterSpacing: "0"
|
|
307
|
+
},
|
|
308
|
+
heading1: {
|
|
309
|
+
fontSize: variables.TypographyMediumFontSizeHeading1,
|
|
310
|
+
lineHeight: "2rem",
|
|
311
|
+
fontWeight: 700,
|
|
312
|
+
letterSpacing: "0"
|
|
313
|
+
},
|
|
314
|
+
heading2: {
|
|
315
|
+
fontSize: variables.TypographyMediumFontSizeHeading2,
|
|
316
|
+
lineHeight: "1.75rem",
|
|
317
|
+
fontWeight: 700,
|
|
318
|
+
letterSpacing: "0"
|
|
319
|
+
},
|
|
320
|
+
heading3: {
|
|
321
|
+
fontSize: variables.TypographyMediumFontSizeHeading3,
|
|
322
|
+
lineHeight: "1.5rem",
|
|
323
|
+
fontWeight: 700,
|
|
324
|
+
letterSpacing: "0"
|
|
325
|
+
},
|
|
326
|
+
subHeading1: {
|
|
327
|
+
fontSize: variables.TypographyMediumFontSizeSubHeading1,
|
|
328
|
+
lineHeight: "1.25rem",
|
|
329
|
+
fontWeight: 600,
|
|
330
|
+
letterSpacing: "0"
|
|
331
|
+
},
|
|
332
|
+
subHeading2: {
|
|
333
|
+
fontSize: variables.TypographyMediumFontSizeSubHeading2,
|
|
334
|
+
lineHeight: "1.25rem",
|
|
335
|
+
fontWeight: 600,
|
|
336
|
+
letterSpacing: "0"
|
|
337
|
+
},
|
|
338
|
+
subHeading3: {
|
|
339
|
+
fontSize: variables.TypographyMediumFontSizeSubHeading3,
|
|
340
|
+
lineHeight: "1rem",
|
|
341
|
+
fontWeight: 600,
|
|
342
|
+
letterSpacing: "0"
|
|
343
|
+
},
|
|
344
|
+
body1: {
|
|
345
|
+
fontSize: variables.TypographyMediumFontSizeBody1,
|
|
346
|
+
lineHeight: "1.5rem",
|
|
347
|
+
fontWeight: 400,
|
|
348
|
+
letterSpacing: "0"
|
|
349
|
+
},
|
|
350
|
+
body2: {
|
|
351
|
+
fontSize: variables.TypographyMediumFontSizeBody2,
|
|
352
|
+
lineHeight: "1.25rem",
|
|
353
|
+
fontWeight: 400,
|
|
354
|
+
letterSpacing: "0"
|
|
355
|
+
},
|
|
356
|
+
body3: {
|
|
357
|
+
fontSize: variables.TypographyMediumFontSizeBody3,
|
|
358
|
+
lineHeight: "1rem",
|
|
359
|
+
fontWeight: 400,
|
|
360
|
+
letterSpacing: "0"
|
|
361
|
+
},
|
|
362
|
+
body4: {
|
|
363
|
+
fontSize: variables.TypographyMediumFontSizeBody4,
|
|
364
|
+
lineHeight: "0.875rem",
|
|
365
|
+
fontWeight: 400,
|
|
366
|
+
letterSpacing: "0"
|
|
367
|
+
},
|
|
368
|
+
body5: {
|
|
369
|
+
fontSize: variables.TypographyMediumFontSizeBody5,
|
|
370
|
+
lineHeight: "0.75rem",
|
|
371
|
+
fontWeight: 400,
|
|
372
|
+
letterSpacing: "0"
|
|
373
|
+
},
|
|
374
|
+
message: {
|
|
375
|
+
fontSize: variables.TypographyMediumFontSizeMessage,
|
|
376
|
+
lineHeight: "23px",
|
|
377
|
+
fontWeight: 400,
|
|
378
|
+
letterSpacing: "0"
|
|
379
|
+
},
|
|
380
|
+
overline1: {
|
|
381
|
+
fontSize: variables.TypographyMediumFontSizeOverline1,
|
|
382
|
+
lineHeight: "0.75rem",
|
|
383
|
+
fontWeight: 500,
|
|
384
|
+
letterSpacing: "0"
|
|
385
|
+
},
|
|
386
|
+
overline2: {
|
|
387
|
+
fontSize: variables.TypographyMediumFontSizeOverline2,
|
|
388
|
+
lineHeight: "0.75rem",
|
|
389
|
+
fontWeight: 500,
|
|
390
|
+
letterSpacing: "0"
|
|
391
|
+
},
|
|
392
|
+
overline3: {
|
|
393
|
+
fontSize: variables.TypographyMediumFontSizeOverline3,
|
|
394
|
+
lineHeight: "0.75rem",
|
|
395
|
+
fontWeight: 500,
|
|
396
|
+
letterSpacing: "0"
|
|
397
|
+
},
|
|
398
|
+
label1: {
|
|
399
|
+
fontSize: variables.TypographyMediumFontSizeLabel1,
|
|
400
|
+
lineHeight: "1rem",
|
|
401
|
+
fontWeight: 500,
|
|
402
|
+
letterSpacing: "0"
|
|
403
|
+
},
|
|
404
|
+
label2: {
|
|
405
|
+
fontSize: variables.TypographyMediumFontSizeLabel2,
|
|
406
|
+
lineHeight: "1rem",
|
|
407
|
+
fontWeight: 500,
|
|
408
|
+
letterSpacing: "0"
|
|
409
|
+
},
|
|
410
|
+
label3: {
|
|
411
|
+
fontSize: variables.TypographyMediumFontSizeLabel3,
|
|
412
|
+
lineHeight: "1rem",
|
|
413
|
+
fontWeight: 500,
|
|
414
|
+
letterSpacing: "0"
|
|
415
|
+
},
|
|
416
|
+
link1: {
|
|
417
|
+
fontSize: variables.TypographyMediumFontSizeLink1,
|
|
418
|
+
lineHeight: "1.5rem",
|
|
419
|
+
fontWeight: 500,
|
|
420
|
+
letterSpacing: "0"
|
|
421
|
+
},
|
|
422
|
+
link2: {
|
|
423
|
+
fontSize: variables.TypographyMediumFontSizeLink2,
|
|
424
|
+
lineHeight: "1.25rem",
|
|
425
|
+
fontWeight: 500,
|
|
426
|
+
letterSpacing: "0"
|
|
427
|
+
},
|
|
428
|
+
link3: {
|
|
429
|
+
fontSize: variables.TypographyMediumFontSizeLink3,
|
|
430
|
+
lineHeight: "1rem",
|
|
431
|
+
fontWeight: 500,
|
|
432
|
+
letterSpacing: "0"
|
|
433
|
+
},
|
|
434
|
+
digits1: {
|
|
435
|
+
fontSize: variables.TypographyMediumFontSizeDigits1,
|
|
436
|
+
lineHeight: "3.5rem",
|
|
437
|
+
fontWeight: 700,
|
|
438
|
+
letterSpacing: "0"
|
|
439
|
+
},
|
|
440
|
+
digits2: {
|
|
441
|
+
fontSize: variables.TypographyMediumFontSizeDigits2,
|
|
442
|
+
lineHeight: "3rem",
|
|
443
|
+
fontWeight: 700,
|
|
444
|
+
letterSpacing: "0"
|
|
445
|
+
},
|
|
446
|
+
digits3: {
|
|
447
|
+
fontSize: variables.TypographyMediumFontSizeDigits3,
|
|
448
|
+
lineHeight: "2.5rem",
|
|
449
|
+
fontWeight: 700,
|
|
450
|
+
letterSpacing: "0"
|
|
451
|
+
}
|
|
452
|
+
};
|
|
453
|
+
const narrowTypography = {
|
|
454
|
+
display1: {
|
|
455
|
+
fontSize: variables.TypographyNarrowFontSizeDisplay1,
|
|
456
|
+
lineHeight: "3.5rem",
|
|
457
|
+
fontWeight: 700,
|
|
458
|
+
letterSpacing: "0"
|
|
459
|
+
},
|
|
460
|
+
display2: {
|
|
461
|
+
fontSize: variables.TypographyNarrowFontSizeDisplay2,
|
|
462
|
+
lineHeight: "3rem",
|
|
463
|
+
fontWeight: 700,
|
|
464
|
+
letterSpacing: "0"
|
|
465
|
+
},
|
|
466
|
+
display3: {
|
|
467
|
+
fontSize: variables.TypographyNarrowFontSizeDisplay3,
|
|
468
|
+
lineHeight: "2.5rem",
|
|
469
|
+
fontWeight: 700,
|
|
470
|
+
letterSpacing: "0"
|
|
471
|
+
},
|
|
472
|
+
heading1: {
|
|
473
|
+
fontSize: variables.TypographyNarrowFontSizeHeading1,
|
|
474
|
+
lineHeight: "2rem",
|
|
475
|
+
fontWeight: 700,
|
|
476
|
+
letterSpacing: "0"
|
|
477
|
+
},
|
|
478
|
+
heading2: {
|
|
479
|
+
fontSize: variables.TypographyNarrowFontSizeHeading2,
|
|
480
|
+
lineHeight: "1.75rem",
|
|
481
|
+
fontWeight: 700,
|
|
482
|
+
letterSpacing: "0"
|
|
483
|
+
},
|
|
484
|
+
heading3: {
|
|
485
|
+
fontSize: variables.TypographyNarrowFontSizeHeading3,
|
|
486
|
+
lineHeight: "1.5rem",
|
|
487
|
+
fontWeight: 700,
|
|
488
|
+
letterSpacing: "0"
|
|
489
|
+
},
|
|
490
|
+
subHeading1: {
|
|
491
|
+
fontSize: variables.TypographyNarrowFontSizeSubHeading1,
|
|
492
|
+
lineHeight: "1.25rem",
|
|
493
|
+
fontWeight: 600,
|
|
494
|
+
letterSpacing: "0"
|
|
495
|
+
},
|
|
496
|
+
subHeading2: {
|
|
497
|
+
fontSize: variables.TypographyNarrowFontSizeSubHeading2,
|
|
498
|
+
lineHeight: "1.25rem",
|
|
499
|
+
fontWeight: 600,
|
|
500
|
+
letterSpacing: "0"
|
|
501
|
+
},
|
|
502
|
+
subHeading3: {
|
|
503
|
+
fontSize: variables.TypographyNarrowFontSizeSubHeading3,
|
|
504
|
+
lineHeight: "1rem",
|
|
505
|
+
fontWeight: 600,
|
|
506
|
+
letterSpacing: "0"
|
|
507
|
+
},
|
|
508
|
+
body1: {
|
|
509
|
+
fontSize: variables.TypographyNarrowFontSizeBody1,
|
|
510
|
+
lineHeight: "1.5rem",
|
|
511
|
+
fontWeight: 400,
|
|
512
|
+
letterSpacing: "0"
|
|
513
|
+
},
|
|
514
|
+
body2: {
|
|
515
|
+
fontSize: variables.TypographyNarrowFontSizeBody2,
|
|
516
|
+
lineHeight: "1.25rem",
|
|
517
|
+
fontWeight: 400,
|
|
518
|
+
letterSpacing: "0"
|
|
519
|
+
},
|
|
520
|
+
body3: {
|
|
521
|
+
fontSize: variables.TypographyNarrowFontSizeBody3,
|
|
522
|
+
lineHeight: "1rem",
|
|
523
|
+
fontWeight: 400,
|
|
524
|
+
letterSpacing: "0"
|
|
525
|
+
},
|
|
526
|
+
body4: {
|
|
527
|
+
fontSize: variables.TypographyNarrowFontSizeBody4,
|
|
528
|
+
lineHeight: "0.875rem",
|
|
529
|
+
fontWeight: 400,
|
|
530
|
+
letterSpacing: "0"
|
|
531
|
+
},
|
|
532
|
+
body5: {
|
|
533
|
+
fontSize: variables.TypographyNarrowFontSizeBody5,
|
|
534
|
+
lineHeight: "0.75rem",
|
|
535
|
+
fontWeight: 400,
|
|
536
|
+
letterSpacing: "0"
|
|
537
|
+
},
|
|
538
|
+
message: {
|
|
539
|
+
fontSize: variables.TypographyNarrowFontSizeMessage,
|
|
540
|
+
lineHeight: "23px",
|
|
541
|
+
fontWeight: 400,
|
|
542
|
+
letterSpacing: "0"
|
|
543
|
+
},
|
|
544
|
+
overline1: {
|
|
545
|
+
fontSize: variables.TypographyNarrowFontSizeOverline1,
|
|
546
|
+
lineHeight: "0.75rem",
|
|
547
|
+
fontWeight: 500,
|
|
548
|
+
letterSpacing: "0"
|
|
549
|
+
},
|
|
550
|
+
overline2: {
|
|
551
|
+
fontSize: variables.TypographyNarrowFontSizeOverline2,
|
|
552
|
+
lineHeight: "0.75rem",
|
|
553
|
+
fontWeight: 500,
|
|
554
|
+
letterSpacing: "0"
|
|
555
|
+
},
|
|
556
|
+
overline3: {
|
|
557
|
+
fontSize: variables.TypographyNarrowFontSizeOverline3,
|
|
558
|
+
lineHeight: "0.75rem",
|
|
559
|
+
fontWeight: 500,
|
|
560
|
+
letterSpacing: "0"
|
|
561
|
+
},
|
|
562
|
+
label1: {
|
|
563
|
+
fontSize: variables.TypographyNarrowFontSizeLabel1,
|
|
564
|
+
lineHeight: "1rem",
|
|
565
|
+
fontWeight: 500,
|
|
566
|
+
letterSpacing: "0"
|
|
567
|
+
},
|
|
568
|
+
label2: {
|
|
569
|
+
fontSize: variables.TypographyNarrowFontSizeLabel2,
|
|
570
|
+
lineHeight: "1rem",
|
|
571
|
+
fontWeight: 500,
|
|
572
|
+
letterSpacing: "0"
|
|
573
|
+
},
|
|
574
|
+
label3: {
|
|
575
|
+
fontSize: variables.TypographyNarrowFontSizeLabel3,
|
|
576
|
+
lineHeight: "1rem",
|
|
577
|
+
fontWeight: 500,
|
|
578
|
+
letterSpacing: "0"
|
|
579
|
+
},
|
|
580
|
+
link1: {
|
|
581
|
+
fontSize: variables.TypographyNarrowFontSizeLink1,
|
|
582
|
+
lineHeight: "1.5rem",
|
|
583
|
+
fontWeight: 500,
|
|
584
|
+
letterSpacing: "0"
|
|
585
|
+
},
|
|
586
|
+
link2: {
|
|
587
|
+
fontSize: variables.TypographyNarrowFontSizeLink2,
|
|
588
|
+
lineHeight: "1.25rem",
|
|
589
|
+
fontWeight: 500,
|
|
590
|
+
letterSpacing: "0"
|
|
591
|
+
},
|
|
592
|
+
link3: {
|
|
593
|
+
fontSize: variables.TypographyNarrowFontSizeLink3,
|
|
594
|
+
lineHeight: "1rem",
|
|
595
|
+
fontWeight: 500,
|
|
596
|
+
letterSpacing: "0"
|
|
597
|
+
},
|
|
598
|
+
digits1: {
|
|
599
|
+
fontSize: variables.TypographyNarrowFontSizeDigits1,
|
|
600
|
+
lineHeight: "3.5rem",
|
|
601
|
+
fontWeight: 700,
|
|
602
|
+
letterSpacing: "0"
|
|
603
|
+
},
|
|
604
|
+
digits2: {
|
|
605
|
+
fontSize: variables.TypographyNarrowFontSizeDigits2,
|
|
606
|
+
lineHeight: "3rem",
|
|
607
|
+
fontWeight: 700,
|
|
608
|
+
letterSpacing: "0"
|
|
609
|
+
},
|
|
610
|
+
digits3: {
|
|
611
|
+
fontSize: variables.TypographyNarrowFontSizeDigits3,
|
|
612
|
+
lineHeight: "2.5rem",
|
|
613
|
+
fontWeight: 700,
|
|
614
|
+
letterSpacing: "0"
|
|
615
|
+
}
|
|
616
|
+
};
|
|
617
|
+
const typography = {
|
|
618
|
+
fontFamily: variables.TypographyPrimaryFontFamily,
|
|
619
|
+
wide: wideTypography,
|
|
620
|
+
medium: mediumTypography,
|
|
621
|
+
narrow: narrowTypography
|
|
622
|
+
};
|
|
623
|
+
const colors = {
|
|
624
|
+
red: {
|
|
625
|
+
100: variables.ColorRed100,
|
|
626
|
+
200: variables.ColorRed200,
|
|
627
|
+
300: variables.ColorRed300,
|
|
628
|
+
400: variables.ColorRed400,
|
|
629
|
+
500: variables.ColorRed500,
|
|
630
|
+
600: variables.ColorRed600,
|
|
631
|
+
700: variables.ColorRed700,
|
|
632
|
+
800: variables.ColorRed800,
|
|
633
|
+
900: variables.ColorRed900
|
|
634
|
+
},
|
|
635
|
+
orange: {
|
|
636
|
+
100: variables.ColorOrange100,
|
|
637
|
+
200: variables.ColorOrange200,
|
|
638
|
+
300: variables.ColorOrange300,
|
|
639
|
+
400: variables.ColorOrange400,
|
|
640
|
+
500: variables.ColorOrange500,
|
|
641
|
+
600: variables.ColorOrange600,
|
|
642
|
+
700: variables.ColorOrange700,
|
|
643
|
+
800: variables.ColorOrange800,
|
|
644
|
+
900: variables.ColorOrange900
|
|
645
|
+
},
|
|
646
|
+
yellow: {
|
|
647
|
+
100: variables.ColorYellow100,
|
|
648
|
+
200: variables.ColorYellow200,
|
|
649
|
+
300: variables.ColorYellow300,
|
|
650
|
+
400: variables.ColorYellow400,
|
|
651
|
+
500: variables.ColorYellow500,
|
|
652
|
+
600: variables.ColorYellow600,
|
|
653
|
+
700: variables.ColorYellow700,
|
|
654
|
+
800: variables.ColorYellow800,
|
|
655
|
+
900: variables.ColorYellow900
|
|
656
|
+
},
|
|
657
|
+
green: {
|
|
658
|
+
100: variables.ColorGreen100,
|
|
659
|
+
200: variables.ColorGreen200,
|
|
660
|
+
300: variables.ColorGreen300,
|
|
661
|
+
400: variables.ColorGreen400,
|
|
662
|
+
500: variables.ColorGreen500,
|
|
663
|
+
600: variables.ColorGreen600,
|
|
664
|
+
700: variables.ColorGreen700,
|
|
665
|
+
800: variables.ColorGreen800,
|
|
666
|
+
900: variables.ColorGreen900
|
|
667
|
+
},
|
|
668
|
+
sky: {
|
|
669
|
+
100: variables.ColorSky100,
|
|
670
|
+
200: variables.ColorSky200,
|
|
671
|
+
300: variables.ColorSky300,
|
|
672
|
+
400: variables.ColorSky400,
|
|
673
|
+
500: variables.ColorSky500,
|
|
674
|
+
600: variables.ColorSky600,
|
|
675
|
+
700: variables.ColorSky700,
|
|
676
|
+
800: variables.ColorSky800,
|
|
677
|
+
900: variables.ColorSky900
|
|
678
|
+
},
|
|
679
|
+
blue: {
|
|
680
|
+
100: variables.ColorBlue100,
|
|
681
|
+
200: variables.ColorBlue200,
|
|
682
|
+
300: variables.ColorBlue300,
|
|
683
|
+
400: variables.ColorBlue400,
|
|
684
|
+
500: variables.ColorBlue500,
|
|
685
|
+
600: variables.ColorBlue600,
|
|
686
|
+
700: variables.ColorBlue700,
|
|
687
|
+
800: variables.ColorBlue800,
|
|
688
|
+
900: variables.ColorBlue900
|
|
689
|
+
},
|
|
690
|
+
purple: {
|
|
691
|
+
100: variables.ColorPurple100,
|
|
692
|
+
200: variables.ColorPurple200,
|
|
693
|
+
300: variables.ColorPurple300,
|
|
694
|
+
400: variables.ColorPurple400,
|
|
695
|
+
500: variables.ColorPurple500,
|
|
696
|
+
600: variables.ColorPurple600,
|
|
697
|
+
700: variables.ColorPurple700,
|
|
698
|
+
800: variables.ColorPurple800,
|
|
699
|
+
900: variables.ColorPurple900
|
|
700
|
+
},
|
|
701
|
+
gray: {
|
|
702
|
+
100: variables.ColorGray100,
|
|
703
|
+
200: variables.ColorGray200,
|
|
704
|
+
300: variables.ColorGray300,
|
|
705
|
+
400: variables.ColorGray400,
|
|
706
|
+
500: variables.ColorGray500,
|
|
707
|
+
600: variables.ColorGray600,
|
|
708
|
+
700: variables.ColorGray700,
|
|
709
|
+
800: variables.ColorGray800,
|
|
710
|
+
900: variables.ColorGray900,
|
|
711
|
+
black: variables.ColorGrayBlack,
|
|
712
|
+
white: variables.ColorGrayWhite
|
|
713
|
+
}
|
|
714
|
+
};
|
|
715
|
+
const button = {
|
|
716
|
+
padding: {
|
|
717
|
+
verPadding: sizing.Size25,
|
|
718
|
+
// 25px
|
|
719
|
+
horPadding: sizing.Size6
|
|
720
|
+
// 10px
|
|
721
|
+
},
|
|
722
|
+
gap: sizing.Size2,
|
|
723
|
+
// 8px
|
|
724
|
+
radius: borderRadius.BorderRadiusMd
|
|
725
|
+
// 6px
|
|
726
|
+
};
|
|
727
|
+
const utilityButton = {
|
|
728
|
+
padding: {
|
|
729
|
+
verPadding: 10,
|
|
730
|
+
horPadding: 12
|
|
731
|
+
},
|
|
732
|
+
gap: sizing.Size2,
|
|
733
|
+
// 8px
|
|
734
|
+
radius: borderRadius.BorderRadiusSm
|
|
735
|
+
// 6px
|
|
736
|
+
};
|
|
737
|
+
const iconButton = {
|
|
738
|
+
padding: {
|
|
739
|
+
verPadding: 10,
|
|
740
|
+
horPadding: 12
|
|
741
|
+
},
|
|
742
|
+
gap: sizing.Size2,
|
|
743
|
+
// 8px
|
|
744
|
+
radius: borderRadius.BorderRadiusSm
|
|
745
|
+
// 6px
|
|
746
|
+
};
|
|
747
|
+
const input = {
|
|
748
|
+
suffixPrefixVerPadding: 11,
|
|
749
|
+
// special case - see sizing in FIGMA
|
|
750
|
+
suffixPrefixHorPadding: sizing.Size2
|
|
751
|
+
};
|
|
752
|
+
const disabled = {
|
|
753
|
+
color: "#6C6C6C",
|
|
754
|
+
backgroundColor: "#EEEEEE",
|
|
755
|
+
borderColor: "#CBCBCB"
|
|
756
|
+
};
|
|
757
|
+
const error = {
|
|
758
|
+
color: "#CF3237",
|
|
759
|
+
backgroundColor: "#FFEBEE",
|
|
760
|
+
borderColor: "#FFEBEE"
|
|
761
|
+
};
|
|
762
|
+
const lightInteractive = {
|
|
763
|
+
interactive: {
|
|
764
|
+
primary: {
|
|
765
|
+
active: "#30606B",
|
|
766
|
+
hover: "#00282B",
|
|
767
|
+
pressed: "#214148",
|
|
768
|
+
onsurface: "#FFFFFF"
|
|
769
|
+
},
|
|
770
|
+
secondary: {
|
|
771
|
+
active: "#9A9A9A",
|
|
772
|
+
hover: "#222222",
|
|
773
|
+
pressed: "#101010",
|
|
774
|
+
onsurface: "#3E3E3E"
|
|
775
|
+
},
|
|
776
|
+
tertiary: {
|
|
777
|
+
active: "#FFCA7D",
|
|
778
|
+
hover: "#E7A13C",
|
|
779
|
+
pressed: "#B27330",
|
|
780
|
+
onsurface: "#222222"
|
|
781
|
+
},
|
|
782
|
+
destructive: {
|
|
783
|
+
active: "#CF3237",
|
|
784
|
+
hover: "#AA292D",
|
|
785
|
+
pressed: "#842023",
|
|
786
|
+
onsurface: "#FFFFFF"
|
|
787
|
+
},
|
|
788
|
+
link: {
|
|
789
|
+
active: "#30606B"
|
|
790
|
+
},
|
|
791
|
+
utility: {
|
|
792
|
+
active: "#FFF",
|
|
793
|
+
onsurface: "#222222",
|
|
794
|
+
border: "#CBCBCB",
|
|
795
|
+
hover: "#DEEFF3",
|
|
796
|
+
pressed: "#CBCBCB"
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
inputs: {
|
|
800
|
+
onsurface: {
|
|
801
|
+
focus: "#384DF6"
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
transparent: "transparent"
|
|
805
|
+
};
|
|
806
|
+
const darkInteractive = {
|
|
807
|
+
interactive: {
|
|
808
|
+
tertiary: {
|
|
809
|
+
active: "#FFCA7D",
|
|
810
|
+
hover: "#E7A13C",
|
|
811
|
+
pressed: "#B27330",
|
|
812
|
+
onsurface: "#222222"
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
};
|
|
816
|
+
const lightModeColors = {
|
|
817
|
+
primary: {
|
|
818
|
+
active: {
|
|
819
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
820
|
+
backgroundColor: lightInteractive.interactive.primary.active,
|
|
821
|
+
borderColor: lightInteractive.interactive.primary.active
|
|
822
|
+
},
|
|
823
|
+
hover: {
|
|
824
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
825
|
+
backgroundColor: lightInteractive.interactive.primary.hover,
|
|
826
|
+
borderColor: lightInteractive.interactive.primary.hover
|
|
827
|
+
},
|
|
828
|
+
pressed: {
|
|
829
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
830
|
+
backgroundColor: lightInteractive.interactive.primary.pressed,
|
|
831
|
+
borderColor: lightInteractive.interactive.primary.pressed
|
|
832
|
+
},
|
|
833
|
+
focussed: {
|
|
834
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
835
|
+
backgroundColor: lightInteractive.interactive.primary.active,
|
|
836
|
+
borderColor: lightInteractive.interactive.primary.active,
|
|
837
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
838
|
+
},
|
|
839
|
+
error: {
|
|
840
|
+
...error,
|
|
841
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
842
|
+
},
|
|
843
|
+
default: {
|
|
844
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
845
|
+
backgroundColor: lightInteractive.interactive.primary.active,
|
|
846
|
+
borderColor: lightInteractive.interactive.primary.active,
|
|
847
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
848
|
+
},
|
|
849
|
+
disabled
|
|
850
|
+
},
|
|
851
|
+
secondary: {
|
|
852
|
+
active: {
|
|
853
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
854
|
+
backgroundColor: lightInteractive.transparent,
|
|
855
|
+
borderColor: lightInteractive.interactive.secondary.active
|
|
856
|
+
},
|
|
857
|
+
hover: {
|
|
858
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
859
|
+
backgroundColor: lightInteractive.interactive.secondary.hover,
|
|
860
|
+
borderColor: lightInteractive.interactive.secondary.hover
|
|
861
|
+
},
|
|
862
|
+
pressed: {
|
|
863
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
864
|
+
backgroundColor: lightInteractive.interactive.secondary.pressed,
|
|
865
|
+
borderColor: lightInteractive.interactive.secondary.active
|
|
866
|
+
},
|
|
867
|
+
focussed: {
|
|
868
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
869
|
+
backgroundColor: lightInteractive.transparent,
|
|
870
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
871
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
872
|
+
},
|
|
873
|
+
error: {
|
|
874
|
+
...error,
|
|
875
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
876
|
+
},
|
|
877
|
+
default: {
|
|
878
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
879
|
+
backgroundColor: lightInteractive.transparent,
|
|
880
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
881
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
882
|
+
},
|
|
883
|
+
disabled
|
|
884
|
+
},
|
|
885
|
+
tertiary: {
|
|
886
|
+
active: {
|
|
887
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
888
|
+
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
889
|
+
borderColor: lightInteractive.interactive.tertiary.active
|
|
890
|
+
},
|
|
891
|
+
hover: {
|
|
892
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
893
|
+
backgroundColor: lightInteractive.interactive.tertiary.hover,
|
|
894
|
+
borderColor: lightInteractive.interactive.tertiary.hover
|
|
895
|
+
},
|
|
896
|
+
pressed: {
|
|
897
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
898
|
+
backgroundColor: lightInteractive.interactive.tertiary.pressed,
|
|
899
|
+
borderColor: lightInteractive.interactive.tertiary.pressed
|
|
900
|
+
},
|
|
901
|
+
focussed: {
|
|
902
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
903
|
+
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
904
|
+
borderColor: lightInteractive.interactive.tertiary.active,
|
|
905
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
906
|
+
},
|
|
907
|
+
error: {
|
|
908
|
+
...error,
|
|
909
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
910
|
+
},
|
|
911
|
+
default: {
|
|
912
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
913
|
+
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
914
|
+
borderColor: lightInteractive.interactive.tertiary.active,
|
|
915
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
916
|
+
},
|
|
917
|
+
disabled
|
|
918
|
+
},
|
|
919
|
+
destructive: {
|
|
920
|
+
active: {
|
|
921
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
922
|
+
backgroundColor: lightInteractive.interactive.destructive.active,
|
|
923
|
+
borderColor: lightInteractive.interactive.destructive.active
|
|
924
|
+
},
|
|
925
|
+
hover: {
|
|
926
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
927
|
+
backgroundColor: lightInteractive.interactive.destructive.hover,
|
|
928
|
+
borderColor: lightInteractive.interactive.destructive.hover
|
|
929
|
+
},
|
|
930
|
+
pressed: {
|
|
931
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
932
|
+
backgroundColor: lightInteractive.interactive.destructive.pressed,
|
|
933
|
+
borderColor: lightInteractive.interactive.destructive.pressed
|
|
934
|
+
},
|
|
935
|
+
focussed: {
|
|
936
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
937
|
+
backgroundColor: lightInteractive.interactive.destructive.active,
|
|
938
|
+
borderColor: lightInteractive.interactive.destructive.active,
|
|
939
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
940
|
+
},
|
|
941
|
+
error: {
|
|
942
|
+
...error,
|
|
943
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
944
|
+
},
|
|
945
|
+
default: {
|
|
946
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
947
|
+
backgroundColor: lightInteractive.interactive.destructive.active,
|
|
948
|
+
borderColor: lightInteractive.interactive.destructive.active,
|
|
949
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
950
|
+
},
|
|
951
|
+
disabled
|
|
952
|
+
},
|
|
953
|
+
utility: {
|
|
954
|
+
active: {
|
|
955
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
956
|
+
backgroundColor: "#FFF",
|
|
957
|
+
borderColor: lightInteractive.interactive.secondary.active
|
|
958
|
+
},
|
|
959
|
+
hover: {
|
|
960
|
+
color: lightInteractive.interactive.utility.onsurface,
|
|
961
|
+
backgroundColor: lightInteractive.interactive.utility.hover,
|
|
962
|
+
borderColor: lightInteractive.interactive.utility.border
|
|
963
|
+
},
|
|
964
|
+
pressed: {
|
|
965
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
966
|
+
backgroundColor: lightInteractive.interactive.utility.pressed,
|
|
967
|
+
borderColor: lightInteractive.interactive.utility.pressed
|
|
968
|
+
},
|
|
969
|
+
focussed: {
|
|
970
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
971
|
+
backgroundColor: "#FFF",
|
|
972
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
973
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
974
|
+
},
|
|
975
|
+
error: {
|
|
976
|
+
...error,
|
|
977
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
978
|
+
},
|
|
979
|
+
default: {
|
|
980
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
981
|
+
backgroundColor: lightInteractive.transparent,
|
|
982
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
983
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
984
|
+
},
|
|
985
|
+
disabled
|
|
986
|
+
},
|
|
987
|
+
icon: {
|
|
988
|
+
active: {
|
|
989
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
990
|
+
backgroundColor: "transparent",
|
|
991
|
+
borderColor: "transparent"
|
|
992
|
+
},
|
|
993
|
+
hover: {
|
|
994
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
995
|
+
backgroundColor: "#DEEFF3",
|
|
996
|
+
borderColor: "transparent"
|
|
997
|
+
},
|
|
998
|
+
pressed: {
|
|
999
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1000
|
+
backgroundColor: "#DEEFF3",
|
|
1001
|
+
borderColor: "transparent"
|
|
1002
|
+
},
|
|
1003
|
+
selected: {
|
|
1004
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1005
|
+
backgroundColor: "#DEEFF3",
|
|
1006
|
+
borderColor: "transparent"
|
|
1007
|
+
},
|
|
1008
|
+
focussed: {
|
|
1009
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1010
|
+
backgroundColor: "transparent",
|
|
1011
|
+
borderColor: "transparent",
|
|
1012
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
1013
|
+
},
|
|
1014
|
+
error: {
|
|
1015
|
+
...error,
|
|
1016
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
1017
|
+
},
|
|
1018
|
+
default: {
|
|
1019
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1020
|
+
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
1021
|
+
borderColor: lightInteractive.interactive.tertiary.active,
|
|
1022
|
+
ringColor: lightInteractive.inputs.onsurface.focus
|
|
1023
|
+
},
|
|
1024
|
+
disabled
|
|
1025
|
+
},
|
|
1026
|
+
status: {
|
|
1027
|
+
error: {
|
|
1028
|
+
default: "#CF3237",
|
|
1029
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1030
|
+
onsurface: "#AA292D",
|
|
1031
|
+
surface: "#F9D4D5",
|
|
1032
|
+
"surface-hover": "#F3A9AB"
|
|
1033
|
+
},
|
|
1034
|
+
success: {
|
|
1035
|
+
default: "#32863E",
|
|
1036
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1037
|
+
onsurface: "#296E33",
|
|
1038
|
+
surface: "#D3EFD7",
|
|
1039
|
+
"surface-hover": "#A7DFAF"
|
|
1040
|
+
},
|
|
1041
|
+
warning: {
|
|
1042
|
+
default: variables.ColorYellow500,
|
|
1043
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1044
|
+
onsurface: "#704819",
|
|
1045
|
+
surface: "#FFF2DF",
|
|
1046
|
+
"surface-hover": "#FFE5BE"
|
|
1047
|
+
},
|
|
1048
|
+
info: {
|
|
1049
|
+
default: "#384DF6",
|
|
1050
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1051
|
+
onsurface: "#2E3FCA",
|
|
1052
|
+
surface: "#D7DBFD"
|
|
1053
|
+
},
|
|
1054
|
+
generic: {
|
|
1055
|
+
default: "#9A9A9A",
|
|
1056
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1057
|
+
onsurface: "#3E3E3E",
|
|
1058
|
+
surface: "#F4F4F4",
|
|
1059
|
+
"surface-hover": "#F4F4F4"
|
|
1060
|
+
},
|
|
1061
|
+
hollow: {
|
|
1062
|
+
default: "#9A9A9A",
|
|
1063
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1064
|
+
onsurface: "#3E3E3E",
|
|
1065
|
+
surface: "#F4F4F4",
|
|
1066
|
+
"surface-hover": "#FFFFFF"
|
|
1067
|
+
},
|
|
1068
|
+
disabled: {
|
|
1069
|
+
default: "#6C6C6C",
|
|
1070
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1071
|
+
onsurface: "#EEEEEE",
|
|
1072
|
+
surface: "#EEEEEE"
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
timebox: {
|
|
1076
|
+
evening: {
|
|
1077
|
+
default: "#9F539F"
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
interactive: {
|
|
1081
|
+
primary: {
|
|
1082
|
+
active: "#30606B",
|
|
1083
|
+
hover: "#00282B",
|
|
1084
|
+
pressed: "#214148",
|
|
1085
|
+
onsurface: "#FFFFFF"
|
|
1086
|
+
},
|
|
1087
|
+
secondary: {
|
|
1088
|
+
active: "#9A9A9A",
|
|
1089
|
+
hover: "#222222",
|
|
1090
|
+
pressed: "#101010",
|
|
1091
|
+
onsurface: "#3E3E3E"
|
|
1092
|
+
},
|
|
1093
|
+
tertiary: {
|
|
1094
|
+
active: "#FFCA7D",
|
|
1095
|
+
hover: "#E7A13C",
|
|
1096
|
+
pressed: "#B27330",
|
|
1097
|
+
onsurface: "#222222"
|
|
1098
|
+
},
|
|
1099
|
+
link: {
|
|
1100
|
+
active: variables.ColorSky700,
|
|
1101
|
+
hover: variables.ColorSky900,
|
|
1102
|
+
disabled: variables.ColorGray100,
|
|
1103
|
+
current: "#384DF6"
|
|
1104
|
+
},
|
|
1105
|
+
...lightInteractive.interactive
|
|
1106
|
+
},
|
|
1107
|
+
inputs: {
|
|
1108
|
+
surface: {
|
|
1109
|
+
active: variables.ColorGrayWhite,
|
|
1110
|
+
border: variables.ColorGray500,
|
|
1111
|
+
disabled: variables.ColorGray100,
|
|
1112
|
+
checked: "#384DF6",
|
|
1113
|
+
"checked-hover": "#24319D"
|
|
1114
|
+
},
|
|
1115
|
+
onsurface: {
|
|
1116
|
+
active: "#222222",
|
|
1117
|
+
focus: "#384DF6",
|
|
1118
|
+
placeholder: "#6C6C6C",
|
|
1119
|
+
"icon-disabled": "#6C6C6C"
|
|
1120
|
+
},
|
|
1121
|
+
progress: {
|
|
1122
|
+
empty: variables.ColorGray300,
|
|
1123
|
+
success: variables.ColorGreen400,
|
|
1124
|
+
error: variables.ColorRed500,
|
|
1125
|
+
info: variables.ColorBlue400
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
surface: {
|
|
1129
|
+
border: "#CBCBCB",
|
|
1130
|
+
secondary: "#F4F4F4",
|
|
1131
|
+
tertiary: "#EEEEEE",
|
|
1132
|
+
"border-light": "#DFDFDF"
|
|
1133
|
+
},
|
|
1134
|
+
transparent: "transparent",
|
|
1135
|
+
onsurface: {
|
|
1136
|
+
copy: "#3E3E3E",
|
|
1137
|
+
"copy-light": variables.ColorGray700,
|
|
1138
|
+
"copy-dark": "#222222",
|
|
1139
|
+
"copy-disabled": "#6C6C6C"
|
|
1140
|
+
}
|
|
1141
|
+
};
|
|
1142
|
+
const darkModeColors = lightModeColors;
|
|
1143
|
+
({
|
|
1144
|
+
primary: {
|
|
1145
|
+
active: {
|
|
1146
|
+
color: colors.gray.white
|
|
1147
|
+
},
|
|
1148
|
+
hover: {
|
|
1149
|
+
color: colors.gray.white
|
|
1150
|
+
},
|
|
1151
|
+
pressed: {
|
|
1152
|
+
color: colors.gray.white
|
|
1153
|
+
},
|
|
1154
|
+
focussed: {
|
|
1155
|
+
color: colors.gray.white
|
|
1156
|
+
},
|
|
1157
|
+
disabled: {
|
|
1158
|
+
color: colors.gray[600]
|
|
1159
|
+
}
|
|
1160
|
+
},
|
|
1161
|
+
secondary: {
|
|
1162
|
+
active: {
|
|
1163
|
+
color: colors.gray.white
|
|
1164
|
+
},
|
|
1165
|
+
hover: {
|
|
1166
|
+
color: colors.gray.white
|
|
1167
|
+
},
|
|
1168
|
+
pressed: {
|
|
1169
|
+
color: colors.gray.white
|
|
1170
|
+
},
|
|
1171
|
+
focussed: {
|
|
1172
|
+
color: colors.gray.white
|
|
1173
|
+
},
|
|
1174
|
+
disabled: {
|
|
1175
|
+
color: colors.gray[600]
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
tertiary: {
|
|
1179
|
+
active: {
|
|
1180
|
+
color: colors.gray.white
|
|
1181
|
+
},
|
|
1182
|
+
hover: {
|
|
1183
|
+
color: colors.gray.white
|
|
1184
|
+
},
|
|
1185
|
+
pressed: {
|
|
1186
|
+
color: colors.gray.white
|
|
1187
|
+
},
|
|
1188
|
+
focussed: {
|
|
1189
|
+
color: colors.gray.white
|
|
1190
|
+
},
|
|
1191
|
+
disabled: {
|
|
1192
|
+
color: colors.gray[600]
|
|
1193
|
+
}
|
|
1194
|
+
},
|
|
1195
|
+
utility: {
|
|
1196
|
+
active: {
|
|
1197
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1198
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1199
|
+
borderColor: darkInteractive.interactive.tertiary.active
|
|
1200
|
+
},
|
|
1201
|
+
hover: {
|
|
1202
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1203
|
+
backgroundColor: darkInteractive.interactive.tertiary.hover,
|
|
1204
|
+
borderColor: darkInteractive.interactive.tertiary.hover
|
|
1205
|
+
},
|
|
1206
|
+
pressed: {
|
|
1207
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1208
|
+
backgroundColor: darkInteractive.interactive.tertiary.pressed,
|
|
1209
|
+
borderColor: darkInteractive.interactive.tertiary.pressed
|
|
1210
|
+
},
|
|
1211
|
+
focussed: {
|
|
1212
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1213
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1214
|
+
borderColor: darkInteractive.interactive.tertiary.active
|
|
1215
|
+
},
|
|
1216
|
+
default: {
|
|
1217
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1218
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1219
|
+
borderColor: darkInteractive.interactive.tertiary.active
|
|
1220
|
+
}
|
|
1221
|
+
},
|
|
1222
|
+
icon: {
|
|
1223
|
+
active: {
|
|
1224
|
+
color: darkInteractive.interactive.tertiary.onsurface
|
|
1225
|
+
},
|
|
1226
|
+
hover: {
|
|
1227
|
+
color: darkInteractive.interactive.tertiary.onsurface
|
|
1228
|
+
},
|
|
1229
|
+
pressed: {
|
|
1230
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1231
|
+
backgroundColor: darkInteractive.interactive.tertiary.pressed,
|
|
1232
|
+
borderColor: darkInteractive.interactive.tertiary.pressed
|
|
1233
|
+
},
|
|
1234
|
+
focussed: {
|
|
1235
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1236
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1237
|
+
borderColor: darkInteractive.interactive.tertiary.active
|
|
1238
|
+
},
|
|
1239
|
+
default: {
|
|
1240
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1241
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1242
|
+
borderColor: darkInteractive.interactive.tertiary.active
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
});
|
|
1246
|
+
const shadows = {
|
|
1247
|
+
general: {
|
|
1248
|
+
"1": "box-shadow: 0px 4px 16px 0px #00000026",
|
|
1249
|
+
"2": "box-shadow: 0px 8px 24px -4px #00000026",
|
|
1250
|
+
"3": "box-shadow: 0px 2px 3px -1px #00000026",
|
|
1251
|
+
"4": "box-shadow: 4px 0px 7px -3px #0000001F"
|
|
1252
|
+
},
|
|
1253
|
+
actions: {
|
|
1254
|
+
"1": "box-shadow: 0px 2px 2px -1px #00000033",
|
|
1255
|
+
"2": "box-shadow: 0px 1px 2px 0px #00000026"
|
|
1256
|
+
},
|
|
1257
|
+
inputs: {
|
|
1258
|
+
"1": "box-shadow: 0px 1px 2px 0px #0000001F"
|
|
1259
|
+
}
|
|
1260
|
+
};
|
|
1261
|
+
const motion = {
|
|
1262
|
+
instant: 0,
|
|
1263
|
+
veryfast: 0.15,
|
|
1264
|
+
fast: 0.33,
|
|
1265
|
+
medium: 0.5,
|
|
1266
|
+
slow: 1,
|
|
1267
|
+
veryslow: 2
|
|
1268
|
+
};
|
|
1269
|
+
const badge = {
|
|
1270
|
+
"ver-padding": 4,
|
|
1271
|
+
"right-padding": 8,
|
|
1272
|
+
"left-padding": 8,
|
|
1273
|
+
radius: 50
|
|
1274
|
+
};
|
|
1275
|
+
const popover = {
|
|
1276
|
+
"ver-padding": sizing.Size1,
|
|
1277
|
+
"hor-padding": sizing.Size2,
|
|
1278
|
+
radius: borderRadius.BorderRadiusMd,
|
|
1279
|
+
gap: sizing.Size1
|
|
1280
|
+
};
|
|
1281
|
+
const row = {
|
|
1282
|
+
"ver-padding": sizing.Size5,
|
|
1283
|
+
"hor-padding": sizing.Size6,
|
|
1284
|
+
gap: sizing.Size2
|
|
1285
|
+
};
|
|
1286
|
+
const components = {
|
|
1287
|
+
button,
|
|
1288
|
+
utilityButton,
|
|
1289
|
+
iconButton,
|
|
1290
|
+
input,
|
|
1291
|
+
row,
|
|
1292
|
+
badge,
|
|
1293
|
+
popover
|
|
1294
|
+
};
|
|
1295
|
+
const getStatusColor = (colors2, status) => {
|
|
1296
|
+
return colors2.status[status].default;
|
|
1297
|
+
};
|
|
1298
|
+
const baseTokens = {
|
|
1299
|
+
breakpoints,
|
|
1300
|
+
sizing,
|
|
1301
|
+
borderRadius,
|
|
1302
|
+
typography,
|
|
1303
|
+
allColors: colors,
|
|
1304
|
+
components,
|
|
1305
|
+
motion,
|
|
1306
|
+
shadows,
|
|
1307
|
+
getStatusColor
|
|
1308
|
+
};
|
|
1309
|
+
const lightTheme = {
|
|
1310
|
+
...baseTokens,
|
|
1311
|
+
colors: lightModeColors,
|
|
1312
|
+
mode: "light"
|
|
1313
|
+
};
|
|
1314
|
+
const darkTheme = {
|
|
1315
|
+
...baseTokens,
|
|
1316
|
+
colors: darkModeColors,
|
|
1317
|
+
mode: "dark"
|
|
1318
|
+
};
|
|
1319
|
+
exports.TypographySizeKey = TypographySizeKey;
|
|
1320
|
+
exports.baseTokens = baseTokens;
|
|
1321
|
+
exports.breakpoints = breakpoints;
|
|
1322
|
+
exports.darkTheme = darkTheme;
|
|
1323
|
+
exports.lightTheme = lightTheme;
|
|
1324
|
+
exports.sizing = sizing;
|