@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,695 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`RangePicker show month panel according to value 1`] = `
|
|
4
|
+
<div>
|
|
5
|
+
<div class="ant-calendar-picker-container ant-calendar-picker-container-placement-bottomLeft" style="left: -999px; top: -1002px;">
|
|
6
|
+
<div tabindex="0" class="ant-calendar ant-calendar-range ant-calendar-time ant-calendar-picker-container-content">
|
|
7
|
+
<div class="ant-calendar-panel">
|
|
8
|
+
<div class="ant-calendar-date-panel">
|
|
9
|
+
<div class="ant-calendar-range-part ant-calendar-range-left">
|
|
10
|
+
<div class="ant-calendar-input-wrap">
|
|
11
|
+
<div class="ant-calendar-date-input-wrap"><input placeholder="Start date" class="ant-calendar-input "></div>
|
|
12
|
+
</div>
|
|
13
|
+
<div style="outline: none;">
|
|
14
|
+
<div class="ant-calendar-header">
|
|
15
|
+
<div style="position: relative;"><a role="button" title="Last year (Control + left)" class="ant-calendar-prev-year-btn"></a><a role="button" title="Previous month (PageUp)" class="ant-calendar-prev-month-btn"></a><span class="ant-calendar-my-select"><a role="button" title="Choose a month" class="ant-calendar-month-select">1月</a><a role="button" title="Choose a year" class="ant-calendar-year-select">2000</a></span></div>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="ant-calendar-body">
|
|
18
|
+
<table cellspacing="0" role="grid" class="ant-calendar-table">
|
|
19
|
+
<thead>
|
|
20
|
+
<tr role="row">
|
|
21
|
+
<th role="columnheader" title="周一" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">一</span></th>
|
|
22
|
+
<th role="columnheader" title="周二" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">二</span></th>
|
|
23
|
+
<th role="columnheader" title="周三" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">三</span></th>
|
|
24
|
+
<th role="columnheader" title="周四" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">四</span></th>
|
|
25
|
+
<th role="columnheader" title="周五" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">五</span></th>
|
|
26
|
+
<th role="columnheader" title="周六" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">六</span></th>
|
|
27
|
+
<th role="columnheader" title="周日" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">日</span></th>
|
|
28
|
+
</tr>
|
|
29
|
+
</thead>
|
|
30
|
+
<tbody class="ant-calendar-tbody">
|
|
31
|
+
<tr role="row" class="ant-calendar-active-week">
|
|
32
|
+
<td role="gridcell" title="1999年12月27日" class="ant-calendar-cell ant-calendar-last-month-cell">
|
|
33
|
+
<div class="ant-calendar-date">27</div>
|
|
34
|
+
</td>
|
|
35
|
+
<td role="gridcell" title="1999年12月28日" class="ant-calendar-cell ant-calendar-last-month-cell">
|
|
36
|
+
<div class="ant-calendar-date">28</div>
|
|
37
|
+
</td>
|
|
38
|
+
<td role="gridcell" title="1999年12月29日" class="ant-calendar-cell ant-calendar-last-month-cell">
|
|
39
|
+
<div class="ant-calendar-date">29</div>
|
|
40
|
+
</td>
|
|
41
|
+
<td role="gridcell" title="1999年12月30日" class="ant-calendar-cell ant-calendar-last-month-cell">
|
|
42
|
+
<div class="ant-calendar-date">30</div>
|
|
43
|
+
</td>
|
|
44
|
+
<td role="gridcell" title="1999年12月31日" class="ant-calendar-cell ant-calendar-last-month-cell ant-calendar-last-day-of-month">
|
|
45
|
+
<div class="ant-calendar-date">31</div>
|
|
46
|
+
</td>
|
|
47
|
+
<td role="gridcell" title="2000年1月1日" class="ant-calendar-cell ant-calendar-selected-start-date ant-calendar-selected-end-date ant-calendar-selected-day">
|
|
48
|
+
<div aria-selected="true" class="ant-calendar-date">1</div>
|
|
49
|
+
</td>
|
|
50
|
+
<td role="gridcell" title="2000年1月2日" class="ant-calendar-cell">
|
|
51
|
+
<div class="ant-calendar-date">2</div>
|
|
52
|
+
</td>
|
|
53
|
+
</tr>
|
|
54
|
+
<tr role="row" class="">
|
|
55
|
+
<td role="gridcell" title="2000年1月3日" class="ant-calendar-cell">
|
|
56
|
+
<div class="ant-calendar-date">3</div>
|
|
57
|
+
</td>
|
|
58
|
+
<td role="gridcell" title="2000年1月4日" class="ant-calendar-cell">
|
|
59
|
+
<div class="ant-calendar-date">4</div>
|
|
60
|
+
</td>
|
|
61
|
+
<td role="gridcell" title="2000年1月5日" class="ant-calendar-cell">
|
|
62
|
+
<div class="ant-calendar-date">5</div>
|
|
63
|
+
</td>
|
|
64
|
+
<td role="gridcell" title="2000年1月6日" class="ant-calendar-cell">
|
|
65
|
+
<div class="ant-calendar-date">6</div>
|
|
66
|
+
</td>
|
|
67
|
+
<td role="gridcell" title="2000年1月7日" class="ant-calendar-cell">
|
|
68
|
+
<div class="ant-calendar-date">7</div>
|
|
69
|
+
</td>
|
|
70
|
+
<td role="gridcell" title="2000年1月8日" class="ant-calendar-cell">
|
|
71
|
+
<div class="ant-calendar-date">8</div>
|
|
72
|
+
</td>
|
|
73
|
+
<td role="gridcell" title="2000年1月9日" class="ant-calendar-cell">
|
|
74
|
+
<div class="ant-calendar-date">9</div>
|
|
75
|
+
</td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr role="row" class="">
|
|
78
|
+
<td role="gridcell" title="2000年1月10日" class="ant-calendar-cell">
|
|
79
|
+
<div class="ant-calendar-date">10</div>
|
|
80
|
+
</td>
|
|
81
|
+
<td role="gridcell" title="2000年1月11日" class="ant-calendar-cell">
|
|
82
|
+
<div class="ant-calendar-date">11</div>
|
|
83
|
+
</td>
|
|
84
|
+
<td role="gridcell" title="2000年1月12日" class="ant-calendar-cell">
|
|
85
|
+
<div class="ant-calendar-date">12</div>
|
|
86
|
+
</td>
|
|
87
|
+
<td role="gridcell" title="2000年1月13日" class="ant-calendar-cell">
|
|
88
|
+
<div class="ant-calendar-date">13</div>
|
|
89
|
+
</td>
|
|
90
|
+
<td role="gridcell" title="2000年1月14日" class="ant-calendar-cell">
|
|
91
|
+
<div class="ant-calendar-date">14</div>
|
|
92
|
+
</td>
|
|
93
|
+
<td role="gridcell" title="2000年1月15日" class="ant-calendar-cell">
|
|
94
|
+
<div class="ant-calendar-date">15</div>
|
|
95
|
+
</td>
|
|
96
|
+
<td role="gridcell" title="2000年1月16日" class="ant-calendar-cell">
|
|
97
|
+
<div class="ant-calendar-date">16</div>
|
|
98
|
+
</td>
|
|
99
|
+
</tr>
|
|
100
|
+
<tr role="row" class="">
|
|
101
|
+
<td role="gridcell" title="2000年1月17日" class="ant-calendar-cell">
|
|
102
|
+
<div class="ant-calendar-date">17</div>
|
|
103
|
+
</td>
|
|
104
|
+
<td role="gridcell" title="2000年1月18日" class="ant-calendar-cell">
|
|
105
|
+
<div class="ant-calendar-date">18</div>
|
|
106
|
+
</td>
|
|
107
|
+
<td role="gridcell" title="2000年1月19日" class="ant-calendar-cell">
|
|
108
|
+
<div class="ant-calendar-date">19</div>
|
|
109
|
+
</td>
|
|
110
|
+
<td role="gridcell" title="2000年1月20日" class="ant-calendar-cell">
|
|
111
|
+
<div class="ant-calendar-date">20</div>
|
|
112
|
+
</td>
|
|
113
|
+
<td role="gridcell" title="2000年1月21日" class="ant-calendar-cell">
|
|
114
|
+
<div class="ant-calendar-date">21</div>
|
|
115
|
+
</td>
|
|
116
|
+
<td role="gridcell" title="2000年1月22日" class="ant-calendar-cell">
|
|
117
|
+
<div class="ant-calendar-date">22</div>
|
|
118
|
+
</td>
|
|
119
|
+
<td role="gridcell" title="2000年1月23日" class="ant-calendar-cell">
|
|
120
|
+
<div class="ant-calendar-date">23</div>
|
|
121
|
+
</td>
|
|
122
|
+
</tr>
|
|
123
|
+
<tr role="row" class="">
|
|
124
|
+
<td role="gridcell" title="2000年1月24日" class="ant-calendar-cell">
|
|
125
|
+
<div class="ant-calendar-date">24</div>
|
|
126
|
+
</td>
|
|
127
|
+
<td role="gridcell" title="2000年1月25日" class="ant-calendar-cell">
|
|
128
|
+
<div class="ant-calendar-date">25</div>
|
|
129
|
+
</td>
|
|
130
|
+
<td role="gridcell" title="2000年1月26日" class="ant-calendar-cell">
|
|
131
|
+
<div class="ant-calendar-date">26</div>
|
|
132
|
+
</td>
|
|
133
|
+
<td role="gridcell" title="2000年1月27日" class="ant-calendar-cell">
|
|
134
|
+
<div class="ant-calendar-date">27</div>
|
|
135
|
+
</td>
|
|
136
|
+
<td role="gridcell" title="2000年1月28日" class="ant-calendar-cell">
|
|
137
|
+
<div class="ant-calendar-date">28</div>
|
|
138
|
+
</td>
|
|
139
|
+
<td role="gridcell" title="2000年1月29日" class="ant-calendar-cell">
|
|
140
|
+
<div class="ant-calendar-date">29</div>
|
|
141
|
+
</td>
|
|
142
|
+
<td role="gridcell" title="2000年1月30日" class="ant-calendar-cell">
|
|
143
|
+
<div class="ant-calendar-date">30</div>
|
|
144
|
+
</td>
|
|
145
|
+
</tr>
|
|
146
|
+
<tr role="row" class="">
|
|
147
|
+
<td role="gridcell" title="2000年1月31日" class="ant-calendar-cell ant-calendar-last-day-of-month">
|
|
148
|
+
<div class="ant-calendar-date">31</div>
|
|
149
|
+
</td>
|
|
150
|
+
<td role="gridcell" title="2000年2月1日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
151
|
+
<div class="ant-calendar-date">1</div>
|
|
152
|
+
</td>
|
|
153
|
+
<td role="gridcell" title="2000年2月2日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
154
|
+
<div class="ant-calendar-date">2</div>
|
|
155
|
+
</td>
|
|
156
|
+
<td role="gridcell" title="2000年2月3日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
157
|
+
<div class="ant-calendar-date">3</div>
|
|
158
|
+
</td>
|
|
159
|
+
<td role="gridcell" title="2000年2月4日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
160
|
+
<div class="ant-calendar-date">4</div>
|
|
161
|
+
</td>
|
|
162
|
+
<td role="gridcell" title="2000年2月5日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
163
|
+
<div class="ant-calendar-date">5</div>
|
|
164
|
+
</td>
|
|
165
|
+
<td role="gridcell" title="2000年2月6日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
166
|
+
<div class="ant-calendar-date">6</div>
|
|
167
|
+
</td>
|
|
168
|
+
</tr>
|
|
169
|
+
</tbody>
|
|
170
|
+
</table>
|
|
171
|
+
</div>
|
|
172
|
+
</div>
|
|
173
|
+
</div><span class="ant-calendar-range-middle">~</span>
|
|
174
|
+
<div class="ant-calendar-range-part ant-calendar-range-right">
|
|
175
|
+
<div class="ant-calendar-input-wrap">
|
|
176
|
+
<div class="ant-calendar-date-input-wrap"><input placeholder="End date" class="ant-calendar-input "></div>
|
|
177
|
+
</div>
|
|
178
|
+
<div style="outline: none;">
|
|
179
|
+
<div class="ant-calendar-header">
|
|
180
|
+
<div style="position: relative;"><span class="ant-calendar-my-select"><a role="button" title="Choose a month" class="ant-calendar-month-select">2月</a><a role="button" title="Choose a year" class="ant-calendar-year-select">2000</a></span><a title="Next month (PageDown)" class="ant-calendar-next-month-btn"></a><a title="Next year (Control + right)" class="ant-calendar-next-year-btn"></a></div>
|
|
181
|
+
</div>
|
|
182
|
+
<div class="ant-calendar-body">
|
|
183
|
+
<table cellspacing="0" role="grid" class="ant-calendar-table">
|
|
184
|
+
<thead>
|
|
185
|
+
<tr role="row">
|
|
186
|
+
<th role="columnheader" title="周一" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">一</span></th>
|
|
187
|
+
<th role="columnheader" title="周二" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">二</span></th>
|
|
188
|
+
<th role="columnheader" title="周三" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">三</span></th>
|
|
189
|
+
<th role="columnheader" title="周四" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">四</span></th>
|
|
190
|
+
<th role="columnheader" title="周五" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">五</span></th>
|
|
191
|
+
<th role="columnheader" title="周六" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">六</span></th>
|
|
192
|
+
<th role="columnheader" title="周日" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">日</span></th>
|
|
193
|
+
</tr>
|
|
194
|
+
</thead>
|
|
195
|
+
<tbody class="ant-calendar-tbody">
|
|
196
|
+
<tr role="row" class="">
|
|
197
|
+
<td role="gridcell" title="2000年1月31日" class="ant-calendar-cell ant-calendar-last-month-cell ant-calendar-last-day-of-month">
|
|
198
|
+
<div class="ant-calendar-date">31</div>
|
|
199
|
+
</td>
|
|
200
|
+
<td role="gridcell" title="2000年2月1日" class="ant-calendar-cell">
|
|
201
|
+
<div class="ant-calendar-date">1</div>
|
|
202
|
+
</td>
|
|
203
|
+
<td role="gridcell" title="2000年2月2日" class="ant-calendar-cell">
|
|
204
|
+
<div class="ant-calendar-date">2</div>
|
|
205
|
+
</td>
|
|
206
|
+
<td role="gridcell" title="2000年2月3日" class="ant-calendar-cell">
|
|
207
|
+
<div class="ant-calendar-date">3</div>
|
|
208
|
+
</td>
|
|
209
|
+
<td role="gridcell" title="2000年2月4日" class="ant-calendar-cell">
|
|
210
|
+
<div class="ant-calendar-date">4</div>
|
|
211
|
+
</td>
|
|
212
|
+
<td role="gridcell" title="2000年2月5日" class="ant-calendar-cell">
|
|
213
|
+
<div class="ant-calendar-date">5</div>
|
|
214
|
+
</td>
|
|
215
|
+
<td role="gridcell" title="2000年2月6日" class="ant-calendar-cell">
|
|
216
|
+
<div class="ant-calendar-date">6</div>
|
|
217
|
+
</td>
|
|
218
|
+
</tr>
|
|
219
|
+
<tr role="row" class="">
|
|
220
|
+
<td role="gridcell" title="2000年2月7日" class="ant-calendar-cell">
|
|
221
|
+
<div class="ant-calendar-date">7</div>
|
|
222
|
+
</td>
|
|
223
|
+
<td role="gridcell" title="2000年2月8日" class="ant-calendar-cell">
|
|
224
|
+
<div class="ant-calendar-date">8</div>
|
|
225
|
+
</td>
|
|
226
|
+
<td role="gridcell" title="2000年2月9日" class="ant-calendar-cell">
|
|
227
|
+
<div class="ant-calendar-date">9</div>
|
|
228
|
+
</td>
|
|
229
|
+
<td role="gridcell" title="2000年2月10日" class="ant-calendar-cell">
|
|
230
|
+
<div class="ant-calendar-date">10</div>
|
|
231
|
+
</td>
|
|
232
|
+
<td role="gridcell" title="2000年2月11日" class="ant-calendar-cell">
|
|
233
|
+
<div class="ant-calendar-date">11</div>
|
|
234
|
+
</td>
|
|
235
|
+
<td role="gridcell" title="2000年2月12日" class="ant-calendar-cell">
|
|
236
|
+
<div class="ant-calendar-date">12</div>
|
|
237
|
+
</td>
|
|
238
|
+
<td role="gridcell" title="2000年2月13日" class="ant-calendar-cell">
|
|
239
|
+
<div class="ant-calendar-date">13</div>
|
|
240
|
+
</td>
|
|
241
|
+
</tr>
|
|
242
|
+
<tr role="row" class="">
|
|
243
|
+
<td role="gridcell" title="2000年2月14日" class="ant-calendar-cell">
|
|
244
|
+
<div class="ant-calendar-date">14</div>
|
|
245
|
+
</td>
|
|
246
|
+
<td role="gridcell" title="2000年2月15日" class="ant-calendar-cell">
|
|
247
|
+
<div class="ant-calendar-date">15</div>
|
|
248
|
+
</td>
|
|
249
|
+
<td role="gridcell" title="2000年2月16日" class="ant-calendar-cell">
|
|
250
|
+
<div class="ant-calendar-date">16</div>
|
|
251
|
+
</td>
|
|
252
|
+
<td role="gridcell" title="2000年2月17日" class="ant-calendar-cell">
|
|
253
|
+
<div class="ant-calendar-date">17</div>
|
|
254
|
+
</td>
|
|
255
|
+
<td role="gridcell" title="2000年2月18日" class="ant-calendar-cell">
|
|
256
|
+
<div class="ant-calendar-date">18</div>
|
|
257
|
+
</td>
|
|
258
|
+
<td role="gridcell" title="2000年2月19日" class="ant-calendar-cell">
|
|
259
|
+
<div class="ant-calendar-date">19</div>
|
|
260
|
+
</td>
|
|
261
|
+
<td role="gridcell" title="2000年2月20日" class="ant-calendar-cell">
|
|
262
|
+
<div class="ant-calendar-date">20</div>
|
|
263
|
+
</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr role="row" class="">
|
|
266
|
+
<td role="gridcell" title="2000年2月21日" class="ant-calendar-cell">
|
|
267
|
+
<div class="ant-calendar-date">21</div>
|
|
268
|
+
</td>
|
|
269
|
+
<td role="gridcell" title="2000年2月22日" class="ant-calendar-cell">
|
|
270
|
+
<div class="ant-calendar-date">22</div>
|
|
271
|
+
</td>
|
|
272
|
+
<td role="gridcell" title="2000年2月23日" class="ant-calendar-cell">
|
|
273
|
+
<div class="ant-calendar-date">23</div>
|
|
274
|
+
</td>
|
|
275
|
+
<td role="gridcell" title="2000年2月24日" class="ant-calendar-cell">
|
|
276
|
+
<div class="ant-calendar-date">24</div>
|
|
277
|
+
</td>
|
|
278
|
+
<td role="gridcell" title="2000年2月25日" class="ant-calendar-cell">
|
|
279
|
+
<div class="ant-calendar-date">25</div>
|
|
280
|
+
</td>
|
|
281
|
+
<td role="gridcell" title="2000年2月26日" class="ant-calendar-cell">
|
|
282
|
+
<div class="ant-calendar-date">26</div>
|
|
283
|
+
</td>
|
|
284
|
+
<td role="gridcell" title="2000年2月27日" class="ant-calendar-cell">
|
|
285
|
+
<div class="ant-calendar-date">27</div>
|
|
286
|
+
</td>
|
|
287
|
+
</tr>
|
|
288
|
+
<tr role="row" class="">
|
|
289
|
+
<td role="gridcell" title="2000年2月28日" class="ant-calendar-cell">
|
|
290
|
+
<div class="ant-calendar-date">28</div>
|
|
291
|
+
</td>
|
|
292
|
+
<td role="gridcell" title="2000年2月29日" class="ant-calendar-cell ant-calendar-last-day-of-month">
|
|
293
|
+
<div class="ant-calendar-date">29</div>
|
|
294
|
+
</td>
|
|
295
|
+
<td role="gridcell" title="2000年3月1日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
296
|
+
<div class="ant-calendar-date">1</div>
|
|
297
|
+
</td>
|
|
298
|
+
<td role="gridcell" title="2000年3月2日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
299
|
+
<div class="ant-calendar-date">2</div>
|
|
300
|
+
</td>
|
|
301
|
+
<td role="gridcell" title="2000年3月3日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
302
|
+
<div class="ant-calendar-date">3</div>
|
|
303
|
+
</td>
|
|
304
|
+
<td role="gridcell" title="2000年3月4日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
305
|
+
<div class="ant-calendar-date">4</div>
|
|
306
|
+
</td>
|
|
307
|
+
<td role="gridcell" title="2000年3月5日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
308
|
+
<div class="ant-calendar-date">5</div>
|
|
309
|
+
</td>
|
|
310
|
+
</tr>
|
|
311
|
+
<tr role="row" class="">
|
|
312
|
+
<td role="gridcell" title="2000年3月6日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
313
|
+
<div class="ant-calendar-date">6</div>
|
|
314
|
+
</td>
|
|
315
|
+
<td role="gridcell" title="2000年3月7日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
316
|
+
<div class="ant-calendar-date">7</div>
|
|
317
|
+
</td>
|
|
318
|
+
<td role="gridcell" title="2000年3月8日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
319
|
+
<div class="ant-calendar-date">8</div>
|
|
320
|
+
</td>
|
|
321
|
+
<td role="gridcell" title="2000年3月9日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
322
|
+
<div class="ant-calendar-date">9</div>
|
|
323
|
+
</td>
|
|
324
|
+
<td role="gridcell" title="2000年3月10日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
325
|
+
<div class="ant-calendar-date">10</div>
|
|
326
|
+
</td>
|
|
327
|
+
<td role="gridcell" title="2000年3月11日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
328
|
+
<div class="ant-calendar-date">11</div>
|
|
329
|
+
</td>
|
|
330
|
+
<td role="gridcell" title="2000年3月12日" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
331
|
+
<div class="ant-calendar-date">12</div>
|
|
332
|
+
</td>
|
|
333
|
+
</tr>
|
|
334
|
+
</tbody>
|
|
335
|
+
</table>
|
|
336
|
+
</div>
|
|
337
|
+
</div>
|
|
338
|
+
</div>
|
|
339
|
+
</div>
|
|
340
|
+
<div class="ant-calendar-footer ant-calendar-range-bottom ant-calendar-footer-show-ok">
|
|
341
|
+
<div class="ant-calendar-footer-btn"><a role="button" class="ant-calendar-time-picker-btn">select time</a><a role="button" class="ant-calendar-ok-btn">Ok</a></div>
|
|
342
|
+
</div>
|
|
343
|
+
</div>
|
|
344
|
+
</div>
|
|
345
|
+
</div>
|
|
346
|
+
</div>
|
|
347
|
+
`;
|
|
348
|
+
|
|
349
|
+
exports[`RangePicker switch to corresponding month panel when click presetted ranges 1`] = `
|
|
350
|
+
<div>
|
|
351
|
+
<div class="ant-calendar-picker-container ant-calendar-picker-container-placement-bottomLeft" style="left: -999px; top: -1002px;">
|
|
352
|
+
<div tabindex="0" class="ant-calendar ant-calendar-range ant-calendar-time ant-calendar-range-with-ranges ant-calendar-picker-container-content">
|
|
353
|
+
<div class="ant-calendar-panel">
|
|
354
|
+
<div class="ant-calendar-date-panel">
|
|
355
|
+
<div class="ant-calendar-range-part ant-calendar-range-left">
|
|
356
|
+
<div class="ant-calendar-input-wrap">
|
|
357
|
+
<div class="ant-calendar-date-input-wrap"><input placeholder="Start date" class="ant-calendar-input "></div>
|
|
358
|
+
</div>
|
|
359
|
+
<div style="outline: none;">
|
|
360
|
+
<div class="ant-calendar-header">
|
|
361
|
+
<div style="position: relative;"><a role="button" title="Last year (Control + left)" class="ant-calendar-prev-year-btn"></a><a role="button" title="Previous month (PageUp)" class="ant-calendar-prev-month-btn"></a><span class="ant-calendar-my-select"><a role="button" title="Choose a month" class="ant-calendar-month-select">Sep</a><a role="button" title="Choose a year" class="ant-calendar-year-select">2017</a></span></div>
|
|
362
|
+
</div>
|
|
363
|
+
<div class="ant-calendar-body">
|
|
364
|
+
<table cellspacing="0" role="grid" class="ant-calendar-table">
|
|
365
|
+
<thead>
|
|
366
|
+
<tr role="row">
|
|
367
|
+
<th role="columnheader" title="Sun" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Su</span></th>
|
|
368
|
+
<th role="columnheader" title="Mon" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Mo</span></th>
|
|
369
|
+
<th role="columnheader" title="Tue" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Tu</span></th>
|
|
370
|
+
<th role="columnheader" title="Wed" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">We</span></th>
|
|
371
|
+
<th role="columnheader" title="Thu" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Th</span></th>
|
|
372
|
+
<th role="columnheader" title="Fri" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Fr</span></th>
|
|
373
|
+
<th role="columnheader" title="Sat" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Sa</span></th>
|
|
374
|
+
</tr>
|
|
375
|
+
</thead>
|
|
376
|
+
<tbody class="ant-calendar-tbody">
|
|
377
|
+
<tr role="row" class="">
|
|
378
|
+
<td role="gridcell" title="August 27, 2017" class="ant-calendar-cell ant-calendar-last-month-cell">
|
|
379
|
+
<div class="ant-calendar-date">27</div>
|
|
380
|
+
</td>
|
|
381
|
+
<td role="gridcell" title="August 28, 2017" class="ant-calendar-cell ant-calendar-last-month-cell">
|
|
382
|
+
<div class="ant-calendar-date">28</div>
|
|
383
|
+
</td>
|
|
384
|
+
<td role="gridcell" title="August 29, 2017" class="ant-calendar-cell ant-calendar-last-month-cell">
|
|
385
|
+
<div class="ant-calendar-date">29</div>
|
|
386
|
+
</td>
|
|
387
|
+
<td role="gridcell" title="August 30, 2017" class="ant-calendar-cell ant-calendar-last-month-cell">
|
|
388
|
+
<div class="ant-calendar-date">30</div>
|
|
389
|
+
</td>
|
|
390
|
+
<td role="gridcell" title="August 31, 2017" class="ant-calendar-cell ant-calendar-last-month-cell ant-calendar-last-day-of-month">
|
|
391
|
+
<div class="ant-calendar-date">31</div>
|
|
392
|
+
</td>
|
|
393
|
+
<td role="gridcell" title="September 1, 2017" class="ant-calendar-cell">
|
|
394
|
+
<div class="ant-calendar-date">1</div>
|
|
395
|
+
</td>
|
|
396
|
+
<td role="gridcell" title="September 2, 2017" class="ant-calendar-cell">
|
|
397
|
+
<div class="ant-calendar-date">2</div>
|
|
398
|
+
</td>
|
|
399
|
+
</tr>
|
|
400
|
+
<tr role="row" class="">
|
|
401
|
+
<td role="gridcell" title="September 3, 2017" class="ant-calendar-cell">
|
|
402
|
+
<div class="ant-calendar-date">3</div>
|
|
403
|
+
</td>
|
|
404
|
+
<td role="gridcell" title="September 4, 2017" class="ant-calendar-cell">
|
|
405
|
+
<div class="ant-calendar-date">4</div>
|
|
406
|
+
</td>
|
|
407
|
+
<td role="gridcell" title="September 5, 2017" class="ant-calendar-cell">
|
|
408
|
+
<div class="ant-calendar-date">5</div>
|
|
409
|
+
</td>
|
|
410
|
+
<td role="gridcell" title="September 6, 2017" class="ant-calendar-cell">
|
|
411
|
+
<div class="ant-calendar-date">6</div>
|
|
412
|
+
</td>
|
|
413
|
+
<td role="gridcell" title="September 7, 2017" class="ant-calendar-cell">
|
|
414
|
+
<div class="ant-calendar-date">7</div>
|
|
415
|
+
</td>
|
|
416
|
+
<td role="gridcell" title="September 8, 2017" class="ant-calendar-cell">
|
|
417
|
+
<div class="ant-calendar-date">8</div>
|
|
418
|
+
</td>
|
|
419
|
+
<td role="gridcell" title="September 9, 2017" class="ant-calendar-cell">
|
|
420
|
+
<div class="ant-calendar-date">9</div>
|
|
421
|
+
</td>
|
|
422
|
+
</tr>
|
|
423
|
+
<tr role="row" class="">
|
|
424
|
+
<td role="gridcell" title="September 10, 2017" class="ant-calendar-cell">
|
|
425
|
+
<div class="ant-calendar-date">10</div>
|
|
426
|
+
</td>
|
|
427
|
+
<td role="gridcell" title="September 11, 2017" class="ant-calendar-cell">
|
|
428
|
+
<div class="ant-calendar-date">11</div>
|
|
429
|
+
</td>
|
|
430
|
+
<td role="gridcell" title="September 12, 2017" class="ant-calendar-cell">
|
|
431
|
+
<div class="ant-calendar-date">12</div>
|
|
432
|
+
</td>
|
|
433
|
+
<td role="gridcell" title="September 13, 2017" class="ant-calendar-cell">
|
|
434
|
+
<div class="ant-calendar-date">13</div>
|
|
435
|
+
</td>
|
|
436
|
+
<td role="gridcell" title="September 14, 2017" class="ant-calendar-cell">
|
|
437
|
+
<div class="ant-calendar-date">14</div>
|
|
438
|
+
</td>
|
|
439
|
+
<td role="gridcell" title="September 15, 2017" class="ant-calendar-cell">
|
|
440
|
+
<div class="ant-calendar-date">15</div>
|
|
441
|
+
</td>
|
|
442
|
+
<td role="gridcell" title="September 16, 2017" class="ant-calendar-cell">
|
|
443
|
+
<div class="ant-calendar-date">16</div>
|
|
444
|
+
</td>
|
|
445
|
+
</tr>
|
|
446
|
+
<tr role="row" class="ant-calendar-current-week">
|
|
447
|
+
<td role="gridcell" title="September 17, 2017" class="ant-calendar-cell">
|
|
448
|
+
<div class="ant-calendar-date">17</div>
|
|
449
|
+
</td>
|
|
450
|
+
<td role="gridcell" title="September 18, 2017" class="ant-calendar-cell ant-calendar-today ant-calendar-selected-date">
|
|
451
|
+
<div class="ant-calendar-date">18</div>
|
|
452
|
+
</td>
|
|
453
|
+
<td role="gridcell" title="September 19, 2017" class="ant-calendar-cell">
|
|
454
|
+
<div class="ant-calendar-date">19</div>
|
|
455
|
+
</td>
|
|
456
|
+
<td role="gridcell" title="September 20, 2017" class="ant-calendar-cell">
|
|
457
|
+
<div class="ant-calendar-date">20</div>
|
|
458
|
+
</td>
|
|
459
|
+
<td role="gridcell" title="September 21, 2017" class="ant-calendar-cell">
|
|
460
|
+
<div class="ant-calendar-date">21</div>
|
|
461
|
+
</td>
|
|
462
|
+
<td role="gridcell" title="September 22, 2017" class="ant-calendar-cell">
|
|
463
|
+
<div class="ant-calendar-date">22</div>
|
|
464
|
+
</td>
|
|
465
|
+
<td role="gridcell" title="September 23, 2017" class="ant-calendar-cell">
|
|
466
|
+
<div class="ant-calendar-date">23</div>
|
|
467
|
+
</td>
|
|
468
|
+
</tr>
|
|
469
|
+
<tr role="row" class="">
|
|
470
|
+
<td role="gridcell" title="September 24, 2017" class="ant-calendar-cell">
|
|
471
|
+
<div class="ant-calendar-date">24</div>
|
|
472
|
+
</td>
|
|
473
|
+
<td role="gridcell" title="September 25, 2017" class="ant-calendar-cell">
|
|
474
|
+
<div class="ant-calendar-date">25</div>
|
|
475
|
+
</td>
|
|
476
|
+
<td role="gridcell" title="September 26, 2017" class="ant-calendar-cell">
|
|
477
|
+
<div class="ant-calendar-date">26</div>
|
|
478
|
+
</td>
|
|
479
|
+
<td role="gridcell" title="September 27, 2017" class="ant-calendar-cell">
|
|
480
|
+
<div class="ant-calendar-date">27</div>
|
|
481
|
+
</td>
|
|
482
|
+
<td role="gridcell" title="September 28, 2017" class="ant-calendar-cell">
|
|
483
|
+
<div class="ant-calendar-date">28</div>
|
|
484
|
+
</td>
|
|
485
|
+
<td role="gridcell" title="September 29, 2017" class="ant-calendar-cell">
|
|
486
|
+
<div class="ant-calendar-date">29</div>
|
|
487
|
+
</td>
|
|
488
|
+
<td role="gridcell" title="September 30, 2017" class="ant-calendar-cell ant-calendar-last-day-of-month">
|
|
489
|
+
<div class="ant-calendar-date">30</div>
|
|
490
|
+
</td>
|
|
491
|
+
</tr>
|
|
492
|
+
<tr role="row" class="">
|
|
493
|
+
<td role="gridcell" title="October 1, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
494
|
+
<div class="ant-calendar-date">1</div>
|
|
495
|
+
</td>
|
|
496
|
+
<td role="gridcell" title="October 2, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
497
|
+
<div class="ant-calendar-date">2</div>
|
|
498
|
+
</td>
|
|
499
|
+
<td role="gridcell" title="October 3, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
500
|
+
<div class="ant-calendar-date">3</div>
|
|
501
|
+
</td>
|
|
502
|
+
<td role="gridcell" title="October 4, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
503
|
+
<div class="ant-calendar-date">4</div>
|
|
504
|
+
</td>
|
|
505
|
+
<td role="gridcell" title="October 5, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
506
|
+
<div class="ant-calendar-date">5</div>
|
|
507
|
+
</td>
|
|
508
|
+
<td role="gridcell" title="October 6, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
509
|
+
<div class="ant-calendar-date">6</div>
|
|
510
|
+
</td>
|
|
511
|
+
<td role="gridcell" title="October 7, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
512
|
+
<div class="ant-calendar-date">7</div>
|
|
513
|
+
</td>
|
|
514
|
+
</tr>
|
|
515
|
+
</tbody>
|
|
516
|
+
</table>
|
|
517
|
+
</div>
|
|
518
|
+
</div>
|
|
519
|
+
</div><span class="ant-calendar-range-middle">~</span>
|
|
520
|
+
<div class="ant-calendar-range-part ant-calendar-range-right">
|
|
521
|
+
<div class="ant-calendar-input-wrap">
|
|
522
|
+
<div class="ant-calendar-date-input-wrap"><input placeholder="End date" class="ant-calendar-input "></div>
|
|
523
|
+
</div>
|
|
524
|
+
<div style="outline: none;">
|
|
525
|
+
<div class="ant-calendar-header">
|
|
526
|
+
<div style="position: relative;"><span class="ant-calendar-my-select"><a role="button" title="Choose a month" class="ant-calendar-month-select">Oct</a><a role="button" title="Choose a year" class="ant-calendar-year-select">2017</a></span><a title="Next month (PageDown)" class="ant-calendar-next-month-btn"></a><a title="Next year (Control + right)" class="ant-calendar-next-year-btn"></a></div>
|
|
527
|
+
</div>
|
|
528
|
+
<div class="ant-calendar-body">
|
|
529
|
+
<table cellspacing="0" role="grid" class="ant-calendar-table">
|
|
530
|
+
<thead>
|
|
531
|
+
<tr role="row">
|
|
532
|
+
<th role="columnheader" title="Sun" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Su</span></th>
|
|
533
|
+
<th role="columnheader" title="Mon" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Mo</span></th>
|
|
534
|
+
<th role="columnheader" title="Tue" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Tu</span></th>
|
|
535
|
+
<th role="columnheader" title="Wed" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">We</span></th>
|
|
536
|
+
<th role="columnheader" title="Thu" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Th</span></th>
|
|
537
|
+
<th role="columnheader" title="Fri" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Fr</span></th>
|
|
538
|
+
<th role="columnheader" title="Sat" class="ant-calendar-column-header"><span class="ant-calendar-column-header-inner">Sa</span></th>
|
|
539
|
+
</tr>
|
|
540
|
+
</thead>
|
|
541
|
+
<tbody class="ant-calendar-tbody">
|
|
542
|
+
<tr role="row" class="">
|
|
543
|
+
<td role="gridcell" title="October 1, 2017" class="ant-calendar-cell">
|
|
544
|
+
<div class="ant-calendar-date">1</div>
|
|
545
|
+
</td>
|
|
546
|
+
<td role="gridcell" title="October 2, 2017" class="ant-calendar-cell">
|
|
547
|
+
<div class="ant-calendar-date">2</div>
|
|
548
|
+
</td>
|
|
549
|
+
<td role="gridcell" title="October 3, 2017" class="ant-calendar-cell">
|
|
550
|
+
<div class="ant-calendar-date">3</div>
|
|
551
|
+
</td>
|
|
552
|
+
<td role="gridcell" title="October 4, 2017" class="ant-calendar-cell">
|
|
553
|
+
<div class="ant-calendar-date">4</div>
|
|
554
|
+
</td>
|
|
555
|
+
<td role="gridcell" title="October 5, 2017" class="ant-calendar-cell">
|
|
556
|
+
<div class="ant-calendar-date">5</div>
|
|
557
|
+
</td>
|
|
558
|
+
<td role="gridcell" title="October 6, 2017" class="ant-calendar-cell">
|
|
559
|
+
<div class="ant-calendar-date">6</div>
|
|
560
|
+
</td>
|
|
561
|
+
<td role="gridcell" title="October 7, 2017" class="ant-calendar-cell">
|
|
562
|
+
<div class="ant-calendar-date">7</div>
|
|
563
|
+
</td>
|
|
564
|
+
</tr>
|
|
565
|
+
<tr role="row" class="">
|
|
566
|
+
<td role="gridcell" title="October 8, 2017" class="ant-calendar-cell">
|
|
567
|
+
<div class="ant-calendar-date">8</div>
|
|
568
|
+
</td>
|
|
569
|
+
<td role="gridcell" title="October 9, 2017" class="ant-calendar-cell">
|
|
570
|
+
<div class="ant-calendar-date">9</div>
|
|
571
|
+
</td>
|
|
572
|
+
<td role="gridcell" title="October 10, 2017" class="ant-calendar-cell">
|
|
573
|
+
<div class="ant-calendar-date">10</div>
|
|
574
|
+
</td>
|
|
575
|
+
<td role="gridcell" title="October 11, 2017" class="ant-calendar-cell">
|
|
576
|
+
<div class="ant-calendar-date">11</div>
|
|
577
|
+
</td>
|
|
578
|
+
<td role="gridcell" title="October 12, 2017" class="ant-calendar-cell">
|
|
579
|
+
<div class="ant-calendar-date">12</div>
|
|
580
|
+
</td>
|
|
581
|
+
<td role="gridcell" title="October 13, 2017" class="ant-calendar-cell">
|
|
582
|
+
<div class="ant-calendar-date">13</div>
|
|
583
|
+
</td>
|
|
584
|
+
<td role="gridcell" title="October 14, 2017" class="ant-calendar-cell">
|
|
585
|
+
<div class="ant-calendar-date">14</div>
|
|
586
|
+
</td>
|
|
587
|
+
</tr>
|
|
588
|
+
<tr role="row" class="">
|
|
589
|
+
<td role="gridcell" title="October 15, 2017" class="ant-calendar-cell">
|
|
590
|
+
<div class="ant-calendar-date">15</div>
|
|
591
|
+
</td>
|
|
592
|
+
<td role="gridcell" title="October 16, 2017" class="ant-calendar-cell">
|
|
593
|
+
<div class="ant-calendar-date">16</div>
|
|
594
|
+
</td>
|
|
595
|
+
<td role="gridcell" title="October 17, 2017" class="ant-calendar-cell">
|
|
596
|
+
<div class="ant-calendar-date">17</div>
|
|
597
|
+
</td>
|
|
598
|
+
<td role="gridcell" title="October 18, 2017" class="ant-calendar-cell">
|
|
599
|
+
<div class="ant-calendar-date">18</div>
|
|
600
|
+
</td>
|
|
601
|
+
<td role="gridcell" title="October 19, 2017" class="ant-calendar-cell">
|
|
602
|
+
<div class="ant-calendar-date">19</div>
|
|
603
|
+
</td>
|
|
604
|
+
<td role="gridcell" title="October 20, 2017" class="ant-calendar-cell">
|
|
605
|
+
<div class="ant-calendar-date">20</div>
|
|
606
|
+
</td>
|
|
607
|
+
<td role="gridcell" title="October 21, 2017" class="ant-calendar-cell">
|
|
608
|
+
<div class="ant-calendar-date">21</div>
|
|
609
|
+
</td>
|
|
610
|
+
</tr>
|
|
611
|
+
<tr role="row" class="">
|
|
612
|
+
<td role="gridcell" title="October 22, 2017" class="ant-calendar-cell">
|
|
613
|
+
<div class="ant-calendar-date">22</div>
|
|
614
|
+
</td>
|
|
615
|
+
<td role="gridcell" title="October 23, 2017" class="ant-calendar-cell">
|
|
616
|
+
<div class="ant-calendar-date">23</div>
|
|
617
|
+
</td>
|
|
618
|
+
<td role="gridcell" title="October 24, 2017" class="ant-calendar-cell">
|
|
619
|
+
<div class="ant-calendar-date">24</div>
|
|
620
|
+
</td>
|
|
621
|
+
<td role="gridcell" title="October 25, 2017" class="ant-calendar-cell">
|
|
622
|
+
<div class="ant-calendar-date">25</div>
|
|
623
|
+
</td>
|
|
624
|
+
<td role="gridcell" title="October 26, 2017" class="ant-calendar-cell">
|
|
625
|
+
<div class="ant-calendar-date">26</div>
|
|
626
|
+
</td>
|
|
627
|
+
<td role="gridcell" title="October 27, 2017" class="ant-calendar-cell">
|
|
628
|
+
<div class="ant-calendar-date">27</div>
|
|
629
|
+
</td>
|
|
630
|
+
<td role="gridcell" title="October 28, 2017" class="ant-calendar-cell">
|
|
631
|
+
<div class="ant-calendar-date">28</div>
|
|
632
|
+
</td>
|
|
633
|
+
</tr>
|
|
634
|
+
<tr role="row" class="">
|
|
635
|
+
<td role="gridcell" title="October 29, 2017" class="ant-calendar-cell">
|
|
636
|
+
<div class="ant-calendar-date">29</div>
|
|
637
|
+
</td>
|
|
638
|
+
<td role="gridcell" title="October 30, 2017" class="ant-calendar-cell">
|
|
639
|
+
<div class="ant-calendar-date">30</div>
|
|
640
|
+
</td>
|
|
641
|
+
<td role="gridcell" title="October 31, 2017" class="ant-calendar-cell ant-calendar-last-day-of-month">
|
|
642
|
+
<div class="ant-calendar-date">31</div>
|
|
643
|
+
</td>
|
|
644
|
+
<td role="gridcell" title="November 1, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
645
|
+
<div class="ant-calendar-date">1</div>
|
|
646
|
+
</td>
|
|
647
|
+
<td role="gridcell" title="November 2, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
648
|
+
<div class="ant-calendar-date">2</div>
|
|
649
|
+
</td>
|
|
650
|
+
<td role="gridcell" title="November 3, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
651
|
+
<div class="ant-calendar-date">3</div>
|
|
652
|
+
</td>
|
|
653
|
+
<td role="gridcell" title="November 4, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
654
|
+
<div class="ant-calendar-date">4</div>
|
|
655
|
+
</td>
|
|
656
|
+
</tr>
|
|
657
|
+
<tr role="row" class="">
|
|
658
|
+
<td role="gridcell" title="November 5, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
659
|
+
<div class="ant-calendar-date">5</div>
|
|
660
|
+
</td>
|
|
661
|
+
<td role="gridcell" title="November 6, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
662
|
+
<div class="ant-calendar-date">6</div>
|
|
663
|
+
</td>
|
|
664
|
+
<td role="gridcell" title="November 7, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
665
|
+
<div class="ant-calendar-date">7</div>
|
|
666
|
+
</td>
|
|
667
|
+
<td role="gridcell" title="November 8, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
668
|
+
<div class="ant-calendar-date">8</div>
|
|
669
|
+
</td>
|
|
670
|
+
<td role="gridcell" title="November 9, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
671
|
+
<div class="ant-calendar-date">9</div>
|
|
672
|
+
</td>
|
|
673
|
+
<td role="gridcell" title="November 10, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
674
|
+
<div class="ant-calendar-date">10</div>
|
|
675
|
+
</td>
|
|
676
|
+
<td role="gridcell" title="November 11, 2017" class="ant-calendar-cell ant-calendar-next-month-btn-day">
|
|
677
|
+
<div class="ant-calendar-date">11</div>
|
|
678
|
+
</td>
|
|
679
|
+
</tr>
|
|
680
|
+
</tbody>
|
|
681
|
+
</table>
|
|
682
|
+
</div>
|
|
683
|
+
</div>
|
|
684
|
+
</div>
|
|
685
|
+
</div>
|
|
686
|
+
<div class="ant-calendar-footer ant-calendar-range-bottom ant-calendar-footer-show-ok">
|
|
687
|
+
<div class="ant-calendar-footer-btn">
|
|
688
|
+
<div class="ant-calendar-footer-extra ant-calendar-range-quick-selector"><span class="ant-tag ant-tag-blue">My Birthday</span></div><a role="button" class="ant-calendar-time-picker-btn ant-calendar-time-picker-btn-disabled">select time</a><a role="button" class="ant-calendar-ok-btn ant-calendar-ok-btn-disabled">Ok</a>
|
|
689
|
+
</div>
|
|
690
|
+
</div>
|
|
691
|
+
</div>
|
|
692
|
+
</div>
|
|
693
|
+
</div>
|
|
694
|
+
</div>
|
|
695
|
+
`;
|