@gobolt/genesis 0.2.14 → 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 -4
- 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 -4
- 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 -4
- 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 -4
- 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 -4
- package/dist/_virtual/index6.cjs +6 -1
- package/dist/_virtual/index6.js +5 -4
- 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 -4
- 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 -4
- 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 -4
- 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 -4
- 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 +73 -12
- 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 +78 -10
- 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 +34 -4
- package/dist/components/Button/IconButton.cjs +29 -1
- package/dist/components/Button/IconButton.js +27 -7
- package/dist/components/Button/UtilityButton.cjs +29 -1
- package/dist/components/Button/UtilityButton.js +27 -7
- package/dist/components/Button/icon-button-styles.cjs +45 -30
- package/dist/components/Button/icon-button-styles.js +43 -31
- package/dist/components/Button/styles.cjs +93 -34
- package/dist/components/Button/styles.js +91 -36
- package/dist/components/Card/Card.cjs +17 -1
- package/dist/components/Card/Card.js +16 -4
- package/dist/components/Card/styles.cjs +12 -7
- package/dist/components/Card/styles.js +10 -10
- package/dist/components/Checkbox/Checkbox.cjs +28 -1
- package/dist/components/Checkbox/Checkbox.js +26 -9
- 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 +16 -7
- package/dist/components/DateRangePicker/DateRangePicker.cjs +19 -1
- package/dist/components/DateRangePicker/DateRangePicker.js +17 -7
- package/dist/components/ErrorBoundary/ErrorBoundary.cjs +71 -1
- package/dist/components/ErrorBoundary/ErrorBoundary.js +45 -15
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.cjs +29 -1
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.js +27 -9
- 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 +16 -9
- 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 +27 -10
- package/dist/components/Input/styles.cjs +91 -28
- package/dist/components/Input/styles.js +86 -39
- package/dist/components/Layout/Content/Content.cjs +24 -1
- package/dist/components/Layout/Content/Content.js +22 -6
- 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 +83 -41
- 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 +87 -30
- package/dist/components/Notification/NotificationBadge/NotificationBadge.cjs +50 -1
- package/dist/components/Notification/NotificationBadge/NotificationBadge.js +46 -38
- package/dist/components/Notification/NotificationBadge/icons/ASN.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/ASN.js +21 -3
- package/dist/components/Notification/NotificationBadge/icons/Appointment.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Appointment.js +21 -3
- package/dist/components/Notification/NotificationBadge/icons/Inventory.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Inventory.js +21 -3
- package/dist/components/Notification/NotificationBadge/icons/Parcel.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Parcel.js +21 -3
- package/dist/components/Notification/NotificationBadge/icons/Product.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Product.js +21 -3
- package/dist/components/Notification/NotificationBadge/icons/Route.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Route.js +21 -3
- package/dist/components/Notification/NotificationBadge/icons/Shipment.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/Shipment.js +21 -3
- package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.js +21 -3
- package/dist/components/Notification/NotificationBadge/icons/System.cjs +22 -1
- package/dist/components/Notification/NotificationBadge/icons/System.js +21 -3
- 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 +21 -3
- package/dist/components/Notification/styles.cjs +33 -19
- package/dist/components/Notification/styles.js +29 -24
- package/dist/components/Popover/Popover.cjs +25 -1
- package/dist/components/Popover/Popover.js +24 -4
- 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 +62 -9
- package/dist/components/Progress/Progress.util.cjs +42 -1
- package/dist/components/Progress/Progress.util.js +41 -7
- package/dist/components/Progress/ProgressText.cjs +41 -1
- package/dist/components/Progress/ProgressText.js +40 -5
- 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 +111 -32
- package/dist/components/Radio/RadioGroup.cjs +34 -1
- package/dist/components/Radio/RadioGroup.js +33 -4
- package/dist/components/Radio/states/RadioChecked.cjs +17 -1
- package/dist/components/Radio/states/RadioChecked.js +16 -3
- package/dist/components/Radio/states/RadioCheckedDisabled.cjs +17 -1
- package/dist/components/Radio/states/RadioCheckedDisabled.js +16 -3
- package/dist/components/Radio/states/RadioCheckedFocussed.cjs +29 -1
- package/dist/components/Radio/states/RadioCheckedFocussed.js +28 -3
- package/dist/components/Radio/states/RadioCheckedHover.cjs +17 -1
- package/dist/components/Radio/states/RadioCheckedHover.js +16 -3
- package/dist/components/Radio/states/RadioUnchecked.cjs +14 -1
- package/dist/components/Radio/states/RadioUnchecked.js +13 -3
- package/dist/components/Radio/states/RadioUncheckedDisabled.cjs +14 -1
- package/dist/components/Radio/states/RadioUncheckedDisabled.js +13 -3
- package/dist/components/Radio/states/RadioUncheckedFocussed.cjs +28 -1
- package/dist/components/Radio/states/RadioUncheckedFocussed.js +27 -3
- package/dist/components/Radio/states/RadioUncheckedHover.cjs +17 -1
- package/dist/components/Radio/states/RadioUncheckedHover.js +16 -3
- package/dist/components/Row/Row.cjs +39 -1
- package/dist/components/Row/Row.js +37 -9
- package/dist/components/Row/RowActions/RowActions.cjs +24 -1
- package/dist/components/Row/RowActions/RowActions.js +23 -5
- 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 +40 -12
- package/dist/components/Row/RowLabelValue/RowSkeleton.cjs +28 -1
- package/dist/components/Row/RowLabelValue/RowSkeleton.js +27 -4
- 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 +23 -6
- package/dist/components/SegmentedControls/styles.cjs +22 -14
- package/dist/components/SegmentedControls/styles.js +20 -17
- package/dist/components/Select/Select.cjs +45 -2
- package/dist/components/Select/Select.js +42 -17
- package/dist/components/Select/styles.cjs +63 -39
- package/dist/components/Select/styles.js +60 -47
- package/dist/components/SelectCount/SelectCount.cjs +44 -1
- package/dist/components/SelectCount/SelectCount.js +43 -5
- 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 +21 -3
- package/dist/components/Shapes/variants/Rectangle.cjs +22 -1
- package/dist/components/Shapes/variants/Rectangle.js +21 -3
- package/dist/components/Shapes/variants/Triangle.cjs +22 -1
- package/dist/components/Shapes/variants/Triangle.js +21 -3
- package/dist/components/Switch/Switch.cjs +23 -1
- package/dist/components/Switch/Switch.js +22 -4
- 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 +24 -5
- package/dist/components/Table/TableControls/PrimaryTableControlsRow.cjs +124 -1
- package/dist/components/Table/TableControls/PrimaryTableControlsRow.js +121 -28
- package/dist/components/Table/TableControls/SecondaryTableControlsRow.cjs +78 -1
- package/dist/components/Table/TableControls/SecondaryTableControlsRow.js +77 -13
- package/dist/components/Table/TableControls/TableControls.cjs +36 -1
- package/dist/components/Table/TableControls/TableControls.js +35 -9
- package/dist/components/Table/TableWithControls/TableWithControls.cjs +42 -1
- package/dist/components/Table/TableWithControls/TableWithControls.js +40 -11
- package/dist/components/Table/TableWithControls/useTableWithControls.cjs +144 -1
- package/dist/components/Table/TableWithControls/useTableWithControls.js +139 -22
- package/dist/components/Table/__mocks__/table-mocks.cjs +70 -1
- package/dist/components/Table/__mocks__/table-mocks.js +69 -12
- package/dist/components/Table/styles.cjs +12 -26
- package/dist/components/Table/styles.js +10 -29
- package/dist/components/Table/useTable.cjs +80 -1
- package/dist/components/Table/useTable.js +74 -15
- package/dist/components/Tabs/Tabs.cjs +22 -1
- package/dist/components/Tabs/Tabs.js +20 -6
- 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 -4
- 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 +86 -44
- 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 -6
- package/dist/components/Tooltip/styles.cjs +12 -6
- package/dist/components/Tooltip/styles.js +10 -9
- package/dist/components/Typography/Typography.cjs +71 -1
- package/dist/components/Typography/Typography.js +68 -11
- package/dist/components/Typography/styles.cjs +95 -20
- package/dist/components/Typography/styles.js +93 -24
- package/dist/components/index.d.ts +2 -0
- package/dist/components/shared/DropdownChevron.cjs +26 -1
- package/dist/components/shared/DropdownChevron.js +24 -6
- package/dist/constants/index.cjs +99 -1
- package/dist/constants/index.js +97 -9
- 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 +114 -27
- package/dist/node_modules/@ant-design/colors/es/presets.cjs +72 -1
- package/dist/node_modules/@ant-design/colors/es/presets.js +71 -42
- package/dist/node_modules/@ant-design/cssinjs/es/Cache.cjs +49 -1
- package/dist/node_modules/@ant-design/cssinjs/es/Cache.js +44 -20
- package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.cjs +23 -1
- package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.js +20 -11
- package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.cjs +65 -1
- package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.js +39 -21
- 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 +62 -30
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.cjs +124 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.js +115 -60
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.cjs +38 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.js +17 -12
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.cjs +57 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.js +34 -17
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.cjs +90 -1
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.js +65 -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 +19 -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 +290 -133
- package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.cjs +12 -1
- package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.js +10 -4
- 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 +26 -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 +132 -55
- 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 +54 -29
- 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 +34 -21
- 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 -40
- 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 +83 -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 +113 -37
- 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 +70 -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 +189 -76
- 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 +25 -13
- 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 +8 -5
- 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 +27 -14
- 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 +62 -28
- package/dist/node_modules/@ant-design/fast-color/es/FastColor.cjs +473 -1
- package/dist/node_modules/@ant-design/fast-color/es/FastColor.js +401 -144
- package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.cjs +65 -1
- package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.js +44 -20
- 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 +55 -15
- package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.cjs +20 -1
- package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.js +17 -11
- package/dist/node_modules/@ant-design/icons/es/icons/BarsOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/BarsOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CalendarOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CalendarOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CaretUpOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CaretUpOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleFilled.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleLeftOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleLeftOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleRightOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleRightOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/EllipsisOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EllipsisOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/EnterOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EnterOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/FileOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/FileOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/FilterFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/FilterFilled.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOpenOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOpenOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/HolderOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/HolderOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleFilled.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/MinusSquareOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/MinusSquareOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/PlusSquareOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/PlusSquareOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/QuestionCircleOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/QuestionCircleOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/icons/WarningFilled.cjs +35 -1
- package/dist/node_modules/@ant-design/icons/es/icons/WarningFilled.js +15 -9
- package/dist/node_modules/@ant-design/icons/es/utils.cjs +79 -49
- package/dist/node_modules/@ant-design/icons/es/utils.js +74 -96
- 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 -8
- 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 +9 -4
- 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 +13 -5
- 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 +14 -14
- 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 +8 -8
- 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 +236 -189
- 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 +8 -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 +24 -17
- 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 -8
- package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.cjs +50 -1
- package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.js +49 -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 +267 -97
- package/dist/node_modules/@rc-component/async-validator/es/messages.cjs +58 -1
- package/dist/node_modules/@rc-component/async-validator/es/messages.js +56 -8
- 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 +15 -8
- 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 +16 -4
- 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 -6
- 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 +71 -36
- 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 +54 -14
- 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 +226 -121
- 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 -9
- 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 -8
- 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 -9
- 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 +24 -10
- 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 -9
- 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 -9
- 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 +35 -17
- 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 -9
- 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 -9
- 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 -9
- 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 -9
- 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 -9
- 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 -9
- 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 -9
- 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 -9
- package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.cjs +125 -1
- package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.js +123 -32
- package/dist/node_modules/@rc-component/color-picker/es/color.cjs +61 -1
- package/dist/node_modules/@rc-component/color-picker/es/color.js +59 -32
- 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 +16 -6
- 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 +22 -11
- 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 +12 -7
- 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 +11 -6
- 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 +58 -19
- 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 +79 -32
- 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 +14 -5
- 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 +75 -23
- 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 -10
- 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 -7
- package/dist/node_modules/@rc-component/color-picker/es/util.cjs +67 -1
- package/dist/node_modules/@rc-component/color-picker/es/util.js +60 -23
- package/dist/node_modules/@rc-component/context/es/Immutable.cjs +77 -1
- package/dist/node_modules/@rc-component/context/es/Immutable.js +53 -19
- package/dist/node_modules/@rc-component/context/es/context.cjs +95 -1
- package/dist/node_modules/@rc-component/context/es/context.js +70 -43
- 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 +69 -33
- 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 +56 -28
- package/dist/node_modules/@rc-component/portal/es/useScrollLocker.cjs +48 -5
- package/dist/node_modules/@rc-component/portal/es/useScrollLocker.js +25 -23
- 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 +40 -11
- package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.cjs +45 -1
- package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.js +23 -11
- 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 -7
- package/dist/node_modules/@rc-component/trigger/es/Popup/index.cjs +156 -1
- package/dist/node_modules/@rc-component/trigger/es/Popup/index.js +131 -33
- package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.cjs +37 -1
- package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.js +16 -9
- 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 +403 -99
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.cjs +36 -1
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.js +30 -16
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.cjs +71 -1
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.js +46 -26
- package/dist/node_modules/@rc-component/trigger/es/index.cjs +368 -1
- package/dist/node_modules/@rc-component/trigger/es/index.js +332 -138
- package/dist/node_modules/@rc-component/trigger/es/util.cjs +109 -1
- package/dist/node_modules/@rc-component/trigger/es/util.js +100 -46
- package/dist/node_modules/antd/es/_util/ActionButton.cjs +118 -1
- package/dist/node_modules/antd/es/_util/ActionButton.js +94 -33
- package/dist/node_modules/antd/es/_util/ContextIsolator.cjs +26 -1
- package/dist/node_modules/antd/es/_util/ContextIsolator.js +24 -9
- package/dist/node_modules/antd/es/_util/PurePanel.cjs +106 -1
- package/dist/node_modules/antd/es/_util/PurePanel.js +83 -29
- 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 -6
- 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 +23 -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 +30 -12
- 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 +53 -18
- 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 +42 -9
- package/dist/node_modules/antd/es/_util/placements.cjs +176 -1
- package/dist/node_modules/antd/es/_util/placements.js +149 -40
- 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 +96 -40
- package/dist/node_modules/antd/es/_util/scrollTo.cjs +34 -1
- package/dist/node_modules/antd/es/_util/scrollTo.js +31 -10
- package/dist/node_modules/antd/es/_util/statusUtils.cjs +14 -1
- package/dist/node_modules/antd/es/_util/statusUtils.js +12 -6
- 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 +51 -26
- package/dist/node_modules/antd/es/_util/wave/WaveEffect.cjs +154 -1
- package/dist/node_modules/antd/es/_util/wave/WaveEffect.js +124 -54
- package/dist/node_modules/antd/es/_util/wave/index.cjs +52 -1
- package/dist/node_modules/antd/es/_util/wave/index.js +47 -22
- 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 +31 -6
- package/dist/node_modules/antd/es/_util/wave/useWave.cjs +60 -1
- package/dist/node_modules/antd/es/_util/wave/useWave.js +36 -18
- package/dist/node_modules/antd/es/_util/wave/util.cjs +24 -1
- package/dist/node_modules/antd/es/_util/wave/util.js +21 -7
- 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 +162 -57
- 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 +97 -27
- 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 +130 -19
- package/dist/node_modules/antd/es/breadcrumb/Breadcrumb.cjs +168 -1
- package/dist/node_modules/antd/es/breadcrumb/Breadcrumb.js +138 -53
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbItem.cjs +112 -1
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbItem.js +86 -38
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbSeparator.cjs +38 -1
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbSeparator.js +16 -8
- 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 +97 -13
- package/dist/node_modules/antd/es/breadcrumb/useItemRender.cjs +75 -1
- package/dist/node_modules/antd/es/breadcrumb/useItemRender.js +49 -25
- package/dist/node_modules/antd/es/breadcrumb/useItems.cjs +44 -1
- package/dist/node_modules/antd/es/breadcrumb/useItems.js +39 -17
- package/dist/node_modules/antd/es/button/DefaultLoadingIcon.cjs +80 -1
- package/dist/node_modules/antd/es/button/DefaultLoadingIcon.js +76 -15
- package/dist/node_modules/antd/es/button/IconWrapper.cjs +18 -1
- package/dist/node_modules/antd/es/button/IconWrapper.js +16 -6
- package/dist/node_modules/antd/es/button/button-group.cjs +89 -1
- package/dist/node_modules/antd/es/button/button-group.js +41 -22
- package/dist/node_modules/antd/es/button/button.cjs +251 -1
- package/dist/node_modules/antd/es/button/button.js +242 -64
- package/dist/node_modules/antd/es/button/buttonHelpers.cjs +64 -1
- package/dist/node_modules/antd/es/button/buttonHelpers.js +59 -32
- 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 +37 -14
- package/dist/node_modules/antd/es/button/style/group.cjs +70 -1
- package/dist/node_modules/antd/es/button/style/group.js +68 -4
- package/dist/node_modules/antd/es/button/style/index.cjs +491 -1
- package/dist/node_modules/antd/es/button/style/index.js +476 -43
- package/dist/node_modules/antd/es/button/style/token.cjs +93 -1
- package/dist/node_modules/antd/es/button/style/token.js +77 -16
- 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 +178 -55
- package/dist/node_modules/antd/es/card/Grid.cjs +50 -1
- package/dist/node_modules/antd/es/card/Grid.js +26 -15
- package/dist/node_modules/antd/es/card/Meta.cjs +62 -1
- package/dist/node_modules/antd/es/card/Meta.js +38 -14
- package/dist/node_modules/antd/es/card/index.cjs +11 -1
- package/dist/node_modules/antd/es/card/index.js +10 -6
- package/dist/node_modules/antd/es/card/style/index.cjs +361 -10
- package/dist/node_modules/antd/es/card/style/index.js +345 -43
- package/dist/node_modules/antd/es/checkbox/Checkbox.cjs +148 -1
- package/dist/node_modules/antd/es/checkbox/Checkbox.js +123 -43
- package/dist/node_modules/antd/es/checkbox/Group.cjs +134 -1
- package/dist/node_modules/antd/es/checkbox/Group.js +109 -32
- 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 -5
- package/dist/node_modules/antd/es/checkbox/style/index.cjs +247 -7
- package/dist/node_modules/antd/es/checkbox/style/index.js +228 -22
- 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 +113 -41
- package/dist/node_modules/antd/es/color-picker/components/ColorPresets.cjs +20 -1
- package/dist/node_modules/antd/es/color-picker/components/ColorPresets.js +14 -5
- package/dist/node_modules/antd/es/config-provider/DisabledContext.cjs +35 -1
- package/dist/node_modules/antd/es/config-provider/DisabledContext.js +13 -7
- package/dist/node_modules/antd/es/config-provider/MotionWrapper.cjs +57 -1
- package/dist/node_modules/antd/es/config-provider/MotionWrapper.js +20 -7
- package/dist/node_modules/antd/es/config-provider/PropWarning.cjs +35 -1
- package/dist/node_modules/antd/es/config-provider/PropWarning.js +14 -8
- package/dist/node_modules/antd/es/config-provider/SizeContext.cjs +35 -1
- package/dist/node_modules/antd/es/config-provider/SizeContext.js +13 -7
- package/dist/node_modules/antd/es/config-provider/UnstableContext.cjs +41 -1
- package/dist/node_modules/antd/es/config-provider/UnstableContext.js +16 -11
- package/dist/node_modules/antd/es/config-provider/context.cjs +62 -1
- package/dist/node_modules/antd/es/config-provider/context.js +41 -11
- 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 +26 -10
- 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 +11 -6
- 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 +40 -22
- 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 -3
- package/dist/node_modules/antd/es/config-provider/index.cjs +414 -1
- package/dist/node_modules/antd/es/config-provider/index.js +378 -89
- package/dist/node_modules/antd/es/date-picker/PickerButton.cjs +27 -1
- package/dist/node_modules/antd/es/date-picker/PickerButton.js +7 -4
- 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 +142 -46
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateSinglePicker.cjs +202 -1
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateSinglePicker.js +174 -50
- package/dist/node_modules/antd/es/date-picker/generatePicker/index.cjs +26 -1
- package/dist/node_modules/antd/es/date-picker/generatePicker/index.js +24 -6
- 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 -5
- package/dist/node_modules/antd/es/date-picker/index.cjs +11 -1
- package/dist/node_modules/antd/es/date-picker/index.js +10 -8
- 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 +18 -4
- package/dist/node_modules/antd/es/date-picker/style/index.cjs +462 -11
- package/dist/node_modules/antd/es/date-picker/style/index.js +447 -42
- package/dist/node_modules/antd/es/date-picker/style/multiple.cjs +114 -1
- package/dist/node_modules/antd/es/date-picker/style/multiple.js +98 -10
- package/dist/node_modules/antd/es/date-picker/style/panel.cjs +618 -12
- package/dist/node_modules/antd/es/date-picker/style/panel.js +604 -24
- package/dist/node_modules/antd/es/date-picker/style/token.cjs +74 -1
- package/dist/node_modules/antd/es/date-picker/style/token.js +73 -13
- package/dist/node_modules/antd/es/date-picker/style/variants.cjs +52 -1
- package/dist/node_modules/antd/es/date-picker/style/variants.js +39 -6
- package/dist/node_modules/antd/es/date-picker/util.cjs +89 -1
- package/dist/node_modules/antd/es/date-picker/util.js +66 -12
- package/dist/node_modules/antd/es/dropdown/dropdown-button.cjs +132 -1
- package/dist/node_modules/antd/es/dropdown/dropdown-button.js +108 -22
- package/dist/node_modules/antd/es/dropdown/dropdown.cjs +235 -1
- package/dist/node_modules/antd/es/dropdown/dropdown.js +197 -54
- 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 +304 -33
- package/dist/node_modules/antd/es/dropdown/style/status.cjs +24 -1
- package/dist/node_modules/antd/es/dropdown/style/status.js +22 -4
- package/dist/node_modules/antd/es/empty/empty.cjs +95 -1
- package/dist/node_modules/antd/es/empty/empty.js +60 -9
- package/dist/node_modules/antd/es/empty/index.cjs +103 -1
- package/dist/node_modules/antd/es/empty/index.js +78 -26
- package/dist/node_modules/antd/es/empty/simple.cjs +85 -1
- package/dist/node_modules/antd/es/empty/simple.js +51 -10
- package/dist/node_modules/antd/es/empty/style/index.cjs +88 -1
- package/dist/node_modules/antd/es/empty/style/index.js +72 -9
- package/dist/node_modules/antd/es/form/ErrorList.cjs +117 -1
- package/dist/node_modules/antd/es/form/ErrorList.js +93 -28
- package/dist/node_modules/antd/es/form/Form.cjs +178 -1
- package/dist/node_modules/antd/es/form/Form.js +151 -43
- package/dist/node_modules/antd/es/form/FormItem/ItemHolder.cjs +174 -1
- package/dist/node_modules/antd/es/form/FormItem/ItemHolder.js +150 -35
- package/dist/node_modules/antd/es/form/FormItem/StatusProvider.cjs +92 -1
- package/dist/node_modules/antd/es/form/FormItem/StatusProvider.js +70 -22
- package/dist/node_modules/antd/es/form/FormItem/index.cjs +275 -1
- package/dist/node_modules/antd/es/form/FormItem/index.js +244 -85
- package/dist/node_modules/antd/es/form/FormItemInput.cjs +141 -1
- package/dist/node_modules/antd/es/form/FormItemInput.js +116 -35
- package/dist/node_modules/antd/es/form/FormItemLabel.cjs +124 -1
- package/dist/node_modules/antd/es/form/FormItemLabel.js +100 -37
- package/dist/node_modules/antd/es/form/FormList.cjs +62 -1
- package/dist/node_modules/antd/es/form/FormList.js +35 -19
- package/dist/node_modules/antd/es/form/context.cjs +73 -1
- package/dist/node_modules/antd/es/form/context.js +52 -24
- package/dist/node_modules/antd/es/form/hooks/useChildren.cjs +10 -1
- package/dist/node_modules/antd/es/form/hooks/useChildren.js +8 -6
- 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 +70 -37
- package/dist/node_modules/antd/es/form/hooks/useFormInstance.cjs +29 -1
- package/dist/node_modules/antd/es/form/hooks/useFormInstance.js +8 -6
- package/dist/node_modules/antd/es/form/hooks/useFormItemStatus.cjs +41 -1
- package/dist/node_modules/antd/es/form/hooks/useFormItemStatus.js +18 -10
- package/dist/node_modules/antd/es/form/hooks/useFormWarning.cjs +39 -1
- package/dist/node_modules/antd/es/form/hooks/useFormWarning.js +18 -12
- package/dist/node_modules/antd/es/form/hooks/useFrameState.cjs +57 -1
- package/dist/node_modules/antd/es/form/hooks/useFrameState.js +35 -16
- package/dist/node_modules/antd/es/form/hooks/useItemRef.cjs +41 -1
- package/dist/node_modules/antd/es/form/hooks/useItemRef.js +20 -10
- package/dist/node_modules/antd/es/form/hooks/useVariants.cjs +45 -1
- package/dist/node_modules/antd/es/form/hooks/useVariants.js +23 -10
- package/dist/node_modules/antd/es/form/index.cjs +23 -1
- package/dist/node_modules/antd/es/form/index.js +20 -13
- package/dist/node_modules/antd/es/form/style/explain.cjs +45 -3
- package/dist/node_modules/antd/es/form/style/explain.js +43 -6
- package/dist/node_modules/antd/es/form/style/fallbackCmp.cjs +39 -1
- package/dist/node_modules/antd/es/form/style/fallbackCmp.js +22 -10
- package/dist/node_modules/antd/es/form/style/index.cjs +521 -7
- package/dist/node_modules/antd/es/form/style/index.js +505 -45
- package/dist/node_modules/antd/es/form/util.cjs +36 -1
- package/dist/node_modules/antd/es/form/util.js +32 -13
- 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 -28
- 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 +25 -12
- package/dist/node_modules/antd/es/grid/row.cjs +114 -1
- package/dist/node_modules/antd/es/grid/row.js +88 -35
- package/dist/node_modules/antd/es/grid/style/index.cjs +180 -1
- package/dist/node_modules/antd/es/grid/style/index.js +165 -22
- package/dist/node_modules/antd/es/input/Group.cjs +65 -1
- package/dist/node_modules/antd/es/input/Group.js +44 -11
- package/dist/node_modules/antd/es/input/Input.cjs +166 -1
- package/dist/node_modules/antd/es/input/Input.js +157 -48
- package/dist/node_modules/antd/es/input/OTP/OTPInput.cjs +89 -1
- package/dist/node_modules/antd/es/input/OTP/OTPInput.js +64 -27
- package/dist/node_modules/antd/es/input/OTP/index.cjs +216 -1
- package/dist/node_modules/antd/es/input/OTP/index.js +188 -63
- package/dist/node_modules/antd/es/input/Password.cjs +124 -1
- package/dist/node_modules/antd/es/input/Password.js +101 -40
- package/dist/node_modules/antd/es/input/Search.cjs +169 -1
- package/dist/node_modules/antd/es/input/Search.js +145 -46
- package/dist/node_modules/antd/es/input/TextArea.cjs +148 -1
- package/dist/node_modules/antd/es/input/TextArea.js +119 -45
- 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 -9
- package/dist/node_modules/antd/es/input/style/index.cjs +698 -16
- package/dist/node_modules/antd/es/input/style/index.js +682 -63
- package/dist/node_modules/antd/es/input/style/otp.cjs +51 -1
- package/dist/node_modules/antd/es/input/style/otp.js +36 -11
- package/dist/node_modules/antd/es/input/style/textarea.cjs +104 -4
- package/dist/node_modules/antd/es/input/style/textarea.js +88 -16
- package/dist/node_modules/antd/es/input/style/token.cjs +74 -1
- package/dist/node_modules/antd/es/input/style/token.js +57 -8
- package/dist/node_modules/antd/es/input/style/variants.cjs +322 -1
- package/dist/node_modules/antd/es/input/style/variants.js +307 -16
- 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 +157 -57
- package/dist/node_modules/antd/es/layout/context.cjs +28 -1
- package/dist/node_modules/antd/es/layout/context.js +8 -3
- package/dist/node_modules/antd/es/layout/style/index.cjs +130 -1
- package/dist/node_modules/antd/es/layout/style/index.js +114 -12
- package/dist/node_modules/antd/es/layout/style/sider.cjs +130 -1
- package/dist/node_modules/antd/es/layout/style/sider.js +114 -8
- 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 +145 -5
- package/dist/node_modules/antd/es/locale/index.cjs +52 -1
- package/dist/node_modules/antd/es/locale/index.js +28 -14
- 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 +7 -3
- package/dist/node_modules/antd/es/menu/MenuDivider.cjs +52 -1
- package/dist/node_modules/antd/es/menu/MenuDivider.js +27 -15
- package/dist/node_modules/antd/es/menu/MenuItem.cjs +100 -1
- package/dist/node_modules/antd/es/menu/MenuItem.js +78 -23
- package/dist/node_modules/antd/es/menu/OverrideContext.cjs +59 -1
- package/dist/node_modules/antd/es/menu/OverrideContext.js +35 -15
- package/dist/node_modules/antd/es/menu/SubMenu.cjs +74 -1
- package/dist/node_modules/antd/es/menu/SubMenu.js +52 -19
- package/dist/node_modules/antd/es/menu/index.cjs +50 -1
- package/dist/node_modules/antd/es/menu/index.js +29 -16
- package/dist/node_modules/antd/es/menu/menu.cjs +160 -1
- package/dist/node_modules/antd/es/menu/menu.js +134 -46
- package/dist/node_modules/antd/es/menu/style/horizontal.cjs +58 -3
- package/dist/node_modules/antd/es/menu/style/horizontal.js +45 -7
- package/dist/node_modules/antd/es/menu/style/index.cjs +579 -2
- package/dist/node_modules/antd/es/menu/style/index.js +562 -34
- package/dist/node_modules/antd/es/menu/style/rtl.cjs +41 -2
- package/dist/node_modules/antd/es/menu/style/rtl.js +28 -6
- package/dist/node_modules/antd/es/menu/style/theme.cjs +228 -1
- package/dist/node_modules/antd/es/menu/style/theme.js +215 -6
- package/dist/node_modules/antd/es/menu/style/vertical.cjs +200 -9
- package/dist/node_modules/antd/es/menu/style/vertical.js +187 -17
- 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 +167 -42
- 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 +89 -11
- package/dist/node_modules/antd/es/pagination/style/index.cjs +545 -16
- package/dist/node_modules/antd/es/pagination/style/index.js +529 -50
- 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 +92 -27
- package/dist/node_modules/antd/es/popconfirm/index.cjs +126 -1
- package/dist/node_modules/antd/es/popconfirm/index.js +103 -35
- package/dist/node_modules/antd/es/popconfirm/style/index.cjs +84 -1
- package/dist/node_modules/antd/es/popconfirm/style/index.js +67 -10
- package/dist/node_modules/antd/es/popover/PurePanel.cjs +100 -1
- package/dist/node_modules/antd/es/popover/PurePanel.js +71 -23
- package/dist/node_modules/antd/es/popover/index.cjs +127 -1
- package/dist/node_modules/antd/es/popover/index.js +104 -33
- package/dist/node_modules/antd/es/popover/style/index.cjs +179 -1
- package/dist/node_modules/antd/es/popover/style/index.js +163 -25
- package/dist/node_modules/antd/es/progress/Circle.cjs +98 -1
- package/dist/node_modules/antd/es/progress/Circle.js +76 -12
- package/dist/node_modules/antd/es/progress/Line.cjs +149 -1
- package/dist/node_modules/antd/es/progress/Line.js +123 -36
- package/dist/node_modules/antd/es/progress/Steps.cjs +65 -1
- package/dist/node_modules/antd/es/progress/Steps.js +43 -10
- 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 +153 -47
- package/dist/node_modules/antd/es/progress/style/index.cjs +322 -1
- package/dist/node_modules/antd/es/progress/style/index.js +306 -28
- package/dist/node_modules/antd/es/progress/utils.cjs +89 -1
- package/dist/node_modules/antd/es/progress/utils.js +85 -30
- 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 +113 -22
- package/dist/node_modules/antd/es/radio/index.cjs +12 -1
- package/dist/node_modules/antd/es/radio/index.js +10 -8
- package/dist/node_modules/antd/es/radio/radio.cjs +123 -1
- package/dist/node_modules/antd/es/radio/radio.js +98 -36
- package/dist/node_modules/antd/es/radio/radioButton.cjs +52 -1
- package/dist/node_modules/antd/es/radio/radioButton.js +29 -16
- package/dist/node_modules/antd/es/radio/style/index.cjs +477 -2
- package/dist/node_modules/antd/es/radio/style/index.js +461 -23
- package/dist/node_modules/antd/es/result/index.cjs +134 -1
- package/dist/node_modules/antd/es/result/index.js +108 -33
- package/dist/node_modules/antd/es/result/noFound.cjs +255 -1
- package/dist/node_modules/antd/es/result/noFound.js +235 -3
- package/dist/node_modules/antd/es/result/serverError.cjs +295 -1
- package/dist/node_modules/antd/es/result/serverError.js +275 -3
- package/dist/node_modules/antd/es/result/style/index.cjs +128 -1
- package/dist/node_modules/antd/es/result/style/index.js +112 -15
- package/dist/node_modules/antd/es/result/unauthorized.cjs +245 -1
- package/dist/node_modules/antd/es/result/unauthorized.js +225 -3
- package/dist/node_modules/antd/es/segmented/index.cjs +99 -1
- package/dist/node_modules/antd/es/segmented/index.js +75 -26
- package/dist/node_modules/antd/es/segmented/style/index.cjs +232 -1
- package/dist/node_modules/antd/es/segmented/style/index.js +214 -20
- package/dist/node_modules/antd/es/select/index.cjs +246 -1
- package/dist/node_modules/antd/es/select/index.js +205 -51
- package/dist/node_modules/antd/es/select/mergedBuiltinPlacements.cjs +35 -1
- package/dist/node_modules/antd/es/select/mergedBuiltinPlacements.js +33 -6
- package/dist/node_modules/antd/es/select/style/dropdown.cjs +148 -12
- package/dist/node_modules/antd/es/select/style/dropdown.js +146 -21
- package/dist/node_modules/antd/es/select/style/index.cjs +258 -1
- package/dist/node_modules/antd/es/select/style/index.js +243 -27
- package/dist/node_modules/antd/es/select/style/multiple.cjs +298 -6
- package/dist/node_modules/antd/es/select/style/multiple.js +279 -29
- package/dist/node_modules/antd/es/select/style/single.cjs +170 -11
- package/dist/node_modules/antd/es/select/style/single.js +153 -20
- package/dist/node_modules/antd/es/select/style/token.cjs +60 -1
- package/dist/node_modules/antd/es/select/style/token.js +58 -4
- package/dist/node_modules/antd/es/select/style/variants.cjs +229 -1
- package/dist/node_modules/antd/es/select/style/variants.js +217 -12
- package/dist/node_modules/antd/es/select/useIcons.cjs +100 -1
- package/dist/node_modules/antd/es/select/useIcons.js +77 -25
- 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 +32 -10
- package/dist/node_modules/antd/es/skeleton/Button.cjs +54 -1
- package/dist/node_modules/antd/es/skeleton/Button.js +32 -10
- package/dist/node_modules/antd/es/skeleton/Element.cjs +50 -1
- package/dist/node_modules/antd/es/skeleton/Element.js +29 -6
- package/dist/node_modules/antd/es/skeleton/Image.cjs +57 -1
- package/dist/node_modules/antd/es/skeleton/Image.js +35 -8
- package/dist/node_modules/antd/es/skeleton/Input.cjs +54 -1
- package/dist/node_modules/antd/es/skeleton/Input.js +32 -10
- package/dist/node_modules/antd/es/skeleton/Node.cjs +50 -1
- package/dist/node_modules/antd/es/skeleton/Node.js +28 -8
- package/dist/node_modules/antd/es/skeleton/Paragraph.cjs +59 -1
- package/dist/node_modules/antd/es/skeleton/Paragraph.js +38 -9
- package/dist/node_modules/antd/es/skeleton/Skeleton.cjs +152 -1
- package/dist/node_modules/antd/es/skeleton/Skeleton.js +125 -43
- package/dist/node_modules/antd/es/skeleton/Title.cjs +40 -1
- package/dist/node_modules/antd/es/skeleton/Title.js +19 -6
- 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 +312 -38
- package/dist/node_modules/antd/es/space/Compact.cjs +122 -1
- package/dist/node_modules/antd/es/space/Compact.js +97 -36
- package/dist/node_modules/antd/es/space/Item.cjs +44 -1
- package/dist/node_modules/antd/es/space/Item.js +23 -7
- package/dist/node_modules/antd/es/space/context.cjs +8 -1
- package/dist/node_modules/antd/es/space/context.js +7 -4
- package/dist/node_modules/antd/es/space/index.cjs +127 -1
- package/dist/node_modules/antd/es/space/index.js +104 -33
- package/dist/node_modules/antd/es/space/style/compact.cjs +18 -1
- package/dist/node_modules/antd/es/space/style/compact.js +16 -4
- package/dist/node_modules/antd/es/space/style/index.cjs +97 -1
- package/dist/node_modules/antd/es/space/style/index.js +82 -14
- package/dist/node_modules/antd/es/spin/Indicator/Looper.cjs +44 -1
- package/dist/node_modules/antd/es/spin/Indicator/Looper.js +23 -7
- package/dist/node_modules/antd/es/spin/Indicator/Progress.cjs +85 -1
- package/dist/node_modules/antd/es/spin/Indicator/Progress.js +64 -17
- package/dist/node_modules/antd/es/spin/Indicator/index.cjs +43 -1
- package/dist/node_modules/antd/es/spin/Indicator/index.js +22 -8
- package/dist/node_modules/antd/es/spin/index.cjs +136 -1
- package/dist/node_modules/antd/es/spin/index.js +108 -39
- package/dist/node_modules/antd/es/spin/style/index.cjs +299 -1
- package/dist/node_modules/antd/es/spin/style/index.js +283 -16
- package/dist/node_modules/antd/es/spin/usePercent.cjs +50 -1
- package/dist/node_modules/antd/es/spin/usePercent.js +29 -17
- package/dist/node_modules/antd/es/style/compact-item-vertical.cjs +43 -1
- package/dist/node_modules/antd/es/style/compact-item-vertical.js +40 -7
- package/dist/node_modules/antd/es/style/compact-item.cjs +64 -1
- package/dist/node_modules/antd/es/style/compact-item.js +60 -11
- package/dist/node_modules/antd/es/style/index.cjs +165 -1
- package/dist/node_modules/antd/es/style/index.js +153 -19
- package/dist/node_modules/antd/es/style/motion/collapse.cjs +19 -3
- package/dist/node_modules/antd/es/style/motion/collapse.js +18 -4
- package/dist/node_modules/antd/es/style/motion/motion.cjs +37 -7
- package/dist/node_modules/antd/es/style/motion/motion.js +35 -10
- package/dist/node_modules/antd/es/style/motion/move.cjs +159 -4
- package/dist/node_modules/antd/es/style/motion/move.js +146 -17
- package/dist/node_modules/antd/es/style/motion/slide.cjs +164 -4
- package/dist/node_modules/antd/es/style/motion/slide.js +151 -17
- package/dist/node_modules/antd/es/style/motion/zoom.cjs +209 -4
- package/dist/node_modules/antd/es/style/motion/zoom.js +196 -21
- package/dist/node_modules/antd/es/style/placementArrow.cjs +170 -1
- package/dist/node_modules/antd/es/style/placementArrow.js +154 -14
- package/dist/node_modules/antd/es/style/roundedArrow.cjs +90 -1
- package/dist/node_modules/antd/es/style/roundedArrow.js +76 -9
- package/dist/node_modules/antd/es/switch/index.cjs +102 -1
- package/dist/node_modules/antd/es/switch/index.js +78 -24
- package/dist/node_modules/antd/es/switch/style/index.cjs +336 -1
- package/dist/node_modules/antd/es/switch/style/index.js +320 -29
- 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 +27 -9
- package/dist/node_modules/antd/es/table/InternalTable.cjs +402 -1
- package/dist/node_modules/antd/es/table/InternalTable.js +360 -89
- package/dist/node_modules/antd/es/table/RcTable/VirtualTable.cjs +15 -1
- package/dist/node_modules/antd/es/table/RcTable/VirtualTable.js +10 -5
- package/dist/node_modules/antd/es/table/RcTable/index.cjs +15 -1
- package/dist/node_modules/antd/es/table/RcTable/index.js +10 -5
- package/dist/node_modules/antd/es/table/Table.cjs +51 -1
- package/dist/node_modules/antd/es/table/Table.js +28 -13
- 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 +450 -119
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterSearch.cjs +47 -1
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterSearch.js +26 -7
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterWrapper.cjs +40 -1
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterWrapper.js +20 -8
- package/dist/node_modules/antd/es/table/hooks/useFilter/index.cjs +223 -1
- package/dist/node_modules/antd/es/table/hooks/useFilter/index.js +192 -69
- package/dist/node_modules/antd/es/table/hooks/useLazyKVMap.cjs +49 -1
- package/dist/node_modules/antd/es/table/hooks/useLazyKVMap.js +25 -15
- package/dist/node_modules/antd/es/table/hooks/usePagination.cjs +67 -1
- package/dist/node_modules/antd/es/table/hooks/usePagination.js +58 -27
- package/dist/node_modules/antd/es/table/hooks/useSelection.cjs +533 -1
- package/dist/node_modules/antd/es/table/hooks/useSelection.js +501 -194
- package/dist/node_modules/antd/es/table/hooks/useSorter.cjs +392 -1
- package/dist/node_modules/antd/es/table/hooks/useSorter.js +355 -112
- 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 +138 -14
- package/dist/node_modules/antd/es/table/style/ellipsis.cjs +32 -4
- package/dist/node_modules/antd/es/table/style/ellipsis.js +30 -8
- package/dist/node_modules/antd/es/table/style/empty.cjs +21 -1
- package/dist/node_modules/antd/es/table/style/empty.js +19 -4
- package/dist/node_modules/antd/es/table/style/expand.cjs +134 -1
- package/dist/node_modules/antd/es/table/style/expand.js +121 -6
- package/dist/node_modules/antd/es/table/style/filter.cjs +167 -1
- package/dist/node_modules/antd/es/table/style/filter.js +154 -6
- package/dist/node_modules/antd/es/table/style/fixed.cjs +121 -21
- package/dist/node_modules/antd/es/table/style/fixed.js +119 -24
- package/dist/node_modules/antd/es/table/style/index.cjs +333 -10
- package/dist/node_modules/antd/es/table/style/index.js +317 -41
- package/dist/node_modules/antd/es/table/style/pagination.cjs +46 -1
- package/dist/node_modules/antd/es/table/style/pagination.js +33 -5
- package/dist/node_modules/antd/es/table/style/radius.cjs +58 -1
- package/dist/node_modules/antd/es/table/style/radius.js +45 -5
- package/dist/node_modules/antd/es/table/style/rtl.cjs +46 -1
- package/dist/node_modules/antd/es/table/style/rtl.js +44 -4
- package/dist/node_modules/antd/es/table/style/selection.cjs +107 -5
- package/dist/node_modules/antd/es/table/style/selection.js +94 -9
- package/dist/node_modules/antd/es/table/style/size.cjs +56 -8
- package/dist/node_modules/antd/es/table/style/size.js +43 -12
- package/dist/node_modules/antd/es/table/style/sorter.cjs +94 -4
- package/dist/node_modules/antd/es/table/style/sorter.js +92 -7
- package/dist/node_modules/antd/es/table/style/sticky.cjs +67 -1
- package/dist/node_modules/antd/es/table/style/sticky.js +54 -5
- package/dist/node_modules/antd/es/table/style/summary.cjs +40 -1
- package/dist/node_modules/antd/es/table/style/summary.js +27 -5
- package/dist/node_modules/antd/es/table/style/virtual.cjs +85 -4
- package/dist/node_modules/antd/es/table/style/virtual.js +72 -8
- 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 +34 -6
- package/dist/node_modules/antd/es/tabs/hooks/useLegacyItems.cjs +63 -1
- package/dist/node_modules/antd/es/tabs/hooks/useLegacyItems.js +38 -19
- package/dist/node_modules/antd/es/tabs/index.cjs +134 -1
- package/dist/node_modules/antd/es/tabs/index.js +106 -34
- package/dist/node_modules/antd/es/tabs/style/index.cjs +851 -3
- package/dist/node_modules/antd/es/tabs/style/index.js +835 -37
- package/dist/node_modules/antd/es/tabs/style/motion.cjs +41 -1
- package/dist/node_modules/antd/es/tabs/style/motion.js +39 -5
- package/dist/node_modules/antd/es/theme/context.cjs +13 -1
- package/dist/node_modules/antd/es/theme/context.js +12 -5
- 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 +47 -10
- package/dist/node_modules/antd/es/theme/themes/default/index.cjs +32 -1
- package/dist/node_modules/antd/es/theme/themes/default/index.js +30 -17
- 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 +67 -4
- package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.cjs +86 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.js +84 -6
- package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.cjs +19 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.js +17 -5
- package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.cjs +12 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.js +10 -4
- package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.cjs +36 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.js +34 -5
- package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.cjs +22 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.js +17 -9
- package/dist/node_modules/antd/es/theme/themes/shared/genRadius.cjs +43 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genRadius.js +41 -4
- package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.cjs +28 -1
- package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.js +26 -4
- package/dist/node_modules/antd/es/theme/useToken.cjs +132 -1
- package/dist/node_modules/antd/es/theme/useToken.js +117 -30
- package/dist/node_modules/antd/es/theme/util/alias.cjs +149 -12
- package/dist/node_modules/antd/es/theme/util/alias.js +143 -31
- package/dist/node_modules/antd/es/theme/util/genPresetColor.cjs +17 -1
- package/dist/node_modules/antd/es/theme/util/genPresetColor.js +14 -6
- package/dist/node_modules/antd/es/theme/util/genStyleUtils.cjs +52 -1
- package/dist/node_modules/antd/es/theme/util/genStyleUtils.js +50 -22
- package/dist/node_modules/antd/es/theme/util/getAlphaColor.cjs +41 -1
- package/dist/node_modules/antd/es/theme/util/getAlphaColor.js +37 -12
- package/dist/node_modules/antd/es/theme/util/useResetIconStyle.cjs +28 -1
- package/dist/node_modules/antd/es/theme/util/useResetIconStyle.js +15 -7
- 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 +5 -2
- package/dist/node_modules/antd/es/tooltip/PurePanel.cjs +59 -1
- package/dist/node_modules/antd/es/tooltip/PurePanel.js +35 -10
- package/dist/node_modules/antd/es/tooltip/index.cjs +221 -1
- package/dist/node_modules/antd/es/tooltip/index.js +184 -51
- package/dist/node_modules/antd/es/tooltip/style/index.cjs +152 -1
- package/dist/node_modules/antd/es/tooltip/style/index.js +135 -21
- package/dist/node_modules/antd/es/tooltip/util.cjs +21 -1
- package/dist/node_modules/antd/es/tooltip/util.js +19 -6
- package/dist/node_modules/antd/es/tree/DirectoryTree.cjs +177 -1
- package/dist/node_modules/antd/es/tree/DirectoryTree.js +152 -49
- package/dist/node_modules/antd/es/tree/Tree.cjs +122 -1
- package/dist/node_modules/antd/es/tree/Tree.js +100 -23
- package/dist/node_modules/antd/es/tree/index.cjs +10 -1
- package/dist/node_modules/antd/es/tree/index.js +7 -6
- package/dist/node_modules/antd/es/tree/style/directory.cjs +55 -1
- package/dist/node_modules/antd/es/tree/style/directory.js +53 -4
- package/dist/node_modules/antd/es/tree/style/index.cjs +386 -1
- package/dist/node_modules/antd/es/tree/style/index.js +370 -29
- package/dist/node_modules/antd/es/tree/utils/dictUtil.cjs +73 -1
- package/dist/node_modules/antd/es/tree/utils/dictUtil.js +69 -30
- package/dist/node_modules/antd/es/tree/utils/dropIndicator.cjs +37 -1
- package/dist/node_modules/antd/es/tree/utils/dropIndicator.js +28 -11
- package/dist/node_modules/antd/es/tree/utils/iconUtil.cjs +95 -1
- package/dist/node_modules/antd/es/tree/utils/iconUtil.js +72 -21
- package/dist/node_modules/antd/es/typography/Base/CopyBtn.cjs +62 -1
- package/dist/node_modules/antd/es/typography/Base/CopyBtn.js +41 -12
- package/dist/node_modules/antd/es/typography/Base/Ellipsis.cjs +202 -1
- package/dist/node_modules/antd/es/typography/Base/Ellipsis.js +174 -58
- package/dist/node_modules/antd/es/typography/Base/EllipsisTooltip.cjs +40 -1
- package/dist/node_modules/antd/es/typography/Base/EllipsisTooltip.js +19 -7
- package/dist/node_modules/antd/es/typography/Base/index.cjs +354 -1
- package/dist/node_modules/antd/es/typography/Base/index.js +325 -97
- package/dist/node_modules/antd/es/typography/Base/util.cjs +33 -1
- package/dist/node_modules/antd/es/typography/Base/util.js +29 -14
- package/dist/node_modules/antd/es/typography/Editable.cjs +132 -1
- package/dist/node_modules/antd/es/typography/Editable.js +109 -38
- package/dist/node_modules/antd/es/typography/Link.cjs +51 -1
- package/dist/node_modules/antd/es/typography/Link.js +24 -15
- package/dist/node_modules/antd/es/typography/Paragraph.cjs +28 -1
- package/dist/node_modules/antd/es/typography/Paragraph.js +8 -4
- package/dist/node_modules/antd/es/typography/Text.cjs +55 -1
- package/dist/node_modules/antd/es/typography/Text.js +31 -19
- package/dist/node_modules/antd/es/typography/Title.cjs +48 -1
- package/dist/node_modules/antd/es/typography/Title.js +23 -17
- package/dist/node_modules/antd/es/typography/Typography.cjs +76 -1
- package/dist/node_modules/antd/es/typography/Typography.js +53 -20
- package/dist/node_modules/antd/es/typography/hooks/useCopyClick.cjs +96 -1
- package/dist/node_modules/antd/es/typography/hooks/useCopyClick.js +64 -36
- 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 -3
- package/dist/node_modules/antd/es/typography/index.cjs +12 -1
- package/dist/node_modules/antd/es/typography/index.js +11 -8
- package/dist/node_modules/antd/es/typography/style/index.cjs +113 -12
- package/dist/node_modules/antd/es/typography/style/index.js +96 -20
- package/dist/node_modules/antd/es/typography/style/mixins.cjs +236 -6
- package/dist/node_modules/antd/es/typography/style/mixins.js +224 -29
- 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 +65 -1
- package/dist/node_modules/classnames/index.js +62 -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 +93 -30
- package/dist/node_modules/date-fns/_lib/addLeadingZeros.cjs +7 -1
- package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +5 -3
- 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 +646 -293
- package/dist/node_modules/date-fns/_lib/format/lightFormatters.cjs +61 -1
- package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +59 -24
- package/dist/node_modules/date-fns/_lib/format/longFormatters.cjs +57 -1
- package/dist/node_modules/date-fns/_lib/format/longFormatters.js +38 -24
- 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 +17 -5
- package/dist/node_modules/date-fns/_lib/protectedTokens.cjs +22 -1
- package/dist/node_modules/date-fns/_lib/protectedTokens.js +18 -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 +27 -15
- 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 +73 -36
- package/dist/node_modules/date-fns/formatDistance.cjs +91 -1
- package/dist/node_modules/date-fns/formatDistance.js +84 -35
- 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 -8
- 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 -10
- package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.cjs +42 -1
- package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +39 -12
- package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.cjs +15 -1
- package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +12 -9
- 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 +82 -5
- 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 +34 -3
- 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 +10 -2
- 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 +161 -13
- 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 +120 -4
- package/dist/node_modules/date-fns/locale/en-US.cjs +21 -1
- package/dist/node_modules/date-fns/locale/en-US.js +19 -8
- 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 +280 -273
- package/dist/node_modules/dayjs/plugin/advancedFormat.cjs +57 -1
- package/dist/node_modules/dayjs/plugin/advancedFormat.js +55 -46
- package/dist/node_modules/dayjs/plugin/customParseFormat.cjs +132 -1
- package/dist/node_modules/dayjs/plugin/customParseFormat.js +123 -114
- package/dist/node_modules/dayjs/plugin/localeData.cjs +85 -1
- package/dist/node_modules/dayjs/plugin/localeData.js +83 -74
- package/dist/node_modules/dayjs/plugin/weekOfYear.cjs +32 -1
- package/dist/node_modules/dayjs/plugin/weekOfYear.js +30 -21
- package/dist/node_modules/dayjs/plugin/weekYear.cjs +22 -1
- package/dist/node_modules/dayjs/plugin/weekYear.js +20 -11
- package/dist/node_modules/dayjs/plugin/weekday.cjs +22 -1
- package/dist/node_modules/dayjs/plugin/weekday.js +20 -11
- package/dist/node_modules/debounce/index.cjs +83 -1
- package/dist/node_modules/debounce/index.js +77 -29
- package/dist/node_modules/rc-checkbox/es/index.cjs +91 -1
- package/dist/node_modules/rc-checkbox/es/index.js +69 -29
- package/dist/node_modules/rc-dropdown/es/Dropdown.cjs +102 -1
- package/dist/node_modules/rc-dropdown/es/Dropdown.js +98 -28
- package/dist/node_modules/rc-dropdown/es/Overlay.cjs +22 -1
- package/dist/node_modules/rc-dropdown/es/Overlay.js +20 -8
- package/dist/node_modules/rc-dropdown/es/hooks/useAccessibility.cjs +79 -1
- package/dist/node_modules/rc-dropdown/es/hooks/useAccessibility.js +54 -25
- 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 +44 -2
- package/dist/node_modules/rc-field-form/es/Field.cjs +510 -1
- package/dist/node_modules/rc-field-form/es/Field.js +458 -168
- package/dist/node_modules/rc-field-form/es/FieldContext.cjs +63 -1
- package/dist/node_modules/rc-field-form/es/FieldContext.js +42 -9
- package/dist/node_modules/rc-field-form/es/Form.cjs +128 -1
- package/dist/node_modules/rc-field-form/es/Form.js +105 -46
- package/dist/node_modules/rc-field-form/es/FormContext.cjs +79 -1
- package/dist/node_modules/rc-field-form/es/FormContext.js +57 -21
- package/dist/node_modules/rc-field-form/es/List.cjs +148 -1
- package/dist/node_modules/rc-field-form/es/List.js +125 -45
- 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 -15
- package/dist/node_modules/rc-field-form/es/useForm.cjs +795 -1
- package/dist/node_modules/rc-field-form/es/useForm.js +723 -337
- package/dist/node_modules/rc-field-form/es/useWatch.cjs +80 -1
- package/dist/node_modules/rc-field-form/es/useWatch.js +71 -36
- package/dist/node_modules/rc-field-form/es/utils/NameMap.cjs +75 -1
- package/dist/node_modules/rc-field-form/es/utils/NameMap.js +71 -39
- 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 +49 -2
- 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 +231 -137
- 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 -44
- package/dist/node_modules/rc-input/es/BaseInput.cjs +94 -1
- package/dist/node_modules/rc-input/es/BaseInput.js +89 -30
- package/dist/node_modules/rc-input/es/Input.cjs +202 -1
- package/dist/node_modules/rc-input/es/Input.js +196 -66
- package/dist/node_modules/rc-input/es/hooks/useCount.cjs +43 -1
- package/dist/node_modules/rc-input/es/hooks/useCount.js +22 -15
- 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 +57 -33
- package/dist/node_modules/rc-menu/es/Divider.cjs +38 -1
- package/dist/node_modules/rc-menu/es/Divider.js +17 -8
- 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 +291 -111
- package/dist/node_modules/rc-menu/es/MenuItem.cjs +166 -1
- package/dist/node_modules/rc-menu/es/MenuItem.js +141 -61
- package/dist/node_modules/rc-menu/es/MenuItemGroup.cjs +68 -1
- package/dist/node_modules/rc-menu/es/MenuItemGroup.js +47 -20
- package/dist/node_modules/rc-menu/es/SubMenu/InlineSubMenuList.cjs +75 -1
- package/dist/node_modules/rc-menu/es/SubMenu/InlineSubMenuList.js +52 -24
- package/dist/node_modules/rc-menu/es/SubMenu/PopupTrigger.cjs +84 -1
- package/dist/node_modules/rc-menu/es/SubMenu/PopupTrigger.js +62 -22
- package/dist/node_modules/rc-menu/es/SubMenu/SubMenuList.cjs +40 -1
- package/dist/node_modules/rc-menu/es/SubMenu/SubMenuList.js +20 -11
- package/dist/node_modules/rc-menu/es/SubMenu/index.cjs +232 -1
- package/dist/node_modules/rc-menu/es/SubMenu/index.js +210 -58
- package/dist/node_modules/rc-menu/es/context/IdContext.cjs +35 -1
- package/dist/node_modules/rc-menu/es/context/IdContext.js +13 -9
- package/dist/node_modules/rc-menu/es/context/MenuContext.cjs +52 -1
- package/dist/node_modules/rc-menu/es/context/MenuContext.js +29 -18
- 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 +195 -86
- package/dist/node_modules/rc-menu/es/hooks/useActive.cjs +46 -1
- package/dist/node_modules/rc-menu/es/hooks/useActive.js +25 -10
- package/dist/node_modules/rc-menu/es/hooks/useDirectionStyle.cjs +35 -1
- package/dist/node_modules/rc-menu/es/hooks/useDirectionStyle.js +14 -6
- package/dist/node_modules/rc-menu/es/hooks/useKeyRecords.cjs +121 -1
- package/dist/node_modules/rc-menu/es/hooks/useKeyRecords.js +95 -43
- package/dist/node_modules/rc-menu/es/hooks/useMemoCallback.cjs +34 -1
- package/dist/node_modules/rc-menu/es/hooks/useMemoCallback.js +12 -9
- package/dist/node_modules/rc-menu/es/hooks/useUUID.cjs +37 -1
- package/dist/node_modules/rc-menu/es/hooks/useUUID.js +16 -12
- package/dist/node_modules/rc-menu/es/index.cjs +20 -1
- package/dist/node_modules/rc-menu/es/index.js +17 -14
- package/dist/node_modules/rc-menu/es/placements.cjs +77 -1
- package/dist/node_modules/rc-menu/es/placements.js +75 -4
- package/dist/node_modules/rc-menu/es/utils/commonUtil.cjs +46 -1
- package/dist/node_modules/rc-menu/es/utils/commonUtil.js +23 -12
- package/dist/node_modules/rc-menu/es/utils/motionUtil.cjs +11 -1
- package/dist/node_modules/rc-menu/es/utils/motionUtil.js +9 -3
- package/dist/node_modules/rc-menu/es/utils/nodeUtil.cjs +83 -1
- package/dist/node_modules/rc-menu/es/utils/nodeUtil.js +58 -23
- 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 +13 -9
- package/dist/node_modules/rc-motion/es/CSSMotion.cjs +120 -1
- package/dist/node_modules/rc-motion/es/CSSMotion.js +94 -41
- package/dist/node_modules/rc-motion/es/CSSMotionList.cjs +143 -1
- package/dist/node_modules/rc-motion/es/CSSMotionList.js +117 -59
- package/dist/node_modules/rc-motion/es/DomWrapper.cjs +41 -1
- package/dist/node_modules/rc-motion/es/DomWrapper.js +20 -15
- package/dist/node_modules/rc-motion/es/context.cjs +33 -1
- package/dist/node_modules/rc-motion/es/context.js +11 -8
- package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.cjs +48 -1
- package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.js +25 -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 +27 -19
- package/dist/node_modules/rc-motion/es/hooks/useStatus.cjs +182 -1
- package/dist/node_modules/rc-motion/es/hooks/useStatus.js +150 -68
- package/dist/node_modules/rc-motion/es/hooks/useStepQueue.cjs +74 -1
- package/dist/node_modules/rc-motion/es/hooks/useStepQueue.js +48 -29
- 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 +86 -41
- package/dist/node_modules/rc-motion/es/util/motion.cjs +73 -1
- package/dist/node_modules/rc-motion/es/util/motion.js +65 -30
- package/dist/node_modules/rc-overflow/es/Item.cjs +77 -1
- package/dist/node_modules/rc-overflow/es/Item.js +52 -24
- package/dist/node_modules/rc-overflow/es/Overflow.cjs +240 -1
- package/dist/node_modules/rc-overflow/es/Overflow.js +207 -73
- package/dist/node_modules/rc-overflow/es/RawItem.cjs +47 -1
- package/dist/node_modules/rc-overflow/es/RawItem.js +26 -16
- 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 -9
- package/dist/node_modules/rc-overflow/es/hooks/useEffectState.cjs +55 -1
- package/dist/node_modules/rc-overflow/es/hooks/useEffectState.js +29 -22
- 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 +103 -28
- package/dist/node_modules/rc-pagination/es/Pager.cjs +29 -1
- package/dist/node_modules/rc-pagination/es/Pager.js +27 -12
- package/dist/node_modules/rc-pagination/es/Pagination.cjs +384 -1
- package/dist/node_modules/rc-pagination/es/Pagination.js +364 -124
- package/dist/node_modules/rc-pagination/es/locale/en_US.cjs +17 -1
- package/dist/node_modules/rc-pagination/es/locale/en_US.js +16 -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 +16 -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 -13
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PopupPanel.cjs +78 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PopupPanel.js +57 -19
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PresetPanel.cjs +48 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PresetPanel.js +26 -16
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/index.cjs +154 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/index.js +129 -46
- package/dist/node_modules/rc-picker/es/PickerInput/RangePicker.cjs +399 -1
- package/dist/node_modules/rc-picker/es/PickerInput/RangePicker.js +372 -133
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Icon.cjs +49 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Icon.js +26 -17
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Input.cjs +268 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Input.js +224 -95
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/MaskFormat.cjs +93 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/MaskFormat.js +86 -38
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/RangeSelector.cjs +186 -1
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/RangeSelector.js +157 -74
- 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 +48 -19
- 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 +132 -56
- 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 +15 -6
- 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 +121 -55
- 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 +12 -3
- package/dist/node_modules/rc-picker/es/PickerInput/SinglePicker.cjs +353 -1
- package/dist/node_modules/rc-picker/es/PickerInput/SinglePicker.js +322 -115
- 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 +29 -14
- 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 -16
- 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 -6
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldFormat.cjs +40 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldFormat.js +19 -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 -15
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFilledProps.cjs +100 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFilledProps.js +76 -32
- 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 -11
- 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 -14
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useOpen.cjs +19 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useOpen.js +17 -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 +19 -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 -11
- 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 +24 -10
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangePickerValue.cjs +155 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangePickerValue.js +119 -49
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeValue.cjs +195 -1
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeValue.js +159 -74
- 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 +144 -44
- 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 -17
- package/dist/node_modules/rc-picker/es/PickerPanel/DecadePanel/index.cjs +102 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/DecadePanel/index.js +81 -30
- package/dist/node_modules/rc-picker/es/PickerPanel/MonthPanel/index.cjs +95 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/MonthPanel/index.js +74 -30
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelBody.cjs +121 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelBody.js +98 -34
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelHeader.cjs +124 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelHeader.js +102 -38
- package/dist/node_modules/rc-picker/es/PickerPanel/QuarterPanel/index.cjs +86 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/QuarterPanel/index.js +65 -26
- 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 +99 -45
- 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 +213 -81
- 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 +58 -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 -11
- package/dist/node_modules/rc-picker/es/PickerPanel/WeekPanel/index.cjs +60 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/WeekPanel/index.js +38 -19
- package/dist/node_modules/rc-picker/es/PickerPanel/YearPanel/index.cjs +104 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/YearPanel/index.js +83 -31
- package/dist/node_modules/rc-picker/es/PickerPanel/context.cjs +60 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/context.js +38 -13
- package/dist/node_modules/rc-picker/es/PickerPanel/index.cjs +227 -1
- package/dist/node_modules/rc-picker/es/PickerPanel/index.js +201 -82
- package/dist/node_modules/rc-picker/es/PickerTrigger/index.cjs +87 -1
- package/dist/node_modules/rc-picker/es/PickerTrigger/index.js +66 -13
- 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 +211 -86
- package/dist/node_modules/rc-picker/es/hooks/useLocale.cjs +50 -1
- package/dist/node_modules/rc-picker/es/hooks/useLocale.js +46 -15
- 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 +133 -47
- package/dist/node_modules/rc-picker/es/hooks/useTimeInfo.cjs +124 -1
- package/dist/node_modules/rc-picker/es/hooks/useTimeInfo.js +94 -49
- package/dist/node_modules/rc-picker/es/hooks/useToggleDates.cjs +18 -1
- package/dist/node_modules/rc-picker/es/hooks/useToggleDates.js +15 -11
- 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 +7 -2
- package/dist/node_modules/rc-picker/es/locale/en_US.cjs +31 -1
- package/dist/node_modules/rc-picker/es/locale/en_US.js +30 -4
- package/dist/node_modules/rc-picker/es/utils/dateUtil.cjs +137 -1
- package/dist/node_modules/rc-picker/es/utils/dateUtil.js +105 -73
- package/dist/node_modules/rc-picker/es/utils/miscUtil.cjs +66 -1
- package/dist/node_modules/rc-picker/es/utils/miscUtil.js +50 -34
- 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 +59 -16
- package/dist/node_modules/rc-progress/es/Circle/index.cjs +127 -1
- package/dist/node_modules/rc-progress/es/Circle/index.js +104 -33
- package/dist/node_modules/rc-progress/es/Circle/util.cjs +31 -1
- package/dist/node_modules/rc-progress/es/Circle/util.js +29 -5
- 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 +34 -14
- package/dist/node_modules/rc-progress/es/hooks/useId.cjs +45 -1
- package/dist/node_modules/rc-progress/es/hooks/useId.js +23 -12
- package/dist/node_modules/rc-resize-observer/es/Collection.cjs +49 -1
- package/dist/node_modules/rc-resize-observer/es/Collection.js +28 -13
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.cjs +41 -1
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.js +20 -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 +75 -32
- package/dist/node_modules/rc-resize-observer/es/index.cjs +52 -1
- package/dist/node_modules/rc-resize-observer/es/index.js +29 -14
- 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 -15
- package/dist/node_modules/rc-segmented/es/MotionThumb.cjs +171 -1
- package/dist/node_modules/rc-segmented/es/MotionThumb.js +148 -42
- package/dist/node_modules/rc-segmented/es/index.cjs +195 -1
- package/dist/node_modules/rc-segmented/es/index.js +163 -65
- package/dist/node_modules/rc-select/es/BaseSelect/Polite.cjs +43 -1
- package/dist/node_modules/rc-select/es/BaseSelect/Polite.js +22 -9
- package/dist/node_modules/rc-select/es/BaseSelect/index.cjs +442 -3
- package/dist/node_modules/rc-select/es/BaseSelect/index.js +408 -140
- 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 +287 -116
- package/dist/node_modules/rc-select/es/Select.cjs +387 -1
- package/dist/node_modules/rc-select/es/Select.js +355 -154
- 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 +110 -31
- package/dist/node_modules/rc-select/es/Selector/Input.cjs +103 -1
- package/dist/node_modules/rc-select/es/Selector/Input.js +83 -23
- package/dist/node_modules/rc-select/es/Selector/MultipleSelector.cjs +162 -1
- package/dist/node_modules/rc-select/es/Selector/MultipleSelector.js +139 -48
- package/dist/node_modules/rc-select/es/Selector/SingleSelector.cjs +91 -1
- package/dist/node_modules/rc-select/es/Selector/SingleSelector.js +70 -17
- package/dist/node_modules/rc-select/es/Selector/index.cjs +144 -1
- package/dist/node_modules/rc-select/es/Selector/index.js +124 -50
- package/dist/node_modules/rc-select/es/TransBtn.cjs +45 -1
- package/dist/node_modules/rc-select/es/TransBtn.js +24 -10
- package/dist/node_modules/rc-select/es/hooks/useAllowClear.cjs +32 -1
- package/dist/node_modules/rc-select/es/hooks/useAllowClear.js +30 -11
- 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 +33 -16
- package/dist/node_modules/rc-select/es/hooks/useDelayReset.cjs +44 -1
- package/dist/node_modules/rc-select/es/hooks/useDelayReset.js +22 -13
- package/dist/node_modules/rc-select/es/hooks/useFilterOptions.cjs +74 -1
- package/dist/node_modules/rc-select/es/hooks/useFilterOptions.js +50 -27
- 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 +21 -13
- package/dist/node_modules/rc-select/es/hooks/useOptions.cjs +59 -1
- package/dist/node_modules/rc-select/es/hooks/useOptions.js +36 -15
- 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 -16
- 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 +37 -4
- package/dist/node_modules/rc-select/es/utils/legacyUtil.cjs +54 -1
- package/dist/node_modules/rc-select/es/utils/legacyUtil.js +32 -17
- 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 +97 -42
- package/dist/node_modules/rc-select/es/utils/warningPropsUtil.cjs +114 -1
- package/dist/node_modules/rc-select/es/utils/warningPropsUtil.js +87 -41
- package/dist/node_modules/rc-switch/es/index.cjs +77 -1
- package/dist/node_modules/rc-switch/es/index.js +55 -22
- package/dist/node_modules/rc-table/es/Body/BodyRow.cjs +122 -1
- package/dist/node_modules/rc-table/es/Body/BodyRow.js +97 -29
- package/dist/node_modules/rc-table/es/Body/ExpandedRow.cjs +56 -1
- package/dist/node_modules/rc-table/es/Body/ExpandedRow.js +34 -10
- package/dist/node_modules/rc-table/es/Body/MeasureCell.cjs +47 -1
- package/dist/node_modules/rc-table/es/Body/MeasureCell.js +26 -8
- package/dist/node_modules/rc-table/es/Body/MeasureRow.cjs +48 -1
- package/dist/node_modules/rc-table/es/Body/MeasureRow.js +25 -12
- package/dist/node_modules/rc-table/es/Body/index.cjs +89 -1
- package/dist/node_modules/rc-table/es/Body/index.js +67 -22
- package/dist/node_modules/rc-table/es/Cell/index.cjs +124 -1
- package/dist/node_modules/rc-table/es/Cell/index.js +99 -34
- package/dist/node_modules/rc-table/es/Cell/useCellRender.cjs +81 -1
- package/dist/node_modules/rc-table/es/Cell/useCellRender.js +57 -25
- package/dist/node_modules/rc-table/es/Cell/useHoverState.cjs +16 -1
- package/dist/node_modules/rc-table/es/Cell/useHoverState.js +11 -7
- package/dist/node_modules/rc-table/es/ColGroup.cjs +62 -1
- package/dist/node_modules/rc-table/es/ColGroup.js +38 -17
- package/dist/node_modules/rc-table/es/FixedHolder/index.cjs +142 -1
- package/dist/node_modules/rc-table/es/FixedHolder/index.js +117 -54
- package/dist/node_modules/rc-table/es/Footer/Cell.cjs +51 -1
- package/dist/node_modules/rc-table/es/Footer/Cell.js +29 -13
- 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 -6
- 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 +31 -16
- package/dist/node_modules/rc-table/es/Header/Header.cjs +106 -1
- package/dist/node_modules/rc-table/es/Header/Header.js +84 -33
- package/dist/node_modules/rc-table/es/Header/HeaderRow.cjs +64 -1
- package/dist/node_modules/rc-table/es/Header/HeaderRow.js +40 -19
- package/dist/node_modules/rc-table/es/Panel/index.cjs +28 -1
- package/dist/node_modules/rc-table/es/Panel/index.js +7 -5
- package/dist/node_modules/rc-table/es/Table.cjs +569 -1
- package/dist/node_modules/rc-table/es/Table.js +537 -154
- package/dist/node_modules/rc-table/es/VirtualTable/BodyGrid.cjs +230 -1
- package/dist/node_modules/rc-table/es/VirtualTable/BodyGrid.js +201 -83
- package/dist/node_modules/rc-table/es/VirtualTable/BodyLine.cjs +103 -1
- package/dist/node_modules/rc-table/es/VirtualTable/BodyLine.js +80 -28
- package/dist/node_modules/rc-table/es/VirtualTable/VirtualCell.cjs +92 -1
- package/dist/node_modules/rc-table/es/VirtualTable/VirtualCell.js +67 -20
- 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 +71 -29
- 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 +5 -3
- 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 +186 -90
- 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 -28
- 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 +32 -15
- package/dist/node_modules/rc-table/es/hooks/useFrame.cjs +58 -1
- package/dist/node_modules/rc-table/es/hooks/useFrame.js +51 -32
- package/dist/node_modules/rc-table/es/hooks/useHover.cjs +32 -1
- package/dist/node_modules/rc-table/es/hooks/useHover.js +11 -8
- 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 +48 -16
- package/dist/node_modules/rc-table/es/hooks/useSticky.cjs +42 -1
- package/dist/node_modules/rc-table/es/hooks/useSticky.js +21 -12
- package/dist/node_modules/rc-table/es/hooks/useStickyOffsets.cjs +29 -1
- package/dist/node_modules/rc-table/es/hooks/useStickyOffsets.js +27 -10
- package/dist/node_modules/rc-table/es/stickyScrollBar.cjs +191 -1
- package/dist/node_modules/rc-table/es/stickyScrollBar.js +158 -61
- 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 +39 -19
- package/dist/node_modules/rc-table/es/utils/fixUtil.cjs +46 -1
- package/dist/node_modules/rc-table/es/utils/fixUtil.js +43 -7
- 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 +10 -5
- package/dist/node_modules/rc-table/es/utils/valueUtil.cjs +31 -1
- package/dist/node_modules/rc-table/es/utils/valueUtil.js +27 -13
- 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 +19 -7
- package/dist/node_modules/rc-tabs/es/TabNavList/ExtraContent.cjs +49 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/ExtraContent.js +28 -9
- package/dist/node_modules/rc-tabs/es/TabNavList/OperationNode.cjs +181 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/OperationNode.js +153 -57
- package/dist/node_modules/rc-tabs/es/TabNavList/TabNode.cjs +100 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/TabNode.js +78 -22
- package/dist/node_modules/rc-tabs/es/TabNavList/Wrapper.cjs +51 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/Wrapper.js +30 -15
- package/dist/node_modules/rc-tabs/es/TabNavList/index.cjs +486 -1
- package/dist/node_modules/rc-tabs/es/TabNavList/index.js +443 -141
- package/dist/node_modules/rc-tabs/es/TabPanelList/TabPane.cjs +39 -1
- package/dist/node_modules/rc-tabs/es/TabPanelList/TabPane.js +18 -7
- package/dist/node_modules/rc-tabs/es/TabPanelList/index.cjs +65 -1
- package/dist/node_modules/rc-tabs/es/TabPanelList/index.js +41 -17
- package/dist/node_modules/rc-tabs/es/Tabs.cjs +134 -1
- package/dist/node_modules/rc-tabs/es/Tabs.js +109 -47
- package/dist/node_modules/rc-tabs/es/hooks/useAnimateConfig.cjs +37 -1
- package/dist/node_modules/rc-tabs/es/hooks/useAnimateConfig.js +35 -7
- package/dist/node_modules/rc-tabs/es/hooks/useIndicator.cjs +64 -1
- package/dist/node_modules/rc-tabs/es/hooks/useIndicator.js +61 -21
- package/dist/node_modules/rc-tabs/es/hooks/useOffsets.cjs +32 -1
- package/dist/node_modules/rc-tabs/es/hooks/useOffsets.js +29 -15
- package/dist/node_modules/rc-tabs/es/hooks/useSyncState.cjs +36 -1
- package/dist/node_modules/rc-tabs/es/hooks/useSyncState.js +15 -9
- package/dist/node_modules/rc-tabs/es/hooks/useTouchMove.cjs +139 -1
- package/dist/node_modules/rc-tabs/es/hooks/useTouchMove.js +113 -40
- package/dist/node_modules/rc-tabs/es/hooks/useUpdate.cjs +43 -1
- package/dist/node_modules/rc-tabs/es/hooks/useUpdate.js +37 -21
- package/dist/node_modules/rc-tabs/es/hooks/useVisibleRange.cjs +50 -1
- package/dist/node_modules/rc-tabs/es/hooks/useVisibleRange.js +43 -18
- 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 +28 -12
- package/dist/node_modules/rc-textarea/es/ResizableTextArea.cjs +133 -1
- package/dist/node_modules/rc-textarea/es/ResizableTextArea.js +107 -52
- package/dist/node_modules/rc-textarea/es/TextArea.cjs +177 -1
- package/dist/node_modules/rc-textarea/es/TextArea.js +174 -59
- package/dist/node_modules/rc-textarea/es/calculateNodeHeight.cjs +92 -12
- package/dist/node_modules/rc-textarea/es/calculateNodeHeight.js +88 -34
- 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 +14 -6
- package/dist/node_modules/rc-tooltip/es/Tooltip.cjs +85 -1
- package/dist/node_modules/rc-tooltip/es/Tooltip.js +65 -25
- 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 +85 -3
- package/dist/node_modules/rc-tree/es/DropIndicator.cjs +33 -1
- package/dist/node_modules/rc-tree/es/DropIndicator.js +25 -10
- package/dist/node_modules/rc-tree/es/Indent.cjs +40 -1
- package/dist/node_modules/rc-tree/es/Indent.js +19 -8
- package/dist/node_modules/rc-tree/es/MotionTreeNode.cjs +104 -1
- package/dist/node_modules/rc-tree/es/MotionTreeNode.js +81 -34
- package/dist/node_modules/rc-tree/es/NodeList.cjs +247 -1
- package/dist/node_modules/rc-tree/es/NodeList.js +219 -68
- package/dist/node_modules/rc-tree/es/Tree.cjs +966 -1
- package/dist/node_modules/rc-tree/es/Tree.js +918 -277
- package/dist/node_modules/rc-tree/es/TreeNode.cjs +273 -1
- package/dist/node_modules/rc-tree/es/TreeNode.js +270 -94
- 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 +18 -13
- package/dist/node_modules/rc-tree/es/util.cjs +213 -1
- package/dist/node_modules/rc-tree/es/util.js +194 -75
- package/dist/node_modules/rc-tree/es/utils/conductUtil.cjs +170 -1
- package/dist/node_modules/rc-tree/es/utils/conductUtil.js +159 -65
- package/dist/node_modules/rc-tree/es/utils/diffUtil.cjs +51 -1
- package/dist/node_modules/rc-tree/es/utils/diffUtil.js +42 -23
- 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 +252 -91
- 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 +16 -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 -8
- package/dist/node_modules/rc-util/es/Dom/dynamicCSS.cjs +123 -1
- package/dist/node_modules/rc-util/es/Dom/dynamicCSS.js +109 -54
- package/dist/node_modules/rc-util/es/Dom/findDOMNode.cjs +31 -1
- package/dist/node_modules/rc-util/es/Dom/findDOMNode.js +26 -13
- package/dist/node_modules/rc-util/es/Dom/focus.cjs +39 -1
- package/dist/node_modules/rc-util/es/Dom/focus.js +34 -13
- package/dist/node_modules/rc-util/es/Dom/isVisible.cjs +25 -1
- package/dist/node_modules/rc-util/es/Dom/isVisible.js +20 -12
- 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 -14
- package/dist/node_modules/rc-util/es/KeyCode.cjs +154 -1
- package/dist/node_modules/rc-util/es/KeyCode.js +153 -2
- package/dist/node_modules/rc-util/es/React/isFragment.cjs +14 -1
- package/dist/node_modules/rc-util/es/React/isFragment.js +12 -5
- package/dist/node_modules/rc-util/es/React/render.cjs +108 -1
- package/dist/node_modules/rc-util/es/React/render.js +67 -49
- package/dist/node_modules/rc-util/es/getScrollBarSize.cjs +64 -5
- package/dist/node_modules/rc-util/es/getScrollBarSize.js +56 -27
- package/dist/node_modules/rc-util/es/hooks/useEvent.cjs +34 -1
- package/dist/node_modules/rc-util/es/hooks/useEvent.js +12 -9
- package/dist/node_modules/rc-util/es/hooks/useId.cjs +60 -1
- package/dist/node_modules/rc-util/es/hooks/useId.js +40 -15
- package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.cjs +45 -1
- package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.js +21 -15
- 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 +38 -19
- package/dist/node_modules/rc-util/es/hooks/useState.cjs +40 -1
- package/dist/node_modules/rc-util/es/hooks/useState.js +18 -11
- package/dist/node_modules/rc-util/es/hooks/useSyncState.cjs +38 -1
- package/dist/node_modules/rc-util/es/hooks/useSyncState.js +17 -13
- package/dist/node_modules/rc-util/es/isEqual.cjs +46 -1
- package/dist/node_modules/rc-util/es/isEqual.js +41 -22
- package/dist/node_modules/rc-util/es/isMobile.cjs +9 -1
- package/dist/node_modules/rc-util/es/isMobile.js +7 -5
- 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 -29
- package/dist/node_modules/rc-util/es/raf.cjs +49 -1
- package/dist/node_modules/rc-util/es/raf.js +43 -28
- package/dist/node_modules/rc-util/es/ref.cjs +76 -1
- package/dist/node_modules/rc-util/es/ref.js +66 -40
- package/dist/node_modules/rc-util/es/utils/get.cjs +12 -1
- package/dist/node_modules/rc-util/es/utils/get.js +9 -6
- package/dist/node_modules/rc-util/es/utils/set.cjs +74 -1
- package/dist/node_modules/rc-util/es/utils/set.js +66 -32
- package/dist/node_modules/rc-util/es/warning.cjs +53 -1
- package/dist/node_modules/rc-util/es/warning.js +42 -31
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.cjs +192 -1
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.js +188 -70
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.cjs +108 -1
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.js +96 -58
- 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 +39 -13
- package/dist/node_modules/rc-virtual-list/es/Item.cjs +31 -1
- package/dist/node_modules/rc-virtual-list/es/Item.js +9 -6
- package/dist/node_modules/rc-virtual-list/es/List.cjs +451 -1
- package/dist/node_modules/rc-virtual-list/es/List.js +416 -145
- package/dist/node_modules/rc-virtual-list/es/ScrollBar.cjs +216 -1
- package/dist/node_modules/rc-virtual-list/es/ScrollBar.js +185 -54
- package/dist/node_modules/rc-virtual-list/es/hooks/useChildren.cjs +42 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useChildren.js +20 -10
- 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 +68 -29
- package/dist/node_modules/rc-virtual-list/es/hooks/useGetSize.cjs +58 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useGetSize.js +34 -14
- package/dist/node_modules/rc-virtual-list/es/hooks/useHeights.cjs +87 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useHeights.js +58 -34
- 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 -26
- package/dist/node_modules/rc-virtual-list/es/hooks/useOriginScroll.cjs +40 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useOriginScroll.js +37 -9
- 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 -30
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollTo.cjs +136 -1
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollTo.js +101 -47
- 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 +39 -16
- package/dist/node_modules/rc-virtual-list/es/utils/algorithmUtil.cjs +42 -1
- package/dist/node_modules/rc-virtual-list/es/utils/algorithmUtil.js +36 -13
- 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 -4
- 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 +110 -62
- package/dist/node_modules/react-icons/lib/iconContext.cjs +12 -1
- package/dist/node_modules/react-icons/lib/iconContext.js +11 -4
- 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 +334 -268
- 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 +478 -187
- 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 +156 -102
- package/dist/node_modules/stylis/src/Serializer.cjs +28 -1
- package/dist/node_modules/stylis/src/Serializer.js +23 -21
- package/dist/node_modules/stylis/src/Tokenizer.cjs +149 -1
- package/dist/node_modules/stylis/src/Tokenizer.js +116 -80
- 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 +53 -21
- package/dist/node_modules/toggle-selection/index.cjs +41 -1
- package/dist/node_modules/toggle-selection/index.js +33 -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 -8
- package/dist/providers/ToastProvider.cjs +72 -1
- package/dist/providers/ToastProvider.js +69 -17
- package/dist/providers/useGenesis.cjs +15 -1
- package/dist/providers/useGenesis.js +13 -7
- 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 +1323 -10
- package/dist/utils/icon-util.cjs +93 -1
- package/dist/utils/icon-util.js +80 -66
- 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 +12 -6
- package/package.json +2 -1
|
@@ -1,327 +1,393 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { clsx
|
|
3
|
-
|
|
4
|
-
if (typeof document
|
|
5
|
-
let
|
|
6
|
-
e.type = "text/css",
|
|
7
|
-
})(`:root{--toastify-color-light: #fff;--toastify-color-dark: #121212;--toastify-color-info: #3498db;--toastify-color-success: #07bc0c;--toastify-color-warning: #f1c40f;--toastify-color-error: hsl(6, 78%, 57%);--toastify-color-transparent: rgba(255, 255, 255, .7);--toastify-icon-color-info: var(--toastify-color-info);--toastify-icon-color-success: var(--toastify-color-success);--toastify-icon-color-warning: var(--toastify-color-warning);--toastify-icon-color-error: var(--toastify-color-error);--toastify-container-width: fit-content;--toastify-toast-width: 320px;--toastify-toast-offset: 16px;--toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));--toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));--toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));--toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));--toastify-toast-background: #fff;--toastify-toast-padding: 14px;--toastify-toast-min-height: 64px;--toastify-toast-max-height: 800px;--toastify-toast-bd-radius: 6px;--toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, .1);--toastify-font-family: sans-serif;--toastify-z-index: 9999;--toastify-text-color-light: #757575;--toastify-text-color-dark: #fff;--toastify-text-color-info: #fff;--toastify-text-color-success: #fff;--toastify-text-color-warning: #fff;--toastify-text-color-error: #fff;--toastify-spinner-color: #616161;--toastify-spinner-color-empty-area: #e0e0e0;--toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);--toastify-color-progress-dark: #bb86fc;--toastify-color-progress-info: var(--toastify-color-info);--toastify-color-progress-success: var(--toastify-color-success);--toastify-color-progress-warning: var(--toastify-color-warning);--toastify-color-progress-error: var(--toastify-color-error);--toastify-color-progress-bgo: .2}.Toastify__toast-container{z-index:var(--toastify-z-index);-webkit-transform:translate3d(0,0,var(--toastify-z-index));position:fixed;width:var(--toastify-container-width);box-sizing:border-box;color:#fff;display:flex;flex-direction:column}.Toastify__toast-container--top-left{top:var(--toastify-toast-top);left:var(--toastify-toast-left)}.Toastify__toast-container--top-center{top:var(--toastify-toast-top);left:50%;transform:translate(-50%);align-items:center}.Toastify__toast-container--top-right{top:var(--toastify-toast-top);right:var(--toastify-toast-right);align-items:end}.Toastify__toast-container--bottom-left{bottom:var(--toastify-toast-bottom);left:var(--toastify-toast-left)}.Toastify__toast-container--bottom-center{bottom:var(--toastify-toast-bottom);left:50%;transform:translate(-50%);align-items:center}.Toastify__toast-container--bottom-right{bottom:var(--toastify-toast-bottom);right:var(--toastify-toast-right);align-items:end}.Toastify__toast{--y: 0;position:relative;touch-action:none;width:var(--toastify-toast-width);min-height:var(--toastify-toast-min-height);box-sizing:border-box;margin-bottom:1rem;padding:var(--toastify-toast-padding);border-radius:var(--toastify-toast-bd-radius);box-shadow:var(--toastify-toast-shadow);max-height:var(--toastify-toast-max-height);font-family:var(--toastify-font-family);z-index:0;display:flex;flex:1 auto;align-items:center;word-break:break-word}@media only screen and (max-width: 480px){.Toastify__toast-container{width:100vw;left:env(safe-area-inset-left);margin:0}.Toastify__toast-container--top-left,.Toastify__toast-container--top-center,.Toastify__toast-container--top-right{top:env(safe-area-inset-top);transform:translate(0)}.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-right{bottom:env(safe-area-inset-bottom);transform:translate(0)}.Toastify__toast-container--rtl{right:env(safe-area-inset-right);left:initial}.Toastify__toast{--toastify-toast-width: 100%;margin-bottom:0;border-radius:0}}.Toastify__toast-container[data-stacked=true]{width:var(--toastify-toast-width)}.Toastify__toast--stacked{position:absolute;width:100%;transform:translate3d(0,var(--y),0) scale(var(--s));transition:transform .3s}.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,.Toastify__toast--stacked[data-collapsed] .Toastify__close-button{transition:opacity .1s}.Toastify__toast--stacked[data-collapsed=false]{overflow:visible}.Toastify__toast--stacked[data-collapsed=true]:not(:last-child)>*{opacity:0}.Toastify__toast--stacked:after{content:"";position:absolute;left:0;right:0;height:calc(var(--g) * 1px);bottom:100%}.Toastify__toast--stacked[data-pos=top]{top:0}.Toastify__toast--stacked[data-pos=bot]{bottom:0}.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before{transform-origin:top}.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before{transform-origin:bottom}.Toastify__toast--stacked:before{content:"";position:absolute;left:0;right:0;bottom:0;height:100%;transform:scaleY(3);z-index:-1}.Toastify__toast--rtl{direction:rtl}.Toastify__toast--close-on-click{cursor:pointer}.Toastify__toast-icon{margin-inline-end:10px;width:22px;flex-shrink:0;display:flex}.Toastify--animate{animation-fill-mode:both;animation-duration:.5s}.Toastify--animate-icon{animation-fill-mode:both;animation-duration:.3s}.Toastify__toast-theme--dark{background:var(--toastify-color-dark);color:var(--toastify-text-color-dark)}.Toastify__toast-theme--light,.Toastify__toast-theme--colored.Toastify__toast--default{background:var(--toastify-color-light);color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--info{color:var(--toastify-text-color-info);background:var(--toastify-color-info)}.Toastify__toast-theme--colored.Toastify__toast--success{color:var(--toastify-text-color-success);background:var(--toastify-color-success)}.Toastify__toast-theme--colored.Toastify__toast--warning{color:var(--toastify-text-color-warning);background:var(--toastify-color-warning)}.Toastify__toast-theme--colored.Toastify__toast--error{color:var(--toastify-text-color-error);background:var(--toastify-color-error)}.Toastify__progress-bar-theme--light{background:var(--toastify-color-progress-light)}.Toastify__progress-bar-theme--dark{background:var(--toastify-color-progress-dark)}.Toastify__progress-bar--info{background:var(--toastify-color-progress-info)}.Toastify__progress-bar--success{background:var(--toastify-color-progress-success)}.Toastify__progress-bar--warning{background:var(--toastify-color-progress-warning)}.Toastify__progress-bar--error{background:var(--toastify-color-progress-error)}.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error{background:var(--toastify-color-transparent)}.Toastify__close-button{color:#fff;position:absolute;top:6px;right:6px;background:transparent;outline:none;border:none;padding:0;cursor:pointer;opacity:.7;transition:.3s ease;z-index:1}.Toastify__toast--rtl .Toastify__close-button{left:6px;right:unset}.Toastify__close-button--light{color:#000;opacity:.3}.Toastify__close-button>svg{fill:currentColor;height:16px;width:14px}.Toastify__close-button:hover,.Toastify__close-button:focus{opacity:1}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.Toastify__progress-bar{position:absolute;bottom:0;left:0;width:100%;height:100%;z-index:1;opacity:.7;transform-origin:left}.Toastify__progress-bar--animated{animation:Toastify__trackProgress linear 1 forwards}.Toastify__progress-bar--controlled{transition:transform .2s}.Toastify__progress-bar--rtl{right:0;left:initial;transform-origin:right;border-bottom-left-radius:initial}.Toastify__progress-bar--wrp{position:absolute;overflow:hidden;bottom:0;left:0;width:100%;height:5px;border-bottom-left-radius:var(--toastify-toast-bd-radius);border-bottom-right-radius:var(--toastify-toast-bd-radius)}.Toastify__progress-bar--wrp[data-hidden=true]{opacity:0}.Toastify__progress-bar--bg{opacity:var(--toastify-color-progress-bgo);width:100%;height:100%}.Toastify__spinner{width:20px;height:20px;box-sizing:border-box;border:2px solid;border-radius:100%;border-color:var(--toastify-spinner-color-empty-area);border-right-color:var(--toastify-spinner-color);animation:Toastify__spin .65s linear infinite}@keyframes Toastify__bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutRight{20%{opacity:1;transform:translate3d(-20px,var(--y),0)}to{opacity:0;transform:translate3d(2000px,var(--y),0)}}@keyframes Toastify__bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutLeft{20%{opacity:1;transform:translate3d(20px,var(--y),0)}to{opacity:0;transform:translate3d(-2000px,var(--y),0)}}@keyframes Toastify__bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes Toastify__bounceOutUp{20%{transform:translate3d(0,calc(var(--y) - 10px),0)}40%,45%{opacity:1;transform:translate3d(0,calc(var(--y) + 20px),0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes Toastify__bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes Toastify__bounceOutDown{20%{transform:translate3d(0,calc(var(--y) - 10px),0)}40%,45%{opacity:1;transform:translate3d(0,calc(var(--y) + 20px),0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.Toastify__bounce-enter--top-left,.Toastify__bounce-enter--bottom-left{animation-name:Toastify__bounceInLeft}.Toastify__bounce-enter--top-right,.Toastify__bounce-enter--bottom-right{animation-name:Toastify__bounceInRight}.Toastify__bounce-enter--top-center{animation-name:Toastify__bounceInDown}.Toastify__bounce-enter--bottom-center{animation-name:Toastify__bounceInUp}.Toastify__bounce-exit--top-left,.Toastify__bounce-exit--bottom-left{animation-name:Toastify__bounceOutLeft}.Toastify__bounce-exit--top-right,.Toastify__bounce-exit--bottom-right{animation-name:Toastify__bounceOutRight}.Toastify__bounce-exit--top-center{animation-name:Toastify__bounceOutUp}.Toastify__bounce-exit--bottom-center{animation-name:Toastify__bounceOutDown}@keyframes Toastify__zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes Toastify__zoomOut{0%{opacity:1}50%{opacity:0;transform:translate3d(0,var(--y),0) scale3d(.3,.3,.3)}to{opacity:0}}.Toastify__zoom-enter{animation-name:Toastify__zoomIn}.Toastify__zoom-exit{animation-name:Toastify__zoomOut}@keyframes Toastify__flipIn{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes Toastify__flipOut{0%{transform:translate3d(0,var(--y),0) perspective(400px)}30%{transform:translate3d(0,var(--y),0) perspective(400px) rotateX(-20deg);opacity:1}to{transform:translate3d(0,var(--y),0) perspective(400px) rotateX(90deg);opacity:0}}.Toastify__flip-enter{animation-name:Toastify__flipIn}.Toastify__flip-exit{animation-name:Toastify__flipOut}@keyframes Toastify__slideInRight{0%{transform:translate3d(110%,0,0);visibility:visible}to{transform:translate3d(0,var(--y),0)}}@keyframes Toastify__slideInLeft{0%{transform:translate3d(-110%,0,0);visibility:visible}to{transform:translate3d(0,var(--y),0)}}@keyframes Toastify__slideInUp{0%{transform:translate3d(0,110%,0);visibility:visible}to{transform:translate3d(0,var(--y),0)}}@keyframes Toastify__slideInDown{0%{transform:translate3d(0,-110%,0);visibility:visible}to{transform:translate3d(0,var(--y),0)}}@keyframes Toastify__slideOutRight{0%{transform:translate3d(0,var(--y),0)}to{visibility:hidden;transform:translate3d(110%,var(--y),0)}}@keyframes Toastify__slideOutLeft{0%{transform:translate3d(0,var(--y),0)}to{visibility:hidden;transform:translate3d(-110%,var(--y),0)}}@keyframes Toastify__slideOutDown{0%{transform:translate3d(0,var(--y),0)}to{visibility:hidden;transform:translate3d(0,500px,0)}}@keyframes Toastify__slideOutUp{0%{transform:translate3d(0,var(--y),0)}to{visibility:hidden;transform:translate3d(0,-500px,0)}}.Toastify__slide-enter--top-left,.Toastify__slide-enter--bottom-left{animation-name:Toastify__slideInLeft}.Toastify__slide-enter--top-right,.Toastify__slide-enter--bottom-right{animation-name:Toastify__slideInRight}.Toastify__slide-enter--top-center{animation-name:Toastify__slideInDown}.Toastify__slide-enter--bottom-center{animation-name:Toastify__slideInUp}.Toastify__slide-exit--top-left,.Toastify__slide-exit--bottom-left{animation-name:Toastify__slideOutLeft;animation-timing-function:ease-in;animation-duration:.3s}.Toastify__slide-exit--top-right,.Toastify__slide-exit--bottom-right{animation-name:Toastify__slideOutRight;animation-timing-function:ease-in;animation-duration:.3s}.Toastify__slide-exit--top-center{animation-name:Toastify__slideOutUp;animation-timing-function:ease-in;animation-duration:.3s}.Toastify__slide-exit--bottom-center{animation-name:Toastify__slideOutDown;animation-timing-function:ease-in;animation-duration:.3s}@keyframes Toastify__spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}
|
|
1
|
+
import React__default, { useState, useRef, useLayoutEffect, useEffect, useSyncExternalStore, isValidElement, cloneElement } from "react";
|
|
2
|
+
import { clsx } from "../node_modules/clsx/dist/clsx.js";
|
|
3
|
+
function Mt(t) {
|
|
4
|
+
if (typeof document == "undefined") return;
|
|
5
|
+
let o = document.head || document.getElementsByTagName("head")[0], e = document.createElement("style");
|
|
6
|
+
e.type = "text/css", o.firstChild ? o.insertBefore(e, o.firstChild) : o.appendChild(e), e.styleSheet ? e.styleSheet.cssText = t : e.appendChild(document.createTextNode(t));
|
|
7
|
+
}
|
|
8
|
+
Mt(`:root{--toastify-color-light: #fff;--toastify-color-dark: #121212;--toastify-color-info: #3498db;--toastify-color-success: #07bc0c;--toastify-color-warning: #f1c40f;--toastify-color-error: hsl(6, 78%, 57%);--toastify-color-transparent: rgba(255, 255, 255, .7);--toastify-icon-color-info: var(--toastify-color-info);--toastify-icon-color-success: var(--toastify-color-success);--toastify-icon-color-warning: var(--toastify-color-warning);--toastify-icon-color-error: var(--toastify-color-error);--toastify-container-width: fit-content;--toastify-toast-width: 320px;--toastify-toast-offset: 16px;--toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));--toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));--toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));--toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));--toastify-toast-background: #fff;--toastify-toast-padding: 14px;--toastify-toast-min-height: 64px;--toastify-toast-max-height: 800px;--toastify-toast-bd-radius: 6px;--toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, .1);--toastify-font-family: sans-serif;--toastify-z-index: 9999;--toastify-text-color-light: #757575;--toastify-text-color-dark: #fff;--toastify-text-color-info: #fff;--toastify-text-color-success: #fff;--toastify-text-color-warning: #fff;--toastify-text-color-error: #fff;--toastify-spinner-color: #616161;--toastify-spinner-color-empty-area: #e0e0e0;--toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);--toastify-color-progress-dark: #bb86fc;--toastify-color-progress-info: var(--toastify-color-info);--toastify-color-progress-success: var(--toastify-color-success);--toastify-color-progress-warning: var(--toastify-color-warning);--toastify-color-progress-error: var(--toastify-color-error);--toastify-color-progress-bgo: .2}.Toastify__toast-container{z-index:var(--toastify-z-index);-webkit-transform:translate3d(0,0,var(--toastify-z-index));position:fixed;width:var(--toastify-container-width);box-sizing:border-box;color:#fff;display:flex;flex-direction:column}.Toastify__toast-container--top-left{top:var(--toastify-toast-top);left:var(--toastify-toast-left)}.Toastify__toast-container--top-center{top:var(--toastify-toast-top);left:50%;transform:translate(-50%);align-items:center}.Toastify__toast-container--top-right{top:var(--toastify-toast-top);right:var(--toastify-toast-right);align-items:end}.Toastify__toast-container--bottom-left{bottom:var(--toastify-toast-bottom);left:var(--toastify-toast-left)}.Toastify__toast-container--bottom-center{bottom:var(--toastify-toast-bottom);left:50%;transform:translate(-50%);align-items:center}.Toastify__toast-container--bottom-right{bottom:var(--toastify-toast-bottom);right:var(--toastify-toast-right);align-items:end}.Toastify__toast{--y: 0;position:relative;touch-action:none;width:var(--toastify-toast-width);min-height:var(--toastify-toast-min-height);box-sizing:border-box;margin-bottom:1rem;padding:var(--toastify-toast-padding);border-radius:var(--toastify-toast-bd-radius);box-shadow:var(--toastify-toast-shadow);max-height:var(--toastify-toast-max-height);font-family:var(--toastify-font-family);z-index:0;display:flex;flex:1 auto;align-items:center;word-break:break-word}@media only screen and (max-width: 480px){.Toastify__toast-container{width:100vw;left:env(safe-area-inset-left);margin:0}.Toastify__toast-container--top-left,.Toastify__toast-container--top-center,.Toastify__toast-container--top-right{top:env(safe-area-inset-top);transform:translate(0)}.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-right{bottom:env(safe-area-inset-bottom);transform:translate(0)}.Toastify__toast-container--rtl{right:env(safe-area-inset-right);left:initial}.Toastify__toast{--toastify-toast-width: 100%;margin-bottom:0;border-radius:0}}.Toastify__toast-container[data-stacked=true]{width:var(--toastify-toast-width)}.Toastify__toast--stacked{position:absolute;width:100%;transform:translate3d(0,var(--y),0) scale(var(--s));transition:transform .3s}.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,.Toastify__toast--stacked[data-collapsed] .Toastify__close-button{transition:opacity .1s}.Toastify__toast--stacked[data-collapsed=false]{overflow:visible}.Toastify__toast--stacked[data-collapsed=true]:not(:last-child)>*{opacity:0}.Toastify__toast--stacked:after{content:"";position:absolute;left:0;right:0;height:calc(var(--g) * 1px);bottom:100%}.Toastify__toast--stacked[data-pos=top]{top:0}.Toastify__toast--stacked[data-pos=bot]{bottom:0}.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before{transform-origin:top}.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before{transform-origin:bottom}.Toastify__toast--stacked:before{content:"";position:absolute;left:0;right:0;bottom:0;height:100%;transform:scaleY(3);z-index:-1}.Toastify__toast--rtl{direction:rtl}.Toastify__toast--close-on-click{cursor:pointer}.Toastify__toast-icon{margin-inline-end:10px;width:22px;flex-shrink:0;display:flex}.Toastify--animate{animation-fill-mode:both;animation-duration:.5s}.Toastify--animate-icon{animation-fill-mode:both;animation-duration:.3s}.Toastify__toast-theme--dark{background:var(--toastify-color-dark);color:var(--toastify-text-color-dark)}.Toastify__toast-theme--light,.Toastify__toast-theme--colored.Toastify__toast--default{background:var(--toastify-color-light);color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--info{color:var(--toastify-text-color-info);background:var(--toastify-color-info)}.Toastify__toast-theme--colored.Toastify__toast--success{color:var(--toastify-text-color-success);background:var(--toastify-color-success)}.Toastify__toast-theme--colored.Toastify__toast--warning{color:var(--toastify-text-color-warning);background:var(--toastify-color-warning)}.Toastify__toast-theme--colored.Toastify__toast--error{color:var(--toastify-text-color-error);background:var(--toastify-color-error)}.Toastify__progress-bar-theme--light{background:var(--toastify-color-progress-light)}.Toastify__progress-bar-theme--dark{background:var(--toastify-color-progress-dark)}.Toastify__progress-bar--info{background:var(--toastify-color-progress-info)}.Toastify__progress-bar--success{background:var(--toastify-color-progress-success)}.Toastify__progress-bar--warning{background:var(--toastify-color-progress-warning)}.Toastify__progress-bar--error{background:var(--toastify-color-progress-error)}.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error{background:var(--toastify-color-transparent)}.Toastify__close-button{color:#fff;position:absolute;top:6px;right:6px;background:transparent;outline:none;border:none;padding:0;cursor:pointer;opacity:.7;transition:.3s ease;z-index:1}.Toastify__toast--rtl .Toastify__close-button{left:6px;right:unset}.Toastify__close-button--light{color:#000;opacity:.3}.Toastify__close-button>svg{fill:currentColor;height:16px;width:14px}.Toastify__close-button:hover,.Toastify__close-button:focus{opacity:1}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.Toastify__progress-bar{position:absolute;bottom:0;left:0;width:100%;height:100%;z-index:1;opacity:.7;transform-origin:left}.Toastify__progress-bar--animated{animation:Toastify__trackProgress linear 1 forwards}.Toastify__progress-bar--controlled{transition:transform .2s}.Toastify__progress-bar--rtl{right:0;left:initial;transform-origin:right;border-bottom-left-radius:initial}.Toastify__progress-bar--wrp{position:absolute;overflow:hidden;bottom:0;left:0;width:100%;height:5px;border-bottom-left-radius:var(--toastify-toast-bd-radius);border-bottom-right-radius:var(--toastify-toast-bd-radius)}.Toastify__progress-bar--wrp[data-hidden=true]{opacity:0}.Toastify__progress-bar--bg{opacity:var(--toastify-color-progress-bgo);width:100%;height:100%}.Toastify__spinner{width:20px;height:20px;box-sizing:border-box;border:2px solid;border-radius:100%;border-color:var(--toastify-spinner-color-empty-area);border-right-color:var(--toastify-spinner-color);animation:Toastify__spin .65s linear infinite}@keyframes Toastify__bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutRight{20%{opacity:1;transform:translate3d(-20px,var(--y),0)}to{opacity:0;transform:translate3d(2000px,var(--y),0)}}@keyframes Toastify__bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutLeft{20%{opacity:1;transform:translate3d(20px,var(--y),0)}to{opacity:0;transform:translate3d(-2000px,var(--y),0)}}@keyframes Toastify__bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes Toastify__bounceOutUp{20%{transform:translate3d(0,calc(var(--y) - 10px),0)}40%,45%{opacity:1;transform:translate3d(0,calc(var(--y) + 20px),0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes Toastify__bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes Toastify__bounceOutDown{20%{transform:translate3d(0,calc(var(--y) - 10px),0)}40%,45%{opacity:1;transform:translate3d(0,calc(var(--y) + 20px),0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.Toastify__bounce-enter--top-left,.Toastify__bounce-enter--bottom-left{animation-name:Toastify__bounceInLeft}.Toastify__bounce-enter--top-right,.Toastify__bounce-enter--bottom-right{animation-name:Toastify__bounceInRight}.Toastify__bounce-enter--top-center{animation-name:Toastify__bounceInDown}.Toastify__bounce-enter--bottom-center{animation-name:Toastify__bounceInUp}.Toastify__bounce-exit--top-left,.Toastify__bounce-exit--bottom-left{animation-name:Toastify__bounceOutLeft}.Toastify__bounce-exit--top-right,.Toastify__bounce-exit--bottom-right{animation-name:Toastify__bounceOutRight}.Toastify__bounce-exit--top-center{animation-name:Toastify__bounceOutUp}.Toastify__bounce-exit--bottom-center{animation-name:Toastify__bounceOutDown}@keyframes Toastify__zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes Toastify__zoomOut{0%{opacity:1}50%{opacity:0;transform:translate3d(0,var(--y),0) scale3d(.3,.3,.3)}to{opacity:0}}.Toastify__zoom-enter{animation-name:Toastify__zoomIn}.Toastify__zoom-exit{animation-name:Toastify__zoomOut}@keyframes Toastify__flipIn{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes Toastify__flipOut{0%{transform:translate3d(0,var(--y),0) perspective(400px)}30%{transform:translate3d(0,var(--y),0) perspective(400px) rotateX(-20deg);opacity:1}to{transform:translate3d(0,var(--y),0) perspective(400px) rotateX(90deg);opacity:0}}.Toastify__flip-enter{animation-name:Toastify__flipIn}.Toastify__flip-exit{animation-name:Toastify__flipOut}@keyframes Toastify__slideInRight{0%{transform:translate3d(110%,0,0);visibility:visible}to{transform:translate3d(0,var(--y),0)}}@keyframes Toastify__slideInLeft{0%{transform:translate3d(-110%,0,0);visibility:visible}to{transform:translate3d(0,var(--y),0)}}@keyframes Toastify__slideInUp{0%{transform:translate3d(0,110%,0);visibility:visible}to{transform:translate3d(0,var(--y),0)}}@keyframes Toastify__slideInDown{0%{transform:translate3d(0,-110%,0);visibility:visible}to{transform:translate3d(0,var(--y),0)}}@keyframes Toastify__slideOutRight{0%{transform:translate3d(0,var(--y),0)}to{visibility:hidden;transform:translate3d(110%,var(--y),0)}}@keyframes Toastify__slideOutLeft{0%{transform:translate3d(0,var(--y),0)}to{visibility:hidden;transform:translate3d(-110%,var(--y),0)}}@keyframes Toastify__slideOutDown{0%{transform:translate3d(0,var(--y),0)}to{visibility:hidden;transform:translate3d(0,500px,0)}}@keyframes Toastify__slideOutUp{0%{transform:translate3d(0,var(--y),0)}to{visibility:hidden;transform:translate3d(0,-500px,0)}}.Toastify__slide-enter--top-left,.Toastify__slide-enter--bottom-left{animation-name:Toastify__slideInLeft}.Toastify__slide-enter--top-right,.Toastify__slide-enter--bottom-right{animation-name:Toastify__slideInRight}.Toastify__slide-enter--top-center{animation-name:Toastify__slideInDown}.Toastify__slide-enter--bottom-center{animation-name:Toastify__slideInUp}.Toastify__slide-exit--top-left,.Toastify__slide-exit--bottom-left{animation-name:Toastify__slideOutLeft;animation-timing-function:ease-in;animation-duration:.3s}.Toastify__slide-exit--top-right,.Toastify__slide-exit--bottom-right{animation-name:Toastify__slideOutRight;animation-timing-function:ease-in;animation-duration:.3s}.Toastify__slide-exit--top-center{animation-name:Toastify__slideOutUp;animation-timing-function:ease-in;animation-duration:.3s}.Toastify__slide-exit--bottom-center{animation-name:Toastify__slideOutDown;animation-timing-function:ease-in;animation-duration:.3s}@keyframes Toastify__spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}
|
|
8
9
|
`);
|
|
9
|
-
var
|
|
10
|
-
function
|
|
11
|
-
let { scrollHeight:
|
|
10
|
+
var L = (t) => typeof t == "number" && !isNaN(t), N = (t) => typeof t == "string", P = (t) => typeof t == "function", mt = (t) => N(t) || L(t), B = (t) => N(t) || P(t) ? t : null, pt = (t, o) => t === false || L(t) && t > 0 ? t : o, z = (t) => isValidElement(t) || N(t) || P(t) || L(t);
|
|
11
|
+
function Z(t, o, e = 300) {
|
|
12
|
+
let { scrollHeight: r, style: s } = t;
|
|
12
13
|
requestAnimationFrame(() => {
|
|
13
|
-
|
|
14
|
-
|
|
14
|
+
s.minHeight = "initial", s.height = r + "px", s.transition = `all ${e}ms`, requestAnimationFrame(() => {
|
|
15
|
+
s.height = "0", s.padding = "0", s.margin = "0", setTimeout(o, e);
|
|
15
16
|
});
|
|
16
17
|
});
|
|
17
18
|
}
|
|
18
|
-
function
|
|
19
|
-
return function({ children:
|
|
20
|
-
let
|
|
21
|
-
return
|
|
22
|
-
let
|
|
23
|
-
|
|
19
|
+
function $({ enter: t, exit: o, appendPosition: e = false, collapse: r = true, collapseDuration: s = 300 }) {
|
|
20
|
+
return function({ children: a, position: d, preventExitTransition: c, done: T, nodeRef: g, isIn: v, playToast: x }) {
|
|
21
|
+
let C = e ? `${t}--${d}` : t, S = e ? `${o}--${d}` : o, E = useRef(0);
|
|
22
|
+
return useLayoutEffect(() => {
|
|
23
|
+
let f = g.current, p = C.split(" "), b = (n) => {
|
|
24
|
+
n.target === g.current && (x(), f.removeEventListener("animationend", b), f.removeEventListener("animationcancel", b), E.current === 0 && n.type !== "animationcancel" && f.classList.remove(...p));
|
|
24
25
|
};
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
(() => {
|
|
27
|
+
f.classList.add(...p), f.addEventListener("animationend", b), f.addEventListener("animationcancel", b);
|
|
28
|
+
})();
|
|
29
|
+
}, []), useEffect(() => {
|
|
30
|
+
let f = g.current, p = () => {
|
|
31
|
+
f.removeEventListener("animationend", p), r ? Z(f, T, s) : T();
|
|
29
32
|
};
|
|
30
|
-
|
|
31
|
-
|
|
33
|
+
v || (c ? p() : (() => {
|
|
34
|
+
E.current = 1, f.className += ` ${S}`, f.addEventListener("animationend", p);
|
|
35
|
+
})());
|
|
36
|
+
}, [v]), React__default.createElement(React__default.Fragment, null, a);
|
|
32
37
|
};
|
|
33
38
|
}
|
|
34
|
-
function
|
|
35
|
-
return { content:
|
|
39
|
+
function J(t, o) {
|
|
40
|
+
return { content: tt(t.content, t.props), containerId: t.props.containerId, id: t.props.toastId, theme: t.props.theme, type: t.props.type, data: t.props.data || {}, isLoading: t.props.isLoading, icon: t.props.icon, reason: t.removalReason, status: o };
|
|
41
|
+
}
|
|
42
|
+
function tt(t, o, e = false) {
|
|
43
|
+
return isValidElement(t) && !N(t.type) ? cloneElement(t, { closeToast: o.closeToast, toastProps: o, data: o.data, isPaused: e }) : P(t) ? t({ closeToast: o.closeToast, toastProps: o, data: o.data, isPaused: e }) : t;
|
|
36
44
|
}
|
|
37
|
-
function
|
|
38
|
-
return
|
|
45
|
+
function yt({ closeToast: t, theme: o, ariaLabel: e = "close" }) {
|
|
46
|
+
return React__default.createElement("button", { className: `Toastify__close-button Toastify__close-button--${o}`, type: "button", onClick: (r) => {
|
|
47
|
+
r.stopPropagation(), t(true);
|
|
48
|
+
}, "aria-label": e }, React__default.createElement("svg", { "aria-hidden": "true", viewBox: "0 0 14 16" }, React__default.createElement("path", { fillRule: "evenodd", d: "M7.71 8.23l3.75 3.75-1.48 1.48-3.75-3.75-3.75 3.75L1 11.98l3.75-3.75L1 4.48 2.48 3l3.75 3.75L9.98 3l1.48 1.48-3.75 3.75z" })));
|
|
39
49
|
}
|
|
40
|
-
function
|
|
41
|
-
let
|
|
42
|
-
|
|
43
|
-
let
|
|
44
|
-
|
|
50
|
+
function gt({ delay: t, isRunning: o, closeToast: e, type: r = "default", hide: s, className: l, controlledProgress: a, progress: d, rtl: c, isIn: T, theme: g }) {
|
|
51
|
+
let v = s || a && d === 0, x = { animationDuration: `${t}ms`, animationPlayState: o ? "running" : "paused" };
|
|
52
|
+
a && (x.transform = `scaleX(${d})`);
|
|
53
|
+
let C = clsx("Toastify__progress-bar", a ? "Toastify__progress-bar--controlled" : "Toastify__progress-bar--animated", `Toastify__progress-bar-theme--${g}`, `Toastify__progress-bar--${r}`, { ["Toastify__progress-bar--rtl"]: c }), S = P(l) ? l({ rtl: c, type: r, defaultClassName: C }) : clsx(C, l), E = { [a && d >= 1 ? "onTransitionEnd" : "onAnimationEnd"]: a && d < 1 ? null : () => {
|
|
54
|
+
T && e();
|
|
45
55
|
} };
|
|
46
|
-
return
|
|
47
|
-
}
|
|
48
|
-
var
|
|
49
|
-
function
|
|
50
|
-
let
|
|
51
|
-
|
|
52
|
-
}, x = (
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
},
|
|
56
|
-
|
|
56
|
+
return React__default.createElement("div", { className: "Toastify__progress-bar--wrp", "data-hidden": v }, React__default.createElement("div", { className: `Toastify__progress-bar--bg Toastify__progress-bar-theme--${g} Toastify__progress-bar--${r}` }), React__default.createElement("div", { role: "progressbar", "aria-hidden": v ? "true" : "false", "aria-label": "notification timer", className: S, style: x, ...E }));
|
|
57
|
+
}
|
|
58
|
+
var Xt = 1, at = () => `${Xt++}`;
|
|
59
|
+
function _t(t, o, e) {
|
|
60
|
+
let r = 1, s = 0, l = [], a = [], d = o, c = /* @__PURE__ */ new Map(), T = /* @__PURE__ */ new Set(), g = (i) => (T.add(i), () => T.delete(i)), v = () => {
|
|
61
|
+
a = Array.from(c.values()), T.forEach((i) => i());
|
|
62
|
+
}, x = ({ containerId: i, toastId: n, updateId: u }) => {
|
|
63
|
+
let h = i ? i !== t : t !== 1, m = c.has(n) && u == null;
|
|
64
|
+
return h || m;
|
|
65
|
+
}, C = (i, n) => {
|
|
66
|
+
c.forEach((u) => {
|
|
67
|
+
var h;
|
|
68
|
+
(n == null || n === u.props.toastId) && ((h = u.toggle) == null || h.call(u, i));
|
|
69
|
+
});
|
|
70
|
+
}, S = (i) => {
|
|
71
|
+
var n, u;
|
|
72
|
+
(u = (n = i.props) == null ? void 0 : n.onClose) == null || u.call(n, i.removalReason), i.isActive = false;
|
|
73
|
+
}, E = (i) => {
|
|
74
|
+
if (i == null) c.forEach(S);
|
|
57
75
|
else {
|
|
58
|
-
let
|
|
59
|
-
|
|
76
|
+
let n = c.get(i);
|
|
77
|
+
n && S(n);
|
|
60
78
|
}
|
|
61
|
-
|
|
62
|
-
},
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
79
|
+
v();
|
|
80
|
+
}, f = () => {
|
|
81
|
+
s -= l.length, l = [];
|
|
82
|
+
}, p = (i) => {
|
|
83
|
+
var m, _;
|
|
84
|
+
let { toastId: n, updateId: u } = i.props, h = u == null;
|
|
85
|
+
i.staleId && c.delete(i.staleId), i.isActive = true, c.set(n, i), v(), e(J(i, h ? "added" : "updated")), h && ((_ = (m = i.props).onOpen) == null || _.call(m));
|
|
66
86
|
};
|
|
67
|
-
return { id: t, props:
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
n -= l.length, l = [];
|
|
74
|
-
}, buildToast: (c, o) => {
|
|
75
|
-
if ((({ containerId: m, toastId: L, updateId: U }) => {
|
|
76
|
-
let P = m ? m !== t : t !== 1, F = p.has(L) && U == null;
|
|
77
|
-
return P || F;
|
|
78
|
-
})(o)) return;
|
|
79
|
-
let { toastId: i, updateId: s, data: d, staleId: T, delay: k } = o, w = s == null;
|
|
80
|
-
w && n++;
|
|
81
|
-
let C = { ...y, style: y.toastStyle, key: f++, ...Object.fromEntries(Object.entries(o).filter(([m, L]) => L != null)), toastId: i, updateId: s, data: d, isIn: !1, className: Q(o.className || y.toastClassName), progressClassName: Q(o.progressClassName || y.progressClassName), autoClose: !o.isLoading && ut(o.autoClose, y.autoClose), closeToast(m) {
|
|
82
|
-
p.get(i).removalReason = m, h(i);
|
|
87
|
+
return { id: t, props: d, observe: g, toggle: C, removeToast: E, toasts: c, clearQueue: f, buildToast: (i, n) => {
|
|
88
|
+
if (x(n)) return;
|
|
89
|
+
let { toastId: u, updateId: h, data: m, staleId: _, delay: k } = n, M = h == null;
|
|
90
|
+
M && s++;
|
|
91
|
+
let A = { ...d, style: d.toastStyle, key: r++, ...Object.fromEntries(Object.entries(n).filter(([D, Y]) => Y != null)), toastId: u, updateId: h, data: m, isIn: false, className: B(n.className || d.toastClassName), progressClassName: B(n.progressClassName || d.progressClassName), autoClose: n.isLoading ? false : pt(n.autoClose, d.autoClose), closeToast(D) {
|
|
92
|
+
c.get(u).removalReason = D, E(u);
|
|
83
93
|
}, deleteToast() {
|
|
84
|
-
let
|
|
85
|
-
if (
|
|
86
|
-
if (e(
|
|
87
|
-
|
|
94
|
+
let D = c.get(u);
|
|
95
|
+
if (D != null) {
|
|
96
|
+
if (e(J(D, "removed")), c.delete(u), s--, s < 0 && (s = 0), l.length > 0) {
|
|
97
|
+
p(l.shift());
|
|
98
|
+
return;
|
|
99
|
+
}
|
|
100
|
+
v();
|
|
88
101
|
}
|
|
89
102
|
} };
|
|
90
|
-
|
|
91
|
-
let
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
}, k) :
|
|
95
|
-
}, setProps(
|
|
96
|
-
|
|
97
|
-
}, setToggle: (
|
|
98
|
-
let
|
|
99
|
-
|
|
100
|
-
}, isToastActive: (
|
|
101
|
-
var
|
|
102
|
-
return (
|
|
103
|
-
}, getSnapshot: () =>
|
|
104
|
-
}
|
|
105
|
-
var I = /* @__PURE__ */ new Map(),
|
|
106
|
-
function
|
|
103
|
+
A.closeButton = d.closeButton, n.closeButton === false || z(n.closeButton) ? A.closeButton = n.closeButton : n.closeButton === true && (A.closeButton = z(d.closeButton) ? d.closeButton : true);
|
|
104
|
+
let R = { content: i, props: A, staleId: _ };
|
|
105
|
+
d.limit && d.limit > 0 && s > d.limit && M ? l.push(R) : L(k) ? setTimeout(() => {
|
|
106
|
+
p(R);
|
|
107
|
+
}, k) : p(R);
|
|
108
|
+
}, setProps(i) {
|
|
109
|
+
d = i;
|
|
110
|
+
}, setToggle: (i, n) => {
|
|
111
|
+
let u = c.get(i);
|
|
112
|
+
u && (u.toggle = n);
|
|
113
|
+
}, isToastActive: (i) => {
|
|
114
|
+
var n;
|
|
115
|
+
return (n = c.get(i)) == null ? void 0 : n.isActive;
|
|
116
|
+
}, getSnapshot: () => a };
|
|
117
|
+
}
|
|
118
|
+
var I = /* @__PURE__ */ new Map(), F = [], st = /* @__PURE__ */ new Set(), Vt = (t) => st.forEach((o) => o(t)), bt = () => I.size > 0;
|
|
119
|
+
function Qt() {
|
|
120
|
+
F.forEach((t) => nt(t.content, t.options)), F = [];
|
|
121
|
+
}
|
|
122
|
+
var vt = (t, { containerId: o }) => {
|
|
107
123
|
var e;
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
124
|
+
return (e = I.get(o || 1)) == null ? void 0 : e.toasts.get(t);
|
|
125
|
+
};
|
|
126
|
+
function X(t, o) {
|
|
127
|
+
var r;
|
|
128
|
+
if (o) return !!((r = I.get(o)) != null && r.isToastActive(t));
|
|
129
|
+
let e = false;
|
|
130
|
+
return I.forEach((s) => {
|
|
131
|
+
s.isToastActive(t) && (e = true);
|
|
132
|
+
}), e;
|
|
113
133
|
}
|
|
114
|
-
function
|
|
115
|
-
if (
|
|
116
|
-
|
|
117
|
-
|
|
134
|
+
function ht(t) {
|
|
135
|
+
if (!bt()) {
|
|
136
|
+
F = F.filter((o) => t != null && o.options.toastId !== t);
|
|
137
|
+
return;
|
|
138
|
+
}
|
|
139
|
+
if (t == null || mt(t)) I.forEach((o) => {
|
|
140
|
+
o.removeToast(t);
|
|
141
|
+
});
|
|
142
|
+
else if (t && ("containerId" in t || "id" in t)) {
|
|
143
|
+
let o = I.get(t.containerId);
|
|
144
|
+
o ? o.removeToast(t.id) : I.forEach((e) => {
|
|
145
|
+
e.removeToast(t.id);
|
|
118
146
|
});
|
|
119
|
-
|
|
120
|
-
let a = I.get(t.containerId);
|
|
121
|
-
a ? a.removeToast(t.id) : I.forEach((e) => {
|
|
122
|
-
e.removeToast(t.id);
|
|
123
|
-
});
|
|
124
|
-
}
|
|
125
|
-
} else A = A.filter((a) => t != null && a.options.toastId !== t);
|
|
147
|
+
}
|
|
126
148
|
}
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
149
|
+
var Ct = (t = {}) => {
|
|
150
|
+
I.forEach((o) => {
|
|
151
|
+
o.props.limit && (!t.containerId || o.id === t.containerId) && o.clearQueue();
|
|
152
|
+
});
|
|
153
|
+
};
|
|
154
|
+
function nt(t, o) {
|
|
155
|
+
z(t) && (bt() || F.push({ content: t, options: o }), I.forEach((e) => {
|
|
156
|
+
e.buildToast(t, o);
|
|
130
157
|
}));
|
|
131
158
|
}
|
|
132
|
-
function
|
|
159
|
+
function xt(t) {
|
|
160
|
+
var o;
|
|
161
|
+
(o = I.get(t.containerId || 1)) == null || o.setToggle(t.id, t.fn);
|
|
162
|
+
}
|
|
163
|
+
function rt(t, o) {
|
|
133
164
|
I.forEach((e) => {
|
|
134
|
-
(
|
|
165
|
+
(o == null || !(o != null && o.containerId) || (o == null ? void 0 : o.containerId) === e.id) && e.toggle(t, o == null ? void 0 : o.id);
|
|
135
166
|
});
|
|
136
167
|
}
|
|
137
|
-
function
|
|
138
|
-
let
|
|
168
|
+
function Et(t) {
|
|
169
|
+
let o = t.containerId || 1;
|
|
139
170
|
return { subscribe(e) {
|
|
140
|
-
let
|
|
141
|
-
I.set(
|
|
142
|
-
let
|
|
143
|
-
return
|
|
144
|
-
|
|
171
|
+
let r = _t(o, t, Vt);
|
|
172
|
+
I.set(o, r);
|
|
173
|
+
let s = r.observe(e);
|
|
174
|
+
return Qt(), () => {
|
|
175
|
+
s(), I.delete(o);
|
|
145
176
|
};
|
|
146
177
|
}, setProps(e) {
|
|
147
|
-
var
|
|
148
|
-
(
|
|
178
|
+
var r;
|
|
179
|
+
(r = I.get(o)) == null || r.setProps(e);
|
|
149
180
|
}, getSnapshot() {
|
|
150
181
|
var e;
|
|
151
|
-
return (e = I.get(
|
|
182
|
+
return (e = I.get(o)) == null ? void 0 : e.getSnapshot();
|
|
152
183
|
} };
|
|
153
184
|
}
|
|
154
|
-
function
|
|
155
|
-
return
|
|
185
|
+
function Pt(t) {
|
|
186
|
+
return st.add(t), () => {
|
|
187
|
+
st.delete(t);
|
|
188
|
+
};
|
|
189
|
+
}
|
|
190
|
+
function Wt(t) {
|
|
191
|
+
return t && (N(t.toastId) || L(t.toastId)) ? t.toastId : at();
|
|
192
|
+
}
|
|
193
|
+
function U(t, o) {
|
|
194
|
+
return nt(t, o), o.toastId;
|
|
156
195
|
}
|
|
157
|
-
function
|
|
158
|
-
return
|
|
196
|
+
function V(t, o) {
|
|
197
|
+
return { ...o, type: o && o.type || t, toastId: Wt(o) };
|
|
159
198
|
}
|
|
160
|
-
function
|
|
161
|
-
return
|
|
199
|
+
function Q(t) {
|
|
200
|
+
return (o, e) => U(o, V(t, e));
|
|
162
201
|
}
|
|
163
|
-
function
|
|
164
|
-
return (
|
|
202
|
+
function y(t, o) {
|
|
203
|
+
return U(t, V("default", o));
|
|
165
204
|
}
|
|
166
|
-
|
|
167
|
-
|
|
205
|
+
y.loading = (t, o) => U(t, V("default", { isLoading: true, autoClose: false, closeOnClick: false, closeButton: false, draggable: false, ...o }));
|
|
206
|
+
function Gt(t, { pending: o, error: e, success: r }, s) {
|
|
207
|
+
let l;
|
|
208
|
+
o && (l = N(o) ? y.loading(o, s) : y.loading(o.render, { ...s, ...o }));
|
|
209
|
+
let a = { isLoading: null, autoClose: null, closeOnClick: null, closeButton: null, draggable: null }, d = (T, g, v) => {
|
|
210
|
+
if (g == null) {
|
|
211
|
+
y.dismiss(l);
|
|
212
|
+
return;
|
|
213
|
+
}
|
|
214
|
+
let x = { type: T, ...a, ...s, data: v }, C = N(g) ? { render: g } : g;
|
|
215
|
+
return l ? y.update(l, { ...x, ...C }) : y(C.render, { ...x, ...C }), v;
|
|
216
|
+
}, c = P(t) ? t() : t;
|
|
217
|
+
return c.then((T) => d("success", r, T)).catch((T) => d("error", e, T)), c;
|
|
168
218
|
}
|
|
219
|
+
y.promise = Gt;
|
|
220
|
+
y.success = Q("success");
|
|
221
|
+
y.info = Q("info");
|
|
222
|
+
y.error = Q("error");
|
|
223
|
+
y.warning = Q("warning");
|
|
224
|
+
y.warn = y.warning;
|
|
225
|
+
y.dark = (t, o) => U(t, V("default", { theme: "dark", ...o }));
|
|
226
|
+
function qt(t) {
|
|
227
|
+
ht(t);
|
|
228
|
+
}
|
|
229
|
+
y.dismiss = qt;
|
|
230
|
+
y.clearWaitingQueue = Ct;
|
|
231
|
+
y.isActive = X;
|
|
232
|
+
y.update = (t, o = {}) => {
|
|
233
|
+
let e = vt(t, o);
|
|
234
|
+
if (e) {
|
|
235
|
+
let { props: r, content: s } = e, l = { delay: 100, ...r, ...o, toastId: o.toastId || t, updateId: at() };
|
|
236
|
+
l.toastId !== t && (l.staleId = t);
|
|
237
|
+
let a = l.render || s;
|
|
238
|
+
delete l.render, U(a, l);
|
|
239
|
+
}
|
|
240
|
+
};
|
|
241
|
+
y.done = (t) => {
|
|
242
|
+
y.update(t, { progress: 1 });
|
|
243
|
+
};
|
|
244
|
+
y.onChange = Pt;
|
|
245
|
+
y.play = (t) => rt(true, t);
|
|
246
|
+
y.pause = (t) => rt(false, t);
|
|
169
247
|
function It(t) {
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
248
|
+
var a;
|
|
249
|
+
let { subscribe: o, getSnapshot: e, setProps: r } = useRef(Et(t)).current;
|
|
250
|
+
r(t);
|
|
251
|
+
let s = (a = useSyncExternalStore(o, e, e)) == null ? void 0 : a.slice();
|
|
252
|
+
function l(d) {
|
|
253
|
+
if (!s) return [];
|
|
254
|
+
let c = /* @__PURE__ */ new Map();
|
|
255
|
+
return t.newestOnTop && s.reverse(), s.forEach((T) => {
|
|
256
|
+
let { position: g } = T.props;
|
|
257
|
+
c.has(g) || c.set(g, []), c.get(g).push(T);
|
|
258
|
+
}), Array.from(c, (T) => d(T[0], T[1]));
|
|
259
|
+
}
|
|
260
|
+
return { getToastToRender: l, isToastActive: X, count: s == null ? void 0 : s.length };
|
|
261
|
+
}
|
|
262
|
+
function At(t) {
|
|
263
|
+
let [o, e] = useState(false), [r, s] = useState(false), l = useRef(null), a = useRef({ start: 0, delta: 0, removalDistance: 0, canCloseOnClick: true, canDrag: false, didMove: false }).current, { autoClose: d, pauseOnHover: c, closeToast: T, onClick: g, closeOnClick: v } = t;
|
|
264
|
+
xt({ id: t.toastId, containerId: t.containerId, fn: e }), useEffect(() => {
|
|
265
|
+
if (t.pauseOnFocusLoss) return x(), () => {
|
|
266
|
+
C();
|
|
267
|
+
};
|
|
268
|
+
}, [t.pauseOnFocusLoss]);
|
|
269
|
+
function x() {
|
|
270
|
+
document.hasFocus() || p(), window.addEventListener("focus", f), window.addEventListener("blur", p);
|
|
173
271
|
}
|
|
174
|
-
function
|
|
175
|
-
|
|
272
|
+
function C() {
|
|
273
|
+
window.removeEventListener("focus", f), window.removeEventListener("blur", p);
|
|
176
274
|
}
|
|
177
|
-
function
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
d.style.transform = `translate3d(${T},0)`, d.style.opacity = "" + (1 - Math.abs(r.delta / r.removalDistance));
|
|
275
|
+
function S(m) {
|
|
276
|
+
if (t.draggable === true || t.draggable === m.pointerType) {
|
|
277
|
+
b();
|
|
278
|
+
let _ = l.current;
|
|
279
|
+
a.canCloseOnClick = true, a.canDrag = true, _.style.transition = "none", t.draggableDirection === "x" ? (a.start = m.clientX, a.removalDistance = _.offsetWidth * (t.draggablePercent / 100)) : (a.start = m.clientY, a.removalDistance = _.offsetHeight * (t.draggablePercent === 80 ? t.draggablePercent * 1.5 : t.draggablePercent) / 100);
|
|
183
280
|
}
|
|
184
281
|
}
|
|
185
|
-
function
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
282
|
+
function E(m) {
|
|
283
|
+
let { top: _, bottom: k, left: M, right: A } = l.current.getBoundingClientRect();
|
|
284
|
+
m.nativeEvent.type !== "touchend" && t.pauseOnHover && m.clientX >= M && m.clientX <= A && m.clientY >= _ && m.clientY <= k ? p() : f();
|
|
285
|
+
}
|
|
286
|
+
function f() {
|
|
287
|
+
e(true);
|
|
288
|
+
}
|
|
289
|
+
function p() {
|
|
290
|
+
e(false);
|
|
291
|
+
}
|
|
292
|
+
function b() {
|
|
293
|
+
a.didMove = false, document.addEventListener("pointermove", n), document.addEventListener("pointerup", u);
|
|
294
|
+
}
|
|
295
|
+
function i() {
|
|
296
|
+
document.removeEventListener("pointermove", n), document.removeEventListener("pointerup", u);
|
|
297
|
+
}
|
|
298
|
+
function n(m) {
|
|
299
|
+
let _ = l.current;
|
|
300
|
+
if (a.canDrag && _) {
|
|
301
|
+
a.didMove = true, o && p(), t.draggableDirection === "x" ? a.delta = m.clientX - a.start : a.delta = m.clientY - a.start, a.start !== m.clientX && (a.canCloseOnClick = false);
|
|
302
|
+
let k = t.draggableDirection === "x" ? `${a.delta}px, var(--y)` : `0, calc(${a.delta}px + var(--y))`;
|
|
303
|
+
_.style.transform = `translate3d(${k},0)`, _.style.opacity = `${1 - Math.abs(a.delta / a.removalDistance)}`;
|
|
191
304
|
}
|
|
192
305
|
}
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
if (t.draggable === !0 || t.draggable === s.pointerType) {
|
|
203
|
-
r.didMove = !1, document.addEventListener("pointermove", c), document.addEventListener("pointerup", o);
|
|
204
|
-
let d = l.current;
|
|
205
|
-
r.canCloseOnClick = !0, r.canDrag = !0, d.style.transition = "none", t.draggableDirection === "x" ? (r.start = s.clientX, r.removalDistance = d.offsetWidth * (t.draggablePercent / 100)) : (r.start = s.clientY, r.removalDistance = d.offsetHeight * (t.draggablePercent === 80 ? 1.5 * t.draggablePercent : t.draggablePercent) / 100);
|
|
306
|
+
function u() {
|
|
307
|
+
i();
|
|
308
|
+
let m = l.current;
|
|
309
|
+
if (a.canDrag && a.didMove && m) {
|
|
310
|
+
if (a.canDrag = false, Math.abs(a.delta) > a.removalDistance) {
|
|
311
|
+
s(true), t.closeToast(true), t.collapseAll();
|
|
312
|
+
return;
|
|
313
|
+
}
|
|
314
|
+
m.style.transition = "transform 0.2s, opacity 0.2s", m.style.removeProperty("transform"), m.style.removeProperty("opacity");
|
|
206
315
|
}
|
|
207
|
-
}, onPointerUp: function(s) {
|
|
208
|
-
let { top: d, bottom: T, left: k, right: w } = l.current.getBoundingClientRect();
|
|
209
|
-
s.nativeEvent.type !== "touchend" && t.pauseOnHover && s.clientX >= k && s.clientX <= w && s.clientY >= d && s.clientY <= T ? g() : h();
|
|
210
|
-
} };
|
|
211
|
-
return y && p && (i.onMouseEnter = g, t.stacked || (i.onMouseLeave = h)), x && (i.onClick = (s) => {
|
|
212
|
-
_ && _(s), r.canCloseOnClick && b(!0);
|
|
213
|
-
}), { playToast: h, pauseToast: g, isRunning: a, preventExitTransition: f, toastRef: l, eventHandlers: i };
|
|
214
|
-
}
|
|
215
|
-
u.loading = (t, a) => $(t, S("default", { isLoading: !0, autoClose: !1, closeOnClick: !1, closeButton: !1, draggable: !1, ...a })), u.promise = function(t, { pending: a, error: e, success: f }, n) {
|
|
216
|
-
let l;
|
|
217
|
-
a && (l = N(a) ? u.loading(a, n) : u.loading(a.render, { ...n, ...a }));
|
|
218
|
-
let r = { isLoading: null, autoClose: null, closeOnClick: null, closeButton: null, draggable: null }, y = (b, _, x) => {
|
|
219
|
-
if (_ == null) return void u.dismiss(l);
|
|
220
|
-
let h = { type: b, ...r, ...n, data: x }, g = N(_) ? { render: _ } : _;
|
|
221
|
-
return l ? u.update(l, { ...h, ...g }) : u(g.render, { ...h, ...g }), x;
|
|
222
|
-
}, p = O(t) ? t() : t;
|
|
223
|
-
return p.then((b) => y("success", f, b)).catch((b) => y("error", e, b)), p;
|
|
224
|
-
}, u.success = B("success"), u.info = B("info"), u.error = B("error"), u.warning = B("warning"), u.warn = u.warning, u.dark = (t, a) => $(t, S("default", { theme: "dark", ...a })), u.dismiss = function(t) {
|
|
225
|
-
xt(t);
|
|
226
|
-
}, u.clearWaitingQueue = (t = {}) => {
|
|
227
|
-
I.forEach((a) => {
|
|
228
|
-
a.props.limit && (!t.containerId || a.id === t.containerId) && a.clearQueue();
|
|
229
|
-
});
|
|
230
|
-
}, u.isActive = nt, u.update = (t, a = {}) => {
|
|
231
|
-
let e = ((f, { containerId: n }) => {
|
|
232
|
-
var l;
|
|
233
|
-
return (l = I.get(n || 1)) == null ? void 0 : l.toasts.get(f);
|
|
234
|
-
})(t, a);
|
|
235
|
-
if (e) {
|
|
236
|
-
let { props: f, content: n } = e, l = { delay: 100, ...f, ...a, toastId: a.toastId || t, updateId: rt() };
|
|
237
|
-
l.toastId !== t && (l.staleId = t);
|
|
238
|
-
let r = l.render || n;
|
|
239
|
-
delete l.render, $(r, l);
|
|
240
316
|
}
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
return
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
},
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
return
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
} };
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
return
|
|
262
|
-
}
|
|
263
|
-
var
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
}(
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
let E = /* @__PURE__ */ new Map();
|
|
280
|
-
return i.newestOnTop && w.reverse(), w.forEach((m) => {
|
|
281
|
-
let { position: L } = m.props;
|
|
282
|
-
E.has(L) || E.set(L, []), E.get(L).push(m);
|
|
283
|
-
}), Array.from(E, (m) => C(m[0], m[1]));
|
|
284
|
-
}, isToastActive: nt, count: w == null ? void 0 : w.length };
|
|
285
|
-
}(a), { className: b, style: _, rtl: x, containerId: h, hotKeys: g } = a;
|
|
286
|
-
function c(i) {
|
|
287
|
-
let s = z("Toastify__toast-container", `Toastify__toast-container--${i}`, { "Toastify__toast-container--rtl": x });
|
|
288
|
-
return O(b) ? b({ position: i, rtl: x, defaultClassName: s }) : z(s, Q(b));
|
|
317
|
+
let h = { onPointerDown: S, onPointerUp: E };
|
|
318
|
+
return d && c && (h.onMouseEnter = p, t.stacked || (h.onMouseLeave = f)), v && (h.onClick = (m) => {
|
|
319
|
+
g && g(m), a.canCloseOnClick && T(true);
|
|
320
|
+
}), { playToast: f, pauseToast: p, isRunning: o, preventExitTransition: r, toastRef: l, eventHandlers: h };
|
|
321
|
+
}
|
|
322
|
+
var Ot = typeof window != "undefined" ? useLayoutEffect : useEffect;
|
|
323
|
+
var G = ({ theme: t, type: o, isLoading: e, ...r }) => React__default.createElement("svg", { viewBox: "0 0 24 24", width: "100%", height: "100%", fill: t === "colored" ? "currentColor" : `var(--toastify-icon-color-${o})`, ...r });
|
|
324
|
+
function ao(t) {
|
|
325
|
+
return React__default.createElement(G, { ...t }, React__default.createElement("path", { d: "M23.32 17.191L15.438 2.184C14.728.833 13.416 0 11.996 0c-1.42 0-2.733.833-3.443 2.184L.533 17.448a4.744 4.744 0 000 4.368C1.243 23.167 2.555 24 3.975 24h16.05C22.22 24 24 22.044 24 19.632c0-.904-.251-1.746-.68-2.44zm-9.622 1.46c0 1.033-.724 1.823-1.698 1.823s-1.698-.79-1.698-1.822v-.043c0-1.028.724-1.822 1.698-1.822s1.698.79 1.698 1.822v.043zm.039-12.285l-.84 8.06c-.057.581-.408.943-.897.943-.49 0-.84-.367-.896-.942l-.84-8.065c-.057-.624.25-1.095.779-1.095h1.91c.528.005.84.476.784 1.1z" }));
|
|
326
|
+
}
|
|
327
|
+
function so(t) {
|
|
328
|
+
return React__default.createElement(G, { ...t }, React__default.createElement("path", { d: "M12 0a12 12 0 1012 12A12.013 12.013 0 0012 0zm.25 5a1.5 1.5 0 11-1.5 1.5 1.5 1.5 0 011.5-1.5zm2.25 13.5h-4a1 1 0 010-2h.75a.25.25 0 00.25-.25v-4.5a.25.25 0 00-.25-.25h-.75a1 1 0 010-2h1a2 2 0 012 2v4.75a.25.25 0 00.25.25h.75a1 1 0 110 2z" }));
|
|
329
|
+
}
|
|
330
|
+
function no(t) {
|
|
331
|
+
return React__default.createElement(G, { ...t }, React__default.createElement("path", { d: "M12 0a12 12 0 1012 12A12.014 12.014 0 0012 0zm6.927 8.2l-6.845 9.289a1.011 1.011 0 01-1.43.188l-4.888-3.908a1 1 0 111.25-1.562l4.076 3.261 6.227-8.451a1 1 0 111.61 1.183z" }));
|
|
332
|
+
}
|
|
333
|
+
function ro(t) {
|
|
334
|
+
return React__default.createElement(G, { ...t }, React__default.createElement("path", { d: "M11.983 0a12.206 12.206 0 00-8.51 3.653A11.8 11.8 0 000 12.207 11.779 11.779 0 0011.8 24h.214A12.111 12.111 0 0024 11.791 11.766 11.766 0 0011.983 0zM10.5 16.542a1.476 1.476 0 011.449-1.53h.027a1.527 1.527 0 011.523 1.47 1.475 1.475 0 01-1.449 1.53h-.027a1.529 1.529 0 01-1.523-1.47zM11 12.5v-6a1 1 0 012 0v6a1 1 0 11-2 0z" }));
|
|
335
|
+
}
|
|
336
|
+
function io() {
|
|
337
|
+
return React__default.createElement("div", { className: "Toastify__spinner" });
|
|
338
|
+
}
|
|
339
|
+
var W = { info: so, warning: ao, success: no, error: ro, spinner: io }, lo = (t) => t in W;
|
|
340
|
+
function Nt({ theme: t, type: o, isLoading: e, icon: r }) {
|
|
341
|
+
let s = null, l = { theme: t, type: o };
|
|
342
|
+
return r === false || (P(r) ? s = r({ ...l, isLoading: e }) : isValidElement(r) ? s = cloneElement(r, l) : e ? s = W.spinner() : lo(o) && (s = W[o](l))), s;
|
|
343
|
+
}
|
|
344
|
+
var wt = (t) => {
|
|
345
|
+
let { isRunning: o, preventExitTransition: e, toastRef: r, eventHandlers: s, playToast: l } = At(t), { closeButton: a, children: d, autoClose: c, onClick: T, type: g, hideProgressBar: v, closeToast: x, transition: C, position: S, className: E, style: f, progressClassName: p, updateId: b, role: i, progress: n, rtl: u, toastId: h, deleteToast: m, isIn: _, isLoading: k, closeOnClick: M, theme: A, ariaLabel: R } = t, D = clsx("Toastify__toast", `Toastify__toast-theme--${A}`, `Toastify__toast--${g}`, { ["Toastify__toast--rtl"]: u }, { ["Toastify__toast--close-on-click"]: M }), Y = P(E) ? E({ rtl: u, position: S, type: g, defaultClassName: D }) : clsx(D, E), ft = Nt(t), dt = !!n || !c, j = { closeToast: x, type: g, theme: A }, H = null;
|
|
346
|
+
return a === false || (P(a) ? H = a(j) : isValidElement(a) ? H = cloneElement(a, j) : H = yt(j)), React__default.createElement(C, { isIn: _, done: m, position: S, preventExitTransition: e, nodeRef: r, playToast: l }, React__default.createElement("div", { id: h, tabIndex: 0, onClick: T, "data-in": _, className: Y, ...s, style: f, ref: r, ..._ && { role: i, "aria-label": R } }, ft != null && React__default.createElement("div", { className: clsx("Toastify__toast-icon", { ["Toastify--animate-icon Toastify__zoom-enter"]: !k }) }, ft), tt(d, t, !o), H, !t.customProgressBar && React__default.createElement(gt, { ...b && !dt ? { key: `p-${b}` } : {}, rtl: u, theme: A, delay: c, isRunning: o, isIn: _, closeToast: x, hide: v, type: g, className: p, controlledProgress: dt, progress: n || 0 })));
|
|
347
|
+
};
|
|
348
|
+
var K = (t, o = false) => ({ enter: `Toastify--animate Toastify__${t}-enter`, exit: `Toastify--animate Toastify__${t}-exit`, appendPosition: o }), lt = $(K("bounce", true));
|
|
349
|
+
var _o = { position: "top-right", transition: lt, autoClose: 5e3, closeButton: true, pauseOnHover: true, pauseOnFocusLoss: true, draggable: "touch", draggablePercent: 80, draggableDirection: "x", role: "alert", theme: "light", "aria-label": "Notifications Alt+T", hotKeys: (t) => t.altKey && t.code === "KeyT" };
|
|
350
|
+
function Lt(t) {
|
|
351
|
+
let o = { ..._o, ...t }, e = t.stacked, [r, s] = useState(true), l = useRef(null), { getToastToRender: a, isToastActive: d, count: c } = It(o), { className: T, style: g, rtl: v, containerId: x, hotKeys: C } = o;
|
|
352
|
+
function S(f) {
|
|
353
|
+
let p = clsx("Toastify__toast-container", `Toastify__toast-container--${f}`, { ["Toastify__toast-container--rtl"]: v });
|
|
354
|
+
return P(T) ? T({ position: f, rtl: v, defaultClassName: p }) : clsx(p, B(T));
|
|
289
355
|
}
|
|
290
|
-
function
|
|
291
|
-
e && (
|
|
356
|
+
function E() {
|
|
357
|
+
e && (s(true), y.play());
|
|
292
358
|
}
|
|
293
|
-
return
|
|
294
|
-
var
|
|
359
|
+
return Ot(() => {
|
|
360
|
+
var f;
|
|
295
361
|
if (e) {
|
|
296
|
-
let
|
|
297
|
-
Array.from(
|
|
298
|
-
let
|
|
299
|
-
|
|
300
|
-
let
|
|
301
|
-
|
|
362
|
+
let p = l.current.querySelectorAll('[data-in="true"]'), b = 12, i = (f = o.position) == null ? void 0 : f.includes("top"), n = 0, u = 0;
|
|
363
|
+
Array.from(p).reverse().forEach((h, m) => {
|
|
364
|
+
let _ = h;
|
|
365
|
+
_.classList.add("Toastify__toast--stacked"), m > 0 && (_.dataset.collapsed = `${r}`), _.dataset.pos || (_.dataset.pos = i ? "top" : "bot");
|
|
366
|
+
let k = n * (r ? 0.2 : 1) + (r ? 0 : b * m);
|
|
367
|
+
_.style.setProperty("--y", `${i ? k : k * -1}px`), _.style.setProperty("--g", `${b}`), _.style.setProperty("--s", `${1 - (r ? u : 0)}`), n += _.offsetHeight, u += 0.025;
|
|
302
368
|
});
|
|
303
369
|
}
|
|
304
|
-
}, [
|
|
305
|
-
function
|
|
306
|
-
var
|
|
307
|
-
let
|
|
308
|
-
|
|
370
|
+
}, [r, c, e]), useEffect(() => {
|
|
371
|
+
function f(p) {
|
|
372
|
+
var i;
|
|
373
|
+
let b = l.current;
|
|
374
|
+
C(p) && ((i = b.querySelector('[tabIndex="0"]')) == null || i.focus(), s(false), y.pause()), p.key === "Escape" && (document.activeElement === b || b != null && b.contains(document.activeElement)) && (s(true), y.play());
|
|
309
375
|
}
|
|
310
|
-
return document.addEventListener("keydown",
|
|
311
|
-
document.removeEventListener("keydown",
|
|
376
|
+
return document.addEventListener("keydown", f), () => {
|
|
377
|
+
document.removeEventListener("keydown", f);
|
|
312
378
|
};
|
|
313
|
-
}, [
|
|
314
|
-
e && (
|
|
315
|
-
}, onMouseLeave:
|
|
316
|
-
let
|
|
317
|
-
return
|
|
379
|
+
}, [C]), React__default.createElement("section", { ref: l, className: "Toastify", id: x, onMouseEnter: () => {
|
|
380
|
+
e && (s(false), y.pause());
|
|
381
|
+
}, onMouseLeave: E, "aria-live": "polite", "aria-atomic": "false", "aria-relevant": "additions text", "aria-label": o["aria-label"] }, a((f, p) => {
|
|
382
|
+
let b = p.length ? { ...g } : { ...g, pointerEvents: "none" };
|
|
383
|
+
return React__default.createElement("div", { tabIndex: -1, className: S(f), "data-stacked": e, style: b, key: `c-${f}` }, p.map(({ content: i, props: n }) => React__default.createElement(wt, { ...n, stacked: e, collapseAll: E, isIn: d(n.toastId, n.containerId), key: `t-${n.key}` }, i)));
|
|
318
384
|
}));
|
|
319
385
|
}
|
|
320
386
|
export {
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
387
|
+
lt as Bounce,
|
|
388
|
+
W as Icons,
|
|
389
|
+
Lt as ToastContainer,
|
|
390
|
+
Z as collapseToast,
|
|
391
|
+
$ as cssTransition,
|
|
392
|
+
y as toast
|
|
327
393
|
};
|