@varlet/ui 3.5.1 → 3.5.2
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/es/action-sheet/ActionItem.mjs +79 -0
- package/es/action-sheet/ActionItemSfc.css +0 -0
- package/es/action-sheet/ActionSheet.mjs +122 -0
- package/es/action-sheet/ActionSheetSfc.css +0 -0
- package/es/action-sheet/actionSheet.css +1 -0
- package/es/action-sheet/index.mjs +86 -0
- package/es/action-sheet/props.mjs +52 -0
- package/es/action-sheet/style/index.mjs +7 -0
- package/es/app-bar/AppBar.mjs +197 -0
- package/es/app-bar/AppBarSfc.css +0 -0
- package/es/app-bar/appBar.css +1 -0
- package/es/app-bar/index.mjs +12 -0
- package/es/app-bar/props.mjs +27 -0
- package/es/app-bar/style/index.mjs +4 -0
- package/es/auto-complete/AutoComplete.mjs +360 -0
- package/es/auto-complete/AutoCompleteSfc.css +0 -0
- package/es/auto-complete/autoComplete.css +1 -0
- package/es/auto-complete/index.mjs +11 -0
- package/es/auto-complete/props.mjs +63 -0
- package/es/auto-complete/provide.mjs +0 -0
- package/es/auto-complete/style/index.mjs +11 -0
- package/es/avatar/Avatar.mjs +143 -0
- package/es/avatar/AvatarSfc.css +0 -0
- package/es/avatar/avatar.css +1 -0
- package/es/avatar/index.mjs +12 -0
- package/es/avatar/props.mjs +30 -0
- package/es/avatar/style/index.mjs +3 -0
- package/es/avatar-group/AvatarGroup.mjs +44 -0
- package/es/avatar-group/AvatarGroupSfc.css +0 -0
- package/es/avatar-group/avatarGroup.css +1 -0
- package/es/avatar-group/index.mjs +12 -0
- package/es/avatar-group/props.mjs +7 -0
- package/es/avatar-group/style/index.mjs +3 -0
- package/es/back-top/BackTop.mjs +114 -0
- package/es/back-top/BackTopSfc.css +0 -0
- package/es/back-top/backTop.css +1 -0
- package/es/back-top/index.mjs +12 -0
- package/es/back-top/props.mjs +22 -0
- package/es/back-top/style/index.mjs +5 -0
- package/es/badge/Badge.mjs +110 -0
- package/es/badge/BadgeSfc.css +0 -0
- package/es/badge/badge.css +1 -0
- package/es/badge/index.mjs +12 -0
- package/es/badge/props.mjs +33 -0
- package/es/badge/style/index.mjs +4 -0
- package/es/bottom-navigation/BottomNavigation.mjs +228 -0
- package/es/bottom-navigation/BottomNavigationSfc.css +0 -0
- package/es/bottom-navigation/bottomNavigation.css +1 -0
- package/es/bottom-navigation/index.mjs +12 -0
- package/es/bottom-navigation/props.mjs +26 -0
- package/es/bottom-navigation/provide.mjs +18 -0
- package/es/bottom-navigation/style/index.mjs +7 -0
- package/es/bottom-navigation-item/BottomNavigationItem.mjs +139 -0
- package/es/bottom-navigation-item/BottomNavigationItemSfc.css +0 -0
- package/es/bottom-navigation-item/bottomNavigationItem.css +1 -0
- package/es/bottom-navigation-item/index.mjs +12 -0
- package/es/bottom-navigation-item/props.mjs +16 -0
- package/es/bottom-navigation-item/provide.mjs +21 -0
- package/es/bottom-navigation-item/style/index.mjs +6 -0
- package/es/breadcrumb/Breadcrumb.mjs +74 -0
- package/es/breadcrumb/BreadcrumbSfc.css +0 -0
- package/es/breadcrumb/breadcrumb.css +1 -0
- package/es/breadcrumb/index.mjs +12 -0
- package/es/breadcrumb/props.mjs +8 -0
- package/es/breadcrumb/provide.mjs +19 -0
- package/es/breadcrumb/style/index.mjs +3 -0
- package/es/breadcrumbs/Breadcrumbs.mjs +40 -0
- package/es/breadcrumbs/BreadcrumbsSfc.css +0 -0
- package/es/breadcrumbs/breadcrumbs.css +1 -0
- package/es/breadcrumbs/index.mjs +12 -0
- package/es/breadcrumbs/props.mjs +9 -0
- package/es/breadcrumbs/provide.mjs +16 -0
- package/es/breadcrumbs/style/index.mjs +3 -0
- package/es/button/Button.mjs +164 -0
- package/es/button/ButtonSfc.css +0 -0
- package/es/button/button.css +1 -0
- package/es/button/index.mjs +12 -0
- package/es/button/props.mjs +64 -0
- package/es/button/provide.mjs +13 -0
- package/es/button/style/index.mjs +7 -0
- package/es/button-group/ButtonGroup.mjs +53 -0
- package/es/button-group/ButtonGroupSfc.css +0 -0
- package/es/button-group/buttonGroup.css +1 -0
- package/es/button-group/index.mjs +12 -0
- package/es/button-group/props.mjs +24 -0
- package/es/button-group/provide.mjs +14 -0
- package/es/button-group/style/index.mjs +4 -0
- package/es/card/Card.mjs +368 -0
- package/es/card/CardSfc.css +0 -0
- package/es/card/card.css +1 -0
- package/es/card/index.mjs +12 -0
- package/es/card/props.mjs +34 -0
- package/es/card/style/index.mjs +7 -0
- package/es/cell/Cell.mjs +122 -0
- package/es/cell/CellSfc.css +0 -0
- package/es/cell/cell.css +1 -0
- package/es/cell/index.mjs +12 -0
- package/es/cell/props.mjs +19 -0
- package/es/cell/style/index.mjs +5 -0
- package/es/checkbox/Checkbox.mjs +254 -0
- package/es/checkbox/CheckboxSfc.css +0 -0
- package/es/checkbox/checkbox.css +1 -0
- package/es/checkbox/index.mjs +12 -0
- package/es/checkbox/props.mjs +37 -0
- package/es/checkbox/provide.mjs +15 -0
- package/es/checkbox/style/index.mjs +7 -0
- package/es/checkbox-group/CheckboxGroup.mjs +158 -0
- package/es/checkbox-group/CheckboxGroupSfc.css +0 -0
- package/es/checkbox-group/checkboxGroup.css +1 -0
- package/es/checkbox-group/index.mjs +12 -0
- package/es/checkbox-group/props.mjs +34 -0
- package/es/checkbox-group/provide.mjs +16 -0
- package/es/checkbox-group/style/index.mjs +8 -0
- package/es/chip/Chip.mjs +104 -0
- package/es/chip/ChipSfc.css +0 -0
- package/es/chip/chip.css +1 -0
- package/es/chip/index.mjs +12 -0
- package/es/chip/props.mjs +31 -0
- package/es/chip/style/index.mjs +5 -0
- package/es/col/Col.mjs +98 -0
- package/es/col/ColSfc.css +0 -0
- package/es/col/col.css +1 -0
- package/es/col/index.mjs +12 -0
- package/es/col/props.mjs +26 -0
- package/es/col/provide.mjs +13 -0
- package/es/col/style/index.mjs +3 -0
- package/es/collapse/Collapse.mjs +117 -0
- package/es/collapse/CollapseSfc.css +1 -0
- package/es/collapse/index.mjs +12 -0
- package/es/collapse/props.mjs +22 -0
- package/es/collapse/provide.mjs +16 -0
- package/es/collapse/style/index.mjs +3 -0
- package/es/collapse-item/CollapseItem.mjs +165 -0
- package/es/collapse-item/CollapseItemSfc.css +0 -0
- package/es/collapse-item/collapseItem.css +1 -0
- package/es/collapse-item/index.mjs +12 -0
- package/es/collapse-item/props.mjs +12 -0
- package/es/collapse-item/provide.mjs +19 -0
- package/es/collapse-item/style/index.mjs +4 -0
- package/es/collapse-transition/CollapseTransition.mjs +50 -0
- package/es/collapse-transition/CollapseTransitionSfc.css +0 -0
- package/es/collapse-transition/collapseTransition.css +1 -0
- package/es/collapse-transition/index.mjs +12 -0
- package/es/collapse-transition/props.mjs +6 -0
- package/es/collapse-transition/style/index.mjs +3 -0
- package/es/collapse-transition/useCollapseTransition.mjs +87 -0
- package/es/context/index.mjs +12 -0
- package/es/context/lock.mjs +76 -0
- package/es/context/stack.mjs +46 -0
- package/es/context/style/index.mjs +0 -0
- package/es/context/zIndex.mjs +19 -0
- package/es/countdown/Countdown.mjs +168 -0
- package/es/countdown/CountdownSfc.css +0 -0
- package/es/countdown/countdown.css +1 -0
- package/es/countdown/index.mjs +12 -0
- package/es/countdown/props.mjs +20 -0
- package/es/countdown/style/index.mjs +3 -0
- package/es/counter/Counter.mjs +332 -0
- package/es/counter/CounterSfc.css +0 -0
- package/es/counter/counter.css +1 -0
- package/es/counter/index.mjs +12 -0
- package/es/counter/props.mjs +57 -0
- package/es/counter/provide.mjs +0 -0
- package/es/counter/style/index.mjs +9 -0
- package/es/date-picker/DatePicker.mjs +658 -0
- package/es/date-picker/DatePickerSfc.css +0 -0
- package/es/date-picker/date-picker.css +1 -0
- package/es/date-picker/index.mjs +12 -0
- package/es/date-picker/props.mjs +47 -0
- package/es/date-picker/src/day-picker-panel.mjs +353 -0
- package/es/date-picker/src/month-picker-panel.mjs +266 -0
- package/es/date-picker/src/panel-header.mjs +136 -0
- package/es/date-picker/src/year-picker-panel.mjs +279 -0
- package/es/date-picker/style/index.mjs +8 -0
- package/es/dialog/Dialog.mjs +254 -0
- package/es/dialog/DialogSfc.css +0 -0
- package/es/dialog/dialog.css +1 -0
- package/es/dialog/index.mjs +97 -0
- package/es/dialog/props.mjs +67 -0
- package/es/dialog/style/index.mjs +5 -0
- package/es/divider/Divider.mjs +86 -0
- package/es/divider/DividerSfc.css +0 -0
- package/es/divider/divider.css +1 -0
- package/es/divider/index.mjs +12 -0
- package/es/divider/props.mjs +14 -0
- package/es/divider/style/index.mjs +3 -0
- package/es/drag/Drag.mjs +261 -0
- package/es/drag/DragSfc.css +0 -0
- package/es/drag/drag.css +1 -0
- package/es/drag/index.mjs +12 -0
- package/es/drag/props.mjs +30 -0
- package/es/drag/style/index.mjs +3 -0
- package/es/ellipsis/Ellipsis.mjs +109 -0
- package/es/ellipsis/EllipsisSfc.css +0 -0
- package/es/ellipsis/ellipsis.css +1 -0
- package/es/ellipsis/index.mjs +12 -0
- package/es/ellipsis/props.mjs +14 -0
- package/es/ellipsis/style/index.mjs +4 -0
- package/es/fab/Fab.mjs +153 -0
- package/es/fab/fab.css +1 -0
- package/es/fab/index.mjs +12 -0
- package/es/fab/props.mjs +73 -0
- package/es/fab/style/index.mjs +8 -0
- package/es/field-decorator/FieldDecorator.mjs +318 -0
- package/es/field-decorator/FieldDecoratorSfc.css +0 -0
- package/es/field-decorator/fieldDecorator.css +1 -0
- package/es/field-decorator/index.mjs +12 -0
- package/es/field-decorator/props.mjs +47 -0
- package/es/field-decorator/style/index.mjs +4 -0
- package/es/floating-panel/FloatingPanel.mjs +186 -0
- package/es/floating-panel/FloatingPanelSfc.css +0 -0
- package/es/floating-panel/floatingPanel.css +1 -0
- package/es/floating-panel/index.mjs +11 -0
- package/es/floating-panel/props.mjs +27 -0
- package/es/floating-panel/style/index.mjs +4 -0
- package/es/form/Form.mjs +116 -0
- package/es/form/FormSfc.css +0 -0
- package/es/form/index.mjs +15 -0
- package/es/form/props.mjs +15 -0
- package/es/form/provide.mjs +47 -0
- package/es/form/style/index.mjs +2 -0
- package/es/form-details/FormDetails.mjs +90 -0
- package/es/form-details/FormDetailsSfc.css +0 -0
- package/es/form-details/formDetails.css +1 -0
- package/es/form-details/index.mjs +12 -0
- package/es/form-details/props.mjs +13 -0
- package/es/form-details/style/index.mjs +3 -0
- package/es/hover/index.mjs +126 -0
- package/es/hover/style/index.mjs +0 -0
- package/es/hover-overlay/HoverOverlay.mjs +31 -0
- package/es/hover-overlay/HoverOverlaySfc.css +0 -0
- package/es/hover-overlay/hoverOverlay.css +1 -0
- package/es/hover-overlay/index.mjs +24 -0
- package/es/hover-overlay/props.mjs +7 -0
- package/es/hover-overlay/style/index.mjs +3 -0
- package/es/icon/Icon.mjs +89 -0
- package/es/icon/IconSfc.css +0 -0
- package/es/icon/icon.css +1 -0
- package/es/icon/index.mjs +12 -0
- package/es/icon/props.mjs +19 -0
- package/es/icon/style/index.mjs +3 -0
- package/es/image/Image.mjs +114 -0
- package/es/image/ImageSfc.css +0 -0
- package/es/image/image.css +1 -0
- package/es/image/index.mjs +12 -0
- package/es/image/props.mjs +35 -0
- package/es/image/style/index.mjs +4 -0
- package/es/image-preview/ImagePreview.mjs +337 -0
- package/es/image-preview/ImagePreviewSfc.css +0 -0
- package/es/image-preview/imagePreview.css +1 -0
- package/es/image-preview/index.mjs +87 -0
- package/es/image-preview/props.mjs +52 -0
- package/es/image-preview/style/index.mjs +7 -0
- package/es/index-anchor/IndexAnchor.mjs +85 -0
- package/es/index-anchor/IndexAnchorSfc.css +1 -0
- package/es/index-anchor/index.mjs +12 -0
- package/es/index-anchor/props.mjs +6 -0
- package/es/index-anchor/provide.mjs +19 -0
- package/es/index-anchor/style/index.mjs +3 -0
- package/es/index-bar/IndexBar.mjs +219 -0
- package/es/index-bar/IndexBarSfc.css +0 -0
- package/es/index-bar/index.mjs +12 -0
- package/es/index-bar/indexBar.css +1 -0
- package/es/index-bar/props.mjs +27 -0
- package/es/index-bar/provide.mjs +16 -0
- package/es/index-bar/style/index.mjs +3 -0
- package/es/index.bundle.mjs +551 -0
- package/es/index.d.ts +1 -0
- package/es/index.mjs +461 -0
- package/es/input/Input.mjs +380 -0
- package/es/input/InputSfc.css +0 -0
- package/es/input/index.mjs +12 -0
- package/es/input/input.css +1 -0
- package/es/input/props.mjs +84 -0
- package/es/input/provide.mjs +0 -0
- package/es/input/style/index.mjs +6 -0
- package/es/lazy/index.mjs +213 -0
- package/es/lazy/style/index.mjs +0 -0
- package/es/link/Link.mjs +87 -0
- package/es/link/LinkSfc.css +0 -0
- package/es/link/index.mjs +12 -0
- package/es/link/link.css +1 -0
- package/es/link/props.mjs +23 -0
- package/es/link/style/index.mjs +3 -0
- package/es/list/List.mjs +191 -0
- package/es/list/ListSfc.css +0 -0
- package/es/list/index.mjs +12 -0
- package/es/list/list.css +1 -0
- package/es/list/props.mjs +23 -0
- package/es/list/provide.mjs +13 -0
- package/es/list/style/index.mjs +5 -0
- package/es/loading/Loading.mjs +187 -0
- package/es/loading/LoadingSfc.css +0 -0
- package/es/loading/index.mjs +12 -0
- package/es/loading/loading.css +1 -0
- package/es/loading/props.mjs +17 -0
- package/es/loading/style/index.mjs +3 -0
- package/es/loading-bar/LoadingBar.mjs +34 -0
- package/es/loading-bar/index.mjs +105 -0
- package/es/loading-bar/loadingBar.css +1 -0
- package/es/loading-bar/props.mjs +19 -0
- package/es/loading-bar/style/index.mjs +2 -0
- package/es/locale/en-US.d.ts +5 -0
- package/es/locale/en-US.mjs +108 -0
- package/es/locale/fa-IR.d.ts +5 -0
- package/es/locale/fa-IR.mjs +108 -0
- package/es/locale/index.mjs +106 -0
- package/es/locale/style/index.mjs +0 -0
- package/es/locale/zh-CN.d.ts +5 -0
- package/es/locale/zh-CN.mjs +108 -0
- package/es/locale/zh-HK.d.ts +5 -0
- package/es/locale/zh-HK.mjs +5 -0
- package/es/locale/zh-TW.d.ts +5 -0
- package/es/locale/zh-TW.mjs +105 -0
- package/es/locale-provider/LocaleProvider.mjs +61 -0
- package/es/locale-provider/index.mjs +11 -0
- package/es/locale-provider/props.mjs +16 -0
- package/es/locale-provider/provide.mjs +17 -0
- package/es/locale-provider/style/index.mjs +0 -0
- package/es/menu/Menu.mjs +124 -0
- package/es/menu/MenuSfc.css +0 -0
- package/es/menu/index.mjs +12 -0
- package/es/menu/menu.css +1 -0
- package/es/menu/props.mjs +54 -0
- package/es/menu/style/index.mjs +4 -0
- package/es/menu/usePopover.mjs +362 -0
- package/es/menu-option/MenuOption.mjs +171 -0
- package/es/menu-option/MenuOptionSfc.css +0 -0
- package/es/menu-option/index.mjs +12 -0
- package/es/menu-option/menuOption.css +1 -0
- package/es/menu-option/props.mjs +14 -0
- package/es/menu-option/provide.mjs +19 -0
- package/es/menu-option/style/index.mjs +5 -0
- package/es/menu-select/MenuSelect.mjs +157 -0
- package/es/menu-select/MenuSelectSfc.css +0 -0
- package/es/menu-select/index.mjs +12 -0
- package/es/menu-select/menuSelect.css +1 -0
- package/es/menu-select/props.mjs +77 -0
- package/es/menu-select/provide.mjs +16 -0
- package/es/menu-select/style/index.mjs +6 -0
- package/es/option/Option.mjs +172 -0
- package/es/option/OptionSfc.css +0 -0
- package/es/option/index.mjs +12 -0
- package/es/option/option.css +1 -0
- package/es/option/props.mjs +10 -0
- package/es/option/provide.mjs +17 -0
- package/es/option/style/index.mjs +6 -0
- package/es/overlay/Overlay.mjs +84 -0
- package/es/overlay/index.mjs +12 -0
- package/es/overlay/overlay.css +1 -0
- package/es/overlay/props.mjs +19 -0
- package/es/overlay/style/index.mjs +2 -0
- package/es/pagination/Pagination.mjs +413 -0
- package/es/pagination/PaginationSfc.css +0 -0
- package/es/pagination/index.mjs +12 -0
- package/es/pagination/pagination.css +1 -0
- package/es/pagination/props.mjs +41 -0
- package/es/pagination/style/index.mjs +12 -0
- package/es/paper/Paper.mjs +61 -0
- package/es/paper/PaperSfc.css +0 -0
- package/es/paper/index.mjs +12 -0
- package/es/paper/paper.css +1 -0
- package/es/paper/props.mjs +17 -0
- package/es/paper/style/index.mjs +5 -0
- package/es/picker/Picker.mjs +502 -0
- package/es/picker/PickerSfc.css +0 -0
- package/es/picker/index.mjs +84 -0
- package/es/picker/picker.css +1 -0
- package/es/picker/props.mjs +82 -0
- package/es/picker/style/index.mjs +5 -0
- package/es/popup/Popup.mjs +148 -0
- package/es/popup/index.mjs +12 -0
- package/es/popup/popup.css +1 -0
- package/es/popup/props.mjs +50 -0
- package/es/popup/provide.mjs +23 -0
- package/es/popup/style/index.mjs +2 -0
- package/es/progress/Progress.mjs +258 -0
- package/es/progress/ProgressSfc.css +0 -0
- package/es/progress/index.mjs +12 -0
- package/es/progress/progress.css +1 -0
- package/es/progress/props.mjs +38 -0
- package/es/progress/style/index.mjs +3 -0
- package/es/pull-refresh/PullRefresh.mjs +217 -0
- package/es/pull-refresh/PullRefreshSfc.css +0 -0
- package/es/pull-refresh/index.mjs +12 -0
- package/es/pull-refresh/props.mjs +23 -0
- package/es/pull-refresh/pullRefresh.css +1 -0
- package/es/pull-refresh/style/index.mjs +5 -0
- package/es/radio/Radio.mjs +244 -0
- package/es/radio/RadioSfc.css +0 -0
- package/es/radio/index.mjs +12 -0
- package/es/radio/props.mjs +35 -0
- package/es/radio/provide.mjs +13 -0
- package/es/radio/radio.css +1 -0
- package/es/radio/style/index.mjs +7 -0
- package/es/radio-group/RadioGroup.mjs +163 -0
- package/es/radio-group/RadioGroupSfc.css +0 -0
- package/es/radio-group/index.mjs +12 -0
- package/es/radio-group/props.mjs +33 -0
- package/es/radio-group/provide.mjs +16 -0
- package/es/radio-group/radioGroup.css +1 -0
- package/es/radio-group/style/index.mjs +8 -0
- package/es/rate/Rate.mjs +203 -0
- package/es/rate/RateSfc.css +0 -0
- package/es/rate/index.mjs +12 -0
- package/es/rate/props.mjs +46 -0
- package/es/rate/provide.mjs +0 -0
- package/es/rate/rate.css +1 -0
- package/es/rate/style/index.mjs +7 -0
- package/es/result/Empty.mjs +23 -0
- package/es/result/Error.mjs +23 -0
- package/es/result/Info.mjs +23 -0
- package/es/result/Question.mjs +23 -0
- package/es/result/Result.mjs +123 -0
- package/es/result/ResultSfc.css +0 -0
- package/es/result/Success.mjs +102 -0
- package/es/result/Warning.mjs +23 -0
- package/es/result/index.mjs +12 -0
- package/es/result/props.mjs +16 -0
- package/es/result/result.css +1 -0
- package/es/result/style/index.mjs +3 -0
- package/es/ripple/index.mjs +174 -0
- package/es/ripple/ripple.css +1 -0
- package/es/ripple/style/index.mjs +2 -0
- package/es/row/Row.mjs +53 -0
- package/es/row/RowSfc.css +0 -0
- package/es/row/index.mjs +12 -0
- package/es/row/props.mjs +19 -0
- package/es/row/provide.mjs +14 -0
- package/es/row/row.css +1 -0
- package/es/row/style/index.mjs +3 -0
- package/es/select/Select.mjs +521 -0
- package/es/select/SelectSfc.css +0 -0
- package/es/select/index.mjs +12 -0
- package/es/select/props.mjs +77 -0
- package/es/select/provide.mjs +14 -0
- package/es/select/select.css +1 -0
- package/es/select/style/index.mjs +10 -0
- package/es/select/useSelectController.mjs +65 -0
- package/es/skeleton/Skeleton.mjs +195 -0
- package/es/skeleton/SkeletonSfc.css +0 -0
- package/es/skeleton/index.mjs +12 -0
- package/es/skeleton/props.mjs +28 -0
- package/es/skeleton/skeleton.css +1 -0
- package/es/skeleton/style/index.mjs +3 -0
- package/es/slider/Slider.mjs +566 -0
- package/es/slider/SliderSfc.css +0 -0
- package/es/slider/index.mjs +12 -0
- package/es/slider/props.mjs +51 -0
- package/es/slider/provide.mjs +0 -0
- package/es/slider/slider.css +1 -0
- package/es/slider/style/index.mjs +5 -0
- package/es/snackbar/Snackbar.mjs +65 -0
- package/es/snackbar/SnackbarSfc.css +0 -0
- package/es/snackbar/core.mjs +174 -0
- package/es/snackbar/coreSfc.css +0 -0
- package/es/snackbar/index.mjs +229 -0
- package/es/snackbar/props.mjs +61 -0
- package/es/snackbar/snackbar.css +1 -0
- package/es/snackbar/style/index.mjs +7 -0
- package/es/space/Space.mjs +69 -0
- package/es/space/index.mjs +12 -0
- package/es/space/margin.mjs +34 -0
- package/es/space/props.mjs +23 -0
- package/es/space/space.css +1 -0
- package/es/space/style/index.mjs +2 -0
- package/es/step/Step.mjs +123 -0
- package/es/step/StepSfc.css +0 -0
- package/es/step/index.mjs +12 -0
- package/es/step/props.mjs +16 -0
- package/es/step/provide.mjs +17 -0
- package/es/step/step.css +1 -0
- package/es/step/style/index.mjs +4 -0
- package/es/steps/Steps.mjs +49 -0
- package/es/steps/StepsSfc.css +1 -0
- package/es/steps/index.mjs +12 -0
- package/es/steps/props.mjs +17 -0
- package/es/steps/provide.mjs +13 -0
- package/es/steps/style/index.mjs +2 -0
- package/es/sticky/Sticky.mjs +178 -0
- package/es/sticky/StickySfc.css +0 -0
- package/es/sticky/index.mjs +12 -0
- package/es/sticky/props.mjs +17 -0
- package/es/sticky/sticky.css +1 -0
- package/es/sticky/style/index.mjs +3 -0
- package/es/style-provider/StyleProvider.mjs +24 -0
- package/es/style-provider/StyleProviderSfc.css +0 -0
- package/es/style-provider/index.mjs +43 -0
- package/es/style-provider/props.mjs +13 -0
- package/es/style-provider/style/index.mjs +2 -0
- package/es/style.css +1 -0
- package/es/style.mjs +89 -0
- package/es/styles/common.css +1 -0
- package/es/styles/elevation.css +1 -0
- package/es/styles/style/index.mjs +0 -0
- package/es/swipe/Swipe.mjs +534 -0
- package/es/swipe/SwipeSfc.css +0 -0
- package/es/swipe/index.mjs +12 -0
- package/es/swipe/props.mjs +34 -0
- package/es/swipe/provide.mjs +40 -0
- package/es/swipe/style/index.mjs +8 -0
- package/es/swipe/swipe.css +1 -0
- package/es/swipe-item/SwipeItem.mjs +56 -0
- package/es/swipe-item/SwipeItemSfc.css +0 -0
- package/es/swipe-item/index.mjs +9 -0
- package/es/swipe-item/provide.mjs +17 -0
- package/es/swipe-item/style/index.mjs +3 -0
- package/es/swipe-item/swipeItem.css +1 -0
- package/es/switch/Switch.mjs +263 -0
- package/es/switch/SwitchSfc.css +0 -0
- package/es/switch/index.mjs +12 -0
- package/es/switch/props.mjs +41 -0
- package/es/switch/provide.mjs +0 -0
- package/es/switch/style/index.mjs +8 -0
- package/es/switch/switch.css +1 -0
- package/es/tab/Tab.mjs +87 -0
- package/es/tab/TabSfc.css +0 -0
- package/es/tab/index.mjs +12 -0
- package/es/tab/props.mjs +13 -0
- package/es/tab/provide.mjs +17 -0
- package/es/tab/style/index.mjs +4 -0
- package/es/tab/tab.css +1 -0
- package/es/tab-item/TabItem.mjs +52 -0
- package/es/tab-item/TabItemSfc.css +0 -0
- package/es/tab-item/index.mjs +12 -0
- package/es/tab-item/props.mjs +6 -0
- package/es/tab-item/provide.mjs +30 -0
- package/es/tab-item/style/index.mjs +4 -0
- package/es/tab-item/tabItem.css +1 -0
- package/es/table/Table.mjs +68 -0
- package/es/table/TableSfc.css +0 -0
- package/es/table/index.mjs +12 -0
- package/es/table/props.mjs +16 -0
- package/es/table/style/index.mjs +4 -0
- package/es/table/table.css +1 -0
- package/es/tabs/Tabs.mjs +245 -0
- package/es/tabs/TabsSfc.css +0 -0
- package/es/tabs/index.mjs +12 -0
- package/es/tabs/props.mjs +46 -0
- package/es/tabs/provide.mjs +14 -0
- package/es/tabs/style/index.mjs +5 -0
- package/es/tabs/tabs.css +1 -0
- package/es/tabs-items/TabsItems.mjs +102 -0
- package/es/tabs-items/TabsItemsSfc.css +0 -0
- package/es/tabs-items/index.mjs +12 -0
- package/es/tabs-items/props.mjs +16 -0
- package/es/tabs-items/provide.mjs +16 -0
- package/es/tabs-items/style/index.mjs +3 -0
- package/es/themes/dark/actionSheet.mjs +17 -0
- package/es/themes/dark/appBar.mjs +15 -0
- package/es/themes/dark/avatar.mjs +14 -0
- package/es/themes/dark/avatarGroup.mjs +6 -0
- package/es/themes/dark/backTop.mjs +9 -0
- package/es/themes/dark/badge.mjs +24 -0
- package/es/themes/dark/bottomNavigation.mjs +12 -0
- package/es/themes/dark/bottomNavigationItem.mjs +18 -0
- package/es/themes/dark/breadcrumb.mjs +9 -0
- package/es/themes/dark/button.mjs +45 -0
- package/es/themes/dark/card.mjs +46 -0
- package/es/themes/dark/cell.mjs +17 -0
- package/es/themes/dark/checkbox.mjs +12 -0
- package/es/themes/dark/chip.mjs +40 -0
- package/es/themes/dark/collapse.mjs +14 -0
- package/es/themes/dark/countdown.mjs +7 -0
- package/es/themes/dark/counter.mjs +17 -0
- package/es/themes/dark/datePicker.mjs +48 -0
- package/es/themes/dark/dialog.mjs +19 -0
- package/es/themes/dark/divider.mjs +10 -0
- package/es/themes/dark/fab.mjs +18 -0
- package/es/themes/dark/fieldDecorator.mjs +39 -0
- package/es/themes/dark/floatingPanel.mjs +15 -0
- package/es/themes/dark/formDetails.mjs +10 -0
- package/es/themes/dark/hoverOverlay.mjs +7 -0
- package/es/themes/dark/icon.mjs +6 -0
- package/es/themes/dark/imagePreview.mjs +14 -0
- package/es/themes/dark/index.d.ts +5 -0
- package/es/themes/dark/index.mjs +161 -0
- package/es/themes/dark/indexBar.mjs +15 -0
- package/es/themes/dark/input.mjs +8 -0
- package/es/themes/dark/link.mjs +14 -0
- package/es/themes/dark/list.mjs +14 -0
- package/es/themes/dark/loading.mjs +9 -0
- package/es/themes/dark/loadingBar.mjs +8 -0
- package/es/themes/dark/menu.mjs +7 -0
- package/es/themes/dark/menuOption.mjs +17 -0
- package/es/themes/dark/menuSelect.mjs +9 -0
- package/es/themes/dark/option.mjs +11 -0
- package/es/themes/dark/overlay.mjs +6 -0
- package/es/themes/dark/pagination.mjs +23 -0
- package/es/themes/dark/paper.mjs +7 -0
- package/es/themes/dark/picker.mjs +16 -0
- package/es/themes/dark/popup.mjs +7 -0
- package/es/themes/dark/progress.mjs +16 -0
- package/es/themes/dark/pullRefresh.mjs +10 -0
- package/es/themes/dark/radio.mjs +12 -0
- package/es/themes/dark/rate.mjs +11 -0
- package/es/themes/dark/result.mjs +29 -0
- package/es/themes/dark/ripple.mjs +7 -0
- package/es/themes/dark/select.mjs +13 -0
- package/es/themes/dark/skeleton.mjs +23 -0
- package/es/themes/dark/slider.mjs +18 -0
- package/es/themes/dark/snackbar.mjs +20 -0
- package/es/themes/dark/space.mjs +13 -0
- package/es/themes/dark/step.mjs +19 -0
- package/es/themes/dark/swipe.mjs +17 -0
- package/es/themes/dark/switch.mjs +25 -0
- package/es/themes/dark/tab.mjs +13 -0
- package/es/themes/dark/table.mjs +20 -0
- package/es/themes/dark/tabs.mjs +14 -0
- package/es/themes/dark/timePicker.mjs +60 -0
- package/es/themes/dark/tooltip.mjs +22 -0
- package/es/themes/dark/uploader.mjs +33 -0
- package/es/themes/dark/watermark.mjs +6 -0
- package/es/themes/index.mjs +11 -0
- package/es/themes/md3-dark/actionSheet.mjs +17 -0
- package/es/themes/md3-dark/appBar.mjs +15 -0
- package/es/themes/md3-dark/avatar.mjs +14 -0
- package/es/themes/md3-dark/avatarGroup.mjs +6 -0
- package/es/themes/md3-dark/backTop.mjs +9 -0
- package/es/themes/md3-dark/badge.mjs +24 -0
- package/es/themes/md3-dark/bottomNavigation.mjs +12 -0
- package/es/themes/md3-dark/bottomNavigationItem.mjs +18 -0
- package/es/themes/md3-dark/breadcrumb.mjs +9 -0
- package/es/themes/md3-dark/button.mjs +45 -0
- package/es/themes/md3-dark/card.mjs +46 -0
- package/es/themes/md3-dark/cell.mjs +17 -0
- package/es/themes/md3-dark/checkbox.mjs +12 -0
- package/es/themes/md3-dark/chip.mjs +40 -0
- package/es/themes/md3-dark/collapse.mjs +14 -0
- package/es/themes/md3-dark/countdown.mjs +7 -0
- package/es/themes/md3-dark/counter.mjs +17 -0
- package/es/themes/md3-dark/datePicker.mjs +47 -0
- package/es/themes/md3-dark/dialog.mjs +19 -0
- package/es/themes/md3-dark/divider.mjs +10 -0
- package/es/themes/md3-dark/fab.mjs +18 -0
- package/es/themes/md3-dark/fieldDecorator.mjs +39 -0
- package/es/themes/md3-dark/floatingPanel.mjs +15 -0
- package/es/themes/md3-dark/formDetails.mjs +10 -0
- package/es/themes/md3-dark/hoverOverlay.mjs +7 -0
- package/es/themes/md3-dark/icon.mjs +6 -0
- package/es/themes/md3-dark/imagePreview.mjs +14 -0
- package/es/themes/md3-dark/index.d.ts +5 -0
- package/es/themes/md3-dark/index.mjs +161 -0
- package/es/themes/md3-dark/indexBar.mjs +15 -0
- package/es/themes/md3-dark/input.mjs +8 -0
- package/es/themes/md3-dark/link.mjs +14 -0
- package/es/themes/md3-dark/list.mjs +14 -0
- package/es/themes/md3-dark/loading.mjs +9 -0
- package/es/themes/md3-dark/loadingBar.mjs +8 -0
- package/es/themes/md3-dark/menu.mjs +7 -0
- package/es/themes/md3-dark/menuOption.mjs +17 -0
- package/es/themes/md3-dark/menuSelect.mjs +9 -0
- package/es/themes/md3-dark/option.mjs +11 -0
- package/es/themes/md3-dark/overlay.mjs +6 -0
- package/es/themes/md3-dark/pagination.mjs +23 -0
- package/es/themes/md3-dark/paper.mjs +7 -0
- package/es/themes/md3-dark/picker.mjs +16 -0
- package/es/themes/md3-dark/popup.mjs +7 -0
- package/es/themes/md3-dark/progress.mjs +16 -0
- package/es/themes/md3-dark/pullRefresh.mjs +10 -0
- package/es/themes/md3-dark/radio.mjs +12 -0
- package/es/themes/md3-dark/rate.mjs +11 -0
- package/es/themes/md3-dark/result.mjs +29 -0
- package/es/themes/md3-dark/ripple.mjs +7 -0
- package/es/themes/md3-dark/select.mjs +13 -0
- package/es/themes/md3-dark/skeleton.mjs +23 -0
- package/es/themes/md3-dark/slider.mjs +18 -0
- package/es/themes/md3-dark/snackbar.mjs +20 -0
- package/es/themes/md3-dark/space.mjs +13 -0
- package/es/themes/md3-dark/step.mjs +19 -0
- package/es/themes/md3-dark/swipe.mjs +17 -0
- package/es/themes/md3-dark/switch.mjs +25 -0
- package/es/themes/md3-dark/tab.mjs +13 -0
- package/es/themes/md3-dark/table.mjs +20 -0
- package/es/themes/md3-dark/tabs.mjs +14 -0
- package/es/themes/md3-dark/timePicker.mjs +60 -0
- package/es/themes/md3-dark/tooltip.mjs +22 -0
- package/es/themes/md3-dark/uploader.mjs +33 -0
- package/es/themes/md3-dark/watermark.mjs +6 -0
- package/es/themes/md3-light/actionSheet.mjs +9 -0
- package/es/themes/md3-light/appBar.mjs +15 -0
- package/es/themes/md3-light/avatar.mjs +7 -0
- package/es/themes/md3-light/avatarGroup.mjs +6 -0
- package/es/themes/md3-light/backTop.mjs +9 -0
- package/es/themes/md3-light/badge.mjs +24 -0
- package/es/themes/md3-light/bottomNavigation.mjs +12 -0
- package/es/themes/md3-light/bottomNavigationItem.mjs +18 -0
- package/es/themes/md3-light/breadcrumb.mjs +9 -0
- package/es/themes/md3-light/button.mjs +45 -0
- package/es/themes/md3-light/card.mjs +46 -0
- package/es/themes/md3-light/cell.mjs +17 -0
- package/es/themes/md3-light/checkbox.mjs +12 -0
- package/es/themes/md3-light/chip.mjs +40 -0
- package/es/themes/md3-light/collapse.mjs +14 -0
- package/es/themes/md3-light/countdown.mjs +7 -0
- package/es/themes/md3-light/counter.mjs +17 -0
- package/es/themes/md3-light/datePicker.mjs +47 -0
- package/es/themes/md3-light/dialog.mjs +19 -0
- package/es/themes/md3-light/divider.mjs +10 -0
- package/es/themes/md3-light/fab.mjs +18 -0
- package/es/themes/md3-light/fieldDecorator.mjs +39 -0
- package/es/themes/md3-light/floatingPanel.mjs +15 -0
- package/es/themes/md3-light/formDetails.mjs +10 -0
- package/es/themes/md3-light/hoverOverlay.mjs +7 -0
- package/es/themes/md3-light/icon.mjs +6 -0
- package/es/themes/md3-light/imagePreview.mjs +14 -0
- package/es/themes/md3-light/index.d.ts +5 -0
- package/es/themes/md3-light/index.mjs +161 -0
- package/es/themes/md3-light/indexBar.mjs +15 -0
- package/es/themes/md3-light/input.mjs +8 -0
- package/es/themes/md3-light/link.mjs +14 -0
- package/es/themes/md3-light/list.mjs +14 -0
- package/es/themes/md3-light/loading.mjs +9 -0
- package/es/themes/md3-light/loadingBar.mjs +8 -0
- package/es/themes/md3-light/menu.mjs +7 -0
- package/es/themes/md3-light/menuOption.mjs +17 -0
- package/es/themes/md3-light/menuSelect.mjs +9 -0
- package/es/themes/md3-light/option.mjs +11 -0
- package/es/themes/md3-light/overlay.mjs +6 -0
- package/es/themes/md3-light/pagination.mjs +23 -0
- package/es/themes/md3-light/paper.mjs +7 -0
- package/es/themes/md3-light/picker.mjs +16 -0
- package/es/themes/md3-light/popup.mjs +7 -0
- package/es/themes/md3-light/progress.mjs +16 -0
- package/es/themes/md3-light/pullRefresh.mjs +10 -0
- package/es/themes/md3-light/radio.mjs +12 -0
- package/es/themes/md3-light/rate.mjs +11 -0
- package/es/themes/md3-light/result.mjs +29 -0
- package/es/themes/md3-light/ripple.mjs +7 -0
- package/es/themes/md3-light/select.mjs +13 -0
- package/es/themes/md3-light/skeleton.mjs +21 -0
- package/es/themes/md3-light/slider.mjs +18 -0
- package/es/themes/md3-light/snackbar.mjs +20 -0
- package/es/themes/md3-light/space.mjs +13 -0
- package/es/themes/md3-light/step.mjs +19 -0
- package/es/themes/md3-light/swipe.mjs +17 -0
- package/es/themes/md3-light/switch.mjs +25 -0
- package/es/themes/md3-light/tab.mjs +13 -0
- package/es/themes/md3-light/table.mjs +20 -0
- package/es/themes/md3-light/tabs.mjs +14 -0
- package/es/themes/md3-light/timePicker.mjs +60 -0
- package/es/themes/md3-light/tooltip.mjs +22 -0
- package/es/themes/md3-light/uploader.mjs +33 -0
- package/es/themes/md3-light/watermark.mjs +6 -0
- package/es/themes/style/index.mjs +0 -0
- package/es/themes/toViewport.d.ts +3 -0
- package/es/themes/toViewport.mjs +13 -0
- package/es/time-picker/TimePicker.mjs +448 -0
- package/es/time-picker/TimePickerSfc.css +0 -0
- package/es/time-picker/clock.mjs +322 -0
- package/es/time-picker/index.mjs +12 -0
- package/es/time-picker/props.mjs +31 -0
- package/es/time-picker/style/index.mjs +4 -0
- package/es/time-picker/timePicker.css +1 -0
- package/es/time-picker/utils.mjs +72 -0
- package/es/tooltip/Tooltip.mjs +134 -0
- package/es/tooltip/TooltipSfc.css +0 -0
- package/es/tooltip/index.mjs +12 -0
- package/es/tooltip/props.mjs +52 -0
- package/es/tooltip/style/index.mjs +3 -0
- package/es/tooltip/tooltip.css +1 -0
- package/es/uploader/Uploader.mjs +511 -0
- package/es/uploader/UploaderSfc.css +0 -0
- package/es/uploader/index.mjs +12 -0
- package/es/uploader/props.mjs +59 -0
- package/es/uploader/provide.mjs +0 -0
- package/es/uploader/style/index.mjs +12 -0
- package/es/uploader/uploader.css +1 -0
- package/es/utils/components.mjs +240 -0
- package/es/utils/elements.mjs +221 -0
- package/es/utils/logger.mjs +10 -0
- package/es/utils/shared.mjs +58 -0
- package/es/utils/style/index.mjs +0 -0
- package/es/utils/test.mjs +285 -0
- package/es/varlet.esm.js +23534 -0
- package/es/watermark/Watermark.mjs +247 -0
- package/es/watermark/WatermarkSfc.css +0 -0
- package/es/watermark/index.mjs +12 -0
- package/es/watermark/props.mjs +53 -0
- package/es/watermark/style/index.mjs +3 -0
- package/es/watermark/watermark.css +1 -0
- package/highlight/web-types.en-US.json +8369 -0
- package/highlight/web-types.zh-CN.json +8701 -0
- package/lib/style.css +1 -0
- package/lib/varlet.cjs.js +29761 -0
- package/package.json +7 -7
- package/umd/varlet.js +15 -0
|
@@ -0,0 +1,658 @@
|
|
|
1
|
+
var __async = (__this, __arguments, generator) => {
|
|
2
|
+
return new Promise((resolve, reject) => {
|
|
3
|
+
var fulfilled = (value) => {
|
|
4
|
+
try {
|
|
5
|
+
step(generator.next(value));
|
|
6
|
+
} catch (e) {
|
|
7
|
+
reject(e);
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
var rejected = (value) => {
|
|
11
|
+
try {
|
|
12
|
+
step(generator.throw(value));
|
|
13
|
+
} catch (e) {
|
|
14
|
+
reject(e);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
18
|
+
step((generator = generator.apply(__this, __arguments)).next());
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
import dayjs from "dayjs/esm/index.js";
|
|
22
|
+
import MonthPickerPanel from "./src/month-picker-panel.mjs";
|
|
23
|
+
import YearPickerPanel from "./src/year-picker-panel.mjs";
|
|
24
|
+
import DayPickerPanel from "./src/day-picker-panel.mjs";
|
|
25
|
+
import { defineComponent, ref, computed, reactive, watch } from "vue";
|
|
26
|
+
import {
|
|
27
|
+
props,
|
|
28
|
+
MONTH_LIST,
|
|
29
|
+
WEEK_HEADER
|
|
30
|
+
} from "./props.mjs";
|
|
31
|
+
import { isArray, toNumber, doubleRaf, call } from "@varlet/shared";
|
|
32
|
+
import { createNamespace, formatElevation } from "../utils/components.mjs";
|
|
33
|
+
import { padStart } from "../utils/shared.mjs";
|
|
34
|
+
import { t } from "../locale/index.mjs";
|
|
35
|
+
import { injectLocaleProvider } from "../locale-provider/provide.mjs";
|
|
36
|
+
const { name, n, classes } = createNamespace("date-picker");
|
|
37
|
+
import { toDisplayString as _toDisplayString, normalizeClass as _normalizeClass, createElementVNode as _createElementVNode, renderSlot as _renderSlot, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, normalizeProps as _normalizeProps, mergeProps as _mergeProps, Transition as _Transition, withCtx as _withCtx, createVNode as _createVNode, normalizeStyle as _normalizeStyle, resolveComponent as _resolveComponent, createBlock as _createBlock } from "vue";
|
|
38
|
+
function __render__(_ctx, _cache) {
|
|
39
|
+
var _a;
|
|
40
|
+
const _component_year_picker_panel = _resolveComponent("year-picker-panel");
|
|
41
|
+
const _component_month_picker_panel = _resolveComponent("month-picker-panel");
|
|
42
|
+
const _component_day_picker_panel = _resolveComponent("day-picker-panel");
|
|
43
|
+
return _openBlock(), _createElementBlock(
|
|
44
|
+
"div",
|
|
45
|
+
{
|
|
46
|
+
class: _normalizeClass(_ctx.classes(_ctx.n(), _ctx.formatElevation(_ctx.elevation, 2)))
|
|
47
|
+
},
|
|
48
|
+
[
|
|
49
|
+
_createElementVNode(
|
|
50
|
+
"div",
|
|
51
|
+
{
|
|
52
|
+
class: _normalizeClass(_ctx.n("title")),
|
|
53
|
+
style: _normalizeStyle({ background: _ctx.titleColor || _ctx.color })
|
|
54
|
+
},
|
|
55
|
+
[
|
|
56
|
+
_createElementVNode(
|
|
57
|
+
"div",
|
|
58
|
+
{
|
|
59
|
+
class: _normalizeClass(_ctx.n("title-select"))
|
|
60
|
+
},
|
|
61
|
+
[
|
|
62
|
+
_createElementVNode(
|
|
63
|
+
"div",
|
|
64
|
+
{
|
|
65
|
+
class: _normalizeClass(_ctx.n("title-hint"))
|
|
66
|
+
},
|
|
67
|
+
_toDisplayString((_a = _ctx.hint) != null ? _a : (_ctx.pt ? _ctx.pt : _ctx.t)("datePickerHint")),
|
|
68
|
+
3
|
|
69
|
+
/* TEXT, CLASS */
|
|
70
|
+
),
|
|
71
|
+
_ctx.type !== "year" ? (_openBlock(), _createElementBlock(
|
|
72
|
+
"div",
|
|
73
|
+
{
|
|
74
|
+
key: 0,
|
|
75
|
+
class: _normalizeClass(_ctx.classes(_ctx.n("title-year"), [_ctx.isYearPanel, _ctx.n("title-year--active")])),
|
|
76
|
+
onClick: _cache[0] || (_cache[0] = ($event) => _ctx.clickEl("year"))
|
|
77
|
+
},
|
|
78
|
+
[
|
|
79
|
+
_renderSlot(_ctx.$slots, "year", { year: _ctx.chooseYear }, () => [
|
|
80
|
+
_createTextVNode(
|
|
81
|
+
_toDisplayString(_ctx.chooseYear),
|
|
82
|
+
1
|
|
83
|
+
/* TEXT */
|
|
84
|
+
)
|
|
85
|
+
])
|
|
86
|
+
],
|
|
87
|
+
2
|
|
88
|
+
/* CLASS */
|
|
89
|
+
)) : _createCommentVNode("v-if", true)
|
|
90
|
+
],
|
|
91
|
+
2
|
|
92
|
+
/* CLASS */
|
|
93
|
+
),
|
|
94
|
+
_createElementVNode(
|
|
95
|
+
"div",
|
|
96
|
+
{
|
|
97
|
+
class: _normalizeClass(
|
|
98
|
+
_ctx.classes(
|
|
99
|
+
_ctx.n("title-date"),
|
|
100
|
+
[!_ctx.isYearPanel || _ctx.type === "year", _ctx.n("title-date--active")],
|
|
101
|
+
[_ctx.range, _ctx.n("title-date--range")]
|
|
102
|
+
)
|
|
103
|
+
),
|
|
104
|
+
onClick: _cache[1] || (_cache[1] = ($event) => _ctx.clickEl("date"))
|
|
105
|
+
},
|
|
106
|
+
[
|
|
107
|
+
_createVNode(_Transition, {
|
|
108
|
+
name: _ctx.multiple ? "" : `${_ctx.n()}${_ctx.reverse ? "-reverse" : ""}-translatey`
|
|
109
|
+
}, {
|
|
110
|
+
default: _withCtx(() => [
|
|
111
|
+
_ctx.type === "year" ? (_openBlock(), _createElementBlock("div", {
|
|
112
|
+
key: `${_ctx.chooseYear}`
|
|
113
|
+
}, [
|
|
114
|
+
_ctx.range ? _renderSlot(_ctx.$slots, "range", {
|
|
115
|
+
key: 0,
|
|
116
|
+
choose: _ctx.getChoose.chooseRangeYear
|
|
117
|
+
}, () => [
|
|
118
|
+
_createTextVNode(
|
|
119
|
+
_toDisplayString(_ctx.getYearTitle),
|
|
120
|
+
1
|
|
121
|
+
/* TEXT */
|
|
122
|
+
)
|
|
123
|
+
]) : _ctx.multiple ? _renderSlot(_ctx.$slots, "multiple", {
|
|
124
|
+
key: 1,
|
|
125
|
+
choose: _ctx.getChoose.chooseYears
|
|
126
|
+
}, () => [
|
|
127
|
+
_createTextVNode(
|
|
128
|
+
_toDisplayString(_ctx.getYearTitle),
|
|
129
|
+
1
|
|
130
|
+
/* TEXT */
|
|
131
|
+
)
|
|
132
|
+
]) : _renderSlot(_ctx.$slots, "year", {
|
|
133
|
+
key: 2,
|
|
134
|
+
year: _ctx.chooseYear
|
|
135
|
+
}, () => [
|
|
136
|
+
_createTextVNode(
|
|
137
|
+
_toDisplayString(_ctx.getYearTitle),
|
|
138
|
+
1
|
|
139
|
+
/* TEXT */
|
|
140
|
+
)
|
|
141
|
+
])
|
|
142
|
+
])) : _ctx.type === "month" ? (_openBlock(), _createElementBlock("div", {
|
|
143
|
+
key: `${_ctx.chooseYear}${_ctx.chooseMonth}`
|
|
144
|
+
}, [
|
|
145
|
+
_ctx.range ? _renderSlot(_ctx.$slots, "range", {
|
|
146
|
+
key: 0,
|
|
147
|
+
choose: _ctx.getChoose.chooseRangeMonth
|
|
148
|
+
}, () => [
|
|
149
|
+
_createTextVNode(
|
|
150
|
+
_toDisplayString(_ctx.getMonthTitle),
|
|
151
|
+
1
|
|
152
|
+
/* TEXT */
|
|
153
|
+
)
|
|
154
|
+
]) : _ctx.multiple ? _renderSlot(_ctx.$slots, "multiple", {
|
|
155
|
+
key: 1,
|
|
156
|
+
choose: _ctx.getChoose.chooseMonths
|
|
157
|
+
}, () => [
|
|
158
|
+
_createTextVNode(
|
|
159
|
+
_toDisplayString(_ctx.getMonthTitle),
|
|
160
|
+
1
|
|
161
|
+
/* TEXT */
|
|
162
|
+
)
|
|
163
|
+
]) : _renderSlot(_ctx.$slots, "month", {
|
|
164
|
+
key: 2,
|
|
165
|
+
month: _ctx.chooseMonth,
|
|
166
|
+
year: _ctx.chooseYear
|
|
167
|
+
}, () => [
|
|
168
|
+
_createTextVNode(
|
|
169
|
+
_toDisplayString(_ctx.getMonthTitle),
|
|
170
|
+
1
|
|
171
|
+
/* TEXT */
|
|
172
|
+
)
|
|
173
|
+
])
|
|
174
|
+
])) : (_openBlock(), _createElementBlock("div", {
|
|
175
|
+
key: `${_ctx.chooseYear}${_ctx.chooseMonth}${_ctx.chooseDay}`
|
|
176
|
+
}, [
|
|
177
|
+
_ctx.range ? _renderSlot(_ctx.$slots, "range", {
|
|
178
|
+
key: 0,
|
|
179
|
+
choose: _ctx.formatRange
|
|
180
|
+
}, () => [
|
|
181
|
+
_createTextVNode(
|
|
182
|
+
_toDisplayString(_ctx.getDateTitle),
|
|
183
|
+
1
|
|
184
|
+
/* TEXT */
|
|
185
|
+
)
|
|
186
|
+
]) : _ctx.multiple ? _renderSlot(_ctx.$slots, "multiple", {
|
|
187
|
+
key: 1,
|
|
188
|
+
choose: _ctx.getChoose.chooseDays
|
|
189
|
+
}, () => [
|
|
190
|
+
_createTextVNode(
|
|
191
|
+
_toDisplayString(_ctx.getDateTitle),
|
|
192
|
+
1
|
|
193
|
+
/* TEXT */
|
|
194
|
+
)
|
|
195
|
+
]) : _renderSlot(_ctx.$slots, "date", _normalizeProps(_mergeProps({ key: 2 }, _ctx.slotProps)), () => [
|
|
196
|
+
_createTextVNode(
|
|
197
|
+
_toDisplayString(_ctx.getDateTitle),
|
|
198
|
+
1
|
|
199
|
+
/* TEXT */
|
|
200
|
+
)
|
|
201
|
+
])
|
|
202
|
+
]))
|
|
203
|
+
]),
|
|
204
|
+
_: 3
|
|
205
|
+
/* FORWARDED */
|
|
206
|
+
}, 8, ["name"])
|
|
207
|
+
],
|
|
208
|
+
2
|
|
209
|
+
/* CLASS */
|
|
210
|
+
)
|
|
211
|
+
],
|
|
212
|
+
6
|
|
213
|
+
/* CLASS, STYLE */
|
|
214
|
+
),
|
|
215
|
+
_createElementVNode(
|
|
216
|
+
"div",
|
|
217
|
+
{
|
|
218
|
+
class: _normalizeClass(_ctx.n("body")),
|
|
219
|
+
onTouchstart: _cache[2] || (_cache[2] = (...args) => _ctx.handleTouchstart && _ctx.handleTouchstart(...args)),
|
|
220
|
+
onTouchmove: _cache[3] || (_cache[3] = (...args) => _ctx.handleTouchmove && _ctx.handleTouchmove(...args)),
|
|
221
|
+
onTouchend: _cache[4] || (_cache[4] = (...args) => _ctx.handleTouchend && _ctx.handleTouchend(...args))
|
|
222
|
+
},
|
|
223
|
+
[
|
|
224
|
+
_createVNode(_Transition, {
|
|
225
|
+
name: `${_ctx.n()}-panel-fade`
|
|
226
|
+
}, {
|
|
227
|
+
default: _withCtx(() => [
|
|
228
|
+
_ctx.getPanelType === "year" ? (_openBlock(), _createBlock(_component_year_picker_panel, {
|
|
229
|
+
key: 0,
|
|
230
|
+
ref: "yearPanelEl",
|
|
231
|
+
choose: _ctx.getChoose,
|
|
232
|
+
current: _ctx.currentDate,
|
|
233
|
+
"component-props": _ctx.componentProps,
|
|
234
|
+
preview: _ctx.previewYear,
|
|
235
|
+
onChooseYear: _ctx.getChooseYear
|
|
236
|
+
}, null, 8, ["choose", "current", "component-props", "preview", "onChooseYear"])) : _ctx.getPanelType === "month" ? (_openBlock(), _createBlock(_component_month_picker_panel, {
|
|
237
|
+
key: 1,
|
|
238
|
+
ref: "monthPanelEl",
|
|
239
|
+
current: _ctx.currentDate,
|
|
240
|
+
choose: _ctx.getChoose,
|
|
241
|
+
preview: _ctx.getPreview,
|
|
242
|
+
"click-year": () => _ctx.clickEl("year"),
|
|
243
|
+
"component-props": _ctx.componentProps,
|
|
244
|
+
onChooseMonth: _ctx.getChooseMonth,
|
|
245
|
+
onCheckPreview: _ctx.checkPreview
|
|
246
|
+
}, null, 8, ["current", "choose", "preview", "click-year", "component-props", "onChooseMonth", "onCheckPreview"])) : _ctx.getPanelType === "date" ? (_openBlock(), _createBlock(_component_day_picker_panel, {
|
|
247
|
+
key: 2,
|
|
248
|
+
ref: "dayPanelEl",
|
|
249
|
+
current: _ctx.currentDate,
|
|
250
|
+
choose: _ctx.getChoose,
|
|
251
|
+
preview: _ctx.getPreview,
|
|
252
|
+
"component-props": _ctx.componentProps,
|
|
253
|
+
"click-month": () => _ctx.clickEl("month"),
|
|
254
|
+
onChooseDay: _ctx.getChooseDay,
|
|
255
|
+
onCheckPreview: _ctx.checkPreview
|
|
256
|
+
}, null, 8, ["current", "choose", "preview", "component-props", "click-month", "onChooseDay", "onCheckPreview"])) : _createCommentVNode("v-if", true)
|
|
257
|
+
]),
|
|
258
|
+
_: 1
|
|
259
|
+
/* STABLE */
|
|
260
|
+
}, 8, ["name"])
|
|
261
|
+
],
|
|
262
|
+
34
|
|
263
|
+
/* CLASS, NEED_HYDRATION */
|
|
264
|
+
),
|
|
265
|
+
_ctx.$slots.actions ? (_openBlock(), _createElementBlock(
|
|
266
|
+
"div",
|
|
267
|
+
{
|
|
268
|
+
key: 0,
|
|
269
|
+
class: _normalizeClass(_ctx.n("actions"))
|
|
270
|
+
},
|
|
271
|
+
[
|
|
272
|
+
_renderSlot(_ctx.$slots, "actions")
|
|
273
|
+
],
|
|
274
|
+
2
|
|
275
|
+
/* CLASS */
|
|
276
|
+
)) : _createCommentVNode("v-if", true)
|
|
277
|
+
],
|
|
278
|
+
2
|
|
279
|
+
/* CLASS */
|
|
280
|
+
);
|
|
281
|
+
}
|
|
282
|
+
const __sfc__ = defineComponent({
|
|
283
|
+
name,
|
|
284
|
+
components: {
|
|
285
|
+
MonthPickerPanel,
|
|
286
|
+
YearPickerPanel,
|
|
287
|
+
DayPickerPanel
|
|
288
|
+
},
|
|
289
|
+
props,
|
|
290
|
+
setup(props2) {
|
|
291
|
+
const { t: pt } = injectLocaleProvider();
|
|
292
|
+
const currentDate = dayjs().format("YYYY-MM-D");
|
|
293
|
+
const [currentYear, currentMonth] = currentDate.split("-");
|
|
294
|
+
const monthDes = MONTH_LIST.find((month) => month === currentMonth);
|
|
295
|
+
const isYearPanel = ref(false);
|
|
296
|
+
const isMonthPanel = ref(false);
|
|
297
|
+
const rangeDone = ref(true);
|
|
298
|
+
const chooseMonth = ref();
|
|
299
|
+
const chooseYear = ref();
|
|
300
|
+
const chooseDay = ref();
|
|
301
|
+
const previewMonth = ref(monthDes);
|
|
302
|
+
const previewYear = ref(currentYear);
|
|
303
|
+
const reverse = ref(false);
|
|
304
|
+
const chooseYears = ref([]);
|
|
305
|
+
const chooseMonths = ref([]);
|
|
306
|
+
const chooseDays = ref([]);
|
|
307
|
+
const chooseRangeYear = ref([]);
|
|
308
|
+
const chooseRangeMonth = ref([]);
|
|
309
|
+
const chooseRangeDay = ref([]);
|
|
310
|
+
const yearPanelEl = ref(null);
|
|
311
|
+
const monthPanelEl = ref(null);
|
|
312
|
+
const dayPanelEl = ref(null);
|
|
313
|
+
const componentProps = reactive({
|
|
314
|
+
allowedDates: props2.allowedDates,
|
|
315
|
+
type: props2.type,
|
|
316
|
+
color: props2.color,
|
|
317
|
+
firstDayOfWeek: props2.firstDayOfWeek,
|
|
318
|
+
min: props2.min,
|
|
319
|
+
max: props2.max,
|
|
320
|
+
showCurrent: props2.showCurrent,
|
|
321
|
+
multiple: props2.multiple,
|
|
322
|
+
range: props2.range,
|
|
323
|
+
buttonElevation: props2.buttonElevation
|
|
324
|
+
});
|
|
325
|
+
const getChoose = computed(() => ({
|
|
326
|
+
chooseMonth: chooseMonth.value,
|
|
327
|
+
chooseYear: chooseYear.value,
|
|
328
|
+
chooseDay: chooseDay.value,
|
|
329
|
+
chooseYears: chooseYears.value,
|
|
330
|
+
chooseMonths: chooseMonths.value,
|
|
331
|
+
chooseDays: chooseDays.value,
|
|
332
|
+
chooseRangeYear: chooseRangeYear.value,
|
|
333
|
+
chooseRangeMonth: chooseRangeMonth.value,
|
|
334
|
+
chooseRangeDay: chooseRangeDay.value
|
|
335
|
+
}));
|
|
336
|
+
const getPreview = computed(() => ({
|
|
337
|
+
previewMonth: previewMonth.value,
|
|
338
|
+
previewYear: previewYear.value
|
|
339
|
+
}));
|
|
340
|
+
const getYearTitle = computed(() => {
|
|
341
|
+
var _a;
|
|
342
|
+
const { multiple, range } = props2;
|
|
343
|
+
if (range) {
|
|
344
|
+
return chooseRangeYear.value.length ? `${chooseRangeYear.value[0]} ~ ${chooseRangeYear.value[1]}` : "";
|
|
345
|
+
}
|
|
346
|
+
return multiple ? `${chooseYears.value.length}${(pt || t)("datePickerSelected")}` : (_a = chooseYear.value) != null ? _a : "";
|
|
347
|
+
});
|
|
348
|
+
const getMonthTitle = computed(() => {
|
|
349
|
+
var _a, _b;
|
|
350
|
+
const { multiple, range } = props2;
|
|
351
|
+
if (range) {
|
|
352
|
+
return chooseRangeMonth.value.length ? `${chooseRangeMonth.value[0]} ~ ${chooseRangeMonth.value[1]}` : "";
|
|
353
|
+
}
|
|
354
|
+
let monthName = "";
|
|
355
|
+
if (chooseMonth.value) {
|
|
356
|
+
monthName = (_b = (_a = (pt || t)("datePickerMonthDict")) == null ? void 0 : _a[chooseMonth.value].name) != null ? _b : "";
|
|
357
|
+
}
|
|
358
|
+
return multiple ? `${chooseMonths.value.length}${(pt || t)("datePickerSelected")}` : monthName;
|
|
359
|
+
});
|
|
360
|
+
const getDateTitle = computed(() => {
|
|
361
|
+
var _a, _b, _c, _d;
|
|
362
|
+
const { multiple, range } = props2;
|
|
363
|
+
if (range) {
|
|
364
|
+
const formatRangeDays = chooseRangeDay.value.map((date) => dayjs(date).format("YYYY-MM-DD"));
|
|
365
|
+
return formatRangeDays.length ? `${formatRangeDays[0]} ~ ${formatRangeDays[1]}` : "";
|
|
366
|
+
}
|
|
367
|
+
if (multiple) return `${chooseDays.value.length}${(pt || t)("datePickerSelected")}`;
|
|
368
|
+
if (!chooseYear.value || !chooseMonth.value || !chooseDay.value) return "";
|
|
369
|
+
const weekIndex = dayjs(`${chooseYear.value}-${chooseMonth.value}-${chooseDay.value}`).day();
|
|
370
|
+
const week = WEEK_HEADER.find((value) => value === `${weekIndex}`);
|
|
371
|
+
const weekName = (_b = (_a = (pt || t)("datePickerWeekDict")) == null ? void 0 : _a[week].name) != null ? _b : "";
|
|
372
|
+
const monthName = (_d = (_c = (pt || t)("datePickerMonthDict")) == null ? void 0 : _c[chooseMonth.value].name) != null ? _d : "";
|
|
373
|
+
const showDay = padStart(chooseDay.value, 2, "0");
|
|
374
|
+
if ((pt || t)("lang") === "zh-CN") return `${chooseMonth.value}-${showDay} ${weekName.slice(0, 3)}`;
|
|
375
|
+
return `${weekName.slice(0, 3)}, ${monthName.slice(0, 3)} ${chooseDay.value}`;
|
|
376
|
+
});
|
|
377
|
+
const getPanelType = computed(() => {
|
|
378
|
+
if (props2.type === "year" || isYearPanel.value) return "year";
|
|
379
|
+
if (props2.type === "month" || isMonthPanel.value) return "month";
|
|
380
|
+
if (props2.type === "date") return "date";
|
|
381
|
+
return "";
|
|
382
|
+
});
|
|
383
|
+
const isUntouchable = computed(() => !props2.touchable || !getPanelType.value);
|
|
384
|
+
const slotProps = computed(() => {
|
|
385
|
+
var _a, _b;
|
|
386
|
+
const weekIndex = dayjs(`${chooseYear.value}-${chooseMonth.value}-${chooseDay.value}`).day();
|
|
387
|
+
const date = chooseDay.value ? padStart(chooseDay.value, 2, "0") : "";
|
|
388
|
+
return {
|
|
389
|
+
week: `${weekIndex}`,
|
|
390
|
+
year: (_a = chooseYear.value) != null ? _a : "",
|
|
391
|
+
month: (_b = chooseMonth.value) != null ? _b : "",
|
|
392
|
+
date
|
|
393
|
+
};
|
|
394
|
+
});
|
|
395
|
+
const formatRange = computed(
|
|
396
|
+
() => getChoose.value.chooseRangeDay.map((choose) => dayjs(choose).format("YYYY-MM-DD"))
|
|
397
|
+
);
|
|
398
|
+
const isSameYear = computed(() => chooseYear.value === previewYear.value);
|
|
399
|
+
const isSameMonth = computed(() => chooseMonth.value === previewMonth.value);
|
|
400
|
+
let startX = 0;
|
|
401
|
+
let startY = 0;
|
|
402
|
+
let checkType = "";
|
|
403
|
+
let touchDirection;
|
|
404
|
+
watch(
|
|
405
|
+
() => props2.modelValue,
|
|
406
|
+
(value) => {
|
|
407
|
+
if (!checkValue() || invalidFormatDate(value) || !value) return;
|
|
408
|
+
if (props2.range) {
|
|
409
|
+
if (!isArray(value)) return;
|
|
410
|
+
rangeDone.value = value.length !== 1;
|
|
411
|
+
rangeInit(value, props2.type);
|
|
412
|
+
} else if (props2.multiple) {
|
|
413
|
+
if (!isArray(value)) return;
|
|
414
|
+
multipleInit(value, props2.type);
|
|
415
|
+
} else {
|
|
416
|
+
dateInit(value);
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
{ immediate: true }
|
|
420
|
+
);
|
|
421
|
+
watch(getPanelType, resetState);
|
|
422
|
+
function clickEl(type) {
|
|
423
|
+
if (type === "year") isYearPanel.value = true;
|
|
424
|
+
else if (type === "month") isMonthPanel.value = true;
|
|
425
|
+
else {
|
|
426
|
+
isYearPanel.value = false;
|
|
427
|
+
isMonthPanel.value = false;
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
function handleTouchstart(event) {
|
|
431
|
+
if (isUntouchable.value) return;
|
|
432
|
+
const { clientX, clientY } = event.touches[0];
|
|
433
|
+
startX = clientX;
|
|
434
|
+
startY = clientY;
|
|
435
|
+
}
|
|
436
|
+
function getDirection(x, y) {
|
|
437
|
+
return x >= y && x > 20 ? "x" : "y";
|
|
438
|
+
}
|
|
439
|
+
function handleTouchmove(event) {
|
|
440
|
+
if (isUntouchable.value) return;
|
|
441
|
+
const { clientX, clientY } = event.touches[0];
|
|
442
|
+
const x = clientX - startX;
|
|
443
|
+
const y = clientY - startY;
|
|
444
|
+
touchDirection = getDirection(Math.abs(x), Math.abs(y));
|
|
445
|
+
checkType = x > 0 ? "prev" : "next";
|
|
446
|
+
}
|
|
447
|
+
function handleTouchend() {
|
|
448
|
+
return __async(this, null, function* () {
|
|
449
|
+
if (isUntouchable.value || touchDirection !== "x") return;
|
|
450
|
+
const componentRef = getPanelType.value === "year" ? yearPanelEl : getPanelType.value === "month" ? monthPanelEl : dayPanelEl;
|
|
451
|
+
yield doubleRaf();
|
|
452
|
+
componentRef.value.forwardRef(checkType);
|
|
453
|
+
resetState();
|
|
454
|
+
});
|
|
455
|
+
}
|
|
456
|
+
function updateRange(date, type) {
|
|
457
|
+
const rangeDate = type === "year" ? chooseRangeYear : type === "month" ? chooseRangeMonth : chooseRangeDay;
|
|
458
|
+
rangeDate.value = rangeDone.value ? [date, date] : [rangeDate.value[0], date];
|
|
459
|
+
rangeDone.value = !rangeDone.value;
|
|
460
|
+
if (rangeDone.value) {
|
|
461
|
+
const isChangeOrder = dayjs(rangeDate.value[0]).isAfter(rangeDate.value[1]);
|
|
462
|
+
const date2 = isChangeOrder ? [rangeDate.value[1], rangeDate.value[0]] : [...rangeDate.value];
|
|
463
|
+
call(props2["onUpdate:modelValue"], date2);
|
|
464
|
+
call(props2.onChange, date2);
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
function updateMultiple(date, type) {
|
|
468
|
+
const multipleDates = type === "year" ? chooseYears : type === "month" ? chooseMonths : chooseDays;
|
|
469
|
+
const formatType = type === "year" ? "YYYY" : type === "month" ? "YYYY-MM" : "YYYY-MM-DD";
|
|
470
|
+
const formatDates = multipleDates.value.map((date2) => dayjs(date2).format(formatType));
|
|
471
|
+
const index = formatDates.findIndex((choose) => choose === date);
|
|
472
|
+
if (index === -1) formatDates.push(date);
|
|
473
|
+
else formatDates.splice(index, 1);
|
|
474
|
+
call(props2["onUpdate:modelValue"], formatDates);
|
|
475
|
+
call(props2.onChange, formatDates);
|
|
476
|
+
}
|
|
477
|
+
function getReverse(dateType, date) {
|
|
478
|
+
if (!chooseYear.value || !chooseMonth.value) return false;
|
|
479
|
+
if (!isSameYear.value) return chooseYear.value > previewYear.value;
|
|
480
|
+
if (dateType === "year") return date < toNumber(chooseYear.value);
|
|
481
|
+
if (dateType === "month") return date < chooseMonth.value;
|
|
482
|
+
return isSameMonth.value ? date < toNumber(chooseDay.value) : chooseMonth.value > previewMonth.value;
|
|
483
|
+
}
|
|
484
|
+
function getChooseDay(day) {
|
|
485
|
+
const { readonly, range, multiple, onChange, "onUpdate:modelValue": updateModelValue } = props2;
|
|
486
|
+
if (day < 0 || readonly) return;
|
|
487
|
+
reverse.value = getReverse("day", day);
|
|
488
|
+
const date = `${previewYear.value}-${previewMonth.value}-${day}`;
|
|
489
|
+
const formatDate = dayjs(date).format("YYYY-MM-DD");
|
|
490
|
+
if (range) updateRange(formatDate, "day");
|
|
491
|
+
else if (multiple) updateMultiple(formatDate, "day");
|
|
492
|
+
else {
|
|
493
|
+
call(updateModelValue, formatDate);
|
|
494
|
+
call(onChange, formatDate);
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
function getChooseMonth(month) {
|
|
498
|
+
const { type, readonly, range, multiple, onChange, onPreview, "onUpdate:modelValue": updateModelValue } = props2;
|
|
499
|
+
reverse.value = getReverse("month", month);
|
|
500
|
+
if (type === "month" && !readonly) {
|
|
501
|
+
const date = `${previewYear.value}-${month}`;
|
|
502
|
+
if (range) updateRange(date, "month");
|
|
503
|
+
else if (multiple) updateMultiple(date, "month");
|
|
504
|
+
else {
|
|
505
|
+
call(updateModelValue, date);
|
|
506
|
+
call(onChange, date);
|
|
507
|
+
}
|
|
508
|
+
} else {
|
|
509
|
+
previewMonth.value = month;
|
|
510
|
+
call(
|
|
511
|
+
onPreview,
|
|
512
|
+
toNumber(previewYear.value),
|
|
513
|
+
toNumber(previewMonth.value),
|
|
514
|
+
type === "date" ? toNumber(chooseDay.value) : void 0
|
|
515
|
+
);
|
|
516
|
+
}
|
|
517
|
+
isMonthPanel.value = false;
|
|
518
|
+
}
|
|
519
|
+
function getChooseYear(year) {
|
|
520
|
+
const { type, readonly, range, multiple, onChange, onPreview, "onUpdate:modelValue": updateModelValue } = props2;
|
|
521
|
+
reverse.value = getReverse("year", year);
|
|
522
|
+
if (type === "year" && !readonly) {
|
|
523
|
+
if (range) updateRange(`${year}`, "year");
|
|
524
|
+
else if (multiple) updateMultiple(`${year}`, "year");
|
|
525
|
+
else {
|
|
526
|
+
call(updateModelValue, `${year}`);
|
|
527
|
+
call(onChange, `${year}`);
|
|
528
|
+
}
|
|
529
|
+
} else {
|
|
530
|
+
previewYear.value = `${year}`;
|
|
531
|
+
call(
|
|
532
|
+
onPreview,
|
|
533
|
+
toNumber(previewYear.value),
|
|
534
|
+
toNumber(previewMonth.value),
|
|
535
|
+
type === "date" ? toNumber(chooseDay.value) : void 0
|
|
536
|
+
);
|
|
537
|
+
}
|
|
538
|
+
isYearPanel.value = false;
|
|
539
|
+
}
|
|
540
|
+
function checkPreview(type, checkType2) {
|
|
541
|
+
const changeValue = checkType2 === "prev" ? -1 : 1;
|
|
542
|
+
if (type === "year") {
|
|
543
|
+
previewYear.value = `${toNumber(previewYear.value) + changeValue}`;
|
|
544
|
+
} else {
|
|
545
|
+
let checkIndex = toNumber(previewMonth.value) + changeValue;
|
|
546
|
+
if (checkIndex < 1) {
|
|
547
|
+
previewYear.value = `${toNumber(previewYear.value) - 1}`;
|
|
548
|
+
checkIndex = 12;
|
|
549
|
+
}
|
|
550
|
+
if (checkIndex > 12) {
|
|
551
|
+
previewYear.value = `${toNumber(previewYear.value) + 1}`;
|
|
552
|
+
checkIndex = 1;
|
|
553
|
+
}
|
|
554
|
+
previewMonth.value = MONTH_LIST.find((month) => toNumber(month) === checkIndex);
|
|
555
|
+
}
|
|
556
|
+
call(
|
|
557
|
+
props2.onPreview,
|
|
558
|
+
toNumber(previewYear.value),
|
|
559
|
+
toNumber(previewMonth.value),
|
|
560
|
+
props2.type === "date" ? toNumber(chooseDay.value) : void 0
|
|
561
|
+
);
|
|
562
|
+
}
|
|
563
|
+
function checkValue() {
|
|
564
|
+
if ((props2.multiple || props2.range) && !isArray(props2.modelValue)) {
|
|
565
|
+
console.error('[Varlet] DatePicker: type of prop "modelValue" should be an Array');
|
|
566
|
+
return false;
|
|
567
|
+
}
|
|
568
|
+
if (!props2.multiple && !props2.range && isArray(props2.modelValue)) {
|
|
569
|
+
console.error('[Varlet] DatePicker: type of prop "modelValue" should be a String');
|
|
570
|
+
return false;
|
|
571
|
+
}
|
|
572
|
+
return true;
|
|
573
|
+
}
|
|
574
|
+
function invalidFormatDate(date) {
|
|
575
|
+
if (isArray(date)) return false;
|
|
576
|
+
if (date === "Invalid Date") {
|
|
577
|
+
console.error('[Varlet] DatePicker: "modelValue" is an Invalid Date');
|
|
578
|
+
return true;
|
|
579
|
+
}
|
|
580
|
+
return false;
|
|
581
|
+
}
|
|
582
|
+
function rangeInit(value, type) {
|
|
583
|
+
const rangeDate = type === "year" ? chooseRangeYear : type === "month" ? chooseRangeMonth : chooseRangeDay;
|
|
584
|
+
const formatType = type === "year" ? "YYYY" : type === "month" ? "YYYY-MM" : "YYYY-MM-D";
|
|
585
|
+
const formatDateList = value.map((choose) => dayjs(choose).format(formatType)).slice(0, 2);
|
|
586
|
+
const isValid = rangeDate.value.some((date) => invalidFormatDate(date));
|
|
587
|
+
if (isValid) return;
|
|
588
|
+
rangeDate.value = formatDateList;
|
|
589
|
+
const isChangeOrder = dayjs(rangeDate.value[0]).isAfter(rangeDate.value[1]);
|
|
590
|
+
if (rangeDate.value.length === 2 && isChangeOrder) {
|
|
591
|
+
rangeDate.value = [rangeDate.value[1], rangeDate.value[0]];
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
function multipleInit(value, type) {
|
|
595
|
+
const rangeDate = type === "year" ? chooseYears : type === "month" ? chooseMonths : chooseDays;
|
|
596
|
+
const formatType = type === "year" ? "YYYY" : type === "month" ? "YYYY-MM" : "YYYY-MM-D";
|
|
597
|
+
const formatDateList = Array.from(new Set(value.map((choose) => dayjs(choose).format(formatType))));
|
|
598
|
+
rangeDate.value = formatDateList.filter((date) => date !== "Invalid Date");
|
|
599
|
+
}
|
|
600
|
+
function dateInit(value) {
|
|
601
|
+
const formatDate = dayjs(value).format("YYYY-MM-D");
|
|
602
|
+
if (invalidFormatDate(formatDate)) return;
|
|
603
|
+
const [yearValue, monthValue, dayValue] = formatDate.split("-");
|
|
604
|
+
const monthDes2 = MONTH_LIST.find((month) => month === monthValue);
|
|
605
|
+
chooseMonth.value = monthDes2;
|
|
606
|
+
chooseYear.value = yearValue;
|
|
607
|
+
chooseDay.value = dayValue;
|
|
608
|
+
previewMonth.value = monthDes2;
|
|
609
|
+
previewYear.value = yearValue;
|
|
610
|
+
}
|
|
611
|
+
function resetState() {
|
|
612
|
+
startY = 0;
|
|
613
|
+
startX = 0;
|
|
614
|
+
checkType = "";
|
|
615
|
+
touchDirection = void 0;
|
|
616
|
+
}
|
|
617
|
+
return {
|
|
618
|
+
yearPanelEl,
|
|
619
|
+
monthPanelEl,
|
|
620
|
+
dayPanelEl,
|
|
621
|
+
reverse,
|
|
622
|
+
currentDate,
|
|
623
|
+
chooseMonth,
|
|
624
|
+
chooseYear,
|
|
625
|
+
chooseDay,
|
|
626
|
+
previewYear,
|
|
627
|
+
isYearPanel,
|
|
628
|
+
isMonthPanel,
|
|
629
|
+
getMonthTitle,
|
|
630
|
+
getDateTitle,
|
|
631
|
+
getYearTitle,
|
|
632
|
+
getPanelType,
|
|
633
|
+
getChoose,
|
|
634
|
+
getPreview,
|
|
635
|
+
componentProps,
|
|
636
|
+
slotProps,
|
|
637
|
+
formatRange,
|
|
638
|
+
pt,
|
|
639
|
+
t,
|
|
640
|
+
n,
|
|
641
|
+
classes,
|
|
642
|
+
clickEl,
|
|
643
|
+
handleTouchstart,
|
|
644
|
+
handleTouchmove,
|
|
645
|
+
handleTouchend,
|
|
646
|
+
getChooseDay,
|
|
647
|
+
getChooseMonth,
|
|
648
|
+
getChooseYear,
|
|
649
|
+
checkPreview,
|
|
650
|
+
formatElevation
|
|
651
|
+
};
|
|
652
|
+
}
|
|
653
|
+
});
|
|
654
|
+
__sfc__.render = __render__;
|
|
655
|
+
var stdin_default = __sfc__;
|
|
656
|
+
export {
|
|
657
|
+
stdin_default as default
|
|
658
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root { --date-picker-border-radius: 4px; --date-picker-font-size: var(--font-size-md); --date-picker-min-width: 290px; --date-picker-main-color: rgba(0, 0, 0, 0.87); --date-picker-title-hint-color: #fff; --date-picker-title-hint-font-size: var(--font-size-md); --date-picker-title-height: 105px; --date-picker-title-padding: 16px; --date-picker-title-background: var(--color-primary); --date-picker-title-color: #fff; --date-picker-title-year-font-size: var(--font-size-md); --date-picker-title-year-font-weight: 500; --date-picker-title-year-margin-bottom: 8px; --date-picker-title-date-height: 48px; --date-picker-title-date-font-size: 34px; --date-picker-title-date-font-weight: 500; --date-picker-title-date-range-font-size: 20px; --date-picker-title-date-justify-content: normal; --date-picker-body-background-color: #fff; --date-picker-body-height: 280px; --date-picker-body-padding: 0; --date-picker-header-padding: 4px 16px; --date-picker-header-color: #555; --date-picker-actions-padding: 0 8px 12px 8px; --date-picker-header-arrow-filter: opacity(0.54); --month-picker-padding: 0 12px; --month-picker-item-width: 33%; --month-picker-item-height: 56px; --month-picker-item-button-max-width: 140px; --year-picker-padding: 0 12px; --year-picker-item-width: 33%; --year-picker-item-height: 56px; --year-picker-item-button-max-width: 140px; --day-picker-content-item-width: 14.28%; --day-picker-content-item-font-size: var(--font-size-sm); --day-picker-content-item-padding: 2px 0; --day-picker-content-item-button-width: 32px; --day-picker-content-item-button-height: 32px; --day-picker-content-item-button-font-size: var(--font-size-sm); --day-picker-head-item-color: rgba(0, 0, 0, 0.38); --day-picker-head-item-padding: 8px 0; --day-picker-head-item-font-weight: 600;}.var-date-picker { -webkit-tap-highlight-color: transparent; border-radius: var(--date-picker-border-radius); contain: layout style; display: flex; width: 100%; flex-direction: column; font-size: var(--date-picker-font-size); position: relative; min-width: var(--date-picker-min-width); overflow: hidden;}.var-date-picker ul { list-style: none; margin: 0; padding: 0;}.var-date-picker__title { min-height: var(--date-picker-title-height); padding: var(--date-picker-title-padding); color: var(--date-picker-title-color); background: var(--date-picker-title-background); display: flex; justify-content: space-between; flex-direction: column; flex-wrap: wrap;}.var-date-picker__title-select { display: inline-flex; align-items: center; justify-content: space-between; margin-bottom: var(--date-picker-title-year-margin-bottom);}.var-date-picker__title-hint { color: var(--date-picker-title-hint-color); font-size: var(--date-picker-title-hint-font-size);}.var-date-picker__title-year { cursor: pointer; -webkit-tap-highlight-color: transparent; font-size: var(--date-picker-title-year-font-size); font-weight: var(--date-picker-title-year-font-weight); transition: 0.3s var(--cubic-bezier); margin-bottom: 0;}.var-date-picker__title-year--active { opacity: 1;}.var-date-picker__title-date { height: var(--date-picker-title-date-height); overflow: hidden; font-size: var(--date-picker-title-date-font-size); text-align: left; font-weight: var(--date-picker-title-date-font-weight); position: relative; cursor: pointer; -webkit-tap-highlight-color: transparent; display: flex; align-items: center; justify-content: var(--date-picker-title-date-justify-content); opacity: 0.6; transition: 0.3s var(--cubic-bezier);}.var-date-picker__title-date--active { opacity: 1;}.var-date-picker__title-date--range { font-size: var(--date-picker-title-date-range-font-size);}.var-date-picker__body { position: relative; overflow: auto; height: var(--date-picker-body-height); background-color: var(--date-picker-body-background-color); padding: var(--date-picker-body-padding);}.var-date-picker__body::-webkit-scrollbar { display: none; width: 0; background: transparent;}.var-date-picker__actions { background-color: var(--date-picker-body-background-color); padding: var(--date-picker-actions-padding); display: flex; justify-content: flex-end;}.var-date-picker-header { padding: var(--date-picker-header-padding); align-items: center; display: flex; justify-content: space-between; position: relative; color: var(--date-picker-header-color); background-color: var(--date-picker-body-background-color);}.var-date-picker-header__value { flex: 1; text-align: center; position: relative; overflow: hidden; font-weight: 700; cursor: pointer; user-select: none;}.var-date-picker-header__value div { width: 100%;}.var-date-picker-header__arrow[var-date-picker-header-cover] { filter: var(--date-picker-header-arrow-filter);}.var-date-picker .var-month-picker__content { padding: var(--month-picker-padding);}.var-date-picker .var-month-picker__content ul { display: flex; flex-wrap: wrap; justify-content: space-between;}.var-date-picker .var-month-picker__content ul li { width: var(--month-picker-item-width); display: flex; height: var(--month-picker-item-height); align-items: center; justify-content: center;}.var-date-picker .var-month-picker__button[var-month-picker-cover] { width: 100%; max-width: var(--month-picker-item-button-max-width);}.var-date-picker .var-month-picker__button[var-date-picker-color-cover='true'] { color: var(--date-picker-main-color);}.var-date-picker .var-month-picker__button--disabled { color: var(--color-text-disabled) !important; cursor: not-allowed;}.var-date-picker .var-year-picker { padding: var(--year-picker-padding); display: flex; flex-wrap: wrap; justify-content: space-between;}.var-date-picker .var-year-picker li { width: var(--year-picker-item-width); display: flex; height: var(--year-picker-item-height); align-items: center; justify-content: center;}.var-date-picker .var-year-picker__button[var-year-picker-cover] { width: 100%; max-width: var(--year-picker-item-button-max-width);}.var-date-picker .var-year-picker__button[var-date-picker-color-cover='true'] { color: var(--date-picker-main-color);}.var-date-picker .var-year-picker__button--disabled { color: var(--color-text-disabled) !important; cursor: not-allowed;}.var-date-picker .var-day-picker__content ul { display: flex; flex-wrap: wrap;}.var-date-picker .var-day-picker__content ul li { position: relative; display: flex; justify-content: center; width: var(--day-picker-content-item-width); font-size: var(--day-picker-content-item-font-size); padding: var(--day-picker-content-item-padding);}.var-date-picker .var-day-picker__head li { color: var(--day-picker-head-item-color); padding: var(--day-picker-head-item-padding); font-weight: var(--day-picker-head-item-font-weight);}.var-date-picker .var-day-picker__button[var-day-picker-cover] { width: var(--day-picker-content-item-button-width); height: var(--day-picker-content-item-button-height); font-size: var(--day-picker-content-item-button-font-size);}.var-date-picker .var-day-picker__button:not(.var-day-picker__button--usable) { cursor: unset;}.var-date-picker .var-day-picker__button[var-date-picker-color-cover='true'] { color: var(--date-picker-main-color);}.var-date-picker .var-day-picker__button--disabled { color: var(--color-text-disabled) !important; cursor: not-allowed;}.var-date-picker-translatey-enter-from { opacity: 0; transform: translateY(100%);}.var-date-picker-translatey-enter-active,.var-date-picker-reverse-translatey-enter-active { transition: 0.3s var(--cubic-bezier);}.var-date-picker-translatey-leave-active,.var-date-picker-reverse-translatey-leave-active { position: absolute; transition: 0.3s var(--cubic-bezier);}.var-date-picker-translatey-leave-to { opacity: 0; transform: translateY(-100%);}.var-date-picker-reverse-translatey-enter-from { opacity: 0; transform: translateY(-100%);}.var-date-picker-reverse-translatey-leave-to { opacity: 0; transform: translateY(100%);}.var-date-picker-panel-fade-enter-from,.var-date-picker-panel-fade-leave-to { transition: 0.3s var(--cubic-bezier); opacity: 0;}.var-date-picker-panel-fade-leave-active { position: absolute;}.var-date-picker-translatex-enter-from { opacity: 0; transform: translateX(100%);}.var-date-picker-reverse-translatex-enter-from { opacity: 0; transform: translateX(-100%);}.var-date-picker-translatex-enter-active,.var-date-picker-reverse-translatex-enter-active { transition: 0.3s var(--cubic-bezier);}.var-date-picker-translatex-leave-active,.var-date-picker-reverse-translatex-leave-active { position: absolute; transition: 0.3s var(--cubic-bezier);}.var-date-picker-translatex-leave-to { opacity: 0; transform: translateX(-100%);}.var-date-picker-reverse-translatex-leave-to { opacity: 0; transform: translateX(100%);}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import DatePicker from "./DatePicker.mjs";
|
|
2
|
+
import { withInstall, withPropsDefaultsSetter } from "../utils/components.mjs";
|
|
3
|
+
import { props as datePickerProps } from "./props.mjs";
|
|
4
|
+
withInstall(DatePicker);
|
|
5
|
+
withPropsDefaultsSetter(DatePicker, datePickerProps);
|
|
6
|
+
const _DatePickerComponent = DatePicker;
|
|
7
|
+
var stdin_default = DatePicker;
|
|
8
|
+
export {
|
|
9
|
+
_DatePickerComponent,
|
|
10
|
+
datePickerProps,
|
|
11
|
+
stdin_default as default
|
|
12
|
+
};
|