@fle-ui/next 2.0.0-alpha.3 → 2.0.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fui.min.js +1 -1
- package/es/_util/ActionButton.d.ts +15 -0
- package/es/_util/ActionButton.js +118 -0
- package/es/_util/colors.d.ts +5 -0
- package/es/_util/colors.js +4 -0
- package/es/_util/easings.d.ts +1 -0
- package/es/_util/easings.js +12 -0
- package/es/_util/getDataOrAriaProps.d.ts +1 -0
- package/es/_util/getDataOrAriaProps.js +9 -0
- package/es/_util/getRenderPropValue.d.ts +3 -0
- package/es/_util/getRenderPropValue.js +11 -0
- package/es/_util/getScroll.d.ts +2 -0
- package/es/_util/getScroll.js +34 -0
- package/es/_util/hooks/useFlexGapSupport.d.ts +2 -0
- package/es/_util/hooks/useFlexGapSupport.js +14 -0
- package/es/_util/hooks/useForceUpdate.d.ts +2 -0
- package/es/_util/hooks/useForceUpdate.js +11 -0
- package/es/_util/hooks/usePatchElement.d.ts +5 -0
- package/es/_util/hooks/usePatchElement.js +26 -0
- package/es/_util/hooks/useSyncState.d.ts +3 -0
- package/es/_util/hooks/useSyncState.js +13 -0
- package/es/_util/isNumeric.d.ts +2 -0
- package/es/_util/isNumeric.js +5 -0
- package/es/_util/motion.d.ts +8 -0
- package/es/_util/motion.js +60 -0
- package/es/_util/placements.d.ts +17 -0
- package/es/_util/placements.js +88 -0
- package/es/_util/raf.d.ts +9 -0
- package/es/_util/raf.js +31 -0
- package/es/_util/reactNode.d.ts +8 -0
- package/es/_util/reactNode.js +16 -0
- package/es/_util/responsiveObserve.d.ts +21 -0
- package/es/_util/responsiveObserve.js +67 -0
- package/es/_util/scrollTo.d.ts +10 -0
- package/es/_util/scrollTo.js +38 -0
- package/es/_util/statusUtils.d.ts +6 -0
- package/es/_util/statusUtils.js +12 -0
- package/es/_util/styleChecker.d.ts +4 -0
- package/es/_util/styleChecker.js +31 -0
- package/es/_util/throttleByAnimationFrame.d.ts +8 -0
- package/es/_util/throttleByAnimationFrame.js +58 -0
- package/es/_util/transButton.d.ts +9 -0
- package/es/_util/transButton.js +75 -0
- package/es/_util/type.d.ts +9 -0
- package/es/_util/type.js +15 -0
- package/es/_util/warning.d.ts +6 -0
- package/es/_util/warning.js +17 -0
- package/es/_util/wave.d.ts +32 -0
- package/es/_util/wave.js +247 -0
- package/es/affix/ActionButton.d.ts +15 -0
- package/es/affix/ActionButton.js +118 -0
- package/es/affix/colors.d.ts +5 -0
- package/es/affix/colors.js +4 -0
- package/es/affix/easings.d.ts +1 -0
- package/es/affix/easings.js +12 -0
- package/es/affix/getDataOrAriaProps.d.ts +1 -0
- package/es/affix/getDataOrAriaProps.js +9 -0
- package/es/affix/getRenderPropValue.d.ts +3 -0
- package/es/affix/getRenderPropValue.js +11 -0
- package/es/affix/getScroll.d.ts +2 -0
- package/es/affix/getScroll.js +34 -0
- package/es/affix/hooks/useFlexGapSupport.d.ts +2 -0
- package/es/affix/hooks/useFlexGapSupport.js +14 -0
- package/es/affix/hooks/useForceUpdate.d.ts +2 -0
- package/es/affix/hooks/useForceUpdate.js +11 -0
- package/es/affix/hooks/usePatchElement.d.ts +5 -0
- package/es/affix/hooks/usePatchElement.js +26 -0
- package/es/affix/hooks/useSyncState.d.ts +3 -0
- package/es/affix/hooks/useSyncState.js +13 -0
- package/es/affix/isNumeric.d.ts +2 -0
- package/es/affix/isNumeric.js +5 -0
- package/es/affix/motion.d.ts +8 -0
- package/es/affix/motion.js +60 -0
- package/es/affix/placements.d.ts +17 -0
- package/es/affix/placements.js +88 -0
- package/es/affix/raf.d.ts +9 -0
- package/es/affix/raf.js +31 -0
- package/es/affix/reactNode.d.ts +8 -0
- package/es/affix/reactNode.js +16 -0
- package/es/affix/responsiveObserve.d.ts +21 -0
- package/es/affix/responsiveObserve.js +67 -0
- package/es/affix/scrollTo.d.ts +10 -0
- package/es/affix/scrollTo.js +38 -0
- package/es/affix/statusUtils.d.ts +6 -0
- package/es/affix/statusUtils.js +12 -0
- package/es/affix/styleChecker.d.ts +4 -0
- package/es/affix/styleChecker.js +31 -0
- package/es/affix/throttleByAnimationFrame.d.ts +8 -0
- package/es/affix/throttleByAnimationFrame.js +58 -0
- package/es/affix/transButton.d.ts +9 -0
- package/es/affix/transButton.js +75 -0
- package/es/affix/type.d.ts +9 -0
- package/es/affix/type.js +15 -0
- package/es/affix/warning.d.ts +6 -0
- package/es/affix/warning.js +17 -0
- package/es/affix/wave.d.ts +32 -0
- package/es/affix/wave.js +247 -0
- package/es/alert/ErrorBoundary.d.ts +23 -0
- package/es/alert/ErrorBoundary.js +65 -0
- package/es/alert/index.d.ts +38 -0
- package/es/alert/index.js +192 -0
- package/es/alert/style/css.js +2 -0
- package/es/alert/style/index-pure.less +155 -0
- package/es/alert/style/index.css +156 -0
- package/es/alert/style/index.d.ts +2 -0
- package/es/alert/style/index.js +2 -0
- package/es/alert/style/index.less +3 -0
- package/es/alert/style/rtl.less +40 -0
- package/es/anchor/Anchor.d.ts +44 -0
- package/es/anchor/Anchor.js +264 -0
- package/es/anchor/AnchorLink.d.ts +11 -0
- package/es/anchor/AnchorLink.js +57 -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 +5 -0
- package/es/anchor/style/css.js +4 -0
- package/es/anchor/style/index-pure.less +86 -0
- package/es/anchor/style/index.css +100 -0
- package/es/anchor/style/index.d.ts +3 -0
- package/es/anchor/style/index.js +4 -0
- package/es/anchor/style/index.less +3 -0
- package/es/anchor/style/rtl.less +35 -0
- package/es/auto-complete/index.d.ts +35 -0
- package/es/auto-complete/index.js +102 -0
- package/es/auto-complete/style/css.js +4 -0
- package/es/auto-complete/style/index-pure.less +16 -0
- package/es/auto-complete/style/index.css +18 -0
- package/es/auto-complete/style/index.d.ts +3 -0
- package/es/auto-complete/style/index.js +4 -0
- package/es/auto-complete/style/index.less +3 -0
- package/es/avatar/SizeContext.d.ts +10 -0
- package/es/avatar/SizeContext.js +12 -0
- package/es/avatar/avatar.d.ts +25 -0
- package/es/avatar/avatar.js +201 -0
- package/es/avatar/group.d.ts +15 -0
- package/es/avatar/group.js +64 -0
- package/es/avatar/index.d.ts +11 -0
- package/es/avatar/index.js +6 -0
- package/es/avatar/style/css.js +5 -0
- package/es/avatar/style/group.less +17 -0
- package/es/avatar/style/index-pure.less +70 -0
- package/es/avatar/style/index.css +108 -0
- package/es/avatar/style/index.d.ts +3 -0
- package/es/avatar/style/index.js +5 -0
- package/es/avatar/style/index.less +3 -0
- package/es/avatar/style/rtl.less +15 -0
- package/es/back-top/index.d.ts +14 -0
- package/es/back-top/index.js +124 -0
- package/es/back-top/style/css.js +2 -0
- package/es/back-top/style/index-pure.less +49 -0
- package/es/back-top/style/index.css +66 -0
- package/es/back-top/style/index.d.ts +2 -0
- package/es/back-top/style/index.js +2 -0
- package/es/back-top/style/index.less +3 -0
- package/es/back-top/style/responsive.less +21 -0
- package/es/badge/Ribbon.d.ts +15 -0
- package/es/badge/Ribbon.js +48 -0
- package/es/badge/ScrollNumber.d.ts +18 -0
- package/es/badge/ScrollNumber.js +83 -0
- package/es/badge/SingleNumber.d.ts +13 -0
- package/es/badge/SingleNumber.js +123 -0
- package/es/badge/index.d.ts +30 -0
- package/es/badge/index.js +186 -0
- package/es/badge/style/css.js +2 -0
- package/es/badge/style/index-pure.less +281 -0
- package/es/badge/style/index.css +460 -0
- package/es/badge/style/index.d.ts +2 -0
- package/es/badge/style/index.js +2 -0
- package/es/badge/style/index.less +3 -0
- package/es/badge/style/ribbon.less +81 -0
- package/es/badge/style/rtl.less +100 -0
- package/es/badge/utils.d.ts +1 -0
- package/es/badge/utils.js +5 -0
- package/es/breadcrumb/Breadcrumb.d.ts +24 -0
- package/es/breadcrumb/Breadcrumb.js +148 -0
- package/es/breadcrumb/BreadcrumbItem.d.ts +19 -0
- package/es/breadcrumb/BreadcrumbItem.js +82 -0
- package/es/breadcrumb/BreadcrumbSeparator.d.ts +7 -0
- package/es/breadcrumb/BreadcrumbSeparator.js +17 -0
- package/es/breadcrumb/index.d.ts +4 -0
- package/es/breadcrumb/index.js +2 -0
- package/es/breadcrumb/style/css.js +5 -0
- package/es/breadcrumb/style/index-pure.less +64 -0
- package/es/breadcrumb/style/index.css +77 -0
- package/es/breadcrumb/style/index.d.ts +4 -0
- package/es/breadcrumb/style/index.js +5 -0
- package/es/breadcrumb/style/index.less +3 -0
- package/es/breadcrumb/style/rtl.less +29 -0
- package/es/button/LoadingIcon.d.ts +8 -0
- package/es/button/LoadingIcon.js +57 -0
- package/es/button/button-group.d.ts +12 -0
- package/es/button/button-group.js +65 -0
- package/es/button/button.d.ts +47 -0
- package/es/button/button.js +273 -0
- package/es/button/index.d.ts +5 -0
- package/es/button/index.js +2 -0
- package/es/button/style/css.js +2 -0
- package/es/button/style/index-pure.less +293 -0
- package/es/button/style/index.css +1987 -0
- package/es/button/style/index.d.ts +2 -0
- package/es/button/style/index.js +2 -0
- package/es/button/style/index.less +3 -0
- package/es/button/style/mixin.less +589 -0
- package/es/button/style/rtl.less +90 -0
- package/es/button/style/space-compact.less +88 -0
- package/es/calendar/Header.d.ts +17 -0
- package/es/calendar/Header.js +176 -0
- package/es/calendar/generateCalendar.d.ts +41 -0
- package/es/calendar/generateCalendar.js +193 -0
- package/es/calendar/index.d.ts +5 -0
- package/es/calendar/index.js +4 -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/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/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/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/css.js +7 -0
- package/es/calendar/style/index-pure.less +196 -0
- package/es/calendar/style/index.css +175 -0
- package/es/calendar/style/index.d.ts +5 -0
- package/es/calendar/style/index.js +7 -0
- package/es/calendar/style/index.less +3 -0
- package/es/calendar/style/rtl.less +46 -0
- package/es/card/Card.d.ts +35 -0
- package/es/card/Card.js +154 -0
- package/es/card/Grid.d.ts +9 -0
- package/es/card/Grid.js +38 -0
- package/es/card/Meta.d.ts +11 -0
- package/es/card/Meta.js +51 -0
- package/es/card/index.d.ts +13 -0
- package/es/card/index.js +7 -0
- package/es/card/style/css.js +5 -0
- package/es/card/style/index-pure.less +276 -0
- package/es/card/style/index.css +275 -0
- package/es/card/style/index.d.ts +4 -0
- package/es/card/style/index.js +5 -0
- package/es/card/style/index.less +3 -0
- package/es/card/style/size.less +20 -0
- package/es/carousel/index.d.ts +24 -0
- package/es/carousel/index.js +88 -0
- package/es/carousel/style/css.js +2 -0
- package/es/carousel/style/index-pure.less +304 -0
- package/es/carousel/style/index.css +286 -0
- package/es/carousel/style/index.d.ts +2 -0
- package/es/carousel/style/index.js +2 -0
- package/es/carousel/style/index.less +3 -0
- package/es/carousel/style/rtl.less +54 -0
- package/es/cascader/index.d.ts +43 -0
- package/es/cascader/index.js +245 -0
- package/es/cascader/style/css.js +5 -0
- package/es/cascader/style/index-pure.less +108 -0
- package/es/cascader/style/index.css +332 -0
- package/es/cascader/style/index.d.ts +4 -0
- package/es/cascader/style/index.js +5 -0
- package/es/cascader/style/index.less +3 -0
- package/es/cascader/style/rtl.less +19 -0
- package/es/checkbox/Checkbox.d.ts +37 -0
- package/es/checkbox/Checkbox.js +126 -0
- package/es/checkbox/Group.d.ts +35 -0
- package/es/checkbox/Group.js +154 -0
- package/es/checkbox/index.d.ts +10 -0
- package/es/checkbox/index.js +6 -0
- package/es/checkbox/style/css.js +2 -0
- package/es/checkbox/style/index-pure.less +6 -0
- package/es/checkbox/style/index.css +225 -0
- package/es/checkbox/style/index.d.ts +2 -0
- package/es/checkbox/style/index.js +2 -0
- package/es/checkbox/style/index.less +3 -0
- package/es/checkbox/style/mixin.less +241 -0
- package/es/checkbox/style/rtl.less +28 -0
- package/es/col/index.d.ts +3 -0
- package/es/col/index.js +2 -0
- package/es/col/style/css.js +4 -0
- package/es/col/style/index.d.ts +2 -0
- package/es/col/style/index.js +4 -0
- package/es/collapse/Collapse.d.ts +40 -0
- package/es/collapse/Collapse.js +95 -0
- package/es/collapse/CollapsePanel.d.ts +19 -0
- package/es/collapse/CollapsePanel.js +28 -0
- package/es/collapse/index.d.ts +4 -0
- package/es/collapse/index.js +2 -0
- package/es/collapse/style/css.js +2 -0
- package/es/collapse/style/index-pure.less +174 -0
- package/es/collapse/style/index.css +174 -0
- package/es/collapse/style/index.d.ts +2 -0
- package/es/collapse/style/index.js +2 -0
- package/es/collapse/style/index.less +3 -0
- package/es/collapse/style/rtl.less +68 -0
- package/es/comment/index.d.ts +23 -0
- package/es/comment/index.js +77 -0
- package/es/comment/style/css.js +2 -0
- package/es/comment/style/index-pure.less +105 -0
- package/es/comment/style/index.css +112 -0
- package/es/comment/style/index.d.ts +2 -0
- package/es/comment/style/index.js +2 -0
- package/es/comment/style/index.less +3 -0
- package/es/comment/style/rtl.less +51 -0
- package/es/date-picker/PickerButton.d.ts +3 -0
- package/es/date-picker/PickerButton.js +9 -0
- package/es/date-picker/PickerTag.d.ts +3 -0
- package/es/date-picker/PickerTag.js +8 -0
- package/es/date-picker/generatePicker/generateRangePicker.d.ts +11 -0
- package/es/date-picker/generatePicker/generateRangePicker.js +151 -0
- package/es/date-picker/generatePicker/generateSinglePicker.d.ts +71 -0
- package/es/date-picker/generatePicker/generateSinglePicker.js +177 -0
- package/es/date-picker/generatePicker/index.d.ts +143 -0
- package/es/date-picker/generatePicker/index.js +86 -0
- package/es/date-picker/generatePicker/interface.d.ts +12 -0
- package/es/date-picker/generatePicker/interface.js +1 -0
- package/es/date-picker/index.d.ts +54 -0
- package/es/date-picker/index.js +4 -0
- package/es/date-picker/locale/ar_EG.d.ts +3 -0
- package/es/date-picker/locale/ar_EG.js +18 -0
- package/es/date-picker/locale/az_AZ.d.ts +3 -0
- package/es/date-picker/locale/az_AZ.js +11 -0
- package/es/date-picker/locale/bg_BG.d.ts +3 -0
- package/es/date-picker/locale/bg_BG.js +14 -0
- package/es/date-picker/locale/bn_BD.d.ts +3 -0
- package/es/date-picker/locale/bn_BD.js +21 -0
- package/es/date-picker/locale/by_BY.d.ts +3 -0
- package/es/date-picker/locale/by_BY.js +19 -0
- package/es/date-picker/locale/ca_ES.d.ts +3 -0
- package/es/date-picker/locale/ca_ES.js +14 -0
- package/es/date-picker/locale/cs_CZ.d.ts +3 -0
- package/es/date-picker/locale/cs_CZ.js +14 -0
- package/es/date-picker/locale/da_DK.d.ts +3 -0
- package/es/date-picker/locale/da_DK.js +14 -0
- package/es/date-picker/locale/de_DE.d.ts +3 -0
- package/es/date-picker/locale/de_DE.js +14 -0
- package/es/date-picker/locale/el_GR.d.ts +3 -0
- package/es/date-picker/locale/el_GR.js +14 -0
- package/es/date-picker/locale/en_GB.d.ts +3 -0
- package/es/date-picker/locale/en_GB.js +22 -0
- package/es/date-picker/locale/en_US.d.ts +3 -0
- package/es/date-picker/locale/en_US.js +22 -0
- package/es/date-picker/locale/es_ES.d.ts +3 -0
- package/es/date-picker/locale/es_ES.js +14 -0
- package/es/date-picker/locale/et_EE.d.ts +3 -0
- package/es/date-picker/locale/et_EE.js +14 -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 +14 -0
- package/es/date-picker/locale/fr_BE.d.ts +3 -0
- package/es/date-picker/locale/fr_BE.js +14 -0
- package/es/date-picker/locale/fr_CA.d.ts +3 -0
- package/es/date-picker/locale/fr_CA.js +21 -0
- package/es/date-picker/locale/fr_FR.d.ts +3 -0
- package/es/date-picker/locale/fr_FR.js +21 -0
- package/es/date-picker/locale/ga_IE.d.ts +3 -0
- package/es/date-picker/locale/ga_IE.js +21 -0
- package/es/date-picker/locale/gl_ES.d.ts +3 -0
- package/es/date-picker/locale/gl_ES.js +14 -0
- package/es/date-picker/locale/he_IL.d.ts +3 -0
- package/es/date-picker/locale/he_IL.js +14 -0
- package/es/date-picker/locale/hi_IN.d.ts +3 -0
- package/es/date-picker/locale/hi_IN.js +21 -0
- package/es/date-picker/locale/hr_HR.d.ts +3 -0
- package/es/date-picker/locale/hr_HR.js +21 -0
- package/es/date-picker/locale/hu_HU.d.ts +3 -0
- package/es/date-picker/locale/hu_HU.js +14 -0
- package/es/date-picker/locale/id_ID.d.ts +3 -0
- package/es/date-picker/locale/id_ID.js +14 -0
- package/es/date-picker/locale/is_IS.d.ts +3 -0
- package/es/date-picker/locale/is_IS.js +14 -0
- package/es/date-picker/locale/it_IT.d.ts +3 -0
- package/es/date-picker/locale/it_IT.js +14 -0
- package/es/date-picker/locale/ja_JP.d.ts +3 -0
- package/es/date-picker/locale/ja_JP.js +14 -0
- package/es/date-picker/locale/ka_GE.d.ts +3 -0
- package/es/date-picker/locale/ka_GE.js +18 -0
- package/es/date-picker/locale/kk_KZ.d.ts +3 -0
- package/es/date-picker/locale/kk_KZ.js +21 -0
- package/es/date-picker/locale/km_KH.d.ts +3 -0
- package/es/date-picker/locale/km_KH.js +21 -0
- package/es/date-picker/locale/kmr_IQ.d.ts +3 -0
- package/es/date-picker/locale/kmr_IQ.js +14 -0
- package/es/date-picker/locale/kn_IN.d.ts +3 -0
- package/es/date-picker/locale/kn_IN.js +14 -0
- package/es/date-picker/locale/ko_KR.d.ts +3 -0
- package/es/date-picker/locale/ko_KR.js +14 -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 +14 -0
- package/es/date-picker/locale/mk_MK.d.ts +3 -0
- package/es/date-picker/locale/mk_MK.js +14 -0
- package/es/date-picker/locale/ml_IN.d.ts +3 -0
- package/es/date-picker/locale/ml_IN.js +21 -0
- package/es/date-picker/locale/mn_MN.d.ts +3 -0
- package/es/date-picker/locale/mn_MN.js +14 -0
- package/es/date-picker/locale/ms_MY.d.ts +3 -0
- package/es/date-picker/locale/ms_MY.js +14 -0
- package/es/date-picker/locale/nb_NO.d.ts +3 -0
- package/es/date-picker/locale/nb_NO.js +21 -0
- package/es/date-picker/locale/nl_BE.d.ts +3 -0
- package/es/date-picker/locale/nl_BE.js +21 -0
- package/es/date-picker/locale/nl_NL.d.ts +3 -0
- package/es/date-picker/locale/nl_NL.js +21 -0
- package/es/date-picker/locale/pl_PL.d.ts +3 -0
- package/es/date-picker/locale/pl_PL.js +14 -0
- package/es/date-picker/locale/pt_BR.d.ts +3 -0
- package/es/date-picker/locale/pt_BR.js +14 -0
- package/es/date-picker/locale/pt_PT.d.ts +3 -0
- package/es/date-picker/locale/pt_PT.js +42 -0
- package/es/date-picker/locale/ro_RO.d.ts +3 -0
- package/es/date-picker/locale/ro_RO.js +14 -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 +22 -0
- package/es/date-picker/locale/sk_SK.d.ts +3 -0
- package/es/date-picker/locale/sk_SK.js +14 -0
- package/es/date-picker/locale/sl_SI.d.ts +3 -0
- package/es/date-picker/locale/sl_SI.js +40 -0
- package/es/date-picker/locale/sr_RS.d.ts +3 -0
- package/es/date-picker/locale/sr_RS.js +21 -0
- package/es/date-picker/locale/sv_SE.d.ts +3 -0
- package/es/date-picker/locale/sv_SE.js +21 -0
- package/es/date-picker/locale/ta_IN.d.ts +3 -0
- package/es/date-picker/locale/ta_IN.js +15 -0
- package/es/date-picker/locale/th_TH.d.ts +3 -0
- package/es/date-picker/locale/th_TH.js +21 -0
- package/es/date-picker/locale/tk_TK.d.ts +3 -0
- package/es/date-picker/locale/tk_TK.js +19 -0
- package/es/date-picker/locale/tr_TR.d.ts +3 -0
- package/es/date-picker/locale/tr_TR.js +21 -0
- package/es/date-picker/locale/uk_UA.d.ts +3 -0
- package/es/date-picker/locale/uk_UA.js +14 -0
- package/es/date-picker/locale/ur_PK.d.ts +3 -0
- package/es/date-picker/locale/ur_PK.js +21 -0
- package/es/date-picker/locale/vi_VN.d.ts +3 -0
- package/es/date-picker/locale/vi_VN.js +14 -0
- package/es/date-picker/locale/zh_CN.d.ts +3 -0
- package/es/date-picker/locale/zh_CN.js +24 -0
- package/es/date-picker/locale/zh_TW.d.ts +3 -0
- package/es/date-picker/locale/zh_TW.js +23 -0
- package/es/date-picker/style/css.js +4 -0
- package/es/date-picker/style/index-pure.less +366 -0
- package/es/date-picker/style/index.css +1099 -0
- package/es/date-picker/style/index.d.ts +3 -0
- package/es/date-picker/style/index.js +4 -0
- package/es/date-picker/style/index.less +3 -0
- package/es/date-picker/style/panel.less +677 -0
- package/es/date-picker/style/rtl.less +246 -0
- package/es/date-picker/style/status.less +38 -0
- package/es/date-picker/util.d.ts +14 -0
- package/es/date-picker/util.js +107 -0
- package/es/descriptions/Cell.d.ts +16 -0
- package/es/descriptions/Cell.js +52 -0
- package/es/descriptions/Item.d.ts +13 -0
- package/es/descriptions/Item.js +6 -0
- package/es/descriptions/Row.d.ts +13 -0
- package/es/descriptions/Row.js +107 -0
- package/es/descriptions/index.d.ts +27 -0
- package/es/descriptions/index.js +167 -0
- package/es/descriptions/style/css.js +2 -0
- package/es/descriptions/style/index-pure.less +179 -0
- package/es/descriptions/style/index.css +139 -0
- package/es/descriptions/style/index.d.ts +2 -0
- package/es/descriptions/style/index.js +2 -0
- package/es/descriptions/style/index.less +3 -0
- package/es/descriptions/style/rtl.less +33 -0
- package/es/divider/index.d.ts +14 -0
- package/es/divider/index.js +69 -0
- package/es/divider/style/css.js +2 -0
- package/es/divider/style/index-pure.less +137 -0
- package/es/divider/style/index.css +126 -0
- package/es/divider/style/index.d.ts +2 -0
- package/es/divider/style/index.js +2 -0
- package/es/divider/style/index.less +3 -0
- package/es/divider/style/rtl.less +38 -0
- package/es/drawer/index.d.ts +37 -0
- package/es/drawer/index.js +182 -0
- package/es/drawer/style/css.js +3 -0
- package/es/drawer/style/drawer.less +160 -0
- package/es/drawer/style/index-pure.less +7 -0
- package/es/drawer/style/index.css +265 -0
- package/es/drawer/style/index.d.ts +2 -0
- package/es/drawer/style/index.js +3 -0
- package/es/drawer/style/index.less +3 -0
- package/es/drawer/style/motion.less +146 -0
- package/es/drawer/style/rtl.less +16 -0
- package/es/dropdown/dropdown-button.d.ts +23 -0
- package/es/dropdown/dropdown-button.js +137 -0
- package/es/dropdown/dropdown.d.ts +56 -0
- package/es/dropdown/dropdown.js +184 -0
- package/es/dropdown/index.d.ts +4 -0
- package/es/dropdown/index.js +2 -0
- package/es/dropdown/style/css.js +6 -0
- package/es/dropdown/style/index-pure.less +389 -0
- package/es/dropdown/style/index.css +400 -0
- package/es/dropdown/style/index.d.ts +5 -0
- package/es/dropdown/style/index.js +6 -0
- package/es/dropdown/style/index.less +3 -0
- package/es/dropdown/style/rtl.less +90 -0
- package/es/dropdown/style/status.less +14 -0
- package/es/empty/empty.d.ts +2 -0
- package/es/empty/empty.js +55 -0
- package/es/empty/index.d.ts +20 -0
- package/es/empty/index.js +74 -0
- package/es/empty/simple.d.ts +2 -0
- package/es/empty/simple.js +36 -0
- package/es/empty/style/css.js +2 -0
- package/es/empty/style/index-pure.less +151 -0
- package/es/empty/style/index.css +72 -0
- package/es/empty/style/index.d.ts +2 -0
- package/es/empty/style/index.js +2 -0
- package/es/empty/style/index.less +3 -0
- package/es/empty/style/rtl.less +10 -0
- package/es/form/ErrorList.d.ts +12 -0
- package/es/form/ErrorList.js +92 -0
- package/es/form/Form.d.ts +34 -0
- package/es/form/Form.js +138 -0
- package/es/form/FormItem/ItemHolder.d.ts +17 -0
- package/es/form/FormItem/ItemHolder.js +150 -0
- package/es/form/FormItem/index.d.ts +35 -0
- package/es/form/FormItem/index.js +309 -0
- package/es/form/FormItemInput.d.ts +20 -0
- package/es/form/FormItemInput.js +86 -0
- package/es/form/FormItemLabel.d.ts +23 -0
- package/es/form/FormItemLabel.js +118 -0
- package/es/form/FormList.d.ts +25 -0
- package/es/form/FormList.js +53 -0
- package/es/form/context.d.ts +48 -0
- package/es/form/context.js +43 -0
- package/es/form/hooks/useDebounce.d.ts +1 -0
- package/es/form/hooks/useDebounce.js +18 -0
- package/es/form/hooks/useForm.d.ts +7 -0
- package/es/form/hooks/useForm.js +54 -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 +6 -0
- package/es/form/hooks/useFormItemStatus.js +15 -0
- package/es/form/hooks/useFrameState.d.ts +3 -0
- package/es/form/hooks/useFrameState.js +46 -0
- package/es/form/hooks/useItemRef.d.ts +3 -0
- package/es/form/hooks/useItemRef.js +25 -0
- package/es/form/index.d.ts +22 -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/components.less +16 -0
- package/es/form/style/css.js +5 -0
- package/es/form/style/horizontal.less +22 -0
- package/es/form/style/index-pure.less +332 -0
- package/es/form/style/index.css +572 -0
- package/es/form/style/index.d.ts +4 -0
- package/es/form/style/index.js +5 -0
- package/es/form/style/index.less +3 -0
- package/es/form/style/inline.less +38 -0
- package/es/form/style/mixin.less +78 -0
- package/es/form/style/rtl.less +204 -0
- package/es/form/style/status.less +42 -0
- package/es/form/style/vertical.less +93 -0
- package/es/form/util.d.ts +3 -0
- package/es/form/util.js +20 -0
- package/es/grid/RowContext.d.ts +8 -0
- package/es/grid/RowContext.js +3 -0
- package/es/grid/col.d.ts +28 -0
- package/es/grid/col.js +113 -0
- package/es/grid/hooks/useBreakpoint.d.ts +3 -0
- package/es/grid/hooks/useBreakpoint.js +24 -0
- package/es/grid/index.d.ts +10 -0
- package/es/grid/index.js +12 -0
- package/es/grid/row.d.ts +20 -0
- package/es/grid/row.js +191 -0
- package/es/grid/style/css.js +2 -0
- package/es/grid/style/index-pure.less +124 -0
- package/es/grid/style/index.css +5185 -0
- package/es/grid/style/index.d.ts +2 -0
- package/es/grid/style/index.js +2 -0
- package/es/grid/style/index.less +3 -0
- package/es/grid/style/mixin.less +56 -0
- package/es/grid/style/rtl.less +69 -0
- package/es/icon/index.d.ts +3 -0
- package/es/icon/index.js +8 -0
- package/es/icon/style/css.js +2 -0
- package/es/icon/style/index-pure.less +4 -0
- package/es/icon/style/index.css +4 -0
- package/es/icon/style/index.d.ts +2 -0
- package/es/icon/style/index.js +2 -0
- package/es/icon/style/index.less +3 -0
- package/es/image/PreviewGroup.d.ts +13 -0
- package/es/image/PreviewGroup.js +67 -0
- package/es/image/index.d.ts +9 -0
- package/es/image/index.js +68 -0
- package/es/image/style/css.js +2 -0
- package/es/image/style/index-pure.less +203 -0
- package/es/image/style/index.css +232 -0
- package/es/image/style/index.d.ts +2 -0
- package/es/image/style/index.js +2 -0
- package/es/image/style/index.less +3 -0
- package/es/index.d.ts +128 -1
- package/es/index.js +68 -2
- package/es/input/ClearableLabeledInput.d.ts +39 -0
- package/es/input/ClearableLabeledInput.js +108 -0
- package/es/input/Group.d.ts +15 -0
- package/es/input/Group.js +39 -0
- package/es/input/Input.d.ts +20 -0
- package/es/input/Input.js +230 -0
- package/es/input/Password.d.ts +14 -0
- package/es/input/Password.js +141 -0
- package/es/input/Search.d.ts +10 -0
- package/es/input/Search.js +167 -0
- package/es/input/TextArea.d.ts +28 -0
- package/es/input/TextArea.js +250 -0
- package/es/input/hooks/useRemovePasswordTimeout.d.ts +3 -0
- package/es/input/hooks/useRemovePasswordTimeout.js +29 -0
- package/es/input/index.d.ts +19 -0
- package/es/input/index.js +11 -0
- package/es/input/style/IE11.less +20 -0
- package/es/input/style/affix.less +78 -0
- package/es/input/style/allow-clear.less +43 -0
- package/es/input/style/css.js +5 -0
- package/es/input/style/index-pure.less +88 -0
- package/es/input/style/index.css +929 -0
- package/es/input/style/index.d.ts +3 -0
- package/es/input/style/index.js +5 -0
- package/es/input/style/index.less +3 -0
- package/es/input/style/mixin.less +470 -0
- package/es/input/style/rtl.less +210 -0
- package/es/input/style/search-input.less +117 -0
- package/es/input/style/status.less +42 -0
- package/es/input/utils.d.ts +3 -0
- package/es/input/utils.js +4 -0
- package/es/input-number/index.d.ts +27 -0
- package/es/input-number/index.js +175 -0
- package/es/input-number/style/affix.less +83 -0
- package/es/input-number/style/css.js +2 -0
- package/es/input-number/style/index-pure.less +243 -0
- package/es/input-number/style/index.css +915 -0
- package/es/input-number/style/index.d.ts +2 -0
- package/es/input-number/style/index.js +2 -0
- package/es/input-number/style/index.less +3 -0
- package/es/input-number/style/rtl.less +71 -0
- package/es/input-number/style/status.less +29 -0
- package/es/layout/Sider.d.ts +28 -0
- package/es/layout/Sider.js +219 -0
- package/es/layout/index.d.ts +13 -0
- package/es/layout/index.js +8 -0
- package/es/layout/layout.d.ts +23 -0
- package/es/layout/layout.js +138 -0
- package/es/layout/style/css.js +2 -0
- package/es/layout/style/index-pure.less +145 -0
- package/es/layout/style/index.css +128 -0
- package/es/layout/style/index.d.ts +2 -0
- package/es/layout/style/index.js +2 -0
- package/es/layout/style/index.less +3 -0
- package/es/layout/style/light.less +11 -0
- package/es/layout/style/rtl.less +10 -0
- package/es/list/Item.d.ts +26 -0
- package/es/list/Item.js +122 -0
- package/es/list/index.d.ts +54 -0
- package/es/list/index.js +255 -0
- package/es/list/style/bordered.less +44 -0
- package/es/list/style/css.js +7 -0
- package/es/list/style/customize.less +13 -0
- package/es/list/style/index-pure.less +249 -0
- package/es/list/style/index.css +317 -0
- package/es/list/style/index.d.ts +6 -0
- package/es/list/style/index.js +7 -0
- package/es/list/style/index.less +3 -0
- package/es/list/style/responsive.less +43 -0
- package/es/list/style/rtl.less +139 -0
- package/es/locale/ar_EG.d.ts +3 -0
- package/es/locale/ar_EG.js +117 -0
- package/es/locale/az_AZ.d.ts +3 -0
- package/es/locale/az_AZ.js +97 -0
- package/es/locale/bg_BG.d.ts +3 -0
- package/es/locale/bg_BG.js +44 -0
- package/es/locale/bn_BD.d.ts +3 -0
- package/es/locale/bn_BD.js +130 -0
- package/es/locale/by_BY.d.ts +3 -0
- package/es/locale/by_BY.js +132 -0
- package/es/locale/ca_ES.d.ts +3 -0
- package/es/locale/ca_ES.js +125 -0
- package/es/locale/cs_CZ.d.ts +3 -0
- package/es/locale/cs_CZ.js +132 -0
- package/es/locale/da_DK.d.ts +3 -0
- package/es/locale/da_DK.js +54 -0
- package/es/locale/de_DE.d.ts +3 -0
- package/es/locale/de_DE.js +126 -0
- package/es/locale/default.d.ts +3 -0
- package/es/locale/default.js +132 -0
- package/es/locale/el_GR.d.ts +3 -0
- package/es/locale/el_GR.js +44 -0
- package/es/locale/en_GB.d.ts +3 -0
- package/es/locale/en_GB.js +132 -0
- package/es/locale/en_US.d.ts +2 -0
- package/es/locale/en_US.js +2 -0
- package/es/locale/es_ES.d.ts +3 -0
- package/es/locale/es_ES.js +132 -0
- package/es/locale/et_EE.d.ts +3 -0
- package/es/locale/et_EE.js +132 -0
- package/es/locale/fa_IR.d.ts +3 -0
- package/es/locale/fa_IR.js +130 -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 +49 -0
- package/es/locale/fr_CA.d.ts +3 -0
- package/es/locale/fr_CA.js +61 -0
- package/es/locale/fr_FR.d.ts +3 -0
- package/es/locale/fr_FR.js +129 -0
- package/es/locale/ga_IE.d.ts +3 -0
- package/es/locale/ga_IE.js +123 -0
- package/es/locale/gl_ES.d.ts +3 -0
- package/es/locale/gl_ES.js +111 -0
- package/es/locale/he_IL.d.ts +3 -0
- package/es/locale/he_IL.js +117 -0
- package/es/locale/hi_IN.d.ts +3 -0
- package/es/locale/hi_IN.js +130 -0
- package/es/locale/hr_HR.d.ts +3 -0
- package/es/locale/hr_HR.js +129 -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 +109 -0
- package/es/locale/id_ID.d.ts +3 -0
- package/es/locale/id_ID.js +45 -0
- package/es/locale/is_IS.d.ts +3 -0
- package/es/locale/is_IS.js +44 -0
- package/es/locale/it_IT.d.ts +3 -0
- package/es/locale/it_IT.js +132 -0
- package/es/locale/ja_JP.d.ts +3 -0
- package/es/locale/ja_JP.js +103 -0
- package/es/locale/ka_GE.d.ts +3 -0
- package/es/locale/ka_GE.js +130 -0
- package/es/locale/kk_KZ.d.ts +3 -0
- package/es/locale/kk_KZ.js +124 -0
- package/es/locale/km_KH.d.ts +3 -0
- package/es/locale/km_KH.js +105 -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 +51 -0
- package/es/locale/ko_KR.d.ts +3 -0
- package/es/locale/ko_KR.js +97 -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 +121 -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 +59 -0
- package/es/locale/ml_IN.d.ts +3 -0
- package/es/locale/ml_IN.js +130 -0
- package/es/locale/mn_MN.d.ts +3 -0
- package/es/locale/mn_MN.js +44 -0
- package/es/locale/ms_MY.d.ts +3 -0
- package/es/locale/ms_MY.js +64 -0
- package/es/locale/nb_NO.d.ts +3 -0
- package/es/locale/nb_NO.js +124 -0
- package/es/locale/ne_NP.d.ts +3 -0
- package/es/locale/ne_NP.js +44 -0
- package/es/locale/nl_BE.d.ts +3 -0
- package/es/locale/nl_BE.js +130 -0
- package/es/locale/nl_NL.d.ts +3 -0
- package/es/locale/nl_NL.js +130 -0
- package/es/locale/pl_PL.d.ts +3 -0
- package/es/locale/pl_PL.js +132 -0
- package/es/locale/pt_BR.d.ts +3 -0
- package/es/locale/pt_BR.js +130 -0
- package/es/locale/pt_PT.d.ts +3 -0
- package/es/locale/pt_PT.js +132 -0
- package/es/locale/ro_RO.d.ts +3 -0
- package/es/locale/ro_RO.js +130 -0
- package/es/locale/ru_RU.d.ts +3 -0
- package/es/locale/ru_RU.js +129 -0
- package/es/locale/si_LK.d.ts +3 -0
- package/es/locale/si_LK.js +132 -0
- package/es/locale/sk_SK.d.ts +3 -0
- package/es/locale/sk_SK.js +132 -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 +130 -0
- package/es/locale/sv_SE.d.ts +3 -0
- package/es/locale/sv_SE.js +130 -0
- package/es/locale/ta_IN.d.ts +3 -0
- package/es/locale/ta_IN.js +63 -0
- package/es/locale/th_TH.d.ts +3 -0
- package/es/locale/th_TH.js +126 -0
- package/es/locale/tk_TK.d.ts +3 -0
- package/es/locale/tk_TK.js +128 -0
- package/es/locale/tr_TR.d.ts +3 -0
- package/es/locale/tr_TR.js +128 -0
- package/es/locale/uk_UA.d.ts +3 -0
- package/es/locale/uk_UA.js +132 -0
- package/es/locale/ur_PK.d.ts +3 -0
- package/es/locale/ur_PK.js +130 -0
- package/es/locale/vi_VN.d.ts +3 -0
- package/es/locale/vi_VN.js +44 -0
- package/es/locale/zh_CN.d.ts +3 -0
- package/es/locale/zh_CN.js +132 -0
- package/es/locale/zh_HK.d.ts +3 -0
- package/es/locale/zh_HK.js +128 -0
- package/es/locale/zh_TW.d.ts +3 -0
- package/es/locale/zh_TW.js +129 -0
- package/es/locale-provider/LocaleReceiver.d.ts +11 -0
- package/es/locale-provider/LocaleReceiver.js +42 -0
- package/es/locale-provider/ar_EG.d.ts +2 -0
- package/es/locale-provider/ar_EG.js +2 -0
- package/es/locale-provider/az_AZ.d.ts +2 -0
- package/es/locale-provider/az_AZ.js +2 -0
- package/es/locale-provider/bg_BG.d.ts +2 -0
- package/es/locale-provider/bg_BG.js +2 -0
- package/es/locale-provider/bn_BD.d.ts +2 -0
- package/es/locale-provider/bn_BD.js +2 -0
- package/es/locale-provider/by_BY.d.ts +2 -0
- package/es/locale-provider/by_BY.js +2 -0
- package/es/locale-provider/ca_ES.d.ts +2 -0
- package/es/locale-provider/ca_ES.js +2 -0
- package/es/locale-provider/context.d.ts +7 -0
- package/es/locale-provider/context.js +3 -0
- package/es/locale-provider/cs_CZ.d.ts +2 -0
- package/es/locale-provider/cs_CZ.js +2 -0
- package/es/locale-provider/da_DK.d.ts +2 -0
- package/es/locale-provider/da_DK.js +2 -0
- package/es/locale-provider/de_DE.d.ts +2 -0
- package/es/locale-provider/de_DE.js +2 -0
- package/es/locale-provider/default.d.ts +2 -0
- package/es/locale-provider/default.js +2 -0
- package/es/locale-provider/el_GR.d.ts +2 -0
- package/es/locale-provider/el_GR.js +2 -0
- package/es/locale-provider/en_GB.d.ts +2 -0
- package/es/locale-provider/en_GB.js +2 -0
- package/es/locale-provider/en_US.d.ts +2 -0
- package/es/locale-provider/en_US.js +2 -0
- package/es/locale-provider/es_ES.d.ts +2 -0
- package/es/locale-provider/es_ES.js +2 -0
- package/es/locale-provider/et_EE.d.ts +2 -0
- package/es/locale-provider/et_EE.js +2 -0
- package/es/locale-provider/fa_IR.d.ts +2 -0
- package/es/locale-provider/fa_IR.js +2 -0
- package/es/locale-provider/fi_FI.d.ts +2 -0
- package/es/locale-provider/fi_FI.js +2 -0
- package/es/locale-provider/fr_BE.d.ts +2 -0
- package/es/locale-provider/fr_BE.js +2 -0
- package/es/locale-provider/fr_CA.d.ts +2 -0
- package/es/locale-provider/fr_CA.js +2 -0
- package/es/locale-provider/fr_FR.d.ts +2 -0
- package/es/locale-provider/fr_FR.js +2 -0
- package/es/locale-provider/ga_IE.d.ts +2 -0
- package/es/locale-provider/ga_IE.js +2 -0
- package/es/locale-provider/gl_ES.d.ts +2 -0
- package/es/locale-provider/gl_ES.js +2 -0
- package/es/locale-provider/he_IL.d.ts +2 -0
- package/es/locale-provider/he_IL.js +2 -0
- package/es/locale-provider/hi_IN.d.ts +2 -0
- package/es/locale-provider/hi_IN.js +2 -0
- package/es/locale-provider/hr_HR.d.ts +2 -0
- package/es/locale-provider/hr_HR.js +2 -0
- package/es/locale-provider/hu_HU.d.ts +2 -0
- package/es/locale-provider/hu_HU.js +2 -0
- package/es/locale-provider/hy_AM.d.ts +2 -0
- package/es/locale-provider/hy_AM.js +2 -0
- package/es/locale-provider/id_ID.d.ts +2 -0
- package/es/locale-provider/id_ID.js +2 -0
- package/es/locale-provider/index.d.ts +49 -0
- package/es/locale-provider/index.js +34 -0
- package/es/locale-provider/is_IS.d.ts +2 -0
- package/es/locale-provider/is_IS.js +2 -0
- package/es/locale-provider/it_IT.d.ts +2 -0
- package/es/locale-provider/it_IT.js +2 -0
- package/es/locale-provider/ja_JP.d.ts +2 -0
- package/es/locale-provider/ja_JP.js +2 -0
- package/es/locale-provider/ka_GE.d.ts +2 -0
- package/es/locale-provider/ka_GE.js +2 -0
- package/es/locale-provider/kk_KZ.d.ts +2 -0
- package/es/locale-provider/kk_KZ.js +2 -0
- package/es/locale-provider/km_KH.d.ts +2 -0
- package/es/locale-provider/km_KH.js +2 -0
- package/es/locale-provider/kmr_IQ.d.ts +2 -0
- package/es/locale-provider/kmr_IQ.js +2 -0
- package/es/locale-provider/kn_IN.d.ts +2 -0
- package/es/locale-provider/kn_IN.js +2 -0
- package/es/locale-provider/ko_KR.d.ts +2 -0
- package/es/locale-provider/ko_KR.js +2 -0
- package/es/locale-provider/ku_IQ.d.ts +2 -0
- package/es/locale-provider/ku_IQ.js +2 -0
- package/es/locale-provider/lt_LT.d.ts +2 -0
- package/es/locale-provider/lt_LT.js +2 -0
- package/es/locale-provider/lv_LV.d.ts +2 -0
- package/es/locale-provider/lv_LV.js +2 -0
- package/es/locale-provider/mk_MK.d.ts +2 -0
- package/es/locale-provider/mk_MK.js +2 -0
- package/es/locale-provider/ml_IN.d.ts +2 -0
- package/es/locale-provider/ml_IN.js +2 -0
- package/es/locale-provider/mn_MN.d.ts +2 -0
- package/es/locale-provider/mn_MN.js +2 -0
- package/es/locale-provider/ms_MY.d.ts +2 -0
- package/es/locale-provider/ms_MY.js +2 -0
- package/es/locale-provider/nb_NO.d.ts +2 -0
- package/es/locale-provider/nb_NO.js +2 -0
- package/es/locale-provider/ne_NP.d.ts +2 -0
- package/es/locale-provider/ne_NP.js +2 -0
- package/es/locale-provider/nl_BE.d.ts +2 -0
- package/es/locale-provider/nl_BE.js +2 -0
- package/es/locale-provider/nl_NL.d.ts +2 -0
- package/es/locale-provider/nl_NL.js +2 -0
- package/es/locale-provider/pl_PL.d.ts +2 -0
- package/es/locale-provider/pl_PL.js +2 -0
- package/es/locale-provider/pt_BR.d.ts +2 -0
- package/es/locale-provider/pt_BR.js +2 -0
- package/es/locale-provider/pt_PT.d.ts +2 -0
- package/es/locale-provider/pt_PT.js +2 -0
- package/es/locale-provider/ro_RO.d.ts +2 -0
- package/es/locale-provider/ro_RO.js +2 -0
- package/es/locale-provider/ru_RU.d.ts +2 -0
- package/es/locale-provider/ru_RU.js +2 -0
- package/es/locale-provider/si_LK.d.ts +2 -0
- package/es/locale-provider/si_LK.js +2 -0
- package/es/locale-provider/sk_SK.d.ts +2 -0
- package/es/locale-provider/sk_SK.js +2 -0
- package/es/locale-provider/sl_SI.d.ts +2 -0
- package/es/locale-provider/sl_SI.js +2 -0
- package/es/locale-provider/sr_RS.d.ts +2 -0
- package/es/locale-provider/sr_RS.js +2 -0
- package/es/locale-provider/style/css.js +1 -0
- package/es/locale-provider/style/index-pure.less +2 -0
- package/es/locale-provider/style/index.css +4 -0
- package/es/locale-provider/style/index.d.ts +1 -0
- package/es/locale-provider/style/index.js +1 -0
- package/es/locale-provider/style/index.less +3 -0
- package/es/locale-provider/sv_SE.d.ts +2 -0
- package/es/locale-provider/sv_SE.js +2 -0
- package/es/locale-provider/ta_IN.d.ts +2 -0
- package/es/locale-provider/ta_IN.js +2 -0
- package/es/locale-provider/th_TH.d.ts +2 -0
- package/es/locale-provider/th_TH.js +2 -0
- package/es/locale-provider/tk_TK.d.ts +2 -0
- package/es/locale-provider/tk_TK.js +2 -0
- package/es/locale-provider/tr_TR.d.ts +2 -0
- package/es/locale-provider/tr_TR.js +2 -0
- package/es/locale-provider/uk_UA.d.ts +2 -0
- package/es/locale-provider/uk_UA.js +2 -0
- package/es/locale-provider/ur_PK.d.ts +2 -0
- package/es/locale-provider/ur_PK.js +2 -0
- package/es/locale-provider/vi_VN.d.ts +2 -0
- package/es/locale-provider/vi_VN.js +2 -0
- package/es/locale-provider/zh_CN.d.ts +2 -0
- package/es/locale-provider/zh_CN.js +2 -0
- package/es/locale-provider/zh_HK.d.ts +2 -0
- package/es/locale-provider/zh_HK.js +2 -0
- package/es/locale-provider/zh_TW.d.ts +2 -0
- package/es/locale-provider/zh_TW.js +2 -0
- package/es/mentions/index.d.ts +35 -0
- package/es/mentions/index.js +196 -0
- package/es/mentions/style/css.js +4 -0
- package/es/mentions/style/index-pure.less +179 -0
- package/es/mentions/style/index.css +322 -0
- package/es/mentions/style/index.d.ts +3 -0
- package/es/mentions/style/index.js +4 -0
- package/es/mentions/style/index.less +3 -0
- package/es/mentions/style/rtl.less +10 -0
- package/es/mentions/style/status.less +16 -0
- package/es/menu/MenuContext.d.ts +12 -0
- package/es/menu/MenuContext.js +7 -0
- package/es/menu/MenuDivider.d.ts +9 -0
- package/es/menu/MenuDivider.js +38 -0
- package/es/menu/MenuItem.d.ts +16 -0
- package/es/menu/MenuItem.js +140 -0
- package/es/menu/OverrideContext.d.ts +11 -0
- package/es/menu/OverrideContext.js +36 -0
- package/es/menu/SubMenu.d.ts +23 -0
- package/es/menu/SubMenu.js +53 -0
- package/es/menu/hooks/useItems.d.ts +26 -0
- package/es/menu/hooks/useItems.js +85 -0
- package/es/menu/index.d.ts +26 -0
- package/es/menu/index.js +195 -0
- package/es/menu/style/css.js +5 -0
- package/es/menu/style/dark.less +177 -0
- package/es/menu/style/index-pure.less +700 -0
- package/es/menu/style/index.css +919 -0
- package/es/menu/style/index.d.ts +3 -0
- package/es/menu/style/index.js +5 -0
- package/es/menu/style/index.less +3 -0
- package/es/menu/style/light.less +12 -0
- package/es/menu/style/rtl.less +165 -0
- package/es/menu/style/status.less +49 -0
- package/es/message/hooks/useMessage.d.ts +7 -0
- package/es/message/hooks/useMessage.js +84 -0
- package/es/message/index.d.ts +61 -0
- package/es/message/index.js +243 -0
- package/es/message/style/css.js +2 -0
- package/es/message/style/index-pure.less +74 -0
- package/es/message/style/index.css +78 -0
- package/es/message/style/index.d.ts +2 -0
- package/es/message/style/index.js +2 -0
- package/es/message/style/index.less +3 -0
- package/es/message/style/rtl.less +17 -0
- package/es/modal/ConfirmDialog.d.ts +10 -0
- package/es/modal/ConfirmDialog.js +116 -0
- package/es/modal/Modal.d.ts +114 -0
- package/es/modal/Modal.js +133 -0
- package/es/modal/confirm.d.ts +20 -0
- package/es/modal/confirm.js +189 -0
- package/es/modal/destroyFns.d.ts +2 -0
- package/es/modal/destroyFns.js +2 -0
- package/es/modal/index.d.ts +12 -0
- package/es/modal/index.js +43 -0
- package/es/modal/locale.d.ts +7 -0
- package/es/modal/locale.js +15 -0
- package/es/modal/style/confirm.less +79 -0
- package/es/modal/style/css.js +5 -0
- package/es/modal/style/index-pure.less +7 -0
- package/es/modal/style/index.css +255 -0
- package/es/modal/style/index.d.ts +3 -0
- package/es/modal/style/index.js +5 -0
- package/es/modal/style/index.less +3 -0
- package/es/modal/style/modal.less +136 -0
- package/es/modal/style/rtl.less +74 -0
- package/es/modal/useModal/HookModal.d.ts +12 -0
- package/es/modal/useModal/HookModal.js +75 -0
- package/es/modal/useModal/index.d.ts +3 -0
- package/es/modal/useModal/index.js +104 -0
- package/es/notification/hooks/useNotification.d.ts +7 -0
- package/es/notification/hooks/useNotification.js +55 -0
- package/es/notification/index.d.ts +55 -0
- package/es/notification/index.js +339 -0
- package/es/notification/style/css.js +2 -0
- package/es/notification/style/index-pure.less +207 -0
- package/es/notification/style/index.css +246 -0
- package/es/notification/style/index.d.ts +2 -0
- package/es/notification/style/index.js +2 -0
- package/es/notification/style/index.less +3 -0
- package/es/notification/style/placement.less +68 -0
- package/es/notification/style/rtl.less +53 -0
- package/es/page-header/index.d.ts +24 -0
- package/es/page-header/index.js +165 -0
- package/es/page-header/style/css.js +5 -0
- package/es/page-header/style/index-pure.less +122 -0
- package/es/page-header/style/index.css +151 -0
- package/es/page-header/style/index.d.ts +4 -0
- package/es/page-header/style/index.js +5 -0
- package/es/page-header/style/index.less +3 -0
- package/es/page-header/style/rtl.less +77 -0
- package/es/pagination/Pagination.d.ts +19 -0
- package/es/pagination/Pagination.js +121 -0
- package/es/pagination/Select.d.ts +9 -0
- package/es/pagination/Select.js +19 -0
- package/es/pagination/index.d.ts +3 -0
- package/es/pagination/index.js +2 -0
- package/es/pagination/style/css.js +5 -0
- package/es/pagination/style/index-pure.less +472 -0
- package/es/pagination/style/index.css +553 -0
- package/es/pagination/style/index.d.ts +3 -0
- package/es/pagination/style/index.js +5 -0
- package/es/pagination/style/index.less +3 -0
- package/es/pagination/style/rtl.less +55 -0
- package/es/popconfirm/PurePanel.d.ts +13 -0
- package/es/popconfirm/PurePanel.js +56 -0
- package/es/popconfirm/index.d.ts +28 -0
- package/es/popconfirm/index.js +128 -0
- package/es/popconfirm/style/css.js +6 -0
- package/es/popconfirm/style/index-pure.less +8 -0
- package/es/popconfirm/style/index.css +7 -0
- package/es/popconfirm/style/index.d.ts +4 -0
- package/es/popconfirm/style/index.js +6 -0
- package/es/popconfirm/style/index.less +3 -0
- package/es/popover/index.d.ts +9 -0
- package/es/popover/index.js +82 -0
- package/es/popover/style/css.js +3 -0
- package/es/popover/style/index-pure.less +261 -0
- package/es/popover/style/index.css +329 -0
- package/es/popover/style/index.d.ts +2 -0
- package/es/popover/style/index.js +3 -0
- package/es/popover/style/index.less +3 -0
- package/es/popover/style/rtl.less +39 -0
- package/es/progress/Circle.d.ts +10 -0
- package/es/progress/Circle.js +85 -0
- package/es/progress/Line.d.ts +38 -0
- package/es/progress/Line.js +136 -0
- package/es/progress/Steps.d.ts +10 -0
- package/es/progress/Steps.js +39 -0
- package/es/progress/index.d.ts +3 -0
- package/es/progress/index.js +2 -0
- package/es/progress/progress.d.ts +46 -0
- package/es/progress/progress.js +133 -0
- package/es/progress/style/css.js +2 -0
- package/es/progress/style/index-pure.less +210 -0
- package/es/progress/style/index.css +190 -0
- package/es/progress/style/index.d.ts +2 -0
- package/es/progress/style/index.js +2 -0
- package/es/progress/style/index.less +3 -0
- package/es/progress/style/rtl.less +37 -0
- package/es/progress/utils.d.ts +8 -0
- package/es/progress/utils.js +29 -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 +108 -0
- package/es/radio/index.d.ts +12 -0
- package/es/radio/index.js +9 -0
- package/es/radio/interface.d.ts +40 -0
- package/es/radio/interface.js +1 -0
- package/es/radio/radio.d.ts +4 -0
- package/es/radio/radio.js +99 -0
- package/es/radio/radioButton.d.ts +6 -0
- package/es/radio/radioButton.js +39 -0
- package/es/radio/style/css.js +2 -0
- package/es/radio/style/index-pure.less +371 -0
- package/es/radio/style/index.css +349 -0
- package/es/radio/style/index.d.ts +2 -0
- package/es/radio/style/index.js +2 -0
- package/es/radio/style/index.less +3 -0
- package/es/radio/style/rtl.less +61 -0
- package/es/rate/index.d.ts +7 -0
- package/es/rate/index.js +59 -0
- package/es/rate/style/css.js +4 -0
- package/es/rate/style/index-pure.less +91 -0
- package/es/rate/style/index.css +94 -0
- package/es/rate/style/index.d.ts +3 -0
- package/es/rate/style/index.js +4 -0
- package/es/rate/style/index.less +3 -0
- package/es/rate/style/rtl.less +21 -0
- package/es/result/index.d.ts +32 -0
- package/es/result/index.js +105 -0
- package/es/result/noFound.d.ts +2 -0
- package/es/result/noFound.js +239 -0
- package/es/result/serverError.d.ts +2 -0
- package/es/result/serverError.js +279 -0
- package/es/result/style/css.js +2 -0
- package/es/result/style/index-pure.less +75 -0
- package/es/result/style/index.css +68 -0
- package/es/result/style/index.d.ts +2 -0
- package/es/result/style/index.js +2 -0
- package/es/result/style/index.less +3 -0
- package/es/result/style/rtl.less +25 -0
- package/es/result/unauthorized.d.ts +2 -0
- package/es/result/unauthorized.js +229 -0
- package/es/row/index.d.ts +3 -0
- package/es/row/index.js +2 -0
- package/es/row/style/css.js +4 -0
- package/es/row/style/index.d.ts +2 -0
- package/es/row/style/index.js +4 -0
- package/es/segmented/index.d.ts +22 -0
- package/es/segmented/index.js +79 -0
- package/es/segmented/style/css.js +2 -0
- package/es/segmented/style/index-pure.less +122 -0
- package/es/segmented/style/index.css +132 -0
- package/es/segmented/style/index.d.ts +2 -0
- package/es/segmented/style/index.js +2 -0
- package/es/segmented/style/index.less +3 -0
- package/es/segmented/style/mixins.less +24 -0
- package/es/segmented/style/rtl.less +15 -0
- package/es/select/index.d.ts +44 -0
- package/es/select/index.js +166 -0
- package/es/select/style/css.js +4 -0
- package/es/select/style/index-pure.less +333 -0
- package/es/select/style/index.css +740 -0
- package/es/select/style/index.d.ts +3 -0
- package/es/select/style/index.js +4 -0
- package/es/select/style/index.less +3 -0
- package/es/select/style/multiple.less +222 -0
- package/es/select/style/rtl.less +168 -0
- package/es/select/style/single.less +172 -0
- package/es/select/style/status.less +49 -0
- package/es/select/utils/iconUtil.d.ts +24 -0
- package/es/select/utils/iconUtil.js +79 -0
- package/es/skeleton/Avatar.d.ts +7 -0
- package/es/skeleton/Avatar.js +33 -0
- package/es/skeleton/Button.d.ts +8 -0
- package/es/skeleton/Button.js +34 -0
- package/es/skeleton/Element.d.ts +11 -0
- package/es/skeleton/Element.js +29 -0
- package/es/skeleton/Image.d.ts +6 -0
- package/es/skeleton/Image.js +33 -0
- package/es/skeleton/Input.d.ts +8 -0
- package/es/skeleton/Input.js +33 -0
- package/es/skeleton/Node.d.ts +8 -0
- package/es/skeleton/Node.js +28 -0
- package/es/skeleton/Paragraph.d.ts +11 -0
- package/es/skeleton/Paragraph.js +47 -0
- package/es/skeleton/Skeleton.d.ts +32 -0
- package/es/skeleton/Skeleton.js +158 -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 +2 -0
- package/es/skeleton/style/css.js +2 -0
- package/es/skeleton/style/index-pure.less +290 -0
- package/es/skeleton/style/index.css +282 -0
- package/es/skeleton/style/index.d.ts +2 -0
- package/es/skeleton/style/index.js +2 -0
- package/es/skeleton/style/index.less +3 -0
- package/es/skeleton/style/rtl.less +48 -0
- package/es/slider/SliderTooltip.d.ts +4 -0
- package/es/slider/SliderTooltip.js +39 -0
- package/es/slider/index.d.ts +89 -0
- package/es/slider/index.js +154 -0
- package/es/slider/style/css.js +4 -0
- package/es/slider/style/index-pure.less +215 -0
- package/es/slider/style/index.css +202 -0
- package/es/slider/style/index.d.ts +3 -0
- package/es/slider/style/index.js +4 -0
- package/es/slider/style/index.less +3 -0
- package/es/slider/style/rtl.less +49 -0
- package/es/space/Compact.d.ts +24 -0
- package/es/space/Compact.js +98 -0
- package/es/space/Item.d.ts +11 -0
- package/es/space/Item.js +47 -0
- package/es/space/index.d.ts +25 -0
- package/es/space/index.js +138 -0
- package/es/space/style/compact.less +17 -0
- package/es/space/style/css.js +2 -0
- package/es/space/style/index-pure.less +40 -0
- package/es/space/style/index.css +41 -0
- package/es/space/style/index.d.ts +2 -0
- package/es/space/style/index.js +2 -0
- package/es/space/style/index.less +3 -0
- package/es/space/style/rtl.less +14 -0
- package/es/spin/index.d.ts +24 -0
- package/es/spin/index.js +160 -0
- package/es/spin/style/css.js +2 -0
- package/es/spin/style/index-pure.less +218 -0
- package/es/spin/style/index.css +198 -0
- package/es/spin/style/index.d.ts +2 -0
- package/es/spin/style/index.js +2 -0
- package/es/spin/style/index.less +3 -0
- package/es/spin/style/rtl.less +20 -0
- package/es/statistic/Countdown.d.ts +11 -0
- package/es/statistic/Countdown.js +74 -0
- package/es/statistic/Number.d.ts +7 -0
- package/es/statistic/Number.js +53 -0
- package/es/statistic/Statistic.d.ts +22 -0
- package/es/statistic/Statistic.js +60 -0
- package/es/statistic/index.d.ts +3 -0
- package/es/statistic/index.js +4 -0
- package/es/statistic/style/css.js +4 -0
- package/es/statistic/style/index-pure.less +44 -0
- package/es/statistic/style/index.css +53 -0
- package/es/statistic/style/index.d.ts +3 -0
- package/es/statistic/style/index.js +4 -0
- package/es/statistic/style/index.less +3 -0
- package/es/statistic/style/rtl.less +21 -0
- package/es/statistic/utils.d.ts +16 -0
- package/es/statistic/utils.js +43 -0
- package/es/steps/index.d.ts +38 -0
- package/es/steps/index.js +104 -0
- package/es/steps/style/css.js +5 -0
- package/es/steps/style/custom-icon.less +32 -0
- package/es/steps/style/index-pure.less +255 -0
- package/es/steps/style/index.css +754 -0
- package/es/steps/style/index.d.ts +3 -0
- package/es/steps/style/index.js +5 -0
- package/es/steps/style/index.less +3 -0
- package/es/steps/style/label-placement.less +45 -0
- package/es/steps/style/nav.less +134 -0
- package/es/steps/style/progress-dot.less +113 -0
- package/es/steps/style/progress.less +36 -0
- package/es/steps/style/rtl.less +271 -0
- package/es/steps/style/small.less +48 -0
- package/es/steps/style/vertical.less +73 -0
- package/es/steps/useLegacyItems.d.ts +3 -0
- package/es/steps/useLegacyItems.js +30 -0
- package/es/style/color/bezierEasing.less +110 -0
- package/es/style/color/colorPalette.less +85 -0
- package/es/style/color/colors.less +162 -0
- package/es/style/color/tinyColor.less +1184 -0
- package/es/style/compact.less +4 -0
- package/es/style/core/base.less +10 -0
- package/es/style/core/global.less +491 -0
- package/es/style/core/iconfont.less +22 -0
- package/es/style/core/index.less +5 -0
- package/es/style/core/motion/fade.less +34 -0
- package/es/style/core/motion/move.less +129 -0
- package/es/style/core/motion/other.less +51 -0
- package/es/style/core/motion/slide.less +129 -0
- package/es/style/core/motion/zoom.less +179 -0
- package/es/style/core/motion.less +22 -0
- package/es/style/dark.less +4 -0
- package/es/style/default.less +4 -0
- package/es/style/index.d.ts +2 -0
- package/es/style/index.js +2 -0
- package/es/style/index.less +2 -0
- package/es/style/mixins/box.less +7 -0
- package/es/style/mixins/clearfix.less +16 -0
- package/es/style/mixins/compact-item-vertical.less +41 -0
- package/es/style/mixins/compact-item.less +133 -0
- package/es/style/mixins/compatibility.less +13 -0
- package/es/style/mixins/customize.less +181 -0
- package/es/style/mixins/iconfont.less +28 -0
- package/es/style/mixins/index.less +16 -0
- package/es/style/mixins/modal-mask.less +30 -0
- package/es/style/mixins/motion.less +33 -0
- package/es/style/mixins/operation-unit.less +15 -0
- package/es/style/mixins/reset.less +11 -0
- package/es/style/mixins/rounded-arrow.less +44 -0
- package/es/style/mixins/size.less +10 -0
- package/es/style/mixins/typography.less +58 -0
- package/es/style/theme.less +34 -0
- package/es/style/themes/compact.less +295 -0
- package/es/style/themes/dark.less +457 -0
- package/es/style/themes/default.less +1084 -0
- package/es/style/themes/index.less +7 -0
- package/es/style/themes/variable.less +1139 -0
- package/es/style/variable.less +4 -0
- package/es/switch/index.d.ts +26 -0
- package/es/switch/index.js +70 -0
- package/es/switch/style/css.js +2 -0
- package/es/switch/style/index-pure.less +154 -0
- package/es/switch/style/index.css +153 -0
- package/es/switch/style/index.d.ts +2 -0
- package/es/switch/style/index.js +2 -0
- package/es/switch/style/index.less +3 -0
- package/es/switch/style/rtl.less +52 -0
- package/es/table/Column.d.ts +7 -0
- package/es/table/Column.js +9 -0
- package/es/table/ColumnGroup.d.ts +9 -0
- package/es/table/ColumnGroup.js +9 -0
- package/es/table/ExpandIcon.d.ts +11 -0
- package/es/table/ExpandIcon.js +28 -0
- package/es/table/Table.d.ts +48 -0
- package/es/table/Table.js +444 -0
- package/es/table/hooks/useFilter/FilterDropdown.d.ts +27 -0
- package/es/table/hooks/useFilter/FilterDropdown.js +497 -0
- package/es/table/hooks/useFilter/FilterSearch.d.ts +11 -0
- package/es/table/hooks/useFilter/FilterSearch.js +29 -0
- package/es/table/hooks/useFilter/FilterWrapper.d.ts +7 -0
- package/es/table/hooks/useFilter/FilterWrapper.js +22 -0
- package/es/table/hooks/useFilter/index.d.ts +23 -0
- package/es/table/hooks/useFilter/index.js +212 -0
- package/es/table/hooks/useLazyKVMap.d.ts +2 -0
- package/es/table/hooks/useLazyKVMap.js +37 -0
- package/es/table/hooks/usePagination.d.ts +4 -0
- package/es/table/hooks/usePagination.js +110 -0
- package/es/table/hooks/useSelection.d.ts +19 -0
- package/es/table/hooks/useSelection.js +616 -0
- package/es/table/hooks/useSorter.d.ts +24 -0
- package/es/table/hooks/useSorter.js +370 -0
- package/es/table/hooks/useTitleColumns.d.ts +2 -0
- package/es/table/hooks/useTitleColumns.js +24 -0
- package/es/table/index.d.ts +5 -0
- package/es/table/index.js +2 -0
- package/es/table/interface.d.ts +164 -0
- package/es/table/interface.js +2 -0
- package/es/table/style/bordered.less +136 -0
- package/es/table/style/css.js +15 -0
- package/es/table/style/index-pure.less +763 -0
- package/es/table/style/index.css +845 -0
- package/es/table/style/index.d.ts +12 -0
- package/es/table/style/index.js +15 -0
- package/es/table/style/index.less +3 -0
- package/es/table/style/radius.less +49 -0
- package/es/table/style/rtl.less +168 -0
- package/es/table/style/size.less +51 -0
- package/es/table/util.d.ts +14 -0
- package/es/table/util.js +35 -0
- package/es/tabs/TabPane.d.ts +5 -0
- package/es/tabs/TabPane.js +9 -0
- package/es/tabs/hooks/useAnimateConfig.d.ts +3 -0
- package/es/tabs/hooks/useAnimateConfig.js +39 -0
- package/es/tabs/hooks/useLegacyItems.d.ts +4 -0
- package/es/tabs/hooks/useLegacyItems.js +53 -0
- package/es/tabs/index.d.ts +21 -0
- package/es/tabs/index.js +92 -0
- package/es/tabs/style/card.less +98 -0
- package/es/tabs/style/css.js +2 -0
- package/es/tabs/style/dropdown.less +82 -0
- package/es/tabs/style/index-pure.less +253 -0
- package/es/tabs/style/index.css +630 -0
- package/es/tabs/style/index.d.ts +2 -0
- package/es/tabs/style/index.js +2 -0
- package/es/tabs/style/index.less +3 -0
- package/es/tabs/style/position.less +198 -0
- package/es/tabs/style/rtl.less +86 -0
- package/es/tabs/style/size.less +42 -0
- package/es/tag/CheckableTag.d.ts +17 -0
- package/es/tag/CheckableTag.js +47 -0
- package/es/tag/index.d.ts +22 -0
- package/es/tag/index.js +127 -0
- package/es/tag/style/css.js +2 -0
- package/es/tag/style/index-pure.less +129 -0
- package/es/tag/style/index.css +247 -0
- package/es/tag/style/index.d.ts +2 -0
- package/es/tag/style/index.js +2 -0
- package/es/tag/style/index.less +3 -0
- package/es/tag/style/rtl.less +28 -0
- package/es/time-picker/index.d.ts +33 -0
- package/es/time-picker/index.js +65 -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 +4 -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 +4 -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/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 +4 -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 +4 -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/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 +4 -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/vi_VN.d.ts +3 -0
- package/es/time-picker/locale/vi_VN.js +4 -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/time-picker/style/css.js +4 -0
- package/es/time-picker/style/index-pure.less +3 -0
- package/es/time-picker/style/index.css +4 -0
- package/es/time-picker/style/index.d.ts +3 -0
- package/es/time-picker/style/index.js +4 -0
- package/es/time-picker/style/index.less +3 -0
- package/es/timeline/Timeline.d.ts +18 -0
- package/es/timeline/Timeline.js +94 -0
- package/es/timeline/TimelineItem.d.ts +17 -0
- package/es/timeline/TimelineItem.js +60 -0
- package/es/timeline/index.d.ts +4 -0
- package/es/timeline/index.js +2 -0
- package/es/timeline/style/css.js +2 -0
- package/es/timeline/style/index-pure.less +185 -0
- package/es/timeline/style/index.css +236 -0
- package/es/timeline/style/index.d.ts +2 -0
- package/es/timeline/style/index.js +2 -0
- package/es/timeline/style/index.less +3 -0
- package/es/timeline/style/rtl.less +135 -0
- package/es/tooltip/index.d.ts +70 -0
- package/es/tooltip/index.js +259 -0
- package/es/tooltip/style/css.js +2 -0
- package/es/tooltip/style/index-pure.less +224 -0
- package/es/tooltip/style/index.css +274 -0
- package/es/tooltip/style/index.d.ts +2 -0
- package/es/tooltip/style/index.js +2 -0
- package/es/tooltip/style/index.less +3 -0
- package/es/tooltip/style/rtl.less +14 -0
- package/es/transfer/ListBody.d.ts +29 -0
- package/es/transfer/ListBody.js +167 -0
- package/es/transfer/ListItem.d.ts +15 -0
- package/es/transfer/ListItem.js +65 -0
- package/es/transfer/index.d.ts +140 -0
- package/es/transfer/index.js +449 -0
- package/es/transfer/interface.d.ts +6 -0
- package/es/transfer/interface.js +1 -0
- package/es/transfer/list.d.ts +75 -0
- package/es/transfer/list.js +406 -0
- package/es/transfer/operation.d.ts +17 -0
- package/es/transfer/operation.js +38 -0
- package/es/transfer/search.d.ts +10 -0
- package/es/transfer/search.js +28 -0
- package/es/transfer/style/css.js +9 -0
- package/es/transfer/style/customize.less +52 -0
- package/es/transfer/style/index-pure.less +222 -0
- package/es/transfer/style/index.css +281 -0
- package/es/transfer/style/index.d.ts +8 -0
- package/es/transfer/style/index.js +9 -0
- package/es/transfer/style/index.less +3 -0
- package/es/transfer/style/rtl.less +71 -0
- package/es/transfer/style/status.less +31 -0
- package/es/tree/DirectoryTree.d.ts +20 -0
- package/es/tree/DirectoryTree.js +195 -0
- package/es/tree/Tree.d.ts +133 -0
- package/es/tree/Tree.js +95 -0
- package/es/tree/index.d.ts +19 -0
- package/es/tree/index.js +7 -0
- package/es/tree/style/css.js +2 -0
- package/es/tree/style/directory.less +72 -0
- package/es/tree/style/index-pure.less +16 -0
- package/es/tree/style/index.css +532 -0
- package/es/tree/style/index.d.ts +2 -0
- package/es/tree/style/index.js +2 -0
- package/es/tree/style/index.less +3 -0
- package/es/tree/style/mixin.less +337 -0
- package/es/tree/style/rtl.less +72 -0
- package/es/tree/utils/dictUtil.d.ts +9 -0
- package/es/tree/utils/dictUtil.js +84 -0
- package/es/tree/utils/dropIndicator.d.ts +9 -0
- package/es/tree/utils/dropIndicator.js +37 -0
- package/es/tree/utils/iconUtil.d.ts +5 -0
- package/es/tree/utils/iconUtil.js +76 -0
- package/es/tree-select/index.d.ts +48 -0
- package/es/tree-select/index.js +175 -0
- package/es/tree-select/style/css.js +6 -0
- package/es/tree-select/style/index-pure.less +57 -0
- package/es/tree-select/style/index.css +481 -0
- package/es/tree-select/style/index.d.ts +4 -0
- package/es/tree-select/style/index.js +6 -0
- package/es/tree-select/style/index.less +3 -0
- package/es/typography/Base/Ellipsis.d.ts +15 -0
- package/es/typography/Base/Ellipsis.js +198 -0
- package/es/typography/Base/EllipsisTooltip.d.ts +13 -0
- package/es/typography/Base/EllipsisTooltip.js +24 -0
- package/es/typography/Base/index.d.ts +52 -0
- package/es/typography/Base/index.js +528 -0
- package/es/typography/Editable.d.ts +20 -0
- package/es/typography/Editable.js +115 -0
- package/es/typography/Link.d.ts +7 -0
- package/es/typography/Link.js +39 -0
- package/es/typography/Paragraph.d.ts +6 -0
- package/es/typography/Paragraph.js +11 -0
- package/es/typography/Text.d.ts +7 -0
- package/es/typography/Text.js +42 -0
- package/es/typography/Title.d.ts +8 -0
- package/es/typography/Title.js +41 -0
- package/es/typography/Typography.d.ts +17 -0
- package/es/typography/Typography.js +61 -0
- package/es/typography/hooks/useMergedConfig.d.ts +1 -0
- package/es/typography/hooks/useMergedConfig.js +9 -0
- package/es/typography/hooks/useUpdatedEffect.d.ts +4 -0
- package/es/typography/hooks/useUpdatedEffect.js +15 -0
- package/es/typography/index.d.ts +13 -0
- package/es/typography/index.js +11 -0
- package/es/typography/style/css.js +5 -0
- package/es/typography/style/index-pure.less +314 -0
- package/es/typography/style/index.css +369 -0
- package/es/typography/style/index.d.ts +4 -0
- package/es/typography/style/index.js +5 -0
- package/es/typography/style/index.less +3 -0
- package/es/typography/style/rtl.less +54 -0
- package/es/upload/Dragger.d.ts +9 -0
- package/es/upload/Dragger.js +37 -0
- package/es/upload/Upload.d.ts +6 -0
- package/es/upload/Upload.js +498 -0
- package/es/upload/UploadList/ListItem.d.ts +27 -0
- package/es/upload/UploadList/ListItem.js +211 -0
- package/es/upload/UploadList/index.d.ts +4 -0
- package/es/upload/UploadList/index.js +254 -0
- package/es/upload/index.d.ts +14 -0
- package/es/upload/index.js +6 -0
- package/es/upload/interface.d.ts +134 -0
- package/es/upload/interface.js +1 -0
- package/es/upload/style/css.js +7 -0
- package/es/upload/style/index-pure.less +565 -0
- package/es/upload/style/index.css +588 -0
- package/es/upload/style/index.d.ts +5 -0
- package/es/upload/style/index.js +7 -0
- package/es/upload/style/index.less +3 -0
- package/es/upload/style/rtl.less +165 -0
- package/es/upload/utils.d.ts +8 -0
- package/es/upload/utils.js +138 -0
- package/es/version/index.d.ts +2 -0
- package/es/version/index.js +4 -0
- package/es/version/style/css.js +2 -0
- package/es/version/style/index.d.ts +1 -0
- package/es/version/style/index.js +2 -0
- package/es/version/token.d.ts +319 -0
- package/es/version/token.js +318 -0
- package/es/version/version.d.ts +2 -0
- package/es/version/version.js +1 -0
- package/lib/_util/ActionButton.d.ts +15 -0
- package/lib/_util/ActionButton.js +135 -0
- package/lib/_util/colors.d.ts +5 -0
- package/lib/_util/colors.js +14 -0
- package/lib/_util/easings.d.ts +1 -0
- package/lib/_util/easings.js +18 -0
- package/lib/_util/getDataOrAriaProps.d.ts +1 -0
- package/lib/_util/getDataOrAriaProps.js +16 -0
- package/lib/_util/getRenderPropValue.d.ts +3 -0
- package/lib/_util/getRenderPropValue.js +20 -0
- package/lib/_util/getScroll.d.ts +2 -0
- package/lib/_util/getScroll.js +43 -0
- package/lib/_util/hooks/useFlexGapSupport.d.ts +2 -0
- package/lib/_util/hooks/useFlexGapSupport.js +30 -0
- package/lib/_util/hooks/useForceUpdate.d.ts +2 -0
- package/lib/_util/hooks/useForceUpdate.js +24 -0
- package/lib/_util/hooks/usePatchElement.d.ts +5 -0
- package/lib/_util/hooks/usePatchElement.js +40 -0
- package/lib/_util/hooks/useSyncState.d.ts +3 -0
- package/lib/_util/hooks/useSyncState.js +26 -0
- package/lib/_util/isNumeric.d.ts +2 -0
- package/lib/_util/isNumeric.js +13 -0
- package/lib/_util/motion.d.ts +8 -0
- package/lib/_util/motion.js +71 -0
- package/lib/_util/placements.d.ts +17 -0
- package/lib/_util/placements.js +102 -0
- package/lib/_util/raf.d.ts +9 -0
- package/lib/_util/raf.js +43 -0
- package/lib/_util/reactNode.d.ts +8 -0
- package/lib/_util/reactNode.js +32 -0
- package/lib/_util/responsiveObserve.d.ts +21 -0
- package/lib/_util/responsiveObserve.js +81 -0
- package/lib/_util/scrollTo.d.ts +10 -0
- package/lib/_util/scrollTo.js +52 -0
- package/lib/_util/statusUtils.d.ts +6 -0
- package/lib/_util/statusUtils.js +29 -0
- package/lib/_util/styleChecker.d.ts +4 -0
- package/lib/_util/styleChecker.js +52 -0
- package/lib/_util/throttleByAnimationFrame.d.ts +8 -0
- package/lib/_util/throttleByAnimationFrame.js +72 -0
- package/lib/_util/transButton.d.ts +9 -0
- package/lib/_util/transButton.js +89 -0
- package/lib/_util/type.d.ts +9 -0
- package/lib/_util/type.js +26 -0
- package/lib/_util/warning.d.ts +6 -0
- package/lib/_util/warning.js +35 -0
- package/lib/_util/wave.d.ts +32 -0
- package/lib/_util/wave.js +270 -0
- package/lib/affix/index.d.ts +54 -0
- package/lib/affix/index.js +350 -0
- package/lib/affix/style/css.js +5 -0
- package/lib/affix/style/index-pure.less +6 -0
- package/lib/affix/style/index.css +8 -0
- package/lib/affix/style/index.d.ts +2 -0
- package/lib/affix/style/index.js +5 -0
- package/lib/affix/style/index.less +3 -0
- package/lib/affix/utils.d.ts +15 -0
- package/lib/affix/utils.js +107 -0
- package/lib/alert/ErrorBoundary.d.ts +23 -0
- package/lib/alert/ErrorBoundary.js +80 -0
- package/lib/alert/index.d.ts +38 -0
- package/lib/alert/index.js +222 -0
- package/lib/alert/style/css.js +5 -0
- package/lib/alert/style/index-pure.less +155 -0
- package/lib/alert/style/index.css +156 -0
- package/lib/alert/style/index.d.ts +2 -0
- package/lib/alert/style/index.js +5 -0
- package/lib/alert/style/index.less +3 -0
- package/lib/alert/style/rtl.less +40 -0
- package/lib/anchor/Anchor.d.ts +44 -0
- package/lib/anchor/Anchor.js +285 -0
- package/lib/anchor/AnchorLink.d.ts +11 -0
- package/lib/anchor/AnchorLink.js +73 -0
- package/lib/anchor/context.d.ts +4 -0
- package/lib/anchor/context.js +14 -0
- package/lib/anchor/index.d.ts +10 -0
- package/lib/anchor/index.js +17 -0
- package/lib/anchor/style/css.js +7 -0
- package/lib/anchor/style/index-pure.less +86 -0
- package/lib/anchor/style/index.css +100 -0
- package/lib/anchor/style/index.d.ts +3 -0
- package/lib/anchor/style/index.js +7 -0
- package/lib/anchor/style/index.less +3 -0
- package/lib/anchor/style/rtl.less +35 -0
- package/lib/auto-complete/index.d.ts +35 -0
- package/lib/auto-complete/index.js +125 -0
- package/lib/auto-complete/style/css.js +7 -0
- package/lib/auto-complete/style/index-pure.less +16 -0
- package/lib/auto-complete/style/index.css +18 -0
- package/lib/auto-complete/style/index.d.ts +3 -0
- package/lib/auto-complete/style/index.js +7 -0
- package/lib/auto-complete/style/index.less +3 -0
- package/lib/avatar/SizeContext.d.ts +10 -0
- package/lib/avatar/SizeContext.js +26 -0
- package/lib/avatar/avatar.d.ts +25 -0
- package/lib/avatar/avatar.js +225 -0
- package/lib/avatar/group.d.ts +15 -0
- package/lib/avatar/group.js +84 -0
- package/lib/avatar/index.d.ts +11 -0
- package/lib/avatar/index.js +23 -0
- package/lib/avatar/style/css.js +7 -0
- package/lib/avatar/style/group.less +17 -0
- package/lib/avatar/style/index-pure.less +70 -0
- package/lib/avatar/style/index.css +108 -0
- package/lib/avatar/style/index.d.ts +3 -0
- package/lib/avatar/style/index.js +7 -0
- package/lib/avatar/style/index.less +3 -0
- package/lib/avatar/style/rtl.less +15 -0
- package/lib/back-top/index.d.ts +14 -0
- package/lib/back-top/index.js +151 -0
- package/lib/back-top/style/css.js +5 -0
- package/lib/back-top/style/index-pure.less +49 -0
- package/lib/back-top/style/index.css +66 -0
- package/lib/back-top/style/index.d.ts +2 -0
- package/lib/back-top/style/index.js +5 -0
- package/lib/back-top/style/index.less +3 -0
- package/lib/back-top/style/responsive.less +21 -0
- package/lib/badge/Ribbon.d.ts +15 -0
- package/lib/badge/Ribbon.js +65 -0
- package/lib/badge/ScrollNumber.d.ts +18 -0
- package/lib/badge/ScrollNumber.js +98 -0
- package/lib/badge/SingleNumber.d.ts +13 -0
- package/lib/badge/SingleNumber.js +137 -0
- package/lib/badge/index.d.ts +30 -0
- package/lib/badge/index.js +205 -0
- package/lib/badge/style/css.js +5 -0
- package/lib/badge/style/index-pure.less +281 -0
- package/lib/badge/style/index.css +460 -0
- package/lib/badge/style/index.d.ts +2 -0
- package/lib/badge/style/index.js +5 -0
- package/lib/badge/style/index.less +3 -0
- package/lib/badge/style/ribbon.less +81 -0
- package/lib/badge/style/rtl.less +100 -0
- package/lib/badge/utils.d.ts +1 -0
- package/lib/badge/utils.js +13 -0
- package/lib/breadcrumb/Breadcrumb.d.ts +24 -0
- package/lib/breadcrumb/Breadcrumb.js +169 -0
- package/lib/breadcrumb/BreadcrumbItem.d.ts +19 -0
- package/lib/breadcrumb/BreadcrumbItem.js +98 -0
- package/lib/breadcrumb/BreadcrumbSeparator.d.ts +7 -0
- package/lib/breadcrumb/BreadcrumbSeparator.js +28 -0
- package/lib/breadcrumb/index.d.ts +4 -0
- package/lib/breadcrumb/index.js +13 -0
- package/lib/breadcrumb/style/css.js +9 -0
- package/lib/breadcrumb/style/index-pure.less +64 -0
- package/lib/breadcrumb/style/index.css +77 -0
- package/lib/breadcrumb/style/index.d.ts +4 -0
- package/lib/breadcrumb/style/index.js +9 -0
- package/lib/breadcrumb/style/index.less +3 -0
- package/lib/breadcrumb/style/rtl.less +29 -0
- package/lib/button/LoadingIcon.d.ts +8 -0
- package/lib/button/LoadingIcon.js +69 -0
- package/lib/button/button-group.d.ts +12 -0
- package/lib/button/button-group.js +83 -0
- package/lib/button/button.d.ts +47 -0
- package/lib/button/button.js +302 -0
- package/lib/button/index.d.ts +5 -0
- package/lib/button/index.js +13 -0
- package/lib/button/style/css.js +5 -0
- package/lib/button/style/index-pure.less +293 -0
- package/lib/button/style/index.css +1987 -0
- package/lib/button/style/index.d.ts +2 -0
- package/lib/button/style/index.js +5 -0
- package/lib/button/style/index.less +3 -0
- package/lib/button/style/mixin.less +589 -0
- package/lib/button/style/rtl.less +90 -0
- package/lib/button/style/space-compact.less +88 -0
- package/lib/calendar/Header.d.ts +17 -0
- package/lib/calendar/Header.js +191 -0
- package/lib/calendar/generateCalendar.d.ts +41 -0
- package/lib/calendar/generateCalendar.js +214 -0
- package/lib/calendar/index.d.ts +5 -0
- package/lib/calendar/index.js +16 -0
- package/lib/calendar/locale/ar_EG.d.ts +2 -0
- package/lib/calendar/locale/ar_EG.js +13 -0
- package/lib/calendar/locale/az_AZ.d.ts +2 -0
- package/lib/calendar/locale/az_AZ.js +13 -0
- package/lib/calendar/locale/bg_BG.d.ts +2 -0
- package/lib/calendar/locale/bg_BG.js +13 -0
- package/lib/calendar/locale/bn_BD.d.ts +2 -0
- package/lib/calendar/locale/bn_BD.js +13 -0
- package/lib/calendar/locale/by_BY.d.ts +2 -0
- package/lib/calendar/locale/by_BY.js +13 -0
- package/lib/calendar/locale/ca_ES.d.ts +2 -0
- package/lib/calendar/locale/ca_ES.js +13 -0
- package/lib/calendar/locale/cs_CZ.d.ts +2 -0
- package/lib/calendar/locale/cs_CZ.js +13 -0
- package/lib/calendar/locale/da_DK.d.ts +2 -0
- package/lib/calendar/locale/da_DK.js +13 -0
- package/lib/calendar/locale/de_DE.d.ts +2 -0
- package/lib/calendar/locale/de_DE.js +13 -0
- package/lib/calendar/locale/el_GR.d.ts +2 -0
- package/lib/calendar/locale/el_GR.js +13 -0
- package/lib/calendar/locale/en_GB.d.ts +2 -0
- package/lib/calendar/locale/en_GB.js +13 -0
- package/lib/calendar/locale/en_US.d.ts +2 -0
- package/lib/calendar/locale/en_US.js +13 -0
- package/lib/calendar/locale/es_ES.d.ts +2 -0
- package/lib/calendar/locale/es_ES.js +13 -0
- package/lib/calendar/locale/et_EE.d.ts +2 -0
- package/lib/calendar/locale/et_EE.js +13 -0
- package/lib/calendar/locale/fa_IR.d.ts +2 -0
- package/lib/calendar/locale/fa_IR.js +13 -0
- package/lib/calendar/locale/fi_FI.d.ts +2 -0
- package/lib/calendar/locale/fi_FI.js +13 -0
- package/lib/calendar/locale/fr_BE.d.ts +2 -0
- package/lib/calendar/locale/fr_BE.js +13 -0
- package/lib/calendar/locale/fr_CA.d.ts +2 -0
- package/lib/calendar/locale/fr_CA.js +13 -0
- package/lib/calendar/locale/fr_FR.d.ts +2 -0
- package/lib/calendar/locale/fr_FR.js +13 -0
- package/lib/calendar/locale/ga_IE.d.ts +2 -0
- package/lib/calendar/locale/ga_IE.js +13 -0
- package/lib/calendar/locale/gl_ES.d.ts +2 -0
- package/lib/calendar/locale/gl_ES.js +13 -0
- package/lib/calendar/locale/he_IL.d.ts +2 -0
- package/lib/calendar/locale/he_IL.js +13 -0
- package/lib/calendar/locale/hi_IN.d.ts +2 -0
- package/lib/calendar/locale/hi_IN.js +13 -0
- package/lib/calendar/locale/hr_HR.d.ts +2 -0
- package/lib/calendar/locale/hr_HR.js +13 -0
- package/lib/calendar/locale/hu_HU.d.ts +2 -0
- package/lib/calendar/locale/hu_HU.js +13 -0
- package/lib/calendar/locale/id_ID.d.ts +2 -0
- package/lib/calendar/locale/id_ID.js +13 -0
- package/lib/calendar/locale/is_IS.d.ts +2 -0
- package/lib/calendar/locale/is_IS.js +13 -0
- package/lib/calendar/locale/it_IT.d.ts +2 -0
- package/lib/calendar/locale/it_IT.js +13 -0
- package/lib/calendar/locale/ja_JP.d.ts +2 -0
- package/lib/calendar/locale/ja_JP.js +13 -0
- package/lib/calendar/locale/ka_GE.d.ts +2 -0
- package/lib/calendar/locale/ka_GE.js +13 -0
- package/lib/calendar/locale/kk_KZ.d.ts +2 -0
- package/lib/calendar/locale/kk_KZ.js +13 -0
- package/lib/calendar/locale/km_KH.d.ts +2 -0
- package/lib/calendar/locale/km_KH.js +13 -0
- package/lib/calendar/locale/kmr_IQ.d.ts +2 -0
- package/lib/calendar/locale/kmr_IQ.js +13 -0
- package/lib/calendar/locale/kn_IN.d.ts +2 -0
- package/lib/calendar/locale/kn_IN.js +13 -0
- package/lib/calendar/locale/ko_KR.d.ts +2 -0
- package/lib/calendar/locale/ko_KR.js +13 -0
- package/lib/calendar/locale/lt_LT.d.ts +2 -0
- package/lib/calendar/locale/lt_LT.js +13 -0
- package/lib/calendar/locale/lv_LV.d.ts +2 -0
- package/lib/calendar/locale/lv_LV.js +13 -0
- package/lib/calendar/locale/mk_MK.d.ts +2 -0
- package/lib/calendar/locale/mk_MK.js +13 -0
- package/lib/calendar/locale/ml_IN.d.ts +2 -0
- package/lib/calendar/locale/ml_IN.js +13 -0
- package/lib/calendar/locale/mn_MN.d.ts +2 -0
- package/lib/calendar/locale/mn_MN.js +13 -0
- package/lib/calendar/locale/ms_MY.d.ts +2 -0
- package/lib/calendar/locale/ms_MY.js +13 -0
- package/lib/calendar/locale/nb_NO.d.ts +2 -0
- package/lib/calendar/locale/nb_NO.js +13 -0
- package/lib/calendar/locale/nl_BE.d.ts +2 -0
- package/lib/calendar/locale/nl_BE.js +13 -0
- package/lib/calendar/locale/nl_NL.d.ts +2 -0
- package/lib/calendar/locale/nl_NL.js +13 -0
- package/lib/calendar/locale/pl_PL.d.ts +2 -0
- package/lib/calendar/locale/pl_PL.js +13 -0
- package/lib/calendar/locale/pt_BR.d.ts +2 -0
- package/lib/calendar/locale/pt_BR.js +13 -0
- package/lib/calendar/locale/pt_PT.d.ts +2 -0
- package/lib/calendar/locale/pt_PT.js +13 -0
- package/lib/calendar/locale/ro_RO.d.ts +2 -0
- package/lib/calendar/locale/ro_RO.js +13 -0
- package/lib/calendar/locale/ru_RU.d.ts +2 -0
- package/lib/calendar/locale/ru_RU.js +13 -0
- package/lib/calendar/locale/si_LK.d.ts +2 -0
- package/lib/calendar/locale/si_LK.js +13 -0
- package/lib/calendar/locale/sk_SK.d.ts +2 -0
- package/lib/calendar/locale/sk_SK.js +13 -0
- package/lib/calendar/locale/sl_SI.d.ts +2 -0
- package/lib/calendar/locale/sl_SI.js +13 -0
- package/lib/calendar/locale/sr_RS.d.ts +2 -0
- package/lib/calendar/locale/sr_RS.js +13 -0
- package/lib/calendar/locale/sv_SE.d.ts +2 -0
- package/lib/calendar/locale/sv_SE.js +13 -0
- package/lib/calendar/locale/ta_IN.d.ts +2 -0
- package/lib/calendar/locale/ta_IN.js +13 -0
- package/lib/calendar/locale/th_TH.d.ts +2 -0
- package/lib/calendar/locale/th_TH.js +13 -0
- package/lib/calendar/locale/tk_TK.d.ts +2 -0
- package/lib/calendar/locale/tk_TK.js +13 -0
- package/lib/calendar/locale/tr_TR.d.ts +2 -0
- package/lib/calendar/locale/tr_TR.js +13 -0
- package/lib/calendar/locale/uk_UA.d.ts +2 -0
- package/lib/calendar/locale/uk_UA.js +13 -0
- package/lib/calendar/locale/ur_PK.d.ts +2 -0
- package/lib/calendar/locale/ur_PK.js +13 -0
- package/lib/calendar/locale/vi_VN.d.ts +2 -0
- package/lib/calendar/locale/vi_VN.js +13 -0
- package/lib/calendar/locale/zh_CN.d.ts +2 -0
- package/lib/calendar/locale/zh_CN.js +13 -0
- package/lib/calendar/locale/zh_TW.d.ts +2 -0
- package/lib/calendar/locale/zh_TW.js +13 -0
- package/lib/calendar/style/css.js +11 -0
- package/lib/calendar/style/index-pure.less +196 -0
- package/lib/calendar/style/index.css +175 -0
- package/lib/calendar/style/index.d.ts +5 -0
- package/lib/calendar/style/index.js +11 -0
- package/lib/calendar/style/index.less +3 -0
- package/lib/calendar/style/rtl.less +46 -0
- package/lib/card/Card.d.ts +35 -0
- package/lib/card/Card.js +172 -0
- package/lib/card/Grid.d.ts +9 -0
- package/lib/card/Grid.js +53 -0
- package/lib/card/Meta.d.ts +11 -0
- package/lib/card/Meta.js +65 -0
- package/lib/card/index.d.ts +13 -0
- package/lib/card/index.js +20 -0
- package/lib/card/style/css.js +9 -0
- package/lib/card/style/index-pure.less +276 -0
- package/lib/card/style/index.css +275 -0
- package/lib/card/style/index.d.ts +4 -0
- package/lib/card/style/index.js +9 -0
- package/lib/card/style/index.less +3 -0
- package/lib/card/style/size.less +20 -0
- package/lib/carousel/index.d.ts +24 -0
- package/lib/carousel/index.js +104 -0
- package/lib/carousel/style/css.js +5 -0
- package/lib/carousel/style/index-pure.less +304 -0
- package/lib/carousel/style/index.css +286 -0
- package/lib/carousel/style/index.d.ts +2 -0
- package/lib/carousel/style/index.js +5 -0
- package/lib/carousel/style/index.less +3 -0
- package/lib/carousel/style/rtl.less +54 -0
- package/lib/cascader/index.d.ts +43 -0
- package/lib/cascader/index.js +276 -0
- package/lib/cascader/style/css.js +9 -0
- package/lib/cascader/style/index-pure.less +108 -0
- package/lib/cascader/style/index.css +332 -0
- package/lib/cascader/style/index.d.ts +4 -0
- package/lib/cascader/style/index.js +9 -0
- package/lib/cascader/style/index.less +3 -0
- package/lib/cascader/style/rtl.less +19 -0
- package/lib/checkbox/Checkbox.d.ts +37 -0
- package/lib/checkbox/Checkbox.js +144 -0
- package/lib/checkbox/Group.d.ts +35 -0
- package/lib/checkbox/Group.js +176 -0
- package/lib/checkbox/index.d.ts +10 -0
- package/lib/checkbox/index.js +18 -0
- package/lib/checkbox/style/css.js +5 -0
- package/lib/checkbox/style/index-pure.less +6 -0
- package/lib/checkbox/style/index.css +225 -0
- package/lib/checkbox/style/index.d.ts +2 -0
- package/lib/checkbox/style/index.js +5 -0
- package/lib/checkbox/style/index.less +3 -0
- package/lib/checkbox/style/mixin.less +241 -0
- package/lib/checkbox/style/rtl.less +28 -0
- package/lib/col/index.d.ts +3 -0
- package/lib/col/index.js +11 -0
- package/lib/col/style/css.js +5 -0
- package/lib/col/style/index.d.ts +2 -0
- package/lib/col/style/index.js +5 -0
- package/lib/collapse/Collapse.d.ts +40 -0
- package/lib/collapse/Collapse.js +116 -0
- package/lib/collapse/CollapsePanel.d.ts +19 -0
- package/lib/collapse/CollapsePanel.js +46 -0
- package/lib/collapse/index.d.ts +4 -0
- package/lib/collapse/index.js +13 -0
- package/lib/collapse/style/css.js +5 -0
- package/lib/collapse/style/index-pure.less +174 -0
- package/lib/collapse/style/index.css +174 -0
- package/lib/collapse/style/index.d.ts +2 -0
- package/lib/collapse/style/index.js +5 -0
- package/lib/collapse/style/index.less +3 -0
- package/lib/collapse/style/rtl.less +68 -0
- package/lib/comment/index.d.ts +23 -0
- package/lib/comment/index.js +92 -0
- package/lib/comment/style/css.js +5 -0
- package/lib/comment/style/index-pure.less +105 -0
- package/lib/comment/style/index.css +112 -0
- package/lib/comment/style/index.d.ts +2 -0
- package/lib/comment/style/index.js +5 -0
- package/lib/comment/style/index.less +3 -0
- package/lib/comment/style/rtl.less +51 -0
- package/lib/config-provider/index.js +12 -41
- package/lib/date-picker/PickerButton.d.ts +3 -0
- package/lib/date-picker/PickerButton.js +23 -0
- package/lib/date-picker/PickerTag.d.ts +3 -0
- package/lib/date-picker/PickerTag.js +22 -0
- package/lib/date-picker/generatePicker/generateRangePicker.d.ts +11 -0
- package/lib/date-picker/generatePicker/generateRangePicker.js +179 -0
- package/lib/date-picker/generatePicker/generateSinglePicker.d.ts +71 -0
- package/lib/date-picker/generatePicker/generateSinglePicker.js +204 -0
- package/lib/date-picker/generatePicker/index.d.ts +143 -0
- package/lib/date-picker/generatePicker/index.js +104 -0
- package/lib/date-picker/generatePicker/interface.d.ts +12 -0
- package/lib/date-picker/generatePicker/interface.js +5 -0
- package/lib/date-picker/index.d.ts +54 -0
- package/lib/date-picker/index.js +16 -0
- package/lib/date-picker/locale/ar_EG.d.ts +3 -0
- package/lib/date-picker/locale/ar_EG.js +31 -0
- package/lib/date-picker/locale/az_AZ.d.ts +3 -0
- package/lib/date-picker/locale/az_AZ.js +24 -0
- package/lib/date-picker/locale/bg_BG.d.ts +3 -0
- package/lib/date-picker/locale/bg_BG.js +27 -0
- package/lib/date-picker/locale/bn_BD.d.ts +3 -0
- package/lib/date-picker/locale/bn_BD.js +34 -0
- package/lib/date-picker/locale/by_BY.d.ts +3 -0
- package/lib/date-picker/locale/by_BY.js +32 -0
- package/lib/date-picker/locale/ca_ES.d.ts +3 -0
- package/lib/date-picker/locale/ca_ES.js +27 -0
- package/lib/date-picker/locale/cs_CZ.d.ts +3 -0
- package/lib/date-picker/locale/cs_CZ.js +27 -0
- package/lib/date-picker/locale/da_DK.d.ts +3 -0
- package/lib/date-picker/locale/da_DK.js +27 -0
- package/lib/date-picker/locale/de_DE.d.ts +3 -0
- package/lib/date-picker/locale/de_DE.js +27 -0
- package/lib/date-picker/locale/el_GR.d.ts +3 -0
- package/lib/date-picker/locale/el_GR.js +27 -0
- package/lib/date-picker/locale/en_GB.d.ts +3 -0
- package/lib/date-picker/locale/en_GB.js +35 -0
- package/lib/date-picker/locale/en_US.d.ts +3 -0
- package/lib/date-picker/locale/en_US.js +35 -0
- package/lib/date-picker/locale/es_ES.d.ts +3 -0
- package/lib/date-picker/locale/es_ES.js +27 -0
- package/lib/date-picker/locale/et_EE.d.ts +3 -0
- package/lib/date-picker/locale/et_EE.js +27 -0
- package/lib/date-picker/locale/fa_IR.d.ts +3 -0
- package/lib/date-picker/locale/fa_IR.js +34 -0
- package/lib/date-picker/locale/fi_FI.d.ts +3 -0
- package/lib/date-picker/locale/fi_FI.js +27 -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 +34 -0
- package/lib/date-picker/locale/fr_FR.d.ts +3 -0
- package/lib/date-picker/locale/fr_FR.js +34 -0
- package/lib/date-picker/locale/ga_IE.d.ts +3 -0
- package/lib/date-picker/locale/ga_IE.js +34 -0
- package/lib/date-picker/locale/gl_ES.d.ts +3 -0
- package/lib/date-picker/locale/gl_ES.js +27 -0
- package/lib/date-picker/locale/he_IL.d.ts +3 -0
- package/lib/date-picker/locale/he_IL.js +27 -0
- package/lib/date-picker/locale/hi_IN.d.ts +3 -0
- package/lib/date-picker/locale/hi_IN.js +34 -0
- package/lib/date-picker/locale/hr_HR.d.ts +3 -0
- package/lib/date-picker/locale/hr_HR.js +34 -0
- package/lib/date-picker/locale/hu_HU.d.ts +3 -0
- package/lib/date-picker/locale/hu_HU.js +27 -0
- package/lib/date-picker/locale/id_ID.d.ts +3 -0
- package/lib/date-picker/locale/id_ID.js +27 -0
- package/lib/date-picker/locale/is_IS.d.ts +3 -0
- package/lib/date-picker/locale/is_IS.js +27 -0
- package/lib/date-picker/locale/it_IT.d.ts +3 -0
- package/lib/date-picker/locale/it_IT.js +27 -0
- package/lib/date-picker/locale/ja_JP.d.ts +3 -0
- package/lib/date-picker/locale/ja_JP.js +27 -0
- package/lib/date-picker/locale/ka_GE.d.ts +3 -0
- package/lib/date-picker/locale/ka_GE.js +31 -0
- package/lib/date-picker/locale/kk_KZ.d.ts +3 -0
- package/lib/date-picker/locale/kk_KZ.js +34 -0
- package/lib/date-picker/locale/km_KH.d.ts +3 -0
- package/lib/date-picker/locale/km_KH.js +34 -0
- package/lib/date-picker/locale/kmr_IQ.d.ts +3 -0
- package/lib/date-picker/locale/kmr_IQ.js +27 -0
- package/lib/date-picker/locale/kn_IN.d.ts +3 -0
- package/lib/date-picker/locale/kn_IN.js +27 -0
- package/lib/date-picker/locale/ko_KR.d.ts +3 -0
- package/lib/date-picker/locale/ko_KR.js +27 -0
- package/lib/date-picker/locale/lt_LT.d.ts +3 -0
- package/lib/date-picker/locale/lt_LT.js +34 -0
- package/lib/date-picker/locale/lv_LV.d.ts +3 -0
- package/lib/date-picker/locale/lv_LV.js +27 -0
- package/lib/date-picker/locale/mk_MK.d.ts +3 -0
- package/lib/date-picker/locale/mk_MK.js +27 -0
- package/lib/date-picker/locale/ml_IN.d.ts +3 -0
- package/lib/date-picker/locale/ml_IN.js +34 -0
- package/lib/date-picker/locale/mn_MN.d.ts +3 -0
- package/lib/date-picker/locale/mn_MN.js +27 -0
- package/lib/date-picker/locale/ms_MY.d.ts +3 -0
- package/lib/date-picker/locale/ms_MY.js +27 -0
- package/lib/date-picker/locale/nb_NO.d.ts +3 -0
- package/lib/date-picker/locale/nb_NO.js +34 -0
- package/lib/date-picker/locale/nl_BE.d.ts +3 -0
- package/lib/date-picker/locale/nl_BE.js +34 -0
- package/lib/date-picker/locale/nl_NL.d.ts +3 -0
- package/lib/date-picker/locale/nl_NL.js +34 -0
- package/lib/date-picker/locale/pl_PL.d.ts +3 -0
- package/lib/date-picker/locale/pl_PL.js +27 -0
- package/lib/date-picker/locale/pt_BR.d.ts +3 -0
- package/lib/date-picker/locale/pt_BR.js +27 -0
- package/lib/date-picker/locale/pt_PT.d.ts +3 -0
- package/lib/date-picker/locale/pt_PT.js +55 -0
- package/lib/date-picker/locale/ro_RO.d.ts +3 -0
- package/lib/date-picker/locale/ro_RO.js +27 -0
- package/lib/date-picker/locale/ru_RU.d.ts +4 -0
- package/lib/date-picker/locale/ru_RU.js +36 -0
- package/lib/date-picker/locale/si_LK.d.ts +3 -0
- package/lib/date-picker/locale/si_LK.js +35 -0
- package/lib/date-picker/locale/sk_SK.d.ts +3 -0
- package/lib/date-picker/locale/sk_SK.js +27 -0
- package/lib/date-picker/locale/sl_SI.d.ts +3 -0
- package/lib/date-picker/locale/sl_SI.js +52 -0
- package/lib/date-picker/locale/sr_RS.d.ts +3 -0
- package/lib/date-picker/locale/sr_RS.js +34 -0
- package/lib/date-picker/locale/sv_SE.d.ts +3 -0
- package/lib/date-picker/locale/sv_SE.js +34 -0
- package/lib/date-picker/locale/ta_IN.d.ts +3 -0
- package/lib/date-picker/locale/ta_IN.js +28 -0
- package/lib/date-picker/locale/th_TH.d.ts +3 -0
- package/lib/date-picker/locale/th_TH.js +34 -0
- package/lib/date-picker/locale/tk_TK.d.ts +3 -0
- package/lib/date-picker/locale/tk_TK.js +32 -0
- package/lib/date-picker/locale/tr_TR.d.ts +3 -0
- package/lib/date-picker/locale/tr_TR.js +34 -0
- package/lib/date-picker/locale/uk_UA.d.ts +3 -0
- package/lib/date-picker/locale/uk_UA.js +27 -0
- package/lib/date-picker/locale/ur_PK.d.ts +3 -0
- package/lib/date-picker/locale/ur_PK.js +34 -0
- package/lib/date-picker/locale/vi_VN.d.ts +3 -0
- package/lib/date-picker/locale/vi_VN.js +27 -0
- package/lib/date-picker/locale/zh_CN.d.ts +3 -0
- package/lib/date-picker/locale/zh_CN.js +37 -0
- package/lib/date-picker/locale/zh_TW.d.ts +3 -0
- package/lib/date-picker/locale/zh_TW.js +36 -0
- package/lib/date-picker/style/css.js +7 -0
- package/lib/date-picker/style/index-pure.less +366 -0
- package/lib/date-picker/style/index.css +1099 -0
- package/lib/date-picker/style/index.d.ts +3 -0
- package/lib/date-picker/style/index.js +7 -0
- package/lib/date-picker/style/index.less +3 -0
- package/lib/date-picker/style/panel.less +677 -0
- package/lib/date-picker/style/rtl.less +246 -0
- package/lib/date-picker/style/status.less +38 -0
- package/lib/date-picker/util.d.ts +14 -0
- package/lib/date-picker/util.js +118 -0
- package/lib/descriptions/Cell.d.ts +16 -0
- package/lib/descriptions/Cell.js +66 -0
- package/lib/descriptions/Item.d.ts +13 -0
- package/lib/descriptions/Item.js +14 -0
- package/lib/descriptions/Row.d.ts +13 -0
- package/lib/descriptions/Row.js +122 -0
- package/lib/descriptions/index.d.ts +27 -0
- package/lib/descriptions/index.js +193 -0
- package/lib/descriptions/style/css.js +5 -0
- package/lib/descriptions/style/index-pure.less +179 -0
- package/lib/descriptions/style/index.css +139 -0
- package/lib/descriptions/style/index.d.ts +2 -0
- package/lib/descriptions/style/index.js +5 -0
- package/lib/descriptions/style/index.less +3 -0
- package/lib/descriptions/style/rtl.less +33 -0
- package/lib/divider/index.d.ts +14 -0
- package/lib/divider/index.js +83 -0
- package/lib/divider/style/css.js +5 -0
- package/lib/divider/style/index-pure.less +137 -0
- package/lib/divider/style/index.css +126 -0
- package/lib/divider/style/index.d.ts +2 -0
- package/lib/divider/style/index.js +5 -0
- package/lib/divider/style/index.less +3 -0
- package/lib/divider/style/rtl.less +38 -0
- package/lib/drawer/index.d.ts +37 -0
- package/lib/drawer/index.js +206 -0
- package/lib/drawer/style/css.js +5 -0
- package/lib/drawer/style/drawer.less +160 -0
- package/lib/drawer/style/index-pure.less +7 -0
- package/lib/drawer/style/index.css +265 -0
- package/lib/drawer/style/index.d.ts +2 -0
- package/lib/drawer/style/index.js +5 -0
- package/lib/drawer/style/index.less +3 -0
- package/lib/drawer/style/motion.less +146 -0
- package/lib/drawer/style/rtl.less +16 -0
- package/lib/dropdown/dropdown-button.d.ts +23 -0
- package/lib/dropdown/dropdown-button.js +157 -0
- package/lib/dropdown/dropdown.d.ts +56 -0
- package/lib/dropdown/dropdown.js +215 -0
- package/lib/dropdown/index.d.ts +4 -0
- package/lib/dropdown/index.js +13 -0
- package/lib/dropdown/style/css.js +11 -0
- package/lib/dropdown/style/index-pure.less +389 -0
- package/lib/dropdown/style/index.css +400 -0
- package/lib/dropdown/style/index.d.ts +5 -0
- package/lib/dropdown/style/index.js +11 -0
- package/lib/dropdown/style/index.less +3 -0
- package/lib/dropdown/style/rtl.less +90 -0
- package/lib/dropdown/style/status.less +14 -0
- package/lib/empty/empty.d.ts +2 -0
- package/lib/empty/empty.js +66 -0
- package/lib/empty/index.d.ts +20 -0
- package/lib/empty/index.js +93 -0
- package/lib/empty/simple.d.ts +2 -0
- package/lib/empty/simple.js +47 -0
- package/lib/empty/style/css.js +5 -0
- package/lib/empty/style/index-pure.less +151 -0
- package/lib/empty/style/index.css +72 -0
- package/lib/empty/style/index.d.ts +2 -0
- package/lib/empty/style/index.js +5 -0
- package/lib/empty/style/index.less +3 -0
- package/lib/empty/style/rtl.less +10 -0
- package/lib/form/ErrorList.d.ts +12 -0
- package/lib/form/ErrorList.js +113 -0
- package/lib/form/Form.d.ts +34 -0
- package/lib/form/Form.js +176 -0
- package/lib/form/FormItem/ItemHolder.d.ts +17 -0
- package/lib/form/FormItem/ItemHolder.js +177 -0
- package/lib/form/FormItem/index.d.ts +35 -0
- package/lib/form/FormItem/index.js +333 -0
- package/lib/form/FormItemInput.d.ts +20 -0
- package/lib/form/FormItemInput.js +103 -0
- package/lib/form/FormItemLabel.d.ts +23 -0
- package/lib/form/FormItemLabel.js +140 -0
- package/lib/form/FormList.d.ts +25 -0
- package/lib/form/FormList.js +69 -0
- package/lib/form/context.d.ts +48 -0
- package/lib/form/context.js +67 -0
- package/lib/form/hooks/useDebounce.d.ts +1 -0
- package/lib/form/hooks/useDebounce.js +31 -0
- package/lib/form/hooks/useForm.d.ts +7 -0
- package/lib/form/hooks/useForm.js +70 -0
- package/lib/form/hooks/useFormInstance.d.ts +2 -0
- package/lib/form/hooks/useFormInstance.js +17 -0
- package/lib/form/hooks/useFormItemStatus.d.ts +6 -0
- package/lib/form/hooks/useFormItemStatus.js +27 -0
- package/lib/form/hooks/useFrameState.d.ts +3 -0
- package/lib/form/hooks/useFrameState.js +61 -0
- package/lib/form/hooks/useItemRef.d.ts +3 -0
- package/lib/form/hooks/useItemRef.js +40 -0
- package/lib/form/index.d.ts +22 -0
- package/lib/form/index.js +40 -0
- package/lib/form/interface.d.ts +3 -0
- package/lib/form/interface.js +5 -0
- package/lib/form/style/components.less +16 -0
- package/lib/form/style/css.js +9 -0
- package/lib/form/style/horizontal.less +22 -0
- package/lib/form/style/index-pure.less +332 -0
- package/lib/form/style/index.css +572 -0
- package/lib/form/style/index.d.ts +4 -0
- package/lib/form/style/index.js +9 -0
- package/lib/form/style/index.less +3 -0
- package/lib/form/style/inline.less +38 -0
- package/lib/form/style/mixin.less +78 -0
- package/lib/form/style/rtl.less +204 -0
- package/lib/form/style/status.less +42 -0
- package/lib/form/style/vertical.less +93 -0
- package/lib/form/util.d.ts +3 -0
- package/lib/form/util.js +29 -0
- package/lib/grid/RowContext.d.ts +8 -0
- package/lib/grid/RowContext.js +12 -0
- package/lib/grid/col.d.ts +28 -0
- package/lib/grid/col.js +130 -0
- package/lib/grid/hooks/useBreakpoint.d.ts +3 -0
- package/lib/grid/hooks/useBreakpoint.js +37 -0
- package/lib/grid/index.d.ts +10 -0
- package/lib/grid/index.js +36 -0
- package/lib/grid/row.d.ts +20 -0
- package/lib/grid/row.js +214 -0
- package/lib/grid/style/css.js +5 -0
- package/lib/grid/style/index-pure.less +124 -0
- package/lib/grid/style/index.css +5185 -0
- package/lib/grid/style/index.d.ts +2 -0
- package/lib/grid/style/index.js +5 -0
- package/lib/grid/style/index.less +3 -0
- package/lib/grid/style/mixin.less +56 -0
- package/lib/grid/style/rtl.less +69 -0
- package/lib/icon/index.d.ts +3 -0
- package/lib/icon/index.js +18 -0
- package/lib/icon/style/css.js +5 -0
- package/lib/icon/style/index-pure.less +4 -0
- package/lib/icon/style/index.css +4 -0
- package/lib/icon/style/index.d.ts +2 -0
- package/lib/icon/style/index.js +5 -0
- package/lib/icon/style/index.less +3 -0
- package/lib/image/PreviewGroup.d.ts +13 -0
- package/lib/image/PreviewGroup.js +92 -0
- package/lib/image/index.d.ts +9 -0
- package/lib/image/index.js +86 -0
- package/lib/image/style/css.js +5 -0
- package/lib/image/style/index-pure.less +203 -0
- package/lib/image/style/index.css +232 -0
- package/lib/image/style/index.d.ts +2 -0
- package/lib/image/style/index.js +5 -0
- package/lib/image/style/index.less +3 -0
- package/lib/index.d.ts +128 -1
- package/lib/index.js +552 -36
- package/lib/input/ClearableLabeledInput.d.ts +39 -0
- package/lib/input/ClearableLabeledInput.js +130 -0
- package/lib/input/Group.d.ts +15 -0
- package/lib/input/Group.js +55 -0
- package/lib/input/Input.d.ts +20 -0
- package/lib/input/Input.js +267 -0
- package/lib/input/Password.d.ts +14 -0
- package/lib/input/Password.js +162 -0
- package/lib/input/Search.d.ts +10 -0
- package/lib/input/Search.js +190 -0
- package/lib/input/TextArea.d.ts +28 -0
- package/lib/input/TextArea.js +276 -0
- package/lib/input/hooks/useRemovePasswordTimeout.d.ts +3 -0
- package/lib/input/hooks/useRemovePasswordTimeout.js +37 -0
- package/lib/input/index.d.ts +19 -0
- package/lib/input/index.js +26 -0
- package/lib/input/style/IE11.less +20 -0
- package/lib/input/style/affix.less +78 -0
- package/lib/input/style/allow-clear.less +43 -0
- package/lib/input/style/css.js +7 -0
- package/lib/input/style/index-pure.less +88 -0
- package/lib/input/style/index.css +929 -0
- package/lib/input/style/index.d.ts +3 -0
- package/lib/input/style/index.js +7 -0
- package/lib/input/style/index.less +3 -0
- package/lib/input/style/mixin.less +470 -0
- package/lib/input/style/rtl.less +210 -0
- package/lib/input/style/search-input.less +117 -0
- package/lib/input/style/status.less +42 -0
- package/lib/input/utils.d.ts +3 -0
- package/lib/input/utils.js +10 -0
- package/lib/input-number/index.d.ts +27 -0
- package/lib/input-number/index.js +201 -0
- package/lib/input-number/style/affix.less +83 -0
- package/lib/input-number/style/css.js +5 -0
- package/lib/input-number/style/index-pure.less +243 -0
- package/lib/input-number/style/index.css +915 -0
- package/lib/input-number/style/index.d.ts +2 -0
- package/lib/input-number/style/index.js +5 -0
- package/lib/input-number/style/index.less +3 -0
- package/lib/input-number/style/rtl.less +71 -0
- package/lib/input-number/style/status.less +29 -0
- package/lib/layout/Sider.d.ts +28 -0
- package/lib/layout/Sider.js +240 -0
- package/lib/layout/index.d.ts +13 -0
- package/lib/layout/index.js +22 -0
- package/lib/layout/layout.d.ts +23 -0
- package/lib/layout/layout.js +159 -0
- package/lib/layout/style/css.js +5 -0
- package/lib/layout/style/index-pure.less +145 -0
- package/lib/layout/style/index.css +128 -0
- package/lib/layout/style/index.d.ts +2 -0
- package/lib/layout/style/index.js +5 -0
- package/lib/layout/style/index.less +3 -0
- package/lib/layout/style/light.less +11 -0
- package/lib/layout/style/rtl.less +10 -0
- package/lib/list/Item.d.ts +26 -0
- package/lib/list/Item.js +151 -0
- package/lib/list/index.d.ts +54 -0
- package/lib/list/index.js +280 -0
- package/lib/list/style/bordered.less +44 -0
- package/lib/list/style/css.js +13 -0
- package/lib/list/style/customize.less +13 -0
- package/lib/list/style/index-pure.less +249 -0
- package/lib/list/style/index.css +317 -0
- package/lib/list/style/index.d.ts +6 -0
- package/lib/list/style/index.js +13 -0
- package/lib/list/style/index.less +3 -0
- package/lib/list/style/responsive.less +43 -0
- package/lib/list/style/rtl.less +139 -0
- package/lib/locale/ar_EG.d.ts +3 -0
- package/lib/locale/ar_EG.js +132 -0
- package/lib/locale/az_AZ.d.ts +3 -0
- package/lib/locale/az_AZ.js +112 -0
- package/lib/locale/bg_BG.d.ts +3 -0
- package/lib/locale/bg_BG.js +58 -0
- package/lib/locale/bn_BD.d.ts +3 -0
- package/lib/locale/bn_BD.js +145 -0
- package/lib/locale/by_BY.d.ts +3 -0
- package/lib/locale/by_BY.js +147 -0
- package/lib/locale/ca_ES.d.ts +3 -0
- package/lib/locale/ca_ES.js +140 -0
- package/lib/locale/cs_CZ.d.ts +3 -0
- package/lib/locale/cs_CZ.js +147 -0
- package/lib/locale/da_DK.d.ts +3 -0
- package/lib/locale/da_DK.js +68 -0
- package/lib/locale/de_DE.d.ts +3 -0
- package/lib/locale/de_DE.js +141 -0
- package/lib/locale/default.d.ts +3 -0
- package/lib/locale/default.js +147 -0
- package/lib/locale/el_GR.d.ts +3 -0
- package/lib/locale/el_GR.js +58 -0
- package/lib/locale/en_GB.d.ts +3 -0
- package/lib/locale/en_GB.js +147 -0
- package/lib/locale/en_US.d.ts +2 -0
- package/lib/locale/en_US.js +13 -0
- package/lib/locale/es_ES.d.ts +3 -0
- package/lib/locale/es_ES.js +147 -0
- package/lib/locale/et_EE.d.ts +3 -0
- package/lib/locale/et_EE.js +147 -0
- package/lib/locale/fa_IR.d.ts +3 -0
- package/lib/locale/fa_IR.js +145 -0
- package/lib/locale/fi_FI.d.ts +3 -0
- package/lib/locale/fi_FI.js +68 -0
- package/lib/locale/fr_BE.d.ts +3 -0
- package/lib/locale/fr_BE.js +63 -0
- package/lib/locale/fr_CA.d.ts +3 -0
- package/lib/locale/fr_CA.js +75 -0
- package/lib/locale/fr_FR.d.ts +3 -0
- package/lib/locale/fr_FR.js +144 -0
- package/lib/locale/ga_IE.d.ts +3 -0
- package/lib/locale/ga_IE.js +138 -0
- package/lib/locale/gl_ES.d.ts +3 -0
- package/lib/locale/gl_ES.js +126 -0
- package/lib/locale/he_IL.d.ts +3 -0
- package/lib/locale/he_IL.js +132 -0
- package/lib/locale/hi_IN.d.ts +3 -0
- package/lib/locale/hi_IN.js +145 -0
- package/lib/locale/hr_HR.d.ts +3 -0
- package/lib/locale/hr_HR.js +144 -0
- package/lib/locale/hu_HU.d.ts +3 -0
- package/lib/locale/hu_HU.js +59 -0
- package/lib/locale/hy_AM.d.ts +3 -0
- package/lib/locale/hy_AM.js +116 -0
- package/lib/locale/id_ID.d.ts +3 -0
- package/lib/locale/id_ID.js +59 -0
- package/lib/locale/is_IS.d.ts +3 -0
- package/lib/locale/is_IS.js +58 -0
- package/lib/locale/it_IT.d.ts +3 -0
- package/lib/locale/it_IT.js +147 -0
- package/lib/locale/ja_JP.d.ts +3 -0
- package/lib/locale/ja_JP.js +118 -0
- package/lib/locale/ka_GE.d.ts +3 -0
- package/lib/locale/ka_GE.js +145 -0
- package/lib/locale/kk_KZ.d.ts +3 -0
- package/lib/locale/kk_KZ.js +139 -0
- package/lib/locale/km_KH.d.ts +3 -0
- package/lib/locale/km_KH.js +120 -0
- package/lib/locale/kmr_IQ.d.ts +3 -0
- package/lib/locale/kmr_IQ.js +58 -0
- package/lib/locale/kn_IN.d.ts +3 -0
- package/lib/locale/kn_IN.js +65 -0
- package/lib/locale/ko_KR.d.ts +3 -0
- package/lib/locale/ko_KR.js +112 -0
- package/lib/locale/ku_IQ.d.ts +3 -0
- package/lib/locale/ku_IQ.js +61 -0
- package/lib/locale/lt_LT.d.ts +3 -0
- package/lib/locale/lt_LT.js +136 -0
- package/lib/locale/lv_LV.d.ts +3 -0
- package/lib/locale/lv_LV.js +58 -0
- package/lib/locale/mk_MK.d.ts +3 -0
- package/lib/locale/mk_MK.js +73 -0
- package/lib/locale/ml_IN.d.ts +3 -0
- package/lib/locale/ml_IN.js +145 -0
- package/lib/locale/mn_MN.d.ts +3 -0
- package/lib/locale/mn_MN.js +58 -0
- package/lib/locale/ms_MY.d.ts +3 -0
- package/lib/locale/ms_MY.js +78 -0
- package/lib/locale/nb_NO.d.ts +3 -0
- package/lib/locale/nb_NO.js +139 -0
- package/lib/locale/ne_NP.d.ts +3 -0
- package/lib/locale/ne_NP.js +58 -0
- package/lib/locale/nl_BE.d.ts +3 -0
- package/lib/locale/nl_BE.js +145 -0
- package/lib/locale/nl_NL.d.ts +3 -0
- package/lib/locale/nl_NL.js +145 -0
- package/lib/locale/pl_PL.d.ts +3 -0
- package/lib/locale/pl_PL.js +147 -0
- package/lib/locale/pt_BR.d.ts +3 -0
- package/lib/locale/pt_BR.js +145 -0
- package/lib/locale/pt_PT.d.ts +3 -0
- package/lib/locale/pt_PT.js +147 -0
- package/lib/locale/ro_RO.d.ts +3 -0
- package/lib/locale/ro_RO.js +145 -0
- package/lib/locale/ru_RU.d.ts +3 -0
- package/lib/locale/ru_RU.js +144 -0
- package/lib/locale/si_LK.d.ts +3 -0
- package/lib/locale/si_LK.js +147 -0
- package/lib/locale/sk_SK.d.ts +3 -0
- package/lib/locale/sk_SK.js +147 -0
- package/lib/locale/sl_SI.d.ts +3 -0
- package/lib/locale/sl_SI.js +58 -0
- package/lib/locale/sr_RS.d.ts +3 -0
- package/lib/locale/sr_RS.js +145 -0
- package/lib/locale/sv_SE.d.ts +3 -0
- package/lib/locale/sv_SE.js +145 -0
- package/lib/locale/ta_IN.d.ts +3 -0
- package/lib/locale/ta_IN.js +77 -0
- package/lib/locale/th_TH.d.ts +3 -0
- package/lib/locale/th_TH.js +141 -0
- package/lib/locale/tk_TK.d.ts +3 -0
- package/lib/locale/tk_TK.js +143 -0
- package/lib/locale/tr_TR.d.ts +3 -0
- package/lib/locale/tr_TR.js +143 -0
- package/lib/locale/uk_UA.d.ts +3 -0
- package/lib/locale/uk_UA.js +147 -0
- package/lib/locale/ur_PK.d.ts +3 -0
- package/lib/locale/ur_PK.js +145 -0
- package/lib/locale/vi_VN.d.ts +3 -0
- package/lib/locale/vi_VN.js +58 -0
- package/lib/locale/zh_CN.d.ts +3 -0
- package/lib/locale/zh_CN.js +147 -0
- package/lib/locale/zh_HK.d.ts +3 -0
- package/lib/locale/zh_HK.js +143 -0
- package/lib/locale/zh_TW.d.ts +3 -0
- package/lib/locale/zh_TW.js +144 -0
- package/lib/locale-provider/LocaleReceiver.d.ts +11 -0
- package/lib/locale-provider/LocaleReceiver.js +60 -0
- package/lib/locale-provider/ar_EG.d.ts +2 -0
- package/lib/locale-provider/ar_EG.js +13 -0
- package/lib/locale-provider/az_AZ.d.ts +2 -0
- package/lib/locale-provider/az_AZ.js +13 -0
- package/lib/locale-provider/bg_BG.d.ts +2 -0
- package/lib/locale-provider/bg_BG.js +13 -0
- package/lib/locale-provider/bn_BD.d.ts +2 -0
- package/lib/locale-provider/bn_BD.js +13 -0
- package/lib/locale-provider/by_BY.d.ts +2 -0
- package/lib/locale-provider/by_BY.js +13 -0
- package/lib/locale-provider/ca_ES.d.ts +2 -0
- package/lib/locale-provider/ca_ES.js +13 -0
- package/lib/locale-provider/context.d.ts +7 -0
- package/lib/locale-provider/context.js +12 -0
- package/lib/locale-provider/cs_CZ.d.ts +2 -0
- package/lib/locale-provider/cs_CZ.js +13 -0
- package/lib/locale-provider/da_DK.d.ts +2 -0
- package/lib/locale-provider/da_DK.js +13 -0
- package/lib/locale-provider/de_DE.d.ts +2 -0
- package/lib/locale-provider/de_DE.js +13 -0
- package/lib/locale-provider/default.d.ts +2 -0
- package/lib/locale-provider/default.js +13 -0
- package/lib/locale-provider/el_GR.d.ts +2 -0
- package/lib/locale-provider/el_GR.js +13 -0
- package/lib/locale-provider/en_GB.d.ts +2 -0
- package/lib/locale-provider/en_GB.js +13 -0
- package/lib/locale-provider/en_US.d.ts +2 -0
- package/lib/locale-provider/en_US.js +13 -0
- package/lib/locale-provider/es_ES.d.ts +2 -0
- package/lib/locale-provider/es_ES.js +13 -0
- package/lib/locale-provider/et_EE.d.ts +2 -0
- package/lib/locale-provider/et_EE.js +13 -0
- package/lib/locale-provider/fa_IR.d.ts +2 -0
- package/lib/locale-provider/fa_IR.js +13 -0
- package/lib/locale-provider/fi_FI.d.ts +2 -0
- package/lib/locale-provider/fi_FI.js +13 -0
- package/lib/locale-provider/fr_BE.d.ts +2 -0
- package/lib/locale-provider/fr_BE.js +13 -0
- package/lib/locale-provider/fr_CA.d.ts +2 -0
- package/lib/locale-provider/fr_CA.js +13 -0
- package/lib/locale-provider/fr_FR.d.ts +2 -0
- package/lib/locale-provider/fr_FR.js +13 -0
- package/lib/locale-provider/ga_IE.d.ts +2 -0
- package/lib/locale-provider/ga_IE.js +13 -0
- package/lib/locale-provider/gl_ES.d.ts +2 -0
- package/lib/locale-provider/gl_ES.js +13 -0
- package/lib/locale-provider/he_IL.d.ts +2 -0
- package/lib/locale-provider/he_IL.js +13 -0
- package/lib/locale-provider/hi_IN.d.ts +2 -0
- package/lib/locale-provider/hi_IN.js +13 -0
- package/lib/locale-provider/hr_HR.d.ts +2 -0
- package/lib/locale-provider/hr_HR.js +13 -0
- package/lib/locale-provider/hu_HU.d.ts +2 -0
- package/lib/locale-provider/hu_HU.js +13 -0
- package/lib/locale-provider/hy_AM.d.ts +2 -0
- package/lib/locale-provider/hy_AM.js +13 -0
- package/lib/locale-provider/id_ID.d.ts +2 -0
- package/lib/locale-provider/id_ID.js +13 -0
- package/lib/locale-provider/index.d.ts +49 -0
- package/lib/locale-provider/index.js +52 -0
- package/lib/locale-provider/is_IS.d.ts +2 -0
- package/lib/locale-provider/is_IS.js +13 -0
- package/lib/locale-provider/it_IT.d.ts +2 -0
- package/lib/locale-provider/it_IT.js +13 -0
- package/lib/locale-provider/ja_JP.d.ts +2 -0
- package/lib/locale-provider/ja_JP.js +13 -0
- package/lib/locale-provider/ka_GE.d.ts +2 -0
- package/lib/locale-provider/ka_GE.js +13 -0
- package/lib/locale-provider/kk_KZ.d.ts +2 -0
- package/lib/locale-provider/kk_KZ.js +13 -0
- package/lib/locale-provider/km_KH.d.ts +2 -0
- package/lib/locale-provider/km_KH.js +13 -0
- package/lib/locale-provider/kmr_IQ.d.ts +2 -0
- package/lib/locale-provider/kmr_IQ.js +13 -0
- package/lib/locale-provider/kn_IN.d.ts +2 -0
- package/lib/locale-provider/kn_IN.js +13 -0
- package/lib/locale-provider/ko_KR.d.ts +2 -0
- package/lib/locale-provider/ko_KR.js +13 -0
- package/lib/locale-provider/ku_IQ.d.ts +2 -0
- package/lib/locale-provider/ku_IQ.js +13 -0
- package/lib/locale-provider/lt_LT.d.ts +2 -0
- package/lib/locale-provider/lt_LT.js +13 -0
- package/lib/locale-provider/lv_LV.d.ts +2 -0
- package/lib/locale-provider/lv_LV.js +13 -0
- package/lib/locale-provider/mk_MK.d.ts +2 -0
- package/lib/locale-provider/mk_MK.js +13 -0
- package/lib/locale-provider/ml_IN.d.ts +2 -0
- package/lib/locale-provider/ml_IN.js +13 -0
- package/lib/locale-provider/mn_MN.d.ts +2 -0
- package/lib/locale-provider/mn_MN.js +13 -0
- package/lib/locale-provider/ms_MY.d.ts +2 -0
- package/lib/locale-provider/ms_MY.js +13 -0
- package/lib/locale-provider/nb_NO.d.ts +2 -0
- package/lib/locale-provider/nb_NO.js +13 -0
- package/lib/locale-provider/ne_NP.d.ts +2 -0
- package/lib/locale-provider/ne_NP.js +13 -0
- package/lib/locale-provider/nl_BE.d.ts +2 -0
- package/lib/locale-provider/nl_BE.js +13 -0
- package/lib/locale-provider/nl_NL.d.ts +2 -0
- package/lib/locale-provider/nl_NL.js +13 -0
- package/lib/locale-provider/pl_PL.d.ts +2 -0
- package/lib/locale-provider/pl_PL.js +13 -0
- package/lib/locale-provider/pt_BR.d.ts +2 -0
- package/lib/locale-provider/pt_BR.js +13 -0
- package/lib/locale-provider/pt_PT.d.ts +2 -0
- package/lib/locale-provider/pt_PT.js +13 -0
- package/lib/locale-provider/ro_RO.d.ts +2 -0
- package/lib/locale-provider/ro_RO.js +13 -0
- package/lib/locale-provider/ru_RU.d.ts +2 -0
- package/lib/locale-provider/ru_RU.js +13 -0
- package/lib/locale-provider/si_LK.d.ts +2 -0
- package/lib/locale-provider/si_LK.js +13 -0
- package/lib/locale-provider/sk_SK.d.ts +2 -0
- package/lib/locale-provider/sk_SK.js +13 -0
- package/lib/locale-provider/sl_SI.d.ts +2 -0
- package/lib/locale-provider/sl_SI.js +13 -0
- package/lib/locale-provider/sr_RS.d.ts +2 -0
- package/lib/locale-provider/sr_RS.js +13 -0
- package/lib/locale-provider/style/css.js +3 -0
- package/lib/locale-provider/style/index-pure.less +2 -0
- package/lib/locale-provider/style/index.css +4 -0
- package/lib/locale-provider/style/index.d.ts +1 -0
- package/lib/locale-provider/style/index.js +3 -0
- package/lib/locale-provider/style/index.less +3 -0
- package/lib/locale-provider/sv_SE.d.ts +2 -0
- package/lib/locale-provider/sv_SE.js +13 -0
- package/lib/locale-provider/ta_IN.d.ts +2 -0
- package/lib/locale-provider/ta_IN.js +13 -0
- package/lib/locale-provider/th_TH.d.ts +2 -0
- package/lib/locale-provider/th_TH.js +13 -0
- package/lib/locale-provider/tk_TK.d.ts +2 -0
- package/lib/locale-provider/tk_TK.js +13 -0
- package/lib/locale-provider/tr_TR.d.ts +2 -0
- package/lib/locale-provider/tr_TR.js +13 -0
- package/lib/locale-provider/uk_UA.d.ts +2 -0
- package/lib/locale-provider/uk_UA.js +13 -0
- package/lib/locale-provider/ur_PK.d.ts +2 -0
- package/lib/locale-provider/ur_PK.js +13 -0
- package/lib/locale-provider/vi_VN.d.ts +2 -0
- package/lib/locale-provider/vi_VN.js +13 -0
- package/lib/locale-provider/zh_CN.d.ts +2 -0
- package/lib/locale-provider/zh_CN.js +13 -0
- package/lib/locale-provider/zh_HK.d.ts +2 -0
- package/lib/locale-provider/zh_HK.js +13 -0
- package/lib/locale-provider/zh_TW.d.ts +2 -0
- package/lib/locale-provider/zh_TW.js +13 -0
- package/lib/mentions/index.d.ts +35 -0
- package/lib/mentions/index.js +220 -0
- package/lib/mentions/style/css.js +7 -0
- package/lib/mentions/style/index-pure.less +179 -0
- package/lib/mentions/style/index.css +322 -0
- package/lib/mentions/style/index.d.ts +3 -0
- package/lib/mentions/style/index.js +7 -0
- package/lib/mentions/style/index.less +3 -0
- package/lib/mentions/style/rtl.less +10 -0
- package/lib/mentions/style/status.less +16 -0
- package/lib/menu/MenuContext.d.ts +12 -0
- package/lib/menu/MenuContext.js +16 -0
- package/lib/menu/MenuDivider.d.ts +9 -0
- package/lib/menu/MenuDivider.js +54 -0
- package/lib/menu/MenuItem.d.ts +16 -0
- package/lib/menu/MenuItem.js +161 -0
- package/lib/menu/OverrideContext.d.ts +11 -0
- package/lib/menu/OverrideContext.js +51 -0
- package/lib/menu/SubMenu.d.ts +23 -0
- package/lib/menu/SubMenu.js +71 -0
- package/lib/menu/hooks/useItems.d.ts +26 -0
- package/lib/menu/hooks/useItems.js +101 -0
- package/lib/menu/index.d.ts +26 -0
- package/lib/menu/index.js +225 -0
- package/lib/menu/style/css.js +7 -0
- package/lib/menu/style/dark.less +177 -0
- package/lib/menu/style/index-pure.less +700 -0
- package/lib/menu/style/index.css +919 -0
- package/lib/menu/style/index.d.ts +3 -0
- package/lib/menu/style/index.js +7 -0
- package/lib/menu/style/index.less +3 -0
- package/lib/menu/style/light.less +12 -0
- package/lib/menu/style/rtl.less +165 -0
- package/lib/menu/style/status.less +49 -0
- package/lib/message/hooks/useMessage.d.ts +7 -0
- package/lib/message/hooks/useMessage.js +103 -0
- package/lib/message/index.d.ts +61 -0
- package/lib/message/index.js +277 -0
- package/lib/message/style/css.js +5 -0
- package/lib/message/style/index-pure.less +74 -0
- package/lib/message/style/index.css +78 -0
- package/lib/message/style/index.d.ts +2 -0
- package/lib/message/style/index.js +5 -0
- package/lib/message/style/index.less +3 -0
- package/lib/message/style/rtl.less +17 -0
- package/lib/modal/ConfirmDialog.d.ts +10 -0
- package/lib/modal/ConfirmDialog.js +135 -0
- package/lib/modal/Modal.d.ts +114 -0
- package/lib/modal/Modal.js +160 -0
- package/lib/modal/confirm.d.ts +20 -0
- package/lib/modal/confirm.js +226 -0
- package/lib/modal/destroyFns.d.ts +2 -0
- package/lib/modal/destroyFns.js +9 -0
- package/lib/modal/index.d.ts +12 -0
- package/lib/modal/index.js +58 -0
- package/lib/modal/locale.d.ts +7 -0
- package/lib/modal/locale.js +27 -0
- package/lib/modal/style/confirm.less +79 -0
- package/lib/modal/style/css.js +7 -0
- package/lib/modal/style/index-pure.less +7 -0
- package/lib/modal/style/index.css +255 -0
- package/lib/modal/style/index.d.ts +3 -0
- package/lib/modal/style/index.js +7 -0
- package/lib/modal/style/index.less +3 -0
- package/lib/modal/style/modal.less +136 -0
- package/lib/modal/style/rtl.less +74 -0
- package/lib/modal/useModal/HookModal.d.ts +12 -0
- package/lib/modal/useModal/HookModal.js +95 -0
- package/lib/modal/useModal/index.d.ts +3 -0
- package/lib/modal/useModal/index.js +121 -0
- package/lib/notification/hooks/useNotification.d.ts +7 -0
- package/lib/notification/hooks/useNotification.js +71 -0
- package/lib/notification/index.d.ts +55 -0
- package/lib/notification/index.js +365 -0
- package/lib/notification/style/css.js +5 -0
- package/lib/notification/style/index-pure.less +207 -0
- package/lib/notification/style/index.css +246 -0
- package/lib/notification/style/index.d.ts +2 -0
- package/lib/notification/style/index.js +5 -0
- package/lib/notification/style/index.less +3 -0
- package/lib/notification/style/placement.less +68 -0
- package/lib/notification/style/rtl.less +53 -0
- package/lib/page-header/index.d.ts +24 -0
- package/lib/page-header/index.js +191 -0
- package/lib/page-header/style/css.js +9 -0
- package/lib/page-header/style/index-pure.less +122 -0
- package/lib/page-header/style/index.css +151 -0
- package/lib/page-header/style/index.d.ts +4 -0
- package/lib/page-header/style/index.js +9 -0
- package/lib/page-header/style/index.less +3 -0
- package/lib/page-header/style/rtl.less +77 -0
- package/lib/pagination/Pagination.d.ts +19 -0
- package/lib/pagination/Pagination.js +144 -0
- package/lib/pagination/Select.d.ts +9 -0
- package/lib/pagination/Select.js +34 -0
- package/lib/pagination/index.d.ts +3 -0
- package/lib/pagination/index.js +13 -0
- package/lib/pagination/style/css.js +7 -0
- package/lib/pagination/style/index-pure.less +472 -0
- package/lib/pagination/style/index.css +553 -0
- package/lib/pagination/style/index.d.ts +3 -0
- package/lib/pagination/style/index.js +7 -0
- package/lib/pagination/style/index.less +3 -0
- package/lib/pagination/style/rtl.less +55 -0
- package/lib/popconfirm/PurePanel.d.ts +13 -0
- package/lib/popconfirm/PurePanel.js +78 -0
- package/lib/popconfirm/index.d.ts +28 -0
- package/lib/popconfirm/index.js +150 -0
- package/lib/popconfirm/style/css.js +9 -0
- package/lib/popconfirm/style/index-pure.less +8 -0
- package/lib/popconfirm/style/index.css +7 -0
- package/lib/popconfirm/style/index.d.ts +4 -0
- package/lib/popconfirm/style/index.js +9 -0
- package/lib/popconfirm/style/index.less +3 -0
- package/lib/popover/index.d.ts +9 -0
- package/lib/popover/index.js +98 -0
- package/lib/popover/style/css.js +5 -0
- package/lib/popover/style/index-pure.less +261 -0
- package/lib/popover/style/index.css +329 -0
- package/lib/popover/style/index.d.ts +2 -0
- package/lib/popover/style/index.js +5 -0
- package/lib/popover/style/index.less +3 -0
- package/lib/popover/style/rtl.less +39 -0
- package/lib/progress/Circle.d.ts +10 -0
- package/lib/progress/Circle.js +102 -0
- package/lib/progress/Line.d.ts +38 -0
- package/lib/progress/Line.js +154 -0
- package/lib/progress/Steps.d.ts +10 -0
- package/lib/progress/Steps.js +53 -0
- package/lib/progress/index.d.ts +3 -0
- package/lib/progress/index.js +13 -0
- package/lib/progress/progress.d.ts +46 -0
- package/lib/progress/progress.js +160 -0
- package/lib/progress/style/css.js +5 -0
- package/lib/progress/style/index-pure.less +210 -0
- package/lib/progress/style/index.css +190 -0
- package/lib/progress/style/index.d.ts +2 -0
- package/lib/progress/style/index.js +5 -0
- package/lib/progress/style/index.less +3 -0
- package/lib/progress/style/rtl.less +37 -0
- package/lib/progress/utils.d.ts +8 -0
- package/lib/progress/utils.js +41 -0
- package/lib/radio/context.d.ts +7 -0
- package/lib/radio/context.js +20 -0
- package/lib/radio/group.d.ts +4 -0
- package/lib/radio/group.js +133 -0
- package/lib/radio/index.d.ts +12 -0
- package/lib/radio/index.js +33 -0
- package/lib/radio/interface.d.ts +40 -0
- package/lib/radio/interface.js +5 -0
- package/lib/radio/radio.d.ts +4 -0
- package/lib/radio/radio.js +117 -0
- package/lib/radio/radioButton.d.ts +6 -0
- package/lib/radio/radioButton.js +55 -0
- package/lib/radio/style/css.js +5 -0
- package/lib/radio/style/index-pure.less +371 -0
- package/lib/radio/style/index.css +349 -0
- package/lib/radio/style/index.d.ts +2 -0
- package/lib/radio/style/index.js +5 -0
- package/lib/radio/style/index.less +3 -0
- package/lib/radio/style/rtl.less +61 -0
- package/lib/rate/index.d.ts +7 -0
- package/lib/rate/index.js +76 -0
- package/lib/rate/style/css.js +7 -0
- package/lib/rate/style/index-pure.less +91 -0
- package/lib/rate/style/index.css +94 -0
- package/lib/rate/style/index.d.ts +3 -0
- package/lib/rate/style/index.js +7 -0
- package/lib/rate/style/index.less +3 -0
- package/lib/rate/style/rtl.less +21 -0
- package/lib/result/index.d.ts +32 -0
- package/lib/result/index.js +131 -0
- package/lib/result/noFound.d.ts +2 -0
- package/lib/result/noFound.js +249 -0
- package/lib/result/serverError.d.ts +2 -0
- package/lib/result/serverError.js +289 -0
- package/lib/result/style/css.js +5 -0
- package/lib/result/style/index-pure.less +75 -0
- package/lib/result/style/index.css +68 -0
- package/lib/result/style/index.d.ts +2 -0
- package/lib/result/style/index.js +5 -0
- package/lib/result/style/index.less +3 -0
- package/lib/result/style/rtl.less +25 -0
- package/lib/result/unauthorized.d.ts +2 -0
- package/lib/result/unauthorized.js +239 -0
- package/lib/row/index.d.ts +3 -0
- package/lib/row/index.js +11 -0
- package/lib/row/style/css.js +5 -0
- package/lib/row/style/index.d.ts +2 -0
- package/lib/row/style/index.js +5 -0
- package/lib/segmented/index.d.ts +22 -0
- package/lib/segmented/index.js +97 -0
- package/lib/segmented/style/css.js +5 -0
- package/lib/segmented/style/index-pure.less +122 -0
- package/lib/segmented/style/index.css +132 -0
- package/lib/segmented/style/index.d.ts +2 -0
- package/lib/segmented/style/index.js +5 -0
- package/lib/segmented/style/index.less +3 -0
- package/lib/segmented/style/mixins.less +24 -0
- package/lib/segmented/style/rtl.less +15 -0
- package/lib/select/index.d.ts +44 -0
- package/lib/select/index.js +193 -0
- package/lib/select/style/css.js +7 -0
- package/lib/select/style/index-pure.less +333 -0
- package/lib/select/style/index.css +740 -0
- package/lib/select/style/index.d.ts +3 -0
- package/lib/select/style/index.js +7 -0
- package/lib/select/style/index.less +3 -0
- package/lib/select/style/multiple.less +222 -0
- package/lib/select/style/rtl.less +168 -0
- package/lib/select/style/single.less +172 -0
- package/lib/select/style/status.less +49 -0
- package/lib/select/utils/iconUtil.d.ts +24 -0
- package/lib/select/utils/iconUtil.js +97 -0
- package/lib/skeleton/Avatar.d.ts +7 -0
- package/lib/skeleton/Avatar.js +51 -0
- package/lib/skeleton/Button.d.ts +8 -0
- package/lib/skeleton/Button.js +52 -0
- package/lib/skeleton/Element.d.ts +11 -0
- package/lib/skeleton/Element.js +44 -0
- package/lib/skeleton/Image.d.ts +6 -0
- package/lib/skeleton/Image.js +49 -0
- package/lib/skeleton/Input.d.ts +8 -0
- package/lib/skeleton/Input.js +51 -0
- package/lib/skeleton/Node.d.ts +8 -0
- package/lib/skeleton/Node.js +44 -0
- package/lib/skeleton/Paragraph.d.ts +11 -0
- package/lib/skeleton/Paragraph.js +59 -0
- package/lib/skeleton/Skeleton.d.ts +32 -0
- package/lib/skeleton/Skeleton.js +180 -0
- package/lib/skeleton/Title.d.ts +9 -0
- package/lib/skeleton/Title.js +34 -0
- package/lib/skeleton/index.d.ts +3 -0
- package/lib/skeleton/index.js +13 -0
- package/lib/skeleton/style/css.js +5 -0
- package/lib/skeleton/style/index-pure.less +290 -0
- package/lib/skeleton/style/index.css +282 -0
- package/lib/skeleton/style/index.d.ts +2 -0
- package/lib/skeleton/style/index.js +5 -0
- package/lib/skeleton/style/index.less +3 -0
- package/lib/skeleton/style/rtl.less +48 -0
- package/lib/slider/SliderTooltip.d.ts +4 -0
- package/lib/slider/SliderTooltip.js +56 -0
- package/lib/slider/index.d.ts +89 -0
- package/lib/slider/index.js +171 -0
- package/lib/slider/style/css.js +7 -0
- package/lib/slider/style/index-pure.less +215 -0
- package/lib/slider/style/index.css +202 -0
- package/lib/slider/style/index.d.ts +3 -0
- package/lib/slider/style/index.js +7 -0
- package/lib/slider/style/index.less +3 -0
- package/lib/slider/style/rtl.less +49 -0
- package/lib/space/Compact.d.ts +24 -0
- package/lib/space/Compact.js +122 -0
- package/lib/space/Item.d.ts +11 -0
- package/lib/space/Item.js +62 -0
- package/lib/space/index.d.ts +25 -0
- package/lib/space/index.js +160 -0
- package/lib/space/style/compact.less +17 -0
- package/lib/space/style/css.js +5 -0
- package/lib/space/style/index-pure.less +40 -0
- package/lib/space/style/index.css +41 -0
- package/lib/space/style/index.d.ts +2 -0
- package/lib/space/style/index.js +5 -0
- package/lib/space/style/index.less +3 -0
- package/lib/space/style/rtl.less +14 -0
- package/lib/spin/index.d.ts +24 -0
- package/lib/spin/index.js +179 -0
- package/lib/spin/style/css.js +5 -0
- package/lib/spin/style/index-pure.less +218 -0
- package/lib/spin/style/index.css +198 -0
- package/lib/spin/style/index.d.ts +2 -0
- package/lib/spin/style/index.js +5 -0
- package/lib/spin/style/index.less +3 -0
- package/lib/spin/style/rtl.less +20 -0
- package/lib/statistic/Countdown.d.ts +11 -0
- package/lib/statistic/Countdown.js +93 -0
- package/lib/statistic/Number.d.ts +7 -0
- package/lib/statistic/Number.js +66 -0
- package/lib/statistic/Statistic.d.ts +22 -0
- package/lib/statistic/Statistic.js +78 -0
- package/lib/statistic/index.d.ts +3 -0
- package/lib/statistic/index.js +16 -0
- package/lib/statistic/style/css.js +7 -0
- package/lib/statistic/style/index-pure.less +44 -0
- package/lib/statistic/style/index.css +53 -0
- package/lib/statistic/style/index.d.ts +3 -0
- package/lib/statistic/style/index.js +7 -0
- package/lib/statistic/style/index.less +3 -0
- package/lib/statistic/style/rtl.less +21 -0
- package/lib/statistic/utils.d.ts +16 -0
- package/lib/statistic/utils.js +57 -0
- package/lib/steps/index.d.ts +38 -0
- package/lib/steps/index.js +125 -0
- package/lib/steps/style/css.js +7 -0
- package/lib/steps/style/custom-icon.less +32 -0
- package/lib/steps/style/index-pure.less +255 -0
- package/lib/steps/style/index.css +754 -0
- package/lib/steps/style/index.d.ts +3 -0
- package/lib/steps/style/index.js +7 -0
- package/lib/steps/style/index.less +3 -0
- package/lib/steps/style/label-placement.less +45 -0
- package/lib/steps/style/nav.less +134 -0
- package/lib/steps/style/progress-dot.less +113 -0
- package/lib/steps/style/progress.less +36 -0
- package/lib/steps/style/rtl.less +271 -0
- package/lib/steps/style/small.less +48 -0
- package/lib/steps/style/vertical.less +73 -0
- package/lib/steps/useLegacyItems.d.ts +3 -0
- package/lib/steps/useLegacyItems.js +42 -0
- package/lib/style/color/bezierEasing.less +110 -0
- package/lib/style/color/colorPalette.less +85 -0
- package/lib/style/color/colors.less +162 -0
- package/lib/style/color/tinyColor.less +1184 -0
- package/lib/style/compact.less +4 -0
- package/lib/style/core/base.less +10 -0
- package/lib/style/core/global.less +491 -0
- package/lib/style/core/iconfont.less +22 -0
- package/lib/style/core/index.less +5 -0
- package/lib/style/core/motion/fade.less +34 -0
- package/lib/style/core/motion/move.less +129 -0
- package/lib/style/core/motion/other.less +51 -0
- package/lib/style/core/motion/slide.less +129 -0
- package/lib/style/core/motion/zoom.less +179 -0
- package/lib/style/core/motion.less +22 -0
- package/lib/style/dark.less +4 -0
- package/lib/style/default.less +4 -0
- package/lib/style/index.d.ts +2 -0
- package/lib/style/index.js +2 -0
- package/lib/style/index.less +2 -0
- package/lib/style/mixins/box.less +7 -0
- package/lib/style/mixins/clearfix.less +16 -0
- package/lib/style/mixins/compact-item-vertical.less +41 -0
- package/lib/style/mixins/compact-item.less +133 -0
- package/lib/style/mixins/compatibility.less +13 -0
- package/lib/style/mixins/customize.less +181 -0
- package/lib/style/mixins/iconfont.less +28 -0
- package/lib/style/mixins/index.less +16 -0
- package/lib/style/mixins/modal-mask.less +30 -0
- package/lib/style/mixins/motion.less +33 -0
- package/lib/style/mixins/operation-unit.less +15 -0
- package/lib/style/mixins/reset.less +11 -0
- package/lib/style/mixins/rounded-arrow.less +44 -0
- package/lib/style/mixins/size.less +10 -0
- package/lib/style/mixins/typography.less +58 -0
- package/lib/style/theme.less +34 -0
- package/lib/style/themes/compact.less +295 -0
- package/lib/style/themes/dark.less +457 -0
- package/lib/style/themes/default.less +1084 -0
- package/lib/style/themes/index.less +7 -0
- package/lib/style/themes/variable.less +1139 -0
- package/lib/style/variable.less +4 -0
- package/lib/switch/index.d.ts +26 -0
- package/lib/switch/index.js +92 -0
- package/lib/switch/style/css.js +5 -0
- package/lib/switch/style/index-pure.less +154 -0
- package/lib/switch/style/index.css +153 -0
- package/lib/switch/style/index.d.ts +2 -0
- package/lib/switch/style/index.js +5 -0
- package/lib/switch/style/index.less +3 -0
- package/lib/switch/style/rtl.less +52 -0
- package/lib/table/Column.d.ts +7 -0
- package/lib/table/Column.js +17 -0
- package/lib/table/ColumnGroup.d.ts +9 -0
- package/lib/table/ColumnGroup.js +17 -0
- package/lib/table/ExpandIcon.d.ts +11 -0
- package/lib/table/ExpandIcon.js +42 -0
- package/lib/table/Table.d.ts +48 -0
- package/lib/table/Table.js +479 -0
- package/lib/table/hooks/useFilter/FilterDropdown.d.ts +27 -0
- package/lib/table/hooks/useFilter/FilterDropdown.js +528 -0
- package/lib/table/hooks/useFilter/FilterSearch.d.ts +11 -0
- package/lib/table/hooks/useFilter/FilterSearch.js +43 -0
- package/lib/table/hooks/useFilter/FilterWrapper.d.ts +7 -0
- package/lib/table/hooks/useFilter/FilterWrapper.js +35 -0
- package/lib/table/hooks/useFilter/index.d.ts +23 -0
- package/lib/table/hooks/useFilter/index.js +232 -0
- package/lib/table/hooks/useLazyKVMap.d.ts +2 -0
- package/lib/table/hooks/useLazyKVMap.js +50 -0
- package/lib/table/hooks/usePagination.d.ts +4 -0
- package/lib/table/hooks/usePagination.js +126 -0
- package/lib/table/hooks/useSelection.d.ts +19 -0
- package/lib/table/hooks/useSelection.js +646 -0
- package/lib/table/hooks/useSorter.d.ts +24 -0
- package/lib/table/hooks/useSorter.js +395 -0
- package/lib/table/hooks/useTitleColumns.d.ts +2 -0
- package/lib/table/hooks/useTitleColumns.js +36 -0
- package/lib/table/index.d.ts +5 -0
- package/lib/table/index.js +13 -0
- package/lib/table/interface.d.ts +164 -0
- package/lib/table/interface.js +5 -0
- package/lib/table/style/bordered.less +136 -0
- package/lib/table/style/css.js +25 -0
- package/lib/table/style/index-pure.less +763 -0
- package/lib/table/style/index.css +845 -0
- package/lib/table/style/index.d.ts +12 -0
- package/lib/table/style/index.js +25 -0
- package/lib/table/style/index.less +3 -0
- package/lib/table/style/radius.less +49 -0
- package/lib/table/style/rtl.less +168 -0
- package/lib/table/style/size.less +51 -0
- package/lib/table/util.d.ts +14 -0
- package/lib/table/util.js +48 -0
- package/lib/tabs/TabPane.d.ts +5 -0
- package/lib/tabs/TabPane.js +17 -0
- package/lib/tabs/hooks/useAnimateConfig.d.ts +3 -0
- package/lib/tabs/hooks/useAnimateConfig.js +52 -0
- package/lib/tabs/hooks/useLegacyItems.d.ts +4 -0
- package/lib/tabs/hooks/useLegacyItems.js +65 -0
- package/lib/tabs/index.d.ts +21 -0
- package/lib/tabs/index.js +116 -0
- package/lib/tabs/style/card.less +98 -0
- package/lib/tabs/style/css.js +5 -0
- package/lib/tabs/style/dropdown.less +82 -0
- package/lib/tabs/style/index-pure.less +253 -0
- package/lib/tabs/style/index.css +630 -0
- package/lib/tabs/style/index.d.ts +2 -0
- package/lib/tabs/style/index.js +5 -0
- package/lib/tabs/style/index.less +3 -0
- package/lib/tabs/style/position.less +198 -0
- package/lib/tabs/style/rtl.less +86 -0
- package/lib/tabs/style/size.less +42 -0
- package/lib/tag/CheckableTag.d.ts +17 -0
- package/lib/tag/CheckableTag.js +62 -0
- package/lib/tag/index.d.ts +22 -0
- package/lib/tag/index.js +149 -0
- package/lib/tag/style/css.js +5 -0
- package/lib/tag/style/index-pure.less +129 -0
- package/lib/tag/style/index.css +247 -0
- package/lib/tag/style/index.d.ts +2 -0
- package/lib/tag/style/index.js +5 -0
- package/lib/tag/style/index.less +3 -0
- package/lib/tag/style/rtl.less +28 -0
- package/lib/time-picker/index.d.ts +33 -0
- package/lib/time-picker/index.js +80 -0
- package/lib/time-picker/locale/ar_EG.d.ts +3 -0
- package/lib/time-picker/locale/ar_EG.js +11 -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 +11 -0
- package/lib/time-picker/locale/bn_BD.d.ts +3 -0
- package/lib/time-picker/locale/bn_BD.js +12 -0
- package/lib/time-picker/locale/by_BY.d.ts +3 -0
- package/lib/time-picker/locale/by_BY.js +12 -0
- package/lib/time-picker/locale/ca_ES.d.ts +3 -0
- package/lib/time-picker/locale/ca_ES.js +11 -0
- package/lib/time-picker/locale/cs_CZ.d.ts +3 -0
- package/lib/time-picker/locale/cs_CZ.js +11 -0
- package/lib/time-picker/locale/da_DK.d.ts +3 -0
- package/lib/time-picker/locale/da_DK.js +12 -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 +11 -0
- package/lib/time-picker/locale/en_GB.d.ts +3 -0
- package/lib/time-picker/locale/en_GB.js +11 -0
- package/lib/time-picker/locale/en_US.d.ts +3 -0
- package/lib/time-picker/locale/en_US.js +12 -0
- package/lib/time-picker/locale/es_ES.d.ts +3 -0
- package/lib/time-picker/locale/es_ES.js +11 -0
- package/lib/time-picker/locale/et_EE.d.ts +3 -0
- package/lib/time-picker/locale/et_EE.js +11 -0
- package/lib/time-picker/locale/fa_IR.d.ts +3 -0
- package/lib/time-picker/locale/fa_IR.js +12 -0
- package/lib/time-picker/locale/fi_FI.d.ts +3 -0
- package/lib/time-picker/locale/fi_FI.js +11 -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 +12 -0
- package/lib/time-picker/locale/fr_FR.d.ts +3 -0
- package/lib/time-picker/locale/fr_FR.js +12 -0
- package/lib/time-picker/locale/ga_IE.d.ts +3 -0
- package/lib/time-picker/locale/ga_IE.js +12 -0
- package/lib/time-picker/locale/gl_ES.d.ts +3 -0
- package/lib/time-picker/locale/gl_ES.js +11 -0
- package/lib/time-picker/locale/he_IL.d.ts +3 -0
- package/lib/time-picker/locale/he_IL.js +11 -0
- package/lib/time-picker/locale/hi_IN.d.ts +3 -0
- package/lib/time-picker/locale/hi_IN.js +12 -0
- package/lib/time-picker/locale/hr_HR.d.ts +3 -0
- package/lib/time-picker/locale/hr_HR.js +12 -0
- package/lib/time-picker/locale/hu_HU.d.ts +3 -0
- package/lib/time-picker/locale/hu_HU.js +11 -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 +11 -0
- package/lib/time-picker/locale/it_IT.d.ts +3 -0
- package/lib/time-picker/locale/it_IT.js +11 -0
- package/lib/time-picker/locale/ja_JP.d.ts +3 -0
- package/lib/time-picker/locale/ja_JP.js +12 -0
- package/lib/time-picker/locale/ka_GE.d.ts +3 -0
- package/lib/time-picker/locale/ka_GE.js +12 -0
- package/lib/time-picker/locale/kk_KZ.d.ts +3 -0
- package/lib/time-picker/locale/kk_KZ.js +12 -0
- package/lib/time-picker/locale/km_KH.d.ts +3 -0
- package/lib/time-picker/locale/km_KH.js +12 -0
- package/lib/time-picker/locale/kmr_IQ.d.ts +3 -0
- package/lib/time-picker/locale/kmr_IQ.js +11 -0
- package/lib/time-picker/locale/kn_IN.d.ts +3 -0
- package/lib/time-picker/locale/kn_IN.js +11 -0
- package/lib/time-picker/locale/ko_KR.d.ts +3 -0
- package/lib/time-picker/locale/ko_KR.js +12 -0
- package/lib/time-picker/locale/lt_LT.d.ts +3 -0
- package/lib/time-picker/locale/lt_LT.js +12 -0
- package/lib/time-picker/locale/lv_LV.d.ts +3 -0
- package/lib/time-picker/locale/lv_LV.js +11 -0
- package/lib/time-picker/locale/mk_MK.d.ts +3 -0
- package/lib/time-picker/locale/mk_MK.js +11 -0
- package/lib/time-picker/locale/ml_IN.d.ts +3 -0
- package/lib/time-picker/locale/ml_IN.js +12 -0
- package/lib/time-picker/locale/mn_MN.d.ts +3 -0
- package/lib/time-picker/locale/mn_MN.js +11 -0
- package/lib/time-picker/locale/ms_MY.d.ts +3 -0
- package/lib/time-picker/locale/ms_MY.js +11 -0
- package/lib/time-picker/locale/nb_NO.d.ts +3 -0
- package/lib/time-picker/locale/nb_NO.js +12 -0
- package/lib/time-picker/locale/nl_BE.d.ts +3 -0
- package/lib/time-picker/locale/nl_BE.js +12 -0
- package/lib/time-picker/locale/nl_NL.d.ts +3 -0
- package/lib/time-picker/locale/nl_NL.js +12 -0
- package/lib/time-picker/locale/pl_PL.d.ts +3 -0
- package/lib/time-picker/locale/pl_PL.js +11 -0
- package/lib/time-picker/locale/pt_BR.d.ts +3 -0
- package/lib/time-picker/locale/pt_BR.js +11 -0
- package/lib/time-picker/locale/pt_PT.d.ts +3 -0
- package/lib/time-picker/locale/pt_PT.js +11 -0
- package/lib/time-picker/locale/ro_RO.d.ts +3 -0
- package/lib/time-picker/locale/ro_RO.js +11 -0
- package/lib/time-picker/locale/ru_RU.d.ts +4 -0
- package/lib/time-picker/locale/ru_RU.js +12 -0
- package/lib/time-picker/locale/si_LK.d.ts +3 -0
- package/lib/time-picker/locale/si_LK.js +12 -0
- package/lib/time-picker/locale/sk_SK.d.ts +3 -0
- package/lib/time-picker/locale/sk_SK.js +11 -0
- package/lib/time-picker/locale/sl_SI.d.ts +3 -0
- package/lib/time-picker/locale/sl_SI.js +11 -0
- package/lib/time-picker/locale/sr_RS.d.ts +3 -0
- package/lib/time-picker/locale/sr_RS.js +12 -0
- package/lib/time-picker/locale/sv_SE.d.ts +3 -0
- package/lib/time-picker/locale/sv_SE.js +11 -0
- package/lib/time-picker/locale/ta_IN.d.ts +3 -0
- package/lib/time-picker/locale/ta_IN.js +11 -0
- package/lib/time-picker/locale/th_TH.d.ts +3 -0
- package/lib/time-picker/locale/th_TH.js +11 -0
- package/lib/time-picker/locale/tk_TK.d.ts +3 -0
- package/lib/time-picker/locale/tk_TK.js +12 -0
- package/lib/time-picker/locale/tr_TR.d.ts +3 -0
- package/lib/time-picker/locale/tr_TR.js +12 -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 +12 -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 +12 -0
- package/lib/time-picker/locale/zh_TW.d.ts +3 -0
- package/lib/time-picker/locale/zh_TW.js +11 -0
- package/lib/time-picker/style/css.js +7 -0
- package/lib/time-picker/style/index-pure.less +3 -0
- package/lib/time-picker/style/index.css +4 -0
- package/lib/time-picker/style/index.d.ts +3 -0
- package/lib/time-picker/style/index.js +7 -0
- package/lib/time-picker/style/index.less +3 -0
- package/lib/timeline/Timeline.d.ts +18 -0
- package/lib/timeline/Timeline.js +112 -0
- package/lib/timeline/TimelineItem.d.ts +17 -0
- package/lib/timeline/TimelineItem.js +75 -0
- package/lib/timeline/index.d.ts +4 -0
- package/lib/timeline/index.js +13 -0
- package/lib/timeline/style/css.js +5 -0
- package/lib/timeline/style/index-pure.less +185 -0
- package/lib/timeline/style/index.css +236 -0
- package/lib/timeline/style/index.d.ts +2 -0
- package/lib/timeline/style/index.js +5 -0
- package/lib/timeline/style/index.less +3 -0
- package/lib/timeline/style/rtl.less +135 -0
- package/lib/tooltip/index.d.ts +70 -0
- package/lib/tooltip/index.js +278 -0
- package/lib/tooltip/style/css.js +5 -0
- package/lib/tooltip/style/index-pure.less +224 -0
- package/lib/tooltip/style/index.css +274 -0
- package/lib/tooltip/style/index.d.ts +2 -0
- package/lib/tooltip/style/index.js +5 -0
- package/lib/tooltip/style/index.less +3 -0
- package/lib/tooltip/style/rtl.less +14 -0
- package/lib/transfer/ListBody.d.ts +29 -0
- package/lib/transfer/ListBody.js +190 -0
- package/lib/transfer/ListItem.d.ts +15 -0
- package/lib/transfer/ListItem.js +86 -0
- package/lib/transfer/index.d.ts +140 -0
- package/lib/transfer/index.js +477 -0
- package/lib/transfer/interface.d.ts +6 -0
- package/lib/transfer/interface.js +5 -0
- package/lib/transfer/list.d.ts +75 -0
- package/lib/transfer/list.js +429 -0
- package/lib/transfer/operation.d.ts +17 -0
- package/lib/transfer/operation.js +53 -0
- package/lib/transfer/search.d.ts +10 -0
- package/lib/transfer/search.js +42 -0
- package/lib/transfer/style/css.js +17 -0
- package/lib/transfer/style/customize.less +52 -0
- package/lib/transfer/style/index-pure.less +222 -0
- package/lib/transfer/style/index.css +281 -0
- package/lib/transfer/style/index.d.ts +8 -0
- package/lib/transfer/style/index.js +17 -0
- package/lib/transfer/style/index.less +3 -0
- package/lib/transfer/style/rtl.less +71 -0
- package/lib/transfer/style/status.less +31 -0
- package/lib/tree/DirectoryTree.d.ts +20 -0
- package/lib/tree/DirectoryTree.js +218 -0
- package/lib/tree/Tree.d.ts +133 -0
- package/lib/tree/Tree.js +116 -0
- package/lib/tree/index.d.ts +19 -0
- package/lib/tree/index.js +20 -0
- package/lib/tree/style/css.js +5 -0
- package/lib/tree/style/directory.less +72 -0
- package/lib/tree/style/index-pure.less +16 -0
- package/lib/tree/style/index.css +532 -0
- package/lib/tree/style/index.d.ts +2 -0
- package/lib/tree/style/index.js +5 -0
- package/lib/tree/style/index.less +3 -0
- package/lib/tree/style/mixin.less +337 -0
- package/lib/tree/style/rtl.less +72 -0
- package/lib/tree/utils/dictUtil.d.ts +9 -0
- package/lib/tree/utils/dictUtil.js +95 -0
- package/lib/tree/utils/dropIndicator.d.ts +9 -0
- package/lib/tree/utils/dropIndicator.js +51 -0
- package/lib/tree/utils/iconUtil.d.ts +5 -0
- package/lib/tree/utils/iconUtil.js +96 -0
- package/lib/tree-select/index.d.ts +48 -0
- package/lib/tree-select/index.js +206 -0
- package/lib/tree-select/style/css.js +9 -0
- package/lib/tree-select/style/index-pure.less +57 -0
- package/lib/tree-select/style/index.css +481 -0
- package/lib/tree-select/style/index.d.ts +4 -0
- package/lib/tree-select/style/index.js +9 -0
- package/lib/tree-select/style/index.less +3 -0
- package/lib/typography/Base/Ellipsis.d.ts +15 -0
- package/lib/typography/Base/Ellipsis.js +214 -0
- package/lib/typography/Base/EllipsisTooltip.d.ts +13 -0
- package/lib/typography/Base/EllipsisTooltip.js +38 -0
- package/lib/typography/Base/index.d.ts +52 -0
- package/lib/typography/Base/index.js +565 -0
- package/lib/typography/Editable.d.ts +20 -0
- package/lib/typography/Editable.js +134 -0
- package/lib/typography/Link.d.ts +7 -0
- package/lib/typography/Link.js +53 -0
- package/lib/typography/Paragraph.d.ts +6 -0
- package/lib/typography/Paragraph.js +26 -0
- package/lib/typography/Text.d.ts +7 -0
- package/lib/typography/Text.js +59 -0
- package/lib/typography/Title.d.ts +8 -0
- package/lib/typography/Title.js +57 -0
- package/lib/typography/Typography.d.ts +17 -0
- package/lib/typography/Typography.js +79 -0
- package/lib/typography/hooks/useMergedConfig.d.ts +1 -0
- package/lib/typography/hooks/useMergedConfig.js +23 -0
- package/lib/typography/hooks/useUpdatedEffect.d.ts +4 -0
- package/lib/typography/hooks/useUpdatedEffect.js +26 -0
- package/lib/typography/index.d.ts +13 -0
- package/lib/typography/index.js +26 -0
- package/lib/typography/style/css.js +9 -0
- package/lib/typography/style/index-pure.less +314 -0
- package/lib/typography/style/index.css +369 -0
- package/lib/typography/style/index.d.ts +4 -0
- package/lib/typography/style/index.js +9 -0
- package/lib/typography/style/index.less +3 -0
- package/lib/typography/style/rtl.less +54 -0
- package/lib/upload/Dragger.d.ts +9 -0
- package/lib/upload/Dragger.js +51 -0
- package/lib/upload/Upload.d.ts +6 -0
- package/lib/upload/Upload.js +524 -0
- package/lib/upload/UploadList/ListItem.d.ts +27 -0
- package/lib/upload/UploadList/ListItem.js +235 -0
- package/lib/upload/UploadList/index.d.ts +4 -0
- package/lib/upload/UploadList/index.js +281 -0
- package/lib/upload/index.d.ts +14 -0
- package/lib/upload/index.js +20 -0
- package/lib/upload/interface.d.ts +134 -0
- package/lib/upload/interface.js +5 -0
- package/lib/upload/style/css.js +11 -0
- package/lib/upload/style/index-pure.less +565 -0
- package/lib/upload/style/index.css +588 -0
- package/lib/upload/style/index.d.ts +5 -0
- package/lib/upload/style/index.js +11 -0
- package/lib/upload/style/index.less +3 -0
- package/lib/upload/style/rtl.less +165 -0
- package/lib/upload/utils.d.ts +8 -0
- package/lib/upload/utils.js +160 -0
- package/lib/version/index.d.ts +2 -0
- package/lib/version/index.js +16 -0
- package/lib/version/style/css.js +3 -0
- package/lib/version/style/index.d.ts +1 -0
- package/lib/version/style/index.js +3 -0
- package/lib/version/token.d.ts +319 -0
- package/lib/version/token.js +325 -0
- package/lib/version/version.d.ts +2 -0
- package/lib/version/version.js +8 -0
- package/package.json +9 -3
@@ -0,0 +1,1139 @@
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
2
|
+
@import '../color/colors';
|
3
|
+
|
4
|
+
@theme: variable;
|
5
|
+
|
6
|
+
// The prefix to use on all css classes from ant.
|
7
|
+
@ant-prefix: ant;
|
8
|
+
|
9
|
+
// An override for the html selector for theme prefixes
|
10
|
+
@html-selector: html;
|
11
|
+
|
12
|
+
@{html-selector} {
|
13
|
+
@base-primary: @blue-6;
|
14
|
+
|
15
|
+
// ========= Primary Color =========
|
16
|
+
--@{ant-prefix}-primary-color: @base-primary;
|
17
|
+
--@{ant-prefix}-primary-color-hover: color(~`colorPalette('@{base-primary}', 5) `);
|
18
|
+
--@{ant-prefix}-primary-color-active: color(~`colorPalette('@{base-primary}', 7) `);
|
19
|
+
--@{ant-prefix}-primary-color-outline: fade(@base-primary, @outline-fade);
|
20
|
+
|
21
|
+
// Legacy
|
22
|
+
@legacy-primary-1: color(~`colorPalette('@{base-primary}', 1) `);
|
23
|
+
|
24
|
+
--@{ant-prefix}-primary-1: @legacy-primary-1;
|
25
|
+
--@{ant-prefix}-primary-2: color(~`colorPalette('@{base-primary}', 2) `);
|
26
|
+
--@{ant-prefix}-primary-3: color(~`colorPalette('@{base-primary}', 3) `);
|
27
|
+
--@{ant-prefix}-primary-4: color(~`colorPalette('@{base-primary}', 4) `);
|
28
|
+
--@{ant-prefix}-primary-5: color(~`colorPalette('@{base-primary}', 5) `);
|
29
|
+
--@{ant-prefix}-primary-6: @base-primary;
|
30
|
+
--@{ant-prefix}-primary-7: color(~`colorPalette('@{base-primary}', 7) `);
|
31
|
+
|
32
|
+
// Deprecated
|
33
|
+
--@{ant-prefix}-primary-color-deprecated-pure: ~'';
|
34
|
+
--@{ant-prefix}-primary-color-deprecated-l-35: lighten(@base-primary, 35%);
|
35
|
+
--@{ant-prefix}-primary-color-deprecated-l-20: lighten(@base-primary, 20%);
|
36
|
+
--@{ant-prefix}-primary-color-deprecated-t-20: tint(@base-primary, 20%);
|
37
|
+
--@{ant-prefix}-primary-color-deprecated-t-50: tint(@base-primary, 50%);
|
38
|
+
--@{ant-prefix}-primary-color-deprecated-f-12: fade(@base-primary, 12%);
|
39
|
+
--@{ant-prefix}-primary-color-active-deprecated-f-30: fade(@legacy-primary-1, 30%);
|
40
|
+
--@{ant-prefix}-primary-color-active-deprecated-d-02: darken(@legacy-primary-1, 2%);
|
41
|
+
|
42
|
+
// ========= Success Color =========
|
43
|
+
--@{ant-prefix}-success-color: @green-6;
|
44
|
+
--@{ant-prefix}-success-color-hover: color(~`colorPalette('@{green-6}', 5) `);
|
45
|
+
--@{ant-prefix}-success-color-active: color(~`colorPalette('@{green-6}', 7) `);
|
46
|
+
--@{ant-prefix}-success-color-outline: fade(@green-6, @outline-fade);
|
47
|
+
--@{ant-prefix}-success-color-deprecated-bg: ~`colorPalette('@{green-6}', 1) `;
|
48
|
+
--@{ant-prefix}-success-color-deprecated-border: ~`colorPalette('@{green-6}', 3) `;
|
49
|
+
|
50
|
+
// ========== Error Color ==========
|
51
|
+
--@{ant-prefix}-error-color: @red-5;
|
52
|
+
--@{ant-prefix}-error-color-hover: color(~`colorPalette('@{red-5}', 5) `);
|
53
|
+
--@{ant-prefix}-error-color-active: color(~`colorPalette('@{red-5}', 7) `);
|
54
|
+
--@{ant-prefix}-error-color-outline: fade(@red-5, @outline-fade);
|
55
|
+
--@{ant-prefix}-error-color-deprecated-bg: ~`colorPalette('@{red-5}', 1) `;
|
56
|
+
--@{ant-prefix}-error-color-deprecated-border: ~`colorPalette('@{red-5}', 3) `;
|
57
|
+
|
58
|
+
// ========= Warning Color =========
|
59
|
+
--@{ant-prefix}-warning-color: @gold-6;
|
60
|
+
--@{ant-prefix}-warning-color-hover: color(~`colorPalette('@{gold-6}', 5) `);
|
61
|
+
--@{ant-prefix}-warning-color-active: color(~`colorPalette('@{gold-6}', 7) `);
|
62
|
+
--@{ant-prefix}-warning-color-outline: fade(@gold-6, @outline-fade);
|
63
|
+
--@{ant-prefix}-warning-color-deprecated-bg: ~`colorPalette('@{gold-6}', 1) `;
|
64
|
+
--@{ant-prefix}-warning-color-deprecated-border: ~`colorPalette('@{gold-6}', 3) `;
|
65
|
+
|
66
|
+
// ========== Info Color ===========
|
67
|
+
--@{ant-prefix}-info-color: @base-primary;
|
68
|
+
--@{ant-prefix}-info-color-deprecated-bg: ~`colorPalette('@{base-primary}', 1) `;
|
69
|
+
--@{ant-prefix}-info-color-deprecated-border: ~`colorPalette('@{base-primary}', 3) `;
|
70
|
+
}
|
71
|
+
|
72
|
+
// -------- Colors -----------
|
73
|
+
// >>> Primary
|
74
|
+
@primary-color: ~'var(--@{ant-prefix}-primary-color)';
|
75
|
+
@primary-color-hover: ~'var(--@{ant-prefix}-primary-color-hover)';
|
76
|
+
@primary-color-active: ~'var(--@{ant-prefix}-primary-color-active)';
|
77
|
+
@primary-color-outline: ~'var(--@{ant-prefix}-primary-color-outline)';
|
78
|
+
|
79
|
+
@processing-color: @primary-color;
|
80
|
+
|
81
|
+
// >>> Info
|
82
|
+
@info-color: ~'var(--@{ant-prefix}-info-color)';
|
83
|
+
@info-color-deprecated-bg: ~'var(--@{ant-prefix}-info-color-deprecated-bg)';
|
84
|
+
@info-color-deprecated-border: ~'var(--@{ant-prefix}-info-color-deprecated-border)';
|
85
|
+
|
86
|
+
// >>> Success
|
87
|
+
@success-color: ~'var(--@{ant-prefix}-success-color)';
|
88
|
+
@success-color-hover: ~'var(--@{ant-prefix}-success-color-hover)';
|
89
|
+
@success-color-active: ~'var(--@{ant-prefix}-success-color-active)';
|
90
|
+
@success-color-outline: ~'var(--@{ant-prefix}-success-color-outline)';
|
91
|
+
@success-color-deprecated-bg: ~'var(--@{ant-prefix}-success-color-deprecated-bg)';
|
92
|
+
@success-color-deprecated-border: ~'var(--@{ant-prefix}-success-color-deprecated-border)';
|
93
|
+
|
94
|
+
// >>> Warning
|
95
|
+
@warning-color: ~'var(--@{ant-prefix}-warning-color)';
|
96
|
+
@warning-color-hover: ~'var(--@{ant-prefix}-warning-color-hover)';
|
97
|
+
@warning-color-active: ~'var(--@{ant-prefix}-warning-color-active)';
|
98
|
+
@warning-color-outline: ~'var(--@{ant-prefix}-warning-color-outline)';
|
99
|
+
@warning-color-deprecated-bg: ~'var(--@{ant-prefix}-warning-color-deprecated-bg)';
|
100
|
+
@warning-color-deprecated-border: ~'var(--@{ant-prefix}-warning-color-deprecated-border)';
|
101
|
+
|
102
|
+
// >>> Error
|
103
|
+
@error-color: ~'var(--@{ant-prefix}-error-color)';
|
104
|
+
@error-color-hover: ~'var(--@{ant-prefix}-error-color-hover)';
|
105
|
+
@error-color-active: ~'var(--@{ant-prefix}-error-color-active)';
|
106
|
+
@error-color-outline: ~'var(--@{ant-prefix}-error-color-outline)';
|
107
|
+
@error-color-deprecated-bg: ~'var(--@{ant-prefix}-error-color-deprecated-bg)';
|
108
|
+
@error-color-deprecated-border: ~'var(--@{ant-prefix}-error-color-deprecated-border)';
|
109
|
+
|
110
|
+
@highlight-color: @red-5;
|
111
|
+
@normal-color: #d9d9d9;
|
112
|
+
@white: #fff;
|
113
|
+
@black: #000;
|
114
|
+
|
115
|
+
// Color used by default to control hover and active backgrounds and for
|
116
|
+
// alert info backgrounds.
|
117
|
+
@primary-1: ~'var(--@{ant-prefix}-primary-1)'; // replace tint(@primary-color, 90%)
|
118
|
+
@primary-2: ~'var(--@{ant-prefix}-primary-2)'; // replace tint(@primary-color, 80%)
|
119
|
+
@primary-3: ~'var(--@{ant-prefix}-primary-3)'; // unused
|
120
|
+
@primary-4: ~'var(--@{ant-prefix}-primary-4)'; // unused
|
121
|
+
@primary-5: ~'var(--@{ant-prefix}-primary-5)'; // color used to control the text color in many active and hover states, replace tint(@primary-color, 20%)
|
122
|
+
@primary-6: ~'var(--@{ant-prefix}-primary-6)'; // color used to control the text color of active buttons, don't use, use @primary-color
|
123
|
+
@primary-7: ~'var(--@{ant-prefix}-primary-7)'; // replace shade(@primary-color, 5%)
|
124
|
+
@primary-8: color(~`colorPalette('@{primary-color}', 8) `); // unused
|
125
|
+
@primary-9: color(~`colorPalette('@{primary-color}', 9) `); // unused
|
126
|
+
@primary-10: color(~`colorPalette('@{primary-color}', 10) `); // unused
|
127
|
+
|
128
|
+
// Base Scaffolding Variables
|
129
|
+
// ---
|
130
|
+
|
131
|
+
// Background color for `<body>`
|
132
|
+
@body-background: #fff;
|
133
|
+
// Base background color for most components
|
134
|
+
@component-background: #fff;
|
135
|
+
// Popover background color
|
136
|
+
@popover-background: @component-background;
|
137
|
+
@popover-customize-border-color: @border-color-split;
|
138
|
+
@font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
139
|
+
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
140
|
+
'Noto Color Emoji';
|
141
|
+
@code-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
142
|
+
@text-color: fade(@black, 85%);
|
143
|
+
@text-color-secondary: fade(@black, 45%);
|
144
|
+
@text-color-inverse: @white;
|
145
|
+
@icon-color: inherit;
|
146
|
+
@icon-color-hover: fade(@black, 75%);
|
147
|
+
@heading-color: fade(@black, 85%);
|
148
|
+
@text-color-dark: fade(@white, 85%);
|
149
|
+
@text-color-secondary-dark: fade(@white, 65%);
|
150
|
+
@text-selection-bg: @primary-color;
|
151
|
+
@font-variant-base: tabular-nums;
|
152
|
+
@font-feature-settings-base: 'tnum';
|
153
|
+
@font-size-base: 14px;
|
154
|
+
@font-size-lg: @font-size-base + 2px;
|
155
|
+
@font-size-sm: 12px;
|
156
|
+
@heading-1-size: ceil(@font-size-base * 2.71);
|
157
|
+
@heading-2-size: ceil(@font-size-base * 2.14);
|
158
|
+
@heading-3-size: ceil(@font-size-base * 1.71);
|
159
|
+
@heading-4-size: ceil(@font-size-base * 1.42);
|
160
|
+
@heading-5-size: ceil(@font-size-base * 1.14);
|
161
|
+
// https://github.com/ant-design/ant-design/issues/20210
|
162
|
+
@line-height-base: 1.5715;
|
163
|
+
@border-radius-base: 2px;
|
164
|
+
@border-radius-sm: 2px;
|
165
|
+
|
166
|
+
// control border
|
167
|
+
@control-border-radius: @border-radius-base;
|
168
|
+
|
169
|
+
// arrow border
|
170
|
+
@arrow-border-radius: @border-radius-sm;
|
171
|
+
|
172
|
+
// vertical paddings
|
173
|
+
@padding-lg: 24px; // containers
|
174
|
+
@padding-md: 16px; // small containers and buttons
|
175
|
+
@padding-sm: 12px; // Form controls and items
|
176
|
+
@padding-xs: 8px; // small items
|
177
|
+
@padding-xss: 4px; // more small
|
178
|
+
|
179
|
+
// vertical padding for all form controls
|
180
|
+
@control-padding-horizontal: @padding-sm;
|
181
|
+
@control-padding-horizontal-sm: @padding-xs;
|
182
|
+
|
183
|
+
// vertical margins
|
184
|
+
@margin-lg: 24px; // containers
|
185
|
+
@margin-md: 16px; // small containers and buttons
|
186
|
+
@margin-sm: 12px; // Form controls and items
|
187
|
+
@margin-xs: 8px; // small items
|
188
|
+
@margin-xss: 4px; // more small
|
189
|
+
|
190
|
+
// height rules
|
191
|
+
@height-base: 32px;
|
192
|
+
@height-lg: 40px;
|
193
|
+
@height-sm: 24px;
|
194
|
+
|
195
|
+
// The background colors for active and hover states for things like
|
196
|
+
// list items or table cells.
|
197
|
+
@item-active-bg: @primary-1;
|
198
|
+
@item-hover-bg: #f5f5f5;
|
199
|
+
|
200
|
+
// ICONFONT
|
201
|
+
@iconfont-css-prefix: anticon;
|
202
|
+
|
203
|
+
// LINK
|
204
|
+
@link-color: @primary-color;
|
205
|
+
@link-hover-color: @primary-color-hover;
|
206
|
+
@link-active-color: @primary-color-active;
|
207
|
+
@link-decoration: none;
|
208
|
+
@link-hover-decoration: none;
|
209
|
+
@link-focus-decoration: none;
|
210
|
+
@link-focus-outline: 0;
|
211
|
+
|
212
|
+
// Animation
|
213
|
+
@ease-base-out: cubic-bezier(0.7, 0.3, 0.1, 1);
|
214
|
+
@ease-base-in: cubic-bezier(0.9, 0, 0.3, 0.7);
|
215
|
+
@ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
|
216
|
+
@ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
217
|
+
@ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
|
218
|
+
@ease-out-back: cubic-bezier(0.12, 0.4, 0.29, 1.46);
|
219
|
+
@ease-in-back: cubic-bezier(0.71, -0.46, 0.88, 0.6);
|
220
|
+
@ease-in-out-back: cubic-bezier(0.71, -0.46, 0.29, 1.46);
|
221
|
+
@ease-out-circ: cubic-bezier(0.08, 0.82, 0.17, 1);
|
222
|
+
@ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.34);
|
223
|
+
@ease-in-out-circ: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
224
|
+
@ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
|
225
|
+
@ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
226
|
+
@ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
|
227
|
+
|
228
|
+
// Border color
|
229
|
+
@border-color-base: hsv(0, 0, 85%); // base border outline a component
|
230
|
+
@border-color-split: rgba(0, 0, 0, 0.06); // split border inside a component
|
231
|
+
@border-color-inverse: @white;
|
232
|
+
@border-width-base: 1px; // width of the border for a component
|
233
|
+
@border-style-base: solid; // style of a components border
|
234
|
+
|
235
|
+
// Outline
|
236
|
+
@outline-blur-size: 0;
|
237
|
+
@outline-width: 2px;
|
238
|
+
@outline-color: @primary-color; // No use anymore
|
239
|
+
@outline-fade: 20%;
|
240
|
+
|
241
|
+
@background-color-light: hsv(0, 0, 98%); // background of header and selected item
|
242
|
+
@background-color-base: hsv(0, 0, 96%); // Default grey background color
|
243
|
+
|
244
|
+
// Disabled states
|
245
|
+
@disabled-color: fade(#000, 25%);
|
246
|
+
@disabled-bg: @background-color-base;
|
247
|
+
@disabled-active-bg: tint(@black, 90%);
|
248
|
+
@disabled-color-dark: fade(#fff, 35%);
|
249
|
+
|
250
|
+
// Shadow
|
251
|
+
@shadow-color: rgba(0, 0, 0, 0.15);
|
252
|
+
@shadow-color-inverse: @component-background;
|
253
|
+
@box-shadow-base: @shadow-2;
|
254
|
+
@shadow-1-up: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05),
|
255
|
+
0 -12px 48px 16px rgba(0, 0, 0, 0.03);
|
256
|
+
@shadow-1-down: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05),
|
257
|
+
0 12px 48px 16px rgba(0, 0, 0, 0.03);
|
258
|
+
@shadow-1-left: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05),
|
259
|
+
-12px 0 48px 16px rgba(0, 0, 0, 0.03);
|
260
|
+
@shadow-1-right: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05),
|
261
|
+
12px 0 48px 16px rgba(0, 0, 0, 0.03);
|
262
|
+
@shadow-2: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08),
|
263
|
+
0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
264
|
+
|
265
|
+
// Buttons
|
266
|
+
@btn-font-weight: 400;
|
267
|
+
@btn-border-radius-base: @border-radius-base;
|
268
|
+
@btn-border-radius-sm: @border-radius-base;
|
269
|
+
@btn-border-width: @border-width-base;
|
270
|
+
@btn-border-style: @border-style-base;
|
271
|
+
@btn-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
|
272
|
+
@btn-primary-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
273
|
+
@btn-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
|
274
|
+
|
275
|
+
@btn-primary-color: #fff;
|
276
|
+
@btn-primary-bg: @primary-color;
|
277
|
+
|
278
|
+
@btn-default-color: @text-color;
|
279
|
+
@btn-default-bg: @component-background;
|
280
|
+
@btn-default-border: @border-color-base;
|
281
|
+
|
282
|
+
@btn-danger-color: #fff;
|
283
|
+
@btn-danger-bg: @error-color;
|
284
|
+
@btn-danger-border: @error-color;
|
285
|
+
|
286
|
+
@btn-disable-color: @disabled-color;
|
287
|
+
@btn-disable-bg: @disabled-bg;
|
288
|
+
@btn-disable-border: @border-color-base;
|
289
|
+
|
290
|
+
@btn-default-ghost-color: @component-background;
|
291
|
+
@btn-default-ghost-bg: transparent;
|
292
|
+
@btn-default-ghost-border: @component-background;
|
293
|
+
|
294
|
+
@btn-font-size-lg: @font-size-lg;
|
295
|
+
@btn-font-size-sm: @font-size-base;
|
296
|
+
@btn-padding-horizontal-base: @padding-md - 1px;
|
297
|
+
@btn-padding-horizontal-lg: @btn-padding-horizontal-base;
|
298
|
+
@btn-padding-horizontal-sm: @padding-xs - 1px;
|
299
|
+
|
300
|
+
@btn-height-base: @height-base;
|
301
|
+
@btn-height-lg: @height-lg;
|
302
|
+
@btn-height-sm: @height-sm;
|
303
|
+
|
304
|
+
@btn-line-height: @line-height-base;
|
305
|
+
|
306
|
+
@btn-circle-size: @btn-height-base;
|
307
|
+
@btn-circle-size-lg: @btn-height-lg;
|
308
|
+
@btn-circle-size-sm: @btn-height-sm;
|
309
|
+
|
310
|
+
@btn-square-size: @btn-height-base;
|
311
|
+
@btn-square-size-lg: @btn-height-lg;
|
312
|
+
@btn-square-size-sm: @btn-height-sm;
|
313
|
+
@btn-square-only-icon-size: @font-size-base + 2px;
|
314
|
+
@btn-square-only-icon-size-sm: @font-size-base;
|
315
|
+
@btn-square-only-icon-size-lg: @btn-font-size-lg + 2px;
|
316
|
+
|
317
|
+
@btn-group-border: @primary-5;
|
318
|
+
|
319
|
+
@btn-link-hover-bg: transparent;
|
320
|
+
@btn-text-hover-bg: rgba(0, 0, 0, 0.018);
|
321
|
+
|
322
|
+
// Checkbox
|
323
|
+
@checkbox-size: 16px;
|
324
|
+
@checkbox-color: @primary-color;
|
325
|
+
@checkbox-check-color: #fff;
|
326
|
+
@checkbox-check-bg: @checkbox-check-color;
|
327
|
+
@checkbox-border-width: @border-width-base;
|
328
|
+
@checkbox-border-radius: @border-radius-base;
|
329
|
+
@checkbox-group-item-margin-right: 8px;
|
330
|
+
|
331
|
+
// Descriptions
|
332
|
+
@descriptions-bg: #fafafa;
|
333
|
+
@descriptions-title-margin-bottom: 20px;
|
334
|
+
@descriptions-default-padding: @padding-md @padding-lg;
|
335
|
+
@descriptions-middle-padding: @padding-sm @padding-lg;
|
336
|
+
@descriptions-small-padding: @padding-xs @padding-md;
|
337
|
+
@descriptions-item-padding-bottom: @padding-md;
|
338
|
+
@descriptions-item-trailing-colon: true;
|
339
|
+
@descriptions-item-label-colon-margin-right: 8px;
|
340
|
+
@descriptions-item-label-colon-margin-left: 2px;
|
341
|
+
@descriptions-extra-color: @text-color;
|
342
|
+
|
343
|
+
// Divider
|
344
|
+
@divider-text-padding: 1em;
|
345
|
+
@divider-orientation-margin: 5%;
|
346
|
+
@divider-color: rgba(0, 0, 0, 6%);
|
347
|
+
@divider-vertical-gutter: 8px;
|
348
|
+
|
349
|
+
// Dropdown
|
350
|
+
@dropdown-selected-color: @primary-color;
|
351
|
+
@dropdown-menu-submenu-disabled-bg: @component-background;
|
352
|
+
@dropdown-selected-bg: @item-active-bg;
|
353
|
+
|
354
|
+
// Empty
|
355
|
+
@empty-font-size: @font-size-base;
|
356
|
+
|
357
|
+
// Radio
|
358
|
+
@radio-size: 16px;
|
359
|
+
@radio-top: 0.2em;
|
360
|
+
@radio-border-width: 1px;
|
361
|
+
@radio-dot-size: @radio-size - 8px;
|
362
|
+
@radio-dot-color: @primary-color;
|
363
|
+
@radio-dot-disabled-color: fade(@black, 20%);
|
364
|
+
@radio-solid-checked-color: @component-background;
|
365
|
+
|
366
|
+
// Radio buttons
|
367
|
+
@radio-button-bg: @btn-default-bg;
|
368
|
+
@radio-button-checked-bg: @btn-default-bg;
|
369
|
+
@radio-button-color: @btn-default-color;
|
370
|
+
@radio-button-hover-color: @primary-5;
|
371
|
+
@radio-button-active-color: @primary-7;
|
372
|
+
@radio-button-padding-horizontal: @padding-md - 1px;
|
373
|
+
@radio-disabled-button-checked-bg: @disabled-active-bg;
|
374
|
+
@radio-disabled-button-checked-color: @disabled-color;
|
375
|
+
@radio-wrapper-margin-right: 8px;
|
376
|
+
|
377
|
+
// Media queries breakpoints
|
378
|
+
// @screen-xs and @screen-xs-min is not used in Grid
|
379
|
+
// smallest break point is @screen-md
|
380
|
+
@screen-xs: 480px;
|
381
|
+
@screen-xs-min: @screen-xs;
|
382
|
+
// 👆 Extra small screen / phone
|
383
|
+
|
384
|
+
// 👇 Small screen / tablet
|
385
|
+
@screen-sm: 576px;
|
386
|
+
@screen-sm-min: @screen-sm;
|
387
|
+
|
388
|
+
// Medium screen / desktop
|
389
|
+
@screen-md: 768px;
|
390
|
+
@screen-md-min: @screen-md;
|
391
|
+
|
392
|
+
// Large screen / wide desktop
|
393
|
+
@screen-lg: 992px;
|
394
|
+
@screen-lg-min: @screen-lg;
|
395
|
+
|
396
|
+
// Extra large screen / full hd
|
397
|
+
@screen-xl: 1200px;
|
398
|
+
@screen-xl-min: @screen-xl;
|
399
|
+
|
400
|
+
// Extra extra large screen / large desktop
|
401
|
+
@screen-xxl: 1600px;
|
402
|
+
@screen-xxl-min: @screen-xxl;
|
403
|
+
|
404
|
+
// provide a maximum
|
405
|
+
@screen-xs-max: (@screen-sm-min - 1px);
|
406
|
+
@screen-sm-max: (@screen-md-min - 1px);
|
407
|
+
@screen-md-max: (@screen-lg-min - 1px);
|
408
|
+
@screen-lg-max: (@screen-xl-min - 1px);
|
409
|
+
@screen-xl-max: (@screen-xxl-min - 1px);
|
410
|
+
|
411
|
+
// Grid system
|
412
|
+
@grid-columns: 24;
|
413
|
+
|
414
|
+
// Layout
|
415
|
+
@layout-body-background: #f0f2f5;
|
416
|
+
@layout-header-background: #001529;
|
417
|
+
@layout-header-height: 64px;
|
418
|
+
@layout-header-padding: 0 50px;
|
419
|
+
@layout-header-color: @text-color;
|
420
|
+
@layout-footer-padding: 24px 50px;
|
421
|
+
@layout-footer-background: @layout-body-background;
|
422
|
+
@layout-sider-background: @layout-header-background;
|
423
|
+
@layout-trigger-height: 48px;
|
424
|
+
@layout-trigger-background: #002140;
|
425
|
+
@layout-trigger-color: #fff;
|
426
|
+
@layout-zero-trigger-width: 36px;
|
427
|
+
@layout-zero-trigger-height: 42px;
|
428
|
+
// Layout light theme
|
429
|
+
@layout-sider-background-light: #fff;
|
430
|
+
@layout-trigger-background-light: #fff;
|
431
|
+
@layout-trigger-color-light: @text-color;
|
432
|
+
|
433
|
+
// z-index list, order by `z-index`
|
434
|
+
@zindex-badge: auto;
|
435
|
+
@zindex-table-fixed: 2;
|
436
|
+
@zindex-affix: 10;
|
437
|
+
@zindex-back-top: 10;
|
438
|
+
@zindex-picker-panel: 10;
|
439
|
+
@zindex-popup-close: 10;
|
440
|
+
@zindex-modal: 1000;
|
441
|
+
@zindex-modal-mask: 1000;
|
442
|
+
@zindex-message: 1010;
|
443
|
+
@zindex-notification: 1010;
|
444
|
+
@zindex-popover: 1030;
|
445
|
+
@zindex-dropdown: 1050;
|
446
|
+
@zindex-picker: 1050;
|
447
|
+
@zindex-popoconfirm: 1060;
|
448
|
+
@zindex-tooltip: 1070;
|
449
|
+
@zindex-image: 1080;
|
450
|
+
|
451
|
+
// Animation
|
452
|
+
@animation-duration-slow: 0.3s; // Modal
|
453
|
+
@animation-duration-base: 0.2s;
|
454
|
+
@animation-duration-fast: 0.1s; // Tooltip
|
455
|
+
|
456
|
+
//CollapsePanel
|
457
|
+
@collapse-panel-border-radius: @border-radius-base;
|
458
|
+
|
459
|
+
//Dropdown
|
460
|
+
@dropdown-menu-bg: @component-background;
|
461
|
+
@dropdown-vertical-padding: 5px;
|
462
|
+
@dropdown-edge-child-vertical-padding: 4px;
|
463
|
+
@dropdown-font-size: @font-size-base;
|
464
|
+
@dropdown-line-height: 22px;
|
465
|
+
|
466
|
+
// Form
|
467
|
+
// ---
|
468
|
+
@label-required-color: @highlight-color;
|
469
|
+
@label-color: @heading-color;
|
470
|
+
@form-warning-input-bg: @input-bg;
|
471
|
+
@form-item-margin-bottom: 24px;
|
472
|
+
@form-item-trailing-colon: true;
|
473
|
+
@form-vertical-label-padding: 0 0 8px;
|
474
|
+
@form-vertical-label-margin: 0;
|
475
|
+
@form-item-label-font-size: @font-size-base;
|
476
|
+
@form-item-label-height: @input-height-base;
|
477
|
+
@form-item-label-colon-margin-right: 8px;
|
478
|
+
@form-item-label-colon-margin-left: 2px;
|
479
|
+
@form-error-input-bg: @input-bg;
|
480
|
+
|
481
|
+
// Input
|
482
|
+
// ---
|
483
|
+
@input-height-base: @height-base;
|
484
|
+
@input-height-lg: @height-lg;
|
485
|
+
@input-height-sm: @height-sm;
|
486
|
+
@input-padding-horizontal: @control-padding-horizontal - 1px;
|
487
|
+
@input-padding-horizontal-base: @input-padding-horizontal;
|
488
|
+
@input-padding-horizontal-sm: @control-padding-horizontal-sm - 1px;
|
489
|
+
@input-padding-horizontal-lg: @input-padding-horizontal;
|
490
|
+
@input-padding-vertical-base: max(
|
491
|
+
(round(((@input-height-base - @font-size-base * @line-height-base) / 2) * 10) / 10) -
|
492
|
+
@border-width-base,
|
493
|
+
3px
|
494
|
+
);
|
495
|
+
@input-padding-vertical-sm: max(
|
496
|
+
(round(((@input-height-sm - @font-size-base * @line-height-base) / 2) * 10) / 10) -
|
497
|
+
@border-width-base,
|
498
|
+
0
|
499
|
+
);
|
500
|
+
@input-padding-vertical-lg: (
|
501
|
+
ceil(((@input-height-lg - @font-size-lg * @line-height-base) / 2) * 10) / 10
|
502
|
+
) - @border-width-base;
|
503
|
+
@input-placeholder-color: hsv(0, 0, 75%);
|
504
|
+
@input-color: @text-color;
|
505
|
+
@input-icon-color: @input-color;
|
506
|
+
@input-border-color: @border-color-base;
|
507
|
+
@input-bg: @component-background;
|
508
|
+
@input-number-hover-border-color: @input-hover-border-color;
|
509
|
+
@input-number-handler-active-bg: #f4f4f4;
|
510
|
+
@input-number-handler-hover-bg: @primary-5;
|
511
|
+
@input-number-handler-bg: @component-background;
|
512
|
+
@input-number-handler-border-color: @border-color-base;
|
513
|
+
@input-addon-bg: @background-color-light;
|
514
|
+
@input-hover-border-color: @primary-5;
|
515
|
+
@input-disabled-bg: @disabled-bg;
|
516
|
+
@input-outline-offset: 0 0;
|
517
|
+
@input-icon-hover-color: fade(@black, 85%);
|
518
|
+
@input-disabled-color: @disabled-color;
|
519
|
+
|
520
|
+
// Mentions
|
521
|
+
// ---
|
522
|
+
@mentions-dropdown-bg: @component-background;
|
523
|
+
@mentions-dropdown-menu-item-hover-bg: @mentions-dropdown-bg;
|
524
|
+
|
525
|
+
// Select
|
526
|
+
// ---
|
527
|
+
@select-border-color: @border-color-base;
|
528
|
+
@select-item-selected-color: @text-color;
|
529
|
+
@select-item-selected-font-weight: 600;
|
530
|
+
@select-dropdown-bg: @component-background;
|
531
|
+
@select-item-selected-bg: @primary-1;
|
532
|
+
@select-item-active-bg: @item-hover-bg;
|
533
|
+
@select-dropdown-vertical-padding: @dropdown-vertical-padding;
|
534
|
+
@select-dropdown-font-size: @dropdown-font-size;
|
535
|
+
@select-dropdown-line-height: @dropdown-line-height;
|
536
|
+
@select-dropdown-height: 32px;
|
537
|
+
@select-background: @component-background;
|
538
|
+
@select-clear-background: @select-background;
|
539
|
+
@select-selection-item-bg: @background-color-base;
|
540
|
+
@select-selection-item-border-color: @border-color-split;
|
541
|
+
@select-single-item-height-lg: 40px;
|
542
|
+
@select-multiple-item-height: @input-height-base - @input-padding-vertical-base * 2; // Normal 24px
|
543
|
+
@select-multiple-item-height-lg: 32px;
|
544
|
+
@select-multiple-item-spacing-half: ceil((@input-padding-vertical-base / 2));
|
545
|
+
@select-multiple-disabled-background: @input-disabled-bg;
|
546
|
+
@select-multiple-item-disabled-color: #bfbfbf;
|
547
|
+
@select-multiple-item-disabled-border-color: @select-border-color;
|
548
|
+
|
549
|
+
// Cascader
|
550
|
+
// ---
|
551
|
+
@cascader-bg: @component-background;
|
552
|
+
@cascader-item-selected-bg: @primary-1;
|
553
|
+
@cascader-menu-bg: @component-background;
|
554
|
+
@cascader-menu-border-color-split: @border-color-split;
|
555
|
+
|
556
|
+
// Cascader
|
557
|
+
// ----
|
558
|
+
@cascader-dropdown-vertical-padding: @dropdown-vertical-padding;
|
559
|
+
@cascader-dropdown-edge-child-vertical-padding: @dropdown-edge-child-vertical-padding;
|
560
|
+
@cascader-dropdown-font-size: @dropdown-font-size;
|
561
|
+
@cascader-dropdown-line-height: @dropdown-line-height;
|
562
|
+
|
563
|
+
// Anchor
|
564
|
+
// ---
|
565
|
+
@anchor-bg: transparent;
|
566
|
+
@anchor-border-color: @border-color-split;
|
567
|
+
@anchor-link-top: 4px;
|
568
|
+
@anchor-link-left: 16px;
|
569
|
+
@anchor-link-padding: @anchor-link-top 0 @anchor-link-top @anchor-link-left;
|
570
|
+
|
571
|
+
// Tooltip
|
572
|
+
// ---
|
573
|
+
// Tooltip max width
|
574
|
+
@tooltip-max-width: 250px;
|
575
|
+
// Tooltip text color
|
576
|
+
@tooltip-color: #fff;
|
577
|
+
// Tooltip background color
|
578
|
+
@tooltip-bg: rgba(0, 0, 0, 0.75);
|
579
|
+
// Tooltip arrow width
|
580
|
+
@tooltip-arrow-width: 8px * sqrt(2);
|
581
|
+
// Tooltip distance with trigger
|
582
|
+
@tooltip-distance: @tooltip-arrow-width - 1px + 4px;
|
583
|
+
// Tooltip arrow color
|
584
|
+
@tooltip-arrow-color: @tooltip-bg;
|
585
|
+
@tooltip-border-radius: @border-radius-base;
|
586
|
+
|
587
|
+
// Popover
|
588
|
+
// ---
|
589
|
+
// Popover body background color
|
590
|
+
@popover-bg: @component-background;
|
591
|
+
// Popover text color
|
592
|
+
@popover-color: @text-color;
|
593
|
+
// Popover maximum width
|
594
|
+
@popover-min-width: 177px;
|
595
|
+
@popover-min-height: 32px;
|
596
|
+
// Popover arrow width
|
597
|
+
@popover-arrow-width: @tooltip-arrow-width;
|
598
|
+
// Popover arrow color
|
599
|
+
@popover-arrow-color: @popover-bg;
|
600
|
+
// Popover outer arrow width
|
601
|
+
// Popover outer arrow color
|
602
|
+
@popover-arrow-outer-color: @popover-bg;
|
603
|
+
// Popover distance with trigger
|
604
|
+
@popover-distance: @popover-arrow-width + 4px;
|
605
|
+
@popover-padding-horizontal: @padding-md;
|
606
|
+
|
607
|
+
// Modal
|
608
|
+
// --
|
609
|
+
@modal-header-padding-vertical: @padding-md;
|
610
|
+
@modal-header-padding-horizontal: @padding-lg;
|
611
|
+
@modal-body-padding: @padding-lg;
|
612
|
+
@modal-header-bg: @component-background;
|
613
|
+
@modal-header-padding: @modal-header-padding-vertical @modal-header-padding-horizontal;
|
614
|
+
@modal-header-border-width: @border-width-base;
|
615
|
+
@modal-header-border-style: @border-style-base;
|
616
|
+
@modal-header-title-line-height: 22px;
|
617
|
+
@modal-header-title-font-size: @font-size-lg;
|
618
|
+
@modal-header-border-color-split: @border-color-split;
|
619
|
+
@modal-header-close-size: @modal-header-title-line-height + 2 * @modal-header-padding-vertical;
|
620
|
+
@modal-content-bg: @component-background;
|
621
|
+
@modal-heading-color: @heading-color;
|
622
|
+
@modal-close-color: @text-color-secondary;
|
623
|
+
@modal-footer-bg: transparent;
|
624
|
+
@modal-footer-border-color-split: @border-color-split;
|
625
|
+
@modal-footer-border-style: @border-style-base;
|
626
|
+
@modal-footer-padding-vertical: 10px;
|
627
|
+
@modal-footer-padding-horizontal: 16px;
|
628
|
+
@modal-footer-border-width: @border-width-base;
|
629
|
+
@modal-mask-bg: fade(@black, 45%);
|
630
|
+
@modal-confirm-body-padding: 32px 32px 24px;
|
631
|
+
@modal-confirm-title-font-size: @font-size-lg;
|
632
|
+
@modal-border-radius: @border-radius-base;
|
633
|
+
|
634
|
+
// Progress
|
635
|
+
// --
|
636
|
+
@progress-default-color: @processing-color;
|
637
|
+
@progress-remaining-color: rgba(0, 0, 0, 0.04);
|
638
|
+
@progress-info-text-color: @progress-text-color;
|
639
|
+
@progress-radius: 100px;
|
640
|
+
@progress-steps-item-bg: #f3f3f3;
|
641
|
+
@progress-text-font-size: 1em;
|
642
|
+
@progress-text-color: @text-color; // This is for circle text color, should be renamed better
|
643
|
+
@progress-circle-text-font-size: 1em;
|
644
|
+
// Menu
|
645
|
+
// ---
|
646
|
+
@menu-inline-toplevel-item-height: 40px;
|
647
|
+
@menu-item-height: 40px;
|
648
|
+
@menu-item-group-height: @line-height-base;
|
649
|
+
@menu-collapsed-width: 80px;
|
650
|
+
@menu-bg: @component-background;
|
651
|
+
@menu-popup-bg: @component-background;
|
652
|
+
@menu-item-color: @text-color;
|
653
|
+
@menu-inline-submenu-bg: @background-color-light;
|
654
|
+
@menu-highlight-color: @primary-color;
|
655
|
+
@menu-highlight-danger-color: @error-color;
|
656
|
+
@menu-item-active-bg: @primary-1;
|
657
|
+
@menu-item-active-danger-bg: @red-1;
|
658
|
+
@menu-item-active-border-width: 3px;
|
659
|
+
@menu-item-group-title-color: @text-color-secondary;
|
660
|
+
@menu-item-vertical-margin: 4px;
|
661
|
+
@menu-item-font-size: @font-size-base;
|
662
|
+
@menu-item-boundary-margin: 8px;
|
663
|
+
@menu-item-padding-horizontal: 20px;
|
664
|
+
@menu-item-padding: 0 @menu-item-padding-horizontal;
|
665
|
+
@menu-horizontal-line-height: 46px;
|
666
|
+
@menu-icon-margin-right: 10px;
|
667
|
+
@menu-icon-size: @menu-item-font-size;
|
668
|
+
@menu-icon-size-lg: @font-size-lg;
|
669
|
+
@menu-item-group-title-font-size: @menu-item-font-size;
|
670
|
+
|
671
|
+
// dark theme
|
672
|
+
@menu-dark-color: @text-color-secondary-dark;
|
673
|
+
@menu-dark-danger-color: @error-color;
|
674
|
+
@menu-dark-bg: @layout-header-background;
|
675
|
+
@menu-dark-arrow-color: #fff;
|
676
|
+
@menu-dark-inline-submenu-bg: #000c17;
|
677
|
+
@menu-dark-highlight-color: #fff;
|
678
|
+
@menu-dark-item-active-bg: @primary-color;
|
679
|
+
@menu-dark-item-active-danger-bg: @error-color;
|
680
|
+
@menu-dark-selected-item-icon-color: @white;
|
681
|
+
@menu-dark-selected-item-text-color: @white;
|
682
|
+
@menu-dark-item-hover-bg: transparent;
|
683
|
+
// Spin
|
684
|
+
// ---
|
685
|
+
@spin-dot-size-sm: 14px;
|
686
|
+
@spin-dot-size: 20px;
|
687
|
+
@spin-dot-size-lg: 32px;
|
688
|
+
|
689
|
+
// Table
|
690
|
+
// --
|
691
|
+
@table-bg: @component-background;
|
692
|
+
@table-header-bg: @background-color-light;
|
693
|
+
@table-header-color: @heading-color;
|
694
|
+
@table-header-sort-bg: @background-color-base;
|
695
|
+
@table-body-sort-bg: #fafafa;
|
696
|
+
@table-row-hover-bg: @background-color-light;
|
697
|
+
@table-selected-row-color: inherit;
|
698
|
+
@table-selected-row-bg: @primary-1;
|
699
|
+
@table-body-selected-sort-bg: @table-selected-row-bg;
|
700
|
+
@table-selected-row-hover-bg: ~'var(--@{ant-prefix}-primary-color-active-deprecated-d-02)';
|
701
|
+
@table-expanded-row-bg: #fbfbfb;
|
702
|
+
@table-padding-vertical: 16px;
|
703
|
+
@table-padding-horizontal: 16px;
|
704
|
+
@table-padding-vertical-md: (@table-padding-vertical * 3 / 4);
|
705
|
+
@table-padding-horizontal-md: (@table-padding-horizontal / 2);
|
706
|
+
@table-padding-vertical-sm: (@table-padding-vertical / 2);
|
707
|
+
@table-padding-horizontal-sm: (@table-padding-horizontal / 2);
|
708
|
+
@table-border-color: @border-color-split;
|
709
|
+
@table-border-radius-base: @border-radius-base;
|
710
|
+
@table-footer-bg: @background-color-light;
|
711
|
+
@table-footer-color: @heading-color;
|
712
|
+
@table-header-bg-sm: @table-header-bg;
|
713
|
+
@table-font-size: @font-size-base;
|
714
|
+
@table-font-size-md: @table-font-size;
|
715
|
+
@table-font-size-sm: @table-font-size;
|
716
|
+
@table-header-cell-split-color: rgba(0, 0, 0, 0.06);
|
717
|
+
// Sorter
|
718
|
+
// Legacy: `table-header-sort-active-bg` is used for hover not real active
|
719
|
+
@table-header-sort-active-bg: rgba(0, 0, 0, 0.04);
|
720
|
+
@table-fixed-header-sort-active-bg: hsv(0, 0, 96%);
|
721
|
+
|
722
|
+
// Filter
|
723
|
+
@table-header-filter-active-bg: rgba(0, 0, 0, 0.04);
|
724
|
+
@table-filter-btns-bg: inherit;
|
725
|
+
@table-filter-dropdown-bg: @component-background;
|
726
|
+
@table-expand-icon-bg: @component-background;
|
727
|
+
@table-selection-column-width: 32px;
|
728
|
+
// Sticky
|
729
|
+
@table-sticky-scroll-bar-bg: fade(#000, 35%);
|
730
|
+
@table-sticky-scroll-bar-radius: 4px;
|
731
|
+
|
732
|
+
// Tag
|
733
|
+
// --
|
734
|
+
@tag-border-radius: @border-radius-base;
|
735
|
+
@tag-default-bg: @background-color-light;
|
736
|
+
@tag-default-color: @text-color;
|
737
|
+
@tag-font-size: @font-size-sm;
|
738
|
+
@tag-line-height: 20px;
|
739
|
+
|
740
|
+
// TimePicker
|
741
|
+
// ---
|
742
|
+
@picker-bg: @component-background;
|
743
|
+
@picker-basic-cell-hover-color: @item-hover-bg;
|
744
|
+
@picker-basic-cell-active-with-range-color: @primary-1;
|
745
|
+
@picker-basic-cell-hover-with-range-color: ~'var(--@{ant-prefix}-primary-color-deprecated-l-35)';
|
746
|
+
@picker-basic-cell-disabled-bg: rgba(0, 0, 0, 0.04);
|
747
|
+
@picker-border-color: @border-color-split;
|
748
|
+
@picker-date-hover-range-border-color: ~'var(--@{ant-prefix}-primary-color-deprecated-l-20)';
|
749
|
+
@picker-date-hover-range-color: @picker-basic-cell-hover-with-range-color;
|
750
|
+
@picker-time-panel-column-width: 56px;
|
751
|
+
@picker-time-panel-column-height: 224px;
|
752
|
+
@picker-time-panel-cell-height: 28px;
|
753
|
+
@picker-panel-cell-height: 24px;
|
754
|
+
@picker-panel-cell-width: 36px;
|
755
|
+
@picker-text-height: 40px;
|
756
|
+
@picker-panel-without-time-cell-height: 66px;
|
757
|
+
|
758
|
+
// Calendar
|
759
|
+
// ---
|
760
|
+
@calendar-bg: @component-background;
|
761
|
+
@calendar-input-bg: @input-bg;
|
762
|
+
@calendar-border-color: @border-color-inverse;
|
763
|
+
@calendar-item-active-bg: @item-active-bg;
|
764
|
+
@calendar-column-active-bg: ~'var(--@{ant-prefix}-primary-color-active-deprecated-f-30)';
|
765
|
+
@calendar-full-bg: @calendar-bg;
|
766
|
+
@calendar-full-panel-bg: @calendar-full-bg;
|
767
|
+
|
768
|
+
// Carousel
|
769
|
+
// ---
|
770
|
+
@carousel-dot-width: 16px;
|
771
|
+
@carousel-dot-height: 3px;
|
772
|
+
@carousel-dot-active-width: 24px;
|
773
|
+
|
774
|
+
// Badge
|
775
|
+
// ---
|
776
|
+
@badge-height: 20px;
|
777
|
+
@badge-height-sm: 14px;
|
778
|
+
@badge-dot-size: 6px;
|
779
|
+
@badge-font-size: @font-size-sm;
|
780
|
+
@badge-font-size-sm: @font-size-sm;
|
781
|
+
@badge-font-weight: normal;
|
782
|
+
@badge-status-size: 6px;
|
783
|
+
@badge-text-color: @component-background;
|
784
|
+
@badge-color: @highlight-color;
|
785
|
+
|
786
|
+
// Rate
|
787
|
+
// ---
|
788
|
+
@rate-star-color: @yellow-6;
|
789
|
+
@rate-star-bg: @border-color-split;
|
790
|
+
@rate-star-size: 20px;
|
791
|
+
@rate-star-hover-scale: scale(1.1);
|
792
|
+
|
793
|
+
// Card
|
794
|
+
// ---
|
795
|
+
@card-head-color: @heading-color;
|
796
|
+
@card-head-background: transparent;
|
797
|
+
@card-head-font-size: @font-size-lg;
|
798
|
+
@card-head-font-size-sm: @font-size-base;
|
799
|
+
@card-head-padding: 16px;
|
800
|
+
@card-head-padding-sm: (@card-head-padding / 2);
|
801
|
+
@card-head-height: 48px;
|
802
|
+
@card-head-height-sm: 36px;
|
803
|
+
@card-inner-head-padding: 12px;
|
804
|
+
@card-padding-base: 24px;
|
805
|
+
@card-padding-base-sm: (@card-padding-base / 2);
|
806
|
+
@card-actions-background: @component-background;
|
807
|
+
@card-actions-li-margin: 12px 0;
|
808
|
+
@card-skeleton-bg: #cfd8dc;
|
809
|
+
@card-background: @component-background;
|
810
|
+
@card-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12),
|
811
|
+
0 5px 12px 4px rgba(0, 0, 0, 0.09);
|
812
|
+
@card-radius: @border-radius-base;
|
813
|
+
@card-head-tabs-margin-bottom: -17px;
|
814
|
+
@card-head-extra-color: @text-color;
|
815
|
+
|
816
|
+
// Comment
|
817
|
+
// ---
|
818
|
+
@comment-bg: inherit;
|
819
|
+
@comment-padding-base: @padding-md 0;
|
820
|
+
@comment-nest-indent: 44px;
|
821
|
+
@comment-font-size-base: @font-size-base;
|
822
|
+
@comment-font-size-sm: @font-size-sm;
|
823
|
+
@comment-author-name-color: @text-color-secondary;
|
824
|
+
@comment-author-time-color: #ccc;
|
825
|
+
@comment-action-color: @text-color-secondary;
|
826
|
+
@comment-action-hover-color: #595959;
|
827
|
+
@comment-actions-margin-bottom: inherit;
|
828
|
+
@comment-actions-margin-top: @margin-sm;
|
829
|
+
@comment-content-detail-p-margin-bottom: inherit;
|
830
|
+
|
831
|
+
// Tabs
|
832
|
+
// ---
|
833
|
+
@tabs-card-head-background: @background-color-light;
|
834
|
+
@tabs-card-height: 40px;
|
835
|
+
@tabs-card-active-color: @primary-color;
|
836
|
+
@tabs-card-horizontal-padding: (
|
837
|
+
(@tabs-card-height - floor(@font-size-base * @line-height-base)) / 2
|
838
|
+
) - @border-width-base @padding-md;
|
839
|
+
@tabs-card-horizontal-padding-sm: 6px @padding-md;
|
840
|
+
@tabs-card-horizontal-padding-lg: 7px @padding-md 6px;
|
841
|
+
@tabs-title-font-size: @font-size-base;
|
842
|
+
@tabs-title-font-size-lg: @font-size-lg;
|
843
|
+
@tabs-title-font-size-sm: @font-size-base;
|
844
|
+
@tabs-ink-bar-color: @primary-color;
|
845
|
+
@tabs-bar-margin: 0 0 @margin-md 0;
|
846
|
+
@tabs-horizontal-gutter: 32px;
|
847
|
+
@tabs-horizontal-margin: 0 0 0 @tabs-horizontal-gutter;
|
848
|
+
@tabs-horizontal-margin-rtl: 0 0 0 32px;
|
849
|
+
@tabs-horizontal-padding: @padding-sm 0;
|
850
|
+
@tabs-horizontal-padding-lg: @padding-md 0;
|
851
|
+
@tabs-horizontal-padding-sm: @padding-xs 0;
|
852
|
+
@tabs-vertical-padding: @padding-xs @padding-lg;
|
853
|
+
@tabs-vertical-margin: @margin-md 0 0 0;
|
854
|
+
@tabs-scrolling-size: 32px;
|
855
|
+
@tabs-highlight-color: @primary-color;
|
856
|
+
@tabs-hover-color: @primary-5;
|
857
|
+
@tabs-active-color: @primary-7;
|
858
|
+
@tabs-card-gutter: 2px;
|
859
|
+
@tabs-card-tab-active-border-top: 2px solid transparent;
|
860
|
+
|
861
|
+
// BackTop
|
862
|
+
// ---
|
863
|
+
@back-top-color: #fff;
|
864
|
+
@back-top-bg: @text-color-secondary;
|
865
|
+
@back-top-hover-bg: @text-color;
|
866
|
+
|
867
|
+
// Avatar
|
868
|
+
// ---
|
869
|
+
@avatar-size-base: 32px;
|
870
|
+
@avatar-size-lg: 40px;
|
871
|
+
@avatar-size-sm: 24px;
|
872
|
+
@avatar-font-size-base: 18px;
|
873
|
+
@avatar-font-size-lg: 24px;
|
874
|
+
@avatar-font-size-sm: 14px;
|
875
|
+
@avatar-bg: #ccc;
|
876
|
+
@avatar-color: #fff;
|
877
|
+
@avatar-border-radius: @border-radius-base;
|
878
|
+
@avatar-group-overlapping: -8px;
|
879
|
+
@avatar-group-space: 3px;
|
880
|
+
@avatar-group-border-color: #fff;
|
881
|
+
|
882
|
+
// Switch
|
883
|
+
// ---
|
884
|
+
@switch-height: 22px;
|
885
|
+
@switch-sm-height: 16px;
|
886
|
+
@switch-min-width: 44px;
|
887
|
+
@switch-sm-min-width: 28px;
|
888
|
+
@switch-disabled-opacity: 0.4;
|
889
|
+
@switch-color: @primary-color;
|
890
|
+
@switch-bg: @component-background;
|
891
|
+
@switch-shadow-color: fade(#00230b, 20%);
|
892
|
+
@switch-padding: 2px;
|
893
|
+
@switch-inner-margin-min: ceil(@switch-height * 0.3);
|
894
|
+
@switch-inner-margin-max: ceil(@switch-height * 1.1);
|
895
|
+
@switch-sm-inner-margin-min: ceil(@switch-sm-height * 0.3);
|
896
|
+
@switch-sm-inner-margin-max: ceil(@switch-sm-height * 1.1);
|
897
|
+
|
898
|
+
// Pagination
|
899
|
+
// ---
|
900
|
+
@pagination-item-bg: @component-background;
|
901
|
+
@pagination-item-size: @height-base;
|
902
|
+
@pagination-item-size-sm: 24px;
|
903
|
+
@pagination-font-family: @font-family;
|
904
|
+
@pagination-font-weight-active: 500;
|
905
|
+
@pagination-item-bg-active: @component-background;
|
906
|
+
@pagination-item-link-bg: @component-background;
|
907
|
+
@pagination-item-disabled-color-active: @disabled-color;
|
908
|
+
@pagination-item-disabled-bg-active: @disabled-active-bg;
|
909
|
+
@pagination-item-input-bg: @component-background;
|
910
|
+
@pagination-mini-options-size-changer-top: 0px;
|
911
|
+
|
912
|
+
// PageHeader
|
913
|
+
// ---
|
914
|
+
@page-header-padding: @padding-lg;
|
915
|
+
@page-header-padding-vertical: @padding-md;
|
916
|
+
@page-header-padding-breadcrumb: @padding-sm;
|
917
|
+
@page-header-content-padding-vertical: @padding-sm;
|
918
|
+
@page-header-back-color: #000;
|
919
|
+
@page-header-ghost-bg: inherit;
|
920
|
+
@page-header-heading-title: @heading-4-size;
|
921
|
+
@page-header-heading-sub-title: 14px;
|
922
|
+
@page-header-tabs-tab-font-size: 16px;
|
923
|
+
|
924
|
+
// Breadcrumb
|
925
|
+
// ---
|
926
|
+
@breadcrumb-base-color: @text-color-secondary;
|
927
|
+
@breadcrumb-last-item-color: @text-color;
|
928
|
+
@breadcrumb-font-size: @font-size-base;
|
929
|
+
@breadcrumb-icon-font-size: @font-size-base;
|
930
|
+
@breadcrumb-link-color: @text-color-secondary;
|
931
|
+
@breadcrumb-link-color-hover: @text-color;
|
932
|
+
@breadcrumb-separator-color: @text-color-secondary;
|
933
|
+
@breadcrumb-separator-margin: 0 @padding-xs;
|
934
|
+
|
935
|
+
// Slider
|
936
|
+
// ---
|
937
|
+
@slider-margin: 10px 6px 10px;
|
938
|
+
@slider-rail-background-color: @background-color-base;
|
939
|
+
@slider-rail-background-color-hover: #e1e1e1;
|
940
|
+
@slider-track-background-color: @primary-3;
|
941
|
+
@slider-track-background-color-hover: @primary-4;
|
942
|
+
@slider-handle-border-width: 2px;
|
943
|
+
@slider-handle-background-color: @component-background;
|
944
|
+
@slider-handle-color: @primary-3;
|
945
|
+
@slider-handle-color-hover: @primary-4;
|
946
|
+
@slider-handle-color-focus: ~'var(--@{ant-prefix}-primary-color-deprecated-t-20)';
|
947
|
+
@slider-handle-color-focus-shadow: ~'var(--@{ant-prefix}-primary-color-deprecated-f-12)';
|
948
|
+
@slider-handle-color-tooltip-open: @primary-color;
|
949
|
+
@slider-handle-size: 14px;
|
950
|
+
@slider-handle-margin-top: -5px;
|
951
|
+
@slider-handle-margin-left: -5px;
|
952
|
+
@slider-handle-shadow: 0;
|
953
|
+
@slider-dot-border-color: @border-color-split;
|
954
|
+
@slider-dot-border-color-active: ~'var(--@{ant-prefix}-primary-color-deprecated-t-50)';
|
955
|
+
@slider-disabled-color: @disabled-color;
|
956
|
+
@slider-disabled-background-color: @component-background;
|
957
|
+
|
958
|
+
// Tree
|
959
|
+
// ---
|
960
|
+
@tree-bg: @component-background;
|
961
|
+
@tree-title-height: 24px;
|
962
|
+
@tree-child-padding: 18px;
|
963
|
+
@tree-directory-selected-color: #fff;
|
964
|
+
@tree-directory-selected-bg: @primary-color;
|
965
|
+
@tree-node-hover-bg: @item-hover-bg;
|
966
|
+
@tree-node-selected-bg: @primary-2;
|
967
|
+
|
968
|
+
// Collapse
|
969
|
+
// ---
|
970
|
+
@collapse-header-padding: @padding-sm @padding-md;
|
971
|
+
@collapse-header-padding-extra: 40px;
|
972
|
+
@collapse-header-bg: @background-color-light;
|
973
|
+
@collapse-content-padding: @padding-md;
|
974
|
+
@collapse-content-bg: @component-background;
|
975
|
+
@collapse-header-arrow-left: 16px;
|
976
|
+
|
977
|
+
// Skeleton
|
978
|
+
// ---
|
979
|
+
@skeleton-color: rgba(190, 190, 190, 0.2);
|
980
|
+
@skeleton-to-color: shade(@skeleton-color, 5%);
|
981
|
+
@skeleton-paragraph-margin-top: 28px;
|
982
|
+
@skeleton-paragraph-li-margin-top: @margin-md;
|
983
|
+
@skeleton-paragraph-li-height: 16px;
|
984
|
+
@skeleton-title-height: 16px;
|
985
|
+
@skeleton-title-paragraph-margin-top: @margin-lg;
|
986
|
+
|
987
|
+
// Transfer
|
988
|
+
// ---
|
989
|
+
@transfer-header-height: 40px;
|
990
|
+
@transfer-item-height: @height-base;
|
991
|
+
@transfer-disabled-bg: @disabled-bg;
|
992
|
+
@transfer-list-height: 200px;
|
993
|
+
@transfer-item-hover-bg: @item-hover-bg;
|
994
|
+
@transfer-item-selected-hover-bg: ~'var(--@{ant-prefix}-primary-color-active-deprecated-d-02)';
|
995
|
+
@transfer-item-padding-vertical: 6px;
|
996
|
+
@transfer-list-search-icon-top: 12px;
|
997
|
+
|
998
|
+
// Message
|
999
|
+
// ---
|
1000
|
+
@message-notice-content-padding: 10px 16px;
|
1001
|
+
@message-notice-content-bg: @component-background;
|
1002
|
+
// Motion
|
1003
|
+
// ---
|
1004
|
+
@wave-animation-width: 6px;
|
1005
|
+
|
1006
|
+
// Alert
|
1007
|
+
// ---
|
1008
|
+
@alert-success-border-color: @success-color-deprecated-border;
|
1009
|
+
@alert-success-bg-color: @success-color-deprecated-bg;
|
1010
|
+
@alert-success-icon-color: @success-color;
|
1011
|
+
@alert-info-border-color: @info-color-deprecated-border;
|
1012
|
+
@alert-info-bg-color: @info-color-deprecated-bg;
|
1013
|
+
@alert-info-icon-color: @info-color;
|
1014
|
+
@alert-warning-border-color: @warning-color-deprecated-border;
|
1015
|
+
@alert-warning-bg-color: @warning-color-deprecated-bg;
|
1016
|
+
@alert-warning-icon-color: @warning-color;
|
1017
|
+
@alert-error-border-color: @error-color-deprecated-border;
|
1018
|
+
@alert-error-bg-color: @error-color-deprecated-bg;
|
1019
|
+
@alert-error-icon-color: @error-color;
|
1020
|
+
@alert-message-color: @heading-color;
|
1021
|
+
@alert-text-color: @text-color;
|
1022
|
+
@alert-close-color: @text-color-secondary;
|
1023
|
+
@alert-close-hover-color: @icon-color-hover;
|
1024
|
+
@alert-padding-vertical: @padding-xs;
|
1025
|
+
@alert-padding-horizontal: @padding-md - 1px;
|
1026
|
+
@alert-no-icon-padding-vertical: @padding-xs;
|
1027
|
+
@alert-with-description-no-icon-padding-vertical: @padding-md - 1px;
|
1028
|
+
@alert-with-description-padding-vertical: @padding-md - 1px;
|
1029
|
+
@alert-with-description-padding: @alert-with-description-padding-vertical 15px
|
1030
|
+
@alert-with-description-no-icon-padding-vertical @alert-with-description-icon-size;
|
1031
|
+
@alert-icon-top: 8px + @font-size-base * (@line-height-base / 2) - (@font-size-base / 2);
|
1032
|
+
@alert-with-description-icon-size: 24px;
|
1033
|
+
|
1034
|
+
// List
|
1035
|
+
// ---
|
1036
|
+
@list-header-background: transparent;
|
1037
|
+
@list-footer-background: transparent;
|
1038
|
+
@list-empty-text-padding: @padding-md;
|
1039
|
+
@list-item-padding: @padding-sm 0;
|
1040
|
+
@list-item-padding-sm: @padding-xs @padding-md;
|
1041
|
+
@list-item-padding-lg: 16px 24px;
|
1042
|
+
@list-item-meta-margin-bottom: @padding-md;
|
1043
|
+
@list-item-meta-avatar-margin-right: @padding-md;
|
1044
|
+
@list-item-meta-title-margin-bottom: @padding-sm;
|
1045
|
+
@list-customize-card-bg: @component-background;
|
1046
|
+
@list-item-meta-description-font-size: @font-size-base;
|
1047
|
+
|
1048
|
+
// Statistic
|
1049
|
+
// ---
|
1050
|
+
@statistic-title-font-size: @font-size-base;
|
1051
|
+
@statistic-content-font-size: 24px;
|
1052
|
+
@statistic-unit-font-size: 24px;
|
1053
|
+
@statistic-font-family: @font-family;
|
1054
|
+
|
1055
|
+
// Drawer
|
1056
|
+
// ---
|
1057
|
+
@drawer-header-padding: @padding-md @padding-lg;
|
1058
|
+
@drawer-body-padding: @padding-lg;
|
1059
|
+
@drawer-bg: @component-background;
|
1060
|
+
@drawer-footer-padding-vertical: @modal-footer-padding-vertical;
|
1061
|
+
@drawer-footer-padding-horizontal: @modal-footer-padding-horizontal;
|
1062
|
+
@drawer-header-close-size: 56px;
|
1063
|
+
@drawer-title-font-size: @font-size-lg;
|
1064
|
+
@drawer-title-line-height: 22px;
|
1065
|
+
|
1066
|
+
// Timeline
|
1067
|
+
// ---
|
1068
|
+
@timeline-width: 2px;
|
1069
|
+
@timeline-color: @border-color-split;
|
1070
|
+
@timeline-dot-border-width: 2px;
|
1071
|
+
@timeline-dot-color: @primary-color;
|
1072
|
+
@timeline-dot-bg: @component-background;
|
1073
|
+
@timeline-item-padding-bottom: 20px;
|
1074
|
+
|
1075
|
+
// Typography
|
1076
|
+
// ---
|
1077
|
+
@typography-title-font-weight: 600;
|
1078
|
+
@typography-title-margin-top: 1.2em;
|
1079
|
+
@typography-title-margin-bottom: 0.5em;
|
1080
|
+
|
1081
|
+
// Upload
|
1082
|
+
// ---
|
1083
|
+
@upload-actions-color: @text-color-secondary;
|
1084
|
+
|
1085
|
+
// Steps
|
1086
|
+
// ---
|
1087
|
+
@process-tail-color: @border-color-split;
|
1088
|
+
@steps-nav-arrow-color: fade(@black, 25%);
|
1089
|
+
@steps-background: @component-background;
|
1090
|
+
@steps-icon-size: 32px;
|
1091
|
+
@steps-icon-custom-size: @steps-icon-size;
|
1092
|
+
@steps-icon-custom-top: 0px;
|
1093
|
+
@steps-icon-custom-font-size: 24px;
|
1094
|
+
@steps-icon-top: -0.5px;
|
1095
|
+
@steps-icon-font-size: @font-size-lg;
|
1096
|
+
@steps-icon-margin: 0 8px 0 0;
|
1097
|
+
@steps-title-line-height: @height-base;
|
1098
|
+
@steps-small-icon-size: 24px;
|
1099
|
+
@steps-small-icon-margin: 0 8px 0 0;
|
1100
|
+
@steps-dot-size: 8px;
|
1101
|
+
@steps-dot-top: 2px;
|
1102
|
+
@steps-current-dot-size: 10px;
|
1103
|
+
@steps-description-max-width: 140px;
|
1104
|
+
@steps-nav-content-max-width: auto;
|
1105
|
+
@steps-vertical-icon-width: 16px;
|
1106
|
+
@steps-vertical-tail-width: 16px;
|
1107
|
+
@steps-vertical-tail-width-sm: 12px;
|
1108
|
+
|
1109
|
+
// Notification
|
1110
|
+
// ---
|
1111
|
+
@notification-bg: @component-background;
|
1112
|
+
@notification-padding-vertical: 16px;
|
1113
|
+
@notification-padding-horizontal: 24px;
|
1114
|
+
|
1115
|
+
// Result
|
1116
|
+
// ---
|
1117
|
+
@result-title-font-size: 24px;
|
1118
|
+
@result-subtitle-font-size: @font-size-base;
|
1119
|
+
@result-icon-font-size: 72px;
|
1120
|
+
@result-extra-margin: 24px 0 0 0;
|
1121
|
+
|
1122
|
+
// Image
|
1123
|
+
// ---
|
1124
|
+
@image-size-base: 48px;
|
1125
|
+
@image-font-size-base: 24px;
|
1126
|
+
@image-bg: #f5f5f5;
|
1127
|
+
@image-color: #fff;
|
1128
|
+
@image-mask-font-size: 16px;
|
1129
|
+
@image-preview-operation-size: 18px;
|
1130
|
+
@image-preview-operation-color: @text-color-dark;
|
1131
|
+
@image-preview-operation-disabled-color: fade(@image-preview-operation-color, 25%);
|
1132
|
+
|
1133
|
+
// Segmented
|
1134
|
+
// ---
|
1135
|
+
@segmented-bg: fade(@black, 4%);
|
1136
|
+
@segmented-hover-bg: fade(@black, 6%);
|
1137
|
+
@segmented-selected-bg: @white;
|
1138
|
+
@segmented-label-color: fade(@black, 65%);
|
1139
|
+
@segmented-label-hover-color: #262626;
|