@antsoo-lib/components 0.0.1
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/akaza-components.mjs +72249 -0
- package/dist/akaza-components.umd.js +474 -0
- package/dist/index.d.ts +11 -0
- package/dist/src/_util/BaseMixin.d.ts +7 -0
- package/dist/src/_util/EventInterface.d.ts +18 -0
- package/dist/src/_util/KeyCode.d.ts +436 -0
- package/dist/src/_util/__mocks__/Portal.d.ts +9 -0
- package/dist/src/_util/__mocks__/RenderSlot.d.ts +3 -0
- package/dist/src/_util/canUseDom.d.ts +2 -0
- package/dist/src/_util/classNames.d.ts +2 -0
- package/dist/src/_util/collapseMotion.d.ts +3 -0
- package/dist/src/_util/colors.d.ts +13 -0
- package/dist/src/_util/component-classes.d.ts +66 -0
- package/dist/src/_util/copy-to-clipboard/index.d.ts +8 -0
- package/dist/src/_util/copy-to-clipboard/toggle-selection.d.ts +2 -0
- package/dist/src/_util/createContext.d.ts +6 -0
- package/dist/src/_util/createRef.d.ts +10 -0
- package/dist/src/_util/cssinjs/Cache.d.ts +10 -0
- package/dist/src/_util/cssinjs/Keyframes.d.ts +9 -0
- package/dist/src/_util/cssinjs/StyleContext.d.ts +500 -0
- package/dist/src/_util/cssinjs/hooks/useCacheToken.d.ts +40 -0
- package/dist/src/_util/cssinjs/hooks/useGlobalCache.d.ts +3 -0
- package/dist/src/_util/cssinjs/hooks/useHMR.d.ts +3 -0
- package/dist/src/_util/cssinjs/hooks/useStyleRegister/cacheMapUtil.d.ts +14 -0
- package/dist/src/_util/cssinjs/hooks/useStyleRegister/index.d.ts +68 -0
- package/dist/src/_util/cssinjs/index.d.ts +193 -0
- package/dist/src/_util/cssinjs/linters/contentQuotesLinter.d.ts +3 -0
- package/dist/src/_util/cssinjs/linters/hashedAnimationLinter.d.ts +3 -0
- package/dist/src/_util/cssinjs/linters/index.d.ts +6 -0
- package/dist/src/_util/cssinjs/linters/interface.d.ts +8 -0
- package/dist/src/_util/cssinjs/linters/legacyNotSelectorLinter.d.ts +3 -0
- package/dist/src/_util/cssinjs/linters/logicalPropertiesLinter.d.ts +3 -0
- package/dist/src/_util/cssinjs/linters/parentSelectorLinter.d.ts +3 -0
- package/dist/src/_util/cssinjs/linters/utils.d.ts +2 -0
- package/dist/src/_util/cssinjs/theme/Theme.d.ts +11 -0
- package/dist/src/_util/cssinjs/theme/ThemeCache.d.ts +20 -0
- package/dist/src/_util/cssinjs/theme/createTheme.d.ts +6 -0
- package/dist/src/_util/cssinjs/theme/index.d.ts +4 -0
- package/dist/src/_util/cssinjs/theme/interface.d.ts +2 -0
- package/dist/src/_util/cssinjs/transformers/interface.d.ts +4 -0
- package/dist/src/_util/cssinjs/transformers/legacyLogicalProperties.d.ts +12 -0
- package/dist/src/_util/cssinjs/transformers/px2rem.d.ts +20 -0
- package/dist/src/_util/cssinjs/util.d.ts +8 -0
- package/dist/src/_util/debouncedWatch.d.ts +27 -0
- package/dist/src/_util/eagerComputed.d.ts +3 -0
- package/dist/src/_util/easings.d.ts +1 -0
- package/dist/src/_util/env.d.ts +8 -0
- package/dist/src/_util/extendsObject.d.ts +3 -0
- package/dist/src/_util/firstNotUndefined.d.ts +2 -0
- package/dist/src/_util/gapSize.d.ts +3 -0
- package/dist/src/_util/getRequestAnimationFrame.d.ts +2 -0
- package/dist/src/_util/getScroll.d.ts +2 -0
- package/dist/src/_util/getScrollBarSize.d.ts +5 -0
- package/dist/src/_util/hooks/_vueuse/_configurable.d.ts +16 -0
- package/dist/src/_util/hooks/_vueuse/is.d.ts +16 -0
- package/dist/src/_util/hooks/_vueuse/resolveUnref.d.ts +5 -0
- package/dist/src/_util/hooks/_vueuse/tryOnMounted.d.ts +8 -0
- package/dist/src/_util/hooks/_vueuse/tryOnScopeDispose.d.ts +7 -0
- package/dist/src/_util/hooks/_vueuse/types.d.ts +114 -0
- package/dist/src/_util/hooks/_vueuse/unrefElement.d.ts +13 -0
- package/dist/src/_util/hooks/_vueuse/useElementSize.d.ts +20 -0
- package/dist/src/_util/hooks/_vueuse/useMutationObserver.d.ts +19 -0
- package/dist/src/_util/hooks/_vueuse/useResizeObserver.d.ts +44 -0
- package/dist/src/_util/hooks/_vueuse/useSupported.d.ts +2 -0
- package/dist/src/_util/hooks/useBreakpoint.d.ts +4 -0
- package/dist/src/_util/hooks/useDestroyed.d.ts +3 -0
- package/dist/src/_util/hooks/useFlexGapSupport.d.ts +3 -0
- package/dist/src/_util/hooks/useId.d.ts +6 -0
- package/dist/src/_util/hooks/useLayoutState.d.ts +6 -0
- package/dist/src/_util/hooks/useMemo.d.ts +2 -0
- package/dist/src/_util/hooks/useMergedState.d.ts +7 -0
- package/dist/src/_util/hooks/useRefs.d.ts +7 -0
- package/dist/src/_util/hooks/useScrollLocker.d.ts +6 -0
- package/dist/src/_util/hooks/useState.d.ts +2 -0
- package/dist/src/_util/isNumeric.d.ts +2 -0
- package/dist/src/_util/isValid.d.ts +2 -0
- package/dist/src/_util/isValidValue.d.ts +1 -0
- package/dist/src/_util/json2mq.d.ts +5 -0
- package/dist/src/_util/omit.d.ts +2 -0
- package/dist/src/_util/pickAttrs.d.ts +11 -0
- package/dist/src/_util/placements.d.ts +65 -0
- package/dist/src/_util/props-util/index.d.ts +33 -0
- package/dist/src/_util/props-util/initDefaultProps.d.ts +6 -0
- package/dist/src/_util/raf.d.ts +5 -0
- package/dist/src/_util/reactivePick.d.ts +9 -0
- package/dist/src/_util/requestAnimationTimeout.d.ts +4 -0
- package/dist/src/_util/responsiveObserve.d.ts +22 -0
- package/dist/src/_util/scrollTo.d.ts +10 -0
- package/dist/src/_util/setStyle.d.ts +12 -0
- package/dist/src/_util/shallowequal.d.ts +1 -0
- package/dist/src/_util/static-style-extract/index.d.ts +2 -0
- package/dist/src/_util/static-style-extract/interface.d.ts +2 -0
- package/dist/src/_util/statusUtils.d.ts +6 -0
- package/dist/src/_util/styleChecker.d.ts +4 -0
- package/dist/src/_util/throttleByAnimationFrame.d.ts +6 -0
- package/dist/src/_util/toReactive.d.ts +10 -0
- package/dist/src/_util/transButton.d.ts +35 -0
- package/dist/src/_util/transKeys.d.ts +2 -0
- package/dist/src/_util/transition.d.ts +18 -0
- package/dist/src/_util/type.d.ts +62 -0
- package/dist/src/_util/unreachableException.d.ts +4 -0
- package/dist/src/_util/util.d.ts +18 -0
- package/dist/src/_util/vnode.d.ts +11 -0
- package/dist/src/_util/vue-types/index.d.ts +12 -0
- package/dist/src/_util/warning.d.ts +6 -0
- package/dist/src/_util/wave/WaveEffect.d.ts +6 -0
- package/dist/src/_util/wave/index.d.ts +14 -0
- package/dist/src/_util/wave/style.d.ts +7 -0
- package/dist/src/_util/wave/useWave.d.ts +4 -0
- package/dist/src/_util/wave/util.d.ts +3 -0
- package/dist/src/affix/index.d.ts +109 -0
- package/dist/src/affix/style/index.d.ts +4 -0
- package/dist/src/affix/utils.d.ts +15 -0
- package/dist/src/alert/style/index.d.ts +14 -0
- package/dist/src/anchor/Anchor.d.ts +118 -0
- package/dist/src/anchor/AnchorLink.d.ts +59 -0
- package/dist/src/anchor/context.d.ts +18 -0
- package/dist/src/anchor/index.d.ts +9 -0
- package/dist/src/anchor/style/index.d.ts +6 -0
- package/dist/src/app/context.d.ts +21 -0
- package/dist/src/app/index.d.ts +45 -0
- package/dist/src/app/style/index.d.ts +6 -0
- package/dist/src/auto-complete/OptGroup.d.ts +9 -0
- package/dist/src/auto-complete/Option.d.ts +12 -0
- package/dist/src/avatar/AvatarContext.d.ts +8 -0
- package/dist/src/avatar/Group.d.ts +72 -0
- package/dist/src/avatar/index.d.ts +11 -0
- package/dist/src/avatar/style/index.d.ts +51 -0
- package/dist/src/badge/SingleNumber.d.ts +17 -0
- package/dist/src/badge/index.d.ts +9 -0
- package/dist/src/badge/style/index.d.ts +4 -0
- package/dist/src/breadcrumb/BreadcrumbSeparator.d.ts +11 -0
- package/dist/src/breadcrumb/index.d.ts +13 -0
- package/dist/src/breadcrumb/style/index.d.ts +4 -0
- package/dist/src/button/LoadingIcon.d.ts +13 -0
- package/dist/src/button/button-group.d.ts +33 -0
- package/dist/src/button/index.d.ts +11 -0
- package/dist/src/button/style/group.d.ts +4 -0
- package/dist/src/button/style/index.d.ts +11 -0
- package/dist/src/calendar/Header.d.ts +17 -0
- package/dist/src/calendar/date-fns.d.ts +17 -0
- package/dist/src/calendar/dayjs.d.ts +18 -0
- package/dist/src/calendar/index.d.ts +3 -0
- package/dist/src/calendar/locale/ar_EG.d.ts +2 -0
- package/dist/src/calendar/locale/az_AZ.d.ts +2 -0
- package/dist/src/calendar/locale/bg_BG.d.ts +2 -0
- package/dist/src/calendar/locale/bn_BD.d.ts +2 -0
- package/dist/src/calendar/locale/by_BY.d.ts +2 -0
- package/dist/src/calendar/locale/ca_ES.d.ts +2 -0
- package/dist/src/calendar/locale/cs_CZ.d.ts +2 -0
- package/dist/src/calendar/locale/da_DK.d.ts +2 -0
- package/dist/src/calendar/locale/de_DE.d.ts +2 -0
- package/dist/src/calendar/locale/el_GR.d.ts +2 -0
- package/dist/src/calendar/locale/en_GB.d.ts +2 -0
- package/dist/src/calendar/locale/en_US.d.ts +2 -0
- package/dist/src/calendar/locale/es_ES.d.ts +2 -0
- package/dist/src/calendar/locale/et_EE.d.ts +2 -0
- package/dist/src/calendar/locale/fa_IR.d.ts +2 -0
- package/dist/src/calendar/locale/fi_FI.d.ts +2 -0
- package/dist/src/calendar/locale/fr_BE.d.ts +2 -0
- package/dist/src/calendar/locale/fr_CA.d.ts +2 -0
- package/dist/src/calendar/locale/fr_FR.d.ts +2 -0
- package/dist/src/calendar/locale/ga_IE.d.ts +2 -0
- package/dist/src/calendar/locale/gl_ES.d.ts +2 -0
- package/dist/src/calendar/locale/he_IL.d.ts +2 -0
- package/dist/src/calendar/locale/hi_IN.d.ts +2 -0
- package/dist/src/calendar/locale/hr_HR.d.ts +2 -0
- package/dist/src/calendar/locale/hu_HU.d.ts +2 -0
- package/dist/src/calendar/locale/id_ID.d.ts +2 -0
- package/dist/src/calendar/locale/is_IS.d.ts +2 -0
- package/dist/src/calendar/locale/it_IT.d.ts +2 -0
- package/dist/src/calendar/locale/ja_JP.d.ts +2 -0
- package/dist/src/calendar/locale/ka_GE.d.ts +2 -0
- package/dist/src/calendar/locale/kk_KZ.d.ts +2 -0
- package/dist/src/calendar/locale/km_KH.d.ts +2 -0
- package/dist/src/calendar/locale/kmr_IQ.d.ts +2 -0
- package/dist/src/calendar/locale/kn_IN.d.ts +2 -0
- package/dist/src/calendar/locale/ko_KR.d.ts +2 -0
- package/dist/src/calendar/locale/lt_LT.d.ts +2 -0
- package/dist/src/calendar/locale/lv_LV.d.ts +2 -0
- package/dist/src/calendar/locale/mk_MK.d.ts +2 -0
- package/dist/src/calendar/locale/ml_IN.d.ts +2 -0
- package/dist/src/calendar/locale/mn_MN.d.ts +2 -0
- package/dist/src/calendar/locale/ms_MY.d.ts +2 -0
- package/dist/src/calendar/locale/nb_NO.d.ts +2 -0
- package/dist/src/calendar/locale/nl_BE.d.ts +2 -0
- package/dist/src/calendar/locale/nl_NL.d.ts +2 -0
- package/dist/src/calendar/locale/pl_PL.d.ts +2 -0
- package/dist/src/calendar/locale/pt_BR.d.ts +2 -0
- package/dist/src/calendar/locale/pt_PT.d.ts +2 -0
- package/dist/src/calendar/locale/ro_RO.d.ts +2 -0
- package/dist/src/calendar/locale/ru_RU.d.ts +2 -0
- package/dist/src/calendar/locale/sk_SK.d.ts +2 -0
- package/dist/src/calendar/locale/sl_SI.d.ts +2 -0
- package/dist/src/calendar/locale/sr_RS.d.ts +2 -0
- package/dist/src/calendar/locale/sv_SE.d.ts +2 -0
- package/dist/src/calendar/locale/ta_IN.d.ts +2 -0
- package/dist/src/calendar/locale/th_TH.d.ts +2 -0
- package/dist/src/calendar/locale/tr_TR.d.ts +2 -0
- package/dist/src/calendar/locale/uk_UA.d.ts +2 -0
- package/dist/src/calendar/locale/ur_PK.d.ts +2 -0
- package/dist/src/calendar/locale/vi_VN.d.ts +2 -0
- package/dist/src/calendar/locale/zh_CN.d.ts +2 -0
- package/dist/src/calendar/locale/zh_TW.d.ts +2 -0
- package/dist/src/calendar/moment.d.ts +17 -0
- package/dist/src/calendar/style/index.d.ts +22 -0
- package/dist/src/card/Grid.d.ts +25 -0
- package/dist/src/card/Meta.d.ts +44 -0
- package/dist/src/card/index.d.ts +11 -0
- package/dist/src/card/style/index.d.ts +6 -0
- package/dist/src/carousel/style/index.d.ts +9 -0
- package/dist/src/cascader/style/index.d.ts +9 -0
- package/dist/src/checkbox/Group.d.ts +62 -0
- package/dist/src/checkbox/index.d.ts +10 -0
- package/dist/src/checkbox/style/index.d.ts +13 -0
- package/dist/src/col/index.d.ts +135 -0
- package/dist/src/col/style/index.d.ts +2 -0
- package/dist/src/collapse/index.d.ts +10 -0
- package/dist/src/collapse/style/index.d.ts +14 -0
- package/dist/src/comment/style/index.d.ts +6 -0
- package/dist/src/components.d.ts +140 -0
- package/dist/src/config-provider/DisabledContext.d.ts +4 -0
- package/dist/src/config-provider/SizeContext.d.ts +4 -0
- package/dist/src/config-provider/context.d.ts +203 -0
- package/dist/src/config-provider/cssVariables.d.ts +3 -0
- package/dist/src/config-provider/hooks/useConfigInject.d.ts +42 -0
- package/dist/src/config-provider/hooks/useTheme.d.ts +3 -0
- package/dist/src/config-provider/index.d.ts +291 -0
- package/dist/src/config-provider/renderEmpty.d.ts +8 -0
- package/dist/src/config-provider/style/index.d.ts +4 -0
- package/dist/src/date-picker/PickerButton.d.ts +4 -0
- package/dist/src/date-picker/PickerTag.d.ts +5 -0
- package/dist/src/date-picker/date-fns.d.ts +5551 -0
- package/dist/src/date-picker/dayjs.d.ts +5552 -0
- package/dist/src/date-picker/generatePicker/generateRangePicker.d.ts +1110 -0
- package/dist/src/date-picker/generatePicker/generateSinglePicker.d.ts +6204 -0
- package/dist/src/date-picker/generatePicker/interface.d.ts +41 -0
- package/dist/src/date-picker/generatePicker/props.d.ts +411 -0
- package/dist/src/date-picker/index.d.ts +3 -0
- package/dist/src/date-picker/locale/ar_EG.d.ts +3 -0
- package/dist/src/date-picker/locale/az_AZ.d.ts +3 -0
- package/dist/src/date-picker/locale/bg_BG.d.ts +3 -0
- package/dist/src/date-picker/locale/bn_BD.d.ts +3 -0
- package/dist/src/date-picker/locale/by_BY.d.ts +3 -0
- package/dist/src/date-picker/locale/ca_ES.d.ts +3 -0
- package/dist/src/date-picker/locale/cs_CZ.d.ts +3 -0
- package/dist/src/date-picker/locale/da_DK.d.ts +3 -0
- package/dist/src/date-picker/locale/de_DE.d.ts +3 -0
- package/dist/src/date-picker/locale/el_GR.d.ts +3 -0
- package/dist/src/date-picker/locale/en_GB.d.ts +3 -0
- package/dist/src/date-picker/locale/en_US.d.ts +3 -0
- package/dist/src/date-picker/locale/es_ES.d.ts +3 -0
- package/dist/src/date-picker/locale/et_EE.d.ts +3 -0
- package/dist/src/date-picker/locale/fa_IR.d.ts +3 -0
- package/dist/src/date-picker/locale/fi_FI.d.ts +3 -0
- package/dist/src/date-picker/locale/fr_BE.d.ts +3 -0
- package/dist/src/date-picker/locale/fr_CA.d.ts +3 -0
- package/dist/src/date-picker/locale/fr_FR.d.ts +3 -0
- package/dist/src/date-picker/locale/ga_IE.d.ts +3 -0
- package/dist/src/date-picker/locale/gl_ES.d.ts +3 -0
- package/dist/src/date-picker/locale/he_IL.d.ts +3 -0
- package/dist/src/date-picker/locale/hi_IN.d.ts +3 -0
- package/dist/src/date-picker/locale/hr_HR.d.ts +3 -0
- package/dist/src/date-picker/locale/hu_HU.d.ts +3 -0
- package/dist/src/date-picker/locale/id_ID.d.ts +3 -0
- package/dist/src/date-picker/locale/is_IS.d.ts +3 -0
- package/dist/src/date-picker/locale/it_IT.d.ts +3 -0
- package/dist/src/date-picker/locale/ja_JP.d.ts +3 -0
- package/dist/src/date-picker/locale/ka_GE.d.ts +3 -0
- package/dist/src/date-picker/locale/kk_KZ.d.ts +3 -0
- package/dist/src/date-picker/locale/km_KH.d.ts +3 -0
- package/dist/src/date-picker/locale/kmr_IQ.d.ts +3 -0
- package/dist/src/date-picker/locale/kn_IN.d.ts +3 -0
- package/dist/src/date-picker/locale/ko_KR.d.ts +3 -0
- package/dist/src/date-picker/locale/lt_LT.d.ts +3 -0
- package/dist/src/date-picker/locale/lv_LV.d.ts +3 -0
- package/dist/src/date-picker/locale/mk_MK.d.ts +3 -0
- package/dist/src/date-picker/locale/ml_IN.d.ts +3 -0
- package/dist/src/date-picker/locale/mn_MN.d.ts +3 -0
- package/dist/src/date-picker/locale/ms_MY.d.ts +3 -0
- package/dist/src/date-picker/locale/nb_NO.d.ts +3 -0
- package/dist/src/date-picker/locale/nl_BE.d.ts +3 -0
- package/dist/src/date-picker/locale/nl_NL.d.ts +3 -0
- package/dist/src/date-picker/locale/pl_PL.d.ts +3 -0
- package/dist/src/date-picker/locale/pt_BR.d.ts +3 -0
- package/dist/src/date-picker/locale/pt_PT.d.ts +3 -0
- package/dist/src/date-picker/locale/ro_RO.d.ts +3 -0
- package/dist/src/date-picker/locale/ru_RU.d.ts +3 -0
- package/dist/src/date-picker/locale/sk_SK.d.ts +3 -0
- package/dist/src/date-picker/locale/sl_SI.d.ts +3 -0
- package/dist/src/date-picker/locale/sr_RS.d.ts +3 -0
- package/dist/src/date-picker/locale/sv_SE.d.ts +3 -0
- package/dist/src/date-picker/locale/ta_IN.d.ts +3 -0
- package/dist/src/date-picker/locale/th_TH.d.ts +3 -0
- package/dist/src/date-picker/locale/tr_TR.d.ts +3 -0
- package/dist/src/date-picker/locale/uk_UA.d.ts +3 -0
- package/dist/src/date-picker/locale/ur_PK.d.ts +3 -0
- package/dist/src/date-picker/locale/vi_VN.d.ts +3 -0
- package/dist/src/date-picker/locale/zh_CN.d.ts +3 -0
- package/dist/src/date-picker/locale/zh_TW.d.ts +3 -0
- package/dist/src/date-picker/moment.d.ts +5552 -0
- package/dist/src/date-picker/style/index.d.ts +36 -0
- package/dist/src/date-picker/util.d.ts +14 -0
- package/dist/src/descriptions/Cell.d.ts +14 -0
- package/dist/src/descriptions/Row.d.ts +11 -0
- package/dist/src/descriptions/style/index.d.ts +4 -0
- package/dist/src/divider/index.d.ts +109 -0
- package/dist/src/divider/style/index.d.ts +8 -0
- package/dist/src/drawer/style/index.d.ts +11 -0
- package/dist/src/drawer/style/motion.d.ts +4 -0
- package/dist/src/dropdown/index.d.ts +11 -0
- package/dist/src/dropdown/style/button.d.ts +4 -0
- package/dist/src/dropdown/style/index.d.ts +15 -0
- package/dist/src/dropdown/style/status.d.ts +4 -0
- package/dist/src/empty/empty.d.ts +3 -0
- package/dist/src/empty/index.d.ts +86 -0
- package/dist/src/empty/simple.d.ts +3 -0
- package/dist/src/empty/style/index.d.ts +7 -0
- package/dist/src/flex/index.d.ts +144 -0
- package/dist/src/flex/interface.d.ts +36 -0
- package/dist/src/flex/style/index.d.ts +30 -0
- package/dist/src/flex/utils.d.ts +6 -0
- package/dist/src/float-button/FloatButtonContent.d.ts +15 -0
- package/dist/src/float-button/context.d.ts +8 -0
- package/dist/src/float-button/index.d.ts +13 -0
- package/dist/src/float-button/style/index.d.ts +8 -0
- package/dist/src/float-button/util.d.ts +2 -0
- package/dist/src/form/ErrorList.d.ts +21 -0
- package/dist/src/form/FormItemContext.d.ts +32 -0
- package/dist/src/form/FormItemInput.d.ts +45 -0
- package/dist/src/form/FormItemLabel.d.ts +19 -0
- package/dist/src/form/context.d.ts +35 -0
- package/dist/src/form/index.d.ts +16 -0
- package/dist/src/form/interface.d.ts +171 -0
- package/dist/src/form/style/explain.d.ts +4 -0
- package/dist/src/form/style/index.d.ts +8 -0
- package/dist/src/form/useForm.d.ts +45 -0
- package/dist/src/form/utils/asyncUtil.d.ts +2 -0
- package/dist/src/form/utils/messages.d.ts +47 -0
- package/dist/src/form/utils/typeUtil.d.ts +1 -0
- package/dist/src/form/utils/useDebounce.d.ts +2 -0
- package/dist/src/form/utils/validateUtil.d.ts +6 -0
- package/dist/src/form/utils/valueUtil.d.ts +15 -0
- package/dist/src/grid/Col.d.ts +117 -0
- package/dist/src/grid/Row.d.ts +78 -0
- package/dist/src/grid/context.d.ts +11 -0
- package/dist/src/grid/index.d.ts +10 -0
- package/dist/src/grid/style/index.d.ts +4 -0
- package/dist/src/icon/index.d.ts +6 -0
- package/dist/src/image/PreviewGroup.d.ts +38 -0
- package/dist/src/image/style/index.d.ts +22 -0
- package/dist/src/input/ClearableLabeledInput.d.ts +152 -0
- package/dist/src/input/Group.d.ts +25 -0
- package/dist/src/input/calculateNodeHeight.d.ts +9 -0
- package/dist/src/input/index.d.ts +15 -0
- package/dist/src/input/style/index.d.ts +31 -0
- package/dist/src/input/util.d.ts +2 -0
- package/dist/src/input-number/src/InputNumber.d.ts +344 -0
- package/dist/src/input-number/src/StepHandler.d.ts +28 -0
- package/dist/src/input-number/src/hooks/useCursor.d.ts +6 -0
- package/dist/src/input-number/src/hooks/useFrame.d.ts +5 -0
- package/dist/src/input-number/src/utils/MiniDecimal.d.ts +68 -0
- package/dist/src/input-number/src/utils/numberUtil.d.ts +22 -0
- package/dist/src/input-number/src/utils/supportUtil.d.ts +1 -0
- package/dist/src/input-number/style/index.d.ts +11 -0
- package/dist/src/layout/injectionKey.d.ts +8 -0
- package/dist/src/layout/layout.d.ts +80 -0
- package/dist/src/layout/style/index.d.ts +17 -0
- package/dist/src/layout/style/light.d.ts +5 -0
- package/dist/src/list/contextKey.d.ts +6 -0
- package/dist/src/list/style/index.d.ts +7 -0
- package/dist/src/locale/LocaleReceiver.d.ts +35 -0
- package/dist/src/locale/ar_EG.d.ts +3 -0
- package/dist/src/locale/az_AZ.d.ts +3 -0
- package/dist/src/locale/bg_BG.d.ts +3 -0
- package/dist/src/locale/bn_BD.d.ts +3 -0
- package/dist/src/locale/by_BY.d.ts +3 -0
- package/dist/src/locale/ca_ES.d.ts +3 -0
- package/dist/src/locale/cs_CZ.d.ts +3 -0
- package/dist/src/locale/da_DK.d.ts +3 -0
- package/dist/src/locale/de_DE.d.ts +3 -0
- package/dist/src/locale/el_GR.d.ts +3 -0
- package/dist/src/locale/en_GB.d.ts +3 -0
- package/dist/src/locale/en_US.d.ts +3 -0
- package/dist/src/locale/es_ES.d.ts +3 -0
- package/dist/src/locale/et_EE.d.ts +3 -0
- package/dist/src/locale/fa_IR.d.ts +3 -0
- package/dist/src/locale/fi_FI.d.ts +3 -0
- package/dist/src/locale/fr_BE.d.ts +3 -0
- package/dist/src/locale/fr_CA.d.ts +3 -0
- package/dist/src/locale/fr_FR.d.ts +3 -0
- package/dist/src/locale/ga_IE.d.ts +3 -0
- package/dist/src/locale/gl_ES.d.ts +3 -0
- package/dist/src/locale/he_IL.d.ts +3 -0
- package/dist/src/locale/hi_IN.d.ts +3 -0
- package/dist/src/locale/hr_HR.d.ts +3 -0
- package/dist/src/locale/hu_HU.d.ts +3 -0
- package/dist/src/locale/hy_AM.d.ts +3 -0
- package/dist/src/locale/id_ID.d.ts +3 -0
- package/dist/src/locale/index.d.ts +91 -0
- package/dist/src/locale/is_IS.d.ts +3 -0
- package/dist/src/locale/it_IT.d.ts +3 -0
- package/dist/src/locale/ja_JP.d.ts +3 -0
- package/dist/src/locale/ka_GE.d.ts +3 -0
- package/dist/src/locale/kk_KZ.d.ts +3 -0
- package/dist/src/locale/km_KH.d.ts +3 -0
- package/dist/src/locale/kmr_IQ.d.ts +3 -0
- package/dist/src/locale/kn_IN.d.ts +3 -0
- package/dist/src/locale/ko_KR.d.ts +3 -0
- package/dist/src/locale/ku_IQ.d.ts +3 -0
- package/dist/src/locale/lt_LT.d.ts +3 -0
- package/dist/src/locale/lv_LV.d.ts +3 -0
- package/dist/src/locale/mk_MK.d.ts +3 -0
- package/dist/src/locale/ml_IN.d.ts +3 -0
- package/dist/src/locale/mn_MN.d.ts +3 -0
- package/dist/src/locale/ms_MY.d.ts +3 -0
- package/dist/src/locale/nb_NO.d.ts +3 -0
- package/dist/src/locale/ne_NP.d.ts +3 -0
- package/dist/src/locale/nl_BE.d.ts +3 -0
- package/dist/src/locale/nl_NL.d.ts +3 -0
- package/dist/src/locale/pl_PL.d.ts +3 -0
- package/dist/src/locale/pt_BR.d.ts +3 -0
- package/dist/src/locale/pt_PT.d.ts +3 -0
- package/dist/src/locale/ro_RO.d.ts +3 -0
- package/dist/src/locale/ru_RU.d.ts +3 -0
- package/dist/src/locale/sk_SK.d.ts +3 -0
- package/dist/src/locale/sl_SI.d.ts +3 -0
- package/dist/src/locale/sr_RS.d.ts +3 -0
- package/dist/src/locale/sv_SE.d.ts +3 -0
- package/dist/src/locale/ta_IN.d.ts +3 -0
- package/dist/src/locale/th_TH.d.ts +3 -0
- package/dist/src/locale/tr_TR.d.ts +3 -0
- package/dist/src/locale/uk_UA.d.ts +3 -0
- package/dist/src/locale/ur_PK.d.ts +3 -0
- package/dist/src/locale/vi_VN.d.ts +3 -0
- package/dist/src/locale/zh_CN.d.ts +3 -0
- package/dist/src/locale/zh_HK.d.ts +3 -0
- package/dist/src/locale/zh_TW.d.ts +3 -0
- package/dist/src/locale-provider/LocaleReceiver.d.ts +3 -0
- package/dist/src/locale-provider/index.d.ts +3 -0
- package/dist/src/mentions/style/index.d.ts +9 -0
- package/dist/src/menu/index.d.ts +17 -0
- package/dist/src/menu/src/Divider.d.ts +16 -0
- package/dist/src/menu/src/InlineSubMenuList.d.ts +13 -0
- package/dist/src/menu/src/Menu.d.ts +228 -0
- package/dist/src/menu/src/OverrideContext.d.ts +13 -0
- package/dist/src/menu/src/PopupTrigger.d.ts +29 -0
- package/dist/src/menu/src/SubMenuList.d.ts +3 -0
- package/dist/src/menu/src/hooks/useDirectionStyle.d.ts +2 -0
- package/dist/src/menu/src/hooks/useItems.d.ts +32 -0
- package/dist/src/menu/src/hooks/useKeyPath.d.ts +21 -0
- package/dist/src/menu/src/hooks/useMenuContext.d.ts +81 -0
- package/dist/src/menu/src/interface.d.ts +78 -0
- package/dist/src/menu/src/placements.d.ts +69 -0
- package/dist/src/menu/style/horizontal.d.ts +4 -0
- package/dist/src/menu/style/index.d.ts +42 -0
- package/dist/src/menu/style/rtl.d.ts +4 -0
- package/dist/src/menu/style/theme.d.ts +4 -0
- package/dist/src/menu/style/vertical.d.ts +4 -0
- package/dist/src/message/PurePanel.d.ts +22 -0
- package/dist/src/message/index.d.ts +58 -0
- package/dist/src/message/interface.d.ts +38 -0
- package/dist/src/message/style/index.d.ts +9 -0
- package/dist/src/message/useMessage.d.ts +8 -0
- package/dist/src/modal/ConfirmDialog.d.ts +12 -0
- package/dist/src/modal/confirm.d.ts +17 -0
- package/dist/src/modal/destroyFns.d.ts +2 -0
- package/dist/src/modal/index.d.ts +18 -0
- package/dist/src/modal/locale.d.ts +7 -0
- package/dist/src/modal/style/index.d.ts +33 -0
- package/dist/src/modal/useModal/HookModal.d.ts +26 -0
- package/dist/src/modal/useModal/index.d.ts +12 -0
- package/dist/src/notification/PurePanel.d.ts +30 -0
- package/dist/src/notification/index.d.ts +55 -0
- package/dist/src/notification/interface.d.ts +49 -0
- package/dist/src/notification/style/index.d.ts +20 -0
- package/dist/src/notification/style/placement.d.ts +5 -0
- package/dist/src/notification/useNotification.d.ts +9 -0
- package/dist/src/notification/util.d.ts +5 -0
- package/dist/src/page-header/style/index.d.ts +4 -0
- package/dist/src/pagination/Pagination.d.ts +406 -0
- package/dist/src/pagination/index.d.ts +360 -0
- package/dist/src/pagination/style/index.d.ts +4 -0
- package/dist/src/popconfirm/style/index.d.ts +9 -0
- package/dist/src/popover/index.d.ts +339 -0
- package/dist/src/popover/style/index.d.ts +13 -0
- package/dist/src/progress/Circle.d.ts +170 -0
- package/dist/src/progress/Line.d.ts +206 -0
- package/dist/src/progress/Steps.d.ts +168 -0
- package/dist/src/progress/index.d.ts +207 -0
- package/dist/src/progress/progress.d.ts +119 -0
- package/dist/src/progress/props.d.ts +79 -0
- package/dist/src/progress/style/index.d.ts +6 -0
- package/dist/src/progress/utils.d.ts +13 -0
- package/dist/src/qrcode/QRCode.d.ts +108 -0
- package/dist/src/qrcode/index.d.ts +162 -0
- package/dist/src/qrcode/interface.d.ts +83 -0
- package/dist/src/qrcode/qrcodegen.d.ts +100 -0
- package/dist/src/qrcode/style/index.d.ts +6 -0
- package/dist/src/radio/context.d.ts +5 -0
- package/dist/src/radio/index.d.ts +13 -0
- package/dist/src/radio/interface.d.ts +27 -0
- package/dist/src/radio/style/index.d.ts +6 -0
- package/dist/src/rate/style/index.d.ts +6 -0
- package/dist/src/rate/util.d.ts +1 -0
- package/dist/src/result/noFound.d.ts +2 -0
- package/dist/src/result/serverError.d.ts +2 -0
- package/dist/src/result/style/index.d.ts +8 -0
- package/dist/src/result/unauthorized.d.ts +2 -0
- package/dist/src/row/index.d.ts +213 -0
- package/dist/src/row/style/index.d.ts +2 -0
- package/dist/src/segmented/index.d.ts +143 -0
- package/dist/src/segmented/src/MotionThumb.d.ts +91 -0
- package/dist/src/segmented/src/index.d.ts +3 -0
- package/dist/src/segmented/src/segmented.d.ts +127 -0
- package/dist/src/segmented/style/index.d.ts +6 -0
- package/dist/src/select/style/dropdown.d.ts +4 -0
- package/dist/src/select/style/index.d.ts +11 -0
- package/dist/src/select/style/multiple.d.ts +3 -0
- package/dist/src/select/style/single.d.ts +3 -0
- package/dist/src/select/utils/iconUtil.d.ts +9 -0
- package/dist/src/skeleton/Avatar.d.ts +32 -0
- package/dist/src/skeleton/Button.d.ts +36 -0
- package/dist/src/skeleton/Element.d.ts +13 -0
- package/dist/src/skeleton/Image.d.ts +22 -0
- package/dist/src/skeleton/Input.d.ts +28 -0
- package/dist/src/skeleton/Paragraph.d.ts +24 -0
- package/dist/src/skeleton/Skeleton.d.ts +106 -0
- package/dist/src/skeleton/Title.d.ts +20 -0
- package/dist/src/skeleton/index.d.ts +22 -0
- package/dist/src/skeleton/style/index.d.ts +8 -0
- package/dist/src/slider/index.d.ts +518 -0
- package/dist/src/slider/style/index.d.ts +13 -0
- package/dist/src/space/Compact.d.ts +121 -0
- package/dist/src/space/index.d.ts +59 -0
- package/dist/src/space/style/compact.d.ts +8 -0
- package/dist/src/space/style/index.d.ts +7 -0
- package/dist/src/spin/index.d.ts +8 -0
- package/dist/src/spin/style/index.d.ts +7 -0
- package/dist/src/statistic/Countdown.d.ts +124 -0
- package/dist/src/statistic/Number.d.ts +7 -0
- package/dist/src/statistic/Statistic.d.ts +124 -0
- package/dist/src/statistic/index.d.ts +9 -0
- package/dist/src/statistic/style/index.d.ts +4 -0
- package/dist/src/statistic/utils.d.ts +19 -0
- package/dist/src/steps/index.d.ts +597 -0
- package/dist/src/steps/style/custom-icon.d.ts +5 -0
- package/dist/src/steps/style/index.d.ts +54 -0
- package/dist/src/steps/style/inline.d.ts +5 -0
- package/dist/src/steps/style/label-placement.d.ts +5 -0
- package/dist/src/steps/style/nav.d.ts +5 -0
- package/dist/src/steps/style/progress-dot.d.ts +5 -0
- package/dist/src/steps/style/progress.d.ts +5 -0
- package/dist/src/steps/style/rtl.d.ts +5 -0
- package/dist/src/steps/style/small.d.ts +5 -0
- package/dist/src/steps/style/vertical.d.ts +5 -0
- package/dist/src/style/compact-item-vertical.d.ts +4 -0
- package/dist/src/style/compact-item.d.ts +18 -0
- package/dist/src/style/index.d.ts +13 -0
- package/dist/src/style/motion/collapse.d.ts +4 -0
- package/dist/src/style/motion/fade.d.ts +6 -0
- package/dist/src/style/motion/index.d.ts +6 -0
- package/dist/src/style/motion/motion.d.ts +2 -0
- package/dist/src/style/motion/move.d.ts +14 -0
- package/dist/src/style/motion/slide.d.ts +14 -0
- package/dist/src/style/motion/zoom.d.ts +18 -0
- package/dist/src/style/operationUnit.d.ts +3 -0
- package/dist/src/style/placementArrow.d.ts +19 -0
- package/dist/src/style/presetColor.d.ts +16 -0
- package/dist/src/style/roundedArrow.d.ts +2 -0
- package/dist/src/switch/style/index.d.ts +4 -0
- package/dist/src/table/Column.d.ts +5 -0
- package/dist/src/table/ColumnGroup.d.ts +4 -0
- package/dist/src/table/ExpandIcon.d.ts +10 -0
- package/dist/src/table/context.d.ts +24 -0
- package/dist/src/table/hooks/useColumns.d.ts +4 -0
- package/dist/src/table/hooks/useFilter/FilterDropdown.d.ts +21 -0
- package/dist/src/table/hooks/useFilter/FilterSearch.d.ts +52 -0
- package/dist/src/table/hooks/useFilter/FilterWrapper.d.ts +4 -0
- package/dist/src/table/hooks/useFilter/index.d.ts +25 -0
- package/dist/src/table/hooks/useLazyKVMap.d.ts +3 -0
- package/dist/src/table/hooks/usePagination.d.ts +5 -0
- package/dist/src/table/hooks/useSelection.d.ts +20 -0
- package/dist/src/table/hooks/useSorter.d.ts +26 -0
- package/dist/src/table/hooks/useTitleColumns.d.ts +3 -0
- package/dist/src/table/interface.d.ts +166 -0
- package/dist/src/table/style/bordered.d.ts +5 -0
- package/dist/src/table/style/ellipsis.d.ts +5 -0
- package/dist/src/table/style/empty.d.ts +5 -0
- package/dist/src/table/style/expand.d.ts +5 -0
- package/dist/src/table/style/filter.d.ts +4 -0
- package/dist/src/table/style/fixed.d.ts +5 -0
- package/dist/src/table/style/index.d.ts +49 -0
- package/dist/src/table/style/pagination.d.ts +5 -0
- package/dist/src/table/style/radius.d.ts +5 -0
- package/dist/src/table/style/resize.d.ts +5 -0
- package/dist/src/table/style/rtl.d.ts +5 -0
- package/dist/src/table/style/selection.d.ts +5 -0
- package/dist/src/table/style/size.d.ts +5 -0
- package/dist/src/table/style/sorter.d.ts +5 -0
- package/dist/src/table/style/sticky.d.ts +5 -0
- package/dist/src/table/style/summary.d.ts +5 -0
- package/dist/src/table/util.d.ts +7 -0
- package/dist/src/tabs/index.d.ts +8 -0
- package/dist/src/tabs/src/TabContext.d.ts +33 -0
- package/dist/src/tabs/src/TabNavList/AddButton.d.ts +29 -0
- package/dist/src/tabs/src/TabNavList/TabNode.d.ts +99 -0
- package/dist/src/tabs/src/TabPanelList/index.d.ts +57 -0
- package/dist/src/tabs/src/hooks/useOffsets.d.ts +3 -0
- package/dist/src/tabs/src/hooks/useRaf.d.ts +5 -0
- package/dist/src/tabs/src/hooks/useSyncState.d.ts +4 -0
- package/dist/src/tabs/src/hooks/useTouchMove.d.ts +2 -0
- package/dist/src/tabs/src/index.d.ts +5 -0
- package/dist/src/tabs/src/interface.d.ts +49 -0
- package/dist/src/tabs/style/index.d.ts +21 -0
- package/dist/src/tabs/style/motion.d.ts +4 -0
- package/dist/src/tag/CheckableTag.d.ts +47 -0
- package/dist/src/tag/style/index.d.ts +6 -0
- package/dist/src/theme/convertLegacyToken.d.ts +2 -0
- package/dist/src/theme/index.d.ts +25 -0
- package/dist/src/theme/interface/alias.d.ts +115 -0
- package/dist/src/theme/interface/components.d.ts +118 -0
- package/dist/src/theme/interface/index.d.ts +13 -0
- package/dist/src/theme/interface/maps/colors.d.ts +350 -0
- package/dist/src/theme/interface/maps/font.d.ts +44 -0
- package/dist/src/theme/interface/maps/index.d.ts +17 -0
- package/dist/src/theme/interface/maps/size.d.ts +63 -0
- package/dist/src/theme/interface/maps/style.d.ts +37 -0
- package/dist/src/theme/interface/presetColors.d.ts +8 -0
- package/dist/src/theme/interface/seeds.d.ts +165 -0
- package/dist/src/theme/internal.d.ts +46 -0
- package/dist/src/theme/themes/ColorMap.d.ts +15 -0
- package/dist/src/theme/themes/compact/genCompactSizeMapToken.d.ts +2 -0
- package/dist/src/theme/themes/compact/index.d.ts +4 -0
- package/dist/src/theme/themes/dark/colorAlgorithm.d.ts +2 -0
- package/dist/src/theme/themes/dark/colors.d.ts +3 -0
- package/dist/src/theme/themes/dark/index.d.ts +4 -0
- package/dist/src/theme/themes/default/colorAlgorithm.d.ts +2 -0
- package/dist/src/theme/themes/default/colors.d.ts +3 -0
- package/dist/src/theme/themes/default/index.d.ts +2 -0
- package/dist/src/theme/themes/seed.d.ts +4 -0
- package/dist/src/theme/themes/shared/genColorMapToken.d.ts +8 -0
- package/dist/src/theme/themes/shared/genCommonMapToken.d.ts +2 -0
- package/dist/src/theme/themes/shared/genControlHeight.d.ts +3 -0
- package/dist/src/theme/themes/shared/genFontMapToken.d.ts +3 -0
- package/dist/src/theme/themes/shared/genFontSizes.d.ts +4 -0
- package/dist/src/theme/themes/shared/genRadius.d.ts +3 -0
- package/dist/src/theme/themes/shared/genSizeMapToken.d.ts +2 -0
- package/dist/src/theme/util/alias.d.ts +12 -0
- package/dist/src/theme/util/genComponentStyleHook.d.ts +26 -0
- package/dist/src/theme/util/getAlphaColor.d.ts +2 -0
- package/dist/src/theme/util/statistic.d.ts +16 -0
- package/dist/src/time-picker/date-fns.d.ts +31 -0
- package/dist/src/time-picker/dayjs.d.ts +32 -0
- package/dist/src/time-picker/index.d.ts +7 -0
- package/dist/src/time-picker/locale/ar_EG.d.ts +3 -0
- package/dist/src/time-picker/locale/az_AZ.d.ts +3 -0
- package/dist/src/time-picker/locale/bg_BG.d.ts +3 -0
- package/dist/src/time-picker/locale/bn_BD.d.ts +3 -0
- package/dist/src/time-picker/locale/by_BY.d.ts +3 -0
- package/dist/src/time-picker/locale/ca_ES.d.ts +3 -0
- package/dist/src/time-picker/locale/cs_CZ.d.ts +3 -0
- package/dist/src/time-picker/locale/da_DK.d.ts +3 -0
- package/dist/src/time-picker/locale/de_DE.d.ts +3 -0
- package/dist/src/time-picker/locale/el_GR.d.ts +3 -0
- package/dist/src/time-picker/locale/en_GB.d.ts +3 -0
- package/dist/src/time-picker/locale/en_US.d.ts +3 -0
- package/dist/src/time-picker/locale/es_ES.d.ts +3 -0
- package/dist/src/time-picker/locale/et_EE.d.ts +3 -0
- package/dist/src/time-picker/locale/fa_IR.d.ts +3 -0
- package/dist/src/time-picker/locale/fi_FI.d.ts +3 -0
- package/dist/src/time-picker/locale/fr_BE.d.ts +3 -0
- package/dist/src/time-picker/locale/fr_CA.d.ts +3 -0
- package/dist/src/time-picker/locale/fr_FR.d.ts +3 -0
- package/dist/src/time-picker/locale/ga_IE.d.ts +3 -0
- package/dist/src/time-picker/locale/gl_ES.d.ts +3 -0
- package/dist/src/time-picker/locale/he_IL.d.ts +3 -0
- package/dist/src/time-picker/locale/hi_IN.d.ts +3 -0
- package/dist/src/time-picker/locale/hr_HR.d.ts +3 -0
- package/dist/src/time-picker/locale/hu_HU.d.ts +3 -0
- package/dist/src/time-picker/locale/id_ID.d.ts +3 -0
- package/dist/src/time-picker/locale/is_IS.d.ts +3 -0
- package/dist/src/time-picker/locale/it_IT.d.ts +3 -0
- package/dist/src/time-picker/locale/ja_JP.d.ts +3 -0
- package/dist/src/time-picker/locale/ka_GE.d.ts +3 -0
- package/dist/src/time-picker/locale/kk_KZ.d.ts +3 -0
- package/dist/src/time-picker/locale/km_KH.d.ts +3 -0
- package/dist/src/time-picker/locale/kmr_IQ.d.ts +3 -0
- package/dist/src/time-picker/locale/kn_IN.d.ts +3 -0
- package/dist/src/time-picker/locale/ko_KR.d.ts +3 -0
- package/dist/src/time-picker/locale/lt_LT.d.ts +3 -0
- package/dist/src/time-picker/locale/lv_LV.d.ts +3 -0
- package/dist/src/time-picker/locale/mk_MK.d.ts +3 -0
- package/dist/src/time-picker/locale/ml_IN.d.ts +3 -0
- package/dist/src/time-picker/locale/mn_MN.d.ts +3 -0
- package/dist/src/time-picker/locale/ms_MY.d.ts +3 -0
- package/dist/src/time-picker/locale/nb_NO.d.ts +3 -0
- package/dist/src/time-picker/locale/nl_BE.d.ts +3 -0
- package/dist/src/time-picker/locale/nl_NL.d.ts +3 -0
- package/dist/src/time-picker/locale/pl_PL.d.ts +3 -0
- package/dist/src/time-picker/locale/pt_BR.d.ts +3 -0
- package/dist/src/time-picker/locale/pt_PT.d.ts +3 -0
- package/dist/src/time-picker/locale/ro_RO.d.ts +3 -0
- package/dist/src/time-picker/locale/ru_RU.d.ts +3 -0
- package/dist/src/time-picker/locale/sk_SK.d.ts +3 -0
- package/dist/src/time-picker/locale/sl_SI.d.ts +3 -0
- package/dist/src/time-picker/locale/sr_RS.d.ts +3 -0
- package/dist/src/time-picker/locale/sv_SE.d.ts +3 -0
- package/dist/src/time-picker/locale/ta_IN.d.ts +3 -0
- package/dist/src/time-picker/locale/th_TH.d.ts +3 -0
- package/dist/src/time-picker/locale/tr_TR.d.ts +3 -0
- package/dist/src/time-picker/locale/uk_UA.d.ts +3 -0
- package/dist/src/time-picker/locale/ur_PK.d.ts +3 -0
- package/dist/src/time-picker/locale/vi_VN.d.ts +3 -0
- package/dist/src/time-picker/locale/zh_CN.d.ts +3 -0
- package/dist/src/time-picker/locale/zh_TW.d.ts +3 -0
- package/dist/src/time-picker/moment.d.ts +32 -0
- package/dist/src/timeline/index.d.ts +10 -0
- package/dist/src/timeline/style/index.d.ts +6 -0
- package/dist/src/tooltip/abstractTooltipProps.d.ts +73 -0
- package/dist/src/tooltip/style/index.d.ts +8 -0
- package/dist/src/tooltip/util.d.ts +6 -0
- package/dist/src/tour/panelRender.d.ts +199 -0
- package/dist/src/tour/style/index.d.ts +6 -0
- package/dist/src/tour/useMergedType.d.ts +16 -0
- package/dist/src/transfer/interface.d.ts +6 -0
- package/dist/src/transfer/operation.d.ts +17 -0
- package/dist/src/transfer/search.d.ts +39 -0
- package/dist/src/transfer/style/index.d.ts +9 -0
- package/dist/src/tree/style/index.d.ts +14 -0
- package/dist/src/tree/utils/dictUtil.d.ts +10 -0
- package/dist/src/tree/utils/dropIndicator.d.ts +8 -0
- package/dist/src/tree/utils/iconUtil.d.ts +8 -0
- package/dist/src/tree-select/style/index.d.ts +3 -0
- package/dist/src/typography/Base.d.ts +200 -0
- package/dist/src/typography/Editable.d.ts +50 -0
- package/dist/src/typography/Link.d.ts +52 -0
- package/dist/src/typography/Paragraph.d.ts +52 -0
- package/dist/src/typography/Text.d.ts +51 -0
- package/dist/src/typography/Title.d.ts +49 -0
- package/dist/src/typography/Typography.d.ts +25 -0
- package/dist/src/typography/index.d.ts +17 -0
- package/dist/src/typography/style/index.d.ts +10 -0
- package/dist/src/typography/style/mixins.d.ts +9 -0
- package/dist/src/typography/util.d.ts +11 -0
- package/dist/src/upload/Dragger.d.ts +397 -0
- package/dist/src/upload/Upload.d.ts +398 -0
- package/dist/src/upload/UploadList/ListItem.d.ts +339 -0
- package/dist/src/upload/UploadList/index.d.ts +233 -0
- package/dist/src/upload/index.d.ts +1463 -0
- package/dist/src/upload/interface.d.ts +355 -0
- package/dist/src/upload/style/dragger.d.ts +4 -0
- package/dist/src/upload/style/index.d.ts +11 -0
- package/dist/src/upload/style/list.d.ts +4 -0
- package/dist/src/upload/style/motion.d.ts +4 -0
- package/dist/src/upload/style/picture.d.ts +5 -0
- package/dist/src/upload/style/rtl.d.ts +4 -0
- package/dist/src/upload/utils.d.ts +8 -0
- package/dist/src/vc-align/Align.d.ts +45 -0
- package/dist/src/vc-align/hooks/useBuffer.d.ts +3 -0
- package/dist/src/vc-align/index.d.ts +2 -0
- package/dist/src/vc-align/interface.d.ts +56 -0
- package/dist/src/vc-align/util.d.ts +4 -0
- package/dist/src/vc-cascader/OptionList/Checkbox.d.ts +15 -0
- package/dist/src/vc-cascader/OptionList/Column.d.ts +26 -0
- package/dist/src/vc-cascader/OptionList/index.d.ts +3 -0
- package/dist/src/vc-cascader/OptionList/useActive.d.ts +7 -0
- package/dist/src/vc-cascader/OptionList/useKeyboard.d.ts +5 -0
- package/dist/src/vc-cascader/context.d.ts +22 -0
- package/dist/src/vc-cascader/hooks/useDisplayValues.d.ts +9 -0
- package/dist/src/vc-cascader/hooks/useEntities.d.ts +10 -0
- package/dist/src/vc-cascader/hooks/useMissingValues.d.ts +4 -0
- package/dist/src/vc-cascader/hooks/useSearchConfig.d.ts +29 -0
- package/dist/src/vc-cascader/hooks/useSearchOptions.d.ts +5 -0
- package/dist/src/vc-cascader/index.d.ts +4 -0
- package/dist/src/vc-cascader/utils/commonUtil.d.ts +10 -0
- package/dist/src/vc-cascader/utils/treeUtil.d.ts +9 -0
- package/dist/src/vc-dialog/Mask.d.ts +15 -0
- package/dist/src/vc-dialog/index.d.ts +4 -0
- package/dist/src/vc-dialog/util.d.ts +6 -0
- package/dist/src/vc-drawer/index.d.ts +2 -0
- package/dist/src/vc-drawer/src/DrawerWrapper.d.ts +163 -0
- package/dist/src/vc-drawer/src/utils.d.ts +9 -0
- package/dist/src/vc-dropdown/index.d.ts +2 -0
- package/dist/src/vc-dropdown/placements.d.ts +57 -0
- package/dist/src/vc-image/index.d.ts +3 -0
- package/dist/src/vc-image/src/PreviewGroup.d.ts +79 -0
- package/dist/src/vc-image/src/getFixScaleEleTransPosition.d.ts +16 -0
- package/dist/src/vc-image/src/hooks/useFrameSetState.d.ts +3 -0
- package/dist/src/vc-input/utils/commonUtils.d.ts +8 -0
- package/dist/src/vc-input/utils/types.d.ts +2 -0
- package/dist/src/vc-mentions/index.d.ts +4 -0
- package/dist/src/vc-mentions/src/DropdownMenu.d.ts +18 -0
- package/dist/src/vc-mentions/src/KeywordTrigger.d.ts +46 -0
- package/dist/src/vc-mentions/src/MentionsContext.d.ts +12 -0
- package/dist/src/vc-mentions/src/Option.d.ts +68 -0
- package/dist/src/vc-mentions/src/util.d.ts +35 -0
- package/dist/src/vc-notification/HookNotification.d.ts +56 -0
- package/dist/src/vc-notification/Notice.d.ts +22 -0
- package/dist/src/vc-notification/Notification.d.ts +55 -0
- package/dist/src/vc-notification/index.d.ts +4 -0
- package/dist/src/vc-notification/useNotification.d.ts +32 -0
- package/dist/src/vc-overflow/context.d.ts +25 -0
- package/dist/src/vc-overflow/index.d.ts +3 -0
- package/dist/src/vc-pagination/KeyCode.d.ts +12 -0
- package/dist/src/vc-pagination/index.d.ts +1 -0
- package/dist/src/vc-pagination/locale/ar_EG.d.ts +13 -0
- package/dist/src/vc-pagination/locale/az_AZ.d.ts +13 -0
- package/dist/src/vc-pagination/locale/bg_BG.d.ts +13 -0
- package/dist/src/vc-pagination/locale/bn_BD.d.ts +13 -0
- package/dist/src/vc-pagination/locale/by_BY.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ca_ES.d.ts +13 -0
- package/dist/src/vc-pagination/locale/cs_CZ.d.ts +13 -0
- package/dist/src/vc-pagination/locale/da_DK.d.ts +13 -0
- package/dist/src/vc-pagination/locale/de_DE.d.ts +13 -0
- package/dist/src/vc-pagination/locale/el_GR.d.ts +13 -0
- package/dist/src/vc-pagination/locale/en_GB.d.ts +13 -0
- package/dist/src/vc-pagination/locale/en_US.d.ts +13 -0
- package/dist/src/vc-pagination/locale/es_ES.d.ts +13 -0
- package/dist/src/vc-pagination/locale/et_EE.d.ts +13 -0
- package/dist/src/vc-pagination/locale/fa_IR.d.ts +13 -0
- package/dist/src/vc-pagination/locale/fi_FI.d.ts +13 -0
- package/dist/src/vc-pagination/locale/fr_BE.d.ts +13 -0
- package/dist/src/vc-pagination/locale/fr_CA.d.ts +13 -0
- package/dist/src/vc-pagination/locale/fr_FR.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ga_IE.d.ts +13 -0
- package/dist/src/vc-pagination/locale/gl_ES.d.ts +13 -0
- package/dist/src/vc-pagination/locale/he_IL.d.ts +13 -0
- package/dist/src/vc-pagination/locale/hi_IN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/hr_HR.d.ts +13 -0
- package/dist/src/vc-pagination/locale/hu_HU.d.ts +13 -0
- package/dist/src/vc-pagination/locale/id_ID.d.ts +13 -0
- package/dist/src/vc-pagination/locale/is_IS.d.ts +13 -0
- package/dist/src/vc-pagination/locale/it_IT.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ja_JP.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ka_GE.d.ts +13 -0
- package/dist/src/vc-pagination/locale/kk_KZ.d.ts +13 -0
- package/dist/src/vc-pagination/locale/km_KH.d.ts +13 -0
- package/dist/src/vc-pagination/locale/kmr_IQ.d.ts +13 -0
- package/dist/src/vc-pagination/locale/kn_IN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ko_KR.d.ts +13 -0
- package/dist/src/vc-pagination/locale/lt_LT.d.ts +13 -0
- package/dist/src/vc-pagination/locale/lv_LV.d.ts +13 -0
- package/dist/src/vc-pagination/locale/mk_MK.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ml_IN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/mm_MM.d.ts +13 -0
- package/dist/src/vc-pagination/locale/mn_MN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ms_MY.d.ts +13 -0
- package/dist/src/vc-pagination/locale/nb_NO.d.ts +12 -0
- package/dist/src/vc-pagination/locale/nl_BE.d.ts +13 -0
- package/dist/src/vc-pagination/locale/nl_NL.d.ts +13 -0
- package/dist/src/vc-pagination/locale/pa_IN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/pb_IN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/pl_PL.d.ts +13 -0
- package/dist/src/vc-pagination/locale/pt_BR.d.ts +13 -0
- package/dist/src/vc-pagination/locale/pt_PT.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ro_RO.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ru_RU.d.ts +13 -0
- package/dist/src/vc-pagination/locale/sk_SK.d.ts +13 -0
- package/dist/src/vc-pagination/locale/sl_SI.d.ts +13 -0
- package/dist/src/vc-pagination/locale/sr_RS.d.ts +12 -0
- package/dist/src/vc-pagination/locale/sv_SE.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ta_IN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/th_TH.d.ts +13 -0
- package/dist/src/vc-pagination/locale/tr_TR.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ug_CN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/uk_UA.d.ts +13 -0
- package/dist/src/vc-pagination/locale/ur_PK.d.ts +13 -0
- package/dist/src/vc-pagination/locale/vi_VN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/zh_CN.d.ts +13 -0
- package/dist/src/vc-pagination/locale/zh_TW.d.ts +13 -0
- package/dist/src/vc-picker/PanelContext.d.ts +26 -0
- package/dist/src/vc-picker/Picker.d.ts +74 -0
- package/dist/src/vc-picker/PickerPanel.d.ts +56 -0
- package/dist/src/vc-picker/PickerTrigger.d.ts +19 -0
- package/dist/src/vc-picker/PresetPanel.d.ts +21 -0
- package/dist/src/vc-picker/RangeContext.d.ts +41 -0
- package/dist/src/vc-picker/RangePicker.d.ts +68 -0
- package/dist/src/vc-picker/generate/dateFns.d.ts +3 -0
- package/dist/src/vc-picker/generate/dayjs.d.ts +4 -0
- package/dist/src/vc-picker/generate/index.d.ts +37 -0
- package/dist/src/vc-picker/generate/moment.d.ts +4 -0
- package/dist/src/vc-picker/hooks/useCellClassName.d.ts +15 -0
- package/dist/src/vc-picker/hooks/useHoverValue.d.ts +3 -0
- package/dist/src/vc-picker/hooks/useMergeProps.d.ts +2 -0
- package/dist/src/vc-picker/hooks/usePickerInput.d.ts +18 -0
- package/dist/src/vc-picker/hooks/usePresets.d.ts +3 -0
- package/dist/src/vc-picker/hooks/useRangeDisabled.d.ts +13 -0
- package/dist/src/vc-picker/hooks/useRangeViewDates.d.ts +9 -0
- package/dist/src/vc-picker/hooks/useTextValueMapping.d.ts +6 -0
- package/dist/src/vc-picker/hooks/useValueTexts.d.ts +9 -0
- package/dist/src/vc-picker/index.d.ts +6 -0
- package/dist/src/vc-picker/interface.d.ts +87 -0
- package/dist/src/vc-picker/locale/ar_EG.d.ts +3 -0
- package/dist/src/vc-picker/locale/az_AZ.d.ts +3 -0
- package/dist/src/vc-picker/locale/bg_BG.d.ts +3 -0
- package/dist/src/vc-picker/locale/bn_BD.d.ts +3 -0
- package/dist/src/vc-picker/locale/by_BY.d.ts +3 -0
- package/dist/src/vc-picker/locale/ca_ES.d.ts +3 -0
- package/dist/src/vc-picker/locale/cs_CZ.d.ts +3 -0
- package/dist/src/vc-picker/locale/da_DK.d.ts +3 -0
- package/dist/src/vc-picker/locale/de_DE.d.ts +3 -0
- package/dist/src/vc-picker/locale/el_GR.d.ts +3 -0
- package/dist/src/vc-picker/locale/en_GB.d.ts +3 -0
- package/dist/src/vc-picker/locale/en_US.d.ts +3 -0
- package/dist/src/vc-picker/locale/es_ES.d.ts +3 -0
- package/dist/src/vc-picker/locale/es_MX.d.ts +3 -0
- package/dist/src/vc-picker/locale/et_EE.d.ts +3 -0
- package/dist/src/vc-picker/locale/fa_IR.d.ts +3 -0
- package/dist/src/vc-picker/locale/fi_FI.d.ts +3 -0
- package/dist/src/vc-picker/locale/fr_BE.d.ts +3 -0
- package/dist/src/vc-picker/locale/fr_CA.d.ts +3 -0
- package/dist/src/vc-picker/locale/fr_FR.d.ts +3 -0
- package/dist/src/vc-picker/locale/ga_IE.d.ts +3 -0
- package/dist/src/vc-picker/locale/gl_ES.d.ts +3 -0
- package/dist/src/vc-picker/locale/he_IL.d.ts +3 -0
- package/dist/src/vc-picker/locale/hi_IN.d.ts +3 -0
- package/dist/src/vc-picker/locale/hr_HR.d.ts +3 -0
- package/dist/src/vc-picker/locale/hu_HU.d.ts +3 -0
- package/dist/src/vc-picker/locale/id_ID.d.ts +3 -0
- package/dist/src/vc-picker/locale/is_IS.d.ts +3 -0
- package/dist/src/vc-picker/locale/it_IT.d.ts +3 -0
- package/dist/src/vc-picker/locale/ja_JP.d.ts +3 -0
- package/dist/src/vc-picker/locale/ka_GE.d.ts +3 -0
- package/dist/src/vc-picker/locale/kk_KZ.d.ts +3 -0
- package/dist/src/vc-picker/locale/km_KH.d.ts +3 -0
- package/dist/src/vc-picker/locale/kmr_IQ.d.ts +3 -0
- package/dist/src/vc-picker/locale/kn_IN.d.ts +3 -0
- package/dist/src/vc-picker/locale/ko_KR.d.ts +3 -0
- package/dist/src/vc-picker/locale/lt_LT.d.ts +3 -0
- package/dist/src/vc-picker/locale/lv_LV.d.ts +3 -0
- package/dist/src/vc-picker/locale/mk_MK.d.ts +3 -0
- package/dist/src/vc-picker/locale/ml_IN.d.ts +3 -0
- package/dist/src/vc-picker/locale/mm_MM.d.ts +3 -0
- package/dist/src/vc-picker/locale/mn_MN.d.ts +3 -0
- package/dist/src/vc-picker/locale/ms_MY.d.ts +3 -0
- package/dist/src/vc-picker/locale/nb_NO.d.ts +3 -0
- package/dist/src/vc-picker/locale/nl_BE.d.ts +3 -0
- package/dist/src/vc-picker/locale/nl_NL.d.ts +3 -0
- package/dist/src/vc-picker/locale/pl_PL.d.ts +3 -0
- package/dist/src/vc-picker/locale/pt_BR.d.ts +3 -0
- package/dist/src/vc-picker/locale/pt_PT.d.ts +3 -0
- package/dist/src/vc-picker/locale/ro_RO.d.ts +3 -0
- package/dist/src/vc-picker/locale/ru_RU.d.ts +3 -0
- package/dist/src/vc-picker/locale/sk_SK.d.ts +3 -0
- package/dist/src/vc-picker/locale/sl_SI.d.ts +3 -0
- package/dist/src/vc-picker/locale/sr_RS.d.ts +3 -0
- package/dist/src/vc-picker/locale/sv_SE.d.ts +3 -0
- package/dist/src/vc-picker/locale/ta_IN.d.ts +3 -0
- package/dist/src/vc-picker/locale/th_TH.d.ts +3 -0
- package/dist/src/vc-picker/locale/tr_TR.d.ts +3 -0
- package/dist/src/vc-picker/locale/ug_CN.d.ts +3 -0
- package/dist/src/vc-picker/locale/uk_UA.d.ts +3 -0
- package/dist/src/vc-picker/locale/ur_PK.d.ts +3 -0
- package/dist/src/vc-picker/locale/vi_VN.d.ts +3 -0
- package/dist/src/vc-picker/locale/zh_CN.d.ts +3 -0
- package/dist/src/vc-picker/locale/zh_TW.d.ts +3 -0
- package/dist/src/vc-picker/panels/DatePanel/DateBody.d.ts +29 -0
- package/dist/src/vc-picker/panels/DatePanel/DateHeader.d.ts +21 -0
- package/dist/src/vc-picker/panels/DatePanel/index.d.ts +15 -0
- package/dist/src/vc-picker/panels/DatetimePanel/index.d.ts +14 -0
- package/dist/src/vc-picker/panels/DecadePanel/DecadeBody.d.ts +15 -0
- package/dist/src/vc-picker/panels/DecadePanel/DecadeHeader.d.ts +14 -0
- package/dist/src/vc-picker/panels/DecadePanel/index.d.ts +10 -0
- package/dist/src/vc-picker/panels/Header.d.ts +25 -0
- package/dist/src/vc-picker/panels/MonthPanel/MonthBody.d.ts +24 -0
- package/dist/src/vc-picker/panels/MonthPanel/MonthHeader.d.ts +17 -0
- package/dist/src/vc-picker/panels/MonthPanel/index.d.ts +11 -0
- package/dist/src/vc-picker/panels/PanelBody.d.ts +27 -0
- package/dist/src/vc-picker/panels/QuarterPanel/QuarterBody.d.ts +18 -0
- package/dist/src/vc-picker/panels/QuarterPanel/QuarterHeader.d.ts +17 -0
- package/dist/src/vc-picker/panels/QuarterPanel/index.d.ts +8 -0
- package/dist/src/vc-picker/panels/TimePanel/TimeBody.d.ts +56 -0
- package/dist/src/vc-picker/panels/TimePanel/TimeHeader.d.ts +15 -0
- package/dist/src/vc-picker/panels/TimePanel/TimeUnitColumn.d.ts +30 -0
- package/dist/src/vc-picker/panels/TimePanel/index.d.ts +31 -0
- package/dist/src/vc-picker/panels/WeekPanel/index.d.ts +8 -0
- package/dist/src/vc-picker/panels/YearPanel/YearBody.d.ts +18 -0
- package/dist/src/vc-picker/panels/YearPanel/YearHeader.d.ts +16 -0
- package/dist/src/vc-picker/panels/YearPanel/index.d.ts +11 -0
- package/dist/src/vc-picker/utils/dateUtil.d.ts +33 -0
- package/dist/src/vc-picker/utils/getExtraFooter.d.ts +2 -0
- package/dist/src/vc-picker/utils/getRanges.d.ts +12 -0
- package/dist/src/vc-picker/utils/miscUtil.d.ts +8 -0
- package/dist/src/vc-picker/utils/timeUtil.d.ts +6 -0
- package/dist/src/vc-picker/utils/uiUtil.d.ts +21 -0
- package/dist/src/vc-picker/utils/warnUtil.d.ts +5 -0
- package/dist/src/vc-progress/index.d.ts +4 -0
- package/dist/src/vc-progress/src/Circle.d.ts +42 -0
- package/dist/src/vc-progress/src/Line.d.ts +42 -0
- package/dist/src/vc-progress/src/common.d.ts +5 -0
- package/dist/src/vc-progress/src/index.d.ts +87 -0
- package/dist/src/vc-progress/src/types.d.ts +25 -0
- package/dist/src/vc-resize-observer/index.d.ts +25 -0
- package/dist/src/vc-select/OptGroup.d.ts +9 -0
- package/dist/src/vc-select/Option.d.ts +12 -0
- package/dist/src/vc-select/OptionList.d.ts +14 -0
- package/dist/src/vc-select/SelectContext.d.ts +19 -0
- package/dist/src/vc-select/SelectTrigger.d.ts +34 -0
- package/dist/src/vc-select/Selector/MultipleSelector.d.ts +18 -0
- package/dist/src/vc-select/Selector/SingleSelector.d.ts +11 -0
- package/dist/src/vc-select/Selector/index.d.ts +48 -0
- package/dist/src/vc-select/Selector/interface.d.ts +26 -0
- package/dist/src/vc-select/TransBtn.d.ts +14 -0
- package/dist/src/vc-select/hooks/useBaseProps.d.ts +8 -0
- package/dist/src/vc-select/hooks/useCache.d.ts +8 -0
- package/dist/src/vc-select/hooks/useDelayReset.d.ts +6 -0
- package/dist/src/vc-select/hooks/useFilterOptions.d.ts +4 -0
- package/dist/src/vc-select/hooks/useId.d.ts +6 -0
- package/dist/src/vc-select/hooks/useLock.d.ts +7 -0
- package/dist/src/vc-select/hooks/useOptions.d.ts +11 -0
- package/dist/src/vc-select/hooks/useSelectTriggerControl.d.ts +2 -0
- package/dist/src/vc-select/index.d.ts +8 -0
- package/dist/src/vc-select/interface.d.ts +10 -0
- package/dist/src/vc-select/utils/commonUtil.d.ts +4 -0
- package/dist/src/vc-select/utils/keyUtil.d.ts +2 -0
- package/dist/src/vc-select/utils/legacyUtil.d.ts +3 -0
- package/dist/src/vc-select/utils/platformUtil.d.ts +1 -0
- package/dist/src/vc-select/utils/valueUtil.d.ts +21 -0
- package/dist/src/vc-select/utils/warningPropsUtil.d.ts +3 -0
- package/dist/src/vc-slider/index.d.ts +2 -0
- package/dist/src/vc-slider/src/Handle.d.ts +70 -0
- package/dist/src/vc-slider/src/common/Marks.d.ts +5 -0
- package/dist/src/vc-slider/src/common/Steps.d.ts +7 -0
- package/dist/src/vc-slider/src/common/Track.d.ts +7 -0
- package/dist/src/vc-slider/src/index.d.ts +5 -0
- package/dist/src/vc-slider/src/utils.d.ts +26 -0
- package/dist/src/vc-steps/index.d.ts +4 -0
- package/dist/src/vc-steps/interface.d.ts +15 -0
- package/dist/src/vc-table/Body/BodyRow.d.ts +19 -0
- package/dist/src/vc-table/Body/ExpandedRow.d.ts +12 -0
- package/dist/src/vc-table/Body/MeasureCell.d.ts +8 -0
- package/dist/src/vc-table/Body/index.d.ts +13 -0
- package/dist/src/vc-table/Cell/index.d.ts +82 -0
- package/dist/src/vc-table/ColGroup.d.ts +8 -0
- package/dist/src/vc-table/FixedHolder/index.d.ts +19 -0
- package/dist/src/vc-table/Footer/Cell.d.ts +20 -0
- package/dist/src/vc-table/Footer/Row.d.ts +3 -0
- package/dist/src/vc-table/Footer/Summary.d.ts +6 -0
- package/dist/src/vc-table/Footer/index.d.ts +14 -0
- package/dist/src/vc-table/Header/DragHandle.d.ts +44 -0
- package/dist/src/vc-table/Header/Header.d.ts +10 -0
- package/dist/src/vc-table/Header/HeaderRow.d.ts +13 -0
- package/dist/src/vc-table/Panel/index.d.ts +7 -0
- package/dist/src/vc-table/Table.d.ts +148 -0
- package/dist/src/vc-table/constant.d.ts +1 -0
- package/dist/src/vc-table/context/BodyContext.d.ts +19 -0
- package/dist/src/vc-table/context/ExpandedRowContext.d.ts +10 -0
- package/dist/src/vc-table/context/HoverContext.d.ts +9 -0
- package/dist/src/vc-table/context/ResizeContext.d.ts +9 -0
- package/dist/src/vc-table/context/StickyContext.d.ts +3 -0
- package/dist/src/vc-table/context/SummaryContext.d.ts +14 -0
- package/dist/src/vc-table/context/TableContext.d.ts +16 -0
- package/dist/src/vc-table/hooks/useColumns.d.ts +21 -0
- package/dist/src/vc-table/hooks/useFlattenRecords.d.ts +22 -0
- package/dist/src/vc-table/hooks/useFrame.d.ts +5 -0
- package/dist/src/vc-table/hooks/useSticky.d.ts +11 -0
- package/dist/src/vc-table/hooks/useStickyOffsets.d.ts +7 -0
- package/dist/src/vc-table/index.d.ts +8 -0
- package/dist/src/vc-table/interface.d.ts +177 -0
- package/dist/src/vc-table/stickyScrollBar.d.ts +15 -0
- package/dist/src/vc-table/sugar/Column.d.ts +11 -0
- package/dist/src/vc-table/sugar/ColumnGroup.d.ts +11 -0
- package/dist/src/vc-table/utils/expandUtil.d.ts +3 -0
- package/dist/src/vc-table/utils/fixUtil.d.ts +13 -0
- package/dist/src/vc-table/utils/legacyUtil.d.ts +10 -0
- package/dist/src/vc-table/utils/valueUtil.d.ts +10 -0
- package/dist/src/vc-tooltip/index.d.ts +2 -0
- package/dist/src/vc-tooltip/src/placements.d.ts +111 -0
- package/dist/src/vc-tour/Mask.d.ts +93 -0
- package/dist/src/vc-tour/TourStep/DefaultPanel.d.ts +174 -0
- package/dist/src/vc-tour/TourStep/index.d.ts +174 -0
- package/dist/src/vc-tour/hooks/useTarget.d.ts +14 -0
- package/dist/src/vc-tour/index.d.ts +6 -0
- package/dist/src/vc-tour/interface.d.ts +128 -0
- package/dist/src/vc-tour/placements.d.ts +4 -0
- package/dist/src/vc-tour/util.d.ts +1 -0
- package/dist/src/vc-tree/DropIndicator.d.ts +5 -0
- package/dist/src/vc-tree/Indent.d.ts +8 -0
- package/dist/src/vc-tree/NodeList.d.ts +137 -0
- package/dist/src/vc-tree/contextTypes.d.ts +109 -0
- package/dist/src/vc-tree/index.d.ts +7 -0
- package/dist/src/vc-tree/interface.d.ts +83 -0
- package/dist/src/vc-tree/useMaxLevel.d.ts +6 -0
- package/dist/src/vc-tree/util.d.ts +51 -0
- package/dist/src/vc-tree/utils/conductUtil.d.ts +17 -0
- package/dist/src/vc-tree/utils/diffUtil.d.ts +6 -0
- package/dist/src/vc-tree/utils/treeUtil.d.ts +89 -0
- package/dist/src/vc-tree-select/LegacyContext.d.ts +30 -0
- package/dist/src/vc-tree-select/OptionList.d.ts +3 -0
- package/dist/src/vc-tree-select/TreeNode.d.ts +10 -0
- package/dist/src/vc-tree-select/TreeSelectContext.d.ts +14 -0
- package/dist/src/vc-tree-select/hooks/useCache.d.ts +8 -0
- package/dist/src/vc-tree-select/hooks/useCheckedKeys.d.ts +6 -0
- package/dist/src/vc-tree-select/hooks/useDataEntities.d.ts +9 -0
- package/dist/src/vc-tree-select/hooks/useFilterTreeData.d.ts +8 -0
- package/dist/src/vc-tree-select/hooks/useTreeData.d.ts +9 -0
- package/dist/src/vc-tree-select/index.d.ts +6 -0
- package/dist/src/vc-tree-select/interface.d.ts +82 -0
- package/dist/src/vc-tree-select/utils/legacyUtil.d.ts +6 -0
- package/dist/src/vc-tree-select/utils/strategyUtil.d.ts +8 -0
- package/dist/src/vc-tree-select/utils/valueUtil.d.ts +13 -0
- package/dist/src/vc-tree-select/utils/warningPropsUtil.d.ts +5 -0
- package/dist/src/vc-trigger/Popup/Mask.d.ts +14 -0
- package/dist/src/vc-trigger/Popup/MobilePopupInner.d.ts +105 -0
- package/dist/src/vc-trigger/Popup/PopupInner.d.ts +99 -0
- package/dist/src/vc-trigger/Popup/index.d.ts +106 -0
- package/dist/src/vc-trigger/Popup/interface.d.ts +151 -0
- package/dist/src/vc-trigger/Popup/useStretchStyle.d.ts +4 -0
- package/dist/src/vc-trigger/Popup/useVisibleStatus.d.ts +15 -0
- package/dist/src/vc-trigger/context.d.ts +11 -0
- package/dist/src/vc-trigger/index.d.ts +5 -0
- package/dist/src/vc-trigger/utils/alignUtil.d.ts +3 -0
- package/dist/src/vc-trigger/utils/motionUtil.d.ts +12 -0
- package/dist/src/vc-upload/AjaxUploader.d.ts +109 -0
- package/dist/src/vc-upload/Upload.d.ts +109 -0
- package/dist/src/vc-upload/attr-accept.d.ts +3 -0
- package/dist/src/vc-upload/index.d.ts +4 -0
- package/dist/src/vc-upload/interface.d.ts +79 -0
- package/dist/src/vc-upload/request.d.ts +4 -0
- package/dist/src/vc-upload/traverseFileTree.d.ts +14 -0
- package/dist/src/vc-upload/uid.d.ts +1 -0
- package/dist/src/vc-util/Children/toArray.d.ts +4 -0
- package/dist/src/vc-util/Dom/contains.d.ts +1 -0
- package/dist/src/vc-util/Dom/css.d.ts +22 -0
- package/dist/src/vc-util/Dom/dynamicCSS.d.ts +20 -0
- package/dist/src/vc-util/Dom/isVisible.d.ts +2 -0
- package/dist/src/vc-util/Dom/scrollLocker.d.ts +12 -0
- package/dist/src/vc-util/devWarning.d.ts +4 -0
- package/dist/src/vc-util/get.d.ts +1 -0
- package/dist/src/vc-util/isEqual.d.ts +9 -0
- package/dist/src/vc-util/isMobile.d.ts +2 -0
- package/dist/src/vc-util/set.d.ts +1 -0
- package/dist/src/vc-util/warning.d.ts +7 -0
- package/dist/src/vc-virtual-list/Filler.d.ts +11 -0
- package/dist/src/vc-virtual-list/Item.d.ts +6 -0
- package/dist/src/vc-virtual-list/ScrollBar.d.ts +58 -0
- package/dist/src/vc-virtual-list/hooks/useFrameWheel.d.ts +7 -0
- package/dist/src/vc-virtual-list/hooks/useHeights.d.ts +4 -0
- package/dist/src/vc-virtual-list/hooks/useMobileTouchMove.d.ts +2 -0
- package/dist/src/vc-virtual-list/hooks/useOriginScroll.d.ts +3 -0
- package/dist/src/vc-virtual-list/hooks/useScrollTo.d.ts +4 -0
- package/dist/src/vc-virtual-list/index.d.ts +2 -0
- package/dist/src/vc-virtual-list/interface.d.ts +9 -0
- package/dist/src/vc-virtual-list/utils/isFirefox.d.ts +2 -0
- package/dist/src/watermark/index.d.ts +131 -0
- package/dist/src/watermark/utils.d.ts +10 -0
- package/package.json +70 -0
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { CSSProperties } from 'vue';
|
|
2
|
+
import { MapToken } from './maps';
|
|
3
|
+
export interface AliasToken extends MapToken {
|
|
4
|
+
colorFillContentHover: string;
|
|
5
|
+
colorFillAlter: string;
|
|
6
|
+
colorFillContent: string;
|
|
7
|
+
colorBgContainerDisabled: string;
|
|
8
|
+
colorBgTextHover: string;
|
|
9
|
+
colorBgTextActive: string;
|
|
10
|
+
colorBorderBg: string;
|
|
11
|
+
/**
|
|
12
|
+
* @nameZH 分割线颜色
|
|
13
|
+
* @desc 用于作为分割线的颜色,此颜色和 colorBorderSecondary 的颜色一致,但是用的是透明色。
|
|
14
|
+
*/
|
|
15
|
+
colorSplit: string;
|
|
16
|
+
colorTextPlaceholder: string;
|
|
17
|
+
colorTextDisabled: string;
|
|
18
|
+
colorTextHeading: string;
|
|
19
|
+
colorTextLabel: string;
|
|
20
|
+
colorTextDescription: string;
|
|
21
|
+
colorTextLightSolid: string;
|
|
22
|
+
/** Weak action. Such as `allowClear` or Alert close button */
|
|
23
|
+
colorIcon: string;
|
|
24
|
+
/** Weak action hover color. Such as `allowClear` or Alert close button */
|
|
25
|
+
colorIconHover: string;
|
|
26
|
+
colorLink: string;
|
|
27
|
+
colorLinkHover: string;
|
|
28
|
+
colorLinkActive: string;
|
|
29
|
+
colorHighlight: string;
|
|
30
|
+
controlOutline: string;
|
|
31
|
+
colorWarningOutline: string;
|
|
32
|
+
colorErrorOutline: string;
|
|
33
|
+
/** Operation icon in Select, Cascader, etc. icon fontSize. Normal is same as fontSizeSM */
|
|
34
|
+
fontSizeIcon: number;
|
|
35
|
+
/** For heading like h1, h2, h3 or option selected item */
|
|
36
|
+
fontWeightStrong: number;
|
|
37
|
+
controlOutlineWidth: number;
|
|
38
|
+
controlItemBgHover: string;
|
|
39
|
+
controlItemBgActive: string;
|
|
40
|
+
controlItemBgActiveHover: string;
|
|
41
|
+
controlInteractiveSize: number;
|
|
42
|
+
controlItemBgActiveDisabled: string;
|
|
43
|
+
paddingXXS: number;
|
|
44
|
+
paddingXS: number;
|
|
45
|
+
paddingSM: number;
|
|
46
|
+
padding: number;
|
|
47
|
+
paddingMD: number;
|
|
48
|
+
paddingLG: number;
|
|
49
|
+
paddingXL: number;
|
|
50
|
+
paddingContentHorizontalLG: number;
|
|
51
|
+
paddingContentHorizontal: number;
|
|
52
|
+
paddingContentHorizontalSM: number;
|
|
53
|
+
paddingContentVerticalLG: number;
|
|
54
|
+
paddingContentVertical: number;
|
|
55
|
+
paddingContentVerticalSM: number;
|
|
56
|
+
marginXXS: number;
|
|
57
|
+
marginXS: number;
|
|
58
|
+
marginSM: number;
|
|
59
|
+
margin: number;
|
|
60
|
+
marginMD: number;
|
|
61
|
+
marginLG: number;
|
|
62
|
+
marginXL: number;
|
|
63
|
+
marginXXL: number;
|
|
64
|
+
opacityLoading: number;
|
|
65
|
+
boxShadow: string;
|
|
66
|
+
boxShadowSecondary: string;
|
|
67
|
+
boxShadowTertiary: string;
|
|
68
|
+
linkDecoration: CSSProperties['textDecoration'];
|
|
69
|
+
linkHoverDecoration: CSSProperties['textDecoration'];
|
|
70
|
+
linkFocusDecoration: CSSProperties['textDecoration'];
|
|
71
|
+
controlPaddingHorizontal: number;
|
|
72
|
+
controlPaddingHorizontalSM: number;
|
|
73
|
+
screenXS: number;
|
|
74
|
+
screenXSMin: number;
|
|
75
|
+
screenXSMax: number;
|
|
76
|
+
screenSM: number;
|
|
77
|
+
screenSMMin: number;
|
|
78
|
+
screenSMMax: number;
|
|
79
|
+
screenMD: number;
|
|
80
|
+
screenMDMin: number;
|
|
81
|
+
screenMDMax: number;
|
|
82
|
+
screenLG: number;
|
|
83
|
+
screenLGMin: number;
|
|
84
|
+
screenLGMax: number;
|
|
85
|
+
screenXL: number;
|
|
86
|
+
screenXLMin: number;
|
|
87
|
+
screenXLMax: number;
|
|
88
|
+
screenXXL: number;
|
|
89
|
+
screenXXLMin: number;
|
|
90
|
+
screenXXLMax: number;
|
|
91
|
+
screenXXXL: number;
|
|
92
|
+
screenXXXLMin: number;
|
|
93
|
+
/** Used for DefaultButton, Switch which has default outline */
|
|
94
|
+
controlTmpOutline: string;
|
|
95
|
+
/** @internal */
|
|
96
|
+
boxShadowPopoverArrow: string;
|
|
97
|
+
/** @internal */
|
|
98
|
+
boxShadowCard: string;
|
|
99
|
+
/** @internal */
|
|
100
|
+
boxShadowDrawerRight: string;
|
|
101
|
+
/** @internal */
|
|
102
|
+
boxShadowDrawerLeft: string;
|
|
103
|
+
/** @internal */
|
|
104
|
+
boxShadowDrawerUp: string;
|
|
105
|
+
/** @internal */
|
|
106
|
+
boxShadowDrawerDown: string;
|
|
107
|
+
/** @internal */
|
|
108
|
+
boxShadowTabsOverflowLeft: string;
|
|
109
|
+
/** @internal */
|
|
110
|
+
boxShadowTabsOverflowRight: string;
|
|
111
|
+
/** @internal */
|
|
112
|
+
boxShadowTabsOverflowTop: string;
|
|
113
|
+
/** @internal */
|
|
114
|
+
boxShadowTabsOverflowBottom: string;
|
|
115
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { ComponentToken as WaveToken } from '../../_util/wave/style';
|
|
2
|
+
import { ComponentToken as AlertComponentToken } from '../../alert/style';
|
|
3
|
+
import { ComponentToken as AnchorComponentToken } from '../../anchor/style';
|
|
4
|
+
import { ComponentToken as AppComponentToken } from '../../app/style';
|
|
5
|
+
import { ComponentToken as AvatarComponentToken } from '../../avatar/style';
|
|
6
|
+
import { ComponentToken as ButtonComponentToken } from '../../button/style';
|
|
7
|
+
import { ComponentToken as CalendarComponentToken } from '../../calendar/style';
|
|
8
|
+
import { ComponentToken as CardComponentToken } from '../../card/style';
|
|
9
|
+
import { ComponentToken as CarouselComponentToken } from '../../carousel/style';
|
|
10
|
+
import { ComponentToken as CascaderComponentToken } from '../../cascader/style';
|
|
11
|
+
import { ComponentToken as CheckboxComponentToken } from '../../checkbox/style';
|
|
12
|
+
import { ComponentToken as CollapseComponentToken } from '../../collapse/style';
|
|
13
|
+
import { ComponentToken as DatePickerComponentToken } from '../../date-picker/style';
|
|
14
|
+
import { ComponentToken as DividerComponentToken } from '../../divider/style';
|
|
15
|
+
import { ComponentToken as DrawerComponentToken } from '../../drawer/style';
|
|
16
|
+
import { ComponentToken as DropdownComponentToken } from '../../dropdown/style';
|
|
17
|
+
import { ComponentToken as EmptyComponentToken } from '../../empty/style';
|
|
18
|
+
import { ComponentToken as FlexToken } from '../../flex/style';
|
|
19
|
+
import { ComponentToken as FloatButtonComponentToken } from '../../float-button/style';
|
|
20
|
+
import { ComponentToken as ImageComponentToken } from '../../image/style';
|
|
21
|
+
import { ComponentToken as InputNumberComponentToken } from '../../input-number/style';
|
|
22
|
+
import { ComponentToken as LayoutComponentToken } from '../../layout/style';
|
|
23
|
+
import { ComponentToken as ListComponentToken } from '../../list/style';
|
|
24
|
+
import { ComponentToken as MentionsComponentToken } from '../../mentions/style';
|
|
25
|
+
import { ComponentToken as MenuComponentToken } from '../../menu/style';
|
|
26
|
+
import { ComponentToken as MessageComponentToken } from '../../message/style';
|
|
27
|
+
import { ComponentToken as ModalComponentToken } from '../../modal/style';
|
|
28
|
+
import { ComponentToken as NotificationComponentToken } from '../../notification/style';
|
|
29
|
+
import { ComponentToken as PopconfirmComponentToken } from '../../popconfirm/style';
|
|
30
|
+
import { ComponentToken as PopoverComponentToken } from '../../popover/style';
|
|
31
|
+
import { ComponentToken as ProgressComponentToken } from '../../progress/style';
|
|
32
|
+
import { ComponentToken as QRCodeComponentToken } from '../../qrcode/style';
|
|
33
|
+
import { ComponentToken as RadioComponentToken } from '../../radio/style';
|
|
34
|
+
import { ComponentToken as RateComponentToken } from '../../rate/style';
|
|
35
|
+
import { ComponentToken as ResultComponentToken } from '../../result/style';
|
|
36
|
+
import { ComponentToken as SegmentedComponentToken } from '../../segmented/style';
|
|
37
|
+
import { ComponentToken as SelectComponentToken } from '../../select/style';
|
|
38
|
+
import { ComponentToken as SkeletonComponentToken } from '../../skeleton/style';
|
|
39
|
+
import { ComponentToken as SliderComponentToken } from '../../slider/style';
|
|
40
|
+
import { ComponentToken as SpaceComponentToken } from '../../space/style';
|
|
41
|
+
import { ComponentToken as SpinComponentToken } from '../../spin/style';
|
|
42
|
+
import { ComponentToken as StepsComponentToken } from '../../steps/style';
|
|
43
|
+
import { ComponentToken as TableComponentToken } from '../../table/style';
|
|
44
|
+
import { ComponentToken as TabsComponentToken } from '../../tabs/style';
|
|
45
|
+
import { ComponentToken as TagComponentToken } from '../../tag/style';
|
|
46
|
+
import { ComponentToken as TimelineComponentToken } from '../../timeline/style';
|
|
47
|
+
import { ComponentToken as TooltipComponentToken } from '../../tooltip/style';
|
|
48
|
+
import { ComponentToken as TourComponentToken } from '../../tour/style';
|
|
49
|
+
import { ComponentToken as TransferComponentToken } from '../../transfer/style';
|
|
50
|
+
import { ComponentToken as TypographyComponentToken } from '../../typography/style';
|
|
51
|
+
import { ComponentToken as UploadComponentToken } from '../../upload/style';
|
|
52
|
+
export interface ComponentTokenMap {
|
|
53
|
+
Affix?: {};
|
|
54
|
+
Alert?: AlertComponentToken;
|
|
55
|
+
Anchor?: AnchorComponentToken;
|
|
56
|
+
Avatar?: AvatarComponentToken;
|
|
57
|
+
Badge?: {};
|
|
58
|
+
Button?: ButtonComponentToken;
|
|
59
|
+
Breadcrumb?: {};
|
|
60
|
+
Card?: CardComponentToken;
|
|
61
|
+
Carousel?: CarouselComponentToken;
|
|
62
|
+
Cascader?: CascaderComponentToken;
|
|
63
|
+
Checkbox?: CheckboxComponentToken;
|
|
64
|
+
Collapse?: CollapseComponentToken;
|
|
65
|
+
Comment?: {};
|
|
66
|
+
DatePicker?: DatePickerComponentToken;
|
|
67
|
+
Descriptions?: {};
|
|
68
|
+
Divider?: DividerComponentToken;
|
|
69
|
+
Drawer?: DrawerComponentToken;
|
|
70
|
+
Dropdown?: DropdownComponentToken;
|
|
71
|
+
Empty?: EmptyComponentToken;
|
|
72
|
+
FloatButton?: FloatButtonComponentToken;
|
|
73
|
+
Form?: {};
|
|
74
|
+
Grid?: {};
|
|
75
|
+
Image?: ImageComponentToken;
|
|
76
|
+
Input?: {};
|
|
77
|
+
InputNumber?: InputNumberComponentToken;
|
|
78
|
+
Layout?: LayoutComponentToken;
|
|
79
|
+
List?: ListComponentToken;
|
|
80
|
+
Mentions?: MentionsComponentToken;
|
|
81
|
+
Notification?: NotificationComponentToken;
|
|
82
|
+
PageHeader?: {};
|
|
83
|
+
Pagination?: {};
|
|
84
|
+
Popover?: PopoverComponentToken;
|
|
85
|
+
Popconfirm?: PopconfirmComponentToken;
|
|
86
|
+
Rate?: RateComponentToken;
|
|
87
|
+
Radio?: RadioComponentToken;
|
|
88
|
+
Result?: ResultComponentToken;
|
|
89
|
+
Segmented?: SegmentedComponentToken;
|
|
90
|
+
Select?: SelectComponentToken;
|
|
91
|
+
Skeleton?: SkeletonComponentToken;
|
|
92
|
+
Slider?: SliderComponentToken;
|
|
93
|
+
Spin?: SpinComponentToken;
|
|
94
|
+
Statistic?: {};
|
|
95
|
+
Switch?: {};
|
|
96
|
+
Tag?: TagComponentToken;
|
|
97
|
+
Tree?: {};
|
|
98
|
+
TreeSelect?: {};
|
|
99
|
+
Typography?: TypographyComponentToken;
|
|
100
|
+
Timeline?: TimelineComponentToken;
|
|
101
|
+
Transfer?: TransferComponentToken;
|
|
102
|
+
Tabs?: TabsComponentToken;
|
|
103
|
+
Calendar?: CalendarComponentToken;
|
|
104
|
+
Steps?: StepsComponentToken;
|
|
105
|
+
Menu?: MenuComponentToken;
|
|
106
|
+
Modal?: ModalComponentToken;
|
|
107
|
+
Message?: MessageComponentToken;
|
|
108
|
+
Upload?: UploadComponentToken;
|
|
109
|
+
Tooltip?: TooltipComponentToken;
|
|
110
|
+
Table?: TableComponentToken;
|
|
111
|
+
Space?: SpaceComponentToken;
|
|
112
|
+
Progress?: ProgressComponentToken;
|
|
113
|
+
Tour?: TourComponentToken;
|
|
114
|
+
QRCode?: QRCodeComponentToken;
|
|
115
|
+
App?: AppComponentToken;
|
|
116
|
+
Flex?: FlexToken;
|
|
117
|
+
Wave?: WaveToken;
|
|
118
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AliasToken } from './alias';
|
|
2
|
+
import { ComponentTokenMap } from './components';
|
|
3
|
+
export type OverrideToken = {
|
|
4
|
+
[key in keyof ComponentTokenMap]: Partial<ComponentTokenMap[key]> & Partial<AliasToken>;
|
|
5
|
+
};
|
|
6
|
+
/** Final token which contains the components level override */
|
|
7
|
+
export type GlobalToken = AliasToken & ComponentTokenMap;
|
|
8
|
+
export { PresetColors } from './presetColors';
|
|
9
|
+
export type { ColorPalettes, PresetColorKey, PresetColorType } from './presetColors';
|
|
10
|
+
export type { SeedToken } from './seeds';
|
|
11
|
+
export type { ColorMapToken, ColorNeutralMapToken, CommonMapToken, FontMapToken, HeightMapToken, MapToken, SizeMapToken, StyleMapToken, } from './maps';
|
|
12
|
+
export type { AliasToken } from './alias';
|
|
13
|
+
export type { ComponentTokenMap } from './components';
|
|
@@ -0,0 +1,350 @@
|
|
|
1
|
+
export interface ColorNeutralMapToken {
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
colorTextBase: string;
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
colorBgBase: string;
|
|
10
|
+
/**
|
|
11
|
+
* @nameZH 一级文本色
|
|
12
|
+
* @desc 最深的文本色。为了符合W3C标准,默认的文本颜色使用了该色,同时这个颜色也是最深的中性色。
|
|
13
|
+
*/
|
|
14
|
+
colorText: string;
|
|
15
|
+
/**
|
|
16
|
+
* @nameZH 二级文本色
|
|
17
|
+
* @desc 作为第二梯度的文本色,一般用在不那么需要强化文本颜色的场景,例如 Label 文本、Menu 的文本选中态等场景。
|
|
18
|
+
*/
|
|
19
|
+
colorTextSecondary: string;
|
|
20
|
+
/**
|
|
21
|
+
* @nameZH 三级文本色
|
|
22
|
+
* @desc 第三级文本色一般用于描述性文本,例如表单的中的补充说明文本、列表的描述性文本等场景。
|
|
23
|
+
*/
|
|
24
|
+
colorTextTertiary: string;
|
|
25
|
+
/**
|
|
26
|
+
* @nameZH 四级文本色
|
|
27
|
+
* @desc 第四级文本色是最浅的文本色,例如表单的输入提示文本、禁用色文本等。
|
|
28
|
+
*/
|
|
29
|
+
colorTextQuaternary: string;
|
|
30
|
+
/**
|
|
31
|
+
* @nameZH 一级边框色
|
|
32
|
+
* @nameEN Default Border Color
|
|
33
|
+
* @desc 默认使用的边框颜色, 用于分割不同的元素,例如:表单的分割线、卡片的分割线等。
|
|
34
|
+
* @descEN Default border color, used to separate different elements, such as: form separator, card separator, etc.
|
|
35
|
+
*/
|
|
36
|
+
colorBorder: string;
|
|
37
|
+
/**
|
|
38
|
+
* @nameZH 二级边框色
|
|
39
|
+
* @nameEN Secondary Border Color
|
|
40
|
+
* @desc 比默认使用的边框色要浅一级,此颜色和 colorSplit 的颜色一致。使用的是实色。
|
|
41
|
+
* @descEN Slightly lighter than the default border color, this color is the same as `colorSplit`. Solid color is used.
|
|
42
|
+
*/
|
|
43
|
+
colorBorderSecondary: string;
|
|
44
|
+
/**
|
|
45
|
+
* @nameZH 一级填充色
|
|
46
|
+
* @desc 最深的填充色,用于拉开与二、三级填充色的区分度,目前只用在 Slider 的 hover 效果。
|
|
47
|
+
*/
|
|
48
|
+
colorFill: string;
|
|
49
|
+
/**
|
|
50
|
+
* @nameZH 二级填充色
|
|
51
|
+
* @desc 二级填充色可以较为明显地勾勒出元素形体,如 Rate、Skeleton 等。也可以作为三级填充色的 Hover 状态,如 Table 等。
|
|
52
|
+
*/
|
|
53
|
+
colorFillSecondary: string;
|
|
54
|
+
/**
|
|
55
|
+
* @nameZH 三级填充色
|
|
56
|
+
* @desc 三级填充色用于勾勒出元素形体的场景,如 Slider、Segmented 等。如无强调需求的情况下,建议使用三级填色作为默认填色。
|
|
57
|
+
*/
|
|
58
|
+
colorFillTertiary: string;
|
|
59
|
+
/**
|
|
60
|
+
* @nameZH 四级填充色
|
|
61
|
+
* @desc 最弱一级的填充色,适用于不易引起注意的色块,例如斑马纹、区分边界的色块等。
|
|
62
|
+
*/
|
|
63
|
+
colorFillQuaternary: string;
|
|
64
|
+
/**
|
|
65
|
+
* @nameZH 布局背景色
|
|
66
|
+
* @desc 该色用于页面整体布局的背景色,只有需要在页面中处于 B1 的视觉层级时才会使用该 token,其他用法都是错误的
|
|
67
|
+
*/
|
|
68
|
+
colorBgLayout: string;
|
|
69
|
+
/**
|
|
70
|
+
* @nameZH 组件容器背景色
|
|
71
|
+
* @desc 组件的容器背景色,例如:默认按钮、输入框等。务必不要将其与 `colorBgElevated` 混淆。
|
|
72
|
+
*/
|
|
73
|
+
colorBgContainer: string;
|
|
74
|
+
/**
|
|
75
|
+
* @nameZH 浮层容器背景色
|
|
76
|
+
* @desc 浮层容器背景色,在暗色模式下该 token 的色值会比 `colorBgContainer` 要亮一些。例如:模态框、弹出框、菜单等。
|
|
77
|
+
*/
|
|
78
|
+
colorBgElevated: string;
|
|
79
|
+
/**
|
|
80
|
+
* @nameZH 引起注意的背景色
|
|
81
|
+
* @desc 该色用于引起用户强烈关注注意的背景色,目前只用在 Tooltip 的背景色上。
|
|
82
|
+
*/
|
|
83
|
+
colorBgSpotlight: string;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* 品牌色梯度变量
|
|
87
|
+
*/
|
|
88
|
+
interface ColorPrimaryMapToken {
|
|
89
|
+
/**
|
|
90
|
+
* @nameZH 品牌主色
|
|
91
|
+
@desc 品牌色是体现产品特性和传播理念最直观的视觉元素之一,用于产品的主色调、主按钮、主图标、主文本等 */
|
|
92
|
+
colorPrimary: string;
|
|
93
|
+
/**
|
|
94
|
+
* @nameZH 主色浅色背景色
|
|
95
|
+
* @nameEN Light Background Color of Primary Color
|
|
96
|
+
* @desc 主色浅色背景颜色,一般用于视觉层级较弱的选中状态。
|
|
97
|
+
* @descEN Light background color of primary color, usually used for weak visual level selection state.
|
|
98
|
+
*/
|
|
99
|
+
colorPrimaryBg: string;
|
|
100
|
+
/**
|
|
101
|
+
* @nameZH 主色浅色背景悬浮态
|
|
102
|
+
* @desc 与主色浅色背景颜色相对应的悬浮态颜色。
|
|
103
|
+
*/
|
|
104
|
+
colorPrimaryBgHover: string;
|
|
105
|
+
/**
|
|
106
|
+
* @nameZH 主色描边色
|
|
107
|
+
* @desc 主色梯度下的描边用色,用在 Slider 组件的描边上
|
|
108
|
+
*/
|
|
109
|
+
colorPrimaryBorder: string;
|
|
110
|
+
/**
|
|
111
|
+
* @nameZH 主色描边色悬浮态
|
|
112
|
+
* @desc 主色梯度下的描边用色的悬浮态,Slider 、Button 等组件的描边 Hover 时会使用
|
|
113
|
+
*/
|
|
114
|
+
colorPrimaryBorderHover: string;
|
|
115
|
+
/**
|
|
116
|
+
* @nameZH 主色悬浮态
|
|
117
|
+
* @desc 主色梯度下的悬浮态,使用频率很高
|
|
118
|
+
*/
|
|
119
|
+
colorPrimaryHover: string;
|
|
120
|
+
/**
|
|
121
|
+
* @nameZH 主色激活态
|
|
122
|
+
* @desc 主色梯度下的深色激活态
|
|
123
|
+
*/
|
|
124
|
+
colorPrimaryActive: string;
|
|
125
|
+
/**
|
|
126
|
+
* @nameZH 主色文本悬浮态
|
|
127
|
+
* @desc 主色梯度下的文本悬浮态
|
|
128
|
+
*/
|
|
129
|
+
colorPrimaryTextHover: string;
|
|
130
|
+
/**
|
|
131
|
+
* @nameZH 主色文本
|
|
132
|
+
* @desc 主色梯度下的文本颜色
|
|
133
|
+
*/
|
|
134
|
+
colorPrimaryText: string;
|
|
135
|
+
/**
|
|
136
|
+
* @nameZH 主色文本
|
|
137
|
+
* @desc 主色梯度下的文本激活态
|
|
138
|
+
*/
|
|
139
|
+
colorPrimaryTextActive: string;
|
|
140
|
+
}
|
|
141
|
+
interface ColorSuccessMapToken {
|
|
142
|
+
/**
|
|
143
|
+
* @nameZH 成功色的浅色背景颜色
|
|
144
|
+
* @nameEN Light Background Color of Success Color
|
|
145
|
+
* @desc 成功色的浅色背景颜色,用于 Tag 和 Alert 的成功态背景色
|
|
146
|
+
* @descEN Light background color of success color, used for Tag and Alert success state background color
|
|
147
|
+
*/
|
|
148
|
+
colorSuccessBg: string;
|
|
149
|
+
/**
|
|
150
|
+
* @nameZH 成功色的浅色背景色悬浮态
|
|
151
|
+
* @nameEN Hover State Color of Light Success Background
|
|
152
|
+
* @desc 成功色浅色背景颜色,一般用于视觉层级较弱的选中状态,不过 antd 目前没有使用到该 token
|
|
153
|
+
* @descEN Light background color of success color, but antd does not use this token currently
|
|
154
|
+
*/
|
|
155
|
+
colorSuccessBgHover: string;
|
|
156
|
+
/**
|
|
157
|
+
* @nameZH 成功色的描边色
|
|
158
|
+
* @desc 成功色的描边色,用于 Tag 和 Alert 的成功态描边色
|
|
159
|
+
*/
|
|
160
|
+
colorSuccessBorder: string;
|
|
161
|
+
/**
|
|
162
|
+
* @nameZH 成功色的描边色悬浮态
|
|
163
|
+
* @desc 成功色的描边色悬浮态
|
|
164
|
+
*/
|
|
165
|
+
colorSuccessBorderHover: string;
|
|
166
|
+
/**
|
|
167
|
+
* @nameZH 成功色的深色悬浮态
|
|
168
|
+
* @desc 成功色的深色悬浮态
|
|
169
|
+
*/
|
|
170
|
+
colorSuccessHover: string;
|
|
171
|
+
/**
|
|
172
|
+
* @nameZH 成功色
|
|
173
|
+
* @desc 默认的成功色,如 Result、Progress 等组件中都有使用该颜色
|
|
174
|
+
*/
|
|
175
|
+
colorSuccess: string;
|
|
176
|
+
/**
|
|
177
|
+
* @nameZH 成功色的深色激活态
|
|
178
|
+
* @desc 成功色的深色激活态
|
|
179
|
+
*/
|
|
180
|
+
colorSuccessActive: string;
|
|
181
|
+
/**
|
|
182
|
+
* @nameZH 成功色的文本悬浮态
|
|
183
|
+
* @desc 成功色的文本悬浮态
|
|
184
|
+
*/
|
|
185
|
+
colorSuccessTextHover: string;
|
|
186
|
+
/**
|
|
187
|
+
* @nameZH 成功色的文本默认态
|
|
188
|
+
* @desc 成功色的文本默认态
|
|
189
|
+
*/
|
|
190
|
+
colorSuccessText: string;
|
|
191
|
+
/**
|
|
192
|
+
* @nameZH 成功色的文本激活态
|
|
193
|
+
* @desc 成功色的文本激活态
|
|
194
|
+
*/
|
|
195
|
+
colorSuccessTextActive: string;
|
|
196
|
+
}
|
|
197
|
+
interface ColorWarningMapToken {
|
|
198
|
+
/**
|
|
199
|
+
* @nameZH 警戒色的浅色背景颜色
|
|
200
|
+
*/
|
|
201
|
+
colorWarningBg: string;
|
|
202
|
+
/**
|
|
203
|
+
* @nameZH 警戒色的浅色背景色悬浮态
|
|
204
|
+
* @desc 警戒色的浅色背景色悬浮态
|
|
205
|
+
*/
|
|
206
|
+
colorWarningBgHover: string;
|
|
207
|
+
/**
|
|
208
|
+
* @nameZH 警戒色的描边色
|
|
209
|
+
* @desc 警戒色的描边色
|
|
210
|
+
*/
|
|
211
|
+
colorWarningBorder: string;
|
|
212
|
+
/**
|
|
213
|
+
* @nameZH 警戒色的描边色悬浮态
|
|
214
|
+
* @desc 警戒色的描边色悬浮态
|
|
215
|
+
*/
|
|
216
|
+
colorWarningBorderHover: string;
|
|
217
|
+
/**
|
|
218
|
+
* @nameZH 警戒色的深色悬浮态
|
|
219
|
+
* @desc 警戒色的深色悬浮态
|
|
220
|
+
*/
|
|
221
|
+
colorWarningHover: string;
|
|
222
|
+
/**
|
|
223
|
+
* @nameZH 警戒色
|
|
224
|
+
* @desc 最常用的警戒色,例如 Notification、 Alert等警告类组件或 Input 输入类等组件会使用该颜色
|
|
225
|
+
*/
|
|
226
|
+
colorWarning: string;
|
|
227
|
+
/**
|
|
228
|
+
* @nameZH 警戒色的深色激活态
|
|
229
|
+
* @desc 警戒色的深色激活态
|
|
230
|
+
*/
|
|
231
|
+
colorWarningActive: string;
|
|
232
|
+
/**
|
|
233
|
+
* @nameZH 警戒色的文本悬浮态
|
|
234
|
+
* @desc 警戒色的文本悬浮态
|
|
235
|
+
*/
|
|
236
|
+
colorWarningTextHover: string;
|
|
237
|
+
/**
|
|
238
|
+
* @nameZH 警戒色的文本默认态
|
|
239
|
+
* @desc 警戒色的文本默认态
|
|
240
|
+
*/
|
|
241
|
+
colorWarningText: string;
|
|
242
|
+
/**
|
|
243
|
+
* @nameZH 警戒色的文本激活态
|
|
244
|
+
* @desc 警戒色的文本激活态
|
|
245
|
+
*/
|
|
246
|
+
colorWarningTextActive: string;
|
|
247
|
+
}
|
|
248
|
+
interface ColorInfoMapToken {
|
|
249
|
+
/**
|
|
250
|
+
* @nameZH 信息色的浅色背景颜色
|
|
251
|
+
* @desc 信息色的浅色背景颜色
|
|
252
|
+
*/
|
|
253
|
+
colorInfoBg: string;
|
|
254
|
+
/**
|
|
255
|
+
* @nameZH 信息色的浅色背景色悬浮态
|
|
256
|
+
* @desc 信息色的浅色背景色悬浮态
|
|
257
|
+
*/
|
|
258
|
+
colorInfoBgHover: string;
|
|
259
|
+
/**
|
|
260
|
+
* @nameZH 信息色的描边色
|
|
261
|
+
*/
|
|
262
|
+
colorInfoBorder: string;
|
|
263
|
+
/**
|
|
264
|
+
* @nameZH 信息色的描边色悬浮态
|
|
265
|
+
*/
|
|
266
|
+
colorInfoBorderHover: string;
|
|
267
|
+
/**
|
|
268
|
+
* @nameZH 信息色的深色悬浮态
|
|
269
|
+
*/
|
|
270
|
+
colorInfoHover: string;
|
|
271
|
+
/**
|
|
272
|
+
* @nameZH 信息色
|
|
273
|
+
*/
|
|
274
|
+
colorInfo: string;
|
|
275
|
+
/**
|
|
276
|
+
* @nameZH 信息色的深色激活态
|
|
277
|
+
*/
|
|
278
|
+
colorInfoActive: string;
|
|
279
|
+
/**
|
|
280
|
+
* @nameZH 信息色的文本悬浮态
|
|
281
|
+
*/
|
|
282
|
+
colorInfoTextHover: string;
|
|
283
|
+
/**
|
|
284
|
+
* @nameZH 信息色的文本默认态
|
|
285
|
+
*/
|
|
286
|
+
colorInfoText: string;
|
|
287
|
+
/**
|
|
288
|
+
* @nameZH 信息色的文本激活态
|
|
289
|
+
*/
|
|
290
|
+
colorInfoTextActive: string;
|
|
291
|
+
}
|
|
292
|
+
interface ColorErrorMapToken {
|
|
293
|
+
/**
|
|
294
|
+
* @nameZH 错误色的浅色背景颜色
|
|
295
|
+
*/
|
|
296
|
+
colorErrorBg: string;
|
|
297
|
+
/**
|
|
298
|
+
* @nameZH 错误色的浅色背景色悬浮态
|
|
299
|
+
*/
|
|
300
|
+
colorErrorBgHover: string;
|
|
301
|
+
/**
|
|
302
|
+
* @nameZH 错误色的描边色
|
|
303
|
+
*/
|
|
304
|
+
colorErrorBorder: string;
|
|
305
|
+
/**
|
|
306
|
+
* @nameZH 错误色的描边色悬浮态
|
|
307
|
+
*/
|
|
308
|
+
colorErrorBorderHover: string;
|
|
309
|
+
/**
|
|
310
|
+
* @nameZH 错误色的深色悬浮态
|
|
311
|
+
*/
|
|
312
|
+
colorErrorHover: string;
|
|
313
|
+
/**
|
|
314
|
+
* @nameZH 错误色
|
|
315
|
+
*/
|
|
316
|
+
colorError: string;
|
|
317
|
+
/**
|
|
318
|
+
* @nameZH 错误色的深色激活态
|
|
319
|
+
*/
|
|
320
|
+
colorErrorActive: string;
|
|
321
|
+
/**
|
|
322
|
+
* @nameZH 错误色的文本悬浮态
|
|
323
|
+
*/
|
|
324
|
+
colorErrorTextHover: string;
|
|
325
|
+
/**
|
|
326
|
+
* @nameZH 错误色的文本默认态
|
|
327
|
+
*/
|
|
328
|
+
colorErrorText: string;
|
|
329
|
+
/**
|
|
330
|
+
* @nameZH 错误色的文本激活态
|
|
331
|
+
*/
|
|
332
|
+
colorErrorTextActive: string;
|
|
333
|
+
}
|
|
334
|
+
export interface ColorMapToken extends ColorNeutralMapToken, ColorPrimaryMapToken, ColorSuccessMapToken, ColorWarningMapToken, ColorErrorMapToken, ColorInfoMapToken {
|
|
335
|
+
/**
|
|
336
|
+
* @nameZH 纯白色
|
|
337
|
+
* @desc 不随主题变化的纯白色
|
|
338
|
+
* @descEN Pure white color don't changed by theme
|
|
339
|
+
* @default #FFFFFF
|
|
340
|
+
*/
|
|
341
|
+
colorWhite: string;
|
|
342
|
+
/**
|
|
343
|
+
* @nameZH 浮层的背景蒙层颜色
|
|
344
|
+
* @nameEN Background color of the mask
|
|
345
|
+
* @desc 浮层的背景蒙层颜色,用于遮罩浮层下面的内容,Modal、Drawer 等组件的蒙层使用的是该 token
|
|
346
|
+
* @descEN The background color of the mask, used to cover the content below the mask, Modal, Drawer and other components use this token
|
|
347
|
+
*/
|
|
348
|
+
colorBgMask: string;
|
|
349
|
+
}
|
|
350
|
+
export {};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export interface FontMapToken {
|
|
2
|
+
fontSizeSM: number;
|
|
3
|
+
fontSize: number;
|
|
4
|
+
fontSizeLG: number;
|
|
5
|
+
fontSizeXL: number;
|
|
6
|
+
/**
|
|
7
|
+
* @nameZH 一级标题字号
|
|
8
|
+
* @desc H1 标签所使用的字号
|
|
9
|
+
* @default 38
|
|
10
|
+
*/
|
|
11
|
+
fontSizeHeading1: number;
|
|
12
|
+
/**
|
|
13
|
+
* @nameZH 二级标题字号
|
|
14
|
+
* @desc h2 标签所使用的字号
|
|
15
|
+
* @default 30
|
|
16
|
+
*/
|
|
17
|
+
fontSizeHeading2: number;
|
|
18
|
+
/**
|
|
19
|
+
* @nameZH 三级标题字号
|
|
20
|
+
* @desc h3 标签使用的字号
|
|
21
|
+
* @default 24
|
|
22
|
+
*/
|
|
23
|
+
fontSizeHeading3: number;
|
|
24
|
+
/**
|
|
25
|
+
* @nameZH 四级标题字号
|
|
26
|
+
* @desc h4 标签使用的字号
|
|
27
|
+
* @default 20
|
|
28
|
+
*/
|
|
29
|
+
fontSizeHeading4: number;
|
|
30
|
+
/**
|
|
31
|
+
* @nameZH 五级标题字号
|
|
32
|
+
* @desc h5 标签使用的字号
|
|
33
|
+
* @default 16
|
|
34
|
+
*/
|
|
35
|
+
fontSizeHeading5: number;
|
|
36
|
+
lineHeight: number;
|
|
37
|
+
lineHeightLG: number;
|
|
38
|
+
lineHeightSM: number;
|
|
39
|
+
lineHeightHeading1: number;
|
|
40
|
+
lineHeightHeading2: number;
|
|
41
|
+
lineHeightHeading3: number;
|
|
42
|
+
lineHeightHeading4: number;
|
|
43
|
+
lineHeightHeading5: number;
|
|
44
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ColorPalettes } from '../presetColors';
|
|
2
|
+
import { SeedToken } from '../seeds';
|
|
3
|
+
import { ColorMapToken } from './colors';
|
|
4
|
+
import { FontMapToken } from './font';
|
|
5
|
+
import { HeightMapToken, SizeMapToken } from './size';
|
|
6
|
+
import { StyleMapToken } from './style';
|
|
7
|
+
export * from './colors';
|
|
8
|
+
export * from './style';
|
|
9
|
+
export * from './size';
|
|
10
|
+
export * from './font';
|
|
11
|
+
export interface CommonMapToken extends StyleMapToken {
|
|
12
|
+
motionDurationFast: string;
|
|
13
|
+
motionDurationMid: string;
|
|
14
|
+
motionDurationSlow: string;
|
|
15
|
+
}
|
|
16
|
+
export interface MapToken extends SeedToken, ColorPalettes, ColorMapToken, SizeMapToken, HeightMapToken, StyleMapToken, FontMapToken, CommonMapToken {
|
|
17
|
+
}
|