ezr-antd 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BUG_VERSIONS.json +66 -0
- package/LICENSE +22 -0
- package/README.md +182 -0
- package/es/_util/ActionButton.d.ts +19 -0
- package/es/_util/ActionButton.js +101 -0
- package/es/_util/ContextIsolator.d.ts +3 -0
- package/es/_util/ContextIsolator.js +27 -0
- package/es/_util/PurePanel.d.ts +9 -0
- package/es/_util/PurePanel.js +80 -0
- package/es/_util/aria-data-attrs.d.ts +4 -0
- package/es/_util/aria-data-attrs.js +1 -0
- package/es/_util/capitalize.d.ts +1 -0
- package/es/_util/capitalize.js +7 -0
- package/es/_util/colors.d.ts +13 -0
- package/es/_util/colors.js +18 -0
- package/es/_util/easings.d.ts +1 -0
- package/es/_util/easings.js +10 -0
- package/es/_util/extendsObject.d.ts +3 -0
- package/es/_util/extendsObject.js +16 -0
- package/es/_util/gapSize.d.ts +3 -0
- package/es/_util/gapSize.js +10 -0
- package/es/_util/getAllowClear.d.ts +4 -0
- package/es/_util/getAllowClear.js +16 -0
- package/es/_util/getRenderPropValue.d.ts +3 -0
- package/es/_util/getRenderPropValue.js +6 -0
- package/es/_util/getScroll.d.ts +3 -0
- package/es/_util/getScroll.js +30 -0
- package/es/_util/hooks/useClosable.d.ts +31 -0
- package/es/_util/hooks/useClosable.js +112 -0
- package/es/_util/hooks/useForceUpdate.d.ts +2 -0
- package/es/_util/hooks/useForceUpdate.js +5 -0
- package/es/_util/hooks/useMultipleSelect.d.ts +6 -0
- package/es/_util/hooks/useMultipleSelect.js +34 -0
- package/es/_util/hooks/usePatchElement.d.ts +5 -0
- package/es/_util/hooks/usePatchElement.js +15 -0
- package/es/_util/hooks/useProxyImperativeHandle.d.ts +4 -0
- package/es/_util/hooks/useProxyImperativeHandle.js +34 -0
- package/es/_util/hooks/useSyncState.d.ts +3 -0
- package/es/_util/hooks/useSyncState.js +11 -0
- package/es/_util/hooks/useUniqueMemo.d.ts +6 -0
- package/es/_util/hooks/useUniqueMemo.js +92 -0
- package/es/_util/hooks/useZIndex.d.ts +8 -0
- package/es/_util/hooks/useZIndex.js +64 -0
- package/es/_util/isNumeric.d.ts +2 -0
- package/es/_util/isNumeric.js +2 -0
- package/es/_util/motion.d.ts +7 -0
- package/es/_util/motion.js +41 -0
- package/es/_util/placements.d.ts +21 -0
- package/es/_util/placements.js +178 -0
- package/es/_util/reactNode.d.ts +7 -0
- package/es/_util/reactNode.js +13 -0
- package/es/_util/responsiveObserver.d.ts +22 -0
- package/es/_util/responsiveObserver.js +106 -0
- package/es/_util/scrollTo.d.ts +10 -0
- package/es/_util/scrollTo.js +31 -0
- package/es/_util/statusUtils.d.ts +6 -0
- package/es/_util/statusUtils.js +12 -0
- package/es/_util/styleChecker.d.ts +3 -0
- package/es/_util/styleChecker.js +4 -0
- package/es/_util/throttleByAnimationFrame.d.ts +5 -0
- package/es/_util/throttleByAnimationFrame.js +20 -0
- package/es/_util/toList.d.ts +1 -0
- package/es/_util/toList.js +4 -0
- package/es/_util/transKeys.d.ts +3 -0
- package/es/_util/transKeys.js +19 -0
- package/es/_util/type.d.ts +54 -0
- package/es/_util/type.js +1 -0
- package/es/_util/warning.d.ts +31 -0
- package/es/_util/warning.js +59 -0
- package/es/_util/wave/WaveEffect.d.ts +8 -0
- package/es/_util/wave/WaveEffect.js +129 -0
- package/es/_util/wave/index.d.ts +9 -0
- package/es/_util/wave/index.js +58 -0
- package/es/_util/wave/interface.d.ts +11 -0
- package/es/_util/wave/interface.js +2 -0
- package/es/_util/wave/style.d.ts +7 -0
- package/es/_util/wave/style.js +30 -0
- package/es/_util/wave/useWave.d.ts +4 -0
- package/es/_util/wave/useWave.js +41 -0
- package/es/_util/wave/util.d.ts +2 -0
- package/es/_util/wave/util.js +22 -0
- package/es/_util/zindexContext.d.ts +3 -0
- package/es/_util/zindexContext.js +6 -0
- package/es/affix/index.d.ts +22 -0
- package/es/affix/index.js +200 -0
- package/es/affix/style/index.d.ts +11 -0
- package/es/affix/style/index.js +18 -0
- package/es/affix/utils.d.ts +4 -0
- package/es/affix/utils.js +19 -0
- package/es/alert/Alert.d.ts +42 -0
- package/es/alert/Alert.js +216 -0
- package/es/alert/ErrorBoundary.d.ts +24 -0
- package/es/alert/ErrorBoundary.js +64 -0
- package/es/alert/index.d.ts +8 -0
- package/es/alert/index.js +7 -0
- package/es/alert/style/index.d.ts +26 -0
- package/es/alert/style/index.js +177 -0
- package/es/anchor/Anchor.d.ts +59 -0
- package/es/anchor/Anchor.js +240 -0
- package/es/anchor/AnchorLink.d.ts +14 -0
- package/es/anchor/AnchorLink.js +70 -0
- package/es/anchor/context.d.ts +4 -0
- package/es/anchor/context.js +3 -0
- package/es/anchor/index.d.ts +10 -0
- package/es/anchor/index.js +7 -0
- package/es/anchor/style/index.d.ts +16 -0
- package/es/anchor/style/index.js +142 -0
- package/es/app/context.d.ts +16 -0
- package/es/app/context.js +8 -0
- package/es/app/index.d.ts +16 -0
- package/es/app/index.js +64 -0
- package/es/app/style/index.d.ts +6 -0
- package/es/app/style/index.js +25 -0
- package/es/auto-complete/index.d.ts +28 -0
- package/es/auto-complete/index.js +102 -0
- package/es/avatar/AvatarContext.d.ts +9 -0
- package/es/avatar/AvatarContext.js +3 -0
- package/es/avatar/avatar.d.ts +26 -0
- package/es/avatar/avatar.js +174 -0
- package/es/avatar/group.d.ts +27 -0
- package/es/avatar/group.js +101 -0
- package/es/avatar/index.d.ts +10 -0
- package/es/avatar/index.js +8 -0
- package/es/avatar/style/index.d.ts +51 -0
- package/es/avatar/style/index.js +128 -0
- package/es/back-top/index.d.ts +14 -0
- package/es/back-top/index.js +93 -0
- package/es/back-top/style/index.d.ts +12 -0
- package/es/back-top/style/index.js +92 -0
- package/es/badge/Ribbon.d.ts +16 -0
- package/es/badge/Ribbon.js +52 -0
- package/es/badge/ScrollNumber.d.ts +18 -0
- package/es/badge/ScrollNumber.js +69 -0
- package/es/badge/SingleNumber.d.ts +14 -0
- package/es/badge/SingleNumber.js +102 -0
- package/es/badge/index.d.ts +41 -0
- package/es/badge/index.js +185 -0
- package/es/badge/style/index.d.ts +104 -0
- package/es/badge/style/index.js +326 -0
- package/es/badge/style/ribbon.d.ts +2 -0
- package/es/badge/style/ribbon.js +81 -0
- package/es/breadcrumb/Breadcrumb.d.ts +57 -0
- package/es/breadcrumb/Breadcrumb.js +151 -0
- package/es/breadcrumb/BreadcrumbItem.d.ts +31 -0
- package/es/breadcrumb/BreadcrumbItem.js +98 -0
- package/es/breadcrumb/BreadcrumbSeparator.d.ts +4 -0
- package/es/breadcrumb/BreadcrumbSeparator.js +18 -0
- package/es/breadcrumb/index.d.ts +4 -0
- package/es/breadcrumb/index.js +4 -0
- package/es/breadcrumb/style/index.d.ts +41 -0
- package/es/breadcrumb/style/index.js +95 -0
- package/es/breadcrumb/useItemRender.d.ts +8 -0
- package/es/breadcrumb/useItemRender.js +55 -0
- package/es/breadcrumb/useItems.d.ts +6 -0
- package/es/breadcrumb/useItems.js +44 -0
- package/es/button/IconWrapper.d.ts +9 -0
- package/es/button/IconWrapper.js +19 -0
- package/es/button/LoadingIcon.d.ts +10 -0
- package/es/button/LoadingIcon.js +74 -0
- package/es/button/button-group.d.ts +12 -0
- package/es/button/button-group.js +55 -0
- package/es/button/button.d.ts +44 -0
- package/es/button/button.js +235 -0
- package/es/button/buttonHelpers.d.ts +18 -0
- package/es/button/buttonHelpers.js +62 -0
- package/es/button/index.d.ts +6 -0
- package/es/button/index.js +5 -0
- package/es/button/style/compactCmp.d.ts +2 -0
- package/es/button/style/compactCmp.js +57 -0
- package/es/button/style/group.d.ts +4 -0
- package/es/button/style/group.js +66 -0
- package/es/button/style/index.d.ts +4 -0
- package/es/button/style/index.js +381 -0
- package/es/button/style/token.d.ts +233 -0
- package/es/button/style/token.js +70 -0
- package/es/calendar/Header.d.ts +17 -0
- package/es/calendar/Header.js +161 -0
- package/es/calendar/generateCalendar.d.ts +44 -0
- package/es/calendar/generateCalendar.js +204 -0
- package/es/calendar/index.d.ts +10 -0
- package/es/calendar/index.js +7 -0
- package/es/calendar/locale/ar_EG.d.ts +2 -0
- package/es/calendar/locale/ar_EG.js +2 -0
- package/es/calendar/locale/az_AZ.d.ts +2 -0
- package/es/calendar/locale/az_AZ.js +2 -0
- package/es/calendar/locale/bg_BG.d.ts +2 -0
- package/es/calendar/locale/bg_BG.js +2 -0
- package/es/calendar/locale/bn_BD.d.ts +2 -0
- package/es/calendar/locale/bn_BD.js +2 -0
- package/es/calendar/locale/by_BY.d.ts +2 -0
- package/es/calendar/locale/by_BY.js +2 -0
- package/es/calendar/locale/ca_ES.d.ts +2 -0
- package/es/calendar/locale/ca_ES.js +2 -0
- package/es/calendar/locale/cs_CZ.d.ts +2 -0
- package/es/calendar/locale/cs_CZ.js +2 -0
- package/es/calendar/locale/da_DK.d.ts +2 -0
- package/es/calendar/locale/da_DK.js +2 -0
- package/es/calendar/locale/de_DE.d.ts +2 -0
- package/es/calendar/locale/de_DE.js +2 -0
- package/es/calendar/locale/el_GR.d.ts +2 -0
- package/es/calendar/locale/el_GR.js +2 -0
- package/es/calendar/locale/en_GB.d.ts +2 -0
- package/es/calendar/locale/en_GB.js +2 -0
- package/es/calendar/locale/en_US.d.ts +2 -0
- package/es/calendar/locale/en_US.js +2 -0
- package/es/calendar/locale/es_ES.d.ts +2 -0
- package/es/calendar/locale/es_ES.js +2 -0
- package/es/calendar/locale/et_EE.d.ts +2 -0
- package/es/calendar/locale/et_EE.js +2 -0
- package/es/calendar/locale/eu_ES.d.ts +2 -0
- package/es/calendar/locale/eu_ES.js +2 -0
- package/es/calendar/locale/fa_IR.d.ts +2 -0
- package/es/calendar/locale/fa_IR.js +2 -0
- package/es/calendar/locale/fi_FI.d.ts +2 -0
- package/es/calendar/locale/fi_FI.js +2 -0
- package/es/calendar/locale/fr_BE.d.ts +2 -0
- package/es/calendar/locale/fr_BE.js +2 -0
- package/es/calendar/locale/fr_CA.d.ts +2 -0
- package/es/calendar/locale/fr_CA.js +2 -0
- package/es/calendar/locale/fr_FR.d.ts +2 -0
- package/es/calendar/locale/fr_FR.js +2 -0
- package/es/calendar/locale/ga_IE.d.ts +2 -0
- package/es/calendar/locale/ga_IE.js +2 -0
- package/es/calendar/locale/gl_ES.d.ts +2 -0
- package/es/calendar/locale/gl_ES.js +2 -0
- package/es/calendar/locale/he_IL.d.ts +2 -0
- package/es/calendar/locale/he_IL.js +2 -0
- package/es/calendar/locale/hi_IN.d.ts +2 -0
- package/es/calendar/locale/hi_IN.js +2 -0
- package/es/calendar/locale/hr_HR.d.ts +2 -0
- package/es/calendar/locale/hr_HR.js +2 -0
- package/es/calendar/locale/hu_HU.d.ts +2 -0
- package/es/calendar/locale/hu_HU.js +2 -0
- package/es/calendar/locale/id_ID.d.ts +2 -0
- package/es/calendar/locale/id_ID.js +2 -0
- package/es/calendar/locale/is_IS.d.ts +2 -0
- package/es/calendar/locale/is_IS.js +2 -0
- package/es/calendar/locale/it_IT.d.ts +2 -0
- package/es/calendar/locale/it_IT.js +2 -0
- package/es/calendar/locale/ja_JP.d.ts +2 -0
- package/es/calendar/locale/ja_JP.js +2 -0
- package/es/calendar/locale/ka_GE.d.ts +2 -0
- package/es/calendar/locale/ka_GE.js +2 -0
- package/es/calendar/locale/kk_KZ.d.ts +2 -0
- package/es/calendar/locale/kk_KZ.js +2 -0
- package/es/calendar/locale/km_KH.d.ts +2 -0
- package/es/calendar/locale/km_KH.js +2 -0
- package/es/calendar/locale/kmr_IQ.d.ts +2 -0
- package/es/calendar/locale/kmr_IQ.js +2 -0
- package/es/calendar/locale/kn_IN.d.ts +2 -0
- package/es/calendar/locale/kn_IN.js +2 -0
- package/es/calendar/locale/ko_KR.d.ts +2 -0
- package/es/calendar/locale/ko_KR.js +2 -0
- package/es/calendar/locale/lt_LT.d.ts +2 -0
- package/es/calendar/locale/lt_LT.js +2 -0
- package/es/calendar/locale/lv_LV.d.ts +2 -0
- package/es/calendar/locale/lv_LV.js +2 -0
- package/es/calendar/locale/mk_MK.d.ts +2 -0
- package/es/calendar/locale/mk_MK.js +2 -0
- package/es/calendar/locale/ml_IN.d.ts +2 -0
- package/es/calendar/locale/ml_IN.js +2 -0
- package/es/calendar/locale/mn_MN.d.ts +2 -0
- package/es/calendar/locale/mn_MN.js +2 -0
- package/es/calendar/locale/ms_MY.d.ts +2 -0
- package/es/calendar/locale/ms_MY.js +2 -0
- package/es/calendar/locale/my_MM.d.ts +2 -0
- package/es/calendar/locale/my_MM.js +2 -0
- package/es/calendar/locale/nb_NO.d.ts +2 -0
- package/es/calendar/locale/nb_NO.js +2 -0
- package/es/calendar/locale/nl_BE.d.ts +2 -0
- package/es/calendar/locale/nl_BE.js +2 -0
- package/es/calendar/locale/nl_NL.d.ts +2 -0
- package/es/calendar/locale/nl_NL.js +2 -0
- package/es/calendar/locale/pl_PL.d.ts +2 -0
- package/es/calendar/locale/pl_PL.js +2 -0
- package/es/calendar/locale/pt_BR.d.ts +2 -0
- package/es/calendar/locale/pt_BR.js +2 -0
- package/es/calendar/locale/pt_PT.d.ts +2 -0
- package/es/calendar/locale/pt_PT.js +2 -0
- package/es/calendar/locale/ro_RO.d.ts +2 -0
- package/es/calendar/locale/ro_RO.js +2 -0
- package/es/calendar/locale/ru_RU.d.ts +2 -0
- package/es/calendar/locale/ru_RU.js +2 -0
- package/es/calendar/locale/si_LK.d.ts +2 -0
- package/es/calendar/locale/si_LK.js +2 -0
- package/es/calendar/locale/sk_SK.d.ts +2 -0
- package/es/calendar/locale/sk_SK.js +2 -0
- package/es/calendar/locale/sl_SI.d.ts +2 -0
- package/es/calendar/locale/sl_SI.js +2 -0
- package/es/calendar/locale/sr_RS.d.ts +2 -0
- package/es/calendar/locale/sr_RS.js +2 -0
- package/es/calendar/locale/sv_SE.d.ts +2 -0
- package/es/calendar/locale/sv_SE.js +2 -0
- package/es/calendar/locale/ta_IN.d.ts +2 -0
- package/es/calendar/locale/ta_IN.js +2 -0
- package/es/calendar/locale/th_TH.d.ts +2 -0
- package/es/calendar/locale/th_TH.js +2 -0
- package/es/calendar/locale/tk_TK.d.ts +2 -0
- package/es/calendar/locale/tk_TK.js +2 -0
- package/es/calendar/locale/tr_TR.d.ts +2 -0
- package/es/calendar/locale/tr_TR.js +2 -0
- package/es/calendar/locale/uk_UA.d.ts +2 -0
- package/es/calendar/locale/uk_UA.js +2 -0
- package/es/calendar/locale/ur_PK.d.ts +2 -0
- package/es/calendar/locale/ur_PK.js +2 -0
- package/es/calendar/locale/uz_UZ.d.ts +2 -0
- package/es/calendar/locale/uz_UZ.js +2 -0
- package/es/calendar/locale/vi_VN.d.ts +2 -0
- package/es/calendar/locale/vi_VN.js +2 -0
- package/es/calendar/locale/zh_CN.d.ts +2 -0
- package/es/calendar/locale/zh_CN.js +2 -0
- package/es/calendar/locale/zh_TW.d.ts +2 -0
- package/es/calendar/locale/zh_TW.js +2 -0
- package/es/calendar/style/index.d.ts +61 -0
- package/es/calendar/style/index.js +189 -0
- package/es/card/Card.d.ts +56 -0
- package/es/card/Card.js +190 -0
- package/es/card/Grid.d.ts +9 -0
- package/es/card/Grid.js +32 -0
- package/es/card/Meta.d.ts +11 -0
- package/es/card/Meta.js +44 -0
- package/es/card/index.d.ts +13 -0
- package/es/card/index.js +12 -0
- package/es/card/style/index.d.ts +51 -0
- package/es/card/style/index.js +342 -0
- package/es/carousel/index.d.ts +27 -0
- package/es/carousel/index.js +105 -0
- package/es/carousel/style/index.d.ts +43 -0
- package/es/carousel/style/index.js +336 -0
- package/es/cascader/Panel.d.ts +12 -0
- package/es/cascader/Panel.js +52 -0
- package/es/cascader/hooks/useBase.d.ts +8 -0
- package/es/cascader/hooks/useBase.js +14 -0
- package/es/cascader/hooks/useCheckable.d.ts +2 -0
- package/es/cascader/hooks/useCheckable.js +8 -0
- package/es/cascader/hooks/useColumnIcons.d.ts +3 -0
- package/es/cascader/hooks/useColumnIcons.js +19 -0
- package/es/cascader/index.d.ts +55 -0
- package/es/cascader/index.js +248 -0
- package/es/cascader/style/columns.d.ts +4 -0
- package/es/cascader/style/columns.js +99 -0
- package/es/cascader/style/index.d.ts +51 -0
- package/es/cascader/style/index.js +55 -0
- package/es/cascader/style/panel.d.ts +2 -0
- package/es/cascader/style/panel.js +30 -0
- package/es/checkbox/Checkbox.d.ts +43 -0
- package/es/checkbox/Checkbox.js +124 -0
- package/es/checkbox/Group.d.ts +32 -0
- package/es/checkbox/Group.js +115 -0
- package/es/checkbox/GroupContext.d.ts +12 -0
- package/es/checkbox/GroupContext.js +3 -0
- package/es/checkbox/index.d.ts +11 -0
- package/es/checkbox/index.js +11 -0
- package/es/checkbox/style/index.d.ts +23 -0
- package/es/checkbox/style/index.js +224 -0
- package/es/col/index.d.ts +4 -0
- package/es/col/index.js +4 -0
- package/es/col/style/index.d.ts +2 -0
- package/es/col/style/index.js +3 -0
- package/es/collapse/Collapse.d.ts +45 -0
- package/es/collapse/Collapse.js +110 -0
- package/es/collapse/CollapsePanel.d.ts +19 -0
- package/es/collapse/CollapsePanel.js +32 -0
- package/es/collapse/index.d.ts +4 -0
- package/es/collapse/index.js +4 -0
- package/es/collapse/style/index.d.ts +46 -0
- package/es/collapse/style/index.js +260 -0
- package/es/color-picker/ColorPicker.d.ts +8 -0
- package/es/color-picker/ColorPicker.js +237 -0
- package/es/color-picker/ColorPickerPanel.d.ts +9 -0
- package/es/color-picker/ColorPickerPanel.js +77 -0
- package/es/color-picker/color.d.ts +29 -0
- package/es/color-picker/color.js +110 -0
- package/es/color-picker/components/ColorAlphaInput.d.ts +9 -0
- package/es/color-picker/components/ColorAlphaInput.js +36 -0
- package/es/color-picker/components/ColorClear.d.ts +9 -0
- package/es/color-picker/components/ColorClear.js +24 -0
- package/es/color-picker/components/ColorHexInput.d.ts +9 -0
- package/es/color-picker/components/ColorHexInput.js +37 -0
- package/es/color-picker/components/ColorHsbInput.d.ts +9 -0
- package/es/color-picker/components/ColorHsbInput.js +56 -0
- package/es/color-picker/components/ColorInput.d.ts +14 -0
- package/es/color-picker/components/ColorInput.js +69 -0
- package/es/color-picker/components/ColorPresets.d.ts +12 -0
- package/es/color-picker/components/ColorPresets.js +89 -0
- package/es/color-picker/components/ColorRgbInput.d.ts +9 -0
- package/es/color-picker/components/ColorRgbInput.js +53 -0
- package/es/color-picker/components/ColorSlider.d.ts +20 -0
- package/es/color-picker/components/ColorSlider.js +133 -0
- package/es/color-picker/components/ColorSteppers.d.ts +15 -0
- package/es/color-picker/components/ColorSteppers.js +38 -0
- package/es/color-picker/components/ColorTrigger.d.ts +20 -0
- package/es/color-picker/components/ColorTrigger.js +83 -0
- package/es/color-picker/components/PanelPicker/GradientColorBar.d.ts +8 -0
- package/es/color-picker/components/PanelPicker/GradientColorBar.js +114 -0
- package/es/color-picker/components/PanelPicker/index.d.ts +3 -0
- package/es/color-picker/components/PanelPicker/index.js +174 -0
- package/es/color-picker/components/PanelPresets.d.ts +3 -0
- package/es/color-picker/components/PanelPresets.js +20 -0
- package/es/color-picker/context.d.ts +38 -0
- package/es/color-picker/context.js +3 -0
- package/es/color-picker/hooks/useModeColor.d.ts +17 -0
- package/es/color-picker/hooks/useModeColor.js +65 -0
- package/es/color-picker/index.d.ts +4 -0
- package/es/color-picker/index.js +4 -0
- package/es/color-picker/interface.d.ts +73 -0
- package/es/color-picker/interface.js +6 -0
- package/es/color-picker/style/color-block.d.ts +8 -0
- package/es/color-picker/style/color-block.js +35 -0
- package/es/color-picker/style/index.d.ts +62 -0
- package/es/color-picker/style/index.js +257 -0
- package/es/color-picker/style/input.d.ts +5 -0
- package/es/color-picker/style/input.js +93 -0
- package/es/color-picker/style/picker.d.ts +5 -0
- package/es/color-picker/style/picker.js +42 -0
- package/es/color-picker/style/presets.d.ts +5 -0
- package/es/color-picker/style/presets.js +105 -0
- package/es/color-picker/style/slider.d.ts +5 -0
- package/es/color-picker/style/slider.js +95 -0
- package/es/color-picker/util.d.ts +15 -0
- package/es/color-picker/util.js +55 -0
- package/es/config-provider/DisabledContext.d.ts +8 -0
- package/es/config-provider/DisabledContext.js +14 -0
- package/es/config-provider/MotionWrapper.d.ts +5 -0
- package/es/config-provider/MotionWrapper.js +22 -0
- package/es/config-provider/PropWarning.d.ts +6 -0
- package/es/config-provider/PropWarning.js +19 -0
- package/es/config-provider/SizeContext.d.ts +9 -0
- package/es/config-provider/SizeContext.js +14 -0
- package/es/config-provider/context.d.ts +251 -0
- package/es/config-provider/context.js +19 -0
- package/es/config-provider/cssVariables.d.ts +3 -0
- package/es/config-provider/cssVariables.js +75 -0
- package/es/config-provider/defaultRenderEmpty.d.ts +8 -0
- package/es/config-provider/defaultRenderEmpty.js +42 -0
- package/es/config-provider/hooks/useCSSVarCls.d.ts +7 -0
- package/es/config-provider/hooks/useCSSVarCls.js +11 -0
- package/es/config-provider/hooks/useConfig.d.ts +5 -0
- package/es/config-provider/hooks/useConfig.js +12 -0
- package/es/config-provider/hooks/useSize.d.ts +3 -0
- package/es/config-provider/hooks/useSize.js +19 -0
- package/es/config-provider/hooks/useTheme.d.ts +4 -0
- package/es/config-provider/hooks/useTheme.js +46 -0
- package/es/config-provider/hooks/useThemeKey.d.ts +3 -0
- package/es/config-provider/hooks/useThemeKey.js +8 -0
- package/es/config-provider/index.d.ts +140 -0
- package/es/config-provider/index.js +415 -0
- package/es/config-provider/style/index.d.ts +1 -0
- package/es/config-provider/style/index.js +1 -0
- package/es/date-picker/PickerButton.d.ts +4 -0
- package/es/date-picker/PickerButton.js +9 -0
- package/es/date-picker/generatePicker/constant.d.ts +5 -0
- package/es/date-picker/generatePicker/constant.js +5 -0
- package/es/date-picker/generatePicker/generateRangePicker.d.ts +17 -0
- package/es/date-picker/generatePicker/generateRangePicker.js +158 -0
- package/es/date-picker/generatePicker/generateSinglePicker.d.ts +25 -0
- package/es/date-picker/generatePicker/generateSinglePicker.js +191 -0
- package/es/date-picker/generatePicker/index.d.ts +36 -0
- package/es/date-picker/generatePicker/index.js +29 -0
- package/es/date-picker/generatePicker/interface.d.ts +72 -0
- package/es/date-picker/generatePicker/interface.js +2 -0
- package/es/date-picker/generatePicker/useComponents.d.ts +13 -0
- package/es/date-picker/generatePicker/useComponents.js +7 -0
- package/es/date-picker/index.d.ts +48 -0
- package/es/date-picker/index.js +14 -0
- package/es/date-picker/locale/ar_EG.d.ts +3 -0
- package/es/date-picker/locale/ar_EG.js +25 -0
- package/es/date-picker/locale/az_AZ.d.ts +3 -0
- package/es/date-picker/locale/az_AZ.js +18 -0
- package/es/date-picker/locale/bg_BG.d.ts +3 -0
- package/es/date-picker/locale/bg_BG.js +13 -0
- package/es/date-picker/locale/bn_BD.d.ts +3 -0
- package/es/date-picker/locale/bn_BD.js +20 -0
- package/es/date-picker/locale/by_BY.d.ts +3 -0
- package/es/date-picker/locale/by_BY.js +18 -0
- package/es/date-picker/locale/ca_ES.d.ts +3 -0
- package/es/date-picker/locale/ca_ES.js +13 -0
- package/es/date-picker/locale/cs_CZ.d.ts +3 -0
- package/es/date-picker/locale/cs_CZ.js +13 -0
- package/es/date-picker/locale/da_DK.d.ts +3 -0
- package/es/date-picker/locale/da_DK.js +13 -0
- package/es/date-picker/locale/de_DE.d.ts +3 -0
- package/es/date-picker/locale/de_DE.js +15 -0
- package/es/date-picker/locale/el_GR.d.ts +3 -0
- package/es/date-picker/locale/el_GR.js +21 -0
- package/es/date-picker/locale/en_GB.d.ts +3 -0
- package/es/date-picker/locale/en_GB.js +21 -0
- package/es/date-picker/locale/en_US.d.ts +3 -0
- package/es/date-picker/locale/en_US.js +21 -0
- package/es/date-picker/locale/es_ES.d.ts +3 -0
- package/es/date-picker/locale/es_ES.js +15 -0
- package/es/date-picker/locale/et_EE.d.ts +3 -0
- package/es/date-picker/locale/et_EE.js +13 -0
- package/es/date-picker/locale/eu_ES.d.ts +3 -0
- package/es/date-picker/locale/eu_ES.js +13 -0
- package/es/date-picker/locale/fa_IR.d.ts +3 -0
- package/es/date-picker/locale/fa_IR.js +21 -0
- package/es/date-picker/locale/fi_FI.d.ts +3 -0
- package/es/date-picker/locale/fi_FI.js +13 -0
- package/es/date-picker/locale/fr_BE.d.ts +3 -0
- package/es/date-picker/locale/fr_BE.js +20 -0
- package/es/date-picker/locale/fr_CA.d.ts +3 -0
- package/es/date-picker/locale/fr_CA.js +20 -0
- package/es/date-picker/locale/fr_FR.d.ts +3 -0
- package/es/date-picker/locale/fr_FR.js +20 -0
- package/es/date-picker/locale/ga_IE.d.ts +3 -0
- package/es/date-picker/locale/ga_IE.js +20 -0
- package/es/date-picker/locale/gl_ES.d.ts +3 -0
- package/es/date-picker/locale/gl_ES.js +13 -0
- package/es/date-picker/locale/he_IL.d.ts +3 -0
- package/es/date-picker/locale/he_IL.js +13 -0
- package/es/date-picker/locale/hi_IN.d.ts +3 -0
- package/es/date-picker/locale/hi_IN.js +20 -0
- package/es/date-picker/locale/hr_HR.d.ts +3 -0
- package/es/date-picker/locale/hr_HR.js +20 -0
- package/es/date-picker/locale/hu_HU.d.ts +3 -0
- package/es/date-picker/locale/hu_HU.js +13 -0
- package/es/date-picker/locale/id_ID.d.ts +3 -0
- package/es/date-picker/locale/id_ID.js +21 -0
- package/es/date-picker/locale/is_IS.d.ts +3 -0
- package/es/date-picker/locale/is_IS.js +13 -0
- package/es/date-picker/locale/it_IT.d.ts +3 -0
- package/es/date-picker/locale/it_IT.js +13 -0
- package/es/date-picker/locale/ja_JP.d.ts +3 -0
- package/es/date-picker/locale/ja_JP.js +23 -0
- package/es/date-picker/locale/ka_GE.d.ts +3 -0
- package/es/date-picker/locale/ka_GE.js +17 -0
- package/es/date-picker/locale/kk_KZ.d.ts +3 -0
- package/es/date-picker/locale/kk_KZ.js +20 -0
- package/es/date-picker/locale/km_KH.d.ts +3 -0
- package/es/date-picker/locale/km_KH.js +20 -0
- package/es/date-picker/locale/kmr_IQ.d.ts +3 -0
- package/es/date-picker/locale/kmr_IQ.js +13 -0
- package/es/date-picker/locale/kn_IN.d.ts +3 -0
- package/es/date-picker/locale/kn_IN.js +21 -0
- package/es/date-picker/locale/ko_KR.d.ts +3 -0
- package/es/date-picker/locale/ko_KR.js +13 -0
- package/es/date-picker/locale/lt_LT.d.ts +3 -0
- package/es/date-picker/locale/lt_LT.js +21 -0
- package/es/date-picker/locale/lv_LV.d.ts +3 -0
- package/es/date-picker/locale/lv_LV.js +13 -0
- package/es/date-picker/locale/mk_MK.d.ts +3 -0
- package/es/date-picker/locale/mk_MK.js +13 -0
- package/es/date-picker/locale/ml_IN.d.ts +3 -0
- package/es/date-picker/locale/ml_IN.js +20 -0
- package/es/date-picker/locale/mn_MN.d.ts +3 -0
- package/es/date-picker/locale/mn_MN.js +13 -0
- package/es/date-picker/locale/ms_MY.d.ts +3 -0
- package/es/date-picker/locale/ms_MY.js +13 -0
- package/es/date-picker/locale/my_MM.d.ts +3 -0
- package/es/date-picker/locale/my_MM.js +21 -0
- package/es/date-picker/locale/nb_NO.d.ts +3 -0
- package/es/date-picker/locale/nb_NO.js +20 -0
- package/es/date-picker/locale/nl_BE.d.ts +3 -0
- package/es/date-picker/locale/nl_BE.js +20 -0
- package/es/date-picker/locale/nl_NL.d.ts +3 -0
- package/es/date-picker/locale/nl_NL.js +20 -0
- package/es/date-picker/locale/pl_PL.d.ts +3 -0
- package/es/date-picker/locale/pl_PL.js +21 -0
- package/es/date-picker/locale/pt_BR.d.ts +3 -0
- package/es/date-picker/locale/pt_BR.js +13 -0
- package/es/date-picker/locale/pt_PT.d.ts +3 -0
- package/es/date-picker/locale/pt_PT.js +41 -0
- package/es/date-picker/locale/ro_RO.d.ts +3 -0
- package/es/date-picker/locale/ro_RO.js +13 -0
- package/es/date-picker/locale/ru_RU.d.ts +4 -0
- package/es/date-picker/locale/ru_RU.js +23 -0
- package/es/date-picker/locale/si_LK.d.ts +3 -0
- package/es/date-picker/locale/si_LK.js +21 -0
- package/es/date-picker/locale/sk_SK.d.ts +3 -0
- package/es/date-picker/locale/sk_SK.js +13 -0
- package/es/date-picker/locale/sl_SI.d.ts +3 -0
- package/es/date-picker/locale/sl_SI.js +39 -0
- package/es/date-picker/locale/sr_RS.d.ts +3 -0
- package/es/date-picker/locale/sr_RS.js +20 -0
- package/es/date-picker/locale/sv_SE.d.ts +3 -0
- package/es/date-picker/locale/sv_SE.js +20 -0
- package/es/date-picker/locale/ta_IN.d.ts +3 -0
- package/es/date-picker/locale/ta_IN.js +21 -0
- package/es/date-picker/locale/th_TH.d.ts +3 -0
- package/es/date-picker/locale/th_TH.js +20 -0
- package/es/date-picker/locale/tk_TK.d.ts +3 -0
- package/es/date-picker/locale/tk_TK.js +18 -0
- package/es/date-picker/locale/tr_TR.d.ts +3 -0
- package/es/date-picker/locale/tr_TR.js +20 -0
- package/es/date-picker/locale/uk_UA.d.ts +3 -0
- package/es/date-picker/locale/uk_UA.js +22 -0
- package/es/date-picker/locale/ur_PK.d.ts +3 -0
- package/es/date-picker/locale/ur_PK.js +20 -0
- package/es/date-picker/locale/uz_UZ.d.ts +3 -0
- package/es/date-picker/locale/uz_UZ.js +20 -0
- package/es/date-picker/locale/vi_VN.d.ts +3 -0
- package/es/date-picker/locale/vi_VN.js +21 -0
- package/es/date-picker/locale/zh_CN.d.ts +3 -0
- package/es/date-picker/locale/zh_CN.js +23 -0
- package/es/date-picker/locale/zh_TW.d.ts +3 -0
- package/es/date-picker/locale/zh_TW.js +22 -0
- package/es/date-picker/style/index.d.ts +7 -0
- package/es/date-picker/style/index.js +424 -0
- package/es/date-picker/style/multiple.d.ts +4 -0
- package/es/date-picker/style/multiple.js +95 -0
- package/es/date-picker/style/panel.d.ts +6 -0
- package/es/date-picker/style/panel.js +600 -0
- package/es/date-picker/style/token.d.ts +103 -0
- package/es/date-picker/style/token.js +73 -0
- package/es/date-picker/style/variants.d.ts +4 -0
- package/es/date-picker/style/variants.js +32 -0
- package/es/date-picker/util.d.ts +8 -0
- package/es/date-picker/util.js +66 -0
- package/es/descriptions/Cell.d.ts +17 -0
- package/es/descriptions/Cell.js +54 -0
- package/es/descriptions/DescriptionsContext.d.ts +7 -0
- package/es/descriptions/DescriptionsContext.js +3 -0
- package/es/descriptions/Item.d.ts +13 -0
- package/es/descriptions/Item.js +4 -0
- package/es/descriptions/Row.d.ts +13 -0
- package/es/descriptions/Row.js +106 -0
- package/es/descriptions/constant.d.ts +3 -0
- package/es/descriptions/constant.js +9 -0
- package/es/descriptions/hooks/useItems.d.ts +4 -0
- package/es/descriptions/hooks/useItems.js +35 -0
- package/es/descriptions/hooks/useRow.d.ts +3 -0
- package/es/descriptions/hooks/useRow.js +72 -0
- package/es/descriptions/index.d.ts +42 -0
- package/es/descriptions/index.js +101 -0
- package/es/descriptions/style/index.d.ts +52 -0
- package/es/descriptions/style/index.js +190 -0
- package/es/divider/index.d.ts +20 -0
- package/es/divider/index.js +83 -0
- package/es/divider/style/index.d.ts +23 -0
- package/es/divider/style/index.js +161 -0
- package/es/drawer/DrawerPanel.d.ts +47 -0
- package/es/drawer/DrawerPanel.js +78 -0
- package/es/drawer/index.d.ts +32 -0
- package/es/drawer/index.js +173 -0
- package/es/drawer/style/index.d.ts +23 -0
- package/es/drawer/style/index.js +212 -0
- package/es/drawer/style/motion.d.ts +4 -0
- package/es/drawer/style/motion.js +53 -0
- package/es/dropdown/dropdown-button.d.ts +21 -0
- package/es/dropdown/dropdown-button.js +114 -0
- package/es/dropdown/dropdown.d.ts +50 -0
- package/es/dropdown/dropdown.js +217 -0
- package/es/dropdown/index.d.ts +8 -0
- package/es/dropdown/index.js +7 -0
- package/es/dropdown/style/index.d.ts +40 -0
- package/es/dropdown/style/index.js +298 -0
- package/es/dropdown/style/status.d.ts +4 -0
- package/es/dropdown/style/status.js +23 -0
- package/es/empty/empty.d.ts +3 -0
- package/es/empty/empty.js +64 -0
- package/es/empty/index.d.ts +21 -0
- package/es/empty/index.js +71 -0
- package/es/empty/simple.d.ts +3 -0
- package/es/empty/simple.js +54 -0
- package/es/empty/style/index.d.ts +5 -0
- package/es/empty/style/index.js +73 -0
- package/es/flex/index.d.ts +4 -0
- package/es/flex/index.js +60 -0
- package/es/flex/interface.d.ts +15 -0
- package/es/flex/interface.js +1 -0
- package/es/flex/style/index.d.ts +30 -0
- package/es/flex/style/index.js +93 -0
- package/es/flex/utils.d.ts +6 -0
- package/es/flex/utils.js +29 -0
- package/es/float-button/BackTop.d.ts +4 -0
- package/es/float-button/BackTop.js +95 -0
- package/es/float-button/FloatButton.d.ts +14 -0
- package/es/float-button/FloatButton.js +97 -0
- package/es/float-button/FloatButtonContent.d.ts +4 -0
- package/es/float-button/FloatButtonContent.js +28 -0
- package/es/float-button/FloatButtonGroup.d.ts +4 -0
- package/es/float-button/FloatButtonGroup.js +148 -0
- package/es/float-button/PurePanel.d.ts +12 -0
- package/es/float-button/PurePanel.js +53 -0
- package/es/float-button/context.d.ts +5 -0
- package/es/float-button/context.js +6 -0
- package/es/float-button/index.d.ts +2 -0
- package/es/float-button/index.js +10 -0
- package/es/float-button/interface.d.ts +57 -0
- package/es/float-button/interface.js +1 -0
- package/es/float-button/style/index.d.ts +68 -0
- package/es/float-button/style/index.js +396 -0
- package/es/float-button/style/keyframes.d.ts +7 -0
- package/es/float-button/style/keyframes.js +128 -0
- package/es/float-button/util.d.ts +2 -0
- package/es/float-button/util.js +9 -0
- package/es/form/ErrorList.d.ts +13 -0
- package/es/form/ErrorList.js +88 -0
- package/es/form/Form.d.ts +43 -0
- package/es/form/Form.js +162 -0
- package/es/form/FormItem/ItemHolder.d.ts +18 -0
- package/es/form/FormItem/ItemHolder.js +130 -0
- package/es/form/FormItem/StatusProvider.d.ts +16 -0
- package/es/form/FormItem/StatusProvider.js +75 -0
- package/es/form/FormItem/index.d.ts +46 -0
- package/es/form/FormItem/index.js +276 -0
- package/es/form/FormItemInput.d.ts +22 -0
- package/es/form/FormItemInput.js +124 -0
- package/es/form/FormItemLabel.d.ts +22 -0
- package/es/form/FormItemLabel.js +112 -0
- package/es/form/FormList.d.ts +25 -0
- package/es/form/FormList.js +43 -0
- package/es/form/context.d.ts +52 -0
- package/es/form/context.js +46 -0
- package/es/form/hooks/useChildren.d.ts +2 -0
- package/es/form/hooks/useChildren.js +8 -0
- package/es/form/hooks/useDebounce.d.ts +1 -0
- package/es/form/hooks/useDebounce.js +13 -0
- package/es/form/hooks/useForm.d.ts +8 -0
- package/es/form/hooks/useForm.js +57 -0
- package/es/form/hooks/useFormInstance.d.ts +2 -0
- package/es/form/hooks/useFormInstance.js +8 -0
- package/es/form/hooks/useFormItemStatus.d.ts +8 -0
- package/es/form/hooks/useFormItemStatus.js +22 -0
- package/es/form/hooks/useFormWarning.d.ts +2 -0
- package/es/form/hooks/useFormWarning.js +17 -0
- package/es/form/hooks/useFrameState.d.ts +3 -0
- package/es/form/hooks/useFrameState.js +37 -0
- package/es/form/hooks/useItemRef.d.ts +3 -0
- package/es/form/hooks/useItemRef.js +20 -0
- package/es/form/hooks/useVariants.d.ts +7 -0
- package/es/form/hooks/useVariants.js +27 -0
- package/es/form/index.d.ts +26 -0
- package/es/form/index.js +21 -0
- package/es/form/interface.d.ts +3 -0
- package/es/form/interface.js +1 -0
- package/es/form/style/explain.d.ts +4 -0
- package/es/form/style/explain.js +44 -0
- package/es/form/style/fallbackCmp.d.ts +6 -0
- package/es/form/style/fallbackCmp.js +28 -0
- package/es/form/style/index.d.ts +74 -0
- package/es/form/style/index.js +499 -0
- package/es/form/util.d.ts +9 -0
- package/es/form/util.js +39 -0
- package/es/form/validateMessagesContext.d.ts +3 -0
- package/es/form/validateMessagesContext.js +7 -0
- package/es/grid/RowContext.d.ts +6 -0
- package/es/grid/RowContext.js +3 -0
- package/es/grid/col.d.ts +29 -0
- package/es/grid/col.js +109 -0
- package/es/grid/hooks/useBreakpoint.d.ts +3 -0
- package/es/grid/hooks/useBreakpoint.js +22 -0
- package/es/grid/index.d.ts +10 -0
- package/es/grid/index.js +13 -0
- package/es/grid/row.d.ts +20 -0
- package/es/grid/row.js +149 -0
- package/es/grid/style/index.d.ts +7 -0
- package/es/grid/style/index.js +154 -0
- package/es/icon/index.d.ts +2 -0
- package/es/icon/index.js +11 -0
- package/es/image/PreviewGroup.d.ts +15 -0
- package/es/image/PreviewGroup.js +75 -0
- package/es/image/index.d.ts +9 -0
- package/es/image/index.js +86 -0
- package/es/image/style/index.d.ts +59 -0
- package/es/image/style/index.js +310 -0
- package/es/index.d.ts +147 -0
- package/es/index.js +75 -0
- package/es/input/Group.d.ts +15 -0
- package/es/input/Group.js +47 -0
- package/es/input/Input.d.ts +25 -0
- package/es/input/Input.js +173 -0
- package/es/input/OTP/OTPInput.d.ts +11 -0
- package/es/input/OTP/OTPInput.js +76 -0
- package/es/input/OTP/index.d.ts +29 -0
- package/es/input/OTP/index.js +193 -0
- package/es/input/Password.d.ts +14 -0
- package/es/input/Password.js +115 -0
- package/es/input/Search.d.ts +12 -0
- package/es/input/Search.js +148 -0
- package/es/input/TextArea.d.ts +26 -0
- package/es/input/TextArea.js +118 -0
- package/es/input/hooks/useRemovePasswordTimeout.d.ts +2 -0
- package/es/input/hooks/useRemovePasswordTimeout.js +23 -0
- package/es/input/index.d.ts +20 -0
- package/es/input/index.js +15 -0
- package/es/input/style/index.d.ts +17 -0
- package/es/input/style/index.js +728 -0
- package/es/input/style/otp.d.ts +2 -0
- package/es/input/style/otp.js +36 -0
- package/es/input/style/token.d.ts +97 -0
- package/es/input/style/token.js +48 -0
- package/es/input/style/variants.d.ts +15 -0
- package/es/input/style/variants.js +239 -0
- package/es/input/utils.d.ts +8 -0
- package/es/input/utils.js +3 -0
- package/es/input-number/index.d.ts +34 -0
- package/es/input-number/index.js +160 -0
- package/es/input-number/style/index.d.ts +18 -0
- package/es/input-number/style/index.js +400 -0
- package/es/input-number/style/token.d.ts +52 -0
- package/es/input-number/style/token.js +18 -0
- package/es/layout/Sider.d.ts +28 -0
- package/es/layout/Sider.js +178 -0
- package/es/layout/context.d.ts +8 -0
- package/es/layout/context.js +7 -0
- package/es/layout/hooks/useHasSider.d.ts +2 -0
- package/es/layout/hooks/useHasSider.js +12 -0
- package/es/layout/index.d.ts +15 -0
- package/es/layout/index.js +11 -0
- package/es/layout/layout.d.ts +18 -0
- package/es/layout/layout.js +120 -0
- package/es/layout/style/index.d.ts +96 -0
- package/es/layout/style/index.js +113 -0
- package/es/layout/style/sider.d.ts +2 -0
- package/es/layout/style/sider.js +121 -0
- package/es/list/Item.d.ts +35 -0
- package/es/list/Item.js +125 -0
- package/es/list/context.d.ts +8 -0
- package/es/list/context.js +3 -0
- package/es/list/index.d.ts +56 -0
- package/es/list/index.js +215 -0
- package/es/list/style/index.d.ts +62 -0
- package/es/list/style/index.js +321 -0
- package/es/locale/ar_EG.d.ts +3 -0
- package/es/locale/ar_EG.js +127 -0
- package/es/locale/az_AZ.d.ts +3 -0
- package/es/locale/az_AZ.js +147 -0
- package/es/locale/bg_BG.d.ts +3 -0
- package/es/locale/bg_BG.js +95 -0
- package/es/locale/bn_BD.d.ts +3 -0
- package/es/locale/bn_BD.js +126 -0
- package/es/locale/by_BY.d.ts +3 -0
- package/es/locale/by_BY.js +128 -0
- package/es/locale/ca_ES.d.ts +3 -0
- package/es/locale/ca_ES.js +121 -0
- package/es/locale/context.d.ts +6 -0
- package/es/locale/context.js +3 -0
- package/es/locale/cs_CZ.d.ts +3 -0
- package/es/locale/cs_CZ.js +128 -0
- package/es/locale/da_DK.d.ts +3 -0
- package/es/locale/da_DK.js +105 -0
- package/es/locale/de_DE.d.ts +3 -0
- package/es/locale/de_DE.js +132 -0
- package/es/locale/el_GR.d.ts +3 -0
- package/es/locale/el_GR.js +145 -0
- package/es/locale/en_GB.d.ts +3 -0
- package/es/locale/en_GB.js +128 -0
- package/es/locale/en_US.d.ts +3 -0
- package/es/locale/en_US.js +146 -0
- package/es/locale/es_ES.d.ts +3 -0
- package/es/locale/es_ES.js +133 -0
- package/es/locale/et_EE.d.ts +3 -0
- package/es/locale/et_EE.js +128 -0
- package/es/locale/eu_ES.d.ts +3 -0
- package/es/locale/eu_ES.js +143 -0
- package/es/locale/fa_IR.d.ts +3 -0
- package/es/locale/fa_IR.js +137 -0
- package/es/locale/fi_FI.d.ts +3 -0
- package/es/locale/fi_FI.js +54 -0
- package/es/locale/fr_BE.d.ts +3 -0
- package/es/locale/fr_BE.js +130 -0
- package/es/locale/fr_CA.d.ts +3 -0
- package/es/locale/fr_CA.js +125 -0
- package/es/locale/fr_FR.d.ts +3 -0
- package/es/locale/fr_FR.js +130 -0
- package/es/locale/ga_IE.d.ts +3 -0
- package/es/locale/ga_IE.js +119 -0
- package/es/locale/gl_ES.d.ts +3 -0
- package/es/locale/gl_ES.js +107 -0
- package/es/locale/he_IL.d.ts +3 -0
- package/es/locale/he_IL.js +113 -0
- package/es/locale/hi_IN.d.ts +3 -0
- package/es/locale/hi_IN.js +126 -0
- package/es/locale/hr_HR.d.ts +3 -0
- package/es/locale/hr_HR.js +125 -0
- package/es/locale/hu_HU.d.ts +3 -0
- package/es/locale/hu_HU.js +45 -0
- package/es/locale/hy_AM.d.ts +3 -0
- package/es/locale/hy_AM.js +106 -0
- package/es/locale/id_ID.d.ts +3 -0
- package/es/locale/id_ID.js +146 -0
- package/es/locale/index.d.ts +61 -0
- package/es/locale/index.js +33 -0
- package/es/locale/is_IS.d.ts +3 -0
- package/es/locale/is_IS.js +95 -0
- package/es/locale/it_IT.d.ts +3 -0
- package/es/locale/it_IT.js +133 -0
- package/es/locale/ja_JP.d.ts +3 -0
- package/es/locale/ja_JP.js +146 -0
- package/es/locale/ka_GE.d.ts +3 -0
- package/es/locale/ka_GE.js +126 -0
- package/es/locale/kk_KZ.d.ts +3 -0
- package/es/locale/kk_KZ.js +120 -0
- package/es/locale/km_KH.d.ts +3 -0
- package/es/locale/km_KH.js +104 -0
- package/es/locale/kmr_IQ.d.ts +3 -0
- package/es/locale/kmr_IQ.js +44 -0
- package/es/locale/kn_IN.d.ts +3 -0
- package/es/locale/kn_IN.js +129 -0
- package/es/locale/ko_KR.d.ts +3 -0
- package/es/locale/ko_KR.js +143 -0
- package/es/locale/ku_IQ.d.ts +3 -0
- package/es/locale/ku_IQ.js +47 -0
- package/es/locale/lt_LT.d.ts +3 -0
- package/es/locale/lt_LT.js +143 -0
- package/es/locale/lv_LV.d.ts +3 -0
- package/es/locale/lv_LV.js +44 -0
- package/es/locale/mk_MK.d.ts +3 -0
- package/es/locale/mk_MK.js +56 -0
- package/es/locale/ml_IN.d.ts +3 -0
- package/es/locale/ml_IN.js +126 -0
- package/es/locale/mn_MN.d.ts +3 -0
- package/es/locale/mn_MN.js +128 -0
- package/es/locale/ms_MY.d.ts +3 -0
- package/es/locale/ms_MY.js +144 -0
- package/es/locale/my_MM.d.ts +3 -0
- package/es/locale/my_MM.js +135 -0
- package/es/locale/nb_NO.d.ts +3 -0
- package/es/locale/nb_NO.js +120 -0
- package/es/locale/ne_NP.d.ts +3 -0
- package/es/locale/ne_NP.js +146 -0
- package/es/locale/nl_BE.d.ts +3 -0
- package/es/locale/nl_BE.js +131 -0
- package/es/locale/nl_NL.d.ts +3 -0
- package/es/locale/nl_NL.js +131 -0
- package/es/locale/pl_PL.d.ts +3 -0
- package/es/locale/pl_PL.js +133 -0
- package/es/locale/pt_BR.d.ts +3 -0
- package/es/locale/pt_BR.js +133 -0
- package/es/locale/pt_PT.d.ts +3 -0
- package/es/locale/pt_PT.js +146 -0
- package/es/locale/ro_RO.d.ts +3 -0
- package/es/locale/ro_RO.js +126 -0
- package/es/locale/ru_RU.d.ts +3 -0
- package/es/locale/ru_RU.js +138 -0
- package/es/locale/si_LK.d.ts +3 -0
- package/es/locale/si_LK.js +128 -0
- package/es/locale/sk_SK.d.ts +3 -0
- package/es/locale/sk_SK.js +128 -0
- package/es/locale/sl_SI.d.ts +3 -0
- package/es/locale/sl_SI.js +44 -0
- package/es/locale/sr_RS.d.ts +3 -0
- package/es/locale/sr_RS.js +126 -0
- package/es/locale/sv_SE.d.ts +3 -0
- package/es/locale/sv_SE.js +137 -0
- package/es/locale/ta_IN.d.ts +3 -0
- package/es/locale/ta_IN.js +126 -0
- package/es/locale/th_TH.d.ts +3 -0
- package/es/locale/th_TH.js +146 -0
- package/es/locale/tk_TK.d.ts +3 -0
- package/es/locale/tk_TK.js +124 -0
- package/es/locale/tr_TR.d.ts +3 -0
- package/es/locale/tr_TR.js +126 -0
- package/es/locale/uk_UA.d.ts +3 -0
- package/es/locale/uk_UA.js +138 -0
- package/es/locale/ur_PK.d.ts +3 -0
- package/es/locale/ur_PK.js +126 -0
- package/es/locale/useLocale.d.ts +4 -0
- package/es/locale/useLocale.js +22 -0
- package/es/locale/uz_UZ.d.ts +3 -0
- package/es/locale/uz_UZ.js +142 -0
- package/es/locale/vi_VN.d.ts +3 -0
- package/es/locale/vi_VN.js +137 -0
- package/es/locale/zh_CN.d.ts +3 -0
- package/es/locale/zh_CN.js +147 -0
- package/es/locale/zh_HK.d.ts +3 -0
- package/es/locale/zh_HK.js +137 -0
- package/es/locale/zh_TW.d.ts +3 -0
- package/es/locale/zh_TW.js +138 -0
- package/es/mentions/index.d.ts +45 -0
- package/es/mentions/index.js +183 -0
- package/es/mentions/style/index.d.ts +22 -0
- package/es/mentions/style/index.js +213 -0
- package/es/menu/MenuContext.d.ts +11 -0
- package/es/menu/MenuContext.js +9 -0
- package/es/menu/MenuDivider.d.ts +9 -0
- package/es/menu/MenuDivider.js +33 -0
- package/es/menu/MenuItem.d.ts +13 -0
- package/es/menu/MenuItem.js +83 -0
- package/es/menu/OverrideContext.d.ts +13 -0
- package/es/menu/OverrideContext.js +38 -0
- package/es/menu/SubMenu.d.ts +13 -0
- package/es/menu/SubMenu.js +57 -0
- package/es/menu/index.d.ts +34 -0
- package/es/menu/index.js +32 -0
- package/es/menu/interface.d.ts +20 -0
- package/es/menu/interface.js +1 -0
- package/es/menu/menu.d.ts +19 -0
- package/es/menu/menu.js +159 -0
- package/es/menu/style/horizontal.d.ts +4 -0
- package/es/menu/style/horizontal.js +46 -0
- package/es/menu/style/index.d.ts +354 -0
- package/es/menu/style/index.js +549 -0
- package/es/menu/style/rtl.d.ts +5 -0
- package/es/menu/style/rtl.js +26 -0
- package/es/menu/style/theme.d.ts +4 -0
- package/es/menu/style/theme.js +217 -0
- package/es/menu/style/vertical.d.ts +4 -0
- package/es/menu/style/vertical.js +186 -0
- package/es/message/PurePanel.d.ts +23 -0
- package/es/message/PurePanel.js +65 -0
- package/es/message/index.d.ts +23 -0
- package/es/message/index.js +257 -0
- package/es/message/interface.d.ts +66 -0
- package/es/message/interface.js +1 -0
- package/es/message/style/index.d.ts +23 -0
- package/es/message/style/index.js +156 -0
- package/es/message/useMessage.d.ts +8 -0
- package/es/message/useMessage.js +218 -0
- package/es/message/util.d.ts +4 -0
- package/es/message/util.js +20 -0
- package/es/modal/ConfirmDialog.d.ts +32 -0
- package/es/modal/ConfirmDialog.js +211 -0
- package/es/modal/Modal.d.ts +4 -0
- package/es/modal/Modal.js +158 -0
- package/es/modal/PurePanel.d.ts +9 -0
- package/es/modal/PurePanel.js +70 -0
- package/es/modal/components/ConfirmCancelBtn.d.ts +10 -0
- package/es/modal/components/ConfirmCancelBtn.js +30 -0
- package/es/modal/components/ConfirmOkBtn.d.ts +9 -0
- package/es/modal/components/ConfirmOkBtn.js +31 -0
- package/es/modal/components/NormalCancelBtn.d.ts +8 -0
- package/es/modal/components/NormalCancelBtn.js +16 -0
- package/es/modal/components/NormalOkBtn.d.ts +8 -0
- package/es/modal/components/NormalOkBtn.js +20 -0
- package/es/modal/confirm.d.ts +20 -0
- package/es/modal/confirm.js +152 -0
- package/es/modal/context.d.ts +8 -0
- package/es/modal/context.js +5 -0
- package/es/modal/destroyFns.d.ts +2 -0
- package/es/modal/destroyFns.js +2 -0
- package/es/modal/index.d.ts +15 -0
- package/es/modal/index.js +40 -0
- package/es/modal/interface.d.ts +123 -0
- package/es/modal/interface.js +1 -0
- package/es/modal/locale.d.ts +7 -0
- package/es/modal/locale.js +19 -0
- package/es/modal/shared.d.ts +9 -0
- package/es/modal/shared.js +65 -0
- package/es/modal/style/confirm.d.ts +2 -0
- package/es/modal/style/confirm.js +100 -0
- package/es/modal/style/index.d.ts +110 -0
- package/es/modal/style/index.js +278 -0
- package/es/modal/useModal/HookModal.d.ts +17 -0
- package/es/modal/useModal/HookModal.js +66 -0
- package/es/modal/useModal/index.d.ts +8 -0
- package/es/modal/useModal/index.js +100 -0
- package/es/notification/PurePanel.d.ts +27 -0
- package/es/notification/PurePanel.js +123 -0
- package/es/notification/index.d.ts +22 -0
- package/es/notification/index.js +198 -0
- package/es/notification/interface.d.ts +68 -0
- package/es/notification/interface.js +1 -0
- package/es/notification/style/index.d.ts +89 -0
- package/es/notification/style/index.js +250 -0
- package/es/notification/style/placement.d.ts +5 -0
- package/es/notification/style/placement.js +92 -0
- package/es/notification/style/pure-panel.d.ts +2 -0
- package/es/notification/style/pure-panel.js +14 -0
- package/es/notification/style/stack.d.ts +4 -0
- package/es/notification/style/stack.js +96 -0
- package/es/notification/useNotification.d.ts +8 -0
- package/es/notification/useNotification.js +185 -0
- package/es/notification/util.d.ts +5 -0
- package/es/notification/util.js +57 -0
- package/es/pagination/Pagination.d.ts +21 -0
- package/es/pagination/Pagination.js +127 -0
- package/es/pagination/Select.d.ts +9 -0
- package/es/pagination/Select.js +15 -0
- package/es/pagination/index.d.ts +3 -0
- package/es/pagination/index.js +4 -0
- package/es/pagination/style/bordered.d.ts +2 -0
- package/es/pagination/style/bordered.js +88 -0
- package/es/pagination/style/index.d.ts +99 -0
- package/es/pagination/style/index.js +524 -0
- package/es/popconfirm/PurePanel.d.ts +20 -0
- package/es/popconfirm/PurePanel.js +97 -0
- package/es/popconfirm/index.d.ts +30 -0
- package/es/popconfirm/index.js +96 -0
- package/es/popconfirm/style/index.d.ts +17 -0
- package/es/popconfirm/style/index.js +67 -0
- package/es/popover/PurePanel.d.ts +17 -0
- package/es/popover/PurePanel.js +76 -0
- package/es/popover/index.d.ts +15 -0
- package/es/popover/index.js +98 -0
- package/es/popover/style/index.d.ts +46 -0
- package/es/popover/style/index.js +157 -0
- package/es/progress/Circle.d.ts +10 -0
- package/es/progress/Circle.js +81 -0
- package/es/progress/Line.d.ts +36 -0
- package/es/progress/Line.js +149 -0
- package/es/progress/Steps.d.ts +9 -0
- package/es/progress/Steps.js +44 -0
- package/es/progress/index.d.ts +3 -0
- package/es/progress/index.js +4 -0
- package/es/progress/progress.d.ts +58 -0
- package/es/progress/progress.js +164 -0
- package/es/progress/style/index.d.ts +38 -0
- package/es/progress/style/index.js +300 -0
- package/es/progress/utils.d.ts +10 -0
- package/es/progress/utils.js +81 -0
- package/es/qr-code/QrcodeStatus.d.ts +11 -0
- package/es/qr-code/QrcodeStatus.js +37 -0
- package/es/qr-code/index.d.ts +4 -0
- package/es/qr-code/index.js +106 -0
- package/es/qr-code/interface.d.ts +29 -0
- package/es/qr-code/interface.js +1 -0
- package/es/qr-code/style/index.d.ts +6 -0
- package/es/qr-code/style/index.js +67 -0
- package/es/qrcode/index.d.ts +2 -0
- package/es/qrcode/index.js +6 -0
- package/es/qrcode/interface.d.ts +1 -0
- package/es/qrcode/interface.js +3 -0
- package/es/qrcode/style/index.d.ts +1 -0
- package/es/qrcode/style/index.js +3 -0
- package/es/radio/context.d.ts +7 -0
- package/es/radio/context.js +6 -0
- package/es/radio/group.d.ts +4 -0
- package/es/radio/group.js +116 -0
- package/es/radio/index.d.ts +11 -0
- package/es/radio/index.js +11 -0
- package/es/radio/interface.d.ts +43 -0
- package/es/radio/interface.js +1 -0
- package/es/radio/radio.d.ts +4 -0
- package/es/radio/radio.js +101 -0
- package/es/radio/radioButton.d.ts +6 -0
- package/es/radio/radioButton.js +33 -0
- package/es/radio/style/index.d.ts +76 -0
- package/es/radio/style/index.js +460 -0
- package/es/rate/index.d.ts +8 -0
- package/es/rate/index.js +67 -0
- package/es/rate/style/index.d.ts +27 -0
- package/es/rate/style/index.js +92 -0
- package/es/result/index.d.ts +33 -0
- package/es/result/index.js +111 -0
- package/es/result/noFound.d.ts +3 -0
- package/es/result/noFound.js +237 -0
- package/es/result/serverError.d.ts +3 -0
- package/es/result/serverError.js +277 -0
- package/es/result/style/index.d.ts +27 -0
- package/es/result/style/index.js +111 -0
- package/es/result/unauthorized.d.ts +3 -0
- package/es/result/unauthorized.js +227 -0
- package/es/row/index.d.ts +4 -0
- package/es/row/index.js +4 -0
- package/es/row/style/index.d.ts +2 -0
- package/es/row/style/index.js +3 -0
- package/es/segmented/index.d.ts +26 -0
- package/es/segmented/index.js +79 -0
- package/es/segmented/style/index.d.ts +46 -0
- package/es/segmented/style/index.js +205 -0
- package/es/select/index.d.ts +57 -0
- package/es/select/index.js +222 -0
- package/es/select/mergedBuiltinPlacements.d.ts +4 -0
- package/es/select/mergedBuiltinPlacements.js +34 -0
- package/es/select/style/dropdown.d.ts +4 -0
- package/es/select/style/dropdown.js +139 -0
- package/es/select/style/index.d.ts +4 -0
- package/es/select/style/index.js +221 -0
- package/es/select/style/multiple.d.ts +32 -0
- package/es/select/style/multiple.js +289 -0
- package/es/select/style/single.d.ts +3 -0
- package/es/select/style/single.js +153 -0
- package/es/select/style/token.d.ts +138 -0
- package/es/select/style/token.js +62 -0
- package/es/select/style/variants.d.ts +4 -0
- package/es/select/style/variants.js +157 -0
- package/es/select/useIcons.d.ts +26 -0
- package/es/select/useIcons.js +83 -0
- package/es/select/useShowArrow.d.ts +8 -0
- package/es/select/useShowArrow.js +9 -0
- package/es/skeleton/Avatar.d.ts +7 -0
- package/es/skeleton/Avatar.js +35 -0
- package/es/skeleton/Button.d.ts +8 -0
- package/es/skeleton/Button.js +35 -0
- package/es/skeleton/Element.d.ts +12 -0
- package/es/skeleton/Element.js +32 -0
- package/es/skeleton/Image.d.ts +6 -0
- package/es/skeleton/Image.js +38 -0
- package/es/skeleton/Input.d.ts +8 -0
- package/es/skeleton/Input.js +35 -0
- package/es/skeleton/Node.d.ts +8 -0
- package/es/skeleton/Node.js +31 -0
- package/es/skeleton/Paragraph.d.ts +11 -0
- package/es/skeleton/Paragraph.js +41 -0
- package/es/skeleton/Skeleton.d.ts +32 -0
- package/es/skeleton/Skeleton.js +140 -0
- package/es/skeleton/Title.d.ts +9 -0
- package/es/skeleton/Title.js +20 -0
- package/es/skeleton/index.d.ts +3 -0
- package/es/skeleton/index.js +4 -0
- package/es/skeleton/style/index.d.ts +40 -0
- package/es/skeleton/style/index.js +310 -0
- package/es/slider/Context.d.ts +9 -0
- package/es/slider/Context.js +4 -0
- package/es/slider/SliderTooltip.d.ts +8 -0
- package/es/slider/SliderTooltip.js +44 -0
- package/es/slider/index.d.ts +97 -0
- package/es/slider/index.js +225 -0
- package/es/slider/style/index.d.ts +97 -0
- package/es/slider/style/index.js +331 -0
- package/es/slider/useRafLock.d.ts +1 -0
- package/es/slider/useRafLock.js +21 -0
- package/es/space/Compact.d.ts +25 -0
- package/es/space/Compact.js +99 -0
- package/es/space/Item.d.ts +10 -0
- package/es/space/Item.js +25 -0
- package/es/space/context.d.ts +6 -0
- package/es/space/context.js +5 -0
- package/es/space/index.d.ts +28 -0
- package/es/space/index.js +107 -0
- package/es/space/style/compact.d.ts +8 -0
- package/es/space/style/compact.js +18 -0
- package/es/space/style/index.d.ts +7 -0
- package/es/space/style/index.js +82 -0
- package/es/spin/Indicator/Looper.d.ts +6 -0
- package/es/spin/Indicator/Looper.js +26 -0
- package/es/spin/Indicator/Progress.d.ts +7 -0
- package/es/spin/Indicator/Progress.js +69 -0
- package/es/spin/Indicator/index.d.ts +7 -0
- package/es/spin/Indicator/index.js +24 -0
- package/es/spin/index.d.ts +36 -0
- package/es/spin/index.js +119 -0
- package/es/spin/style/index.d.ts +26 -0
- package/es/spin/style/index.js +282 -0
- package/es/spin/usePercent.d.ts +1 -0
- package/es/spin/usePercent.js +29 -0
- package/es/splitter/Panel.d.ts +7 -0
- package/es/splitter/Panel.js +31 -0
- package/es/splitter/SplitBar.d.ts +19 -0
- package/es/splitter/SplitBar.js +112 -0
- package/es/splitter/Splitter.d.ts +4 -0
- package/es/splitter/Splitter.js +167 -0
- package/es/splitter/hooks/useItems.d.ts +12 -0
- package/es/splitter/hooks/useItems.js +38 -0
- package/es/splitter/hooks/useResizable.d.ts +7 -0
- package/es/splitter/hooks/useResizable.js +45 -0
- package/es/splitter/hooks/useResize.d.ts +6 -0
- package/es/splitter/hooks/useResize.js +117 -0
- package/es/splitter/hooks/useSizes.d.ts +8 -0
- package/es/splitter/hooks/useSizes.js +78 -0
- package/es/splitter/index.d.ts +8 -0
- package/es/splitter/index.js +7 -0
- package/es/splitter/interface.d.ts +64 -0
- package/es/splitter/interface.js +1 -0
- package/es/splitter/style/index.d.ts +27 -0
- package/es/splitter/style/index.js +269 -0
- package/es/statistic/Countdown.d.ts +10 -0
- package/es/statistic/Countdown.js +70 -0
- package/es/statistic/Number.d.ts +8 -0
- package/es/statistic/Number.js +48 -0
- package/es/statistic/Statistic.d.ts +21 -0
- package/es/statistic/Statistic.js +86 -0
- package/es/statistic/index.d.ts +11 -0
- package/es/statistic/index.js +6 -0
- package/es/statistic/interface.d.ts +0 -0
- package/es/statistic/interface.js +1 -0
- package/es/statistic/style/index.d.ts +16 -0
- package/es/statistic/style/index.js +59 -0
- package/es/statistic/utils.d.ts +15 -0
- package/es/statistic/utils.js +47 -0
- package/es/steps/index.d.ts +39 -0
- package/es/steps/index.js +108 -0
- package/es/steps/style/custom-icon.d.ts +5 -0
- package/es/steps/style/custom-icon.js +35 -0
- package/es/steps/style/horizontal.d.ts +5 -0
- package/es/steps/style/horizontal.js +14 -0
- package/es/steps/style/index.d.ts +102 -0
- package/es/steps/style/index.js +306 -0
- package/es/steps/style/inline.d.ts +5 -0
- package/es/steps/style/inline.js +115 -0
- package/es/steps/style/label-placement.d.ts +5 -0
- package/es/steps/style/label-placement.js +51 -0
- package/es/steps/style/nav.d.ts +5 -0
- package/es/steps/style/nav.js +130 -0
- package/es/steps/style/progress-dot.d.ts +5 -0
- package/es/steps/style/progress-dot.js +120 -0
- package/es/steps/style/progress.d.ts +5 -0
- package/es/steps/style/progress.js +69 -0
- package/es/steps/style/rtl.d.ts +5 -0
- package/es/steps/style/rtl.js +39 -0
- package/es/steps/style/small.d.ts +5 -0
- package/es/steps/style/small.js +62 -0
- package/es/steps/style/vertical.d.ts +5 -0
- package/es/steps/style/vertical.js +67 -0
- package/es/steps/useLegacyItems.d.ts +3 -0
- package/es/steps/useLegacyItems.js +26 -0
- package/es/style/compact-item-vertical.d.ts +3 -0
- package/es/style/compact-item-vertical.js +41 -0
- package/es/style/compact-item.d.ts +17 -0
- package/es/style/compact-item.js +63 -0
- package/es/style/index.d.ts +11 -0
- package/es/style/index.js +135 -0
- package/es/style/motion/collapse.d.ts +3 -0
- package/es/style/motion/collapse.js +18 -0
- package/es/style/motion/fade.d.ts +6 -0
- package/es/style/motion/fade.js +37 -0
- package/es/style/motion/index.d.ts +6 -0
- package/es/style/motion/index.js +6 -0
- package/es/style/motion/motion.d.ts +2 -0
- package/es/style/motion/motion.js +35 -0
- package/es/style/motion/move.d.ts +14 -0
- package/es/style/motion/move.js +138 -0
- package/es/style/motion/slide.d.ts +14 -0
- package/es/style/motion/slide.js +143 -0
- package/es/style/motion/zoom.d.ts +18 -0
- package/es/style/motion/zoom.js +184 -0
- package/es/style/placementArrow.d.ts +19 -0
- package/es/style/placementArrow.js +154 -0
- package/es/style/reset.css +253 -0
- package/es/style/roundedArrow.d.ts +7 -0
- package/es/style/roundedArrow.js +76 -0
- package/es/switch/index.d.ts +37 -0
- package/es/switch/index.js +86 -0
- package/es/switch/style/index.d.ts +71 -0
- package/es/switch/style/index.js +316 -0
- package/es/table/Column.d.ts +8 -0
- package/es/table/Column.js +4 -0
- package/es/table/ColumnGroup.d.ts +10 -0
- package/es/table/ColumnGroup.js +4 -0
- package/es/table/ExpandIcon.d.ts +12 -0
- package/es/table/ExpandIcon.js +31 -0
- package/es/table/InternalTable.d.ts +32 -0
- package/es/table/InternalTable.js +392 -0
- package/es/table/RcTable/VirtualTable.d.ts +5 -0
- package/es/table/RcTable/VirtualTable.js +16 -0
- package/es/table/RcTable/index.d.ts +5 -0
- package/es/table/RcTable/index.js +16 -0
- package/es/table/Table.d.ts +17 -0
- package/es/table/Table.js +29 -0
- package/es/table/hooks/useContainerWidth.d.ts +1 -0
- package/es/table/hooks/useContainerWidth.js +14 -0
- package/es/table/hooks/useFilter/FilterDropdown.d.ts +31 -0
- package/es/table/hooks/useFilter/FilterDropdown.js +460 -0
- package/es/table/hooks/useFilter/FilterSearch.d.ts +12 -0
- package/es/table/hooks/useFilter/FilterSearch.js +29 -0
- package/es/table/hooks/useFilter/FilterWrapper.d.ts +8 -0
- package/es/table/hooks/useFilter/FilterWrapper.js +22 -0
- package/es/table/hooks/useFilter/index.d.ts +22 -0
- package/es/table/hooks/useFilter/index.js +199 -0
- package/es/table/hooks/useLazyKVMap.d.ts +4 -0
- package/es/table/hooks/useLazyKVMap.js +29 -0
- package/es/table/hooks/usePagination.d.ts +5 -0
- package/es/table/hooks/usePagination.js +67 -0
- package/es/table/hooks/useSelection.d.ts +20 -0
- package/es/table/hooks/useSelection.js +506 -0
- package/es/table/hooks/useSorter.d.ts +19 -0
- package/es/table/hooks/useSorter.js +364 -0
- package/es/table/hooks/useTitleColumns.d.ts +4 -0
- package/es/table/hooks/useTitleColumns.js +18 -0
- package/es/table/index.d.ts +7 -0
- package/es/table/index.js +4 -0
- package/es/table/interface.d.ts +190 -0
- package/es/table/interface.js +2 -0
- package/es/table/style/bordered.d.ts +5 -0
- package/es/table/style/bordered.js +139 -0
- package/es/table/style/ellipsis.d.ts +5 -0
- package/es/table/style/ellipsis.js +31 -0
- package/es/table/style/empty.d.ts +5 -0
- package/es/table/style/empty.js +21 -0
- package/es/table/style/expand.d.ts +5 -0
- package/es/table/style/expand.js +122 -0
- package/es/table/style/filter.d.ts +4 -0
- package/es/table/style/filter.js +152 -0
- package/es/table/style/fixed.d.ts +5 -0
- package/es/table/style/fixed.js +121 -0
- package/es/table/style/index.d.ts +202 -0
- package/es/table/style/index.js +317 -0
- package/es/table/style/pagination.d.ts +5 -0
- package/es/table/style/pagination.js +34 -0
- package/es/table/style/radius.d.ts +5 -0
- package/es/table/style/radius.js +46 -0
- package/es/table/style/rtl.d.ts +5 -0
- package/es/table/style/rtl.js +45 -0
- package/es/table/style/selection.d.ts +5 -0
- package/es/table/style/selection.js +95 -0
- package/es/table/style/size.d.ts +5 -0
- package/es/table/style/size.js +46 -0
- package/es/table/style/sorter.d.ts +5 -0
- package/es/table/style/sorter.js +92 -0
- package/es/table/style/sticky.d.ts +5 -0
- package/es/table/style/sticky.js +55 -0
- package/es/table/style/summary.d.ts +5 -0
- package/es/table/style/summary.js +28 -0
- package/es/table/style/virtual.d.ts +5 -0
- package/es/table/style/virtual.js +73 -0
- package/es/table/util.d.ts +13 -0
- package/es/table/util.js +32 -0
- package/es/tabs/TabPane.d.ts +5 -0
- package/es/tabs/TabPane.js +5 -0
- package/es/tabs/hooks/useAnimateConfig.d.ts +3 -0
- package/es/tabs/hooks/useAnimateConfig.js +33 -0
- package/es/tabs/hooks/useLegacyItems.d.ts +4 -0
- package/es/tabs/hooks/useLegacyItems.js +44 -0
- package/es/tabs/index.d.ts +29 -0
- package/es/tabs/index.js +115 -0
- package/es/tabs/style/index.d.ts +136 -0
- package/es/tabs/style/index.js +830 -0
- package/es/tabs/style/motion.d.ts +4 -0
- package/es/tabs/style/motion.js +38 -0
- package/es/tag/CheckableTag.d.ts +17 -0
- package/es/tag/CheckableTag.js +46 -0
- package/es/tag/index.d.ts +27 -0
- package/es/tag/index.js +119 -0
- package/es/tag/style/index.d.ts +25 -0
- package/es/tag/style/index.js +118 -0
- package/es/tag/style/presetCmp.d.ts +2 -0
- package/es/tag/style/presetCmp.js +30 -0
- package/es/tag/style/statusCmp.d.ts +2 -0
- package/es/tag/style/statusCmp.js +21 -0
- package/es/theme/context.d.ts +31 -0
- package/es/theme/context.js +15 -0
- package/es/theme/getDesignToken.d.ts +4 -0
- package/es/theme/getDesignToken.js +12 -0
- package/es/theme/index.d.ts +35 -0
- package/es/theme/index.js +38 -0
- package/es/theme/interface/alias.d.ts +545 -0
- package/es/theme/interface/alias.js +1 -0
- package/es/theme/interface/components.d.ts +135 -0
- package/es/theme/interface/components.js +1 -0
- package/es/theme/interface/cssinjs-utils.d.ts +10 -0
- package/es/theme/interface/cssinjs-utils.js +1 -0
- package/es/theme/interface/index.d.ts +15 -0
- package/es/theme/interface/index.js +1 -0
- package/es/theme/interface/maps/colors.d.ts +530 -0
- package/es/theme/interface/maps/colors.js +1 -0
- package/es/theme/interface/maps/font.d.ts +117 -0
- package/es/theme/interface/maps/font.js +1 -0
- package/es/theme/interface/maps/index.d.ts +29 -0
- package/es/theme/interface/maps/index.js +4 -0
- package/es/theme/interface/maps/size.d.ts +69 -0
- package/es/theme/interface/maps/size.js +1 -0
- package/es/theme/interface/maps/style.d.ts +42 -0
- package/es/theme/interface/maps/style.js +1 -0
- package/es/theme/interface/presetColors.d.ts +11 -0
- package/es/theme/interface/presetColors.js +1 -0
- package/es/theme/interface/seeds.d.ts +225 -0
- package/es/theme/interface/seeds.js +1 -0
- package/es/theme/internal.d.ts +13 -0
- package/es/theme/internal.js +18 -0
- package/es/theme/themes/ColorMap.d.ts +15 -0
- package/es/theme/themes/ColorMap.js +1 -0
- package/es/theme/themes/compact/genCompactSizeMapToken.d.ts +2 -0
- package/es/theme/themes/compact/genCompactSizeMapToken.js +18 -0
- package/es/theme/themes/compact/index.d.ts +4 -0
- package/es/theme/themes/compact/index.js +16 -0
- package/es/theme/themes/dark/colorAlgorithm.d.ts +2 -0
- package/es/theme/themes/dark/colorAlgorithm.js +6 -0
- package/es/theme/themes/dark/colors.d.ts +3 -0
- package/es/theme/themes/dark/colors.js +48 -0
- package/es/theme/themes/dark/index.d.ts +4 -0
- package/es/theme/themes/dark/index.js +27 -0
- package/es/theme/themes/default/colorAlgorithm.d.ts +2 -0
- package/es/theme/themes/default/colorAlgorithm.js +6 -0
- package/es/theme/themes/default/colors.d.ts +3 -0
- package/es/theme/themes/default/colors.js +46 -0
- package/es/theme/themes/default/index.d.ts +2 -0
- package/es/theme/themes/default/index.js +29 -0
- package/es/theme/themes/seed.d.ts +4 -0
- package/es/theme/themes/seed.js +67 -0
- package/es/theme/themes/shared/genColorMapToken.d.ts +8 -0
- package/es/theme/themes/shared/genColorMapToken.js +84 -0
- package/es/theme/themes/shared/genCommonMapToken.d.ts +2 -0
- package/es/theme/themes/shared/genCommonMapToken.js +17 -0
- package/es/theme/themes/shared/genControlHeight.d.ts +3 -0
- package/es/theme/themes/shared/genControlHeight.js +11 -0
- package/es/theme/themes/shared/genFontMapToken.d.ts +3 -0
- package/es/theme/themes/shared/genFontMapToken.js +35 -0
- package/es/theme/themes/shared/genFontSizes.d.ts +5 -0
- package/es/theme/themes/shared/genFontSizes.js +18 -0
- package/es/theme/themes/shared/genRadius.d.ts +3 -0
- package/es/theme/themes/shared/genRadius.js +46 -0
- package/es/theme/themes/shared/genSizeMapToken.d.ts +2 -0
- package/es/theme/themes/shared/genSizeMapToken.js +25 -0
- package/es/theme/useToken.d.ts +19 -0
- package/es/theme/useToken.js +120 -0
- package/es/theme/util/alias.d.ts +12 -0
- package/es/theme/util/alias.js +176 -0
- package/es/theme/util/genPresetColor.d.ts +15 -0
- package/es/theme/util/genPresetColor.js +15 -0
- package/es/theme/util/genStyleUtils.d.ts +26 -0
- package/es/theme/util/genStyleUtils.js +47 -0
- package/es/theme/util/getAlphaColor.d.ts +2 -0
- package/es/theme/util/getAlphaColor.js +42 -0
- package/es/theme/util/useResetIconStyle.d.ts +3 -0
- package/es/theme/util/useResetIconStyle.js +24 -0
- package/es/time-picker/index.d.ts +30 -0
- package/es/time-picker/index.js +63 -0
- package/es/time-picker/locale/ar_EG.d.ts +3 -0
- package/es/time-picker/locale/ar_EG.js +4 -0
- package/es/time-picker/locale/az_AZ.d.ts +3 -0
- package/es/time-picker/locale/az_AZ.js +5 -0
- package/es/time-picker/locale/bg_BG.d.ts +3 -0
- package/es/time-picker/locale/bg_BG.js +4 -0
- package/es/time-picker/locale/bn_BD.d.ts +3 -0
- package/es/time-picker/locale/bn_BD.js +5 -0
- package/es/time-picker/locale/by_BY.d.ts +3 -0
- package/es/time-picker/locale/by_BY.js +5 -0
- package/es/time-picker/locale/ca_ES.d.ts +3 -0
- package/es/time-picker/locale/ca_ES.js +4 -0
- package/es/time-picker/locale/cs_CZ.d.ts +3 -0
- package/es/time-picker/locale/cs_CZ.js +4 -0
- package/es/time-picker/locale/da_DK.d.ts +3 -0
- package/es/time-picker/locale/da_DK.js +5 -0
- package/es/time-picker/locale/de_DE.d.ts +3 -0
- package/es/time-picker/locale/de_DE.js +5 -0
- package/es/time-picker/locale/el_GR.d.ts +3 -0
- package/es/time-picker/locale/el_GR.js +4 -0
- package/es/time-picker/locale/en_GB.d.ts +3 -0
- package/es/time-picker/locale/en_GB.js +4 -0
- package/es/time-picker/locale/en_US.d.ts +3 -0
- package/es/time-picker/locale/en_US.js +5 -0
- package/es/time-picker/locale/es_ES.d.ts +3 -0
- package/es/time-picker/locale/es_ES.js +4 -0
- package/es/time-picker/locale/et_EE.d.ts +3 -0
- package/es/time-picker/locale/et_EE.js +4 -0
- package/es/time-picker/locale/eu_ES.d.ts +3 -0
- package/es/time-picker/locale/eu_ES.js +4 -0
- package/es/time-picker/locale/fa_IR.d.ts +3 -0
- package/es/time-picker/locale/fa_IR.js +5 -0
- package/es/time-picker/locale/fi_FI.d.ts +3 -0
- package/es/time-picker/locale/fi_FI.js +4 -0
- package/es/time-picker/locale/fr_BE.d.ts +3 -0
- package/es/time-picker/locale/fr_BE.js +5 -0
- package/es/time-picker/locale/fr_CA.d.ts +3 -0
- package/es/time-picker/locale/fr_CA.js +5 -0
- package/es/time-picker/locale/fr_FR.d.ts +3 -0
- package/es/time-picker/locale/fr_FR.js +5 -0
- package/es/time-picker/locale/ga_IE.d.ts +3 -0
- package/es/time-picker/locale/ga_IE.js +5 -0
- package/es/time-picker/locale/gl_ES.d.ts +3 -0
- package/es/time-picker/locale/gl_ES.js +4 -0
- package/es/time-picker/locale/he_IL.d.ts +3 -0
- package/es/time-picker/locale/he_IL.js +4 -0
- package/es/time-picker/locale/hi_IN.d.ts +3 -0
- package/es/time-picker/locale/hi_IN.js +5 -0
- package/es/time-picker/locale/hr_HR.d.ts +3 -0
- package/es/time-picker/locale/hr_HR.js +5 -0
- package/es/time-picker/locale/hu_HU.d.ts +3 -0
- package/es/time-picker/locale/hu_HU.js +4 -0
- package/es/time-picker/locale/id_ID.d.ts +3 -0
- package/es/time-picker/locale/id_ID.js +5 -0
- package/es/time-picker/locale/is_IS.d.ts +3 -0
- package/es/time-picker/locale/is_IS.js +4 -0
- package/es/time-picker/locale/it_IT.d.ts +3 -0
- package/es/time-picker/locale/it_IT.js +4 -0
- package/es/time-picker/locale/ja_JP.d.ts +3 -0
- package/es/time-picker/locale/ja_JP.js +5 -0
- package/es/time-picker/locale/ka_GE.d.ts +3 -0
- package/es/time-picker/locale/ka_GE.js +5 -0
- package/es/time-picker/locale/kk_KZ.d.ts +3 -0
- package/es/time-picker/locale/kk_KZ.js +5 -0
- package/es/time-picker/locale/km_KH.d.ts +3 -0
- package/es/time-picker/locale/km_KH.js +5 -0
- package/es/time-picker/locale/kmr_IQ.d.ts +3 -0
- package/es/time-picker/locale/kmr_IQ.js +4 -0
- package/es/time-picker/locale/kn_IN.d.ts +3 -0
- package/es/time-picker/locale/kn_IN.js +4 -0
- package/es/time-picker/locale/ko_KR.d.ts +3 -0
- package/es/time-picker/locale/ko_KR.js +5 -0
- package/es/time-picker/locale/lt_LT.d.ts +3 -0
- package/es/time-picker/locale/lt_LT.js +5 -0
- package/es/time-picker/locale/lv_LV.d.ts +3 -0
- package/es/time-picker/locale/lv_LV.js +4 -0
- package/es/time-picker/locale/mk_MK.d.ts +3 -0
- package/es/time-picker/locale/mk_MK.js +4 -0
- package/es/time-picker/locale/ml_IN.d.ts +3 -0
- package/es/time-picker/locale/ml_IN.js +5 -0
- package/es/time-picker/locale/mn_MN.d.ts +3 -0
- package/es/time-picker/locale/mn_MN.js +4 -0
- package/es/time-picker/locale/ms_MY.d.ts +3 -0
- package/es/time-picker/locale/ms_MY.js +4 -0
- package/es/time-picker/locale/my_MM.d.ts +3 -0
- package/es/time-picker/locale/my_MM.js +5 -0
- package/es/time-picker/locale/nb_NO.d.ts +3 -0
- package/es/time-picker/locale/nb_NO.js +5 -0
- package/es/time-picker/locale/nl_BE.d.ts +3 -0
- package/es/time-picker/locale/nl_BE.js +5 -0
- package/es/time-picker/locale/nl_NL.d.ts +3 -0
- package/es/time-picker/locale/nl_NL.js +5 -0
- package/es/time-picker/locale/pl_PL.d.ts +3 -0
- package/es/time-picker/locale/pl_PL.js +4 -0
- package/es/time-picker/locale/pt_BR.d.ts +3 -0
- package/es/time-picker/locale/pt_BR.js +4 -0
- package/es/time-picker/locale/pt_PT.d.ts +3 -0
- package/es/time-picker/locale/pt_PT.js +4 -0
- package/es/time-picker/locale/ro_RO.d.ts +3 -0
- package/es/time-picker/locale/ro_RO.js +4 -0
- package/es/time-picker/locale/ru_RU.d.ts +4 -0
- package/es/time-picker/locale/ru_RU.js +5 -0
- package/es/time-picker/locale/si_LK.d.ts +3 -0
- package/es/time-picker/locale/si_LK.js +5 -0
- package/es/time-picker/locale/sk_SK.d.ts +3 -0
- package/es/time-picker/locale/sk_SK.js +4 -0
- package/es/time-picker/locale/sl_SI.d.ts +3 -0
- package/es/time-picker/locale/sl_SI.js +4 -0
- package/es/time-picker/locale/sr_RS.d.ts +3 -0
- package/es/time-picker/locale/sr_RS.js +5 -0
- package/es/time-picker/locale/sv_SE.d.ts +3 -0
- package/es/time-picker/locale/sv_SE.js +4 -0
- package/es/time-picker/locale/ta_IN.d.ts +3 -0
- package/es/time-picker/locale/ta_IN.js +4 -0
- package/es/time-picker/locale/th_TH.d.ts +3 -0
- package/es/time-picker/locale/th_TH.js +4 -0
- package/es/time-picker/locale/tk_TK.d.ts +3 -0
- package/es/time-picker/locale/tk_TK.js +5 -0
- package/es/time-picker/locale/tr_TR.d.ts +3 -0
- package/es/time-picker/locale/tr_TR.js +5 -0
- package/es/time-picker/locale/uk_UA.d.ts +3 -0
- package/es/time-picker/locale/uk_UA.js +5 -0
- package/es/time-picker/locale/ur_PK.d.ts +3 -0
- package/es/time-picker/locale/ur_PK.js +5 -0
- package/es/time-picker/locale/uz_UZ.d.ts +3 -0
- package/es/time-picker/locale/uz_UZ.js +5 -0
- package/es/time-picker/locale/vi_VN.d.ts +3 -0
- package/es/time-picker/locale/vi_VN.js +5 -0
- package/es/time-picker/locale/zh_CN.d.ts +3 -0
- package/es/time-picker/locale/zh_CN.js +5 -0
- package/es/time-picker/locale/zh_TW.d.ts +3 -0
- package/es/time-picker/locale/zh_TW.js +4 -0
- package/es/timeline/Timeline.d.ts +20 -0
- package/es/timeline/Timeline.js +58 -0
- package/es/timeline/TimelineItem.d.ts +20 -0
- package/es/timeline/TimelineItem.js +54 -0
- package/es/timeline/TimelineItemList.d.ts +7 -0
- package/es/timeline/TimelineItemList.js +81 -0
- package/es/timeline/index.d.ts +4 -0
- package/es/timeline/index.js +4 -0
- package/es/timeline/style/index.d.ts +31 -0
- package/es/timeline/style/index.js +196 -0
- package/es/timeline/useItems.d.ts +4 -0
- package/es/timeline/useItems.js +13 -0
- package/es/tooltip/PurePanel.d.ts +7 -0
- package/es/tooltip/PurePanel.js +40 -0
- package/es/tooltip/index.d.ts +80 -0
- package/es/tooltip/index.js +187 -0
- package/es/tooltip/style/index.d.ts +13 -0
- package/es/tooltip/style/index.js +118 -0
- package/es/tooltip/util.d.ts +6 -0
- package/es/tooltip/util.js +20 -0
- package/es/tour/PurePanel.d.ts +6 -0
- package/es/tour/PurePanel.js +63 -0
- package/es/tour/index.d.ts +7 -0
- package/es/tour/index.js +86 -0
- package/es/tour/interface.d.ts +31 -0
- package/es/tour/interface.js +1 -0
- package/es/tour/panelRender.d.ts +12 -0
- package/es/tour/panelRender.js +111 -0
- package/es/tour/style/index.d.ts +28 -0
- package/es/tour/style/index.js +210 -0
- package/es/transfer/ListBody.d.ts +17 -0
- package/es/transfer/ListBody.js +105 -0
- package/es/transfer/ListItem.d.ts +15 -0
- package/es/transfer/ListItem.js +54 -0
- package/es/transfer/hooks/useData.d.ts +5 -0
- package/es/transfer/hooks/useData.js +29 -0
- package/es/transfer/hooks/useSelection.d.ts +9 -0
- package/es/transfer/hooks/useSelection.js +37 -0
- package/es/transfer/index.d.ts +91 -0
- package/es/transfer/index.js +300 -0
- package/es/transfer/interface.d.ts +7 -0
- package/es/transfer/interface.js +1 -0
- package/es/transfer/list.d.ts +48 -0
- package/es/transfer/list.js +263 -0
- package/es/transfer/operation.d.ts +17 -0
- package/es/transfer/operation.js +41 -0
- package/es/transfer/search.d.ts +11 -0
- package/es/transfer/search.js +34 -0
- package/es/transfer/style/index.d.ts +36 -0
- package/es/transfer/style/index.js +297 -0
- package/es/tree/DirectoryTree.d.ts +16 -0
- package/es/tree/DirectoryTree.js +169 -0
- package/es/tree/Tree.d.ts +136 -0
- package/es/tree/Tree.js +110 -0
- package/es/tree/index.d.ts +16 -0
- package/es/tree/index.js +9 -0
- package/es/tree/style/directory.d.ts +3 -0
- package/es/tree/style/directory.js +52 -0
- package/es/tree/style/index.d.ts +57 -0
- package/es/tree/style/index.js +360 -0
- package/es/tree/utils/dictUtil.d.ts +13 -0
- package/es/tree/utils/dictUtil.js +72 -0
- package/es/tree/utils/dropIndicator.d.ts +11 -0
- package/es/tree/utils/dropIndicator.js +37 -0
- package/es/tree/utils/iconUtil.d.ts +13 -0
- package/es/tree/utils/iconUtil.js +77 -0
- package/es/tree-select/index.d.ts +61 -0
- package/es/tree-select/index.js +221 -0
- package/es/tree-select/style/index.d.ts +6 -0
- package/es/tree-select/style/index.js +61 -0
- package/es/typography/Base/CopyBtn.d.ts +13 -0
- package/es/typography/Base/CopyBtn.js +43 -0
- package/es/typography/Base/Ellipsis.d.ts +18 -0
- package/es/typography/Base/Ellipsis.js +200 -0
- package/es/typography/Base/EllipsisTooltip.d.ts +10 -0
- package/es/typography/Base/EllipsisTooltip.js +21 -0
- package/es/typography/Base/index.d.ts +58 -0
- package/es/typography/Base/index.js +357 -0
- package/es/typography/Base/util.d.ts +10 -0
- package/es/typography/Base/util.js +39 -0
- package/es/typography/Editable.d.ts +20 -0
- package/es/typography/Editable.js +113 -0
- package/es/typography/Link.d.ts +7 -0
- package/es/typography/Link.js +35 -0
- package/es/typography/Paragraph.d.ts +6 -0
- package/es/typography/Paragraph.js +10 -0
- package/es/typography/Text.d.ts +7 -0
- package/es/typography/Text.js +37 -0
- package/es/typography/Title.d.ts +8 -0
- package/es/typography/Title.js +31 -0
- package/es/typography/Typography.d.ts +18 -0
- package/es/typography/Typography.js +59 -0
- package/es/typography/hooks/useCopyClick.d.ts +11 -0
- package/es/typography/hooks/useCopyClick.js +77 -0
- package/es/typography/hooks/useMergedConfig.d.ts +1 -0
- package/es/typography/hooks/useMergedConfig.js +7 -0
- package/es/typography/hooks/usePrevious.d.ts +2 -0
- package/es/typography/hooks/usePrevious.js +9 -0
- package/es/typography/hooks/useTooltipProps.d.ts +60 -0
- package/es/typography/hooks/useTooltipProps.js +22 -0
- package/es/typography/index.d.ts +13 -0
- package/es/typography/index.js +13 -0
- package/es/typography/style/index.d.ts +18 -0
- package/es/typography/style/index.js +95 -0
- package/es/typography/style/mixins.d.ts +9 -0
- package/es/typography/style/mixins.js +227 -0
- package/es/upload/Dragger.d.ts +10 -0
- package/es/upload/Dragger.js +33 -0
- package/es/upload/Upload.d.ts +23 -0
- package/es/upload/Upload.js +419 -0
- package/es/upload/UploadList/ListItem.d.ts +28 -0
- package/es/upload/UploadList/ListItem.js +170 -0
- package/es/upload/UploadList/index.d.ts +8 -0
- package/es/upload/UploadList/index.js +197 -0
- package/es/upload/index.d.ts +13 -0
- package/es/upload/index.js +8 -0
- package/es/upload/interface.d.ts +138 -0
- package/es/upload/interface.js +1 -0
- package/es/upload/style/dragger.d.ts +4 -0
- package/es/upload/style/dragger.js +71 -0
- package/es/upload/style/index.d.ts +16 -0
- package/es/upload/style/index.js +50 -0
- package/es/upload/style/list.d.ts +4 -0
- package/es/upload/style/list.js +106 -0
- package/es/upload/style/motion.d.ts +4 -0
- package/es/upload/style/motion.js +45 -0
- package/es/upload/style/picture.d.ts +5 -0
- package/es/upload/style/picture.js +232 -0
- package/es/upload/style/rtl.d.ts +4 -0
- package/es/upload/style/rtl.js +12 -0
- package/es/upload/utils.d.ts +8 -0
- package/es/upload/utils.js +123 -0
- package/es/version/index.d.ts +2 -0
- package/es/version/index.js +6 -0
- package/es/version/token-meta.json +1 -0
- package/es/version/token.json +1 -0
- package/es/version/version.d.ts +2 -0
- package/es/version/version.js +1 -0
- package/es/watermark/context.d.ts +8 -0
- package/es/watermark/context.js +22 -0
- package/es/watermark/index.d.ts +26 -0
- package/es/watermark/index.js +220 -0
- package/es/watermark/useClips.d.ts +7 -0
- package/es/watermark/useClips.js +94 -0
- package/es/watermark/useRafDebounce.d.ts +4 -0
- package/es/watermark/useRafDebounce.js +21 -0
- package/es/watermark/useWatermark.d.ts +13 -0
- package/es/watermark/useWatermark.js +43 -0
- package/es/watermark/utils.d.ts +7 -0
- package/es/watermark/utils.js +24 -0
- package/lib/_util/ActionButton.d.ts +19 -0
- package/lib/_util/ActionButton.js +108 -0
- package/lib/_util/ContextIsolator.d.ts +3 -0
- package/lib/_util/ContextIsolator.js +33 -0
- package/lib/_util/PurePanel.d.ts +9 -0
- package/lib/_util/PurePanel.js +88 -0
- package/lib/_util/aria-data-attrs.d.ts +4 -0
- package/lib/_util/aria-data-attrs.js +5 -0
- package/lib/_util/capitalize.d.ts +1 -0
- package/lib/_util/capitalize.js +13 -0
- package/lib/_util/colors.d.ts +13 -0
- package/lib/_util/colors.js +27 -0
- package/lib/_util/easings.d.ts +1 -0
- package/lib/_util/easings.js +16 -0
- package/lib/_util/extendsObject.d.ts +3 -0
- package/lib/_util/extendsObject.js +22 -0
- package/lib/_util/gapSize.d.ts +3 -0
- package/lib/_util/gapSize.js +17 -0
- package/lib/_util/getAllowClear.d.ts +4 -0
- package/lib/_util/getAllowClear.js +22 -0
- package/lib/_util/getRenderPropValue.d.ts +3 -0
- package/lib/_util/getRenderPropValue.js +13 -0
- package/lib/_util/getScroll.d.ts +3 -0
- package/lib/_util/getScroll.js +37 -0
- package/lib/_util/hooks/useClosable.d.ts +31 -0
- package/lib/_util/hooks/useClosable.js +119 -0
- package/lib/_util/hooks/useForceUpdate.d.ts +2 -0
- package/lib/_util/hooks/useForceUpdate.js +12 -0
- package/lib/_util/hooks/useMultipleSelect.d.ts +6 -0
- package/lib/_util/hooks/useMultipleSelect.js +40 -0
- package/lib/_util/hooks/usePatchElement.d.ts +5 -0
- package/lib/_util/hooks/usePatchElement.js +23 -0
- package/lib/_util/hooks/useProxyImperativeHandle.d.ts +4 -0
- package/lib/_util/hooks/useProxyImperativeHandle.js +41 -0
- package/lib/_util/hooks/useSyncState.d.ts +3 -0
- package/lib/_util/hooks/useSyncState.js +19 -0
- package/lib/_util/hooks/useUniqueMemo.d.ts +6 -0
- package/lib/_util/hooks/useUniqueMemo.js +99 -0
- package/lib/_util/hooks/useZIndex.d.ts +8 -0
- package/lib/_util/hooks/useZIndex.js +72 -0
- package/lib/_util/isNumeric.d.ts +2 -0
- package/lib/_util/isNumeric.js +8 -0
- package/lib/_util/motion.d.ts +7 -0
- package/lib/_util/motion.js +47 -0
- package/lib/_util/placements.d.ts +21 -0
- package/lib/_util/placements.js +185 -0
- package/lib/_util/reactNode.d.ts +7 -0
- package/lib/_util/reactNode.js +23 -0
- package/lib/_util/responsiveObserver.d.ts +22 -0
- package/lib/_util/responsiveObserver.js +115 -0
- package/lib/_util/scrollTo.d.ts +10 -0
- package/lib/_util/scrollTo.js +39 -0
- package/lib/_util/statusUtils.d.ts +6 -0
- package/lib/_util/statusUtils.js +21 -0
- package/lib/_util/styleChecker.d.ts +3 -0
- package/lib/_util/styleChecker.js +17 -0
- package/lib/_util/throttleByAnimationFrame.d.ts +5 -0
- package/lib/_util/throttleByAnimationFrame.js +27 -0
- package/lib/_util/toList.d.ts +1 -0
- package/lib/_util/toList.js +10 -0
- package/lib/_util/transKeys.d.ts +3 -0
- package/lib/_util/transKeys.js +27 -0
- package/lib/_util/type.d.ts +54 -0
- package/lib/_util/type.js +5 -0
- package/lib/_util/warning.d.ts +31 -0
- package/lib/_util/warning.js +68 -0
- package/lib/_util/wave/WaveEffect.d.ts +8 -0
- package/lib/_util/wave/WaveEffect.js +136 -0
- package/lib/_util/wave/index.d.ts +9 -0
- package/lib/_util/wave/index.js +66 -0
- package/lib/_util/wave/interface.d.ts +11 -0
- package/lib/_util/wave/interface.js +8 -0
- package/lib/_util/wave/style.d.ts +7 -0
- package/lib/_util/wave/style.js +36 -0
- package/lib/_util/wave/useWave.d.ts +4 -0
- package/lib/_util/wave/useWave.js +49 -0
- package/lib/_util/wave/util.d.ts +2 -0
- package/lib/_util/wave/util.js +29 -0
- package/lib/_util/zindexContext.d.ts +3 -0
- package/lib/_util/zindexContext.js +13 -0
- package/lib/affix/index.d.ts +22 -0
- package/lib/affix/index.js +206 -0
- package/lib/affix/style/index.d.ts +11 -0
- package/lib/affix/style/index.js +25 -0
- package/lib/affix/utils.d.ts +4 -0
- package/lib/affix/utils.js +27 -0
- package/lib/alert/Alert.d.ts +42 -0
- package/lib/alert/Alert.js +223 -0
- package/lib/alert/ErrorBoundary.d.ts +24 -0
- package/lib/alert/ErrorBoundary.js +71 -0
- package/lib/alert/index.d.ts +8 -0
- package/lib/alert/index.js +13 -0
- package/lib/alert/style/index.d.ts +26 -0
- package/lib/alert/style/index.js +187 -0
- package/lib/anchor/Anchor.d.ts +59 -0
- package/lib/anchor/Anchor.js +247 -0
- package/lib/anchor/AnchorLink.d.ts +14 -0
- package/lib/anchor/AnchorLink.js +77 -0
- package/lib/anchor/context.d.ts +4 -0
- package/lib/anchor/context.js +10 -0
- package/lib/anchor/index.d.ts +10 -0
- package/lib/anchor/index.js +13 -0
- package/lib/anchor/style/index.d.ts +16 -0
- package/lib/anchor/style/index.js +149 -0
- package/lib/app/context.d.ts +16 -0
- package/lib/app/context.js +15 -0
- package/lib/app/index.d.ts +16 -0
- package/lib/app/index.js +71 -0
- package/lib/app/style/index.d.ts +6 -0
- package/lib/app/style/index.js +32 -0
- package/lib/auto-complete/index.d.ts +28 -0
- package/lib/auto-complete/index.js +109 -0
- package/lib/avatar/AvatarContext.d.ts +9 -0
- package/lib/avatar/AvatarContext.js +10 -0
- package/lib/avatar/avatar.d.ts +26 -0
- package/lib/avatar/avatar.js +181 -0
- package/lib/avatar/group.d.ts +27 -0
- package/lib/avatar/group.js +108 -0
- package/lib/avatar/index.d.ts +10 -0
- package/lib/avatar/index.js +19 -0
- package/lib/avatar/style/index.d.ts +51 -0
- package/lib/avatar/style/index.js +135 -0
- package/lib/back-top/index.d.ts +14 -0
- package/lib/back-top/index.js +100 -0
- package/lib/back-top/style/index.d.ts +12 -0
- package/lib/back-top/style/index.js +99 -0
- package/lib/badge/Ribbon.d.ts +16 -0
- package/lib/badge/Ribbon.js +59 -0
- package/lib/badge/ScrollNumber.d.ts +18 -0
- package/lib/badge/ScrollNumber.js +76 -0
- package/lib/badge/SingleNumber.d.ts +14 -0
- package/lib/badge/SingleNumber.js +109 -0
- package/lib/badge/index.d.ts +41 -0
- package/lib/badge/index.js +192 -0
- package/lib/badge/style/index.d.ts +104 -0
- package/lib/badge/style/index.js +334 -0
- package/lib/badge/style/ribbon.d.ts +2 -0
- package/lib/badge/style/ribbon.js +87 -0
- package/lib/breadcrumb/Breadcrumb.d.ts +57 -0
- package/lib/breadcrumb/Breadcrumb.js +158 -0
- package/lib/breadcrumb/BreadcrumbItem.d.ts +31 -0
- package/lib/breadcrumb/BreadcrumbItem.js +106 -0
- package/lib/breadcrumb/BreadcrumbSeparator.d.ts +4 -0
- package/lib/breadcrumb/BreadcrumbSeparator.js +24 -0
- package/lib/breadcrumb/index.d.ts +4 -0
- package/lib/breadcrumb/index.js +10 -0
- package/lib/breadcrumb/style/index.d.ts +41 -0
- package/lib/breadcrumb/style/index.js +102 -0
- package/lib/breadcrumb/useItemRender.d.ts +8 -0
- package/lib/breadcrumb/useItemRender.js +63 -0
- package/lib/breadcrumb/useItems.d.ts +6 -0
- package/lib/breadcrumb/useItems.js +50 -0
- package/lib/button/IconWrapper.d.ts +9 -0
- package/lib/button/IconWrapper.js +26 -0
- package/lib/button/LoadingIcon.d.ts +10 -0
- package/lib/button/LoadingIcon.js +81 -0
- package/lib/button/button-group.d.ts +12 -0
- package/lib/button/button-group.js +62 -0
- package/lib/button/button.d.ts +44 -0
- package/lib/button/button.js +242 -0
- package/lib/button/buttonHelpers.d.ts +18 -0
- package/lib/button/buttonHelpers.js +73 -0
- package/lib/button/index.d.ts +6 -0
- package/lib/button/index.js +23 -0
- package/lib/button/style/compactCmp.d.ts +2 -0
- package/lib/button/style/compactCmp.js +64 -0
- package/lib/button/style/group.d.ts +4 -0
- package/lib/button/style/group.js +72 -0
- package/lib/button/style/index.d.ts +4 -0
- package/lib/button/style/index.js +388 -0
- package/lib/button/style/token.d.ts +233 -0
- package/lib/button/style/token.js +78 -0
- package/lib/calendar/Header.d.ts +17 -0
- package/lib/calendar/Header.js +168 -0
- package/lib/calendar/generateCalendar.d.ts +44 -0
- package/lib/calendar/generateCalendar.js +211 -0
- package/lib/calendar/index.d.ts +10 -0
- package/lib/calendar/index.js +13 -0
- package/lib/calendar/locale/ar_EG.d.ts +2 -0
- package/lib/calendar/locale/ar_EG.js +9 -0
- package/lib/calendar/locale/az_AZ.d.ts +2 -0
- package/lib/calendar/locale/az_AZ.js +9 -0
- package/lib/calendar/locale/bg_BG.d.ts +2 -0
- package/lib/calendar/locale/bg_BG.js +9 -0
- package/lib/calendar/locale/bn_BD.d.ts +2 -0
- package/lib/calendar/locale/bn_BD.js +9 -0
- package/lib/calendar/locale/by_BY.d.ts +2 -0
- package/lib/calendar/locale/by_BY.js +9 -0
- package/lib/calendar/locale/ca_ES.d.ts +2 -0
- package/lib/calendar/locale/ca_ES.js +9 -0
- package/lib/calendar/locale/cs_CZ.d.ts +2 -0
- package/lib/calendar/locale/cs_CZ.js +9 -0
- package/lib/calendar/locale/da_DK.d.ts +2 -0
- package/lib/calendar/locale/da_DK.js +9 -0
- package/lib/calendar/locale/de_DE.d.ts +2 -0
- package/lib/calendar/locale/de_DE.js +9 -0
- package/lib/calendar/locale/el_GR.d.ts +2 -0
- package/lib/calendar/locale/el_GR.js +9 -0
- package/lib/calendar/locale/en_GB.d.ts +2 -0
- package/lib/calendar/locale/en_GB.js +9 -0
- package/lib/calendar/locale/en_US.d.ts +2 -0
- package/lib/calendar/locale/en_US.js +9 -0
- package/lib/calendar/locale/es_ES.d.ts +2 -0
- package/lib/calendar/locale/es_ES.js +9 -0
- package/lib/calendar/locale/et_EE.d.ts +2 -0
- package/lib/calendar/locale/et_EE.js +9 -0
- package/lib/calendar/locale/eu_ES.d.ts +2 -0
- package/lib/calendar/locale/eu_ES.js +9 -0
- package/lib/calendar/locale/fa_IR.d.ts +2 -0
- package/lib/calendar/locale/fa_IR.js +9 -0
- package/lib/calendar/locale/fi_FI.d.ts +2 -0
- package/lib/calendar/locale/fi_FI.js +9 -0
- package/lib/calendar/locale/fr_BE.d.ts +2 -0
- package/lib/calendar/locale/fr_BE.js +9 -0
- package/lib/calendar/locale/fr_CA.d.ts +2 -0
- package/lib/calendar/locale/fr_CA.js +9 -0
- package/lib/calendar/locale/fr_FR.d.ts +2 -0
- package/lib/calendar/locale/fr_FR.js +9 -0
- package/lib/calendar/locale/ga_IE.d.ts +2 -0
- package/lib/calendar/locale/ga_IE.js +9 -0
- package/lib/calendar/locale/gl_ES.d.ts +2 -0
- package/lib/calendar/locale/gl_ES.js +9 -0
- package/lib/calendar/locale/he_IL.d.ts +2 -0
- package/lib/calendar/locale/he_IL.js +9 -0
- package/lib/calendar/locale/hi_IN.d.ts +2 -0
- package/lib/calendar/locale/hi_IN.js +9 -0
- package/lib/calendar/locale/hr_HR.d.ts +2 -0
- package/lib/calendar/locale/hr_HR.js +9 -0
- package/lib/calendar/locale/hu_HU.d.ts +2 -0
- package/lib/calendar/locale/hu_HU.js +9 -0
- package/lib/calendar/locale/id_ID.d.ts +2 -0
- package/lib/calendar/locale/id_ID.js +9 -0
- package/lib/calendar/locale/is_IS.d.ts +2 -0
- package/lib/calendar/locale/is_IS.js +9 -0
- package/lib/calendar/locale/it_IT.d.ts +2 -0
- package/lib/calendar/locale/it_IT.js +9 -0
- package/lib/calendar/locale/ja_JP.d.ts +2 -0
- package/lib/calendar/locale/ja_JP.js +9 -0
- package/lib/calendar/locale/ka_GE.d.ts +2 -0
- package/lib/calendar/locale/ka_GE.js +9 -0
- package/lib/calendar/locale/kk_KZ.d.ts +2 -0
- package/lib/calendar/locale/kk_KZ.js +9 -0
- package/lib/calendar/locale/km_KH.d.ts +2 -0
- package/lib/calendar/locale/km_KH.js +9 -0
- package/lib/calendar/locale/kmr_IQ.d.ts +2 -0
- package/lib/calendar/locale/kmr_IQ.js +9 -0
- package/lib/calendar/locale/kn_IN.d.ts +2 -0
- package/lib/calendar/locale/kn_IN.js +9 -0
- package/lib/calendar/locale/ko_KR.d.ts +2 -0
- package/lib/calendar/locale/ko_KR.js +9 -0
- package/lib/calendar/locale/lt_LT.d.ts +2 -0
- package/lib/calendar/locale/lt_LT.js +9 -0
- package/lib/calendar/locale/lv_LV.d.ts +2 -0
- package/lib/calendar/locale/lv_LV.js +9 -0
- package/lib/calendar/locale/mk_MK.d.ts +2 -0
- package/lib/calendar/locale/mk_MK.js +9 -0
- package/lib/calendar/locale/ml_IN.d.ts +2 -0
- package/lib/calendar/locale/ml_IN.js +9 -0
- package/lib/calendar/locale/mn_MN.d.ts +2 -0
- package/lib/calendar/locale/mn_MN.js +9 -0
- package/lib/calendar/locale/ms_MY.d.ts +2 -0
- package/lib/calendar/locale/ms_MY.js +9 -0
- package/lib/calendar/locale/my_MM.d.ts +2 -0
- package/lib/calendar/locale/my_MM.js +9 -0
- package/lib/calendar/locale/nb_NO.d.ts +2 -0
- package/lib/calendar/locale/nb_NO.js +9 -0
- package/lib/calendar/locale/nl_BE.d.ts +2 -0
- package/lib/calendar/locale/nl_BE.js +9 -0
- package/lib/calendar/locale/nl_NL.d.ts +2 -0
- package/lib/calendar/locale/nl_NL.js +9 -0
- package/lib/calendar/locale/pl_PL.d.ts +2 -0
- package/lib/calendar/locale/pl_PL.js +9 -0
- package/lib/calendar/locale/pt_BR.d.ts +2 -0
- package/lib/calendar/locale/pt_BR.js +9 -0
- package/lib/calendar/locale/pt_PT.d.ts +2 -0
- package/lib/calendar/locale/pt_PT.js +9 -0
- package/lib/calendar/locale/ro_RO.d.ts +2 -0
- package/lib/calendar/locale/ro_RO.js +9 -0
- package/lib/calendar/locale/ru_RU.d.ts +2 -0
- package/lib/calendar/locale/ru_RU.js +9 -0
- package/lib/calendar/locale/si_LK.d.ts +2 -0
- package/lib/calendar/locale/si_LK.js +9 -0
- package/lib/calendar/locale/sk_SK.d.ts +2 -0
- package/lib/calendar/locale/sk_SK.js +9 -0
- package/lib/calendar/locale/sl_SI.d.ts +2 -0
- package/lib/calendar/locale/sl_SI.js +9 -0
- package/lib/calendar/locale/sr_RS.d.ts +2 -0
- package/lib/calendar/locale/sr_RS.js +9 -0
- package/lib/calendar/locale/sv_SE.d.ts +2 -0
- package/lib/calendar/locale/sv_SE.js +9 -0
- package/lib/calendar/locale/ta_IN.d.ts +2 -0
- package/lib/calendar/locale/ta_IN.js +9 -0
- package/lib/calendar/locale/th_TH.d.ts +2 -0
- package/lib/calendar/locale/th_TH.js +9 -0
- package/lib/calendar/locale/tk_TK.d.ts +2 -0
- package/lib/calendar/locale/tk_TK.js +9 -0
- package/lib/calendar/locale/tr_TR.d.ts +2 -0
- package/lib/calendar/locale/tr_TR.js +9 -0
- package/lib/calendar/locale/uk_UA.d.ts +2 -0
- package/lib/calendar/locale/uk_UA.js +9 -0
- package/lib/calendar/locale/ur_PK.d.ts +2 -0
- package/lib/calendar/locale/ur_PK.js +9 -0
- package/lib/calendar/locale/uz_UZ.d.ts +2 -0
- package/lib/calendar/locale/uz_UZ.js +9 -0
- package/lib/calendar/locale/vi_VN.d.ts +2 -0
- package/lib/calendar/locale/vi_VN.js +9 -0
- package/lib/calendar/locale/zh_CN.d.ts +2 -0
- package/lib/calendar/locale/zh_CN.js +9 -0
- package/lib/calendar/locale/zh_TW.d.ts +2 -0
- package/lib/calendar/locale/zh_TW.js +9 -0
- package/lib/calendar/style/index.d.ts +61 -0
- package/lib/calendar/style/index.js +197 -0
- package/lib/card/Card.d.ts +56 -0
- package/lib/card/Card.js +197 -0
- package/lib/card/Grid.d.ts +9 -0
- package/lib/card/Grid.js +39 -0
- package/lib/card/Meta.d.ts +11 -0
- package/lib/card/Meta.js +51 -0
- package/lib/card/index.d.ts +13 -0
- package/lib/card/index.js +18 -0
- package/lib/card/style/index.d.ts +51 -0
- package/lib/card/style/index.js +349 -0
- package/lib/carousel/index.d.ts +27 -0
- package/lib/carousel/index.js +112 -0
- package/lib/carousel/style/index.d.ts +43 -0
- package/lib/carousel/style/index.js +343 -0
- package/lib/cascader/Panel.d.ts +12 -0
- package/lib/cascader/Panel.js +59 -0
- package/lib/cascader/hooks/useBase.d.ts +8 -0
- package/lib/cascader/hooks/useBase.js +21 -0
- package/lib/cascader/hooks/useCheckable.d.ts +2 -0
- package/lib/cascader/hooks/useCheckable.js +14 -0
- package/lib/cascader/hooks/useColumnIcons.d.ts +3 -0
- package/lib/cascader/hooks/useColumnIcons.js +26 -0
- package/lib/cascader/index.d.ts +55 -0
- package/lib/cascader/index.js +255 -0
- package/lib/cascader/style/columns.d.ts +4 -0
- package/lib/cascader/style/columns.js +105 -0
- package/lib/cascader/style/index.d.ts +51 -0
- package/lib/cascader/style/index.js +63 -0
- package/lib/cascader/style/panel.d.ts +2 -0
- package/lib/cascader/style/panel.js +37 -0
- package/lib/checkbox/Checkbox.d.ts +43 -0
- package/lib/checkbox/Checkbox.js +131 -0
- package/lib/checkbox/Group.d.ts +32 -0
- package/lib/checkbox/Group.js +127 -0
- package/lib/checkbox/GroupContext.d.ts +12 -0
- package/lib/checkbox/GroupContext.js +10 -0
- package/lib/checkbox/index.d.ts +11 -0
- package/lib/checkbox/index.js +17 -0
- package/lib/checkbox/style/index.d.ts +23 -0
- package/lib/checkbox/style/index.js +232 -0
- package/lib/col/index.d.ts +4 -0
- package/lib/col/index.js +9 -0
- package/lib/col/style/index.d.ts +2 -0
- package/lib/col/style/index.js +9 -0
- package/lib/collapse/Collapse.d.ts +45 -0
- package/lib/collapse/Collapse.js +117 -0
- package/lib/collapse/CollapsePanel.d.ts +19 -0
- package/lib/collapse/CollapsePanel.js +39 -0
- package/lib/collapse/index.d.ts +4 -0
- package/lib/collapse/index.js +10 -0
- package/lib/collapse/style/index.d.ts +46 -0
- package/lib/collapse/style/index.js +268 -0
- package/lib/color-picker/ColorPicker.d.ts +8 -0
- package/lib/color-picker/ColorPicker.js +244 -0
- package/lib/color-picker/ColorPickerPanel.d.ts +9 -0
- package/lib/color-picker/ColorPickerPanel.js +83 -0
- package/lib/color-picker/color.d.ts +29 -0
- package/lib/color-picker/color.js +119 -0
- package/lib/color-picker/components/ColorAlphaInput.d.ts +9 -0
- package/lib/color-picker/components/ColorAlphaInput.js +43 -0
- package/lib/color-picker/components/ColorClear.d.ts +9 -0
- package/lib/color-picker/components/ColorClear.js +30 -0
- package/lib/color-picker/components/ColorHexInput.d.ts +9 -0
- package/lib/color-picker/components/ColorHexInput.js +44 -0
- package/lib/color-picker/components/ColorHsbInput.d.ts +9 -0
- package/lib/color-picker/components/ColorHsbInput.js +63 -0
- package/lib/color-picker/components/ColorInput.d.ts +14 -0
- package/lib/color-picker/components/ColorInput.js +76 -0
- package/lib/color-picker/components/ColorPresets.d.ts +12 -0
- package/lib/color-picker/components/ColorPresets.js +97 -0
- package/lib/color-picker/components/ColorRgbInput.d.ts +9 -0
- package/lib/color-picker/components/ColorRgbInput.js +60 -0
- package/lib/color-picker/components/ColorSlider.d.ts +20 -0
- package/lib/color-picker/components/ColorSlider.js +141 -0
- package/lib/color-picker/components/ColorSteppers.d.ts +15 -0
- package/lib/color-picker/components/ColorSteppers.js +45 -0
- package/lib/color-picker/components/ColorTrigger.d.ts +20 -0
- package/lib/color-picker/components/ColorTrigger.js +90 -0
- package/lib/color-picker/components/PanelPicker/GradientColorBar.d.ts +8 -0
- package/lib/color-picker/components/PanelPicker/GradientColorBar.js +121 -0
- package/lib/color-picker/components/PanelPicker/index.d.ts +3 -0
- package/lib/color-picker/components/PanelPicker/index.js +181 -0
- package/lib/color-picker/components/PanelPresets.d.ts +3 -0
- package/lib/color-picker/components/PanelPresets.js +27 -0
- package/lib/color-picker/context.d.ts +38 -0
- package/lib/color-picker/context.js +10 -0
- package/lib/color-picker/hooks/useModeColor.d.ts +17 -0
- package/lib/color-picker/hooks/useModeColor.js +73 -0
- package/lib/color-picker/index.d.ts +4 -0
- package/lib/color-picker/index.js +10 -0
- package/lib/color-picker/interface.d.ts +73 -0
- package/lib/color-picker/interface.js +12 -0
- package/lib/color-picker/style/color-block.d.ts +8 -0
- package/lib/color-picker/style/color-block.js +42 -0
- package/lib/color-picker/style/index.d.ts +62 -0
- package/lib/color-picker/style/index.js +265 -0
- package/lib/color-picker/style/input.d.ts +5 -0
- package/lib/color-picker/style/input.js +99 -0
- package/lib/color-picker/style/picker.d.ts +5 -0
- package/lib/color-picker/style/picker.js +48 -0
- package/lib/color-picker/style/presets.d.ts +5 -0
- package/lib/color-picker/style/presets.js +111 -0
- package/lib/color-picker/style/slider.d.ts +5 -0
- package/lib/color-picker/style/slider.js +101 -0
- package/lib/color-picker/util.d.ts +15 -0
- package/lib/color-picker/util.js +67 -0
- package/lib/config-provider/DisabledContext.d.ts +8 -0
- package/lib/config-provider/DisabledContext.js +21 -0
- package/lib/config-provider/MotionWrapper.d.ts +5 -0
- package/lib/config-provider/MotionWrapper.js +28 -0
- package/lib/config-provider/PropWarning.d.ts +6 -0
- package/lib/config-provider/PropWarning.js +25 -0
- package/lib/config-provider/SizeContext.d.ts +9 -0
- package/lib/config-provider/SizeContext.js +21 -0
- package/lib/config-provider/context.d.ts +251 -0
- package/lib/config-provider/context.js +27 -0
- package/lib/config-provider/cssVariables.d.ts +3 -0
- package/lib/config-provider/cssVariables.js +83 -0
- package/lib/config-provider/defaultRenderEmpty.d.ts +8 -0
- package/lib/config-provider/defaultRenderEmpty.js +49 -0
- package/lib/config-provider/hooks/useCSSVarCls.d.ts +7 -0
- package/lib/config-provider/hooks/useCSSVarCls.js +17 -0
- package/lib/config-provider/hooks/useConfig.d.ts +5 -0
- package/lib/config-provider/hooks/useConfig.js +19 -0
- package/lib/config-provider/hooks/useSize.d.ts +3 -0
- package/lib/config-provider/hooks/useSize.js +26 -0
- package/lib/config-provider/hooks/useTheme.d.ts +4 -0
- package/lib/config-provider/hooks/useTheme.js +53 -0
- package/lib/config-provider/hooks/useThemeKey.d.ts +3 -0
- package/lib/config-provider/hooks/useThemeKey.js +15 -0
- package/lib/config-provider/index.d.ts +140 -0
- package/lib/config-provider/index.js +452 -0
- package/lib/config-provider/style/index.d.ts +1 -0
- package/lib/config-provider/style/index.js +12 -0
- package/lib/date-picker/PickerButton.d.ts +4 -0
- package/lib/date-picker/PickerButton.js +16 -0
- package/lib/date-picker/generatePicker/constant.d.ts +5 -0
- package/lib/date-picker/generatePicker/constant.js +21 -0
- package/lib/date-picker/generatePicker/generateRangePicker.d.ts +17 -0
- package/lib/date-picker/generatePicker/generateRangePicker.js +165 -0
- package/lib/date-picker/generatePicker/generateSinglePicker.d.ts +25 -0
- package/lib/date-picker/generatePicker/generateSinglePicker.js +198 -0
- package/lib/date-picker/generatePicker/index.d.ts +36 -0
- package/lib/date-picker/generatePicker/index.js +35 -0
- package/lib/date-picker/generatePicker/interface.d.ts +72 -0
- package/lib/date-picker/generatePicker/interface.js +6 -0
- package/lib/date-picker/generatePicker/useComponents.d.ts +13 -0
- package/lib/date-picker/generatePicker/useComponents.js +14 -0
- package/lib/date-picker/index.d.ts +48 -0
- package/lib/date-picker/index.js +20 -0
- package/lib/date-picker/locale/ar_EG.d.ts +3 -0
- package/lib/date-picker/locale/ar_EG.js +32 -0
- package/lib/date-picker/locale/az_AZ.d.ts +3 -0
- package/lib/date-picker/locale/az_AZ.js +25 -0
- package/lib/date-picker/locale/bg_BG.d.ts +3 -0
- package/lib/date-picker/locale/bg_BG.js +20 -0
- package/lib/date-picker/locale/bn_BD.d.ts +3 -0
- package/lib/date-picker/locale/bn_BD.js +27 -0
- package/lib/date-picker/locale/by_BY.d.ts +3 -0
- package/lib/date-picker/locale/by_BY.js +25 -0
- package/lib/date-picker/locale/ca_ES.d.ts +3 -0
- package/lib/date-picker/locale/ca_ES.js +20 -0
- package/lib/date-picker/locale/cs_CZ.d.ts +3 -0
- package/lib/date-picker/locale/cs_CZ.js +20 -0
- package/lib/date-picker/locale/da_DK.d.ts +3 -0
- package/lib/date-picker/locale/da_DK.js +20 -0
- package/lib/date-picker/locale/de_DE.d.ts +3 -0
- package/lib/date-picker/locale/de_DE.js +22 -0
- package/lib/date-picker/locale/el_GR.d.ts +3 -0
- package/lib/date-picker/locale/el_GR.js +28 -0
- package/lib/date-picker/locale/en_GB.d.ts +3 -0
- package/lib/date-picker/locale/en_GB.js +28 -0
- package/lib/date-picker/locale/en_US.d.ts +3 -0
- package/lib/date-picker/locale/en_US.js +28 -0
- package/lib/date-picker/locale/es_ES.d.ts +3 -0
- package/lib/date-picker/locale/es_ES.js +22 -0
- package/lib/date-picker/locale/et_EE.d.ts +3 -0
- package/lib/date-picker/locale/et_EE.js +20 -0
- package/lib/date-picker/locale/eu_ES.d.ts +3 -0
- package/lib/date-picker/locale/eu_ES.js +20 -0
- package/lib/date-picker/locale/fa_IR.d.ts +3 -0
- package/lib/date-picker/locale/fa_IR.js +28 -0
- package/lib/date-picker/locale/fi_FI.d.ts +3 -0
- package/lib/date-picker/locale/fi_FI.js +20 -0
- package/lib/date-picker/locale/fr_BE.d.ts +3 -0
- package/lib/date-picker/locale/fr_BE.js +27 -0
- package/lib/date-picker/locale/fr_CA.d.ts +3 -0
- package/lib/date-picker/locale/fr_CA.js +27 -0
- package/lib/date-picker/locale/fr_FR.d.ts +3 -0
- package/lib/date-picker/locale/fr_FR.js +27 -0
- package/lib/date-picker/locale/ga_IE.d.ts +3 -0
- package/lib/date-picker/locale/ga_IE.js +27 -0
- package/lib/date-picker/locale/gl_ES.d.ts +3 -0
- package/lib/date-picker/locale/gl_ES.js +20 -0
- package/lib/date-picker/locale/he_IL.d.ts +3 -0
- package/lib/date-picker/locale/he_IL.js +20 -0
- package/lib/date-picker/locale/hi_IN.d.ts +3 -0
- package/lib/date-picker/locale/hi_IN.js +27 -0
- package/lib/date-picker/locale/hr_HR.d.ts +3 -0
- package/lib/date-picker/locale/hr_HR.js +27 -0
- package/lib/date-picker/locale/hu_HU.d.ts +3 -0
- package/lib/date-picker/locale/hu_HU.js +20 -0
- package/lib/date-picker/locale/id_ID.d.ts +3 -0
- package/lib/date-picker/locale/id_ID.js +28 -0
- package/lib/date-picker/locale/is_IS.d.ts +3 -0
- package/lib/date-picker/locale/is_IS.js +20 -0
- package/lib/date-picker/locale/it_IT.d.ts +3 -0
- package/lib/date-picker/locale/it_IT.js +20 -0
- package/lib/date-picker/locale/ja_JP.d.ts +3 -0
- package/lib/date-picker/locale/ja_JP.js +30 -0
- package/lib/date-picker/locale/ka_GE.d.ts +3 -0
- package/lib/date-picker/locale/ka_GE.js +24 -0
- package/lib/date-picker/locale/kk_KZ.d.ts +3 -0
- package/lib/date-picker/locale/kk_KZ.js +27 -0
- package/lib/date-picker/locale/km_KH.d.ts +3 -0
- package/lib/date-picker/locale/km_KH.js +27 -0
- package/lib/date-picker/locale/kmr_IQ.d.ts +3 -0
- package/lib/date-picker/locale/kmr_IQ.js +20 -0
- package/lib/date-picker/locale/kn_IN.d.ts +3 -0
- package/lib/date-picker/locale/kn_IN.js +28 -0
- package/lib/date-picker/locale/ko_KR.d.ts +3 -0
- package/lib/date-picker/locale/ko_KR.js +20 -0
- package/lib/date-picker/locale/lt_LT.d.ts +3 -0
- package/lib/date-picker/locale/lt_LT.js +28 -0
- package/lib/date-picker/locale/lv_LV.d.ts +3 -0
- package/lib/date-picker/locale/lv_LV.js +20 -0
- package/lib/date-picker/locale/mk_MK.d.ts +3 -0
- package/lib/date-picker/locale/mk_MK.js +20 -0
- package/lib/date-picker/locale/ml_IN.d.ts +3 -0
- package/lib/date-picker/locale/ml_IN.js +27 -0
- package/lib/date-picker/locale/mn_MN.d.ts +3 -0
- package/lib/date-picker/locale/mn_MN.js +20 -0
- package/lib/date-picker/locale/ms_MY.d.ts +3 -0
- package/lib/date-picker/locale/ms_MY.js +20 -0
- package/lib/date-picker/locale/my_MM.d.ts +3 -0
- package/lib/date-picker/locale/my_MM.js +28 -0
- package/lib/date-picker/locale/nb_NO.d.ts +3 -0
- package/lib/date-picker/locale/nb_NO.js +27 -0
- package/lib/date-picker/locale/nl_BE.d.ts +3 -0
- package/lib/date-picker/locale/nl_BE.js +27 -0
- package/lib/date-picker/locale/nl_NL.d.ts +3 -0
- package/lib/date-picker/locale/nl_NL.js +27 -0
- package/lib/date-picker/locale/pl_PL.d.ts +3 -0
- package/lib/date-picker/locale/pl_PL.js +28 -0
- package/lib/date-picker/locale/pt_BR.d.ts +3 -0
- package/lib/date-picker/locale/pt_BR.js +20 -0
- package/lib/date-picker/locale/pt_PT.d.ts +3 -0
- package/lib/date-picker/locale/pt_PT.js +48 -0
- package/lib/date-picker/locale/ro_RO.d.ts +3 -0
- package/lib/date-picker/locale/ro_RO.js +20 -0
- package/lib/date-picker/locale/ru_RU.d.ts +4 -0
- package/lib/date-picker/locale/ru_RU.js +31 -0
- package/lib/date-picker/locale/si_LK.d.ts +3 -0
- package/lib/date-picker/locale/si_LK.js +28 -0
- package/lib/date-picker/locale/sk_SK.d.ts +3 -0
- package/lib/date-picker/locale/sk_SK.js +20 -0
- package/lib/date-picker/locale/sl_SI.d.ts +3 -0
- package/lib/date-picker/locale/sl_SI.js +46 -0
- package/lib/date-picker/locale/sr_RS.d.ts +3 -0
- package/lib/date-picker/locale/sr_RS.js +27 -0
- package/lib/date-picker/locale/sv_SE.d.ts +3 -0
- package/lib/date-picker/locale/sv_SE.js +27 -0
- package/lib/date-picker/locale/ta_IN.d.ts +3 -0
- package/lib/date-picker/locale/ta_IN.js +29 -0
- package/lib/date-picker/locale/th_TH.d.ts +3 -0
- package/lib/date-picker/locale/th_TH.js +27 -0
- package/lib/date-picker/locale/tk_TK.d.ts +3 -0
- package/lib/date-picker/locale/tk_TK.js +25 -0
- package/lib/date-picker/locale/tr_TR.d.ts +3 -0
- package/lib/date-picker/locale/tr_TR.js +27 -0
- package/lib/date-picker/locale/uk_UA.d.ts +3 -0
- package/lib/date-picker/locale/uk_UA.js +29 -0
- package/lib/date-picker/locale/ur_PK.d.ts +3 -0
- package/lib/date-picker/locale/ur_PK.js +27 -0
- package/lib/date-picker/locale/uz_UZ.d.ts +3 -0
- package/lib/date-picker/locale/uz_UZ.js +27 -0
- package/lib/date-picker/locale/vi_VN.d.ts +3 -0
- package/lib/date-picker/locale/vi_VN.js +28 -0
- package/lib/date-picker/locale/zh_CN.d.ts +3 -0
- package/lib/date-picker/locale/zh_CN.js +30 -0
- package/lib/date-picker/locale/zh_TW.d.ts +3 -0
- package/lib/date-picker/locale/zh_TW.js +29 -0
- package/lib/date-picker/style/index.d.ts +7 -0
- package/lib/date-picker/style/index.js +449 -0
- package/lib/date-picker/style/multiple.d.ts +4 -0
- package/lib/date-picker/style/multiple.js +101 -0
- package/lib/date-picker/style/panel.d.ts +6 -0
- package/lib/date-picker/style/panel.js +607 -0
- package/lib/date-picker/style/token.d.ts +103 -0
- package/lib/date-picker/style/token.js +82 -0
- package/lib/date-picker/style/variants.d.ts +4 -0
- package/lib/date-picker/style/variants.js +38 -0
- package/lib/date-picker/util.d.ts +8 -0
- package/lib/date-picker/util.js +76 -0
- package/lib/descriptions/Cell.d.ts +17 -0
- package/lib/descriptions/Cell.js +61 -0
- package/lib/descriptions/DescriptionsContext.d.ts +7 -0
- package/lib/descriptions/DescriptionsContext.js +10 -0
- package/lib/descriptions/Item.d.ts +13 -0
- package/lib/descriptions/Item.js +10 -0
- package/lib/descriptions/Row.d.ts +13 -0
- package/lib/descriptions/Row.js +113 -0
- package/lib/descriptions/constant.d.ts +3 -0
- package/lib/descriptions/constant.js +15 -0
- package/lib/descriptions/hooks/useItems.d.ts +4 -0
- package/lib/descriptions/hooks/useItems.js +43 -0
- package/lib/descriptions/hooks/useRow.d.ts +3 -0
- package/lib/descriptions/hooks/useRow.js +78 -0
- package/lib/descriptions/index.d.ts +42 -0
- package/lib/descriptions/index.js +114 -0
- package/lib/descriptions/style/index.d.ts +52 -0
- package/lib/descriptions/style/index.js +197 -0
- package/lib/divider/index.d.ts +20 -0
- package/lib/divider/index.js +90 -0
- package/lib/divider/style/index.d.ts +23 -0
- package/lib/divider/style/index.js +168 -0
- package/lib/drawer/DrawerPanel.d.ts +47 -0
- package/lib/drawer/DrawerPanel.js +85 -0
- package/lib/drawer/index.d.ts +32 -0
- package/lib/drawer/index.js +180 -0
- package/lib/drawer/style/index.d.ts +23 -0
- package/lib/drawer/style/index.js +220 -0
- package/lib/drawer/style/motion.d.ts +4 -0
- package/lib/drawer/style/motion.js +59 -0
- package/lib/dropdown/dropdown-button.d.ts +21 -0
- package/lib/dropdown/dropdown-button.js +121 -0
- package/lib/dropdown/dropdown.d.ts +50 -0
- package/lib/dropdown/dropdown.js +224 -0
- package/lib/dropdown/index.d.ts +8 -0
- package/lib/dropdown/index.js +13 -0
- package/lib/dropdown/style/index.d.ts +40 -0
- package/lib/dropdown/style/index.js +307 -0
- package/lib/dropdown/style/status.d.ts +4 -0
- package/lib/dropdown/style/status.js +29 -0
- package/lib/empty/empty.d.ts +3 -0
- package/lib/empty/empty.js +70 -0
- package/lib/empty/index.d.ts +21 -0
- package/lib/empty/index.js +78 -0
- package/lib/empty/simple.d.ts +3 -0
- package/lib/empty/simple.js +60 -0
- package/lib/empty/style/index.d.ts +5 -0
- package/lib/empty/style/index.js +79 -0
- package/lib/flex/index.d.ts +4 -0
- package/lib/flex/index.js +66 -0
- package/lib/flex/interface.d.ts +15 -0
- package/lib/flex/interface.js +5 -0
- package/lib/flex/style/index.d.ts +30 -0
- package/lib/flex/style/index.js +100 -0
- package/lib/flex/utils.d.ts +6 -0
- package/lib/flex/utils.js +36 -0
- package/lib/float-button/BackTop.d.ts +4 -0
- package/lib/float-button/BackTop.js +102 -0
- package/lib/float-button/FloatButton.d.ts +14 -0
- package/lib/float-button/FloatButton.js +104 -0
- package/lib/float-button/FloatButtonContent.d.ts +4 -0
- package/lib/float-button/FloatButtonContent.js +35 -0
- package/lib/float-button/FloatButtonGroup.d.ts +4 -0
- package/lib/float-button/FloatButtonGroup.js +155 -0
- package/lib/float-button/PurePanel.d.ts +12 -0
- package/lib/float-button/PurePanel.js +61 -0
- package/lib/float-button/context.d.ts +5 -0
- package/lib/float-button/context.js +14 -0
- package/lib/float-button/index.d.ts +2 -0
- package/lib/float-button/index.js +16 -0
- package/lib/float-button/interface.d.ts +57 -0
- package/lib/float-button/interface.js +5 -0
- package/lib/float-button/style/index.d.ts +68 -0
- package/lib/float-button/style/index.js +404 -0
- package/lib/float-button/style/keyframes.d.ts +7 -0
- package/lib/float-button/style/keyframes.js +134 -0
- package/lib/float-button/util.d.ts +2 -0
- package/lib/float-button/util.js +15 -0
- package/lib/form/ErrorList.d.ts +13 -0
- package/lib/form/ErrorList.js +95 -0
- package/lib/form/Form.d.ts +43 -0
- package/lib/form/Form.js +186 -0
- package/lib/form/FormItem/ItemHolder.d.ts +18 -0
- package/lib/form/FormItem/ItemHolder.js +137 -0
- package/lib/form/FormItem/StatusProvider.d.ts +16 -0
- package/lib/form/FormItem/StatusProvider.js +82 -0
- package/lib/form/FormItem/index.d.ts +46 -0
- package/lib/form/FormItem/index.js +283 -0
- package/lib/form/FormItemInput.d.ts +22 -0
- package/lib/form/FormItemInput.js +131 -0
- package/lib/form/FormItemLabel.d.ts +22 -0
- package/lib/form/FormItemLabel.js +119 -0
- package/lib/form/FormList.d.ts +25 -0
- package/lib/form/FormList.js +49 -0
- package/lib/form/context.d.ts +52 -0
- package/lib/form/context.js +55 -0
- package/lib/form/hooks/useChildren.d.ts +2 -0
- package/lib/form/hooks/useChildren.js +15 -0
- package/lib/form/hooks/useDebounce.d.ts +1 -0
- package/lib/form/hooks/useDebounce.js +20 -0
- package/lib/form/hooks/useForm.d.ts +8 -0
- package/lib/form/hooks/useForm.js +65 -0
- package/lib/form/hooks/useFormInstance.d.ts +2 -0
- package/lib/form/hooks/useFormInstance.js +14 -0
- package/lib/form/hooks/useFormItemStatus.d.ts +8 -0
- package/lib/form/hooks/useFormItemStatus.js +28 -0
- package/lib/form/hooks/useFormWarning.d.ts +2 -0
- package/lib/form/hooks/useFormWarning.js +23 -0
- package/lib/form/hooks/useFrameState.d.ts +3 -0
- package/lib/form/hooks/useFrameState.js +45 -0
- package/lib/form/hooks/useItemRef.d.ts +3 -0
- package/lib/form/hooks/useItemRef.js +27 -0
- package/lib/form/hooks/useVariants.d.ts +7 -0
- package/lib/form/hooks/useVariants.js +33 -0
- package/lib/form/index.d.ts +26 -0
- package/lib/form/index.js +28 -0
- package/lib/form/interface.d.ts +3 -0
- package/lib/form/interface.js +5 -0
- package/lib/form/style/explain.d.ts +4 -0
- package/lib/form/style/explain.js +50 -0
- package/lib/form/style/fallbackCmp.d.ts +6 -0
- package/lib/form/style/fallbackCmp.js +35 -0
- package/lib/form/style/index.d.ts +74 -0
- package/lib/form/style/index.js +508 -0
- package/lib/form/util.d.ts +9 -0
- package/lib/form/util.js +47 -0
- package/lib/form/validateMessagesContext.d.ts +3 -0
- package/lib/form/validateMessagesContext.js +12 -0
- package/lib/grid/RowContext.d.ts +6 -0
- package/lib/grid/RowContext.js +9 -0
- package/lib/grid/col.d.ts +29 -0
- package/lib/grid/col.js +116 -0
- package/lib/grid/hooks/useBreakpoint.d.ts +3 -0
- package/lib/grid/hooks/useBreakpoint.js +28 -0
- package/lib/grid/index.d.ts +10 -0
- package/lib/grid/index.js +30 -0
- package/lib/grid/row.d.ts +20 -0
- package/lib/grid/row.js +156 -0
- package/lib/grid/style/index.d.ts +7 -0
- package/lib/grid/style/index.js +162 -0
- package/lib/icon/index.d.ts +2 -0
- package/lib/icon/index.js +16 -0
- package/lib/image/PreviewGroup.d.ts +15 -0
- package/lib/image/PreviewGroup.js +82 -0
- package/lib/image/index.d.ts +9 -0
- package/lib/image/index.js +93 -0
- package/lib/image/style/index.d.ts +59 -0
- package/lib/image/style/index.js +322 -0
- package/lib/index.d.ts +147 -0
- package/lib/index.js +518 -0
- package/lib/input/Group.d.ts +15 -0
- package/lib/input/Group.js +54 -0
- package/lib/input/Input.d.ts +25 -0
- package/lib/input/Input.js +185 -0
- package/lib/input/OTP/OTPInput.d.ts +11 -0
- package/lib/input/OTP/OTPInput.js +83 -0
- package/lib/input/OTP/index.d.ts +29 -0
- package/lib/input/OTP/index.js +200 -0
- package/lib/input/Password.d.ts +14 -0
- package/lib/input/Password.js +122 -0
- package/lib/input/Search.d.ts +12 -0
- package/lib/input/Search.js +155 -0
- package/lib/input/TextArea.d.ts +26 -0
- package/lib/input/TextArea.js +125 -0
- package/lib/input/hooks/useRemovePasswordTimeout.d.ts +2 -0
- package/lib/input/hooks/useRemovePasswordTimeout.js +29 -0
- package/lib/input/index.d.ts +20 -0
- package/lib/input/index.js +21 -0
- package/lib/input/style/index.d.ts +17 -0
- package/lib/input/style/index.js +750 -0
- package/lib/input/style/otp.d.ts +2 -0
- package/lib/input/style/otp.js +42 -0
- package/lib/input/style/token.d.ts +97 -0
- package/lib/input/style/token.js +56 -0
- package/lib/input/style/variants.d.ts +15 -0
- package/lib/input/style/variants.js +253 -0
- package/lib/input/utils.d.ts +8 -0
- package/lib/input/utils.js +9 -0
- package/lib/input-number/index.d.ts +34 -0
- package/lib/input-number/index.js +167 -0
- package/lib/input-number/style/index.d.ts +18 -0
- package/lib/input-number/style/index.js +407 -0
- package/lib/input-number/style/token.d.ts +52 -0
- package/lib/input-number/style/token.js +25 -0
- package/lib/layout/Sider.d.ts +28 -0
- package/lib/layout/Sider.js +185 -0
- package/lib/layout/context.d.ts +8 -0
- package/lib/layout/context.js +14 -0
- package/lib/layout/hooks/useHasSider.d.ts +2 -0
- package/lib/layout/hooks/useHasSider.js +19 -0
- package/lib/layout/index.d.ts +15 -0
- package/lib/layout/index.js +17 -0
- package/lib/layout/layout.d.ts +18 -0
- package/lib/layout/layout.js +126 -0
- package/lib/layout/style/index.d.ts +96 -0
- package/lib/layout/style/index.js +120 -0
- package/lib/layout/style/sider.d.ts +2 -0
- package/lib/layout/style/sider.js +127 -0
- package/lib/list/Item.d.ts +35 -0
- package/lib/list/Item.js +133 -0
- package/lib/list/context.d.ts +8 -0
- package/lib/list/context.js +10 -0
- package/lib/list/index.d.ts +56 -0
- package/lib/list/index.js +222 -0
- package/lib/list/style/index.d.ts +62 -0
- package/lib/list/style/index.js +328 -0
- package/lib/locale/ar_EG.d.ts +3 -0
- package/lib/locale/ar_EG.js +134 -0
- package/lib/locale/az_AZ.d.ts +3 -0
- package/lib/locale/az_AZ.js +154 -0
- package/lib/locale/bg_BG.d.ts +3 -0
- package/lib/locale/bg_BG.js +102 -0
- package/lib/locale/bn_BD.d.ts +3 -0
- package/lib/locale/bn_BD.js +133 -0
- package/lib/locale/by_BY.d.ts +3 -0
- package/lib/locale/by_BY.js +135 -0
- package/lib/locale/ca_ES.d.ts +3 -0
- package/lib/locale/ca_ES.js +128 -0
- package/lib/locale/context.d.ts +6 -0
- package/lib/locale/context.js +9 -0
- package/lib/locale/cs_CZ.d.ts +3 -0
- package/lib/locale/cs_CZ.js +135 -0
- package/lib/locale/da_DK.d.ts +3 -0
- package/lib/locale/da_DK.js +112 -0
- package/lib/locale/de_DE.d.ts +3 -0
- package/lib/locale/de_DE.js +139 -0
- package/lib/locale/el_GR.d.ts +3 -0
- package/lib/locale/el_GR.js +152 -0
- package/lib/locale/en_GB.d.ts +3 -0
- package/lib/locale/en_GB.js +135 -0
- package/lib/locale/en_US.d.ts +3 -0
- package/lib/locale/en_US.js +153 -0
- package/lib/locale/es_ES.d.ts +3 -0
- package/lib/locale/es_ES.js +140 -0
- package/lib/locale/et_EE.d.ts +3 -0
- package/lib/locale/et_EE.js +135 -0
- package/lib/locale/eu_ES.d.ts +3 -0
- package/lib/locale/eu_ES.js +150 -0
- package/lib/locale/fa_IR.d.ts +3 -0
- package/lib/locale/fa_IR.js +144 -0
- package/lib/locale/fi_FI.d.ts +3 -0
- package/lib/locale/fi_FI.js +61 -0
- package/lib/locale/fr_BE.d.ts +3 -0
- package/lib/locale/fr_BE.js +137 -0
- package/lib/locale/fr_CA.d.ts +3 -0
- package/lib/locale/fr_CA.js +132 -0
- package/lib/locale/fr_FR.d.ts +3 -0
- package/lib/locale/fr_FR.js +137 -0
- package/lib/locale/ga_IE.d.ts +3 -0
- package/lib/locale/ga_IE.js +126 -0
- package/lib/locale/gl_ES.d.ts +3 -0
- package/lib/locale/gl_ES.js +114 -0
- package/lib/locale/he_IL.d.ts +3 -0
- package/lib/locale/he_IL.js +120 -0
- package/lib/locale/hi_IN.d.ts +3 -0
- package/lib/locale/hi_IN.js +133 -0
- package/lib/locale/hr_HR.d.ts +3 -0
- package/lib/locale/hr_HR.js +132 -0
- package/lib/locale/hu_HU.d.ts +3 -0
- package/lib/locale/hu_HU.js +52 -0
- package/lib/locale/hy_AM.d.ts +3 -0
- package/lib/locale/hy_AM.js +112 -0
- package/lib/locale/id_ID.d.ts +3 -0
- package/lib/locale/id_ID.js +153 -0
- package/lib/locale/index.d.ts +61 -0
- package/lib/locale/index.js +46 -0
- package/lib/locale/is_IS.d.ts +3 -0
- package/lib/locale/is_IS.js +102 -0
- package/lib/locale/it_IT.d.ts +3 -0
- package/lib/locale/it_IT.js +140 -0
- package/lib/locale/ja_JP.d.ts +3 -0
- package/lib/locale/ja_JP.js +153 -0
- package/lib/locale/ka_GE.d.ts +3 -0
- package/lib/locale/ka_GE.js +133 -0
- package/lib/locale/kk_KZ.d.ts +3 -0
- package/lib/locale/kk_KZ.js +127 -0
- package/lib/locale/km_KH.d.ts +3 -0
- package/lib/locale/km_KH.js +111 -0
- package/lib/locale/kmr_IQ.d.ts +3 -0
- package/lib/locale/kmr_IQ.js +51 -0
- package/lib/locale/kn_IN.d.ts +3 -0
- package/lib/locale/kn_IN.js +136 -0
- package/lib/locale/ko_KR.d.ts +3 -0
- package/lib/locale/ko_KR.js +150 -0
- package/lib/locale/ku_IQ.d.ts +3 -0
- package/lib/locale/ku_IQ.js +54 -0
- package/lib/locale/lt_LT.d.ts +3 -0
- package/lib/locale/lt_LT.js +150 -0
- package/lib/locale/lv_LV.d.ts +3 -0
- package/lib/locale/lv_LV.js +51 -0
- package/lib/locale/mk_MK.d.ts +3 -0
- package/lib/locale/mk_MK.js +63 -0
- package/lib/locale/ml_IN.d.ts +3 -0
- package/lib/locale/ml_IN.js +133 -0
- package/lib/locale/mn_MN.d.ts +3 -0
- package/lib/locale/mn_MN.js +135 -0
- package/lib/locale/ms_MY.d.ts +3 -0
- package/lib/locale/ms_MY.js +151 -0
- package/lib/locale/my_MM.d.ts +3 -0
- package/lib/locale/my_MM.js +142 -0
- package/lib/locale/nb_NO.d.ts +3 -0
- package/lib/locale/nb_NO.js +127 -0
- package/lib/locale/ne_NP.d.ts +3 -0
- package/lib/locale/ne_NP.js +153 -0
- package/lib/locale/nl_BE.d.ts +3 -0
- package/lib/locale/nl_BE.js +138 -0
- package/lib/locale/nl_NL.d.ts +3 -0
- package/lib/locale/nl_NL.js +138 -0
- package/lib/locale/pl_PL.d.ts +3 -0
- package/lib/locale/pl_PL.js +140 -0
- package/lib/locale/pt_BR.d.ts +3 -0
- package/lib/locale/pt_BR.js +140 -0
- package/lib/locale/pt_PT.d.ts +3 -0
- package/lib/locale/pt_PT.js +153 -0
- package/lib/locale/ro_RO.d.ts +3 -0
- package/lib/locale/ro_RO.js +133 -0
- package/lib/locale/ru_RU.d.ts +3 -0
- package/lib/locale/ru_RU.js +145 -0
- package/lib/locale/si_LK.d.ts +3 -0
- package/lib/locale/si_LK.js +135 -0
- package/lib/locale/sk_SK.d.ts +3 -0
- package/lib/locale/sk_SK.js +135 -0
- package/lib/locale/sl_SI.d.ts +3 -0
- package/lib/locale/sl_SI.js +51 -0
- package/lib/locale/sr_RS.d.ts +3 -0
- package/lib/locale/sr_RS.js +133 -0
- package/lib/locale/sv_SE.d.ts +3 -0
- package/lib/locale/sv_SE.js +144 -0
- package/lib/locale/ta_IN.d.ts +3 -0
- package/lib/locale/ta_IN.js +133 -0
- package/lib/locale/th_TH.d.ts +3 -0
- package/lib/locale/th_TH.js +153 -0
- package/lib/locale/tk_TK.d.ts +3 -0
- package/lib/locale/tk_TK.js +131 -0
- package/lib/locale/tr_TR.d.ts +3 -0
- package/lib/locale/tr_TR.js +133 -0
- package/lib/locale/uk_UA.d.ts +3 -0
- package/lib/locale/uk_UA.js +145 -0
- package/lib/locale/ur_PK.d.ts +3 -0
- package/lib/locale/ur_PK.js +133 -0
- package/lib/locale/useLocale.d.ts +4 -0
- package/lib/locale/useLocale.js +30 -0
- package/lib/locale/uz_UZ.d.ts +3 -0
- package/lib/locale/uz_UZ.js +149 -0
- package/lib/locale/vi_VN.d.ts +3 -0
- package/lib/locale/vi_VN.js +144 -0
- package/lib/locale/zh_CN.d.ts +3 -0
- package/lib/locale/zh_CN.js +154 -0
- package/lib/locale/zh_HK.d.ts +3 -0
- package/lib/locale/zh_HK.js +144 -0
- package/lib/locale/zh_TW.d.ts +3 -0
- package/lib/locale/zh_TW.js +145 -0
- package/lib/mentions/index.d.ts +45 -0
- package/lib/mentions/index.js +191 -0
- package/lib/mentions/style/index.d.ts +22 -0
- package/lib/mentions/style/index.js +220 -0
- package/lib/menu/MenuContext.d.ts +11 -0
- package/lib/menu/MenuContext.js +14 -0
- package/lib/menu/MenuDivider.d.ts +9 -0
- package/lib/menu/MenuDivider.js +40 -0
- package/lib/menu/MenuItem.d.ts +13 -0
- package/lib/menu/MenuItem.js +90 -0
- package/lib/menu/OverrideContext.d.ts +13 -0
- package/lib/menu/OverrideContext.js +45 -0
- package/lib/menu/SubMenu.d.ts +13 -0
- package/lib/menu/SubMenu.js +64 -0
- package/lib/menu/index.d.ts +34 -0
- package/lib/menu/index.js +39 -0
- package/lib/menu/interface.d.ts +20 -0
- package/lib/menu/interface.js +5 -0
- package/lib/menu/menu.d.ts +19 -0
- package/lib/menu/menu.js +166 -0
- package/lib/menu/style/horizontal.d.ts +4 -0
- package/lib/menu/style/horizontal.js +52 -0
- package/lib/menu/style/index.d.ts +354 -0
- package/lib/menu/style/index.js +558 -0
- package/lib/menu/style/rtl.d.ts +5 -0
- package/lib/menu/style/rtl.js +32 -0
- package/lib/menu/style/theme.d.ts +4 -0
- package/lib/menu/style/theme.js +223 -0
- package/lib/menu/style/vertical.d.ts +4 -0
- package/lib/menu/style/vertical.js +192 -0
- package/lib/message/PurePanel.d.ts +23 -0
- package/lib/message/PurePanel.js +73 -0
- package/lib/message/index.d.ts +23 -0
- package/lib/message/index.js +264 -0
- package/lib/message/interface.d.ts +66 -0
- package/lib/message/interface.js +5 -0
- package/lib/message/style/index.d.ts +23 -0
- package/lib/message/style/index.js +163 -0
- package/lib/message/useMessage.d.ts +8 -0
- package/lib/message/useMessage.js +226 -0
- package/lib/message/util.d.ts +4 -0
- package/lib/message/util.js +27 -0
- package/lib/modal/ConfirmDialog.d.ts +32 -0
- package/lib/modal/ConfirmDialog.js +219 -0
- package/lib/modal/Modal.d.ts +4 -0
- package/lib/modal/Modal.js +165 -0
- package/lib/modal/PurePanel.d.ts +9 -0
- package/lib/modal/PurePanel.js +77 -0
- package/lib/modal/components/ConfirmCancelBtn.d.ts +10 -0
- package/lib/modal/components/ConfirmCancelBtn.js +37 -0
- package/lib/modal/components/ConfirmOkBtn.d.ts +9 -0
- package/lib/modal/components/ConfirmOkBtn.js +38 -0
- package/lib/modal/components/NormalCancelBtn.d.ts +8 -0
- package/lib/modal/components/NormalCancelBtn.js +23 -0
- package/lib/modal/components/NormalOkBtn.d.ts +8 -0
- package/lib/modal/components/NormalOkBtn.js +27 -0
- package/lib/modal/confirm.d.ts +20 -0
- package/lib/modal/confirm.js +165 -0
- package/lib/modal/context.d.ts +8 -0
- package/lib/modal/context.js +13 -0
- package/lib/modal/destroyFns.d.ts +2 -0
- package/lib/modal/destroyFns.js +8 -0
- package/lib/modal/index.d.ts +15 -0
- package/lib/modal/index.js +47 -0
- package/lib/modal/interface.d.ts +123 -0
- package/lib/modal/interface.js +5 -0
- package/lib/modal/locale.d.ts +7 -0
- package/lib/modal/locale.js +27 -0
- package/lib/modal/shared.d.ts +9 -0
- package/lib/modal/shared.js +73 -0
- package/lib/modal/style/confirm.d.ts +2 -0
- package/lib/modal/style/confirm.js +107 -0
- package/lib/modal/style/index.d.ts +110 -0
- package/lib/modal/style/index.js +287 -0
- package/lib/modal/useModal/HookModal.d.ts +17 -0
- package/lib/modal/useModal/HookModal.js +73 -0
- package/lib/modal/useModal/index.d.ts +8 -0
- package/lib/modal/useModal/index.js +107 -0
- package/lib/notification/PurePanel.d.ts +27 -0
- package/lib/notification/PurePanel.js +132 -0
- package/lib/notification/index.d.ts +22 -0
- package/lib/notification/index.js +205 -0
- package/lib/notification/interface.d.ts +68 -0
- package/lib/notification/interface.js +7 -0
- package/lib/notification/style/index.d.ts +89 -0
- package/lib/notification/style/index.js +260 -0
- package/lib/notification/style/placement.d.ts +5 -0
- package/lib/notification/style/placement.js +98 -0
- package/lib/notification/style/pure-panel.d.ts +2 -0
- package/lib/notification/style/pure-panel.js +20 -0
- package/lib/notification/style/stack.d.ts +4 -0
- package/lib/notification/style/stack.js +102 -0
- package/lib/notification/useNotification.d.ts +8 -0
- package/lib/notification/useNotification.js +193 -0
- package/lib/notification/util.d.ts +5 -0
- package/lib/notification/util.js +64 -0
- package/lib/pagination/Pagination.d.ts +21 -0
- package/lib/pagination/Pagination.js +134 -0
- package/lib/pagination/Select.d.ts +9 -0
- package/lib/pagination/Select.js +23 -0
- package/lib/pagination/index.d.ts +3 -0
- package/lib/pagination/index.js +10 -0
- package/lib/pagination/style/bordered.d.ts +2 -0
- package/lib/pagination/style/bordered.js +94 -0
- package/lib/pagination/style/index.d.ts +99 -0
- package/lib/pagination/style/index.js +532 -0
- package/lib/popconfirm/PurePanel.d.ts +20 -0
- package/lib/popconfirm/PurePanel.js +105 -0
- package/lib/popconfirm/index.d.ts +30 -0
- package/lib/popconfirm/index.js +103 -0
- package/lib/popconfirm/style/index.d.ts +17 -0
- package/lib/popconfirm/style/index.js +74 -0
- package/lib/popover/PurePanel.d.ts +17 -0
- package/lib/popover/PurePanel.js +85 -0
- package/lib/popover/index.d.ts +15 -0
- package/lib/popover/index.js +107 -0
- package/lib/popover/style/index.d.ts +46 -0
- package/lib/popover/style/index.js +165 -0
- package/lib/progress/Circle.d.ts +10 -0
- package/lib/progress/Circle.js +88 -0
- package/lib/progress/Line.d.ts +36 -0
- package/lib/progress/Line.js +158 -0
- package/lib/progress/Steps.d.ts +9 -0
- package/lib/progress/Steps.js +51 -0
- package/lib/progress/index.d.ts +3 -0
- package/lib/progress/index.js +10 -0
- package/lib/progress/progress.d.ts +58 -0
- package/lib/progress/progress.js +171 -0
- package/lib/progress/style/index.d.ts +38 -0
- package/lib/progress/style/index.js +307 -0
- package/lib/progress/utils.d.ts +10 -0
- package/lib/progress/utils.js +92 -0
- package/lib/qr-code/QrcodeStatus.d.ts +11 -0
- package/lib/qr-code/QrcodeStatus.js +43 -0
- package/lib/qr-code/index.d.ts +4 -0
- package/lib/qr-code/index.js +113 -0
- package/lib/qr-code/interface.d.ts +29 -0
- package/lib/qr-code/interface.js +5 -0
- package/lib/qr-code/style/index.d.ts +6 -0
- package/lib/qr-code/style/index.js +74 -0
- package/lib/qrcode/index.d.ts +2 -0
- package/lib/qrcode/index.js +12 -0
- package/lib/qrcode/interface.d.ts +1 -0
- package/lib/qrcode/interface.js +16 -0
- package/lib/qrcode/style/index.d.ts +1 -0
- package/lib/qrcode/style/index.js +16 -0
- package/lib/radio/context.d.ts +7 -0
- package/lib/radio/context.js +13 -0
- package/lib/radio/group.d.ts +4 -0
- package/lib/radio/group.js +123 -0
- package/lib/radio/index.d.ts +11 -0
- package/lib/radio/index.js +28 -0
- package/lib/radio/interface.d.ts +43 -0
- package/lib/radio/interface.js +5 -0
- package/lib/radio/radio.d.ts +4 -0
- package/lib/radio/radio.js +108 -0
- package/lib/radio/radioButton.d.ts +6 -0
- package/lib/radio/radioButton.js +40 -0
- package/lib/radio/style/index.d.ts +76 -0
- package/lib/radio/style/index.js +467 -0
- package/lib/rate/index.d.ts +8 -0
- package/lib/rate/index.js +74 -0
- package/lib/rate/style/index.d.ts +27 -0
- package/lib/rate/style/index.js +99 -0
- package/lib/result/index.d.ts +33 -0
- package/lib/result/index.js +118 -0
- package/lib/result/noFound.d.ts +3 -0
- package/lib/result/noFound.js +243 -0
- package/lib/result/serverError.d.ts +3 -0
- package/lib/result/serverError.js +283 -0
- package/lib/result/style/index.d.ts +27 -0
- package/lib/result/style/index.js +118 -0
- package/lib/result/unauthorized.d.ts +3 -0
- package/lib/result/unauthorized.js +233 -0
- package/lib/row/index.d.ts +4 -0
- package/lib/row/index.js +9 -0
- package/lib/row/style/index.d.ts +2 -0
- package/lib/row/style/index.js +9 -0
- package/lib/segmented/index.d.ts +26 -0
- package/lib/segmented/index.js +86 -0
- package/lib/segmented/style/index.d.ts +46 -0
- package/lib/segmented/style/index.js +212 -0
- package/lib/select/index.d.ts +57 -0
- package/lib/select/index.js +230 -0
- package/lib/select/mergedBuiltinPlacements.d.ts +4 -0
- package/lib/select/mergedBuiltinPlacements.js +40 -0
- package/lib/select/style/dropdown.d.ts +4 -0
- package/lib/select/style/dropdown.js +145 -0
- package/lib/select/style/index.d.ts +4 -0
- package/lib/select/style/index.js +228 -0
- package/lib/select/style/multiple.d.ts +32 -0
- package/lib/select/style/multiple.js +297 -0
- package/lib/select/style/single.d.ts +3 -0
- package/lib/select/style/single.js +159 -0
- package/lib/select/style/token.d.ts +138 -0
- package/lib/select/style/token.js +69 -0
- package/lib/select/style/variants.d.ts +4 -0
- package/lib/select/style/variants.js +163 -0
- package/lib/select/useIcons.d.ts +26 -0
- package/lib/select/useIcons.js +90 -0
- package/lib/select/useShowArrow.d.ts +8 -0
- package/lib/select/useShowArrow.js +15 -0
- package/lib/skeleton/Avatar.d.ts +7 -0
- package/lib/skeleton/Avatar.js +42 -0
- package/lib/skeleton/Button.d.ts +8 -0
- package/lib/skeleton/Button.js +42 -0
- package/lib/skeleton/Element.d.ts +12 -0
- package/lib/skeleton/Element.js +39 -0
- package/lib/skeleton/Image.d.ts +6 -0
- package/lib/skeleton/Image.js +45 -0
- package/lib/skeleton/Input.d.ts +8 -0
- package/lib/skeleton/Input.js +42 -0
- package/lib/skeleton/Node.d.ts +8 -0
- package/lib/skeleton/Node.js +38 -0
- package/lib/skeleton/Paragraph.d.ts +11 -0
- package/lib/skeleton/Paragraph.js +48 -0
- package/lib/skeleton/Skeleton.d.ts +32 -0
- package/lib/skeleton/Skeleton.js +147 -0
- package/lib/skeleton/Title.d.ts +9 -0
- package/lib/skeleton/Title.js +27 -0
- package/lib/skeleton/index.d.ts +3 -0
- package/lib/skeleton/index.js +10 -0
- package/lib/skeleton/style/index.d.ts +40 -0
- package/lib/skeleton/style/index.js +317 -0
- package/lib/slider/Context.d.ts +9 -0
- package/lib/slider/Context.js +10 -0
- package/lib/slider/SliderTooltip.d.ts +8 -0
- package/lib/slider/SliderTooltip.js +51 -0
- package/lib/slider/index.d.ts +97 -0
- package/lib/slider/index.js +231 -0
- package/lib/slider/style/index.d.ts +97 -0
- package/lib/slider/style/index.js +338 -0
- package/lib/slider/useRafLock.d.ts +1 -0
- package/lib/slider/useRafLock.js +29 -0
- package/lib/space/Compact.d.ts +25 -0
- package/lib/space/Compact.js +108 -0
- package/lib/space/Item.d.ts +10 -0
- package/lib/space/Item.js +31 -0
- package/lib/space/context.d.ts +6 -0
- package/lib/space/context.js +12 -0
- package/lib/space/index.d.ts +28 -0
- package/lib/space/index.js +119 -0
- package/lib/space/style/compact.d.ts +8 -0
- package/lib/space/style/compact.js +24 -0
- package/lib/space/style/index.d.ts +7 -0
- package/lib/space/style/index.js +90 -0
- package/lib/spin/Indicator/Looper.d.ts +6 -0
- package/lib/spin/Indicator/Looper.js +33 -0
- package/lib/spin/Indicator/Progress.d.ts +7 -0
- package/lib/spin/Indicator/Progress.js +76 -0
- package/lib/spin/Indicator/index.d.ts +7 -0
- package/lib/spin/Indicator/index.js +31 -0
- package/lib/spin/index.d.ts +36 -0
- package/lib/spin/index.js +126 -0
- package/lib/spin/style/index.d.ts +26 -0
- package/lib/spin/style/index.js +289 -0
- package/lib/spin/usePercent.d.ts +1 -0
- package/lib/spin/usePercent.js +36 -0
- package/lib/splitter/Panel.d.ts +7 -0
- package/lib/splitter/Panel.js +38 -0
- package/lib/splitter/SplitBar.d.ts +19 -0
- package/lib/splitter/SplitBar.js +119 -0
- package/lib/splitter/Splitter.d.ts +4 -0
- package/lib/splitter/Splitter.js +174 -0
- package/lib/splitter/hooks/useItems.d.ts +12 -0
- package/lib/splitter/hooks/useItems.js +46 -0
- package/lib/splitter/hooks/useResizable.d.ts +7 -0
- package/lib/splitter/hooks/useResizable.js +52 -0
- package/lib/splitter/hooks/useResize.d.ts +6 -0
- package/lib/splitter/hooks/useResize.js +125 -0
- package/lib/splitter/hooks/useSizes.d.ts +8 -0
- package/lib/splitter/hooks/useSizes.js +86 -0
- package/lib/splitter/index.d.ts +8 -0
- package/lib/splitter/index.js +13 -0
- package/lib/splitter/interface.d.ts +64 -0
- package/lib/splitter/interface.js +5 -0
- package/lib/splitter/style/index.d.ts +27 -0
- package/lib/splitter/style/index.js +276 -0
- package/lib/statistic/Countdown.d.ts +10 -0
- package/lib/statistic/Countdown.js +77 -0
- package/lib/statistic/Number.d.ts +8 -0
- package/lib/statistic/Number.js +54 -0
- package/lib/statistic/Statistic.d.ts +21 -0
- package/lib/statistic/Statistic.js +93 -0
- package/lib/statistic/index.d.ts +11 -0
- package/lib/statistic/index.js +12 -0
- package/lib/statistic/interface.d.ts +0 -0
- package/lib/statistic/interface.js +1 -0
- package/lib/statistic/style/index.d.ts +16 -0
- package/lib/statistic/style/index.js +66 -0
- package/lib/statistic/utils.d.ts +15 -0
- package/lib/statistic/utils.js +54 -0
- package/lib/steps/index.d.ts +39 -0
- package/lib/steps/index.js +115 -0
- package/lib/steps/style/custom-icon.d.ts +5 -0
- package/lib/steps/style/custom-icon.js +41 -0
- package/lib/steps/style/horizontal.d.ts +5 -0
- package/lib/steps/style/horizontal.js +20 -0
- package/lib/steps/style/index.d.ts +102 -0
- package/lib/steps/style/index.js +314 -0
- package/lib/steps/style/inline.d.ts +5 -0
- package/lib/steps/style/inline.js +121 -0
- package/lib/steps/style/label-placement.d.ts +5 -0
- package/lib/steps/style/label-placement.js +57 -0
- package/lib/steps/style/nav.d.ts +5 -0
- package/lib/steps/style/nav.js +136 -0
- package/lib/steps/style/progress-dot.d.ts +5 -0
- package/lib/steps/style/progress-dot.js +126 -0
- package/lib/steps/style/progress.d.ts +5 -0
- package/lib/steps/style/progress.js +75 -0
- package/lib/steps/style/rtl.d.ts +5 -0
- package/lib/steps/style/rtl.js +45 -0
- package/lib/steps/style/small.d.ts +5 -0
- package/lib/steps/style/small.js +68 -0
- package/lib/steps/style/vertical.d.ts +5 -0
- package/lib/steps/style/vertical.js +73 -0
- package/lib/steps/useLegacyItems.d.ts +3 -0
- package/lib/steps/useLegacyItems.js +34 -0
- package/lib/style/compact-item-vertical.d.ts +3 -0
- package/lib/style/compact-item-vertical.js +47 -0
- package/lib/style/compact-item.d.ts +17 -0
- package/lib/style/compact-item.js +69 -0
- package/lib/style/index.d.ts +11 -0
- package/lib/style/index.js +148 -0
- package/lib/style/motion/collapse.d.ts +3 -0
- package/lib/style/motion/collapse.js +24 -0
- package/lib/style/motion/fade.d.ts +6 -0
- package/lib/style/motion/fade.js +44 -0
- package/lib/style/motion/index.d.ts +6 -0
- package/lib/style/motion/index.js +221 -0
- package/lib/style/motion/motion.d.ts +2 -0
- package/lib/style/motion/motion.js +42 -0
- package/lib/style/motion/move.d.ts +14 -0
- package/lib/style/motion/move.js +145 -0
- package/lib/style/motion/slide.d.ts +14 -0
- package/lib/style/motion/slide.js +150 -0
- package/lib/style/motion/zoom.d.ts +18 -0
- package/lib/style/motion/zoom.js +191 -0
- package/lib/style/placementArrow.d.ts +19 -0
- package/lib/style/placementArrow.js +162 -0
- package/lib/style/reset.css +253 -0
- package/lib/style/roundedArrow.d.ts +7 -0
- package/lib/style/roundedArrow.js +84 -0
- package/lib/switch/index.d.ts +37 -0
- package/lib/switch/index.js +93 -0
- package/lib/switch/style/index.d.ts +71 -0
- package/lib/switch/style/index.js +323 -0
- package/lib/table/Column.d.ts +8 -0
- package/lib/table/Column.js +10 -0
- package/lib/table/ColumnGroup.d.ts +10 -0
- package/lib/table/ColumnGroup.js +10 -0
- package/lib/table/ExpandIcon.d.ts +12 -0
- package/lib/table/ExpandIcon.js +38 -0
- package/lib/table/InternalTable.d.ts +32 -0
- package/lib/table/InternalTable.js +399 -0
- package/lib/table/RcTable/VirtualTable.d.ts +5 -0
- package/lib/table/RcTable/VirtualTable.js +21 -0
- package/lib/table/RcTable/index.d.ts +5 -0
- package/lib/table/RcTable/index.js +21 -0
- package/lib/table/Table.d.ts +17 -0
- package/lib/table/Table.js +36 -0
- package/lib/table/hooks/useContainerWidth.d.ts +1 -0
- package/lib/table/hooks/useContainerWidth.js +20 -0
- package/lib/table/hooks/useFilter/FilterDropdown.d.ts +31 -0
- package/lib/table/hooks/useFilter/FilterDropdown.js +468 -0
- package/lib/table/hooks/useFilter/FilterSearch.d.ts +12 -0
- package/lib/table/hooks/useFilter/FilterSearch.js +36 -0
- package/lib/table/hooks/useFilter/FilterWrapper.d.ts +8 -0
- package/lib/table/hooks/useFilter/FilterWrapper.js +29 -0
- package/lib/table/hooks/useFilter/index.d.ts +22 -0
- package/lib/table/hooks/useFilter/index.js +213 -0
- package/lib/table/hooks/useLazyKVMap.d.ts +4 -0
- package/lib/table/hooks/useLazyKVMap.js +36 -0
- package/lib/table/hooks/usePagination.d.ts +5 -0
- package/lib/table/hooks/usePagination.js +75 -0
- package/lib/table/hooks/useSelection.d.ts +20 -0
- package/lib/table/hooks/useSelection.js +513 -0
- package/lib/table/hooks/useSorter.d.ts +19 -0
- package/lib/table/hooks/useSorter.js +372 -0
- package/lib/table/hooks/useTitleColumns.d.ts +4 -0
- package/lib/table/hooks/useTitleColumns.js +25 -0
- package/lib/table/index.d.ts +7 -0
- package/lib/table/index.js +10 -0
- package/lib/table/interface.d.ts +190 -0
- package/lib/table/interface.js +6 -0
- package/lib/table/style/bordered.d.ts +5 -0
- package/lib/table/style/bordered.js +145 -0
- package/lib/table/style/ellipsis.d.ts +5 -0
- package/lib/table/style/ellipsis.js +37 -0
- package/lib/table/style/empty.d.ts +5 -0
- package/lib/table/style/empty.js +27 -0
- package/lib/table/style/expand.d.ts +5 -0
- package/lib/table/style/expand.js +128 -0
- package/lib/table/style/filter.d.ts +4 -0
- package/lib/table/style/filter.js +158 -0
- package/lib/table/style/fixed.d.ts +5 -0
- package/lib/table/style/fixed.js +127 -0
- package/lib/table/style/index.d.ts +202 -0
- package/lib/table/style/index.js +325 -0
- package/lib/table/style/pagination.d.ts +5 -0
- package/lib/table/style/pagination.js +40 -0
- package/lib/table/style/radius.d.ts +5 -0
- package/lib/table/style/radius.js +52 -0
- package/lib/table/style/rtl.d.ts +5 -0
- package/lib/table/style/rtl.js +51 -0
- package/lib/table/style/selection.d.ts +5 -0
- package/lib/table/style/selection.js +101 -0
- package/lib/table/style/size.d.ts +5 -0
- package/lib/table/style/size.js +52 -0
- package/lib/table/style/sorter.d.ts +5 -0
- package/lib/table/style/sorter.js +98 -0
- package/lib/table/style/sticky.d.ts +5 -0
- package/lib/table/style/sticky.js +61 -0
- package/lib/table/style/summary.d.ts +5 -0
- package/lib/table/style/summary.js +34 -0
- package/lib/table/style/virtual.d.ts +5 -0
- package/lib/table/style/virtual.js +79 -0
- package/lib/table/util.d.ts +13 -0
- package/lib/table/util.js +43 -0
- package/lib/tabs/TabPane.d.ts +5 -0
- package/lib/tabs/TabPane.js +11 -0
- package/lib/tabs/hooks/useAnimateConfig.d.ts +3 -0
- package/lib/tabs/hooks/useAnimateConfig.js +39 -0
- package/lib/tabs/hooks/useLegacyItems.d.ts +4 -0
- package/lib/tabs/hooks/useLegacyItems.js +52 -0
- package/lib/tabs/index.d.ts +29 -0
- package/lib/tabs/index.js +122 -0
- package/lib/tabs/style/index.d.ts +136 -0
- package/lib/tabs/style/index.js +838 -0
- package/lib/tabs/style/motion.d.ts +4 -0
- package/lib/tabs/style/motion.js +44 -0
- package/lib/tag/CheckableTag.d.ts +17 -0
- package/lib/tag/CheckableTag.js +53 -0
- package/lib/tag/index.d.ts +27 -0
- package/lib/tag/index.js +126 -0
- package/lib/tag/style/index.d.ts +25 -0
- package/lib/tag/style/index.js +126 -0
- package/lib/tag/style/presetCmp.d.ts +2 -0
- package/lib/tag/style/presetCmp.js +37 -0
- package/lib/tag/style/statusCmp.d.ts +2 -0
- package/lib/tag/style/statusCmp.js +28 -0
- package/lib/theme/context.d.ts +31 -0
- package/lib/theme/context.js +22 -0
- package/lib/theme/getDesignToken.d.ts +4 -0
- package/lib/theme/getDesignToken.js +19 -0
- package/lib/theme/index.d.ts +35 -0
- package/lib/theme/index.js +44 -0
- package/lib/theme/interface/alias.d.ts +545 -0
- package/lib/theme/interface/alias.js +5 -0
- package/lib/theme/interface/components.d.ts +135 -0
- package/lib/theme/interface/components.js +5 -0
- package/lib/theme/interface/cssinjs-utils.d.ts +10 -0
- package/lib/theme/interface/cssinjs-utils.js +5 -0
- package/lib/theme/interface/index.d.ts +15 -0
- package/lib/theme/interface/index.js +12 -0
- package/lib/theme/interface/maps/colors.d.ts +530 -0
- package/lib/theme/interface/maps/colors.js +5 -0
- package/lib/theme/interface/maps/font.d.ts +117 -0
- package/lib/theme/interface/maps/font.js +5 -0
- package/lib/theme/interface/maps/index.d.ts +29 -0
- package/lib/theme/interface/maps/index.js +49 -0
- package/lib/theme/interface/maps/size.d.ts +69 -0
- package/lib/theme/interface/maps/size.js +5 -0
- package/lib/theme/interface/maps/style.d.ts +42 -0
- package/lib/theme/interface/maps/style.js +5 -0
- package/lib/theme/interface/presetColors.d.ts +11 -0
- package/lib/theme/interface/presetColors.js +7 -0
- package/lib/theme/interface/seeds.d.ts +225 -0
- package/lib/theme/interface/seeds.js +5 -0
- package/lib/theme/internal.d.ts +13 -0
- package/lib/theme/internal.js +105 -0
- package/lib/theme/themes/ColorMap.d.ts +15 -0
- package/lib/theme/themes/ColorMap.js +5 -0
- package/lib/theme/themes/compact/genCompactSizeMapToken.d.ts +2 -0
- package/lib/theme/themes/compact/genCompactSizeMapToken.js +24 -0
- package/lib/theme/themes/compact/index.d.ts +4 -0
- package/lib/theme/themes/compact/index.js +23 -0
- package/lib/theme/themes/dark/colorAlgorithm.d.ts +2 -0
- package/lib/theme/themes/dark/colorAlgorithm.js +14 -0
- package/lib/theme/themes/dark/colors.d.ts +3 -0
- package/lib/theme/themes/dark/colors.js +56 -0
- package/lib/theme/themes/dark/index.d.ts +4 -0
- package/lib/theme/themes/dark/index.js +34 -0
- package/lib/theme/themes/default/colorAlgorithm.d.ts +2 -0
- package/lib/theme/themes/default/colorAlgorithm.js +14 -0
- package/lib/theme/themes/default/colors.d.ts +3 -0
- package/lib/theme/themes/default/colors.js +54 -0
- package/lib/theme/themes/default/index.d.ts +2 -0
- package/lib/theme/themes/default/index.js +36 -0
- package/lib/theme/themes/seed.d.ts +4 -0
- package/lib/theme/themes/seed.js +73 -0
- package/lib/theme/themes/shared/genColorMapToken.d.ts +8 -0
- package/lib/theme/themes/shared/genColorMapToken.js +90 -0
- package/lib/theme/themes/shared/genCommonMapToken.d.ts +2 -0
- package/lib/theme/themes/shared/genCommonMapToken.js +24 -0
- package/lib/theme/themes/shared/genControlHeight.d.ts +3 -0
- package/lib/theme/themes/shared/genControlHeight.js +17 -0
- package/lib/theme/themes/shared/genFontMapToken.d.ts +3 -0
- package/lib/theme/themes/shared/genFontMapToken.js +42 -0
- package/lib/theme/themes/shared/genFontSizes.d.ts +5 -0
- package/lib/theme/themes/shared/genFontSizes.js +25 -0
- package/lib/theme/themes/shared/genRadius.d.ts +3 -0
- package/lib/theme/themes/shared/genRadius.js +52 -0
- package/lib/theme/themes/shared/genSizeMapToken.d.ts +2 -0
- package/lib/theme/themes/shared/genSizeMapToken.js +31 -0
- package/lib/theme/useToken.d.ts +19 -0
- package/lib/theme/useToken.js +129 -0
- package/lib/theme/util/alias.d.ts +12 -0
- package/lib/theme/util/alias.js +183 -0
- package/lib/theme/util/genPresetColor.d.ts +15 -0
- package/lib/theme/util/genPresetColor.js +21 -0
- package/lib/theme/util/genStyleUtils.d.ts +26 -0
- package/lib/theme/util/genStyleUtils.js +58 -0
- package/lib/theme/util/getAlphaColor.d.ts +2 -0
- package/lib/theme/util/getAlphaColor.js +48 -0
- package/lib/theme/util/useResetIconStyle.d.ts +3 -0
- package/lib/theme/util/useResetIconStyle.js +31 -0
- package/lib/time-picker/index.d.ts +30 -0
- package/lib/time-picker/index.js +70 -0
- package/lib/time-picker/locale/ar_EG.d.ts +3 -0
- package/lib/time-picker/locale/ar_EG.js +10 -0
- package/lib/time-picker/locale/az_AZ.d.ts +3 -0
- package/lib/time-picker/locale/az_AZ.js +11 -0
- package/lib/time-picker/locale/bg_BG.d.ts +3 -0
- package/lib/time-picker/locale/bg_BG.js +10 -0
- package/lib/time-picker/locale/bn_BD.d.ts +3 -0
- package/lib/time-picker/locale/bn_BD.js +11 -0
- package/lib/time-picker/locale/by_BY.d.ts +3 -0
- package/lib/time-picker/locale/by_BY.js +11 -0
- package/lib/time-picker/locale/ca_ES.d.ts +3 -0
- package/lib/time-picker/locale/ca_ES.js +10 -0
- package/lib/time-picker/locale/cs_CZ.d.ts +3 -0
- package/lib/time-picker/locale/cs_CZ.js +10 -0
- package/lib/time-picker/locale/da_DK.d.ts +3 -0
- package/lib/time-picker/locale/da_DK.js +11 -0
- package/lib/time-picker/locale/de_DE.d.ts +3 -0
- package/lib/time-picker/locale/de_DE.js +11 -0
- package/lib/time-picker/locale/el_GR.d.ts +3 -0
- package/lib/time-picker/locale/el_GR.js +10 -0
- package/lib/time-picker/locale/en_GB.d.ts +3 -0
- package/lib/time-picker/locale/en_GB.js +10 -0
- package/lib/time-picker/locale/en_US.d.ts +3 -0
- package/lib/time-picker/locale/en_US.js +11 -0
- package/lib/time-picker/locale/es_ES.d.ts +3 -0
- package/lib/time-picker/locale/es_ES.js +10 -0
- package/lib/time-picker/locale/et_EE.d.ts +3 -0
- package/lib/time-picker/locale/et_EE.js +10 -0
- package/lib/time-picker/locale/eu_ES.d.ts +3 -0
- package/lib/time-picker/locale/eu_ES.js +10 -0
- package/lib/time-picker/locale/fa_IR.d.ts +3 -0
- package/lib/time-picker/locale/fa_IR.js +11 -0
- package/lib/time-picker/locale/fi_FI.d.ts +3 -0
- package/lib/time-picker/locale/fi_FI.js +10 -0
- package/lib/time-picker/locale/fr_BE.d.ts +3 -0
- package/lib/time-picker/locale/fr_BE.js +11 -0
- package/lib/time-picker/locale/fr_CA.d.ts +3 -0
- package/lib/time-picker/locale/fr_CA.js +11 -0
- package/lib/time-picker/locale/fr_FR.d.ts +3 -0
- package/lib/time-picker/locale/fr_FR.js +11 -0
- package/lib/time-picker/locale/ga_IE.d.ts +3 -0
- package/lib/time-picker/locale/ga_IE.js +11 -0
- package/lib/time-picker/locale/gl_ES.d.ts +3 -0
- package/lib/time-picker/locale/gl_ES.js +10 -0
- package/lib/time-picker/locale/he_IL.d.ts +3 -0
- package/lib/time-picker/locale/he_IL.js +10 -0
- package/lib/time-picker/locale/hi_IN.d.ts +3 -0
- package/lib/time-picker/locale/hi_IN.js +11 -0
- package/lib/time-picker/locale/hr_HR.d.ts +3 -0
- package/lib/time-picker/locale/hr_HR.js +11 -0
- package/lib/time-picker/locale/hu_HU.d.ts +3 -0
- package/lib/time-picker/locale/hu_HU.js +10 -0
- package/lib/time-picker/locale/id_ID.d.ts +3 -0
- package/lib/time-picker/locale/id_ID.js +11 -0
- package/lib/time-picker/locale/is_IS.d.ts +3 -0
- package/lib/time-picker/locale/is_IS.js +10 -0
- package/lib/time-picker/locale/it_IT.d.ts +3 -0
- package/lib/time-picker/locale/it_IT.js +10 -0
- package/lib/time-picker/locale/ja_JP.d.ts +3 -0
- package/lib/time-picker/locale/ja_JP.js +11 -0
- package/lib/time-picker/locale/ka_GE.d.ts +3 -0
- package/lib/time-picker/locale/ka_GE.js +11 -0
- package/lib/time-picker/locale/kk_KZ.d.ts +3 -0
- package/lib/time-picker/locale/kk_KZ.js +11 -0
- package/lib/time-picker/locale/km_KH.d.ts +3 -0
- package/lib/time-picker/locale/km_KH.js +11 -0
- package/lib/time-picker/locale/kmr_IQ.d.ts +3 -0
- package/lib/time-picker/locale/kmr_IQ.js +10 -0
- package/lib/time-picker/locale/kn_IN.d.ts +3 -0
- package/lib/time-picker/locale/kn_IN.js +10 -0
- package/lib/time-picker/locale/ko_KR.d.ts +3 -0
- package/lib/time-picker/locale/ko_KR.js +11 -0
- package/lib/time-picker/locale/lt_LT.d.ts +3 -0
- package/lib/time-picker/locale/lt_LT.js +11 -0
- package/lib/time-picker/locale/lv_LV.d.ts +3 -0
- package/lib/time-picker/locale/lv_LV.js +10 -0
- package/lib/time-picker/locale/mk_MK.d.ts +3 -0
- package/lib/time-picker/locale/mk_MK.js +10 -0
- package/lib/time-picker/locale/ml_IN.d.ts +3 -0
- package/lib/time-picker/locale/ml_IN.js +11 -0
- package/lib/time-picker/locale/mn_MN.d.ts +3 -0
- package/lib/time-picker/locale/mn_MN.js +10 -0
- package/lib/time-picker/locale/ms_MY.d.ts +3 -0
- package/lib/time-picker/locale/ms_MY.js +10 -0
- package/lib/time-picker/locale/my_MM.d.ts +3 -0
- package/lib/time-picker/locale/my_MM.js +11 -0
- package/lib/time-picker/locale/nb_NO.d.ts +3 -0
- package/lib/time-picker/locale/nb_NO.js +11 -0
- package/lib/time-picker/locale/nl_BE.d.ts +3 -0
- package/lib/time-picker/locale/nl_BE.js +11 -0
- package/lib/time-picker/locale/nl_NL.d.ts +3 -0
- package/lib/time-picker/locale/nl_NL.js +11 -0
- package/lib/time-picker/locale/pl_PL.d.ts +3 -0
- package/lib/time-picker/locale/pl_PL.js +10 -0
- package/lib/time-picker/locale/pt_BR.d.ts +3 -0
- package/lib/time-picker/locale/pt_BR.js +10 -0
- package/lib/time-picker/locale/pt_PT.d.ts +3 -0
- package/lib/time-picker/locale/pt_PT.js +10 -0
- package/lib/time-picker/locale/ro_RO.d.ts +3 -0
- package/lib/time-picker/locale/ro_RO.js +10 -0
- package/lib/time-picker/locale/ru_RU.d.ts +4 -0
- package/lib/time-picker/locale/ru_RU.js +11 -0
- package/lib/time-picker/locale/si_LK.d.ts +3 -0
- package/lib/time-picker/locale/si_LK.js +11 -0
- package/lib/time-picker/locale/sk_SK.d.ts +3 -0
- package/lib/time-picker/locale/sk_SK.js +10 -0
- package/lib/time-picker/locale/sl_SI.d.ts +3 -0
- package/lib/time-picker/locale/sl_SI.js +10 -0
- package/lib/time-picker/locale/sr_RS.d.ts +3 -0
- package/lib/time-picker/locale/sr_RS.js +11 -0
- package/lib/time-picker/locale/sv_SE.d.ts +3 -0
- package/lib/time-picker/locale/sv_SE.js +10 -0
- package/lib/time-picker/locale/ta_IN.d.ts +3 -0
- package/lib/time-picker/locale/ta_IN.js +10 -0
- package/lib/time-picker/locale/th_TH.d.ts +3 -0
- package/lib/time-picker/locale/th_TH.js +10 -0
- package/lib/time-picker/locale/tk_TK.d.ts +3 -0
- package/lib/time-picker/locale/tk_TK.js +11 -0
- package/lib/time-picker/locale/tr_TR.d.ts +3 -0
- package/lib/time-picker/locale/tr_TR.js +11 -0
- package/lib/time-picker/locale/uk_UA.d.ts +3 -0
- package/lib/time-picker/locale/uk_UA.js +11 -0
- package/lib/time-picker/locale/ur_PK.d.ts +3 -0
- package/lib/time-picker/locale/ur_PK.js +11 -0
- package/lib/time-picker/locale/uz_UZ.d.ts +3 -0
- package/lib/time-picker/locale/uz_UZ.js +11 -0
- package/lib/time-picker/locale/vi_VN.d.ts +3 -0
- package/lib/time-picker/locale/vi_VN.js +11 -0
- package/lib/time-picker/locale/zh_CN.d.ts +3 -0
- package/lib/time-picker/locale/zh_CN.js +11 -0
- package/lib/time-picker/locale/zh_TW.d.ts +3 -0
- package/lib/time-picker/locale/zh_TW.js +10 -0
- package/lib/timeline/Timeline.d.ts +20 -0
- package/lib/timeline/Timeline.js +67 -0
- package/lib/timeline/TimelineItem.d.ts +20 -0
- package/lib/timeline/TimelineItem.js +61 -0
- package/lib/timeline/TimelineItemList.d.ts +7 -0
- package/lib/timeline/TimelineItemList.js +88 -0
- package/lib/timeline/index.d.ts +4 -0
- package/lib/timeline/index.js +10 -0
- package/lib/timeline/style/index.d.ts +31 -0
- package/lib/timeline/style/index.js +203 -0
- package/lib/timeline/useItems.d.ts +4 -0
- package/lib/timeline/useItems.js +20 -0
- package/lib/tooltip/PurePanel.d.ts +7 -0
- package/lib/tooltip/PurePanel.js +47 -0
- package/lib/tooltip/index.d.ts +80 -0
- package/lib/tooltip/index.js +194 -0
- package/lib/tooltip/style/index.d.ts +13 -0
- package/lib/tooltip/style/index.js +127 -0
- package/lib/tooltip/util.d.ts +6 -0
- package/lib/tooltip/util.js +27 -0
- package/lib/tour/PurePanel.d.ts +6 -0
- package/lib/tour/PurePanel.js +70 -0
- package/lib/tour/index.d.ts +7 -0
- package/lib/tour/index.js +93 -0
- package/lib/tour/interface.d.ts +31 -0
- package/lib/tour/interface.js +5 -0
- package/lib/tour/panelRender.d.ts +12 -0
- package/lib/tour/panelRender.js +117 -0
- package/lib/tour/style/index.d.ts +28 -0
- package/lib/tour/style/index.js +218 -0
- package/lib/transfer/ListBody.d.ts +17 -0
- package/lib/transfer/ListBody.js +112 -0
- package/lib/transfer/ListItem.d.ts +15 -0
- package/lib/transfer/ListItem.js +61 -0
- package/lib/transfer/hooks/useData.d.ts +5 -0
- package/lib/transfer/hooks/useData.js +36 -0
- package/lib/transfer/hooks/useSelection.d.ts +9 -0
- package/lib/transfer/hooks/useSelection.js +45 -0
- package/lib/transfer/index.d.ts +91 -0
- package/lib/transfer/index.js +307 -0
- package/lib/transfer/interface.d.ts +7 -0
- package/lib/transfer/interface.js +5 -0
- package/lib/transfer/list.d.ts +48 -0
- package/lib/transfer/list.js +270 -0
- package/lib/transfer/operation.d.ts +17 -0
- package/lib/transfer/operation.js +48 -0
- package/lib/transfer/search.d.ts +11 -0
- package/lib/transfer/search.js +41 -0
- package/lib/transfer/style/index.d.ts +36 -0
- package/lib/transfer/style/index.js +304 -0
- package/lib/tree/DirectoryTree.d.ts +16 -0
- package/lib/tree/DirectoryTree.js +176 -0
- package/lib/tree/Tree.d.ts +136 -0
- package/lib/tree/Tree.js +116 -0
- package/lib/tree/index.d.ts +16 -0
- package/lib/tree/index.js +15 -0
- package/lib/tree/style/directory.d.ts +3 -0
- package/lib/tree/style/directory.js +59 -0
- package/lib/tree/style/index.d.ts +57 -0
- package/lib/tree/style/index.js +370 -0
- package/lib/tree/utils/dictUtil.d.ts +13 -0
- package/lib/tree/utils/dictUtil.js +80 -0
- package/lib/tree/utils/dropIndicator.d.ts +11 -0
- package/lib/tree/utils/dropIndicator.js +43 -0
- package/lib/tree/utils/iconUtil.d.ts +13 -0
- package/lib/tree/utils/iconUtil.js +84 -0
- package/lib/tree-select/index.d.ts +61 -0
- package/lib/tree-select/index.js +233 -0
- package/lib/tree-select/style/index.d.ts +6 -0
- package/lib/tree-select/style/index.js +68 -0
- package/lib/typography/Base/CopyBtn.d.ts +13 -0
- package/lib/typography/Base/CopyBtn.js +50 -0
- package/lib/typography/Base/Ellipsis.d.ts +18 -0
- package/lib/typography/Base/Ellipsis.js +207 -0
- package/lib/typography/Base/EllipsisTooltip.d.ts +10 -0
- package/lib/typography/Base/EllipsisTooltip.js +28 -0
- package/lib/typography/Base/index.d.ts +58 -0
- package/lib/typography/Base/index.js +364 -0
- package/lib/typography/Base/util.d.ts +10 -0
- package/lib/typography/Base/util.js +49 -0
- package/lib/typography/Editable.d.ts +20 -0
- package/lib/typography/Editable.js +120 -0
- package/lib/typography/Link.d.ts +7 -0
- package/lib/typography/Link.js +42 -0
- package/lib/typography/Paragraph.d.ts +6 -0
- package/lib/typography/Paragraph.js +17 -0
- package/lib/typography/Text.d.ts +7 -0
- package/lib/typography/Text.js +44 -0
- package/lib/typography/Title.d.ts +8 -0
- package/lib/typography/Title.js +38 -0
- package/lib/typography/Typography.d.ts +18 -0
- package/lib/typography/Typography.js +66 -0
- package/lib/typography/hooks/useCopyClick.d.ts +11 -0
- package/lib/typography/hooks/useCopyClick.js +85 -0
- package/lib/typography/hooks/useMergedConfig.d.ts +1 -0
- package/lib/typography/hooks/useMergedConfig.js +14 -0
- package/lib/typography/hooks/usePrevious.d.ts +2 -0
- package/lib/typography/hooks/usePrevious.js +15 -0
- package/lib/typography/hooks/useTooltipProps.d.ts +60 -0
- package/lib/typography/hooks/useTooltipProps.js +28 -0
- package/lib/typography/index.d.ts +13 -0
- package/lib/typography/index.js +19 -0
- package/lib/typography/style/index.d.ts +18 -0
- package/lib/typography/style/index.js +102 -0
- package/lib/typography/style/mixins.d.ts +9 -0
- package/lib/typography/style/mixins.js +240 -0
- package/lib/upload/Dragger.d.ts +10 -0
- package/lib/upload/Dragger.js +40 -0
- package/lib/upload/Upload.d.ts +23 -0
- package/lib/upload/Upload.js +426 -0
- package/lib/upload/UploadList/ListItem.d.ts +28 -0
- package/lib/upload/UploadList/ListItem.js +177 -0
- package/lib/upload/UploadList/index.d.ts +8 -0
- package/lib/upload/UploadList/index.js +204 -0
- package/lib/upload/index.d.ts +13 -0
- package/lib/upload/index.js +15 -0
- package/lib/upload/interface.d.ts +138 -0
- package/lib/upload/interface.js +5 -0
- package/lib/upload/style/dragger.d.ts +4 -0
- package/lib/upload/style/dragger.js +77 -0
- package/lib/upload/style/index.d.ts +16 -0
- package/lib/upload/style/index.js +58 -0
- package/lib/upload/style/list.d.ts +4 -0
- package/lib/upload/style/list.js +112 -0
- package/lib/upload/style/motion.d.ts +4 -0
- package/lib/upload/style/motion.js +51 -0
- package/lib/upload/style/picture.d.ts +5 -0
- package/lib/upload/style/picture.js +239 -0
- package/lib/upload/style/rtl.d.ts +4 -0
- package/lib/upload/style/rtl.js +18 -0
- package/lib/upload/utils.d.ts +8 -0
- package/lib/upload/utils.js +136 -0
- package/lib/version/index.d.ts +2 -0
- package/lib/version/index.js +12 -0
- package/lib/version/token-meta.json +1 -0
- package/lib/version/token.json +1 -0
- package/lib/version/version.d.ts +2 -0
- package/lib/version/version.js +7 -0
- package/lib/watermark/context.d.ts +8 -0
- package/lib/watermark/context.js +31 -0
- package/lib/watermark/index.d.ts +26 -0
- package/lib/watermark/index.js +227 -0
- package/lib/watermark/useClips.d.ts +7 -0
- package/lib/watermark/useClips.js +102 -0
- package/lib/watermark/useRafDebounce.d.ts +4 -0
- package/lib/watermark/useRafDebounce.js +28 -0
- package/lib/watermark/useWatermark.d.ts +13 -0
- package/lib/watermark/useWatermark.js +51 -0
- package/lib/watermark/utils.d.ts +7 -0
- package/lib/watermark/utils.js +34 -0
- package/locale/ar_EG.d.ts +3 -0
- package/locale/ar_EG.js +1 -0
- package/locale/az_AZ.d.ts +3 -0
- package/locale/az_AZ.js +1 -0
- package/locale/bg_BG.d.ts +3 -0
- package/locale/bg_BG.js +1 -0
- package/locale/bn_BD.d.ts +3 -0
- package/locale/bn_BD.js +1 -0
- package/locale/by_BY.d.ts +3 -0
- package/locale/by_BY.js +1 -0
- package/locale/ca_ES.d.ts +3 -0
- package/locale/ca_ES.js +1 -0
- package/locale/context.d.ts +3 -0
- package/locale/context.js +1 -0
- package/locale/cs_CZ.d.ts +3 -0
- package/locale/cs_CZ.js +1 -0
- package/locale/da_DK.d.ts +3 -0
- package/locale/da_DK.js +1 -0
- package/locale/de_DE.d.ts +3 -0
- package/locale/de_DE.js +1 -0
- package/locale/el_GR.d.ts +3 -0
- package/locale/el_GR.js +1 -0
- package/locale/en_GB.d.ts +3 -0
- package/locale/en_GB.js +1 -0
- package/locale/en_US.d.ts +3 -0
- package/locale/en_US.js +1 -0
- package/locale/es_ES.d.ts +3 -0
- package/locale/es_ES.js +1 -0
- package/locale/et_EE.d.ts +3 -0
- package/locale/et_EE.js +1 -0
- package/locale/eu_ES.d.ts +3 -0
- package/locale/eu_ES.js +1 -0
- package/locale/fa_IR.d.ts +3 -0
- package/locale/fa_IR.js +1 -0
- package/locale/fi_FI.d.ts +3 -0
- package/locale/fi_FI.js +1 -0
- package/locale/fr_BE.d.ts +3 -0
- package/locale/fr_BE.js +1 -0
- package/locale/fr_CA.d.ts +3 -0
- package/locale/fr_CA.js +1 -0
- package/locale/fr_FR.d.ts +3 -0
- package/locale/fr_FR.js +1 -0
- package/locale/ga_IE.d.ts +3 -0
- package/locale/ga_IE.js +1 -0
- package/locale/gl_ES.d.ts +3 -0
- package/locale/gl_ES.js +1 -0
- package/locale/he_IL.d.ts +3 -0
- package/locale/he_IL.js +1 -0
- package/locale/hi_IN.d.ts +3 -0
- package/locale/hi_IN.js +1 -0
- package/locale/hr_HR.d.ts +3 -0
- package/locale/hr_HR.js +1 -0
- package/locale/hu_HU.d.ts +3 -0
- package/locale/hu_HU.js +1 -0
- package/locale/hy_AM.d.ts +3 -0
- package/locale/hy_AM.js +1 -0
- package/locale/id_ID.d.ts +3 -0
- package/locale/id_ID.js +1 -0
- package/locale/index.d.ts +3 -0
- package/locale/index.js +1 -0
- package/locale/is_IS.d.ts +3 -0
- package/locale/is_IS.js +1 -0
- package/locale/it_IT.d.ts +3 -0
- package/locale/it_IT.js +1 -0
- package/locale/ja_JP.d.ts +3 -0
- package/locale/ja_JP.js +1 -0
- package/locale/ka_GE.d.ts +3 -0
- package/locale/ka_GE.js +1 -0
- package/locale/kk_KZ.d.ts +3 -0
- package/locale/kk_KZ.js +1 -0
- package/locale/km_KH.d.ts +3 -0
- package/locale/km_KH.js +1 -0
- package/locale/kmr_IQ.d.ts +3 -0
- package/locale/kmr_IQ.js +1 -0
- package/locale/kn_IN.d.ts +3 -0
- package/locale/kn_IN.js +1 -0
- package/locale/ko_KR.d.ts +3 -0
- package/locale/ko_KR.js +1 -0
- package/locale/ku_IQ.d.ts +3 -0
- package/locale/ku_IQ.js +1 -0
- package/locale/lt_LT.d.ts +3 -0
- package/locale/lt_LT.js +1 -0
- package/locale/lv_LV.d.ts +3 -0
- package/locale/lv_LV.js +1 -0
- package/locale/mk_MK.d.ts +3 -0
- package/locale/mk_MK.js +1 -0
- package/locale/ml_IN.d.ts +3 -0
- package/locale/ml_IN.js +1 -0
- package/locale/mn_MN.d.ts +3 -0
- package/locale/mn_MN.js +1 -0
- package/locale/ms_MY.d.ts +3 -0
- package/locale/ms_MY.js +1 -0
- package/locale/my_MM.d.ts +3 -0
- package/locale/my_MM.js +1 -0
- package/locale/nb_NO.d.ts +3 -0
- package/locale/nb_NO.js +1 -0
- package/locale/ne_NP.d.ts +3 -0
- package/locale/ne_NP.js +1 -0
- package/locale/nl_BE.d.ts +3 -0
- package/locale/nl_BE.js +1 -0
- package/locale/nl_NL.d.ts +3 -0
- package/locale/nl_NL.js +1 -0
- package/locale/pl_PL.d.ts +3 -0
- package/locale/pl_PL.js +1 -0
- package/locale/pt_BR.d.ts +3 -0
- package/locale/pt_BR.js +1 -0
- package/locale/pt_PT.d.ts +3 -0
- package/locale/pt_PT.js +1 -0
- package/locale/ro_RO.d.ts +3 -0
- package/locale/ro_RO.js +1 -0
- package/locale/ru_RU.d.ts +3 -0
- package/locale/ru_RU.js +1 -0
- package/locale/si_LK.d.ts +3 -0
- package/locale/si_LK.js +1 -0
- package/locale/sk_SK.d.ts +3 -0
- package/locale/sk_SK.js +1 -0
- package/locale/sl_SI.d.ts +3 -0
- package/locale/sl_SI.js +1 -0
- package/locale/sr_RS.d.ts +3 -0
- package/locale/sr_RS.js +1 -0
- package/locale/sv_SE.d.ts +3 -0
- package/locale/sv_SE.js +1 -0
- package/locale/ta_IN.d.ts +3 -0
- package/locale/ta_IN.js +1 -0
- package/locale/th_TH.d.ts +3 -0
- package/locale/th_TH.js +1 -0
- package/locale/tk_TK.d.ts +3 -0
- package/locale/tk_TK.js +1 -0
- package/locale/tr_TR.d.ts +3 -0
- package/locale/tr_TR.js +1 -0
- package/locale/uk_UA.d.ts +3 -0
- package/locale/uk_UA.js +1 -0
- package/locale/ur_PK.d.ts +3 -0
- package/locale/ur_PK.js +1 -0
- package/locale/useLocale.d.ts +3 -0
- package/locale/useLocale.js +1 -0
- package/locale/uz_UZ.d.ts +3 -0
- package/locale/uz_UZ.js +1 -0
- package/locale/vi_VN.d.ts +3 -0
- package/locale/vi_VN.js +1 -0
- package/locale/zh_CN.d.ts +3 -0
- package/locale/zh_CN.js +1 -0
- package/locale/zh_HK.d.ts +3 -0
- package/locale/zh_HK.js +1 -0
- package/locale/zh_TW.d.ts +3 -0
- package/locale/zh_TW.js +1 -0
- package/package.json +345 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorTextQuaternary","marginXXS","borderRadius","controlItemBgHover","colorBgTextHover","motionEaseInOut"],"component":{"titleHeight":24,"indentSize":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeHoverColor":"rgba(0, 0, 0, 0.88)","nodeSelectedBg":"#e6f4ff","nodeSelectedColor":"rgba(0, 0, 0, 0.88)","directoryNodeSelectedColor":"#fff","directoryNodeSelectedBg":"#1677ff"}},"Upload":{"global":["fontSizeHeading3","fontHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontSize","lineHeight","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","fontHeightSM","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{"actionsColor":"rgba(0, 0, 0, 0.45)"}},"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","fontFamilyCode","colorLink","linkDecoration","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorLinkHover","colorLinkActive","marginXXS","paddingSM","marginXS","fontSize"],"component":{"titleMarginTop":"1.2em","titleMarginBottom":"0.5em"}},"TreeSelect":{"global":["colorBgElevated","paddingXS","colorTextQuaternary","marginXXS","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorPrimary","colorTextDisabled","controlItemBgHover","controlInteractiveSize","colorBgTextHover","colorBorder","motionDurationMid","lineWidthBold","marginXS","borderRadiusSM","colorBgContainer","lineWidth","lineType","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled"],"component":{"titleHeight":24,"indentSize":24,"nodeHoverBg":"rgba(0, 0, 0, 0.04)","nodeHoverColor":"rgba(0, 0, 0, 0.88)","nodeSelectedBg":"#e6f4ff","nodeSelectedColor":"rgba(0, 0, 0, 0.88)"}},"Transfer":{"global":["marginXS","marginXXS","fontSizeIcon","colorBgContainerDisabled","colorText","fontSize","lineHeight","fontFamily","colorBorder","colorSplit","lineWidth","controlItemBgActive","colorTextDisabled","colorTextSecondary","paddingSM","lineType","motionDurationSlow","controlItemBgHover","borderRadiusLG","colorBgContainer","controlItemBgActiveHover","colorLink","linkDecoration","lineWidthFocus","colorPrimaryBorder","colorLinkHover","colorLinkActive","paddingXS","controlHeightLG","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250,"headerHeight":40,"itemHeight":32,"itemPaddingBlock":5,"transferHeaderVerticalPadding":9}},"Tour":{"global":["borderRadiusLG","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorFill","boxShadowTertiary","colorBgElevated","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","motionDurationSlow","colorText","fontSize","lineHeight","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","boxShadowPopoverArrow","sizePopupArrow"],"component":{"zIndexPopup":1070,"closeBtnSize":22,"primaryPrevBtnBg":"rgba(255, 255, 255, 0.15)","primaryNextBtnHoverBg":"rgb(240, 240, 240)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Tooltip":{"global":["borderRadius","colorTextLightSolid","colorBgSpotlight","controlHeight","boxShadowSecondary","paddingSM","paddingXS","colorText","fontSize","lineHeight","fontFamily","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Image":{"global":["controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","colorTextLightSolid","motionEaseOut","paddingSM","marginXL","margin","paddingLG","marginSM","zIndexPopupBase","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgba(255, 255, 255, 0.65)","previewOperationHoverColor":"rgba(255, 255, 255, 0.85)","previewOperationColorDisabled":"rgba(255, 255, 255, 0.25)","previewOperationSize":18}},"Grid":{"global":[],"component":{}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","marginXXS","controlHeight","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationFast","motionEaseInOut","margin","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{"labelRequiredMarkColor":"#ff4d4f","labelColor":"rgba(0, 0, 0, 0.88)","labelFontSize":14,"labelHeight":32,"labelColonMarginInlineStart":2,"labelColonMarginInlineEnd":8,"itemMarginBottom":24,"verticalLabelPadding":"0 0 8px","verticalLabelMargin":0,"inlineItemMarginBottom":0}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","paddingXXS","margin","borderRadiusLG","borderRadiusSM","zIndexPopupBase","colorText","lineHeight","fontFamily","lineWidth","lineType","colorSplit","boxShadowSecondary","motionDurationMid","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{"dotOffsetInCircle":5.857864376269049,"dotOffsetInSquare":2.3431457505076194}},"Flex":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDescription"],"component":{}},"Dropdown":{"global":["marginXXS","sizePopupArrow","paddingXXS","motionDurationMid","fontSize","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","borderRadiusXS","colorText","lineHeight","fontFamily","borderRadiusLG","boxShadowSecondary","lineWidthFocus","colorPrimaryBorder","colorTextDescription","marginXS","fontSizeSM","padding","borderRadiusSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050,"paddingBlock":5,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Drawer":{"global":["borderRadiusSM","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingXS","padding","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginXS","colorIcon","colorIconHover","colorBgTextHover","colorBgTextActive","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown","lineWidthFocus","colorPrimaryBorder"],"component":{"zIndexPopup":1000,"footerPaddingBlock":8,"footerPaddingInline":16}},"Divider":{"global":["margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"textPaddingInline":"1em","orientationMargin":0.05,"verticalMarginInline":8}},"Descriptions":{"global":["colorText","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","padding","paddingLG","colorTextSecondary","paddingSM","paddingXS","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG","colorTextTertiary"],"component":{"labelBg":"rgba(0, 0, 0, 0.02)","titleColor":"rgba(0, 0, 0, 0.88)","titleMarginBottom":20,"itemPaddingBottom":16,"itemPaddingEnd":16,"colonMarginRight":8,"colonMarginLeft":2,"contentColor":"rgba(0, 0, 0, 0.88)","extraColor":"rgba(0, 0, 0, 0.88)"}},"Timeline":{"global":["paddingXXS","colorText","fontSize","lineHeight","fontFamily","lineType","fontSizeSM","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{"tailColor":"rgba(5, 5, 5, 0.06)","tailWidth":2,"dotBorderWidth":2,"dotBg":"#ffffff","itemPaddingBottom":20}},"Tag":{"global":["lineWidth","fontSizeIcon","fontSizeSM","lineHeightSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive"],"component":{"defaultBg":"#fafafa","defaultColor":"rgba(0, 0, 0, 0.88)"}},"Tabs":{"global":["paddingXXS","borderRadius","marginSM","marginXS","marginXXS","margin","colorBorderSecondary","lineWidth","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","paddingLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","controlHeightLG","paddingXS","lineWidthFocus","colorPrimaryBorder","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050,"cardBg":"rgba(0, 0, 0, 0.02)","cardHeight":40,"cardPadding":"8px 16px","cardPaddingSM":"6px 16px","cardPaddingLG":"8px 16px 6px","titleFontSize":14,"titleFontSizeLG":16,"titleFontSizeSM":14,"inkBarColor":"#1677ff","horizontalMargin":"0 0 16px 0","horizontalItemGutter":32,"horizontalItemMargin":"","horizontalItemMarginRTL":"","horizontalItemPadding":"12px 0","horizontalItemPaddingSM":"8px 0","horizontalItemPaddingLG":"16px 0","verticalItemPadding":"8px 24px","verticalItemMargin":"16px 0 0 0","itemColor":"rgba(0, 0, 0, 0.88)","itemSelectedColor":"#1677ff","itemHoverColor":"#4096ff","itemActiveColor":"#0958d9","cardGutter":2}},"Table":{"global":["colorTextHeading","colorSplit","colorBgContainer","controlInteractiveSize","padding","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","margin","paddingXS","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","controlItemBgActive","boxShadowSecondary","colorLink","linkDecoration","lineWidthFocus","colorPrimaryBorder","colorLinkHover","colorLinkActive","opacityLoading"],"component":{"headerBg":"#fafafa","headerColor":"rgba(0, 0, 0, 0.88)","headerSortActiveBg":"#f0f0f0","headerSortHoverBg":"#f0f0f0","bodySortBg":"#fafafa","rowHoverBg":"#fafafa","rowSelectedBg":"#e6f4ff","rowSelectedHoverBg":"#bae0ff","rowExpandedBg":"rgba(0, 0, 0, 0.02)","cellPaddingBlock":16,"cellPaddingInline":16,"cellPaddingBlockMD":12,"cellPaddingInlineMD":8,"cellPaddingBlockSM":8,"cellPaddingInlineSM":8,"borderColor":"#f0f0f0","headerBorderRadius":8,"footerBg":"#fafafa","footerColor":"rgba(0, 0, 0, 0.88)","cellFontSize":14,"cellFontSizeMD":14,"cellFontSizeSM":14,"headerSplitColor":"#f0f0f0","fixedHeaderSortActiveBg":"#f0f0f0","headerFilterHoverBg":"rgba(0, 0, 0, 0.06)","filterDropdownMenuBg":"#ffffff","filterDropdownBg":"#ffffff","expandIconBg":"#ffffff","selectionColumnWidth":32,"stickyScrollBarBg":"rgba(0, 0, 0, 0.25)","stickyScrollBarBorderRadius":100,"expandIconMarginTop":2.5,"headerIconColor":"rgba(0, 0, 0, 0.29)","headerIconHoverColor":"rgba(0, 0, 0, 0.57)","expandIconHalfInner":7,"expandIconSize":17,"expandIconScale":0.9411764705882353}},"Switch":{"global":["motionDurationMid","colorPrimary","opacityLoading","fontSizeIcon","colorText","fontSize","lineHeight","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","marginXXS"],"component":{"trackHeight":22,"trackHeightSM":16,"trackMinWidth":44,"trackMinWidthSM":28,"trackPadding":2,"handleBg":"#fff","handleSize":18,"handleSizeSM":12,"handleShadow":"0 2px 4px 0 rgba(0, 35, 11, 0.2)","innerMinMargin":9,"innerMaxMargin":24,"innerMinMarginSM":6,"innerMaxMarginSM":18}},"Steps":{"global":["colorTextDisabled","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextDescription","colorTextQuaternary","colorError","colorBorderSecondary","colorSplit","fontSize","lineHeight","fontFamily","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","marginXS","lineWidth","lineType","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","paddingXXS","margin","controlHeight","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"titleLineHeight":32,"customIconSize":32,"customIconTop":0,"customIconFontSize":24,"iconSize":32,"iconTop":-0.5,"iconFontSize":14,"iconSizeSM":24,"dotSize":8,"dotCurrentSize":10,"navArrowColor":"rgba(0, 0, 0, 0.25)","navContentMaxWidth":"auto","descriptionMaxWidth":140,"waitIconColor":"rgba(0, 0, 0, 0.25)","waitIconBgColor":"#ffffff","waitIconBorderColor":"rgba(0, 0, 0, 0.25)","finishIconBgColor":"#ffffff","finishIconBorderColor":"#1677ff"}},"Statistic":{"global":["marginXXS","padding","colorTextDescription","colorTextHeading","fontFamily","colorText","fontSize","lineHeight"],"component":{"titleFontSize":14,"contentFontSize":24}},"Splitter":{"global":["colorFill","controlItemBgHover","controlItemBgActive","controlItemBgActiveHover","colorText","fontSize","lineHeight","fontFamily","fontSizeSM","borderRadiusXS","zIndexPopupBase","controlHeightSM"],"component":{"splitBarSize":2,"splitTriggerSize":6,"splitBarDraggableSize":20,"resizeSpinnerSize":20}},"Spin":{"global":["colorTextDescription","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgMask","zIndexPopupBase","motionDurationMid","colorWhite","colorTextLightSolid","colorBgContainer","marginXXS","colorFillSecondary"],"component":{"contentHeight":400,"dotSize":20,"dotSizeSM":14,"dotSizeLG":32}},"Space":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Slider":{"global":["controlHeight","controlHeightLG","colorFillContentHover","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","borderRadiusXS","colorPrimaryBorderHover","colorBgElevated","colorTextDescription","motionDurationSlow"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":2.5,"railBg":"rgba(0, 0, 0, 0.04)","railHoverBg":"rgba(0, 0, 0, 0.06)","trackBg":"#91caff","trackHoverBg":"#69b1ff","handleColor":"#91caff","handleActiveColor":"#1677ff","handleActiveOutlineColor":"rgba(22, 119, 255, 0.2)","handleColorDisabled":"#bfbfbf","dotBorderColor":"#f0f0f0","dotActiveBorderColor":"#91caff","trackBgDisabled":"rgba(0, 0, 0, 0.04)"}},"Skeleton":{"global":["controlHeight","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS","borderRadiusSM"],"component":{"color":"rgba(0, 0, 0, 0.06)","colorGradientEnd":"rgba(0, 0, 0, 0.15)","gradientFromColor":"rgba(0, 0, 0, 0.06)","gradientToColor":"rgba(0, 0, 0, 0.15)","titleHeight":16,"blockRadius":4,"paragraphMarginTop":28,"paragraphLiHeight":16}},"Select":{"global":["paddingSM","controlHeight","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","motionEaseInOut","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","colorBgBase","paddingXS","controlPaddingHorizontalSM","lineWidth","borderRadius","controlHeightSM","borderRadiusSM","fontSizeLG","borderRadiusLG","borderRadiusXS","controlHeightLG","controlPaddingHorizontal","paddingXXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","colorPrimary","colorBgContainerDisabled","colorTextDisabled","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBorder","controlOutlineWidth","lineType","colorError","colorErrorHover","colorErrorOutline","colorWarning","colorWarningHover","colorWarningOutline","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorWarningBg","colorWarningBgHover","colorBgContainer","colorSplit"],"component":{"INTERNAL_FIXED_ITEM_MARGIN":2,"zIndexPopup":1050,"optionSelectedColor":"rgba(0, 0, 0, 0.88)","optionSelectedFontWeight":600,"optionSelectedBg":"#e6f4ff","optionActiveBg":"rgba(0, 0, 0, 0.04)","optionPadding":"5px 12px","optionFontSize":14,"optionLineHeight":1.5714285714285714,"optionHeight":32,"selectorBg":"#ffffff","clearBg":"#ffffff","singleItemHeightLG":40,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","showArrowPaddingInlineEnd":18,"hoverBorderColor":"#4096ff","activeBorderColor":"#1677ff","activeOutlineColor":"rgba(5, 145, 255, 0.1)","selectAffixPadding":4}},"Segmented":{"global":["lineWidth","controlPaddingHorizontal","controlPaddingHorizontalSM","controlHeight","controlHeightLG","controlHeightSM","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","paddingXXS","borderRadiusSM","boxShadowTertiary","marginSM","motionDurationSlow","borderRadiusLG","fontSizeLG","borderRadiusXS","colorTextDisabled"],"component":{"trackPadding":2,"trackBg":"#f5f5f5","itemColor":"rgba(0, 0, 0, 0.65)","itemHoverColor":"rgba(0, 0, 0, 0.88)","itemHoverBg":"rgba(0, 0, 0, 0.06)","itemSelectedBg":"#ffffff","itemActiveBg":"rgba(0, 0, 0, 0.15)","itemSelectedColor":"rgba(0, 0, 0, 0.88)"}},"Result":{"global":["colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","paddingLG","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"titleFontSize":24,"subtitleFontSize":14,"iconFontSize":72,"extraMargin":"24px 0 0 0"}},"Rate":{"global":["colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{"starColor":"#fadb14","starSize":20,"starHoverScale":"scale(1.1)","starBg":"rgba(0, 0, 0, 0.06)"}},"Radio":{"global":["controlOutline","controlOutlineWidth","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionDurationMid","motionEaseInOutCirc","colorBgContainer","colorBorder","lineWidth","colorBgContainerDisabled","colorTextDisabled","paddingXS","lineType","lineWidthFocus","colorPrimaryBorder","controlHeight","fontSizeLG","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG","colorPrimaryHover","colorPrimaryActive"],"component":{"radioSize":16,"dotSize":8,"dotColorDisabled":"rgba(0, 0, 0, 0.25)","buttonSolidCheckedColor":"#fff","buttonSolidCheckedBg":"#1677ff","buttonSolidCheckedHoverBg":"#4096ff","buttonSolidCheckedActiveBg":"#0958d9","buttonBg":"#ffffff","buttonCheckedBg":"#ffffff","buttonColor":"rgba(0, 0, 0, 0.88)","buttonCheckedBgDisabled":"rgba(0, 0, 0, 0.15)","buttonCheckedColorDisabled":"rgba(0, 0, 0, 0.25)","buttonPaddingInline":15,"wrapperMarginInlineEnd":8,"radioColor":"#1677ff","radioBgColor":"#ffffff"}},"QRCode":{"global":["colorText","lineWidth","lineType","colorSplit","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","marginXS","controlHeight"],"component":{"QRCodeMaskBackgroundColor":"rgba(255, 255, 255, 0.96)"}},"Progress":{"global":["marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","motionEaseInOutCirc","colorWhite","colorSuccess","marginXS","paddingXXS","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{"circleTextColor":"rgba(0, 0, 0, 0.88)","defaultColor":"#1677ff","remainingColor":"rgba(0, 0, 0, 0.06)","lineBorderRadius":100,"circleTextFontSize":"1em","circleIconFontSize":"1.1666666666666667em"}},"Popconfirm":{"global":["colorText","colorWarning","marginXXS","marginXS","fontSize","fontWeightStrong","colorTextHeading"],"component":{"zIndexPopup":1060}},"Pagination":{"global":["marginXXS","controlHeightLG","marginSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidth","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","fontWeightStrong","colorPrimary","colorPrimaryHover","fontSizeSM","colorTextDisabled","margin","controlHeight","colorTextPlaceholder","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","colorBgContainerDisabled","controlOutlineWidth","controlOutline","controlHeightSM","screenLG","screenSM","lineWidthFocus","colorPrimaryBorder"],"component":{"itemBg":"#ffffff","itemSize":32,"itemSizeSM":24,"itemActiveBg":"#ffffff","itemLinkBg":"#ffffff","itemActiveColorDisabled":"rgba(0, 0, 0, 0.25)","itemActiveBgDisabled":"rgba(0, 0, 0, 0.15)","itemInputBg":"#ffffff","miniOptionsSizeChangerTop":0,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Notification":{"global":["paddingMD","paddingLG","colorBgElevated","fontSizeLG","lineHeightLG","controlHeightLG","margin","paddingContentHorizontalLG","marginLG","colorPrimaryBorderHover","colorPrimary","motionDurationMid","motionEaseInOut","colorText","fontSize","lineHeight","fontFamily","boxShadow","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgBlur"],"component":{"zIndexPopup":2050,"width":384}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","colorSplit","lineType","lineWidth","colorIcon","colorIconHover","controlHeight","fontHeight","screenSMMax","marginXS","colorText","fontSize","lineHeight","fontFamily","margin","paddingLG","fontWeightStrong","borderRadiusLG","boxShadow","zIndexPopupBase","borderRadiusSM","motionDurationMid","fontSizeLG","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgMask","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"footerBg":"transparent","headerBg":"#ffffff","titleLineHeight":1.5,"titleFontSize":16,"contentBg":"#ffffff","titleColor":"rgba(0, 0, 0, 0.88)","contentPadding":0,"headerPadding":"16px 24px","headerBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","headerMarginBottom":0,"bodyPadding":24,"footerPadding":"8px 16px","footerBorderTop":"1px solid rgba(5, 5, 5, 0.06)","footerBorderRadius":"0 0 8px 8px","footerMarginTop":0,"confirmBodyPadding":"32px 32px 24px","confirmIconMarginInlineEnd":16,"confirmBtnsMarginTop":24}},"Message":{"global":["boxShadow","colorText","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","fontSize","lineHeight","fontFamily"],"component":{"zIndexPopup":2010,"contentBg":"#ffffff","contentPadding":"9px 12px"}},"Menu":{"global":["colorBgElevated","controlHeightLG","fontSize","motionDurationSlow","motionDurationMid","motionEaseInOut","paddingXS","padding","colorSplit","lineWidth","borderRadiusLG","lineType","colorText","lineHeight","fontFamily","fontSizeSM","motionEaseOut","borderRadius","margin","colorTextLightSolid","paddingXL","fontSizeLG","motionDurationFast","boxShadowSecondary","marginXS","lineWidthFocus","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"itemBorderRadius":8,"radiusSubMenuItem":4,"subMenuItemBorderRadius":4,"colorItemText":"rgba(0, 0, 0, 0.88)","itemColor":"rgba(0, 0, 0, 0.88)","colorItemTextHover":"rgba(0, 0, 0, 0.88)","itemHoverColor":"rgba(0, 0, 0, 0.88)","colorItemTextHoverHorizontal":"#1677ff","horizontalItemHoverColor":"#1677ff","colorGroupTitle":"rgba(0, 0, 0, 0.45)","groupTitleColor":"rgba(0, 0, 0, 0.45)","colorItemTextSelected":"#1677ff","itemSelectedColor":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","horizontalItemSelectedColor":"#1677ff","colorItemBg":"#ffffff","itemBg":"#ffffff","colorItemBgHover":"rgba(0, 0, 0, 0.06)","itemHoverBg":"rgba(0, 0, 0, 0.06)","colorItemBgActive":"rgba(0, 0, 0, 0.06)","itemActiveBg":"#e6f4ff","colorSubItemBg":"rgba(0, 0, 0, 0.02)","subMenuItemBg":"rgba(0, 0, 0, 0.02)","colorItemBgSelected":"#e6f4ff","itemSelectedBg":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","horizontalItemSelectedBg":"transparent","colorActiveBarWidth":0,"activeBarWidth":0,"colorActiveBarHeight":2,"activeBarHeight":2,"colorActiveBarBorderSize":1,"activeBarBorderWidth":1,"colorItemTextDisabled":"rgba(0, 0, 0, 0.25)","itemDisabledColor":"rgba(0, 0, 0, 0.25)","colorDangerItemText":"#ff4d4f","dangerItemColor":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","dangerItemHoverColor":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","dangerItemSelectedColor":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","dangerItemActiveBg":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","dangerItemSelectedBg":"#fff2f0","itemMarginInline":4,"horizontalItemBorderRadius":0,"horizontalItemHoverBg":"transparent","itemHeight":40,"groupTitleLineHeight":1.5714285714285714,"collapsedWidth":80,"popupBg":"#ffffff","itemMarginBlock":4,"itemPaddingInline":16,"horizontalLineHeight":"46px","iconSize":14,"iconMarginInlineEnd":10,"collapsedIconSize":16,"groupTitleFontSize":14,"darkItemDisabledColor":"rgba(255, 255, 255, 0.25)","darkItemColor":"rgba(255, 255, 255, 0.65)","darkDangerItemColor":"#ff4d4f","darkItemBg":"#001529","darkPopupBg":"#001529","darkSubMenuItemBg":"#000c17","darkItemSelectedColor":"#fff","darkItemSelectedBg":"#1677ff","darkDangerItemSelectedBg":"#ff4d4f","darkItemHoverBg":"transparent","darkGroupTitleColor":"rgba(255, 255, 255, 0.65)","darkItemHoverColor":"#fff","darkDangerItemHoverColor":"#ff7875","darkDangerItemSelectedColor":"#fff","darkDangerItemActiveBg":"#ff4d4f","itemWidth":"calc(100% - 8px)"}},"Mentions":{"global":["paddingXXS","colorTextDisabled","controlItemBgHover","controlPaddingHorizontal","colorText","motionDurationSlow","lineHeight","controlHeight","fontSize","fontSizeIcon","colorTextTertiary","colorTextQuaternary","colorBgElevated","paddingLG","borderRadius","borderRadiusLG","boxShadowSecondary","fontFamily","motionDurationMid","colorTextPlaceholder","lineHeightLG","borderRadiusSM","colorBorder","colorBgContainer","lineWidth","lineType","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","fontWeightStrong"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050,"itemPaddingVertical":5}},"List":{"global":["controlHeightLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","fontHeight","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220,"itemPadding":"12px 0","itemPaddingSM":"8px 16px","itemPaddingLG":"16px 24px","headerBg":"transparent","footerBg":"transparent","emptyTextPadding":16,"metaMarginBottom":16,"avatarMarginRight":16,"titleMarginBottom":12,"descriptionFontSize":14}},"Layout":{"global":["colorText","fontSize"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140","bodyBg":"#f5f5f5","headerBg":"#001529","headerHeight":64,"headerPadding":"0 50px","headerColor":"rgba(0, 0, 0, 0.88)","footerPadding":"24px 50px","footerBg":"#f5f5f5","siderBg":"#001529","triggerHeight":48,"triggerBg":"#002140","triggerColor":"#fff","zeroTriggerWidth":40,"zeroTriggerHeight":40,"lightSiderBg":"#ffffff","lightTriggerBg":"#ffffff","lightTriggerColor":"rgba(0, 0, 0, 0.88)"}},"InputNumber":{"global":["paddingXXS","lineWidth","lineType","borderRadius","controlHeightLG","controlHeightSM","colorError","colorTextDescription","motionDurationMid","colorTextDisabled","borderRadiusSM","borderRadiusLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorTextPlaceholder","controlHeight","motionDurationSlow","colorBorder","colorBgContainer","colorBgContainerDisabled","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","paddingXS","fontSizeLG","colorSplit"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto","handleActiveBg":"rgba(0, 0, 0, 0.02)","handleBg":"#ffffff","filledHandleBg":"#f0f0f0","handleHoverColor":"#1677ff","handleBorderColor":"#d9d9d9","handleOpacity":0}},"Input":{"global":["paddingXXS","controlHeightSM","lineWidth","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","colorTextPlaceholder","controlHeight","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","lineType","colorTextDisabled","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","controlHeightLG","paddingLG","colorTextDescription","paddingXS","colorIcon","colorIconHover","colorTextQuaternary","fontSizeIcon","colorTextTertiary","colorSplit","colorPrimaryHover","colorPrimaryActive"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"DatePicker":{"global":["paddingXXS","controlHeightLG","padding","paddingSM","controlHeight","lineWidth","colorPrimary","colorPrimaryBorder","lineType","colorSplit","colorTextDisabled","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","fontSizeLG","controlHeightSM","paddingXS","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","sizePopupArrow","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","boxShadowPopoverArrow","fontHeight","fontHeightLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","borderRadiusXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0, 0, 0, 0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5, 145, 255, 0.1)","errorActiveShadow":"0 0 0 2px rgba(255, 38, 5, 0.06)","warningActiveShadow":"0 0 0 2px rgba(255, 215, 5, 0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent","arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"Popover":{"global":["colorBgElevated","colorText","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","fontSize","lineHeight","fontFamily","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","blue6","purple6","cyan6","green6","magenta6","pink6","red6","orange6","yellow6","volcano6","geekblue6","lime6","gold6","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"titleMinWidth":177,"zIndexPopup":1030,"arrowShadowWidth":8.970562748477143,"arrowPath":"path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"innerPadding":0,"titleMarginBottom":0,"titlePadding":"5px 16px 4px","titleBorderBottom":"1px solid rgba(5, 5, 5, 0.06)","innerContentPadding":"12px 16px"}},"ColorPicker":{"global":["colorTextQuaternary","marginSM","colorPrimary","motionDurationMid","colorBgElevated","colorTextDisabled","colorText","colorBgContainerDisabled","borderRadius","marginXS","controlHeight","controlHeightSM","colorBgTextActive","lineWidth","colorBorder","paddingXXS","fontSize","colorPrimaryHover","controlOutline","controlHeightLG","borderRadiusSM","colorFillSecondary","lineWidthBold","colorPrimaryActive","fontSizeSM","lineHeightSM","marginXXS","fontSizeIcon","paddingXS","colorTextPlaceholder","colorFill","colorWhite","fontHeightSM","motionEaseInBack","motionDurationFast","motionEaseOutBack","colorSplit","red6","controlOutlineWidth","colorError","colorWarning","colorErrorHover","colorWarningHover","colorErrorOutline","colorWarningOutline","controlHeightXS","borderRadiusXS","borderRadiusLG","fontSizeLG"],"component":{}},"Collapse":{"global":["paddingXS","paddingSM","padding","paddingLG","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSizeLG","lineHeight","lineHeightLG","marginSM","motionDurationSlow","fontSizeIcon","fontHeight","fontHeightLG","fontSize","fontFamily","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{"headerPadding":"12px 16px","headerBg":"rgba(0, 0, 0, 0.02)","contentPadding":"16px 16px","contentBg":"#ffffff"}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Cascader":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorSplit","controlItemBgHover","paddingXXS","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180,"optionSelectedBg":"#e6f4ff","optionSelectedFontWeight":600,"optionPadding":"5px 12px","menuPadding":4}},"Carousel":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer","marginXXS"],"component":{"arrowSize":16,"arrowOffset":8,"dotWidth":16,"dotHeight":3,"dotGap":4,"dotOffset":12,"dotWidthActive":24,"dotActiveWidth":24}},"Card":{"global":["boxShadowCard","padding","paddingLG","fontSize","colorBorderSecondary","boxShadowTertiary","colorText","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorTextDescription","colorPrimary","fontHeight","marginXXS","marginXS","fontSizeLG","colorFillAlter"],"component":{"headerBg":"transparent","headerFontSize":16,"headerFontSizeSM":14,"headerHeight":56,"headerHeightSM":38,"actionsBg":"#ffffff","actionsLiMargin":"12px 0","tabsMarginBottom":-17,"extraColor":"rgba(0, 0, 0, 0.88)"}},"Calendar":{"global":["controlHeightLG","paddingXXS","padding","controlHeightSM","fontHeightSM","marginXS","lineWidth","paddingSM","paddingXS","colorBgContainer","lineType","borderRadiusLG","colorPrimary","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","fontSize","motionDurationSlow","borderRadiusSM","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","lineHeight","fontFamily","controlItemBgHover","lineWidthBold","screenXS"],"component":{"fullBg":"#ffffff","fullPanelBg":"#ffffff","itemActiveBg":"#e6f4ff","yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0, 0, 0, 0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#c8dfff","cellRangeBorderColor":"#7cb3ff","cellBgDisabled":"rgba(0, 0, 0, 0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0, 0, 0, 0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0, 0, 0, 0.04)","multipleItemColorDisabled":"rgba(0, 0, 0, 0.25)","multipleItemBorderColorDisabled":"transparent"}},"Button":{"global":["marginXS","lineWidth","lineType","motionDurationMid","motionEaseInOut","colorText","lineWidthFocus","colorPrimaryBorder","controlHeight","borderRadius","opacityLoading","motionDurationSlow","controlHeightSM","paddingXS","borderRadiusSM","controlHeightLG","borderRadiusLG","colorBgSolid","colorBgSolidHover","colorBgSolidActive","colorTextDisabled","colorBgContainerDisabled","colorFillTertiary","colorFillSecondary","colorFill","colorLinkHover","colorLinkActive","colorBorder","colorPrimary","colorBgContainer","colorPrimaryTextHover","colorPrimaryHover","colorPrimaryTextActive","colorPrimaryActive","colorPrimaryBg","colorPrimaryBgHover","colorLink","colorError","colorErrorHover","colorErrorActive","colorErrorBorderHover","colorErrorBg","colorErrorBgFilledHover","colorErrorBgActive","colorBgTextActive","fontSize"],"component":{"fontWeight":400,"defaultShadow":"0 2px 0 rgba(0, 0, 0, 0.02)","primaryShadow":"0 2px 0 rgba(5, 145, 255, 0.1)","dangerShadow":"0 2px 0 rgba(255, 38, 5, 0.06)","primaryColor":"#fff","dangerColor":"#fff","borderColorDisabled":"#d9d9d9","defaultGhostColor":"#ffffff","ghostBg":"transparent","defaultGhostBorderColor":"#ffffff","paddingInline":15,"paddingInlineLG":15,"paddingInlineSM":7,"onlyIconSize":16,"onlyIconSizeSM":14,"onlyIconSizeLG":18,"groupBorderColor":"#4096ff","linkHoverBg":"transparent","textTextColor":"rgba(0, 0, 0, 0.88)","textTextHoverColor":"rgba(0, 0, 0, 0.88)","textTextActiveColor":"rgba(0, 0, 0, 0.88)","textHoverBg":"rgba(0, 0, 0, 0.04)","defaultColor":"rgba(0, 0, 0, 0.88)","defaultBg":"#ffffff","defaultBorderColor":"#d9d9d9","defaultBorderColorDisabled":"#d9d9d9","defaultHoverBg":"#ffffff","defaultHoverColor":"#4096ff","defaultHoverBorderColor":"#4096ff","defaultActiveBg":"#ffffff","defaultActiveColor":"#0958d9","defaultActiveBorderColor":"#0958d9","solidTextColor":"#fff","contentFontSize":14,"contentFontSizeSM":14,"contentFontSizeLG":16,"contentLineHeight":1.5714285714285714,"contentLineHeightSM":1.5714285714285714,"contentLineHeightLG":1.5,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7}},"Breadcrumb":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","fontHeight","marginXXS","colorBgTextHover","lineWidthFocus","colorPrimaryBorder","fontSizeIcon"],"component":{"itemColor":"rgba(0, 0, 0, 0.45)","lastItemColor":"rgba(0, 0, 0, 0.88)","iconFontSize":14,"linkColor":"rgba(0, 0, 0, 0.45)","linkHoverColor":"rgba(0, 0, 0, 0.88)","separatorColor":"rgba(0, 0, 0, 0.45)","separatorMargin":8}},"Badge":{"global":["fontHeight","lineWidth","marginXS","colorBorderBg","colorTextLightSolid","colorError","colorErrorHover","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorInfo","colorTextPlaceholder","colorWarning","motionDurationSlow","motionEaseOutBack"],"component":{"indicatorZIndex":"auto","indicatorHeight":20,"indicatorHeightSM":14,"dotSize":6,"textFontSize":12,"textFontSizeSM":12,"textFontWeight":"normal","statusSize":6}},"BackTop":{"global":["fontSizeHeading3","colorTextDescription","colorTextLightSolid","colorText","controlHeightLG","fontSize","lineHeight","fontFamily","motionDurationMid","screenMD","screenXS"],"component":{"zIndexPopup":10}},"Avatar":{"global":["colorTextLightSolid","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","fontSize","lineHeight","fontFamily"],"component":{"containerSize":32,"containerSizeLG":40,"containerSizeSM":24,"textFontSize":18,"textFontSizeLG":24,"textFontSizeSM":14,"groupSpace":4,"groupOverlapping":-8,"groupBorderColor":"#ffffff"}},"App":{"global":["colorText","fontSize","lineHeight","fontFamily"],"component":{}},"Anchor":{"global":["fontSize","fontSizeLG","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily","lineWidth"],"component":{"linkPaddingBlock":4,"linkPaddingInlineStart":16}},"Alert":{"global":["motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","colorTextHeading","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{"withDescriptionIconSize":24,"defaultPadding":"8px 12px","withDescriptionPadding":"20px 24px"}},"Affix":{"global":[],"component":{"zIndexPopup":10}}}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export interface WatermarkContextProps {
|
|
3
|
+
add: (ele: HTMLElement) => void;
|
|
4
|
+
remove: (ele: HTMLElement) => void;
|
|
5
|
+
}
|
|
6
|
+
declare const WatermarkContext: React.Context<WatermarkContextProps>;
|
|
7
|
+
export declare function usePanelRef(panelSelector?: string): (ele: HTMLElement | null) => void;
|
|
8
|
+
export default WatermarkContext;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = void 0;
|
|
9
|
+
exports.usePanelRef = usePanelRef;
|
|
10
|
+
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
var _useEvent = _interopRequireDefault(require("rc-util/lib/hooks/useEvent"));
|
|
12
|
+
function voidFunc() {}
|
|
13
|
+
const WatermarkContext = /*#__PURE__*/React.createContext({
|
|
14
|
+
add: voidFunc,
|
|
15
|
+
remove: voidFunc
|
|
16
|
+
});
|
|
17
|
+
function usePanelRef(panelSelector) {
|
|
18
|
+
const watermark = React.useContext(WatermarkContext);
|
|
19
|
+
const panelEleRef = React.useRef();
|
|
20
|
+
const panelRef = (0, _useEvent.default)(ele => {
|
|
21
|
+
if (ele) {
|
|
22
|
+
const innerContentEle = panelSelector ? ele.querySelector(panelSelector) : ele;
|
|
23
|
+
watermark.add(innerContentEle);
|
|
24
|
+
panelEleRef.current = innerContentEle;
|
|
25
|
+
} else {
|
|
26
|
+
watermark.remove(panelEleRef.current);
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
return panelRef;
|
|
30
|
+
}
|
|
31
|
+
var _default = exports.default = WatermarkContext;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface WatermarkProps {
|
|
3
|
+
zIndex?: number;
|
|
4
|
+
rotate?: number;
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
image?: string;
|
|
8
|
+
content?: string | string[];
|
|
9
|
+
font?: {
|
|
10
|
+
color?: CanvasFillStrokeStyles['fillStyle'];
|
|
11
|
+
fontSize?: number | string;
|
|
12
|
+
fontWeight?: 'normal' | 'light' | 'weight' | number;
|
|
13
|
+
fontStyle?: 'none' | 'normal' | 'italic' | 'oblique';
|
|
14
|
+
fontFamily?: string;
|
|
15
|
+
textAlign?: CanvasTextAlign;
|
|
16
|
+
};
|
|
17
|
+
style?: React.CSSProperties;
|
|
18
|
+
className?: string;
|
|
19
|
+
rootClassName?: string;
|
|
20
|
+
gap?: [number, number];
|
|
21
|
+
offset?: [number, number];
|
|
22
|
+
children?: React.ReactNode;
|
|
23
|
+
inherit?: boolean;
|
|
24
|
+
}
|
|
25
|
+
declare const Watermark: React.FC<WatermarkProps>;
|
|
26
|
+
export default Watermark;
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
"use client";
|
|
3
|
+
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
5
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
6
|
+
Object.defineProperty(exports, "__esModule", {
|
|
7
|
+
value: true
|
|
8
|
+
});
|
|
9
|
+
exports.default = void 0;
|
|
10
|
+
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
11
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
12
|
+
var _mutateObserver = require("@rc-component/mutate-observer");
|
|
13
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
14
|
+
var _useEvent = _interopRequireDefault(require("rc-util/lib/hooks/useEvent"));
|
|
15
|
+
var _internal = require("../theme/internal");
|
|
16
|
+
var _context = _interopRequireDefault(require("./context"));
|
|
17
|
+
var _useClips = _interopRequireWildcard(require("./useClips"));
|
|
18
|
+
var _useRafDebounce = _interopRequireDefault(require("./useRafDebounce"));
|
|
19
|
+
var _useWatermark = _interopRequireDefault(require("./useWatermark"));
|
|
20
|
+
var _utils = require("./utils");
|
|
21
|
+
var _toList = _interopRequireDefault(require("../_util/toList"));
|
|
22
|
+
/**
|
|
23
|
+
* Only return `next` when size changed.
|
|
24
|
+
* This is only used for elements compare, not a shallow equal!
|
|
25
|
+
*/
|
|
26
|
+
function getSizeDiff(prev, next) {
|
|
27
|
+
return prev.size === next.size ? prev : next;
|
|
28
|
+
}
|
|
29
|
+
const DEFAULT_GAP_X = 100;
|
|
30
|
+
const DEFAULT_GAP_Y = 100;
|
|
31
|
+
const fixedStyle = {
|
|
32
|
+
position: 'relative',
|
|
33
|
+
overflow: 'hidden'
|
|
34
|
+
};
|
|
35
|
+
const Watermark = props => {
|
|
36
|
+
var _a, _b;
|
|
37
|
+
const {
|
|
38
|
+
/**
|
|
39
|
+
* The antd content layer zIndex is basically below 10
|
|
40
|
+
* https://github.com/ant-design/ant-design/blob/6192403b2ce517c017f9e58a32d58774921c10cd/components/style/themes/default.less#L335
|
|
41
|
+
*/
|
|
42
|
+
zIndex = 9,
|
|
43
|
+
rotate = -22,
|
|
44
|
+
width,
|
|
45
|
+
height,
|
|
46
|
+
image,
|
|
47
|
+
content,
|
|
48
|
+
font = {},
|
|
49
|
+
style,
|
|
50
|
+
className,
|
|
51
|
+
rootClassName,
|
|
52
|
+
gap = [DEFAULT_GAP_X, DEFAULT_GAP_Y],
|
|
53
|
+
offset,
|
|
54
|
+
children,
|
|
55
|
+
inherit = true
|
|
56
|
+
} = props;
|
|
57
|
+
const mergedStyle = Object.assign(Object.assign({}, fixedStyle), style);
|
|
58
|
+
const [, token] = (0, _internal.useToken)();
|
|
59
|
+
const {
|
|
60
|
+
color = token.colorFill,
|
|
61
|
+
fontSize = token.fontSizeLG,
|
|
62
|
+
fontWeight = 'normal',
|
|
63
|
+
fontStyle = 'normal',
|
|
64
|
+
fontFamily = 'sans-serif',
|
|
65
|
+
textAlign = 'center'
|
|
66
|
+
} = font;
|
|
67
|
+
const [gapX = DEFAULT_GAP_X, gapY = DEFAULT_GAP_Y] = gap;
|
|
68
|
+
const gapXCenter = gapX / 2;
|
|
69
|
+
const gapYCenter = gapY / 2;
|
|
70
|
+
const offsetLeft = (_a = offset === null || offset === void 0 ? void 0 : offset[0]) !== null && _a !== void 0 ? _a : gapXCenter;
|
|
71
|
+
const offsetTop = (_b = offset === null || offset === void 0 ? void 0 : offset[1]) !== null && _b !== void 0 ? _b : gapYCenter;
|
|
72
|
+
const markStyle = _react.default.useMemo(() => {
|
|
73
|
+
const mergedMarkStyle = {
|
|
74
|
+
zIndex,
|
|
75
|
+
position: 'absolute',
|
|
76
|
+
left: 0,
|
|
77
|
+
top: 0,
|
|
78
|
+
width: '100%',
|
|
79
|
+
height: '100%',
|
|
80
|
+
pointerEvents: 'none',
|
|
81
|
+
backgroundRepeat: 'repeat'
|
|
82
|
+
};
|
|
83
|
+
/** Calculate the style of the offset */
|
|
84
|
+
let positionLeft = offsetLeft - gapXCenter;
|
|
85
|
+
let positionTop = offsetTop - gapYCenter;
|
|
86
|
+
if (positionLeft > 0) {
|
|
87
|
+
mergedMarkStyle.left = `${positionLeft}px`;
|
|
88
|
+
mergedMarkStyle.width = `calc(100% - ${positionLeft}px)`;
|
|
89
|
+
positionLeft = 0;
|
|
90
|
+
}
|
|
91
|
+
if (positionTop > 0) {
|
|
92
|
+
mergedMarkStyle.top = `${positionTop}px`;
|
|
93
|
+
mergedMarkStyle.height = `calc(100% - ${positionTop}px)`;
|
|
94
|
+
positionTop = 0;
|
|
95
|
+
}
|
|
96
|
+
mergedMarkStyle.backgroundPosition = `${positionLeft}px ${positionTop}px`;
|
|
97
|
+
return mergedMarkStyle;
|
|
98
|
+
}, [zIndex, offsetLeft, gapXCenter, offsetTop, gapYCenter]);
|
|
99
|
+
const [container, setContainer] = _react.default.useState();
|
|
100
|
+
// Used for nest case like Modal, Drawer
|
|
101
|
+
const [subElements, setSubElements] = _react.default.useState(new Set());
|
|
102
|
+
// Nest elements should also support watermark
|
|
103
|
+
const targetElements = _react.default.useMemo(() => {
|
|
104
|
+
const list = container ? [container] : [];
|
|
105
|
+
return [].concat(list, (0, _toConsumableArray2.default)(Array.from(subElements)));
|
|
106
|
+
}, [container, subElements]);
|
|
107
|
+
// ============================ Content =============================
|
|
108
|
+
/**
|
|
109
|
+
* Get the width and height of the watermark. The default values are as follows
|
|
110
|
+
* Image: [120, 64]; Content: It's calculated by content;
|
|
111
|
+
*/
|
|
112
|
+
const getMarkSize = ctx => {
|
|
113
|
+
let defaultWidth = 120;
|
|
114
|
+
let defaultHeight = 64;
|
|
115
|
+
if (!image && ctx.measureText) {
|
|
116
|
+
ctx.font = `${Number(fontSize)}px ${fontFamily}`;
|
|
117
|
+
const contents = (0, _toList.default)(content);
|
|
118
|
+
const sizes = contents.map(item => {
|
|
119
|
+
const metrics = ctx.measureText(item);
|
|
120
|
+
return [metrics.width, metrics.fontBoundingBoxAscent + metrics.fontBoundingBoxDescent];
|
|
121
|
+
});
|
|
122
|
+
defaultWidth = Math.ceil(Math.max.apply(Math, (0, _toConsumableArray2.default)(sizes.map(size => size[0]))));
|
|
123
|
+
defaultHeight = Math.ceil(Math.max.apply(Math, (0, _toConsumableArray2.default)(sizes.map(size => size[1])))) * contents.length + (contents.length - 1) * _useClips.FontGap;
|
|
124
|
+
}
|
|
125
|
+
return [width !== null && width !== void 0 ? width : defaultWidth, height !== null && height !== void 0 ? height : defaultHeight];
|
|
126
|
+
};
|
|
127
|
+
const getClips = (0, _useClips.default)();
|
|
128
|
+
const [watermarkInfo, setWatermarkInfo] = _react.default.useState(null);
|
|
129
|
+
// Generate new Watermark content
|
|
130
|
+
const renderWatermark = () => {
|
|
131
|
+
const canvas = document.createElement('canvas');
|
|
132
|
+
const ctx = canvas.getContext('2d');
|
|
133
|
+
if (ctx) {
|
|
134
|
+
const ratio = (0, _utils.getPixelRatio)();
|
|
135
|
+
const [markWidth, markHeight] = getMarkSize(ctx);
|
|
136
|
+
const drawCanvas = drawContent => {
|
|
137
|
+
const [nextClips, clipWidth] = getClips(drawContent || '', rotate, ratio, markWidth, markHeight, {
|
|
138
|
+
color,
|
|
139
|
+
fontSize,
|
|
140
|
+
fontStyle,
|
|
141
|
+
fontWeight,
|
|
142
|
+
fontFamily,
|
|
143
|
+
textAlign
|
|
144
|
+
}, gapX, gapY);
|
|
145
|
+
setWatermarkInfo([nextClips, clipWidth]);
|
|
146
|
+
};
|
|
147
|
+
if (image) {
|
|
148
|
+
const img = new Image();
|
|
149
|
+
img.onload = () => {
|
|
150
|
+
drawCanvas(img);
|
|
151
|
+
};
|
|
152
|
+
img.onerror = () => {
|
|
153
|
+
drawCanvas(content);
|
|
154
|
+
};
|
|
155
|
+
img.crossOrigin = 'anonymous';
|
|
156
|
+
img.referrerPolicy = 'no-referrer';
|
|
157
|
+
img.src = image;
|
|
158
|
+
} else {
|
|
159
|
+
drawCanvas(content);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
};
|
|
163
|
+
const syncWatermark = (0, _useRafDebounce.default)(renderWatermark);
|
|
164
|
+
// ============================= Effect =============================
|
|
165
|
+
// Append watermark to the container
|
|
166
|
+
const [appendWatermark, removeWatermark, isWatermarkEle] = (0, _useWatermark.default)(markStyle);
|
|
167
|
+
(0, _react.useEffect)(() => {
|
|
168
|
+
if (watermarkInfo) {
|
|
169
|
+
targetElements.forEach(holder => {
|
|
170
|
+
appendWatermark(watermarkInfo[0], watermarkInfo[1], holder);
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
}, [watermarkInfo, targetElements]);
|
|
174
|
+
// ============================ Observe =============================
|
|
175
|
+
const onMutate = (0, _useEvent.default)(mutations => {
|
|
176
|
+
mutations.forEach(mutation => {
|
|
177
|
+
if ((0, _utils.reRendering)(mutation, isWatermarkEle)) {
|
|
178
|
+
syncWatermark();
|
|
179
|
+
} else if (mutation.target === container && mutation.attributeName === 'style') {
|
|
180
|
+
// We've only force container not modify.
|
|
181
|
+
// Not consider nest case.
|
|
182
|
+
const keyStyles = Object.keys(fixedStyle);
|
|
183
|
+
for (let i = 0; i < keyStyles.length; i += 1) {
|
|
184
|
+
const key = keyStyles[i];
|
|
185
|
+
const oriValue = mergedStyle[key];
|
|
186
|
+
const currentValue = container.style[key];
|
|
187
|
+
if (oriValue && oriValue !== currentValue) {
|
|
188
|
+
container.style[key] = oriValue;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
});
|
|
193
|
+
});
|
|
194
|
+
(0, _mutateObserver.useMutateObserver)(targetElements, onMutate);
|
|
195
|
+
(0, _react.useEffect)(syncWatermark, [rotate, zIndex, width, height, image, content, color, fontSize, fontWeight, fontStyle, fontFamily, textAlign, gapX, gapY, offsetLeft, offsetTop]);
|
|
196
|
+
// ============================ Context =============================
|
|
197
|
+
const watermarkContext = _react.default.useMemo(() => ({
|
|
198
|
+
add: ele => {
|
|
199
|
+
setSubElements(prev => {
|
|
200
|
+
const clone = new Set(prev);
|
|
201
|
+
clone.add(ele);
|
|
202
|
+
return getSizeDiff(prev, clone);
|
|
203
|
+
});
|
|
204
|
+
},
|
|
205
|
+
remove: ele => {
|
|
206
|
+
removeWatermark(ele);
|
|
207
|
+
setSubElements(prev => {
|
|
208
|
+
const clone = new Set(prev);
|
|
209
|
+
clone.delete(ele);
|
|
210
|
+
return getSizeDiff(prev, clone);
|
|
211
|
+
});
|
|
212
|
+
}
|
|
213
|
+
}), []);
|
|
214
|
+
// ============================= Render =============================
|
|
215
|
+
const childNode = inherit ? (/*#__PURE__*/_react.default.createElement(_context.default.Provider, {
|
|
216
|
+
value: watermarkContext
|
|
217
|
+
}, children)) : children;
|
|
218
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
219
|
+
ref: setContainer,
|
|
220
|
+
className: (0, _classnames.default)(className, rootClassName),
|
|
221
|
+
style: mergedStyle
|
|
222
|
+
}, childNode);
|
|
223
|
+
};
|
|
224
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
225
|
+
Watermark.displayName = 'Watermark';
|
|
226
|
+
}
|
|
227
|
+
var _default = exports.default = Watermark;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { WatermarkProps } from '.';
|
|
2
|
+
export declare const FontGap = 3;
|
|
3
|
+
/**
|
|
4
|
+
* Get the clips of text content.
|
|
5
|
+
* This is a lazy hook function since SSR no need this
|
|
6
|
+
*/
|
|
7
|
+
export default function useClips(): (content: NonNullable<WatermarkProps["content"]> | HTMLImageElement, rotate: number, ratio: number, width: number, height: number, font: Required<NonNullable<WatermarkProps["font"]>>, gapX: number, gapY: number) => [dataURL: string, finalWidth: number, finalHeight: number];
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.FontGap = void 0;
|
|
8
|
+
exports.default = useClips;
|
|
9
|
+
var _toList = _interopRequireDefault(require("../_util/toList"));
|
|
10
|
+
const FontGap = exports.FontGap = 3;
|
|
11
|
+
function prepareCanvas(width, height, ratio = 1) {
|
|
12
|
+
const canvas = document.createElement('canvas');
|
|
13
|
+
const ctx = canvas.getContext('2d');
|
|
14
|
+
const realWidth = width * ratio;
|
|
15
|
+
const realHeight = height * ratio;
|
|
16
|
+
canvas.setAttribute('width', `${realWidth}px`);
|
|
17
|
+
canvas.setAttribute('height', `${realHeight}px`);
|
|
18
|
+
ctx.save();
|
|
19
|
+
return [ctx, canvas, realWidth, realHeight];
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Get the clips of text content.
|
|
23
|
+
* This is a lazy hook function since SSR no need this
|
|
24
|
+
*/
|
|
25
|
+
function useClips() {
|
|
26
|
+
// Get single clips
|
|
27
|
+
function getClips(content, rotate, ratio, width, height, font, gapX, gapY) {
|
|
28
|
+
// ================= Text / Image =================
|
|
29
|
+
const [ctx, canvas, contentWidth, contentHeight] = prepareCanvas(width, height, ratio);
|
|
30
|
+
if (content instanceof HTMLImageElement) {
|
|
31
|
+
// Image
|
|
32
|
+
ctx.drawImage(content, 0, 0, contentWidth, contentHeight);
|
|
33
|
+
} else {
|
|
34
|
+
// Text
|
|
35
|
+
const {
|
|
36
|
+
color,
|
|
37
|
+
fontSize,
|
|
38
|
+
fontStyle,
|
|
39
|
+
fontWeight,
|
|
40
|
+
fontFamily,
|
|
41
|
+
textAlign
|
|
42
|
+
} = font;
|
|
43
|
+
const mergedFontSize = Number(fontSize) * ratio;
|
|
44
|
+
ctx.font = `${fontStyle} normal ${fontWeight} ${mergedFontSize}px/${height}px ${fontFamily}`;
|
|
45
|
+
ctx.fillStyle = color;
|
|
46
|
+
ctx.textAlign = textAlign;
|
|
47
|
+
ctx.textBaseline = 'top';
|
|
48
|
+
const contents = (0, _toList.default)(content);
|
|
49
|
+
contents === null || contents === void 0 ? void 0 : contents.forEach((item, index) => {
|
|
50
|
+
ctx.fillText(item !== null && item !== void 0 ? item : '', contentWidth / 2, index * (mergedFontSize + FontGap * ratio));
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
// ==================== Rotate ====================
|
|
54
|
+
const angle = Math.PI / 180 * Number(rotate);
|
|
55
|
+
const maxSize = Math.max(width, height);
|
|
56
|
+
const [rCtx, rCanvas, realMaxSize] = prepareCanvas(maxSize, maxSize, ratio);
|
|
57
|
+
// Copy from `ctx` and rotate
|
|
58
|
+
rCtx.translate(realMaxSize / 2, realMaxSize / 2);
|
|
59
|
+
rCtx.rotate(angle);
|
|
60
|
+
if (contentWidth > 0 && contentHeight > 0) {
|
|
61
|
+
rCtx.drawImage(canvas, -contentWidth / 2, -contentHeight / 2);
|
|
62
|
+
}
|
|
63
|
+
// Get boundary of rotated text
|
|
64
|
+
function getRotatePos(x, y) {
|
|
65
|
+
const targetX = x * Math.cos(angle) - y * Math.sin(angle);
|
|
66
|
+
const targetY = x * Math.sin(angle) + y * Math.cos(angle);
|
|
67
|
+
return [targetX, targetY];
|
|
68
|
+
}
|
|
69
|
+
let left = 0;
|
|
70
|
+
let right = 0;
|
|
71
|
+
let top = 0;
|
|
72
|
+
let bottom = 0;
|
|
73
|
+
const halfWidth = contentWidth / 2;
|
|
74
|
+
const halfHeight = contentHeight / 2;
|
|
75
|
+
const points = [[0 - halfWidth, 0 - halfHeight], [0 + halfWidth, 0 - halfHeight], [0 + halfWidth, 0 + halfHeight], [0 - halfWidth, 0 + halfHeight]];
|
|
76
|
+
points.forEach(([x, y]) => {
|
|
77
|
+
const [targetX, targetY] = getRotatePos(x, y);
|
|
78
|
+
left = Math.min(left, targetX);
|
|
79
|
+
right = Math.max(right, targetX);
|
|
80
|
+
top = Math.min(top, targetY);
|
|
81
|
+
bottom = Math.max(bottom, targetY);
|
|
82
|
+
});
|
|
83
|
+
const cutLeft = left + realMaxSize / 2;
|
|
84
|
+
const cutTop = top + realMaxSize / 2;
|
|
85
|
+
const cutWidth = right - left;
|
|
86
|
+
const cutHeight = bottom - top;
|
|
87
|
+
// ================ Fill Alternate ================
|
|
88
|
+
const realGapX = gapX * ratio;
|
|
89
|
+
const realGapY = gapY * ratio;
|
|
90
|
+
const filledWidth = (cutWidth + realGapX) * 2;
|
|
91
|
+
const filledHeight = cutHeight + realGapY;
|
|
92
|
+
const [fCtx, fCanvas] = prepareCanvas(filledWidth, filledHeight);
|
|
93
|
+
function drawImg(targetX = 0, targetY = 0) {
|
|
94
|
+
fCtx.drawImage(rCanvas, cutLeft, cutTop, cutWidth, cutHeight, targetX, targetY, cutWidth, cutHeight);
|
|
95
|
+
}
|
|
96
|
+
drawImg();
|
|
97
|
+
drawImg(cutWidth + realGapX, -cutHeight / 2 - realGapY / 2);
|
|
98
|
+
drawImg(cutWidth + realGapX, +cutHeight / 2 + realGapY / 2);
|
|
99
|
+
return [fCanvas.toDataURL(), filledWidth / ratio, filledHeight / ratio];
|
|
100
|
+
}
|
|
101
|
+
return getClips;
|
|
102
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = useRafDebounce;
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _useEvent = _interopRequireDefault(require("rc-util/lib/hooks/useEvent"));
|
|
10
|
+
var _raf = _interopRequireDefault(require("rc-util/lib/raf"));
|
|
11
|
+
/**
|
|
12
|
+
* Callback will only execute last one for each raf
|
|
13
|
+
*/
|
|
14
|
+
function useRafDebounce(callback) {
|
|
15
|
+
const executeRef = _react.default.useRef(false);
|
|
16
|
+
const rafRef = _react.default.useRef();
|
|
17
|
+
const wrapperCallback = (0, _useEvent.default)(callback);
|
|
18
|
+
return () => {
|
|
19
|
+
if (executeRef.current) {
|
|
20
|
+
return;
|
|
21
|
+
}
|
|
22
|
+
executeRef.current = true;
|
|
23
|
+
wrapperCallback();
|
|
24
|
+
rafRef.current = (0, _raf.default)(() => {
|
|
25
|
+
executeRef.current = false;
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Base size of the canvas, 1 for parallel layout and 2 for alternate layout
|
|
4
|
+
* Only alternate layout is currently supported
|
|
5
|
+
*/
|
|
6
|
+
export declare const BaseSize = 2;
|
|
7
|
+
export declare const FontGap = 3;
|
|
8
|
+
export type AppendWatermark = (base64Url: string, markWidth: number, container: HTMLElement) => void;
|
|
9
|
+
export default function useWatermark(markStyle: React.CSSProperties): [
|
|
10
|
+
appendWatermark: AppendWatermark,
|
|
11
|
+
removeWatermark: (container: HTMLElement) => void,
|
|
12
|
+
isWatermarkEle: (ele: Node) => boolean
|
|
13
|
+
];
|