@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,49 @@
|
|
|
1
|
+
import { FullToken, UseComponentStyleResult } from '../../theme/internal';
|
|
2
|
+
import { Ref } from 'vue';
|
|
3
|
+
export interface ComponentToken {
|
|
4
|
+
}
|
|
5
|
+
export interface TableToken extends FullToken<'Table'> {
|
|
6
|
+
tableFontSize: number;
|
|
7
|
+
tableBg: string;
|
|
8
|
+
tableRadius: number;
|
|
9
|
+
tablePaddingHorizontal: number;
|
|
10
|
+
tablePaddingVertical: number;
|
|
11
|
+
tablePaddingHorizontalMiddle: number;
|
|
12
|
+
tablePaddingVerticalMiddle: number;
|
|
13
|
+
tablePaddingHorizontalSmall: number;
|
|
14
|
+
tablePaddingVerticalSmall: number;
|
|
15
|
+
tableBorderColor: string;
|
|
16
|
+
tableHeaderTextColor: string;
|
|
17
|
+
tableHeaderBg: string;
|
|
18
|
+
tableFooterTextColor: string;
|
|
19
|
+
tableFooterBg: string;
|
|
20
|
+
tableHeaderCellSplitColor: string;
|
|
21
|
+
tableHeaderSortBg: string;
|
|
22
|
+
tableHeaderSortHoverBg: string;
|
|
23
|
+
tableHeaderIconColor: string;
|
|
24
|
+
tableHeaderIconColorHover: string;
|
|
25
|
+
tableBodySortBg: string;
|
|
26
|
+
tableFixedHeaderSortActiveBg: string;
|
|
27
|
+
tableHeaderFilterActiveBg: string;
|
|
28
|
+
tableFilterDropdownBg: string;
|
|
29
|
+
tableFilterDropdownHeight: number;
|
|
30
|
+
tableRowHoverBg: string;
|
|
31
|
+
tableSelectedRowBg: string;
|
|
32
|
+
tableSelectedRowHoverBg: string;
|
|
33
|
+
tableFontSizeMiddle: number;
|
|
34
|
+
tableFontSizeSmall: number;
|
|
35
|
+
tableSelectionColumnWidth: number;
|
|
36
|
+
tableExpandIconBg: string;
|
|
37
|
+
tableExpandColumnWidth: number;
|
|
38
|
+
tableExpandedRowBg: string;
|
|
39
|
+
tableFilterDropdownWidth: number;
|
|
40
|
+
tableFilterDropdownSearchWidth: number;
|
|
41
|
+
zIndexTableFixed: number;
|
|
42
|
+
zIndexTableSticky: number;
|
|
43
|
+
tableScrollThumbSize: number;
|
|
44
|
+
tableScrollThumbBg: string;
|
|
45
|
+
tableScrollThumbBgHover: string;
|
|
46
|
+
tableScrollBg: string;
|
|
47
|
+
}
|
|
48
|
+
declare const _default: (_prefixCls?: Ref<string>) => UseComponentStyleResult;
|
|
49
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ColumnTitle, ColumnTitleProps, ColumnType, ColumnsType, Key } from './interface';
|
|
2
|
+
import { VueNode } from '../_util/type';
|
|
3
|
+
import { VNodeArrayChildren } from 'vue';
|
|
4
|
+
export declare function getColumnKey<RecordType>(column: ColumnType<RecordType>, defaultKey: string): Key;
|
|
5
|
+
export declare function getColumnPos(index: number, pos?: string): string;
|
|
6
|
+
export declare function renderColumnTitle<RecordType>(title: ColumnTitle<RecordType>, props: ColumnTitleProps<RecordType>): VueNode | VNodeArrayChildren;
|
|
7
|
+
export declare function convertChildrenToColumns<RecordType>(elements?: any[]): ColumnsType<RecordType>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Plugin } from 'vue';
|
|
2
|
+
import { default as Tabs, TabPane } from './src';
|
|
3
|
+
export type { TabPaneProps, TabsProps } from './src';
|
|
4
|
+
declare const _default: typeof Tabs & Plugin & {
|
|
5
|
+
readonly TabPane: typeof TabPane;
|
|
6
|
+
};
|
|
7
|
+
export default _default;
|
|
8
|
+
export { TabPane };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { PropType, Ref, DefineComponent, ExtractPropTypes, VNode, RendererNode, RendererElement, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
import { Tab } from './interface';
|
|
3
|
+
export interface TabContextProps {
|
|
4
|
+
tabs: Ref<Tab[]>;
|
|
5
|
+
prefixCls: Ref<string>;
|
|
6
|
+
}
|
|
7
|
+
export declare const useProvideTabs: (props: TabContextProps) => void;
|
|
8
|
+
export declare const useInjectTabs: () => TabContextProps;
|
|
9
|
+
declare const TabsContextProvider: DefineComponent<ExtractPropTypes<{
|
|
10
|
+
tabs: {
|
|
11
|
+
type: PropType<TabContextProps["tabs"]>;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
prefixCls: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: undefined;
|
|
17
|
+
};
|
|
18
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
19
|
+
[key: string]: any;
|
|
20
|
+
}>[] | undefined, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
21
|
+
tabs: {
|
|
22
|
+
type: PropType<TabContextProps["tabs"]>;
|
|
23
|
+
default: undefined;
|
|
24
|
+
};
|
|
25
|
+
prefixCls: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: undefined;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
prefixCls: string;
|
|
31
|
+
tabs: Ref<Tab[], Tab[]>;
|
|
32
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
33
|
+
export default TabsContextProvider;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
import { EditableConfig, TabsLocale } from '../interface';
|
|
3
|
+
export interface AddButtonProps {
|
|
4
|
+
prefixCls: string;
|
|
5
|
+
editable?: EditableConfig;
|
|
6
|
+
locale?: TabsLocale;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
9
|
+
prefixCls: StringConstructor;
|
|
10
|
+
editable: {
|
|
11
|
+
type: PropType<EditableConfig>;
|
|
12
|
+
};
|
|
13
|
+
locale: {
|
|
14
|
+
type: PropType<TabsLocale>;
|
|
15
|
+
default: TabsLocale;
|
|
16
|
+
};
|
|
17
|
+
}>, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
18
|
+
prefixCls: StringConstructor;
|
|
19
|
+
editable: {
|
|
20
|
+
type: PropType<EditableConfig>;
|
|
21
|
+
};
|
|
22
|
+
locale: {
|
|
23
|
+
type: PropType<TabsLocale>;
|
|
24
|
+
default: TabsLocale;
|
|
25
|
+
};
|
|
26
|
+
}>> & Readonly<{}>, {
|
|
27
|
+
locale: TabsLocale;
|
|
28
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
29
|
+
export default _default;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
import { FocusEventHandler } from '../../../_util/EventInterface';
|
|
3
|
+
import { EditableConfig, Tab } from '../interface';
|
|
4
|
+
export interface TabNodeProps {
|
|
5
|
+
id: string;
|
|
6
|
+
prefixCls: string;
|
|
7
|
+
tab: Tab;
|
|
8
|
+
active: boolean;
|
|
9
|
+
closable?: boolean;
|
|
10
|
+
editable?: EditableConfig;
|
|
11
|
+
onClick?: (e: MouseEvent | KeyboardEvent) => void;
|
|
12
|
+
onResize?: (width: number, height: number, left: number, top: number) => void;
|
|
13
|
+
renderWrapper?: (node: any) => any;
|
|
14
|
+
removeAriaLabel?: string;
|
|
15
|
+
onRemove: () => void;
|
|
16
|
+
onFocus: FocusEventHandler;
|
|
17
|
+
}
|
|
18
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
19
|
+
id: {
|
|
20
|
+
type: PropType<string>;
|
|
21
|
+
};
|
|
22
|
+
prefixCls: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
};
|
|
25
|
+
tab: {
|
|
26
|
+
type: PropType<Tab & {
|
|
27
|
+
closeIcon?: () => any;
|
|
28
|
+
}>;
|
|
29
|
+
};
|
|
30
|
+
active: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
};
|
|
33
|
+
closable: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
};
|
|
36
|
+
editable: {
|
|
37
|
+
type: PropType<EditableConfig>;
|
|
38
|
+
};
|
|
39
|
+
onClick: {
|
|
40
|
+
type: PropType<(e: MouseEvent | KeyboardEvent) => void>;
|
|
41
|
+
};
|
|
42
|
+
onResize: {
|
|
43
|
+
type: PropType<(width: number, height: number, left: number, top: number) => void>;
|
|
44
|
+
};
|
|
45
|
+
renderWrapper: {
|
|
46
|
+
type: PropType<(node: any) => any>;
|
|
47
|
+
};
|
|
48
|
+
removeAriaLabel: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
};
|
|
51
|
+
onFocus: {
|
|
52
|
+
type: PropType<FocusEventHandler>;
|
|
53
|
+
};
|
|
54
|
+
}>, () => any, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("resize" | "click" | "focus" | "remove")[], "resize" | "click" | "focus" | "remove", PublicProps, Readonly< ExtractPropTypes<{
|
|
55
|
+
id: {
|
|
56
|
+
type: PropType<string>;
|
|
57
|
+
};
|
|
58
|
+
prefixCls: {
|
|
59
|
+
type: PropType<string>;
|
|
60
|
+
};
|
|
61
|
+
tab: {
|
|
62
|
+
type: PropType<Tab & {
|
|
63
|
+
closeIcon?: () => any;
|
|
64
|
+
}>;
|
|
65
|
+
};
|
|
66
|
+
active: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
};
|
|
69
|
+
closable: {
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
};
|
|
72
|
+
editable: {
|
|
73
|
+
type: PropType<EditableConfig>;
|
|
74
|
+
};
|
|
75
|
+
onClick: {
|
|
76
|
+
type: PropType<(e: MouseEvent | KeyboardEvent) => void>;
|
|
77
|
+
};
|
|
78
|
+
onResize: {
|
|
79
|
+
type: PropType<(width: number, height: number, left: number, top: number) => void>;
|
|
80
|
+
};
|
|
81
|
+
renderWrapper: {
|
|
82
|
+
type: PropType<(node: any) => any>;
|
|
83
|
+
};
|
|
84
|
+
removeAriaLabel: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
};
|
|
87
|
+
onFocus: {
|
|
88
|
+
type: PropType<FocusEventHandler>;
|
|
89
|
+
};
|
|
90
|
+
}>> & Readonly<{
|
|
91
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
onRemove?: ((...args: any[]) => any) | undefined;
|
|
95
|
+
}>, {
|
|
96
|
+
active: boolean;
|
|
97
|
+
closable: boolean;
|
|
98
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
99
|
+
export default _default;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
import { Key } from '../../../_util/type';
|
|
3
|
+
import { AnimatedConfig, TabPosition } from '../interface';
|
|
4
|
+
export interface TabPanelListProps {
|
|
5
|
+
activeKey: Key;
|
|
6
|
+
id: string;
|
|
7
|
+
rtl: boolean;
|
|
8
|
+
animated?: AnimatedConfig;
|
|
9
|
+
tabPosition?: TabPosition;
|
|
10
|
+
destroyInactiveTabPane?: boolean;
|
|
11
|
+
}
|
|
12
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
13
|
+
activeKey: {
|
|
14
|
+
type: PropType<Key>;
|
|
15
|
+
};
|
|
16
|
+
id: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
};
|
|
19
|
+
rtl: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
};
|
|
22
|
+
animated: {
|
|
23
|
+
type: PropType<AnimatedConfig>;
|
|
24
|
+
default: AnimatedConfig;
|
|
25
|
+
};
|
|
26
|
+
tabPosition: {
|
|
27
|
+
type: PropType<TabPosition>;
|
|
28
|
+
};
|
|
29
|
+
destroyInactiveTabPane: {
|
|
30
|
+
type: BooleanConstructor;
|
|
31
|
+
};
|
|
32
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
33
|
+
activeKey: {
|
|
34
|
+
type: PropType<Key>;
|
|
35
|
+
};
|
|
36
|
+
id: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
};
|
|
39
|
+
rtl: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
};
|
|
42
|
+
animated: {
|
|
43
|
+
type: PropType<AnimatedConfig>;
|
|
44
|
+
default: AnimatedConfig;
|
|
45
|
+
};
|
|
46
|
+
tabPosition: {
|
|
47
|
+
type: PropType<TabPosition>;
|
|
48
|
+
};
|
|
49
|
+
destroyInactiveTabPane: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
};
|
|
52
|
+
}>> & Readonly<{}>, {
|
|
53
|
+
rtl: boolean;
|
|
54
|
+
animated: AnimatedConfig;
|
|
55
|
+
destroyInactiveTabPane: boolean;
|
|
56
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
57
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
export default function useRaf<Callback extends Function>(callback: Callback): (...args: any[]) => void;
|
|
3
|
+
type Callback<T> = (ori: T) => T;
|
|
4
|
+
export declare function useRafState<T>(defaultState: T | (() => T)): [Ref<T>, (updater: Callback<T>) => void];
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Key, VueNode } from '../../_util/type';
|
|
2
|
+
import { TabPaneProps } from './TabPanelList/TabPane';
|
|
3
|
+
export type TabSizeMap = Map<Key, {
|
|
4
|
+
width: number;
|
|
5
|
+
height: number;
|
|
6
|
+
left: number;
|
|
7
|
+
top: number;
|
|
8
|
+
}>;
|
|
9
|
+
export interface TabOffset {
|
|
10
|
+
width: number;
|
|
11
|
+
height: number;
|
|
12
|
+
left: number;
|
|
13
|
+
right: number;
|
|
14
|
+
top: number;
|
|
15
|
+
}
|
|
16
|
+
export type TabOffsetMap = Map<Key, TabOffset>;
|
|
17
|
+
export type TabPosition = 'left' | 'right' | 'top' | 'bottom';
|
|
18
|
+
export interface Tab extends TabPaneProps {
|
|
19
|
+
key: Key;
|
|
20
|
+
node: VueNode;
|
|
21
|
+
}
|
|
22
|
+
export type RenderTabBar = (props: {
|
|
23
|
+
DefaultTabBar: any;
|
|
24
|
+
[key: string]: any;
|
|
25
|
+
}) => VueNode;
|
|
26
|
+
export interface TabsLocale {
|
|
27
|
+
dropdownAriaLabel?: string;
|
|
28
|
+
removeAriaLabel?: string;
|
|
29
|
+
addAriaLabel?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface EditableConfig {
|
|
32
|
+
onEdit: (type: 'add' | 'remove', info: {
|
|
33
|
+
key?: Key;
|
|
34
|
+
event: MouseEvent | KeyboardEvent;
|
|
35
|
+
}) => void;
|
|
36
|
+
showAdd?: boolean;
|
|
37
|
+
removeIcon?: () => VueNode;
|
|
38
|
+
addIcon?: () => VueNode;
|
|
39
|
+
}
|
|
40
|
+
export interface AnimatedConfig {
|
|
41
|
+
inkBar?: boolean;
|
|
42
|
+
tabPane?: boolean;
|
|
43
|
+
}
|
|
44
|
+
export type OnTabScroll = (info: {
|
|
45
|
+
direction: 'left' | 'right' | 'top' | 'bottom';
|
|
46
|
+
}) => void;
|
|
47
|
+
export type TabBarExtraPosition = 'left' | 'right';
|
|
48
|
+
export type TabBarExtraMap = Partial<Record<TabBarExtraPosition, any>>;
|
|
49
|
+
export type TabBarExtraContent = VueNode;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { FullToken, UseComponentStyleResult } from '../../theme/internal';
|
|
2
|
+
import { Ref } from 'vue';
|
|
3
|
+
export interface ComponentToken {
|
|
4
|
+
zIndexPopup: number;
|
|
5
|
+
}
|
|
6
|
+
export interface TabsToken extends FullToken<'Tabs'> {
|
|
7
|
+
tabsCardHorizontalPadding: string;
|
|
8
|
+
tabsCardHeight: number;
|
|
9
|
+
tabsCardGutter: number;
|
|
10
|
+
tabsHoverColor: string;
|
|
11
|
+
tabsActiveColor: string;
|
|
12
|
+
tabsHorizontalGutter: number;
|
|
13
|
+
tabsCardHeadBackground: string;
|
|
14
|
+
dropdownEdgeChildVerticalPadding: number;
|
|
15
|
+
tabsNavWrapPseudoWidth: number;
|
|
16
|
+
tabsActiveTextShadow: string;
|
|
17
|
+
tabsDropdownHeight: number;
|
|
18
|
+
tabsDropdownWidth: number;
|
|
19
|
+
}
|
|
20
|
+
declare const _default: (_prefixCls?: Ref<string>) => UseComponentStyleResult;
|
|
21
|
+
export default _default;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { ExtractPropTypes, PropType, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
import { VueNode } from '../_util/type';
|
|
3
|
+
declare const checkableTagProps: () => {
|
|
4
|
+
prefixCls: StringConstructor;
|
|
5
|
+
checked: {
|
|
6
|
+
type: BooleanConstructor;
|
|
7
|
+
default: undefined;
|
|
8
|
+
};
|
|
9
|
+
onChange: {
|
|
10
|
+
type: PropType<(checked: boolean) => void>;
|
|
11
|
+
};
|
|
12
|
+
onClick: {
|
|
13
|
+
type: PropType<(e: MouseEvent) => void>;
|
|
14
|
+
};
|
|
15
|
+
'onUpdate:checked': PropType<(checked: boolean) => void>;
|
|
16
|
+
};
|
|
17
|
+
export type CheckableTagProps = Partial<ExtractPropTypes<ReturnType<typeof checkableTagProps>>>;
|
|
18
|
+
declare const CheckableTag: DefineComponent<ExtractPropTypes<{
|
|
19
|
+
prefixCls: StringConstructor;
|
|
20
|
+
checked: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: undefined;
|
|
23
|
+
};
|
|
24
|
+
onChange: {
|
|
25
|
+
type: PropType<(checked: boolean) => void>;
|
|
26
|
+
};
|
|
27
|
+
onClick: {
|
|
28
|
+
type: PropType<(e: MouseEvent) => void>;
|
|
29
|
+
};
|
|
30
|
+
'onUpdate:checked': PropType<(checked: boolean) => void>;
|
|
31
|
+
}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
32
|
+
prefixCls: StringConstructor;
|
|
33
|
+
checked: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
default: undefined;
|
|
36
|
+
};
|
|
37
|
+
onChange: {
|
|
38
|
+
type: PropType<(checked: boolean) => void>;
|
|
39
|
+
};
|
|
40
|
+
onClick: {
|
|
41
|
+
type: PropType<(e: MouseEvent) => void>;
|
|
42
|
+
};
|
|
43
|
+
'onUpdate:checked': PropType<(checked: boolean) => void>;
|
|
44
|
+
}>> & Readonly<{}>, {
|
|
45
|
+
checked: boolean;
|
|
46
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
47
|
+
export default CheckableTag;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { MapToken } from './interface';
|
|
2
|
+
export default function convertLegacyToken(mapToken: MapToken): Record<"black" | "white" | "ease-in" | "ease-in-out" | "ease-out" | "theme" | "font-family" | "outline-color" | "outline-width" | "ant-prefix" | "html-selector" | "primary-color" | "primary-color-hover" | "primary-color-active" | "primary-color-outline" | "processing-color" | "info-color" | "info-color-deprecated-bg" | "info-color-deprecated-border" | "success-color" | "success-color-hover" | "success-color-active" | "success-color-outline" | "success-color-deprecated-bg" | "success-color-deprecated-border" | "warning-color" | "warning-color-hover" | "warning-color-active" | "warning-color-outline" | "warning-color-deprecated-bg" | "warning-color-deprecated-border" | "error-color" | "error-color-hover" | "error-color-active" | "error-color-outline" | "error-color-deprecated-bg" | "error-color-deprecated-border" | "highlight-color" | "normal-color" | "primary-1" | "primary-2" | "primary-3" | "primary-4" | "primary-5" | "primary-6" | "primary-7" | "primary-8" | "primary-9" | "primary-10" | "body-background" | "component-background" | "popover-background" | "popover-customize-border-color" | "code-family" | "text-color" | "text-color-secondary" | "text-color-inverse" | "icon-color" | "icon-color-hover" | "heading-color" | "text-color-dark" | "text-color-secondary-dark" | "text-selection-bg" | "font-variant-base" | "font-feature-settings-base" | "font-size-base" | "font-size-lg" | "font-size-sm" | "heading-1-size" | "heading-2-size" | "heading-3-size" | "heading-4-size" | "heading-5-size" | "line-height-base" | "border-radius-base" | "border-radius-sm" | "control-border-radius" | "arrow-border-radius" | "padding-lg" | "padding-md" | "padding-sm" | "padding-xs" | "padding-xss" | "control-padding-horizontal" | "control-padding-horizontal-sm" | "margin-lg" | "margin-md" | "margin-sm" | "margin-xs" | "margin-xss" | "height-base" | "height-lg" | "height-sm" | "item-active-bg" | "item-hover-bg" | "iconfont-css-prefix" | "link-color" | "link-hover-color" | "link-active-color" | "link-decoration" | "link-hover-decoration" | "link-focus-decoration" | "link-focus-outline" | "ease-base-out" | "ease-base-in" | "ease-out-back" | "ease-in-back" | "ease-in-out-back" | "ease-out-circ" | "ease-in-circ" | "ease-in-out-circ" | "ease-out-quint" | "ease-in-quint" | "ease-in-out-quint" | "border-color-base" | "border-color-split" | "border-color-inverse" | "border-width-base" | "border-style-base" | "outline-blur-size" | "outline-fade" | "background-color-light" | "background-color-base" | "disabled-color" | "disabled-bg" | "disabled-active-bg" | "disabled-color-dark" | "shadow-color" | "shadow-color-inverse" | "box-shadow-base" | "shadow-1-up" | "shadow-1-down" | "shadow-1-left" | "shadow-1-right" | "shadow-2" | "btn-font-weight" | "btn-border-radius-base" | "btn-border-radius-sm" | "btn-border-width" | "btn-border-style" | "btn-shadow" | "btn-primary-shadow" | "btn-text-shadow" | "btn-primary-color" | "btn-primary-bg" | "btn-default-color" | "btn-default-bg" | "btn-default-border" | "btn-danger-color" | "btn-danger-bg" | "btn-danger-border" | "btn-disable-color" | "btn-disable-bg" | "btn-disable-border" | "btn-default-ghost-color" | "btn-default-ghost-bg" | "btn-default-ghost-border" | "btn-font-size-lg" | "btn-font-size-sm" | "btn-padding-horizontal-base" | "btn-padding-horizontal-lg" | "btn-padding-horizontal-sm" | "btn-height-base" | "btn-height-lg" | "btn-height-sm" | "btn-line-height" | "btn-circle-size" | "btn-circle-size-lg" | "btn-circle-size-sm" | "btn-square-size" | "btn-square-size-lg" | "btn-square-size-sm" | "btn-square-only-icon-size" | "btn-square-only-icon-size-sm" | "btn-square-only-icon-size-lg" | "btn-group-border" | "btn-link-hover-bg" | "btn-text-hover-bg" | "checkbox-size" | "checkbox-color" | "checkbox-check-color" | "checkbox-check-bg" | "checkbox-border-width" | "checkbox-border-radius" | "checkbox-group-item-margin-right" | "descriptions-bg" | "descriptions-title-margin-bottom" | "descriptions-default-padding" | "descriptions-middle-padding" | "descriptions-small-padding" | "descriptions-item-padding-bottom" | "descriptions-item-trailing-colon" | "descriptions-item-label-colon-margin-right" | "descriptions-item-label-colon-margin-left" | "descriptions-extra-color" | "divider-text-padding" | "divider-orientation-margin" | "divider-color" | "divider-vertical-gutter" | "dropdown-selected-color" | "dropdown-menu-submenu-disabled-bg" | "dropdown-selected-bg" | "empty-font-size" | "radio-size" | "radio-top" | "radio-border-width" | "radio-dot-size" | "radio-dot-color" | "radio-dot-disabled-color" | "radio-solid-checked-color" | "radio-button-bg" | "radio-button-checked-bg" | "radio-button-color" | "radio-button-hover-color" | "radio-button-active-color" | "radio-button-padding-horizontal" | "radio-disabled-button-checked-bg" | "radio-disabled-button-checked-color" | "radio-wrapper-margin-right" | "screen-xs" | "screen-xs-min" | "screen-sm" | "screen-sm-min" | "screen-md" | "screen-md-min" | "screen-lg" | "screen-lg-min" | "screen-xl" | "screen-xl-min" | "screen-xxl" | "screen-xxl-min" | "screen-xs-max" | "screen-sm-max" | "screen-md-max" | "screen-lg-max" | "screen-xl-max" | "grid-columns" | "layout-body-background" | "layout-header-background" | "layout-header-height" | "layout-header-padding" | "layout-header-color" | "layout-footer-padding" | "layout-footer-background" | "layout-sider-background" | "layout-trigger-height" | "layout-trigger-background" | "layout-trigger-color" | "layout-zero-trigger-width" | "layout-zero-trigger-height" | "layout-sider-background-light" | "layout-trigger-background-light" | "layout-trigger-color-light" | "zindex-badge" | "zindex-table-fixed" | "zindex-affix" | "zindex-back-top" | "zindex-picker-panel" | "zindex-popup-close" | "zindex-modal" | "zindex-modal-mask" | "zindex-message" | "zindex-notification" | "zindex-popover" | "zindex-dropdown" | "zindex-picker" | "zindex-popoconfirm" | "zindex-tooltip" | "zindex-image" | "animation-duration-slow" | "animation-duration-base" | "animation-duration-fast" | "collapse-panel-border-radius" | "dropdown-menu-bg" | "dropdown-vertical-padding" | "dropdown-edge-child-vertical-padding" | "dropdown-font-size" | "dropdown-line-height" | "label-required-color" | "label-color" | "form-warning-input-bg" | "form-item-margin-bottom" | "form-item-trailing-colon" | "form-vertical-label-padding" | "form-vertical-label-margin" | "form-item-label-font-size" | "form-item-label-height" | "form-item-label-colon-margin-right" | "form-item-label-colon-margin-left" | "form-error-input-bg" | "input-height-base" | "input-height-lg" | "input-height-sm" | "input-padding-horizontal" | "input-padding-horizontal-base" | "input-padding-horizontal-sm" | "input-padding-horizontal-lg" | "input-padding-vertical-base" | "input-padding-vertical-sm" | "input-padding-vertical-lg" | "input-placeholder-color" | "input-color" | "input-icon-color" | "input-border-color" | "input-bg" | "input-number-hover-border-color" | "input-number-handler-active-bg" | "input-number-handler-hover-bg" | "input-number-handler-bg" | "input-number-handler-border-color" | "input-addon-bg" | "input-hover-border-color" | "input-disabled-bg" | "input-outline-offset" | "input-icon-hover-color" | "input-disabled-color" | "mentions-dropdown-bg" | "mentions-dropdown-menu-item-hover-bg" | "select-border-color" | "select-item-selected-color" | "select-item-selected-font-weight" | "select-dropdown-bg" | "select-item-selected-bg" | "select-item-active-bg" | "select-dropdown-vertical-padding" | "select-dropdown-font-size" | "select-dropdown-line-height" | "select-dropdown-height" | "select-background" | "select-clear-background" | "select-selection-item-bg" | "select-selection-item-border-color" | "select-single-item-height-lg" | "select-multiple-item-height" | "select-multiple-item-height-lg" | "select-multiple-item-spacing-half" | "select-multiple-disabled-background" | "select-multiple-item-disabled-color" | "select-multiple-item-disabled-border-color" | "cascader-bg" | "cascader-item-selected-bg" | "cascader-menu-bg" | "cascader-menu-border-color-split" | "cascader-dropdown-vertical-padding" | "cascader-dropdown-edge-child-vertical-padding" | "cascader-dropdown-font-size" | "cascader-dropdown-line-height" | "anchor-bg" | "anchor-border-color" | "anchor-link-top" | "anchor-link-left" | "anchor-link-padding" | "tooltip-max-width" | "tooltip-color" | "tooltip-bg" | "tooltip-arrow-width" | "tooltip-distance" | "tooltip-arrow-color" | "tooltip-border-radius" | "popover-bg" | "popover-color" | "popover-min-width" | "popover-min-height" | "popover-arrow-width" | "popover-arrow-color" | "popover-arrow-outer-color" | "popover-distance" | "popover-padding-horizontal" | "modal-header-padding-vertical" | "modal-header-padding-horizontal" | "modal-body-padding" | "modal-header-bg" | "modal-header-padding" | "modal-header-border-width" | "modal-header-border-style" | "modal-header-title-line-height" | "modal-header-title-font-size" | "modal-header-border-color-split" | "modal-header-close-size" | "modal-content-bg" | "modal-heading-color" | "modal-close-color" | "modal-footer-bg" | "modal-footer-border-color-split" | "modal-footer-border-style" | "modal-footer-padding-vertical" | "modal-footer-padding-horizontal" | "modal-footer-border-width" | "modal-mask-bg" | "modal-confirm-body-padding" | "modal-confirm-title-font-size" | "modal-border-radius" | "progress-default-color" | "progress-remaining-color" | "progress-info-text-color" | "progress-radius" | "progress-steps-item-bg" | "progress-text-font-size" | "progress-text-color" | "progress-circle-text-font-size" | "menu-inline-toplevel-item-height" | "menu-item-height" | "menu-item-group-height" | "menu-collapsed-width" | "menu-bg" | "menu-popup-bg" | "menu-item-color" | "menu-inline-submenu-bg" | "menu-highlight-color" | "menu-highlight-danger-color" | "menu-item-active-bg" | "menu-item-active-danger-bg" | "menu-item-active-border-width" | "menu-item-group-title-color" | "menu-item-vertical-margin" | "menu-item-font-size" | "menu-item-boundary-margin" | "menu-item-padding-horizontal" | "menu-item-padding" | "menu-horizontal-line-height" | "menu-icon-margin-right" | "menu-icon-size" | "menu-icon-size-lg" | "menu-item-group-title-font-size" | "menu-dark-color" | "menu-dark-danger-color" | "menu-dark-bg" | "menu-dark-arrow-color" | "menu-dark-inline-submenu-bg" | "menu-dark-highlight-color" | "menu-dark-item-active-bg" | "menu-dark-item-active-danger-bg" | "menu-dark-selected-item-icon-color" | "menu-dark-selected-item-text-color" | "menu-dark-item-hover-bg" | "spin-dot-size-sm" | "spin-dot-size" | "spin-dot-size-lg" | "table-bg" | "table-header-bg" | "table-header-color" | "table-header-sort-bg" | "table-body-sort-bg" | "table-row-hover-bg" | "table-selected-row-color" | "table-selected-row-bg" | "table-body-selected-sort-bg" | "table-selected-row-hover-bg" | "table-expanded-row-bg" | "table-padding-vertical" | "table-padding-horizontal" | "table-padding-vertical-md" | "table-padding-horizontal-md" | "table-padding-vertical-sm" | "table-padding-horizontal-sm" | "table-border-color" | "table-border-radius-base" | "table-footer-bg" | "table-footer-color" | "table-header-bg-sm" | "table-font-size" | "table-font-size-md" | "table-font-size-sm" | "table-header-cell-split-color" | "table-header-sort-active-bg" | "table-fixed-header-sort-active-bg" | "table-header-filter-active-bg" | "table-filter-btns-bg" | "table-filter-dropdown-bg" | "table-expand-icon-bg" | "table-selection-column-width" | "table-sticky-scroll-bar-bg" | "table-sticky-scroll-bar-radius" | "tag-border-radius" | "tag-default-bg" | "tag-default-color" | "tag-font-size" | "tag-line-height" | "picker-bg" | "picker-basic-cell-hover-color" | "picker-basic-cell-active-with-range-color" | "picker-basic-cell-hover-with-range-color" | "picker-basic-cell-disabled-bg" | "picker-border-color" | "picker-date-hover-range-border-color" | "picker-date-hover-range-color" | "picker-time-panel-column-width" | "picker-time-panel-column-height" | "picker-time-panel-cell-height" | "picker-panel-cell-height" | "picker-panel-cell-width" | "picker-text-height" | "picker-panel-without-time-cell-height" | "calendar-bg" | "calendar-input-bg" | "calendar-border-color" | "calendar-item-active-bg" | "calendar-column-active-bg" | "calendar-full-bg" | "calendar-full-panel-bg" | "carousel-dot-width" | "carousel-dot-height" | "carousel-dot-active-width" | "badge-height" | "badge-height-sm" | "badge-dot-size" | "badge-font-size" | "badge-font-size-sm" | "badge-font-weight" | "badge-status-size" | "badge-text-color" | "badge-color" | "rate-star-color" | "rate-star-bg" | "rate-star-size" | "rate-star-hover-scale" | "card-head-color" | "card-head-background" | "card-head-font-size" | "card-head-font-size-sm" | "card-head-padding" | "card-head-padding-sm" | "card-head-height" | "card-head-height-sm" | "card-inner-head-padding" | "card-padding-base" | "card-padding-base-sm" | "card-actions-background" | "card-actions-li-margin" | "card-skeleton-bg" | "card-background" | "card-shadow" | "card-radius" | "card-head-tabs-margin-bottom" | "card-head-extra-color" | "comment-bg" | "comment-padding-base" | "comment-nest-indent" | "comment-font-size-base" | "comment-font-size-sm" | "comment-author-name-color" | "comment-author-time-color" | "comment-action-color" | "comment-action-hover-color" | "comment-actions-margin-bottom" | "comment-actions-margin-top" | "comment-content-detail-p-margin-bottom" | "tabs-card-head-background" | "tabs-card-height" | "tabs-card-active-color" | "tabs-card-horizontal-padding" | "tabs-card-horizontal-padding-sm" | "tabs-card-horizontal-padding-lg" | "tabs-title-font-size" | "tabs-title-font-size-lg" | "tabs-title-font-size-sm" | "tabs-ink-bar-color" | "tabs-bar-margin" | "tabs-horizontal-gutter" | "tabs-horizontal-margin" | "tabs-horizontal-margin-rtl" | "tabs-horizontal-padding" | "tabs-horizontal-padding-lg" | "tabs-horizontal-padding-sm" | "tabs-vertical-padding" | "tabs-vertical-margin" | "tabs-scrolling-size" | "tabs-highlight-color" | "tabs-hover-color" | "tabs-active-color" | "tabs-card-gutter" | "tabs-card-tab-active-border-top" | "back-top-color" | "back-top-bg" | "back-top-hover-bg" | "avatar-size-base" | "avatar-size-lg" | "avatar-size-sm" | "avatar-font-size-base" | "avatar-font-size-lg" | "avatar-font-size-sm" | "avatar-bg" | "avatar-color" | "avatar-border-radius" | "avatar-group-overlapping" | "avatar-group-space" | "avatar-group-border-color" | "switch-height" | "switch-sm-height" | "switch-min-width" | "switch-sm-min-width" | "switch-disabled-opacity" | "switch-color" | "switch-bg" | "switch-shadow-color" | "switch-padding" | "switch-inner-margin-min" | "switch-inner-margin-max" | "switch-sm-inner-margin-min" | "switch-sm-inner-margin-max" | "pagination-item-bg" | "pagination-item-size" | "pagination-item-size-sm" | "pagination-font-family" | "pagination-font-weight-active" | "pagination-item-bg-active" | "pagination-item-link-bg" | "pagination-item-disabled-color-active" | "pagination-item-disabled-bg-active" | "pagination-item-input-bg" | "pagination-mini-options-size-changer-top" | "page-header-padding" | "page-header-padding-vertical" | "page-header-padding-breadcrumb" | "page-header-content-padding-vertical" | "page-header-back-color" | "page-header-ghost-bg" | "page-header-heading-title" | "page-header-heading-sub-title" | "page-header-tabs-tab-font-size" | "breadcrumb-base-color" | "breadcrumb-last-item-color" | "breadcrumb-font-size" | "breadcrumb-icon-font-size" | "breadcrumb-link-color" | "breadcrumb-link-color-hover" | "breadcrumb-separator-color" | "breadcrumb-separator-margin" | "slider-margin" | "slider-rail-background-color" | "slider-rail-background-color-hover" | "slider-track-background-color" | "slider-track-background-color-hover" | "slider-handle-border-width" | "slider-handle-background-color" | "slider-handle-color" | "slider-handle-color-hover" | "slider-handle-color-focus" | "slider-handle-color-focus-shadow" | "slider-handle-color-tooltip-open" | "slider-handle-size" | "slider-handle-margin-top" | "slider-handle-margin-left" | "slider-handle-shadow" | "slider-dot-border-color" | "slider-dot-border-color-active" | "slider-disabled-color" | "slider-disabled-background-color" | "tree-bg" | "tree-title-height" | "tree-child-padding" | "tree-directory-selected-color" | "tree-directory-selected-bg" | "tree-node-hover-bg" | "tree-node-selected-bg" | "collapse-header-padding" | "collapse-header-padding-extra" | "collapse-header-bg" | "collapse-content-padding" | "collapse-content-bg" | "collapse-header-arrow-left" | "skeleton-color" | "skeleton-to-color" | "skeleton-paragraph-margin-top" | "skeleton-paragraph-li-margin-top" | "skeleton-paragraph-li-height" | "skeleton-title-height" | "skeleton-title-paragraph-margin-top" | "transfer-header-height" | "transfer-item-height" | "transfer-disabled-bg" | "transfer-list-height" | "transfer-item-hover-bg" | "transfer-item-selected-hover-bg" | "transfer-item-padding-vertical" | "transfer-list-search-icon-top" | "message-notice-content-padding" | "message-notice-content-bg" | "wave-animation-width" | "alert-success-border-color" | "alert-success-bg-color" | "alert-success-icon-color" | "alert-info-border-color" | "alert-info-bg-color" | "alert-info-icon-color" | "alert-warning-border-color" | "alert-warning-bg-color" | "alert-warning-icon-color" | "alert-error-border-color" | "alert-error-bg-color" | "alert-error-icon-color" | "alert-message-color" | "alert-text-color" | "alert-close-color" | "alert-close-hover-color" | "alert-padding-vertical" | "alert-padding-horizontal" | "alert-no-icon-padding-vertical" | "alert-with-description-no-icon-padding-vertical" | "alert-with-description-padding-vertical" | "alert-with-description-padding" | "alert-icon-top" | "alert-with-description-icon-size" | "list-header-background" | "list-footer-background" | "list-empty-text-padding" | "list-item-padding" | "list-item-padding-sm" | "list-item-padding-lg" | "list-item-meta-margin-bottom" | "list-item-meta-avatar-margin-right" | "list-item-meta-title-margin-bottom" | "list-customize-card-bg" | "list-item-meta-description-font-size" | "statistic-title-font-size" | "statistic-content-font-size" | "statistic-unit-font-size" | "statistic-font-family" | "drawer-header-padding" | "drawer-body-padding" | "drawer-bg" | "drawer-footer-padding-vertical" | "drawer-footer-padding-horizontal" | "drawer-header-close-size" | "drawer-title-font-size" | "drawer-title-line-height" | "timeline-width" | "timeline-color" | "timeline-dot-border-width" | "timeline-dot-color" | "timeline-dot-bg" | "timeline-item-padding-bottom" | "typography-title-font-weight" | "typography-title-margin-top" | "typography-title-margin-bottom" | "upload-actions-color" | "process-tail-color" | "steps-nav-arrow-color" | "steps-background" | "steps-icon-size" | "steps-icon-custom-size" | "steps-icon-custom-top" | "steps-icon-custom-font-size" | "steps-icon-top" | "steps-icon-font-size" | "steps-icon-margin" | "steps-title-line-height" | "steps-small-icon-size" | "steps-small-icon-margin" | "steps-dot-size" | "steps-dot-top" | "steps-current-dot-size" | "steps-description-max-width" | "steps-nav-content-max-width" | "steps-vertical-icon-width" | "steps-vertical-tail-width" | "steps-vertical-tail-width-sm" | "notification-bg" | "notification-padding-vertical" | "notification-padding-horizontal" | "result-title-font-size" | "result-subtitle-font-size" | "result-icon-font-size" | "result-extra-margin" | "image-size-base" | "image-font-size-base" | "image-bg" | "image-color" | "image-mask-font-size" | "image-preview-operation-size" | "image-preview-operation-color" | "image-preview-operation-disabled-color" | "segmented-bg" | "segmented-hover-bg" | "segmented-selected-bg" | "segmented-label-color" | "segmented-label-hover-color", string>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { GlobalToken, SeedToken, MapToken } from './interface';
|
|
2
|
+
import { default as defaultAlgorithm } from './themes/default';
|
|
3
|
+
import { ComputedRef } from 'vue';
|
|
4
|
+
import { Theme, DerivativeFunc } from '../..';
|
|
5
|
+
/** Get current context Design Token. Will be different if you are using nest theme config. */
|
|
6
|
+
declare function useToken(): {
|
|
7
|
+
theme: ComputedRef<Theme<SeedToken, MapToken>>;
|
|
8
|
+
token: ComputedRef<GlobalToken>;
|
|
9
|
+
hashId: ComputedRef<string>;
|
|
10
|
+
};
|
|
11
|
+
export { type GlobalToken };
|
|
12
|
+
declare const _default: {
|
|
13
|
+
/** Test Usage. Do not use in production. */
|
|
14
|
+
defaultConfig: {
|
|
15
|
+
token: SeedToken;
|
|
16
|
+
hashed: boolean;
|
|
17
|
+
};
|
|
18
|
+
/** Default seedToken */
|
|
19
|
+
defaultSeed: SeedToken;
|
|
20
|
+
useToken: typeof useToken;
|
|
21
|
+
defaultAlgorithm: typeof defaultAlgorithm;
|
|
22
|
+
darkAlgorithm: DerivativeFunc<SeedToken, MapToken>;
|
|
23
|
+
compactAlgorithm: DerivativeFunc<SeedToken, MapToken>;
|
|
24
|
+
};
|
|
25
|
+
export default _default;
|