@varlet/ui 1.26.9 → 1.27.0-alpha.1649265140569
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.en-US.md +1 -1
- package/README.md +1 -1
- package/es/action-sheet/ActionSheet.js +29 -27
- package/es/app-bar/AppBar.js +32 -27
- package/es/back-top/BackTop.js +9 -2
- package/es/badge/Badge.js +22 -14
- package/es/bottom-navigation/BottomNavigation.js +204 -0
- package/es/bottom-navigation/BottomNavigationSfc.css +0 -0
- package/es/bottom-navigation/BottomNavigationSfc.less +0 -0
- package/es/bottom-navigation/bottomNavigation.css +1 -0
- package/es/bottom-navigation/bottomNavigation.less +51 -0
- package/es/bottom-navigation/index.js +8 -0
- package/es/bottom-navigation/props.js +40 -0
- package/es/bottom-navigation/provide.js +17 -0
- package/es/bottom-navigation/style/index.js +4 -0
- package/es/bottom-navigation/style/less.js +4 -0
- package/es/bottom-navigation-item/BottomNavigationItem.js +122 -0
- package/es/bottom-navigation-item/BottomNavigationItemSfc.css +0 -0
- package/es/bottom-navigation-item/BottomNavigationItemSfc.less +0 -0
- package/es/bottom-navigation-item/bottomNavigationItem.css +1 -0
- package/es/bottom-navigation-item/bottomNavigationItem.less +78 -0
- package/es/bottom-navigation-item/index.js +8 -0
- package/es/bottom-navigation-item/props.js +22 -0
- package/es/bottom-navigation-item/provide.js +21 -0
- package/es/bottom-navigation-item/style/index.js +6 -0
- package/es/bottom-navigation-item/style/less.js +6 -0
- package/es/button/Button.js +12 -5
- package/es/card/Card.js +33 -28
- package/es/cell/Cell.js +26 -15
- package/es/checkbox/Checkbox.js +28 -26
- package/es/checkbox-group/CheckboxGroup.js +21 -25
- package/es/chip/Chip.js +16 -7
- package/es/chip/chip.css +1 -1
- package/es/chip/chip.less +11 -11
- package/es/col/Col.js +12 -5
- package/es/collapse/Collapse.js +15 -12
- package/es/collapse-item/CollapseItem.js +31 -30
- package/es/collapse-item/collapseItem.css +1 -1
- package/es/collapse-item/collapseItem.less +16 -16
- package/es/countdown/Countdown.js +14 -11
- package/es/counter/Counter.js +30 -27
- package/es/date-picker/DatePicker.js +28 -23
- package/es/date-picker/date-picker.css +1 -1
- package/es/date-picker/date-picker.less +22 -20
- package/es/date-picker/src/day-picker-panel.js +41 -34
- package/es/date-picker/src/month-picker-panel.js +27 -21
- package/es/date-picker/src/panel-header.js +16 -11
- package/es/date-picker/src/year-picker-panel.js +17 -9
- package/es/dialog/Dialog.js +36 -40
- package/es/divider/Divider.js +16 -12
- package/es/form/Form.js +11 -8
- package/es/form-details/FormDetails.js +27 -22
- package/es/icon/Icon.js +8 -1
- package/es/image/Image.js +19 -12
- package/es/image-preview/ImagePreview.js +35 -34
- package/es/index-anchor/IndexAnchor.js +8 -1
- package/es/index-bar/IndexBar.js +22 -20
- package/es/index.js +10 -0
- package/es/input/Input.js +45 -44
- package/es/lazy/index.js +2 -1
- package/es/less.js +2 -0
- package/es/list/List.js +39 -38
- package/es/loading/Loading.js +31 -23
- package/es/loading/loading.css +1 -1
- package/es/loading/loading.less +32 -32
- package/es/menu/Menu.js +12 -10
- package/es/option/Option.js +16 -11
- package/es/pagination/Pagination.js +34 -44
- package/es/pagination/pagination.css +1 -1
- package/es/pagination/pagination.less +8 -8
- package/es/picker/Picker.js +51 -47
- package/es/popup/Popup.js +9 -5
- package/es/progress/Progress.js +44 -35
- package/es/progress/progress.css +1 -1
- package/es/progress/progress.less +12 -12
- package/es/pull-refresh/PullRefresh.js +13 -10
- package/es/radio/Radio.js +25 -25
- package/es/radio-group/RadioGroup.js +19 -19
- package/es/rate/Rate.js +27 -25
- package/es/ripple/index.js +6 -2
- package/es/row/Row.js +11 -4
- package/es/select/Select.js +53 -54
- package/es/skeleton/Skeleton.js +70 -81
- package/es/slider/Slider.js +44 -40
- package/es/slider/slider.css +1 -1
- package/es/slider/slider.less +5 -5
- package/es/snackbar/Snackbar.js +9 -5
- package/es/snackbar/core.js +20 -26
- package/es/snackbar/snackbar.css +1 -1
- package/es/snackbar/snackbar.less +66 -68
- package/es/snackbar/style/index.js +1 -1
- package/es/snackbar/style/less.js +1 -1
- package/es/space/Space.js +8 -3
- package/es/step/Step.js +25 -23
- package/es/step/step.css +1 -1
- package/es/step/step.less +10 -10
- package/es/steps/Steps.js +12 -5
- package/es/sticky/Sticky.js +14 -7
- package/es/style-provider/StyleProvider.js +6 -2
- package/es/style.css +1 -1
- package/es/style.js +2 -0
- package/es/swipe/Swipe.js +22 -16
- package/es/swipe-item/SwipeItem.js +9 -4
- package/es/switch/Switch.js +25 -23
- package/es/switch/switch.css +1 -1
- package/es/switch/switch.less +2 -2
- package/es/tab/Tab.js +8 -1
- package/es/tab-item/TabItem.js +8 -1
- package/es/table/Table.js +27 -20
- package/es/tabs/Tabs.js +23 -14
- package/es/tabs-items/TabsItems.js +10 -5
- package/es/themes/dark/bottomNavigation.js +4 -0
- package/es/themes/dark/bottomNavigationItem.js +3 -0
- package/es/themes/dark/index.js +3 -1
- package/es/time-picker/TimePicker.js +47 -38
- package/es/time-picker/clock.js +26 -22
- package/es/time-picker/timePicker.css +1 -1
- package/es/time-picker/timePicker.less +11 -11
- package/es/umdIndex.js +10 -0
- package/es/uploader/Uploader.js +62 -57
- package/es/utils/components.js +35 -0
- package/es/varlet.esm.js +2093 -1504
- package/highlight/attributes.json +48 -0
- package/highlight/tags.json +20 -0
- package/highlight/web-types.json +155 -1
- package/lib/action-sheet/ActionSheet.js +30 -26
- package/lib/app-bar/AppBar.js +31 -24
- package/lib/back-top/BackTop.js +11 -2
- package/lib/badge/Badge.js +23 -13
- package/lib/bottom-navigation/BottomNavigation.js +221 -0
- package/lib/bottom-navigation/BottomNavigationSfc.css +0 -0
- package/lib/bottom-navigation/BottomNavigationSfc.less +0 -0
- package/lib/bottom-navigation/bottomNavigation.css +1 -0
- package/lib/bottom-navigation/bottomNavigation.less +51 -0
- package/lib/bottom-navigation/index.js +17 -0
- package/lib/bottom-navigation/props.js +45 -0
- package/lib/bottom-navigation/provide.js +27 -0
- package/lib/bottom-navigation/style/index.js +4 -0
- package/lib/bottom-navigation/style/less.js +4 -0
- package/lib/bottom-navigation-item/BottomNavigationItem.js +140 -0
- package/lib/bottom-navigation-item/BottomNavigationItemSfc.css +0 -0
- package/lib/bottom-navigation-item/BottomNavigationItemSfc.less +0 -0
- package/lib/bottom-navigation-item/bottomNavigationItem.css +1 -0
- package/lib/bottom-navigation-item/bottomNavigationItem.less +78 -0
- package/lib/bottom-navigation-item/index.js +17 -0
- package/lib/bottom-navigation-item/props.js +27 -0
- package/lib/bottom-navigation-item/provide.js +28 -0
- package/lib/bottom-navigation-item/style/index.js +6 -0
- package/lib/bottom-navigation-item/style/less.js +6 -0
- package/lib/button/Button.js +13 -4
- package/lib/card/Card.js +34 -27
- package/lib/cell/Cell.js +26 -13
- package/lib/checkbox/Checkbox.js +26 -23
- package/lib/checkbox-group/CheckboxGroup.js +19 -22
- package/lib/chip/Chip.js +18 -7
- package/lib/chip/chip.css +1 -1
- package/lib/chip/chip.less +11 -11
- package/lib/col/Col.js +14 -5
- package/lib/collapse/Collapse.js +15 -10
- package/lib/collapse-item/CollapseItem.js +31 -28
- package/lib/collapse-item/collapseItem.css +1 -1
- package/lib/collapse-item/collapseItem.less +16 -16
- package/lib/countdown/Countdown.js +14 -10
- package/lib/counter/Counter.js +29 -26
- package/lib/date-picker/DatePicker.js +30 -23
- package/lib/date-picker/date-picker.css +1 -1
- package/lib/date-picker/date-picker.less +22 -20
- package/lib/date-picker/src/day-picker-panel.js +41 -32
- package/lib/date-picker/src/month-picker-panel.js +27 -19
- package/lib/date-picker/src/panel-header.js +16 -9
- package/lib/date-picker/src/year-picker-panel.js +19 -9
- package/lib/dialog/Dialog.js +36 -38
- package/lib/divider/Divider.js +16 -10
- package/lib/form/Form.js +11 -6
- package/lib/form-details/FormDetails.js +27 -20
- package/lib/icon/Icon.js +10 -1
- package/lib/image/Image.js +20 -11
- package/lib/image-preview/ImagePreview.js +35 -33
- package/lib/index-anchor/IndexAnchor.js +10 -1
- package/lib/index-bar/IndexBar.js +24 -20
- package/lib/index.js +6 -0
- package/lib/input/Input.js +45 -43
- package/lib/lazy/index.js +3 -1
- package/lib/less.js +2 -0
- package/lib/list/List.js +39 -36
- package/lib/loading/Loading.js +33 -23
- package/lib/loading/loading.css +1 -1
- package/lib/loading/loading.less +32 -32
- package/lib/menu/Menu.js +12 -9
- package/lib/option/Option.js +16 -9
- package/lib/pagination/Pagination.js +36 -44
- package/lib/pagination/pagination.css +1 -1
- package/lib/pagination/pagination.less +8 -8
- package/lib/picker/Picker.js +51 -46
- package/lib/popup/Popup.js +9 -4
- package/lib/progress/Progress.js +45 -34
- package/lib/progress/progress.css +1 -1
- package/lib/progress/progress.less +12 -12
- package/lib/pull-refresh/PullRefresh.js +14 -10
- package/lib/radio/Radio.js +23 -22
- package/lib/radio-group/RadioGroup.js +17 -16
- package/lib/rate/Rate.js +27 -24
- package/lib/ripple/index.js +7 -2
- package/lib/row/Row.js +12 -3
- package/lib/select/Select.js +53 -53
- package/lib/skeleton/Skeleton.js +69 -78
- package/lib/slider/Slider.js +42 -38
- package/lib/slider/slider.css +1 -1
- package/lib/slider/slider.less +5 -5
- package/lib/snackbar/Snackbar.js +9 -4
- package/lib/snackbar/core.js +20 -25
- package/lib/snackbar/snackbar.css +1 -1
- package/lib/snackbar/snackbar.less +66 -68
- package/lib/space/Space.js +9 -3
- package/lib/step/Step.js +26 -22
- package/lib/step/step.css +1 -1
- package/lib/step/step.less +10 -10
- package/lib/steps/Steps.js +13 -4
- package/lib/sticky/Sticky.js +15 -6
- package/lib/style-provider/StyleProvider.js +8 -2
- package/lib/style.css +1 -1
- package/lib/style.js +2 -0
- package/lib/swipe/Swipe.js +23 -16
- package/lib/swipe-item/SwipeItem.js +10 -3
- package/lib/switch/Switch.js +23 -20
- package/lib/switch/switch.css +1 -1
- package/lib/switch/switch.less +2 -2
- package/lib/tab/Tab.js +10 -1
- package/lib/tab-item/TabItem.js +10 -1
- package/lib/table/Table.js +27 -18
- package/lib/tabs/Tabs.js +25 -14
- package/lib/tabs-items/TabsItems.js +11 -4
- package/lib/themes/dark/bottomNavigation.js +9 -0
- package/lib/themes/dark/bottomNavigationItem.js +8 -0
- package/lib/themes/dark/index.js +5 -1
- package/lib/time-picker/TimePicker.js +49 -38
- package/lib/time-picker/clock.js +26 -20
- package/lib/time-picker/timePicker.css +1 -1
- package/lib/time-picker/timePicker.less +11 -11
- package/lib/uploader/Uploader.js +60 -55
- package/lib/utils/components.js +39 -0
- package/package.json +5 -5
- package/types/bottomNavigation.d.ts +19 -0
- package/types/bottomNavigationItem.d.ts +16 -0
- package/types/global.d.ts +2 -0
- package/types/index.d.ts +2 -0
- package/umd/varlet.js +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
:root { --date-picker-border-radius: 4px; --date-picker-font-size: var(--font-size-md); --date-picker-min-width: 290px; --date-picker-height: 385px; --date-picker-main-color: rgba(0, 0, 0, 0.87); --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-body-background-color: rgba(0, 0, 0, 0); --picker-header-padding: 4px 16px; --month-picker-padding: 0 12px; --month-picker-item-width: 33%; --month-picker-item-height: 56px; --month-picker-item-button-max-width: 140px; --year-picker-font-weight: 400; --year-picker-item-padding: 8px 0; --year-picker-item-active-font-size: 26px; --year-picker-item-active-font-weight: 500; --year-picker-item-active-font-padding: 10px 0; --year-picker-item-active-color: var(--color-primary); --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: rgba(0, 0, 0, 0); border-radius: var(--date-picker-border-radius); contain: layout style; display: flex; flex-direction: column; font-size: var(--date-picker-font-size); position: relative; min-width: var(--date-picker-min-width); height: var(--date-picker-height); overflow: hidden;}.var-date-picker ul { list-style: none; margin: 0; padding: 0;}.var-date-
|
|
1
|
+
:root { --date-picker-border-radius: 4px; --date-picker-font-size: var(--font-size-md); --date-picker-min-width: 290px; --date-picker-height: 385px; --date-picker-main-color: rgba(0, 0, 0, 0.87); --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-body-background-color: rgba(0, 0, 0, 0); --picker-header-padding: 4px 16px; --month-picker-padding: 0 12px; --month-picker-item-width: 33%; --month-picker-item-height: 56px; --month-picker-item-button-max-width: 140px; --year-picker-font-weight: 400; --year-picker-item-padding: 8px 0; --year-picker-item-active-font-size: 26px; --year-picker-item-active-font-weight: 500; --year-picker-item-active-font-padding: 10px 0; --year-picker-item-active-color: var(--color-primary); --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: rgba(0, 0, 0, 0); border-radius: var(--date-picker-border-radius); contain: layout style; display: flex; flex-direction: column; font-size: var(--date-picker-font-size); position: relative; min-width: var(--date-picker-min-width); height: var(--date-picker-height); overflow: hidden;}.var-date-picker ul { list-style: none; margin: 0; padding: 0;}.var-date-picker__title { 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-year { opacity: 0.6; cursor: pointer; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); align-items: center; display: inline-flex; font-size: var(--date-picker-title-year-font-size); font-weight: var(--date-picker-title-year-font-weight); margin-bottom: var(--date-picker-title-year-margin-bottom); transition: 0.3s var(--cubic-bezier);}.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: rgba(0, 0, 0, 0); display: flex; align-items: center; 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 { flex: 1; position: relative; overflow: auto; background-color: var(--date-picker-body-background-color);}.var-date-picker .var-picker-header { padding: var(--picker-header-padding); align-items: center; display: flex; justify-content: space-between; position: relative;}.var-date-picker .var-picker-header__value { flex: 1; text-align: center; position: relative; overflow: hidden; font-weight: 700; cursor: pointer; user-select: none;}.var-date-picker .var-picker-header__value div { width: 100%;}.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 { width: 100%; height: 100%; font-weight: var(--year-picker-font-weight); padding: 0; margin: 0; list-style-type: none; overflow: auto; text-align: center;}.var-date-picker .var-year-picker__item { padding: var(--year-picker-item-padding); cursor: pointer; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);}.var-date-picker .var-year-picker__item--active { font-size: var(--year-picker-item-active-font-size); font-weight: var(--year-picker-item-active-font-weight); padding: var(--year-picker-item-active-font-padding); color: var(--year-picker-item-active-color);}.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%);}
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
padding: 0;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
|
|
95
|
+
&__title {
|
|
96
96
|
padding: var(--date-picker-title-padding);
|
|
97
97
|
color: var(--date-picker-title-color);
|
|
98
98
|
background: var(--date-picker-title-background);
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
flex-direction: column;
|
|
102
102
|
flex-wrap: wrap;
|
|
103
103
|
|
|
104
|
-
|
|
104
|
+
&-year {
|
|
105
105
|
opacity: 0.6;
|
|
106
106
|
cursor: pointer;
|
|
107
107
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
}
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
&-date {
|
|
121
121
|
height: var(--date-picker-title-date-height);
|
|
122
122
|
overflow: hidden;
|
|
123
123
|
font-size: var(--date-picker-title-date-font-size);
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
-
|
|
144
|
+
&__body {
|
|
145
145
|
flex: 1;
|
|
146
146
|
position: relative;
|
|
147
147
|
overflow: auto;
|
|
@@ -198,28 +198,26 @@
|
|
|
198
198
|
color: var(--date-picker-main-color);
|
|
199
199
|
}
|
|
200
200
|
|
|
201
|
-
&__button
|
|
201
|
+
&__button--disabled {
|
|
202
202
|
color: var(--color-text-disabled) !important;
|
|
203
203
|
cursor: not-allowed;
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
.var-year-picker {
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
text-align: center;
|
|
208
|
+
width: 100%;
|
|
209
|
+
height: 100%;
|
|
210
|
+
font-weight: var(--year-picker-font-weight);
|
|
211
|
+
padding: 0;
|
|
212
|
+
margin: 0;
|
|
213
|
+
list-style-type: none;
|
|
214
|
+
overflow: auto;
|
|
215
|
+
text-align: center;
|
|
217
216
|
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
}
|
|
217
|
+
&__item {
|
|
218
|
+
padding: var(--year-picker-item-padding);
|
|
219
|
+
cursor: pointer;
|
|
220
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
223
221
|
|
|
224
222
|
&--active {
|
|
225
223
|
font-size: var(--year-picker-item-active-font-size);
|
|
@@ -261,11 +259,15 @@
|
|
|
261
259
|
font-size: var(--day-picker-content-item-button-font-size);
|
|
262
260
|
}
|
|
263
261
|
|
|
262
|
+
&__button:not(.var-day-picker__button--usable) {
|
|
263
|
+
cursor: unset;
|
|
264
|
+
}
|
|
265
|
+
|
|
264
266
|
&__button[var-date-picker-color-cover='true'] {
|
|
265
267
|
color: var(--date-picker-main-color);
|
|
266
268
|
}
|
|
267
269
|
|
|
268
|
-
&__button
|
|
270
|
+
&__button--disabled {
|
|
269
271
|
color: var(--color-text-disabled) !important;
|
|
270
272
|
cursor: not-allowed;
|
|
271
273
|
}
|
|
@@ -20,6 +20,8 @@ var _props = require("../props");
|
|
|
20
20
|
|
|
21
21
|
var _shared = require("../../utils/shared");
|
|
22
22
|
|
|
23
|
+
var _components = require("../../utils/components");
|
|
24
|
+
|
|
23
25
|
var _locale = require("../../locale");
|
|
24
26
|
|
|
25
27
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -30,27 +32,24 @@ _dayjs.default.extend(_isSameOrBefore.default);
|
|
|
30
32
|
|
|
31
33
|
_dayjs.default.extend(_isSameOrAfter.default);
|
|
32
34
|
|
|
33
|
-
var
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
};
|
|
41
|
-
var _hoisted_3 = {
|
|
42
|
-
class: "var-day-picker__head"
|
|
43
|
-
};
|
|
44
|
-
var _hoisted_4 = {
|
|
45
|
-
class: "var-day-picker__body"
|
|
46
|
-
};
|
|
35
|
+
var {
|
|
36
|
+
n,
|
|
37
|
+
classes
|
|
38
|
+
} = (0, _components.createNamespace)('day-picker');
|
|
39
|
+
var {
|
|
40
|
+
n: nDate
|
|
41
|
+
} = (0, _components.createNamespace)('date-picker');
|
|
47
42
|
|
|
48
43
|
function render(_ctx, _cache) {
|
|
49
44
|
var _component_panel_header = (0, _vue.resolveComponent)("panel-header");
|
|
50
45
|
|
|
51
46
|
var _component_var_button = (0, _vue.resolveComponent)("var-button");
|
|
52
47
|
|
|
53
|
-
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("div",
|
|
48
|
+
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("div", {
|
|
49
|
+
class: (0, _vue.normalizeClass)(_ctx.n())
|
|
50
|
+
}, [(0, _vue.createElementVNode)("div", {
|
|
51
|
+
class: (0, _vue.normalizeClass)(_ctx.n('content'))
|
|
52
|
+
}, [(0, _vue.createVNode)(_component_panel_header, {
|
|
54
53
|
ref: "headerEl",
|
|
55
54
|
type: "day",
|
|
56
55
|
date: _ctx.preview,
|
|
@@ -60,11 +59,13 @@ function render(_ctx, _cache) {
|
|
|
60
59
|
}, null, 8
|
|
61
60
|
/* PROPS */
|
|
62
61
|
, ["date", "disabled", "onCheckPanel", "onCheckDate"]), (0, _vue.createVNode)(_vue.Transition, {
|
|
63
|
-
name: "
|
|
62
|
+
name: "" + _ctx.nDate() + (_ctx.reverse ? '-reverse' : '') + "-translatex"
|
|
64
63
|
}, {
|
|
65
64
|
default: (0, _vue.withCtx)(() => [((0, _vue.openBlock)(), (0, _vue.createElementBlock)("div", {
|
|
66
65
|
key: _ctx.panelKey
|
|
67
|
-
}, [(0, _vue.createElementVNode)("ul",
|
|
66
|
+
}, [(0, _vue.createElementVNode)("ul", {
|
|
67
|
+
class: (0, _vue.normalizeClass)(_ctx.n('head'))
|
|
68
|
+
}, [((0, _vue.openBlock)(true), (0, _vue.createElementBlock)(_vue.Fragment, null, (0, _vue.renderList)(_ctx.sortWeekList, week => {
|
|
68
69
|
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("li", {
|
|
69
70
|
key: week.index
|
|
70
71
|
}, (0, _vue.toDisplayString)(_ctx.getDayAbbr(week.index)), 1
|
|
@@ -72,14 +73,15 @@ function render(_ctx, _cache) {
|
|
|
72
73
|
);
|
|
73
74
|
}), 128
|
|
74
75
|
/* KEYED_FRAGMENT */
|
|
75
|
-
))]
|
|
76
|
+
))], 2
|
|
77
|
+
/* CLASS */
|
|
78
|
+
), (0, _vue.createElementVNode)("ul", {
|
|
79
|
+
class: (0, _vue.normalizeClass)(_ctx.n('body'))
|
|
80
|
+
}, [((0, _vue.openBlock)(true), (0, _vue.createElementBlock)(_vue.Fragment, null, (0, _vue.renderList)(_ctx.days, (day, index) => {
|
|
76
81
|
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("li", {
|
|
77
82
|
key: index
|
|
78
83
|
}, [(0, _vue.createVNode)(_component_var_button, (0, _vue.mergeProps)({
|
|
79
84
|
type: "primary",
|
|
80
|
-
class: ["var-day-picker__button", {
|
|
81
|
-
'var-day-picker__button--usable': day > 0
|
|
82
|
-
}],
|
|
83
85
|
"var-day-picker-cover": "",
|
|
84
86
|
round: "",
|
|
85
87
|
ripple: false
|
|
@@ -94,16 +96,22 @@ function render(_ctx, _cache) {
|
|
|
94
96
|
|
|
95
97
|
}, 1040
|
|
96
98
|
/* FULL_PROPS, DYNAMIC_SLOTS */
|
|
97
|
-
, ["
|
|
99
|
+
, ["onClick"])]);
|
|
98
100
|
}), 128
|
|
99
101
|
/* KEYED_FRAGMENT */
|
|
100
|
-
))]
|
|
102
|
+
))], 2
|
|
103
|
+
/* CLASS */
|
|
104
|
+
)]))]),
|
|
101
105
|
_: 1
|
|
102
106
|
/* STABLE */
|
|
103
107
|
|
|
104
108
|
}, 8
|
|
105
109
|
/* PROPS */
|
|
106
|
-
, ["name"])]
|
|
110
|
+
, ["name"])], 2
|
|
111
|
+
/* CLASS */
|
|
112
|
+
)], 2
|
|
113
|
+
/* CLASS */
|
|
114
|
+
);
|
|
107
115
|
}
|
|
108
116
|
|
|
109
117
|
var _default = (0, _vue.defineComponent)({
|
|
@@ -253,7 +261,8 @@ var _default = (0, _vue.defineComponent)({
|
|
|
253
261
|
return {
|
|
254
262
|
text: true,
|
|
255
263
|
outline: false,
|
|
256
|
-
textColor: ''
|
|
264
|
+
textColor: '',
|
|
265
|
+
class: n('button')
|
|
257
266
|
};
|
|
258
267
|
}
|
|
259
268
|
|
|
@@ -309,18 +318,16 @@ var _default = (0, _vue.defineComponent)({
|
|
|
309
318
|
if (disabled) return '';
|
|
310
319
|
if (computeOutline()) return color != null ? color : '';
|
|
311
320
|
if (dayExist()) return '';
|
|
312
|
-
return
|
|
321
|
+
return nDate() + "-color-cover";
|
|
313
322
|
};
|
|
314
323
|
|
|
315
|
-
var isCover = textColorOrCover().startsWith(
|
|
324
|
+
var isCover = textColorOrCover().startsWith(nDate());
|
|
316
325
|
return {
|
|
317
326
|
text: computeText(),
|
|
318
327
|
outline: computeOutline(),
|
|
319
328
|
textColor: isCover ? '' : textColorOrCover(),
|
|
320
|
-
|
|
321
|
-
class:
|
|
322
|
-
'var-day-picker__button-disabled': disabled
|
|
323
|
-
}
|
|
329
|
+
[nDate() + "-color-cover"]: isCover,
|
|
330
|
+
class: classes(n('button'), n('button--usable'), [disabled, n('button--disabled')])
|
|
324
331
|
};
|
|
325
332
|
};
|
|
326
333
|
|
|
@@ -332,7 +339,7 @@ var _default = (0, _vue.defineComponent)({
|
|
|
332
339
|
|
|
333
340
|
var chooseDay = (day, event) => {
|
|
334
341
|
var buttonEl = event.currentTarget;
|
|
335
|
-
if (buttonEl.classList.contains('
|
|
342
|
+
if (buttonEl.classList.contains(n('button--disabled'))) return;
|
|
336
343
|
emit('choose-day', day);
|
|
337
344
|
}; // expose for internal
|
|
338
345
|
|
|
@@ -350,6 +357,8 @@ var _default = (0, _vue.defineComponent)({
|
|
|
350
357
|
initHeader();
|
|
351
358
|
});
|
|
352
359
|
return {
|
|
360
|
+
n,
|
|
361
|
+
nDate,
|
|
353
362
|
days,
|
|
354
363
|
reverse,
|
|
355
364
|
headerEl,
|
|
@@ -20,6 +20,8 @@ var _button = _interopRequireDefault(require("../../button"));
|
|
|
20
20
|
|
|
21
21
|
var _shared = require("../../utils/shared");
|
|
22
22
|
|
|
23
|
+
var _components = require("../../utils/components");
|
|
24
|
+
|
|
23
25
|
var _locale = require("../../locale");
|
|
24
26
|
|
|
25
27
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -30,21 +32,24 @@ _dayjs.default.extend(_isSameOrBefore.default);
|
|
|
30
32
|
|
|
31
33
|
_dayjs.default.extend(_isSameOrAfter.default);
|
|
32
34
|
|
|
33
|
-
var
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
};
|
|
35
|
+
var {
|
|
36
|
+
n,
|
|
37
|
+
classes
|
|
38
|
+
} = (0, _components.createNamespace)('month-picker');
|
|
39
|
+
var {
|
|
40
|
+
n: nDate
|
|
41
|
+
} = (0, _components.createNamespace)('date-picker');
|
|
41
42
|
|
|
42
43
|
function render(_ctx, _cache) {
|
|
43
44
|
var _component_panel_header = (0, _vue.resolveComponent)("panel-header");
|
|
44
45
|
|
|
45
46
|
var _component_var_button = (0, _vue.resolveComponent)("var-button");
|
|
46
47
|
|
|
47
|
-
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("div",
|
|
48
|
+
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("div", {
|
|
49
|
+
class: (0, _vue.normalizeClass)(_ctx.n())
|
|
50
|
+
}, [(0, _vue.createElementVNode)("div", {
|
|
51
|
+
class: (0, _vue.normalizeClass)(_ctx.n('content'))
|
|
52
|
+
}, [(0, _vue.createVNode)(_component_panel_header, {
|
|
48
53
|
ref: "headerEl",
|
|
49
54
|
type: "month",
|
|
50
55
|
date: _ctx.preview,
|
|
@@ -54,7 +59,7 @@ function render(_ctx, _cache) {
|
|
|
54
59
|
}, null, 8
|
|
55
60
|
/* PROPS */
|
|
56
61
|
, ["date", "disabled", "onCheckPanel", "onCheckDate"]), (0, _vue.createVNode)(_vue.Transition, {
|
|
57
|
-
name: "
|
|
62
|
+
name: "" + _ctx.nDate() + (_ctx.reverse ? '-reverse' : '') + "-translatex"
|
|
58
63
|
}, {
|
|
59
64
|
default: (0, _vue.withCtx)(() => [((0, _vue.openBlock)(), (0, _vue.createElementBlock)("ul", {
|
|
60
65
|
key: _ctx.panelKey
|
|
@@ -63,7 +68,6 @@ function render(_ctx, _cache) {
|
|
|
63
68
|
key: month.index
|
|
64
69
|
}, [(0, _vue.createVNode)(_component_var_button, (0, _vue.mergeProps)({
|
|
65
70
|
type: "primary",
|
|
66
|
-
class: "var-month-picker__button",
|
|
67
71
|
"var-month-picker-cover": "",
|
|
68
72
|
ripple: false
|
|
69
73
|
}, _extends({}, _ctx.buttonProps(month.index)), {
|
|
@@ -86,7 +90,11 @@ function render(_ctx, _cache) {
|
|
|
86
90
|
|
|
87
91
|
}, 8
|
|
88
92
|
/* PROPS */
|
|
89
|
-
, ["name"])]
|
|
93
|
+
, ["name"])], 2
|
|
94
|
+
/* CLASS */
|
|
95
|
+
)], 2
|
|
96
|
+
/* CLASS */
|
|
97
|
+
);
|
|
90
98
|
}
|
|
91
99
|
|
|
92
100
|
var _default = (0, _vue.defineComponent)({
|
|
@@ -235,25 +243,23 @@ var _default = (0, _vue.defineComponent)({
|
|
|
235
243
|
if (disabled) return '';
|
|
236
244
|
if (computeOutline()) return color != null ? color : '';
|
|
237
245
|
if (monthExist()) return '';
|
|
238
|
-
return
|
|
246
|
+
return nDate() + "-color-cover";
|
|
239
247
|
};
|
|
240
248
|
|
|
241
|
-
var isCover = textColorOrCover().startsWith(
|
|
249
|
+
var isCover = textColorOrCover().startsWith(nDate());
|
|
242
250
|
return {
|
|
243
251
|
outline: computeOutline(),
|
|
244
252
|
text: computeText(),
|
|
245
253
|
color: !computeText() ? color : '',
|
|
246
254
|
textColor: isCover ? '' : textColorOrCover(),
|
|
247
|
-
|
|
248
|
-
class:
|
|
249
|
-
'var-month-picker__button-disabled': disabled
|
|
250
|
-
}
|
|
255
|
+
[nDate() + "-color-cover"]: isCover,
|
|
256
|
+
class: classes(n('button'), [disabled, n('button--disabled')])
|
|
251
257
|
};
|
|
252
258
|
};
|
|
253
259
|
|
|
254
260
|
var chooseMonth = (month, event) => {
|
|
255
261
|
var buttonEl = event.currentTarget;
|
|
256
|
-
if (buttonEl.classList.contains('
|
|
262
|
+
if (buttonEl.classList.contains(n('button--disabled'))) return;
|
|
257
263
|
emit('choose-month', month);
|
|
258
264
|
};
|
|
259
265
|
|
|
@@ -281,6 +287,8 @@ var _default = (0, _vue.defineComponent)({
|
|
|
281
287
|
immediate: true
|
|
282
288
|
});
|
|
283
289
|
return {
|
|
290
|
+
n,
|
|
291
|
+
nDate,
|
|
284
292
|
pack: _locale.pack,
|
|
285
293
|
MONTH_LIST: _props.MONTH_LIST,
|
|
286
294
|
headerEl,
|
|
@@ -12,22 +12,24 @@ var _vue = require("vue");
|
|
|
12
12
|
|
|
13
13
|
var _shared = require("../../utils/shared");
|
|
14
14
|
|
|
15
|
+
var _components = require("../../utils/components");
|
|
16
|
+
|
|
15
17
|
var _locale = require("../../locale");
|
|
16
18
|
|
|
17
19
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
18
20
|
|
|
19
|
-
var
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
class: "var-picker-header"
|
|
23
|
-
};
|
|
21
|
+
var {
|
|
22
|
+
n
|
|
23
|
+
} = (0, _components.createNamespace)('picker-header');
|
|
24
24
|
|
|
25
25
|
function render(_ctx, _cache) {
|
|
26
26
|
var _component_var_icon = (0, _vue.resolveComponent)("var-icon");
|
|
27
27
|
|
|
28
28
|
var _component_var_button = (0, _vue.resolveComponent)("var-button");
|
|
29
29
|
|
|
30
|
-
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("div",
|
|
30
|
+
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("div", {
|
|
31
|
+
class: (0, _vue.normalizeClass)(_ctx.n())
|
|
32
|
+
}, [(0, _vue.createVNode)(_component_var_button, {
|
|
31
33
|
round: "",
|
|
32
34
|
text: "",
|
|
33
35
|
style: {
|
|
@@ -45,7 +47,7 @@ function render(_ctx, _cache) {
|
|
|
45
47
|
}, 8
|
|
46
48
|
/* PROPS */
|
|
47
49
|
, ["disabled"]), (0, _vue.createElementVNode)("div", {
|
|
48
|
-
class:
|
|
50
|
+
class: (0, _vue.normalizeClass)(_ctx.n('value')),
|
|
49
51
|
onClick: _cache[1] || (_cache[1] = $event => _ctx.$emit('check-panel'))
|
|
50
52
|
}, [(0, _vue.createVNode)(_vue.Transition, {
|
|
51
53
|
name: "var-date-picker" + (_ctx.reverse ? '-reverse' : '') + "-translatex"
|
|
@@ -60,7 +62,9 @@ function render(_ctx, _cache) {
|
|
|
60
62
|
|
|
61
63
|
}, 8
|
|
62
64
|
/* PROPS */
|
|
63
|
-
, ["name"])]
|
|
65
|
+
, ["name"])], 2
|
|
66
|
+
/* CLASS */
|
|
67
|
+
), (0, _vue.createVNode)(_component_var_button, {
|
|
64
68
|
round: "",
|
|
65
69
|
text: "",
|
|
66
70
|
style: {
|
|
@@ -77,7 +81,9 @@ function render(_ctx, _cache) {
|
|
|
77
81
|
|
|
78
82
|
}, 8
|
|
79
83
|
/* PROPS */
|
|
80
|
-
, ["disabled"])]
|
|
84
|
+
, ["disabled"])], 2
|
|
85
|
+
/* CLASS */
|
|
86
|
+
);
|
|
81
87
|
}
|
|
82
88
|
|
|
83
89
|
var _default = (0, _vue.defineComponent)({
|
|
@@ -136,6 +142,7 @@ var _default = (0, _vue.defineComponent)({
|
|
|
136
142
|
forwardOrBackNum.value = 0;
|
|
137
143
|
});
|
|
138
144
|
return {
|
|
145
|
+
n,
|
|
139
146
|
reverse,
|
|
140
147
|
showDate,
|
|
141
148
|
checkDate
|
|
@@ -10,30 +10,38 @@ var _dayjs = _interopRequireDefault(require("dayjs"));
|
|
|
10
10
|
|
|
11
11
|
var _shared = require("../../utils/shared");
|
|
12
12
|
|
|
13
|
+
var _components = require("../../utils/components");
|
|
14
|
+
|
|
13
15
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
16
|
|
|
17
|
+
var {
|
|
18
|
+
n,
|
|
19
|
+
classes
|
|
20
|
+
} = (0, _components.createNamespace)('year-picker');
|
|
21
|
+
|
|
15
22
|
var _withScopeId = n => ((0, _vue.pushScopeId)(""), n = n(), (0, _vue.popScopeId)(), n);
|
|
16
23
|
|
|
17
|
-
var _hoisted_1 =
|
|
18
|
-
class: "var-year-picker__panel"
|
|
19
|
-
};
|
|
20
|
-
var _hoisted_2 = ["onClick"];
|
|
24
|
+
var _hoisted_1 = ["onClick"];
|
|
21
25
|
|
|
22
26
|
function render(_ctx, _cache) {
|
|
23
|
-
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("ul",
|
|
27
|
+
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("ul", {
|
|
28
|
+
class: (0, _vue.normalizeClass)(_ctx.n())
|
|
29
|
+
}, [((0, _vue.openBlock)(true), (0, _vue.createElementBlock)(_vue.Fragment, null, (0, _vue.renderList)(_ctx.yearList, year => {
|
|
24
30
|
return (0, _vue.openBlock)(), (0, _vue.createElementBlock)("li", {
|
|
25
31
|
key: year,
|
|
26
|
-
class: (0, _vue.normalizeClass)([year === _ctx.toNumber(_ctx.preview)
|
|
32
|
+
class: (0, _vue.normalizeClass)(_ctx.classes(_ctx.n('item'), [year === _ctx.toNumber(_ctx.preview), _ctx.n('item--active')])),
|
|
27
33
|
style: (0, _vue.normalizeStyle)({
|
|
28
34
|
color: year === _ctx.toNumber(_ctx.preview) ? _ctx.componentProps.color : ''
|
|
29
35
|
}),
|
|
30
36
|
onClick: $event => _ctx.chooseYear(year)
|
|
31
37
|
}, (0, _vue.toDisplayString)(year), 15
|
|
32
38
|
/* TEXT, CLASS, STYLE, PROPS */
|
|
33
|
-
,
|
|
39
|
+
, _hoisted_1);
|
|
34
40
|
}), 128
|
|
35
41
|
/* KEYED_FRAGMENT */
|
|
36
|
-
))]
|
|
42
|
+
))], 2
|
|
43
|
+
/* CLASS */
|
|
44
|
+
);
|
|
37
45
|
}
|
|
38
46
|
|
|
39
47
|
var _default = (0, _vue.defineComponent)({
|
|
@@ -94,12 +102,14 @@ var _default = (0, _vue.defineComponent)({
|
|
|
94
102
|
};
|
|
95
103
|
|
|
96
104
|
(0, _vue.onMounted)(() => {
|
|
97
|
-
var activeEl = document.querySelector('
|
|
105
|
+
var activeEl = document.querySelector("." + n('item--active'));
|
|
98
106
|
activeEl == null ? void 0 : activeEl.scrollIntoView({
|
|
99
107
|
block: 'center'
|
|
100
108
|
});
|
|
101
109
|
});
|
|
102
110
|
return {
|
|
111
|
+
n,
|
|
112
|
+
classes,
|
|
103
113
|
yearList,
|
|
104
114
|
chooseYear,
|
|
105
115
|
toNumber: _shared.toNumber
|