@wangxinowo/vue-datepicker-next 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +104 -0
- package/dist/vue-datepicker-next.min.css +3560 -0
- package/dist/vue-datepicker-next.min.js +11 -0
- package/package.json +84 -0
- package/src/components/_util/BaseMixin.js +40 -0
- package/src/components/_util/ContainerRender.jsx +98 -0
- package/src/components/_util/FormDecoratorDirective.js +10 -0
- package/src/components/_util/KeyCode.js +521 -0
- package/src/components/_util/Portal.js +51 -0
- package/src/components/_util/PortalWrapper.js +156 -0
- package/src/components/_util/StateMixin.js +10 -0
- package/src/components/_util/__tests__/easings.test.js +13 -0
- package/src/components/_util/__tests__/scrollTo.test.js +56 -0
- package/src/components/_util/antDirective.js +13 -0
- package/src/components/_util/antInputDirective.js +73 -0
- package/src/components/_util/callMoment.js +4 -0
- package/src/components/_util/colors.js +17 -0
- package/src/components/_util/createChainedFunction.js +22 -0
- package/src/components/_util/css-animation/Event.js +130 -0
- package/src/components/_util/css-animation/index.js +184 -0
- package/src/components/_util/easings.js +8 -0
- package/src/components/_util/env.js +14 -0
- package/src/components/_util/getLocale.js +30 -0
- package/src/components/_util/getRequestAnimationFrame.js +46 -0
- package/src/components/_util/getScroll.js +17 -0
- package/src/components/_util/getScrollBarSize.js +38 -0
- package/src/components/_util/getTransitionProps.js +34 -0
- package/src/components/_util/interopDefault.js +4 -0
- package/src/components/_util/isCssAnimationSupported.js +24 -0
- package/src/components/_util/isFlexSupported.js +12 -0
- package/src/components/_util/isNumeric.js +4 -0
- package/src/components/_util/isValid.js +4 -0
- package/src/components/_util/moment-util.js +75 -0
- package/src/components/_util/openAnimation.js +67 -0
- package/src/components/_util/portalDirective.js +24 -0
- package/src/components/_util/props-util.js +335 -0
- package/src/components/_util/proxyComponent.jsx +58 -0
- package/src/components/_util/raf.js +32 -0
- package/src/components/_util/requestAnimationTimeout.js +23 -0
- package/src/components/_util/responsiveObserve.js +94 -0
- package/src/components/_util/scrollTo.js +37 -0
- package/src/components/_util/setStyle.js +25 -0
- package/src/components/_util/store/PropTypes.js +7 -0
- package/src/components/_util/store/Provider.jsx +15 -0
- package/src/components/_util/store/connect.jsx +106 -0
- package/src/components/_util/store/create.js +30 -0
- package/src/components/_util/store/index.js +5 -0
- package/src/components/_util/styleChecker.js +13 -0
- package/src/components/_util/switchScrollingEffect.js +20 -0
- package/src/components/_util/throttleByAnimationFrame.js +45 -0
- package/src/components/_util/transButton.jsx +81 -0
- package/src/components/_util/triggerEvent.js +8 -0
- package/src/components/_util/type.js +4 -0
- package/src/components/_util/vnode.js +147 -0
- package/src/components/_util/vue-types/index.js +263 -0
- package/src/components/_util/vue-types/utils.js +200 -0
- package/src/components/_util/warning.js +7 -0
- package/src/components/_util/wave.jsx +169 -0
- package/src/components/base/index.js +9 -0
- package/src/components/base/style/index.js +2 -0
- package/src/components/button/__tests__/__snapshots__/demo.test.js.snap +103 -0
- package/src/components/button/__tests__/__snapshots__/index.test.js.snap +43 -0
- package/src/components/button/__tests__/demo.test.js +3 -0
- package/src/components/button/__tests__/index.test.js +239 -0
- package/src/components/button/button-group.jsx +52 -0
- package/src/components/button/button.jsx +186 -0
- package/src/components/button/buttonTypes.js +13 -0
- package/src/components/button/index.js +14 -0
- package/src/components/button/style/index.js +2 -0
- package/src/components/button/style/index.less +224 -0
- package/src/components/button/style/mixin.less +357 -0
- package/src/components/calendar/locale/en_US.js +2 -0
- package/src/components/config-provider/__tests__/index.test.js +44 -0
- package/src/components/config-provider/configConsumerProps.jsx +9 -0
- package/src/components/config-provider/index.jsx +91 -0
- package/src/components/config-provider/renderEmpty.jsx +42 -0
- package/src/components/config-provider/style/index.js +1 -0
- package/src/components/config-provider/style/index.less +2 -0
- package/src/components/date-picker/InputIcon.js +20 -0
- package/src/components/date-picker/PresetPanel.jsx +102 -0
- package/src/components/date-picker/RangePicker.jsx +1010 -0
- package/src/components/date-picker/WeekPicker.jsx +235 -0
- package/src/components/date-picker/__tests__/DatePicker.test.js +189 -0
- package/src/components/date-picker/__tests__/MonthPicker.test.js +29 -0
- package/src/components/date-picker/__tests__/RangePicker.test.js +417 -0
- package/src/components/date-picker/__tests__/WeekPicker.test.js +24 -0
- package/src/components/date-picker/__tests__/__snapshots__/DatePicker.test.js.snap +3 -0
- package/src/components/date-picker/__tests__/__snapshots__/RangePicker.test.js.snap +695 -0
- package/src/components/date-picker/__tests__/__snapshots__/WeekPicker.test.js.snap +3 -0
- package/src/components/date-picker/__tests__/__snapshots__/demo.test.js.snap +49 -0
- package/src/components/date-picker/__tests__/__snapshots__/other.test.js.snap +240 -0
- package/src/components/date-picker/__tests__/demo.test.js +3 -0
- package/src/components/date-picker/__tests__/mount.test.js +11 -0
- package/src/components/date-picker/__tests__/other.test.js +88 -0
- package/src/components/date-picker/__tests__/showTime.test.js +234 -0
- package/src/components/date-picker/__tests__/utils.js +34 -0
- package/src/components/date-picker/createPicker.js +273 -0
- package/src/components/date-picker/generate/dayjs.js +438 -0
- package/src/components/date-picker/generate/index.js +125 -0
- package/src/components/date-picker/generate/moment.js +357 -0
- package/src/components/date-picker/index.js +37 -0
- package/src/components/date-picker/interface.js +172 -0
- package/src/components/date-picker/locale/ar_EG.js +23 -0
- package/src/components/date-picker/locale/bg_BG.js +19 -0
- package/src/components/date-picker/locale/ca_ES.js +19 -0
- package/src/components/date-picker/locale/cs_CZ.js +19 -0
- package/src/components/date-picker/locale/da_DK.js +19 -0
- package/src/components/date-picker/locale/de_DE.js +19 -0
- package/src/components/date-picker/locale/el_GR.js +19 -0
- package/src/components/date-picker/locale/en_GB.js +19 -0
- package/src/components/date-picker/locale/en_US.js +19 -0
- package/src/components/date-picker/locale/es_ES.js +19 -0
- package/src/components/date-picker/locale/et_EE.js +19 -0
- package/src/components/date-picker/locale/example.json +39 -0
- package/src/components/date-picker/locale/fa_IR.js +19 -0
- package/src/components/date-picker/locale/fi_FI.js +19 -0
- package/src/components/date-picker/locale/fr_BE.js +19 -0
- package/src/components/date-picker/locale/fr_FR.js +19 -0
- package/src/components/date-picker/locale/ga_IE.js +19 -0
- package/src/components/date-picker/locale/he_IL.js +19 -0
- package/src/components/date-picker/locale/hi_IN.js +19 -0
- package/src/components/date-picker/locale/hr_HR.js +19 -0
- package/src/components/date-picker/locale/hu_HU.js +19 -0
- package/src/components/date-picker/locale/id_ID.js +19 -0
- package/src/components/date-picker/locale/is_IS.js +19 -0
- package/src/components/date-picker/locale/it_IT.js +19 -0
- package/src/components/date-picker/locale/ja_JP.js +18 -0
- package/src/components/date-picker/locale/kn_IN.js +19 -0
- package/src/components/date-picker/locale/ko_KR.js +19 -0
- package/src/components/date-picker/locale/ku_IQ.js +18 -0
- package/src/components/date-picker/locale/lv_LV.js +19 -0
- package/src/components/date-picker/locale/mk_MK.js +19 -0
- package/src/components/date-picker/locale/mn_MN.js +19 -0
- package/src/components/date-picker/locale/ms_MY.js +19 -0
- package/src/components/date-picker/locale/nb_NO.js +19 -0
- package/src/components/date-picker/locale/nl_BE.js +19 -0
- package/src/components/date-picker/locale/nl_NL.js +19 -0
- package/src/components/date-picker/locale/pl_PL.js +19 -0
- package/src/components/date-picker/locale/pt_BR.js +19 -0
- package/src/components/date-picker/locale/pt_PT.js +46 -0
- package/src/components/date-picker/locale/ro_RO.js +19 -0
- package/src/components/date-picker/locale/ru_RU.js +22 -0
- package/src/components/date-picker/locale/sk_SK.js +19 -0
- package/src/components/date-picker/locale/sl_SI.js +43 -0
- package/src/components/date-picker/locale/sr_RS.js +19 -0
- package/src/components/date-picker/locale/sv_SE.js +18 -0
- package/src/components/date-picker/locale/ta_IN.js +20 -0
- package/src/components/date-picker/locale/th_TH.js +19 -0
- package/src/components/date-picker/locale/tr_TR.js +19 -0
- package/src/components/date-picker/locale/uk_UA.js +18 -0
- package/src/components/date-picker/locale/vi_VN.js +19 -0
- package/src/components/date-picker/locale/zh_CN.js +21 -0
- package/src/components/date-picker/locale/zh_TW.js +20 -0
- package/src/components/date-picker/statusUtils.js +53 -0
- package/src/components/date-picker/style/Calendar.less +402 -0
- package/src/components/date-picker/style/DecadePanel.less +81 -0
- package/src/components/date-picker/style/MonthPanel.less +86 -0
- package/src/components/date-picker/style/MonthPicker.less +11 -0
- package/src/components/date-picker/style/Picker.less +113 -0
- package/src/components/date-picker/style/RangePicker.less +327 -0
- package/src/components/date-picker/style/TimePicker.less +151 -0
- package/src/components/date-picker/style/WeekPicker.less +21 -0
- package/src/components/date-picker/style/YearPanel.less +93 -0
- package/src/components/date-picker/style/index.js +8 -0
- package/src/components/date-picker/style/index.less +20 -0
- package/src/components/date-picker/style/presets.less +69 -0
- package/src/components/date-picker/style/status.less +94 -0
- package/src/components/date-picker/style/transitions.less +176 -0
- package/src/components/date-picker/utils.js +209 -0
- package/src/components/date-picker/wrapPicker.js +258 -0
- package/src/components/empty/__tests__/__snapshots__/demo.test.js.snap +195 -0
- package/src/components/empty/__tests__/demo.test.js +3 -0
- package/src/components/empty/__tests__/index.test.js +25 -0
- package/src/components/empty/empty.jsx +47 -0
- package/src/components/empty/index.jsx +78 -0
- package/src/components/empty/simple.jsx +20 -0
- package/src/components/empty/style/index.js +2 -0
- package/src/components/empty/style/index.less +52 -0
- package/src/components/icon/IconFont.jsx +52 -0
- package/src/components/icon/__tests__/__snapshots__/demo.test.js.snap +671 -0
- package/src/components/icon/__tests__/__snapshots__/index.test.js.snap +77 -0
- package/src/components/icon/__tests__/demo.test.js +3 -0
- package/src/components/icon/__tests__/index.test.js +236 -0
- package/src/components/icon/index.js +185 -0
- package/src/components/icon/style/index.js +2 -0
- package/src/components/icon/style/index.less +4 -0
- package/src/components/icon/twoTonePrimaryColor.js +12 -0
- package/src/components/icon/utils.js +77 -0
- package/src/components/input/ClearableLabeledInput.jsx +182 -0
- package/src/components/input/Group.jsx +41 -0
- package/src/components/input/Input.jsx +240 -0
- package/src/components/input/Password.jsx +117 -0
- package/src/components/input/ResizableTextArea.jsx +158 -0
- package/src/components/input/Search.jsx +185 -0
- package/src/components/input/TextArea.jsx +131 -0
- package/src/components/input/__tests__/Search.test.js +134 -0
- package/src/components/input/__tests__/__snapshots__/Search.test.js.snap +5 -0
- package/src/components/input/__tests__/__snapshots__/demo.test.js.snap +86 -0
- package/src/components/input/__tests__/__snapshots__/index.test.js.snap +9 -0
- package/src/components/input/__tests__/demo.test.js +3 -0
- package/src/components/input/__tests__/index.test.js +124 -0
- package/src/components/input/calculateNodeHeight.js +151 -0
- package/src/components/input/index.js +27 -0
- package/src/components/input/inputProps.js +36 -0
- package/src/components/input/style/index.js +5 -0
- package/src/components/input/style/index.less +52 -0
- package/src/components/input/style/mixin.less +453 -0
- package/src/components/input/style/search-input.less +34 -0
- package/src/components/locale/ar_EG.js +43 -0
- package/src/components/locale/bg_BG.js +43 -0
- package/src/components/locale/ca_ES.js +41 -0
- package/src/components/locale/cs_CZ.js +41 -0
- package/src/components/locale/da_DK.js +43 -0
- package/src/components/locale/de_DE.js +43 -0
- package/src/components/locale/default.js +62 -0
- package/src/components/locale/el_GR.js +43 -0
- package/src/components/locale/en_GB.js +43 -0
- package/src/components/locale/en_US.js +3 -0
- package/src/components/locale/es_ES.js +59 -0
- package/src/components/locale/et_EE.js +43 -0
- package/src/components/locale/fa_IR.js +43 -0
- package/src/components/locale/fi_FI.js +44 -0
- package/src/components/locale/fr_BE.js +47 -0
- package/src/components/locale/fr_FR.js +47 -0
- package/src/components/locale/ga_IE.js +43 -0
- package/src/components/locale/he_IL.js +43 -0
- package/src/components/locale/hi_IN.js +51 -0
- package/src/components/locale/hr_HR.js +57 -0
- package/src/components/locale/hu_HU.js +44 -0
- package/src/components/locale/hy_AM.js +109 -0
- package/src/components/locale/id_ID.js +45 -0
- package/src/components/locale/is_IS.js +43 -0
- package/src/components/locale/it_IT.js +56 -0
- package/src/components/locale/ja_JP.js +43 -0
- package/src/components/locale/kn_IN.js +51 -0
- package/src/components/locale/ko_KR.js +43 -0
- package/src/components/locale/ku_IQ.js +43 -0
- package/src/components/locale/lv_LV.js +43 -0
- package/src/components/locale/mk_MK.js +58 -0
- package/src/components/locale/mn_MN.js +43 -0
- package/src/components/locale/ms_MY.js +63 -0
- package/src/components/locale/nb_NO.js +43 -0
- package/src/components/locale/ne_NP.js +44 -0
- package/src/components/locale/nl_BE.js +43 -0
- package/src/components/locale/nl_NL.js +62 -0
- package/src/components/locale/pl_PL.js +43 -0
- package/src/components/locale/pt_BR.js +49 -0
- package/src/components/locale/pt_PT.js +44 -0
- package/src/components/locale/ro_RO.js +62 -0
- package/src/components/locale/ru_RU.js +53 -0
- package/src/components/locale/sk_SK.js +62 -0
- package/src/components/locale/sl_SI.js +43 -0
- package/src/components/locale/sr_RS.js +43 -0
- package/src/components/locale/sv_SE.js +47 -0
- package/src/components/locale/ta_IN.js +63 -0
- package/src/components/locale/th_TH.js +62 -0
- package/src/components/locale/tr_TR.js +57 -0
- package/src/components/locale/uk_UA.js +43 -0
- package/src/components/locale/vi_VN.js +43 -0
- package/src/components/locale/zh_CN.js +62 -0
- package/src/components/locale/zh_TW.js +49 -0
- package/src/components/locale-provider/LocaleReceiver.jsx +43 -0
- package/src/components/locale-provider/__tests__/__snapshots__/demo.test.js.snap +434 -0
- package/src/components/locale-provider/__tests__/__snapshots__/index.test.js.snap +22618 -0
- package/src/components/locale-provider/__tests__/demo.test.js +3 -0
- package/src/components/locale-provider/__tests__/index.test.js +271 -0
- package/src/components/locale-provider/ar_EG.js +3 -0
- package/src/components/locale-provider/bg_BG.js +3 -0
- package/src/components/locale-provider/ca_ES.js +3 -0
- package/src/components/locale-provider/cs_CZ.js +3 -0
- package/src/components/locale-provider/da_DK.js +3 -0
- package/src/components/locale-provider/de_DE.js +3 -0
- package/src/components/locale-provider/default.js +3 -0
- package/src/components/locale-provider/el_GR.js +3 -0
- package/src/components/locale-provider/en_GB.js +3 -0
- package/src/components/locale-provider/en_US.js +3 -0
- package/src/components/locale-provider/es_ES.js +3 -0
- package/src/components/locale-provider/et_EE.js +3 -0
- package/src/components/locale-provider/fa_IR.js +3 -0
- package/src/components/locale-provider/fi_FI.js +3 -0
- package/src/components/locale-provider/fr_BE.js +3 -0
- package/src/components/locale-provider/fr_FR.js +3 -0
- package/src/components/locale-provider/ga_IE.js +3 -0
- package/src/components/locale-provider/he_IL.js +3 -0
- package/src/components/locale-provider/hi_IN.js +3 -0
- package/src/components/locale-provider/hr_HR.js +3 -0
- package/src/components/locale-provider/hu_HU.js +3 -0
- package/src/components/locale-provider/hy_AM.js +3 -0
- package/src/components/locale-provider/id_ID.js +3 -0
- package/src/components/locale-provider/index.jsx +82 -0
- package/src/components/locale-provider/is_IS.js +3 -0
- package/src/components/locale-provider/it_IT.js +3 -0
- package/src/components/locale-provider/ja_JP.js +3 -0
- package/src/components/locale-provider/kn_IN.js +3 -0
- package/src/components/locale-provider/ko_KR.js +3 -0
- package/src/components/locale-provider/ku_IQ.js +3 -0
- package/src/components/locale-provider/lv_LV.js +3 -0
- package/src/components/locale-provider/mk_MK.js +3 -0
- package/src/components/locale-provider/mn_MN.js +3 -0
- package/src/components/locale-provider/ms_MY.js +3 -0
- package/src/components/locale-provider/nb_NO.js +3 -0
- package/src/components/locale-provider/ne-NP.js +3 -0
- package/src/components/locale-provider/ne_NP.js +3 -0
- package/src/components/locale-provider/nl_BE.js +3 -0
- package/src/components/locale-provider/nl_NL.js +3 -0
- package/src/components/locale-provider/pl_PL.js +3 -0
- package/src/components/locale-provider/pt_BR.js +3 -0
- package/src/components/locale-provider/pt_PT.js +3 -0
- package/src/components/locale-provider/ro_RO.js +3 -0
- package/src/components/locale-provider/ru_RU.js +3 -0
- package/src/components/locale-provider/sk_SK.js +3 -0
- package/src/components/locale-provider/sl_SI.js +3 -0
- package/src/components/locale-provider/sr_RS.js +3 -0
- package/src/components/locale-provider/style/index.js +1 -0
- package/src/components/locale-provider/style/index.less +2 -0
- package/src/components/locale-provider/sv_SE.js +3 -0
- package/src/components/locale-provider/ta_IN.js +62 -0
- package/src/components/locale-provider/th_TH.js +3 -0
- package/src/components/locale-provider/tr_TR.js +3 -0
- package/src/components/locale-provider/uk_UA.js +3 -0
- package/src/components/locale-provider/vi_VN.js +3 -0
- package/src/components/locale-provider/zh_CN.js +3 -0
- package/src/components/locale-provider/zh_TW.js +3 -0
- package/src/components/style/color/bezierEasing.less +110 -0
- package/src/components/style/color/colorPalette.less +75 -0
- package/src/components/style/color/colors.less +149 -0
- package/src/components/style/color/tinyColor.less +1184 -0
- package/src/components/style/core/base.less +510 -0
- package/src/components/style/core/iconfont.less +19 -0
- package/src/components/style/core/index.less +4 -0
- package/src/components/style/core/motion/fade.less +31 -0
- package/src/components/style/core/motion/move.less +120 -0
- package/src/components/style/core/motion/other.less +45 -0
- package/src/components/style/core/motion/slide.less +120 -0
- package/src/components/style/core/motion/swing.less +34 -0
- package/src/components/style/core/motion/zoom.less +162 -0
- package/src/components/style/core/motion.less +20 -0
- package/src/components/style/index.js +1 -0
- package/src/components/style/index.less +2 -0
- package/src/components/style/index.tsx +1 -0
- package/src/components/style/mixins/clearfix.less +13 -0
- package/src/components/style/mixins/compatibility.less +22 -0
- package/src/components/style/mixins/iconfont.less +43 -0
- package/src/components/style/mixins/index.less +10 -0
- package/src/components/style/mixins/motion.less +35 -0
- package/src/components/style/mixins/operation-unit.less +18 -0
- package/src/components/style/mixins/reset.less +13 -0
- package/src/components/style/mixins/size.less +10 -0
- package/src/components/style/mixins/typography.less +49 -0
- package/src/components/style/themes/default.less +701 -0
- package/src/components/style/themes/index.less +1 -0
- package/src/components/style/v2-compatible-reset.js +1 -0
- package/src/components/style/v2-compatible-reset.less +51 -0
- package/src/components/style/v2-compatible-reset.tsx +1 -0
- package/src/components/tag/CheckableTag.jsx +43 -0
- package/src/components/tag/Tag.jsx +145 -0
- package/src/components/tag/__tests__/__snapshots__/demo.test.js.snap +92 -0
- package/src/components/tag/__tests__/__snapshots__/index.test.js.snap +13 -0
- package/src/components/tag/__tests__/demo.test.js +3 -0
- package/src/components/tag/__tests__/index.test.js +82 -0
- package/src/components/tag/index.js +14 -0
- package/src/components/tag/style/index.js +2 -0
- package/src/components/tag/style/index.less +106 -0
- package/src/components/time-picker/__tests__/__snapshots__/demo.test.js.snap +39 -0
- package/src/components/time-picker/__tests__/__snapshots__/index.test.js.snap +5 -0
- package/src/components/time-picker/__tests__/demo.test.js +3 -0
- package/src/components/time-picker/__tests__/index.test.js +55 -0
- package/src/components/time-picker/index.jsx +267 -0
- package/src/components/time-picker/locale/ar_EG.js +5 -0
- package/src/components/time-picker/locale/bg_BG.js +5 -0
- package/src/components/time-picker/locale/ca_ES.js +5 -0
- package/src/components/time-picker/locale/cs_CZ.js +5 -0
- package/src/components/time-picker/locale/da_DK.js +5 -0
- package/src/components/time-picker/locale/de_DE.js +5 -0
- package/src/components/time-picker/locale/el_GR.js +5 -0
- package/src/components/time-picker/locale/en_GB.js +5 -0
- package/src/components/time-picker/locale/en_US.js +5 -0
- package/src/components/time-picker/locale/es_ES.js +5 -0
- package/src/components/time-picker/locale/et_EE.js +5 -0
- package/src/components/time-picker/locale/fa_IR.js +5 -0
- package/src/components/time-picker/locale/fi_FI.js +5 -0
- package/src/components/time-picker/locale/fr_BE.js +5 -0
- package/src/components/time-picker/locale/fr_FR.js +5 -0
- package/src/components/time-picker/locale/ga_IE.js +5 -0
- package/src/components/time-picker/locale/he_IL.js +5 -0
- package/src/components/time-picker/locale/hi_IN.js +5 -0
- package/src/components/time-picker/locale/hr_HR.js +5 -0
- package/src/components/time-picker/locale/hu_HU.js +5 -0
- package/src/components/time-picker/locale/id_ID.js +5 -0
- package/src/components/time-picker/locale/is_IS.js +5 -0
- package/src/components/time-picker/locale/it_IT.js +5 -0
- package/src/components/time-picker/locale/ja_JP.js +5 -0
- package/src/components/time-picker/locale/kn_IN.js +5 -0
- package/src/components/time-picker/locale/ko_KR.js +5 -0
- package/src/components/time-picker/locale/ku_IQ.js +5 -0
- package/src/components/time-picker/locale/lv_LV.js +5 -0
- package/src/components/time-picker/locale/mk_MK.js +5 -0
- package/src/components/time-picker/locale/mn_MN.js +5 -0
- package/src/components/time-picker/locale/ms_MY.js +5 -0
- package/src/components/time-picker/locale/nb_NO.js +5 -0
- package/src/components/time-picker/locale/nl_BE.js +5 -0
- package/src/components/time-picker/locale/nl_NL.js +5 -0
- package/src/components/time-picker/locale/pl_PL.js +5 -0
- package/src/components/time-picker/locale/pt_BR.js +5 -0
- package/src/components/time-picker/locale/pt_PT.js +5 -0
- package/src/components/time-picker/locale/ro_RO.js +5 -0
- package/src/components/time-picker/locale/ru_RU.js +8 -0
- package/src/components/time-picker/locale/sk_SK.js +5 -0
- package/src/components/time-picker/locale/sl_SI.js +5 -0
- package/src/components/time-picker/locale/sr_RS.js +5 -0
- package/src/components/time-picker/locale/sv_SE.js +5 -0
- package/src/components/time-picker/locale/ta_IN.js +5 -0
- package/src/components/time-picker/locale/th_TH.js +5 -0
- package/src/components/time-picker/locale/tr_TR.js +5 -0
- package/src/components/time-picker/locale/uk_UA.js +5 -0
- package/src/components/time-picker/locale/vi_VN.js +5 -0
- package/src/components/time-picker/locale/zh_CN.js +5 -0
- package/src/components/time-picker/locale/zh_TW.js +5 -0
- package/src/components/time-picker/style/index.js +2 -0
- package/src/components/time-picker/style/index.less +246 -0
- package/src/components/tooltip/Tooltip.jsx +219 -0
- package/src/components/tooltip/__tests__/__snapshots__/demo.test.js.snap +20 -0
- package/src/components/tooltip/__tests__/demo.test.js +3 -0
- package/src/components/tooltip/__tests__/tooltip.test.js +204 -0
- package/src/components/tooltip/abstractTooltipProps.js +34 -0
- package/src/components/tooltip/index.js +10 -0
- package/src/components/tooltip/placements.js +96 -0
- package/src/components/tooltip/style/index.js +2 -0
- package/src/components/tooltip/style/index.less +187 -0
- package/src/components/vc-align/Align.jsx +149 -0
- package/src/components/vc-align/index.js +3 -0
- package/src/components/vc-align/util.js +52 -0
- package/src/components/vc-calendar/assets/common/Calendar.less +106 -0
- package/src/components/vc-calendar/assets/common/FullCalendar.less +91 -0
- package/src/components/vc-calendar/assets/common/Picker.less +10 -0
- package/src/components/vc-calendar/assets/common/RangeCalendar.less +131 -0
- package/src/components/vc-calendar/assets/common/index.less +16 -0
- package/src/components/vc-calendar/assets/index/Calendar.less +301 -0
- package/src/components/vc-calendar/assets/index/DecadePanel.less +122 -0
- package/src/components/vc-calendar/assets/index/Input.less +23 -0
- package/src/components/vc-calendar/assets/index/MonthPanel.less +143 -0
- package/src/components/vc-calendar/assets/index/Picker.less +110 -0
- package/src/components/vc-calendar/assets/index/Time.less +6 -0
- package/src/components/vc-calendar/assets/index/TimePanel.less +72 -0
- package/src/components/vc-calendar/assets/index/YearPanel.less +136 -0
- package/src/components/vc-calendar/assets/index.less +10 -0
- package/src/components/vc-calendar/index.js +8 -0
- package/src/components/vc-calendar/src/Calendar.jsx +390 -0
- package/src/components/vc-calendar/src/FullCalendar.jsx +166 -0
- package/src/components/vc-calendar/src/MonthCalendar.jsx +125 -0
- package/src/components/vc-calendar/src/Picker.jsx +244 -0
- package/src/components/vc-calendar/src/RangeCalendar.jsx +1031 -0
- package/src/components/vc-calendar/src/calendar/CalendarFooter.jsx +86 -0
- package/src/components/vc-calendar/src/calendar/CalendarHeader.jsx +264 -0
- package/src/components/vc-calendar/src/calendar/OkButton.jsx +18 -0
- package/src/components/vc-calendar/src/calendar/TimePickerButton.jsx +22 -0
- package/src/components/vc-calendar/src/calendar/TodayButton.jsx +33 -0
- package/src/components/vc-calendar/src/date/DateConstants.js +4 -0
- package/src/components/vc-calendar/src/date/DateInput.jsx +226 -0
- package/src/components/vc-calendar/src/date/DateTBody.jsx +261 -0
- package/src/components/vc-calendar/src/date/DateTHead.jsx +49 -0
- package/src/components/vc-calendar/src/date/DateTable.jsx +20 -0
- package/src/components/vc-calendar/src/decade/DecadePanel.jsx +131 -0
- package/src/components/vc-calendar/src/full-calendar/CalendarHeader.jsx +134 -0
- package/src/components/vc-calendar/src/index.js +3 -0
- package/src/components/vc-calendar/src/locale/ar_EG.js +27 -0
- package/src/components/vc-calendar/src/locale/bg_BG.js +27 -0
- package/src/components/vc-calendar/src/locale/ca_ES.js +27 -0
- package/src/components/vc-calendar/src/locale/cs_CZ.js +27 -0
- package/src/components/vc-calendar/src/locale/da_DK.js +27 -0
- package/src/components/vc-calendar/src/locale/de_DE.js +27 -0
- package/src/components/vc-calendar/src/locale/el_GR.js +27 -0
- package/src/components/vc-calendar/src/locale/en_GB.js +27 -0
- package/src/components/vc-calendar/src/locale/en_US.js +28 -0
- package/src/components/vc-calendar/src/locale/es_ES.js +27 -0
- package/src/components/vc-calendar/src/locale/et_EE.js +27 -0
- package/src/components/vc-calendar/src/locale/fa_IR.js +27 -0
- package/src/components/vc-calendar/src/locale/fi_FI.js +27 -0
- package/src/components/vc-calendar/src/locale/fr_BE.js +27 -0
- package/src/components/vc-calendar/src/locale/fr_FR.js +27 -0
- package/src/components/vc-calendar/src/locale/ga_IE.js +28 -0
- package/src/components/vc-calendar/src/locale/he_IL.js +28 -0
- package/src/components/vc-calendar/src/locale/hi_IN.js +28 -0
- package/src/components/vc-calendar/src/locale/hr_HR.js +28 -0
- package/src/components/vc-calendar/src/locale/hu_HU.js +27 -0
- package/src/components/vc-calendar/src/locale/id_ID.js +28 -0
- package/src/components/vc-calendar/src/locale/is_IS.js +27 -0
- package/src/components/vc-calendar/src/locale/it_IT.js +27 -0
- package/src/components/vc-calendar/src/locale/ja_JP.js +26 -0
- package/src/components/vc-calendar/src/locale/kn_IN.js +28 -0
- package/src/components/vc-calendar/src/locale/ko_KR.js +27 -0
- package/src/components/vc-calendar/src/locale/ku_IQ.js +27 -0
- package/src/components/vc-calendar/src/locale/lv_LV.js +27 -0
- package/src/components/vc-calendar/src/locale/mk_MK.js +27 -0
- package/src/components/vc-calendar/src/locale/mm_MM.js +28 -0
- package/src/components/vc-calendar/src/locale/mn_MN.js +28 -0
- package/src/components/vc-calendar/src/locale/ms_MY.js +27 -0
- package/src/components/vc-calendar/src/locale/nb_NO.js +27 -0
- package/src/components/vc-calendar/src/locale/nl_BE.js +27 -0
- package/src/components/vc-calendar/src/locale/nl_NL.js +27 -0
- package/src/components/vc-calendar/src/locale/pl_PL.js +27 -0
- package/src/components/vc-calendar/src/locale/pt_BR.js +27 -0
- package/src/components/vc-calendar/src/locale/pt_PT.js +27 -0
- package/src/components/vc-calendar/src/locale/ro_RO.js +28 -0
- package/src/components/vc-calendar/src/locale/ru_RU.js +27 -0
- package/src/components/vc-calendar/src/locale/sk_SK.js +28 -0
- package/src/components/vc-calendar/src/locale/sl_SI.js +27 -0
- package/src/components/vc-calendar/src/locale/sr_RS.js +27 -0
- package/src/components/vc-calendar/src/locale/sv_SE.js +27 -0
- package/src/components/vc-calendar/src/locale/ta_IN.js +28 -0
- package/src/components/vc-calendar/src/locale/th_TH.js +27 -0
- package/src/components/vc-calendar/src/locale/tr_TR.js +27 -0
- package/src/components/vc-calendar/src/locale/ug_CN.js +26 -0
- package/src/components/vc-calendar/src/locale/uk_UA.js +27 -0
- package/src/components/vc-calendar/src/locale/vi_VN.js +28 -0
- package/src/components/vc-calendar/src/locale/zh_CN.js +27 -0
- package/src/components/vc-calendar/src/locale/zh_TW.js +26 -0
- package/src/components/vc-calendar/src/mixin/CalendarMixin.js +122 -0
- package/src/components/vc-calendar/src/mixin/CommonMixin.js +26 -0
- package/src/components/vc-calendar/src/month/MonthPanel.jsx +123 -0
- package/src/components/vc-calendar/src/month/MonthTable.jsx +138 -0
- package/src/components/vc-calendar/src/picker/placements.js +35 -0
- package/src/components/vc-calendar/src/range-calendar/CalendarPart.jsx +171 -0
- package/src/components/vc-calendar/src/util/index.js +113 -0
- package/src/components/vc-calendar/src/util/toTime.js +15 -0
- package/src/components/vc-calendar/src/year/YearPanel.jsx +167 -0
- package/src/components/vc-pagination/locale/en_US.js +15 -0
- package/src/components/vc-select/DropdownMenu.jsx +216 -0
- package/src/components/vc-select/OptGroup.jsx +8 -0
- package/src/components/vc-select/Option.jsx +11 -0
- package/src/components/vc-select/PropTypes.js +59 -0
- package/src/components/vc-select/Select.jsx +1716 -0
- package/src/components/vc-select/SelectTrigger.jsx +259 -0
- package/src/components/vc-select/assets/index.less +541 -0
- package/src/components/vc-select/index.js +11 -0
- package/src/components/vc-select/util.js +223 -0
- package/src/components/vc-time-picker/Combobox.jsx +214 -0
- package/src/components/vc-time-picker/Header.jsx +187 -0
- package/src/components/vc-time-picker/Panel.jsx +225 -0
- package/src/components/vc-time-picker/Select.jsx +140 -0
- package/src/components/vc-time-picker/TimePicker.jsx +386 -0
- package/src/components/vc-time-picker/assets/index/Header.less +22 -0
- package/src/components/vc-time-picker/assets/index/Panel.less +29 -0
- package/src/components/vc-time-picker/assets/index/Picker.less +25 -0
- package/src/components/vc-time-picker/assets/index/Select.less +62 -0
- package/src/components/vc-time-picker/assets/index.less +44 -0
- package/src/components/vc-time-picker/index.js +2 -0
- package/src/components/vc-time-picker/placements.js +35 -0
- package/src/components/vc-tooltip/Content.jsx +23 -0
- package/src/components/vc-tooltip/Tooltip.jsx +106 -0
- package/src/components/vc-tooltip/assets/boostrap/anim.less +61 -0
- package/src/components/vc-tooltip/assets/bootstrap.less +171 -0
- package/src/components/vc-tooltip/assets/bootstrap_white.less +190 -0
- package/src/components/vc-tooltip/index.js +4 -0
- package/src/components/vc-tooltip/placements.js +83 -0
- package/src/components/vc-trigger/LazyRenderBox.jsx +22 -0
- package/src/components/vc-trigger/Popup.jsx +336 -0
- package/src/components/vc-trigger/PopupInner.jsx +25 -0
- package/src/components/vc-trigger/Trigger.jsx +663 -0
- package/src/components/vc-trigger/assets/index.less +72 -0
- package/src/components/vc-trigger/assets/mask.less +65 -0
- package/src/components/vc-trigger/index.js +3 -0
- package/src/components/vc-trigger/index.md +160 -0
- package/src/components/vc-trigger/t.js +665 -0
- package/src/components/vc-trigger/utils.js +27 -0
- package/src/components/vc-util/Dom/addEventListener.js +5 -0
- package/src/components/vc-util/Dom/class.js +28 -0
- package/src/components/vc-util/Dom/contains.js +11 -0
- package/src/components/vc-util/warning.js +38 -0
- package/src/index.js +44 -0
- package/types/index.d.ts +112 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/hu_HU';
|
|
2
|
+
import DatePicker from '../date-picker/locale/hu_HU';
|
|
3
|
+
import TimePicker from '../time-picker/locale/hu_HU';
|
|
4
|
+
import Calendar from '../calendar/locale/hu_HU';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'hu',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
Table: {
|
|
13
|
+
filterTitle: 'Szűrők',
|
|
14
|
+
filterConfirm: 'Alkalmazás',
|
|
15
|
+
filterReset: 'Visszaállítás',
|
|
16
|
+
selectAll: 'Jelenlegi oldal kiválasztása',
|
|
17
|
+
selectInvert: 'Jelenlegi oldal inverze',
|
|
18
|
+
sortTitle: 'Rendezés',
|
|
19
|
+
},
|
|
20
|
+
Modal: {
|
|
21
|
+
okText: 'Alkalmazás',
|
|
22
|
+
cancelText: 'Visszavonás',
|
|
23
|
+
justOkText: 'Alkalmazás',
|
|
24
|
+
},
|
|
25
|
+
Popconfirm: {
|
|
26
|
+
okText: 'Alkalmazás',
|
|
27
|
+
cancelText: 'Visszavonás',
|
|
28
|
+
},
|
|
29
|
+
Transfer: {
|
|
30
|
+
searchPlaceholder: 'Keresés',
|
|
31
|
+
itemUnit: 'elem',
|
|
32
|
+
itemsUnit: 'elemek',
|
|
33
|
+
},
|
|
34
|
+
Upload: {
|
|
35
|
+
uploading: 'Feltöltés...',
|
|
36
|
+
removeFile: 'Fájl eltávolítása',
|
|
37
|
+
uploadError: 'Feltöltési hiba',
|
|
38
|
+
previewFile: 'Fájl előnézet',
|
|
39
|
+
downloadFile: 'Fájl letöltése',
|
|
40
|
+
},
|
|
41
|
+
Empty: {
|
|
42
|
+
description: 'Nincs adat',
|
|
43
|
+
},
|
|
44
|
+
};
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
const datePickerLocale = {
|
|
2
|
+
lang: {
|
|
3
|
+
placeholder: 'Ընտրեք ամսաթիվը',
|
|
4
|
+
rangePlaceholder: ['Մեկնարկի ամսաթիվ', 'Ավարտի ամսաթիվը'],
|
|
5
|
+
today: 'Այսօր',
|
|
6
|
+
now: 'Հիմա',
|
|
7
|
+
backToToday: 'Վերադառնալ այսօր',
|
|
8
|
+
ok: 'Օկ',
|
|
9
|
+
clear: 'Մաքրել',
|
|
10
|
+
month: 'Ամիս',
|
|
11
|
+
year: 'Տարի',
|
|
12
|
+
timeSelect: 'ընտրեք ժամը',
|
|
13
|
+
dateSelect: 'ընտրեք ամսաթիվը',
|
|
14
|
+
weekSelect: 'Ընտրեք շաբաթը',
|
|
15
|
+
monthSelect: 'Ընտրեք ամիսը',
|
|
16
|
+
yearSelect: 'Ընտրեք տարին',
|
|
17
|
+
decadeSelect: 'Ընտրեք տասնամյակը',
|
|
18
|
+
yearFormat: 'YYYY',
|
|
19
|
+
dateFormat: 'DD/MM//YYYY',
|
|
20
|
+
dayFormat: 'DD',
|
|
21
|
+
dateTimeFormat: 'DD/MM//YYYY HH:mm:ss',
|
|
22
|
+
monthBeforeYear: true,
|
|
23
|
+
previousMonth: 'Անցած ամիս (PageUp)',
|
|
24
|
+
nextMonth: 'Մյուս ամիս (PageDown)',
|
|
25
|
+
previousYear: 'Անցած տարի (Control + left)',
|
|
26
|
+
nextYear: 'Մյուս տարի (Control + right)',
|
|
27
|
+
previousDecade: 'Անցած տասնամյակ',
|
|
28
|
+
nextDecade: 'Մյուս տասնամյակ',
|
|
29
|
+
previousCentury: 'Անցած դար',
|
|
30
|
+
nextCentury: 'Մյուս դար',
|
|
31
|
+
},
|
|
32
|
+
timePickerLocale: {
|
|
33
|
+
placeholder: 'Ընտրեք ժամը',
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export default {
|
|
38
|
+
locale: 'hy',
|
|
39
|
+
Pagination: {
|
|
40
|
+
// Options.jsx
|
|
41
|
+
items_per_page: '/ էջ',
|
|
42
|
+
jump_to: 'Գնալ',
|
|
43
|
+
jump_to_confirm: 'հաստատել',
|
|
44
|
+
page: '',
|
|
45
|
+
|
|
46
|
+
// Pagination.jsx
|
|
47
|
+
prev_page: 'Նախորդ Էջ',
|
|
48
|
+
next_page: 'Հաջորդ Էջ',
|
|
49
|
+
prev_5: 'Նախորդ 5 Էջերը',
|
|
50
|
+
next_5: 'Հաջորդ 5 Էջերը',
|
|
51
|
+
prev_3: 'Նախորդ 3 Էջերը',
|
|
52
|
+
next_3: 'Հաջորդ 3 Էջերը',
|
|
53
|
+
},
|
|
54
|
+
DatePicker: datePickerLocale,
|
|
55
|
+
TimePicker: {
|
|
56
|
+
placeholder: 'Ընտրեք ժամը',
|
|
57
|
+
},
|
|
58
|
+
Calendar: datePickerLocale,
|
|
59
|
+
global: {
|
|
60
|
+
placeholder: 'Ընտրեք',
|
|
61
|
+
},
|
|
62
|
+
Table: {
|
|
63
|
+
filterTitle: 'ֆիլտրի ընտրացանկ',
|
|
64
|
+
filterConfirm: 'ֆիլտրել',
|
|
65
|
+
filterReset: 'Զրոյացնել',
|
|
66
|
+
selectAll: 'Ընտրեք ընթացիկ էջը',
|
|
67
|
+
selectInvert: 'Փոխարկել ընթացիկ էջը',
|
|
68
|
+
sortTitle: 'Տեսակավորել',
|
|
69
|
+
expand: 'Ընդլայնեք տողը',
|
|
70
|
+
collapse: 'Կրճատել տողը',
|
|
71
|
+
},
|
|
72
|
+
Modal: {
|
|
73
|
+
okText: 'Օկ',
|
|
74
|
+
cancelText: 'Չեղարկել',
|
|
75
|
+
justOkText: 'Օկ',
|
|
76
|
+
},
|
|
77
|
+
Popconfirm: {
|
|
78
|
+
okText: 'Հաստատել',
|
|
79
|
+
cancelText: 'Մերժել',
|
|
80
|
+
},
|
|
81
|
+
Transfer: {
|
|
82
|
+
titles: ['', ''],
|
|
83
|
+
searchPlaceholder: 'Որոնեք այստեղ',
|
|
84
|
+
itemUnit: 'պարագան',
|
|
85
|
+
itemsUnit: 'պարագաները',
|
|
86
|
+
},
|
|
87
|
+
Upload: {
|
|
88
|
+
uploading: 'Ներբեռնում...',
|
|
89
|
+
removeFile: 'Հեռացնել ֆայլը',
|
|
90
|
+
uploadError: 'Ներբեռնման սխալ',
|
|
91
|
+
previewFile: 'Դիտել ֆայլը',
|
|
92
|
+
downloadFile: 'Ներբեռնել ֆայլը',
|
|
93
|
+
},
|
|
94
|
+
Empty: {
|
|
95
|
+
description: 'Տվյալներ չկան',
|
|
96
|
+
},
|
|
97
|
+
Icon: {
|
|
98
|
+
icon: 'պատկեր',
|
|
99
|
+
},
|
|
100
|
+
Text: {
|
|
101
|
+
edit: 'Խմբագրել',
|
|
102
|
+
copy: 'Պատճենել',
|
|
103
|
+
copied: 'Պատճենվել է',
|
|
104
|
+
expand: 'Տեսնել ավելին',
|
|
105
|
+
},
|
|
106
|
+
PageHeader: {
|
|
107
|
+
back: 'Հետ',
|
|
108
|
+
},
|
|
109
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/id_ID';
|
|
2
|
+
import DatePicker from '../date-picker/locale/id_ID';
|
|
3
|
+
import TimePicker from '../time-picker/locale/id_ID';
|
|
4
|
+
import Calendar from '../calendar/locale/id_ID';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'id',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
Table: {
|
|
13
|
+
filterTitle: 'Saring',
|
|
14
|
+
filterConfirm: 'OK',
|
|
15
|
+
filterReset: 'Hapus',
|
|
16
|
+
selectAll: 'Pilih semua di halaman ini',
|
|
17
|
+
selectInvert: 'Balikkan pilihan di halaman ini',
|
|
18
|
+
sortTitle: 'Urutkan',
|
|
19
|
+
},
|
|
20
|
+
Modal: {
|
|
21
|
+
okText: 'OK',
|
|
22
|
+
cancelText: 'Batal',
|
|
23
|
+
justOkText: 'OK',
|
|
24
|
+
},
|
|
25
|
+
Popconfirm: {
|
|
26
|
+
okText: 'OK',
|
|
27
|
+
cancelText: 'Batal',
|
|
28
|
+
},
|
|
29
|
+
Transfer: {
|
|
30
|
+
titles: ['', ''],
|
|
31
|
+
searchPlaceholder: 'Cari',
|
|
32
|
+
itemUnit: 'item',
|
|
33
|
+
itemsUnit: 'item',
|
|
34
|
+
},
|
|
35
|
+
Upload: {
|
|
36
|
+
uploading: 'Mengunggah...',
|
|
37
|
+
removeFile: 'Hapus file',
|
|
38
|
+
uploadError: 'Kesalahan pengunggahan',
|
|
39
|
+
previewFile: 'File pratinjau',
|
|
40
|
+
downloadFile: 'Unduh berkas',
|
|
41
|
+
},
|
|
42
|
+
Empty: {
|
|
43
|
+
description: 'Tidak ada data',
|
|
44
|
+
},
|
|
45
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/is_IS';
|
|
2
|
+
import DatePicker from '../date-picker/locale/is_IS';
|
|
3
|
+
import TimePicker from '../time-picker/locale/is_IS';
|
|
4
|
+
import Calendar from '../calendar/locale/is_IS';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'is',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
Table: {
|
|
13
|
+
filterTitle: 'Afmarkanir',
|
|
14
|
+
filterConfirm: 'Staðfesta',
|
|
15
|
+
filterReset: 'Núllstilla',
|
|
16
|
+
selectAll: 'Velja allt',
|
|
17
|
+
selectInvert: 'Viðsnúa vali',
|
|
18
|
+
},
|
|
19
|
+
Modal: {
|
|
20
|
+
okText: 'Áfram',
|
|
21
|
+
cancelText: 'Hætta við',
|
|
22
|
+
justOkText: 'Í lagi',
|
|
23
|
+
},
|
|
24
|
+
Popconfirm: {
|
|
25
|
+
okText: 'Áfram',
|
|
26
|
+
cancelText: 'Hætta við',
|
|
27
|
+
},
|
|
28
|
+
Transfer: {
|
|
29
|
+
searchPlaceholder: 'Leita hér',
|
|
30
|
+
itemUnit: 'færsla',
|
|
31
|
+
itemsUnit: 'færslur',
|
|
32
|
+
},
|
|
33
|
+
Upload: {
|
|
34
|
+
uploading: 'Hleð upp...',
|
|
35
|
+
removeFile: 'Fjarlægja skrá',
|
|
36
|
+
uploadError: 'Villa við að hlaða upp',
|
|
37
|
+
previewFile: 'Forskoða skrá',
|
|
38
|
+
downloadFile: 'Hlaða niður skrá',
|
|
39
|
+
},
|
|
40
|
+
Empty: {
|
|
41
|
+
description: 'Engin gögn',
|
|
42
|
+
},
|
|
43
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/it_IT';
|
|
2
|
+
import DatePicker from '../date-picker/locale/it_IT';
|
|
3
|
+
import TimePicker from '../time-picker/locale/it_IT';
|
|
4
|
+
import Calendar from '../calendar/locale/it_IT';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'it',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
global: {
|
|
13
|
+
placeholder: 'Selezionare',
|
|
14
|
+
},
|
|
15
|
+
Table: {
|
|
16
|
+
filterTitle: 'Menù Filtro',
|
|
17
|
+
filterConfirm: 'OK',
|
|
18
|
+
filterReset: 'Reset',
|
|
19
|
+
selectAll: 'Seleziona pagina corrente',
|
|
20
|
+
selectInvert: 'Inverti selezione nella pagina corrente',
|
|
21
|
+
sortTitle: 'Ordina',
|
|
22
|
+
},
|
|
23
|
+
Modal: {
|
|
24
|
+
okText: 'OK',
|
|
25
|
+
cancelText: 'Annulla',
|
|
26
|
+
justOkText: 'OK',
|
|
27
|
+
},
|
|
28
|
+
Popconfirm: {
|
|
29
|
+
okText: 'OK',
|
|
30
|
+
cancelText: 'Annulla',
|
|
31
|
+
},
|
|
32
|
+
Transfer: {
|
|
33
|
+
searchPlaceholder: 'Cerca qui',
|
|
34
|
+
itemUnit: 'elemento',
|
|
35
|
+
itemsUnit: 'elementi',
|
|
36
|
+
},
|
|
37
|
+
Upload: {
|
|
38
|
+
uploading: 'Caricamento...',
|
|
39
|
+
removeFile: 'Rimuovi il file',
|
|
40
|
+
uploadError: 'Errore di caricamento',
|
|
41
|
+
previewFile: 'Anteprima file',
|
|
42
|
+
downloadFile: 'Download file',
|
|
43
|
+
},
|
|
44
|
+
Empty: {
|
|
45
|
+
description: 'Nessun dato',
|
|
46
|
+
},
|
|
47
|
+
Icon: {
|
|
48
|
+
icon: 'icona',
|
|
49
|
+
},
|
|
50
|
+
Text: {
|
|
51
|
+
edit: 'modifica',
|
|
52
|
+
copy: 'copia',
|
|
53
|
+
copied: 'copia effettuata',
|
|
54
|
+
expand: 'espandi',
|
|
55
|
+
},
|
|
56
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/ja_JP';
|
|
2
|
+
import DatePicker from '../date-picker/locale/ja_JP';
|
|
3
|
+
import TimePicker from '../time-picker/locale/ja_JP';
|
|
4
|
+
import Calendar from '../calendar/locale/ja_JP';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'ja',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
Table: {
|
|
13
|
+
filterTitle: 'メニューをフィルター',
|
|
14
|
+
filterConfirm: 'OK',
|
|
15
|
+
filterReset: 'リセット',
|
|
16
|
+
selectAll: 'すべてを選択',
|
|
17
|
+
selectInvert: '選択を反転',
|
|
18
|
+
},
|
|
19
|
+
Modal: {
|
|
20
|
+
okText: 'OK',
|
|
21
|
+
cancelText: 'キャンセル',
|
|
22
|
+
justOkText: 'OK',
|
|
23
|
+
},
|
|
24
|
+
Popconfirm: {
|
|
25
|
+
okText: 'OK',
|
|
26
|
+
cancelText: 'キャンセル',
|
|
27
|
+
},
|
|
28
|
+
Transfer: {
|
|
29
|
+
searchPlaceholder: 'ここを検索',
|
|
30
|
+
itemUnit: 'アイテム',
|
|
31
|
+
itemsUnit: 'アイテム',
|
|
32
|
+
},
|
|
33
|
+
Upload: {
|
|
34
|
+
uploading: 'アップロード中...',
|
|
35
|
+
removeFile: 'ファイルを削除',
|
|
36
|
+
uploadError: 'アップロードエラー',
|
|
37
|
+
previewFile: 'ファイルをプレビュー',
|
|
38
|
+
downloadFile: 'ダウンロードファイル',
|
|
39
|
+
},
|
|
40
|
+
Empty: {
|
|
41
|
+
description: 'データがありません',
|
|
42
|
+
},
|
|
43
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/kn_IN';
|
|
2
|
+
import DatePicker from '../date-picker/locale/kn_IN';
|
|
3
|
+
import TimePicker from '../time-picker/locale/kn_IN';
|
|
4
|
+
import Calendar from '../calendar/locale/kn_IN';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'kn',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
// locales for all comoponents
|
|
13
|
+
global: {
|
|
14
|
+
placeholder: 'ದಯವಿಟ್ಟು ಆರಿಸಿ',
|
|
15
|
+
},
|
|
16
|
+
Table: {
|
|
17
|
+
filterTitle: 'ಪಟ್ಟಿ ಸೋಸಿ',
|
|
18
|
+
filterConfirm: 'ಸರಿ',
|
|
19
|
+
filterReset: 'ಮರುಹೊಂದಿಸಿ',
|
|
20
|
+
emptyText: 'ಮಾಹಿತಿ ಇಲ್ಲ',
|
|
21
|
+
selectAll: 'ಪ್ರಸ್ತುತ ಪುಟವನ್ನು ಆಯ್ಕೆಮಾಡಿ',
|
|
22
|
+
selectInvert: 'ಪ್ರಸ್ತುತ ಪುಟವನ್ನು ತಿರುಗಿಸಿ',
|
|
23
|
+
sortTitle: 'ವಿಂಗಡಿಸಿ',
|
|
24
|
+
},
|
|
25
|
+
Modal: {
|
|
26
|
+
okText: 'ಸರಿ',
|
|
27
|
+
cancelText: 'ರದ್ದು',
|
|
28
|
+
justOkText: 'ಸರಿ',
|
|
29
|
+
},
|
|
30
|
+
Popconfirm: {
|
|
31
|
+
okText: 'ಸರಿ',
|
|
32
|
+
cancelText: 'ರದ್ದು',
|
|
33
|
+
},
|
|
34
|
+
Transfer: {
|
|
35
|
+
titles: ['', ''],
|
|
36
|
+
notFoundContent: 'ದೊರೆತಿಲ್ಲ',
|
|
37
|
+
searchPlaceholder: 'ಇಲ್ಲಿ ಹುಡುಕಿ',
|
|
38
|
+
itemUnit: 'ವಿಷಯ',
|
|
39
|
+
itemsUnit: 'ವಿಷಯಗಳು',
|
|
40
|
+
},
|
|
41
|
+
Select: {
|
|
42
|
+
notFoundContent: 'ದೊರೆತಿಲ್ಲ',
|
|
43
|
+
},
|
|
44
|
+
Upload: {
|
|
45
|
+
uploading: 'ಏರಿಸಿ...',
|
|
46
|
+
removeFile: 'ಫೈಲ್ ತೆಗೆದುಹಾಕಿ',
|
|
47
|
+
uploadError: 'ಏರಿಸುವ ದೋಷ',
|
|
48
|
+
previewFile: 'ಫೈಲ್ ಮುನ್ನೋಟ',
|
|
49
|
+
downloadFile: 'ಫೈಲ್ ಡೌನ್ಲೋಡ್ ಮಾಡಿ',
|
|
50
|
+
},
|
|
51
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/ko_KR';
|
|
2
|
+
import DatePicker from '../date-picker/locale/ko_KR';
|
|
3
|
+
import TimePicker from '../time-picker/locale/ko_KR';
|
|
4
|
+
import Calendar from '../calendar/locale/ko_KR';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'ko',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
Table: {
|
|
13
|
+
filterTitle: '필터 메뉴',
|
|
14
|
+
filterConfirm: '확인',
|
|
15
|
+
filterReset: '초기화',
|
|
16
|
+
selectAll: '모두 선택',
|
|
17
|
+
selectInvert: '선택 반전',
|
|
18
|
+
},
|
|
19
|
+
Modal: {
|
|
20
|
+
okText: '확인',
|
|
21
|
+
cancelText: '취소',
|
|
22
|
+
justOkText: '확인',
|
|
23
|
+
},
|
|
24
|
+
Popconfirm: {
|
|
25
|
+
okText: '확인',
|
|
26
|
+
cancelText: '취소',
|
|
27
|
+
},
|
|
28
|
+
Transfer: {
|
|
29
|
+
searchPlaceholder: '여기에 검색하세요',
|
|
30
|
+
itemUnit: '개',
|
|
31
|
+
itemsUnit: '개',
|
|
32
|
+
},
|
|
33
|
+
Upload: {
|
|
34
|
+
uploading: '업로드 중...',
|
|
35
|
+
removeFile: '파일 삭제',
|
|
36
|
+
uploadError: '업로드 실패',
|
|
37
|
+
previewFile: '파일 미리보기',
|
|
38
|
+
downloadFile: '파일 다운로드',
|
|
39
|
+
},
|
|
40
|
+
Empty: {
|
|
41
|
+
description: '데이터 없음',
|
|
42
|
+
},
|
|
43
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/ku_IQ';
|
|
2
|
+
import DatePicker from '../date-picker/locale/ku_IQ';
|
|
3
|
+
import TimePicker from '../time-picker/locale/ku_IQ';
|
|
4
|
+
import Calendar from '../calendar/locale/ku_IQ';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'ku-iq',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
Table: {
|
|
13
|
+
filterTitle: 'Menuê peldanka',
|
|
14
|
+
filterConfirm: 'Temam',
|
|
15
|
+
filterReset: 'Jê bibe',
|
|
16
|
+
selectAll: 'Hemî hilbijêre',
|
|
17
|
+
selectInvert: 'Hilbijartinan veguhere',
|
|
18
|
+
},
|
|
19
|
+
Modal: {
|
|
20
|
+
okText: 'Temam',
|
|
21
|
+
cancelText: 'Betal ke',
|
|
22
|
+
justOkText: 'Temam',
|
|
23
|
+
},
|
|
24
|
+
Popconfirm: {
|
|
25
|
+
okText: 'Temam',
|
|
26
|
+
cancelText: 'Betal ke',
|
|
27
|
+
},
|
|
28
|
+
Transfer: {
|
|
29
|
+
searchPlaceholder: 'Lêgerîn',
|
|
30
|
+
itemUnit: 'tişt',
|
|
31
|
+
itemsUnit: 'tişt',
|
|
32
|
+
},
|
|
33
|
+
Upload: {
|
|
34
|
+
uploading: 'Bardike...',
|
|
35
|
+
removeFile: 'Pelê rabike',
|
|
36
|
+
uploadError: 'Xeta barkirine',
|
|
37
|
+
previewFile: 'Pelê pêşbibîne',
|
|
38
|
+
downloadFile: 'Pelê dakêşin',
|
|
39
|
+
},
|
|
40
|
+
Empty: {
|
|
41
|
+
description: 'Agahî tune',
|
|
42
|
+
},
|
|
43
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/lv_LV';
|
|
2
|
+
import DatePicker from '../date-picker/locale/lv_LV';
|
|
3
|
+
import TimePicker from '../time-picker/locale/lv_LV';
|
|
4
|
+
import Calendar from '../calendar/locale/lv_LV';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'lv',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
Table: {
|
|
13
|
+
filterTitle: 'Filtrēšanas izvēlne',
|
|
14
|
+
filterConfirm: 'OK',
|
|
15
|
+
filterReset: 'Atiestatīt',
|
|
16
|
+
selectAll: 'Atlasiet pašreizējo lapu',
|
|
17
|
+
selectInvert: 'Pārvērst pašreizējo lapu',
|
|
18
|
+
},
|
|
19
|
+
Modal: {
|
|
20
|
+
okText: 'OK',
|
|
21
|
+
cancelText: 'Atcelt',
|
|
22
|
+
justOkText: 'OK',
|
|
23
|
+
},
|
|
24
|
+
Popconfirm: {
|
|
25
|
+
okText: 'OK',
|
|
26
|
+
cancelText: 'Atcelt',
|
|
27
|
+
},
|
|
28
|
+
Transfer: {
|
|
29
|
+
searchPlaceholder: 'Meklēt šeit',
|
|
30
|
+
itemUnit: 'vienumu',
|
|
31
|
+
itemsUnit: 'vienumus',
|
|
32
|
+
},
|
|
33
|
+
Upload: {
|
|
34
|
+
uploading: 'Augšupielāde...',
|
|
35
|
+
removeFile: 'Noņemt failu',
|
|
36
|
+
uploadError: 'Augšupielādes kļūda',
|
|
37
|
+
previewFile: 'Priekšskatiet failu',
|
|
38
|
+
downloadFile: 'Lejupielādēt failu',
|
|
39
|
+
},
|
|
40
|
+
Empty: {
|
|
41
|
+
description: 'Nav datu',
|
|
42
|
+
},
|
|
43
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/mk_MK';
|
|
2
|
+
import DatePicker from '../date-picker/locale/mk_MK';
|
|
3
|
+
import TimePicker from '../time-picker/locale/mk_MK';
|
|
4
|
+
import Calendar from '../calendar/locale/mk_MK';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'mk',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
global: {
|
|
13
|
+
placeholder: 'Ве молиме означете',
|
|
14
|
+
},
|
|
15
|
+
Table: {
|
|
16
|
+
filterTitle: 'Мени за филтрирање',
|
|
17
|
+
filterConfirm: 'ОК',
|
|
18
|
+
filterReset: 'Избриши',
|
|
19
|
+
selectAll: 'Одбери страница',
|
|
20
|
+
selectInvert: 'Инвертирај страница',
|
|
21
|
+
},
|
|
22
|
+
Modal: {
|
|
23
|
+
okText: 'ОК',
|
|
24
|
+
cancelText: 'Откажи',
|
|
25
|
+
justOkText: 'ОК',
|
|
26
|
+
},
|
|
27
|
+
Popconfirm: {
|
|
28
|
+
okText: 'ОК',
|
|
29
|
+
cancelText: 'Откажи',
|
|
30
|
+
},
|
|
31
|
+
Transfer: {
|
|
32
|
+
searchPlaceholder: 'Пребарај тука',
|
|
33
|
+
itemUnit: 'предмет',
|
|
34
|
+
itemsUnit: 'предмети',
|
|
35
|
+
},
|
|
36
|
+
Upload: {
|
|
37
|
+
uploading: 'Се прикачува...',
|
|
38
|
+
removeFile: 'Избриши фајл',
|
|
39
|
+
uploadError: 'Грешка при прикачување',
|
|
40
|
+
previewFile: 'Прикажи фајл',
|
|
41
|
+
downloadFile: 'Преземи фајл',
|
|
42
|
+
},
|
|
43
|
+
Empty: {
|
|
44
|
+
description: 'Нема податоци',
|
|
45
|
+
},
|
|
46
|
+
Icon: {
|
|
47
|
+
icon: 'Икона',
|
|
48
|
+
},
|
|
49
|
+
Text: {
|
|
50
|
+
edit: 'Уреди',
|
|
51
|
+
copy: 'Копирај',
|
|
52
|
+
copied: 'Копирано',
|
|
53
|
+
expand: 'Зголеми',
|
|
54
|
+
},
|
|
55
|
+
PageHeader: {
|
|
56
|
+
back: 'Назад',
|
|
57
|
+
},
|
|
58
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/mn_MN';
|
|
2
|
+
import DatePicker from '../date-picker/locale/mn_MN';
|
|
3
|
+
import TimePicker from '../time-picker/locale/mn_MN';
|
|
4
|
+
import Calendar from '../calendar/locale/mn_MN';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'mn-mn',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
Table: {
|
|
13
|
+
filterTitle: 'Хайх цэс',
|
|
14
|
+
filterConfirm: 'OK',
|
|
15
|
+
filterReset: 'Цэвэрлэх',
|
|
16
|
+
selectAll: 'Бүгдийг сонгох',
|
|
17
|
+
selectInvert: 'Бусдыг сонгох',
|
|
18
|
+
},
|
|
19
|
+
Modal: {
|
|
20
|
+
okText: 'OK',
|
|
21
|
+
cancelText: 'Цуцлах',
|
|
22
|
+
justOkText: 'OK',
|
|
23
|
+
},
|
|
24
|
+
Popconfirm: {
|
|
25
|
+
okText: 'OK',
|
|
26
|
+
cancelText: 'Цуцлах',
|
|
27
|
+
},
|
|
28
|
+
Transfer: {
|
|
29
|
+
searchPlaceholder: 'Хайх',
|
|
30
|
+
itemUnit: 'Зүйл',
|
|
31
|
+
itemsUnit: 'Зүйлүүд',
|
|
32
|
+
},
|
|
33
|
+
Upload: {
|
|
34
|
+
uploading: 'Хуулж байна...',
|
|
35
|
+
removeFile: 'Файл устгах',
|
|
36
|
+
uploadError: 'Хуулахад алдаа гарлаа',
|
|
37
|
+
previewFile: 'Файлыг түргэн үзэх',
|
|
38
|
+
downloadFile: 'Файлыг татах',
|
|
39
|
+
},
|
|
40
|
+
Empty: {
|
|
41
|
+
description: 'Мэдээлэл байхгүй байна',
|
|
42
|
+
},
|
|
43
|
+
};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import Pagination from '../vc-pagination/locale/ms_MY';
|
|
2
|
+
import DatePicker from '../date-picker/locale/ms_MY';
|
|
3
|
+
import TimePicker from '../time-picker/locale/ms_MY';
|
|
4
|
+
import Calendar from '../calendar/locale/ms_MY';
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
locale: 'ms-my',
|
|
8
|
+
Pagination,
|
|
9
|
+
DatePicker,
|
|
10
|
+
TimePicker,
|
|
11
|
+
Calendar,
|
|
12
|
+
global: {
|
|
13
|
+
placeholder: 'Sila pilih',
|
|
14
|
+
},
|
|
15
|
+
PageHeader: {
|
|
16
|
+
back: 'Kembali',
|
|
17
|
+
},
|
|
18
|
+
Text: {
|
|
19
|
+
edit: 'Sunting',
|
|
20
|
+
copy: 'Salin',
|
|
21
|
+
copied: 'Berjaya menyalin',
|
|
22
|
+
expand: 'Kembang',
|
|
23
|
+
},
|
|
24
|
+
Empty: {
|
|
25
|
+
description: 'Tiada data',
|
|
26
|
+
},
|
|
27
|
+
Table: {
|
|
28
|
+
filterTitle: 'Cari dengan tajuk',
|
|
29
|
+
filterConfirm: 'Ok',
|
|
30
|
+
filterReset: 'Menetapkan semula',
|
|
31
|
+
emptyText: 'Tiada data',
|
|
32
|
+
selectAll: 'Pilih semua',
|
|
33
|
+
selectInvert: 'Terbalikkan',
|
|
34
|
+
},
|
|
35
|
+
Modal: {
|
|
36
|
+
okText: 'OK',
|
|
37
|
+
cancelText: 'Batal',
|
|
38
|
+
justOkText: 'OK',
|
|
39
|
+
},
|
|
40
|
+
Popconfirm: {
|
|
41
|
+
okText: 'OK',
|
|
42
|
+
cancelText: 'Batal',
|
|
43
|
+
},
|
|
44
|
+
Transfer: {
|
|
45
|
+
notFoundContent: 'Tidak dijumpai',
|
|
46
|
+
searchPlaceholder: 'Carian di sini',
|
|
47
|
+
itemUnit: 'item',
|
|
48
|
+
itemsUnit: 'item',
|
|
49
|
+
},
|
|
50
|
+
Icon: {
|
|
51
|
+
icon: 'ikon',
|
|
52
|
+
},
|
|
53
|
+
Select: {
|
|
54
|
+
notFoundContent: 'Tidak Dijumpai',
|
|
55
|
+
},
|
|
56
|
+
Upload: {
|
|
57
|
+
uploading: 'Sedang memuat naik...',
|
|
58
|
+
removeFile: 'Buang fail',
|
|
59
|
+
uploadError: 'Masalah muat naik',
|
|
60
|
+
previewFile: 'Tengok fail',
|
|
61
|
+
downloadFile: 'Muat turun fail',
|
|
62
|
+
},
|
|
63
|
+
};
|