@kengic/uni 0.3.2-beta.3 → 0.3.2-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/kengic-uni.js +2 -1371
- package/dist/src/index.d.ts +0 -1
- package/dist/uni-ui/index.ts +5 -0
- package/dist/uni-ui/uni-badge/uni-badge.vue +253 -0
- package/dist/uni-ui/uni-breadcrumb/uni-breadcrumb.vue +41 -0
- package/dist/uni-ui/uni-breadcrumb-item/uni-breadcrumb-item.vue +121 -0
- package/dist/uni-ui/uni-calendar/calendar.js +546 -0
- package/dist/uni-ui/uni-calendar/i18n/en.json +12 -0
- package/dist/uni-ui/uni-calendar/i18n/index.js +8 -0
- package/dist/uni-ui/uni-calendar/i18n/zh-Hans.json +12 -0
- package/dist/uni-ui/uni-calendar/i18n/zh-Hant.json +12 -0
- package/dist/uni-ui/uni-calendar/uni-calendar-item.vue +187 -0
- package/dist/uni-ui/uni-calendar/uni-calendar.vue +566 -0
- package/dist/uni-ui/uni-calendar/util.js +360 -0
- package/dist/uni-ui/uni-card/uni-card.vue +281 -0
- package/dist/uni-ui/uni-col/uni-col.vue +317 -0
- package/dist/uni-ui/uni-collapse/uni-collapse.vue +147 -0
- package/dist/uni-ui/uni-collapse-item/uni-collapse-item.vue +402 -0
- package/dist/uni-ui/uni-combox/uni-combox.vue +294 -0
- package/dist/uni-ui/uni-countdown/i18n/en.json +6 -0
- package/dist/uni-ui/uni-countdown/i18n/index.js +8 -0
- package/dist/uni-ui/uni-countdown/i18n/zh-Hans.json +6 -0
- package/dist/uni-ui/uni-countdown/i18n/zh-Hant.json +6 -0
- package/dist/uni-ui/uni-countdown/uni-countdown.vue +267 -0
- package/dist/uni-ui/uni-data-checkbox/uni-data-checkbox.vue +821 -0
- package/dist/uni-ui/uni-data-picker/keypress.js +45 -0
- package/dist/uni-ui/uni-data-picker/uni-data-picker.vue +551 -0
- package/dist/uni-ui/uni-data-pickerview/uni-data-picker.js +622 -0
- package/dist/uni-ui/uni-data-pickerview/uni-data-pickerview.vue +323 -0
- package/dist/uni-ui/uni-data-select/uni-data-select.vue +517 -0
- package/dist/uni-ui/uni-dateformat/date-format.js +200 -0
- package/dist/uni-ui/uni-dateformat/uni-dateformat.vue +88 -0
- package/dist/uni-ui/uni-datetime-picker/calendar-item.vue +177 -0
- package/dist/uni-ui/uni-datetime-picker/calendar.vue +928 -0
- package/dist/uni-ui/uni-datetime-picker/i18n/en.json +22 -0
- package/dist/uni-ui/uni-datetime-picker/i18n/index.js +8 -0
- package/dist/uni-ui/uni-datetime-picker/i18n/zh-Hans.json +22 -0
- package/dist/uni-ui/uni-datetime-picker/i18n/zh-Hant.json +22 -0
- package/dist/uni-ui/uni-datetime-picker/time-picker.vue +934 -0
- package/dist/uni-ui/uni-datetime-picker/uni-datetime-picker.vue +1026 -0
- package/dist/uni-ui/uni-datetime-picker/util.js +403 -0
- package/dist/uni-ui/uni-drawer/keypress.js +45 -0
- package/dist/uni-ui/uni-drawer/uni-drawer.vue +181 -0
- package/dist/uni-ui/uni-easyinput/common.js +56 -0
- package/dist/uni-ui/uni-easyinput/uni-easyinput.vue +660 -0
- package/dist/uni-ui/uni-fab/uni-fab.vue +491 -0
- package/dist/uni-ui/uni-fav/i18n/en.json +4 -0
- package/dist/uni-ui/uni-fav/i18n/index.js +8 -0
- package/dist/uni-ui/uni-fav/i18n/zh-Hans.json +4 -0
- package/dist/uni-ui/uni-fav/i18n/zh-Hant.json +4 -0
- package/dist/uni-ui/uni-fav/uni-fav.vue +161 -0
- package/dist/uni-ui/uni-file-picker/choose-and-upload-file.js +224 -0
- package/dist/uni-ui/uni-file-picker/uni-file-picker.vue +667 -0
- package/dist/uni-ui/uni-file-picker/upload-file.vue +325 -0
- package/dist/uni-ui/uni-file-picker/upload-image.vue +292 -0
- package/dist/uni-ui/uni-file-picker/utils.js +109 -0
- package/dist/uni-ui/uni-forms/uni-forms.vue +398 -0
- package/dist/uni-ui/uni-forms/utils.js +293 -0
- package/dist/uni-ui/uni-forms/validate.js +486 -0
- package/dist/uni-ui/uni-forms-item/uni-forms-item.vue +601 -0
- package/dist/uni-ui/uni-goods-nav/i18n/en.json +6 -0
- package/dist/uni-ui/uni-goods-nav/i18n/index.js +8 -0
- package/dist/uni-ui/uni-goods-nav/i18n/zh-Hans.json +6 -0
- package/dist/uni-ui/uni-goods-nav/i18n/zh-Hant.json +6 -0
- package/dist/uni-ui/uni-goods-nav/uni-goods-nav.vue +229 -0
- package/dist/uni-ui/uni-grid/uni-grid.vue +143 -0
- package/dist/uni-ui/uni-grid-item/uni-grid-item.vue +129 -0
- package/dist/uni-ui/uni-group/uni-group.vue +134 -0
- package/dist/uni-ui/uni-icons/icons.js +1169 -0
- package/dist/uni-ui/uni-icons/uni-icons.vue +96 -0
- package/dist/uni-ui/uni-icons/uniicons.css +663 -0
- package/dist/uni-ui/uni-icons/uniicons.ttf +0 -0
- package/dist/uni-ui/uni-indexed-list/uni-indexed-list-item.vue +144 -0
- package/dist/uni-ui/uni-indexed-list/uni-indexed-list.vue +367 -0
- package/dist/uni-ui/uni-link/uni-link.vue +128 -0
- package/dist/uni-ui/uni-list/uni-list.vue +123 -0
- package/dist/uni-ui/uni-list/uni-refresh.vue +65 -0
- package/dist/uni-ui/uni-list/uni-refresh.wxs +87 -0
- package/dist/uni-ui/uni-list-ad/uni-list-ad.vue +107 -0
- package/dist/uni-ui/uni-list-chat/uni-list-chat.scss +58 -0
- package/dist/uni-ui/uni-list-chat/uni-list-chat.vue +593 -0
- package/dist/uni-ui/uni-list-item/uni-list-item.vue +534 -0
- package/dist/uni-ui/uni-load-more/i18n/en.json +5 -0
- package/dist/uni-ui/uni-load-more/i18n/index.js +8 -0
- package/dist/uni-ui/uni-load-more/i18n/zh-Hans.json +5 -0
- package/dist/uni-ui/uni-load-more/i18n/zh-Hant.json +5 -0
- package/dist/uni-ui/uni-load-more/uni-load-more.vue +399 -0
- package/dist/uni-ui/uni-nav-bar/uni-nav-bar.vue +357 -0
- package/dist/uni-ui/uni-nav-bar/uni-status-bar.vue +24 -0
- package/dist/uni-ui/uni-notice-bar/uni-notice-bar.vue +426 -0
- package/dist/uni-ui/uni-number-box/uni-number-box.vue +221 -0
- package/dist/uni-ui/uni-pagination/i18n/en.json +5 -0
- package/dist/uni-ui/uni-pagination/i18n/es.json +5 -0
- package/dist/uni-ui/uni-pagination/i18n/fr.json +5 -0
- package/dist/uni-ui/uni-pagination/i18n/index.js +12 -0
- package/dist/uni-ui/uni-pagination/i18n/zh-Hans.json +5 -0
- package/dist/uni-ui/uni-pagination/i18n/zh-Hant.json +5 -0
- package/dist/uni-ui/uni-pagination/uni-pagination.vue +465 -0
- package/dist/uni-ui/uni-popup/i18n/en.json +7 -0
- package/dist/uni-ui/uni-popup/i18n/index.js +8 -0
- package/dist/uni-ui/uni-popup/i18n/zh-Hans.json +7 -0
- package/dist/uni-ui/uni-popup/i18n/zh-Hant.json +7 -0
- package/dist/uni-ui/uni-popup/keypress.js +45 -0
- package/dist/uni-ui/uni-popup/popup.js +26 -0
- package/dist/uni-ui/uni-popup/uni-popup.vue +473 -0
- package/dist/uni-ui/uni-popup-dialog/keypress.js +45 -0
- package/dist/uni-ui/uni-popup-dialog/uni-popup-dialog.vue +275 -0
- package/dist/uni-ui/uni-popup-message/uni-popup-message.vue +143 -0
- package/dist/uni-ui/uni-popup-share/uni-popup-share.vue +187 -0
- package/dist/uni-ui/uni-rate/uni-rate.vue +365 -0
- package/dist/uni-ui/uni-row/uni-row.vue +190 -0
- package/dist/uni-ui/uni-scss/changelog.md +8 -0
- package/dist/uni-ui/uni-scss/index.scss +1 -0
- package/dist/uni-ui/uni-scss/package.json +82 -0
- package/dist/uni-ui/uni-scss/readme.md +4 -0
- package/dist/uni-ui/uni-scss/styles/index.scss +7 -0
- package/dist/uni-ui/uni-scss/styles/setting/_border.scss +3 -0
- package/dist/uni-ui/uni-scss/styles/setting/_color.scss +66 -0
- package/dist/uni-ui/uni-scss/styles/setting/_radius.scss +55 -0
- package/dist/uni-ui/uni-scss/styles/setting/_space.scss +56 -0
- package/dist/uni-ui/uni-scss/styles/setting/_styles.scss +167 -0
- package/dist/uni-ui/uni-scss/styles/setting/_text.scss +24 -0
- package/dist/uni-ui/uni-scss/styles/setting/_variables.scss +146 -0
- package/dist/uni-ui/uni-scss/styles/tools/functions.scss +19 -0
- package/dist/uni-ui/uni-scss/theme.scss +31 -0
- package/dist/uni-ui/uni-scss/variables.scss +62 -0
- package/dist/uni-ui/uni-search-bar/i18n/en.json +4 -0
- package/dist/uni-ui/uni-search-bar/i18n/index.js +8 -0
- package/dist/uni-ui/uni-search-bar/i18n/zh-Hans.json +4 -0
- package/dist/uni-ui/uni-search-bar/i18n/zh-Hant.json +4 -0
- package/dist/uni-ui/uni-search-bar/uni-search-bar.vue +298 -0
- package/dist/uni-ui/uni-section/uni-section.vue +167 -0
- package/dist/uni-ui/uni-segmented-control/uni-segmented-control.vue +145 -0
- package/dist/uni-ui/uni-steps/uni-steps.vue +269 -0
- package/dist/uni-ui/uni-swipe-action/uni-swipe-action.vue +60 -0
- package/dist/uni-ui/uni-swipe-action-item/bindingx.js +302 -0
- package/dist/uni-ui/uni-swipe-action-item/isPC.js +12 -0
- package/dist/uni-ui/uni-swipe-action-item/mpalipay.js +195 -0
- package/dist/uni-ui/uni-swipe-action-item/mpother.js +260 -0
- package/dist/uni-ui/uni-swipe-action-item/mpwxs.js +84 -0
- package/dist/uni-ui/uni-swipe-action-item/render.js +270 -0
- package/dist/uni-ui/uni-swipe-action-item/uni-swipe-action-item.vue +347 -0
- package/dist/uni-ui/uni-swipe-action-item/wx.wxs +341 -0
- package/dist/uni-ui/uni-swiper-dot/uni-swiper-dot.vue +218 -0
- package/dist/uni-ui/uni-table/uni-table.vue +455 -0
- package/dist/uni-ui/uni-tag/uni-tag.vue +252 -0
- package/dist/uni-ui/uni-tbody/uni-tbody.vue +29 -0
- package/dist/uni-ui/uni-td/uni-td.vue +90 -0
- package/dist/uni-ui/uni-th/filter-dropdown.vue +511 -0
- package/dist/uni-ui/uni-th/uni-th.vue +285 -0
- package/dist/uni-ui/uni-thead/uni-thead.vue +129 -0
- package/dist/uni-ui/uni-title/uni-title.vue +171 -0
- package/dist/uni-ui/uni-tooltip/uni-tooltip.vue +68 -0
- package/dist/uni-ui/uni-tr/table-checkbox.vue +179 -0
- package/dist/uni-ui/uni-tr/uni-tr.vue +171 -0
- package/dist/uni-ui/uni-transition/createAnimation.js +131 -0
- package/dist/uni-ui/uni-transition/uni-transition.vue +281 -0
- package/package.json +10 -10
- package/dist/index.css +0 -1
- package/dist/src/components/index.d.ts +0 -5
- package/dist/src/components/uni-ui/uni-badge/uni-badge.vue.d.ts +0 -108
- package/dist/src/components/uni-ui/uni-breadcrumb/uni-breadcrumb.vue.d.ts +0 -23
- package/dist/src/components/uni-ui/uni-breadcrumb-item/uni-breadcrumb-item.vue.d.ts +0 -30
- package/dist/src/components/uni-ui/uni-calendar/calendar.d.ts +0 -67
- package/dist/src/components/uni-ui/uni-calendar/i18n/index.d.ts +0 -39
- package/dist/src/components/uni-ui/uni-calendar/uni-calendar-item.vue.d.ts +0 -47
- package/dist/src/components/uni-ui/uni-calendar/uni-calendar.vue.d.ts +0 -166
- package/dist/src/components/uni-ui/uni-calendar/util.d.ts +0 -211
- package/dist/src/components/uni-ui/uni-card/uni-card.vue.d.ts +0 -117
- package/dist/src/components/uni-ui/uni-col/uni-col.vue.d.ts +0 -70
- package/dist/src/components/uni-ui/uni-collapse/uni-collapse.vue.d.ts +0 -45
- package/dist/src/components/uni-ui/uni-collapse-item/uni-collapse-item.vue.d.ts +0 -102
- package/dist/src/components/uni-ui/uni-combox/uni-combox.vue.d.ts +0 -95
- package/dist/src/components/uni-ui/uni-countdown/i18n/index.d.ts +0 -21
- package/dist/src/components/uni-ui/uni-countdown/uni-countdown.vue.d.ts +0 -158
- package/dist/src/components/uni-ui/uni-data-checkbox/uni-data-checkbox.vue.d.ts +0 -192
- package/dist/src/components/uni-ui/uni-data-picker/uni-data-picker.vue.d.ts +0 -267
- package/dist/src/components/uni-ui/uni-data-pickerview/uni-data-picker.d.ts +0 -221
- package/dist/src/components/uni-ui/uni-data-pickerview/uni-data-pickerview.vue.d.ts +0 -169
- package/dist/src/components/uni-ui/uni-data-select/uni-data-select.vue.d.ts +0 -125
- package/dist/src/components/uni-ui/uni-dateformat/date-format.d.ts +0 -6
- package/dist/src/components/uni-ui/uni-dateformat/uni-dateformat.vue.d.ts +0 -57
- package/dist/src/components/uni-ui/uni-datetime-picker/calendar-item.vue.d.ts +0 -44
- package/dist/src/components/uni-ui/uni-datetime-picker/calendar.vue.d.ts +0 -253
- package/dist/src/components/uni-ui/uni-datetime-picker/i18n/index.d.ts +0 -69
- package/dist/src/components/uni-ui/uni-datetime-picker/time-picker.vue.d.ts +0 -225
- package/dist/src/components/uni-ui/uni-datetime-picker/uni-datetime-picker.vue.d.ts +0 -236
- package/dist/src/components/uni-ui/uni-datetime-picker/util.d.ts +0 -171
- package/dist/src/components/uni-ui/uni-drawer/keypress.d.ts +0 -14
- package/dist/src/components/uni-ui/uni-drawer/uni-drawer.vue.d.ts +0 -78
- package/dist/src/components/uni-ui/uni-easyinput/uni-easyinput.vue.d.ts +0 -269
- package/dist/src/components/uni-ui/uni-fab/uni-fab.vue.d.ts +0 -109
- package/dist/src/components/uni-ui/uni-fav/i18n/index.d.ts +0 -15
- package/dist/src/components/uni-ui/uni-fav/uni-fav.vue.d.ts +0 -99
- package/dist/src/components/uni-ui/uni-file-picker/choose-and-upload-file.d.ts +0 -4
- package/dist/src/components/uni-ui/uni-file-picker/uni-file-picker.vue.d.ts +0 -254
- package/dist/src/components/uni-ui/uni-file-picker/upload-file.vue.d.ts +0 -81
- package/dist/src/components/uni-ui/uni-file-picker/upload-image.vue.d.ts +0 -90
- package/dist/src/components/uni-ui/uni-file-picker/utils.d.ts +0 -22
- package/dist/src/components/uni-ui/uni-forms/uni-forms.vue.d.ts +0 -160
- package/dist/src/components/uni-ui/uni-forms/utils.d.ts +0 -20
- package/dist/src/components/uni-ui/uni-forms/validate.d.ts +0 -42
- package/dist/src/components/uni-ui/uni-forms-item/uni-forms-item.vue.d.ts +0 -127
- package/dist/src/components/uni-ui/uni-goods-nav/i18n/index.d.ts +0 -21
- package/dist/src/components/uni-ui/uni-goods-nav/uni-goods-nav.vue.d.ts +0 -61
- package/dist/src/components/uni-ui/uni-grid/uni-grid.vue.d.ts +0 -59
- package/dist/src/components/uni-ui/uni-grid-item/uni-grid-item.vue.d.ts +0 -26
- package/dist/src/components/uni-ui/uni-group/uni-group.vue.d.ts +0 -52
- package/dist/src/components/uni-ui/uni-icons/icons.d.ts +0 -15
- package/dist/src/components/uni-ui/uni-icons/uni-icons.vue.d.ts +0 -56
- package/dist/src/components/uni-ui/uni-indexed-list/uni-indexed-list-item.vue.d.ts +0 -45
- package/dist/src/components/uni-ui/uni-indexed-list/uni-indexed-list.vue.d.ts +0 -49
- package/dist/src/components/uni-ui/uni-link/uni-link.vue.d.ts +0 -75
- package/dist/src/components/uni-ui/uni-list/uni-list.vue.d.ts +0 -53
- package/dist/src/components/uni-ui/uni-list/uni-refresh.vue.d.ts +0 -22
- package/dist/src/components/uni-ui/uni-list-ad/uni-list-ad.vue.d.ts +0 -25
- package/dist/src/components/uni-ui/uni-list-chat/uni-list-chat.vue.d.ts +0 -123
- package/dist/src/components/uni-ui/uni-list-item/uni-list-item.vue.d.ts +0 -248
- package/dist/src/components/uni-ui/uni-load-more/i18n/index.d.ts +0 -18
- package/dist/src/components/uni-ui/uni-load-more/uni-load-more.vue.d.ts +0 -89
- package/dist/src/components/uni-ui/uni-nav-bar/uni-nav-bar.vue.d.ts +0 -163
- package/dist/src/components/uni-ui/uni-nav-bar/uni-status-bar.vue.d.ts +0 -4
- package/dist/src/components/uni-ui/uni-notice-bar/uni-notice-bar.vue.d.ts +0 -138
- package/dist/src/components/uni-ui/uni-number-box/uni-number-box.vue.d.ts +0 -90
- package/dist/src/components/uni-ui/uni-pagination/i18n/index.d.ts +0 -28
- package/dist/src/components/uni-ui/uni-pagination/uni-pagination.vue.d.ts +0 -127
- package/dist/src/components/uni-ui/uni-popup/i18n/index.d.ts +0 -24
- package/dist/src/components/uni-ui/uni-popup/keypress.d.ts +0 -14
- package/dist/src/components/uni-ui/uni-popup/popup.d.ts +0 -17
- package/dist/src/components/uni-ui/uni-popup/uni-popup.vue.d.ts +0 -136
- package/dist/src/components/uni-ui/uni-popup-dialog/uni-popup-dialog.vue.d.ts +0 -123
- package/dist/src/components/uni-ui/uni-popup-message/uni-popup-message.vue.d.ts +0 -67
- package/dist/src/components/uni-ui/uni-popup-share/uni-popup-share.vue.d.ts +0 -49
- package/dist/src/components/uni-ui/uni-rate/uni-rate.vue.d.ts +0 -154
- package/dist/src/components/uni-ui/uni-row/uni-row.vue.d.ts +0 -41
- package/dist/src/components/uni-ui/uni-search-bar/i18n/index.d.ts +0 -15
- package/dist/src/components/uni-ui/uni-search-bar/uni-search-bar.vue.d.ts +0 -126
- package/dist/src/components/uni-ui/uni-section/uni-section.vue.d.ts +0 -85
- package/dist/src/components/uni-ui/uni-segmented-control/uni-segmented-control.vue.d.ts +0 -47
- package/dist/src/components/uni-ui/uni-steps/uni-steps.vue.d.ts +0 -59
- package/dist/src/components/uni-ui/uni-swipe-action/uni-swipe-action.vue.d.ts +0 -6
- package/dist/src/components/uni-ui/uni-swiper-dot/uni-swiper-dot.vue.d.ts +0 -65
- package/dist/src/components/uni-ui/uni-table/uni-table.vue.d.ts +0 -99
- package/dist/src/components/uni-ui/uni-tag/uni-tag.vue.d.ts +0 -84
- package/dist/src/components/uni-ui/uni-tbody/uni-tbody.vue.d.ts +0 -2
- package/dist/src/components/uni-ui/uni-td/uni-td.vue.d.ts +0 -48
- package/dist/src/components/uni-ui/uni-th/filter-dropdown.vue.d.ts +0 -99
- package/dist/src/components/uni-ui/uni-th/uni-th.vue.d.ts +0 -97
- package/dist/src/components/uni-ui/uni-thead/uni-thead.vue.d.ts +0 -15
- package/dist/src/components/uni-ui/uni-title/uni-title.vue.d.ts +0 -54
- package/dist/src/components/uni-ui/uni-tooltip/uni-tooltip.vue.d.ts +0 -23
- package/dist/src/components/uni-ui/uni-tr/table-checkbox.vue.d.ts +0 -58
- package/dist/src/components/uni-ui/uni-tr/uni-tr.vue.d.ts +0 -39
- package/dist/src/components/uni-ui/uni-transition/createAnimation.d.ts +0 -16
- package/dist/src/components/uni-ui/uni-transition/uni-transition.vue.d.ts +0 -240
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
localdata: {
|
|
3
|
-
type: ArrayConstructor;
|
|
4
|
-
default(): never[];
|
|
5
|
-
};
|
|
6
|
-
value: {
|
|
7
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
modelValue: {
|
|
11
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
label: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
placeholder: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
emptyTips: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
clear: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
defItem: {
|
|
31
|
-
type: NumberConstructor;
|
|
32
|
-
default: number;
|
|
33
|
-
};
|
|
34
|
-
disabled: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
format: {
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
default: string;
|
|
41
|
-
};
|
|
42
|
-
}, any, {
|
|
43
|
-
showSelector: boolean;
|
|
44
|
-
current: string;
|
|
45
|
-
mixinDatacomResData: never[];
|
|
46
|
-
apps: never[];
|
|
47
|
-
channels: never[];
|
|
48
|
-
cacheKey: string;
|
|
49
|
-
}, {
|
|
50
|
-
typePlaceholder(): string;
|
|
51
|
-
valueCom(): string | number;
|
|
52
|
-
}, {
|
|
53
|
-
debounce(fn: any, time?: number): (...args: any[]) => void;
|
|
54
|
-
query(): void;
|
|
55
|
-
onMixinDatacomPropsChange(): void;
|
|
56
|
-
initDefVal(): void;
|
|
57
|
-
/**
|
|
58
|
-
* @param {[String, Number]} value
|
|
59
|
-
* 判断用户给的 value 是否同时为禁用状态
|
|
60
|
-
*/
|
|
61
|
-
isDisabled(value: [string, number]): false;
|
|
62
|
-
clearVal(): void;
|
|
63
|
-
change(item: any): void;
|
|
64
|
-
emit(val: any): void;
|
|
65
|
-
toggleSelector(): void;
|
|
66
|
-
formatItemName(item: any): any;
|
|
67
|
-
getLoadData(): never[];
|
|
68
|
-
getCurrentCacheKey(): never;
|
|
69
|
-
getCache(name?: any): any;
|
|
70
|
-
setCache(value: any, name?: any): void;
|
|
71
|
-
removeCache(name?: any): void;
|
|
72
|
-
}, any, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
73
|
-
localdata: {
|
|
74
|
-
type: ArrayConstructor;
|
|
75
|
-
default(): never[];
|
|
76
|
-
};
|
|
77
|
-
value: {
|
|
78
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
79
|
-
default: string;
|
|
80
|
-
};
|
|
81
|
-
modelValue: {
|
|
82
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
83
|
-
default: string;
|
|
84
|
-
};
|
|
85
|
-
label: {
|
|
86
|
-
type: StringConstructor;
|
|
87
|
-
default: string;
|
|
88
|
-
};
|
|
89
|
-
placeholder: {
|
|
90
|
-
type: StringConstructor;
|
|
91
|
-
default: string;
|
|
92
|
-
};
|
|
93
|
-
emptyTips: {
|
|
94
|
-
type: StringConstructor;
|
|
95
|
-
default: string;
|
|
96
|
-
};
|
|
97
|
-
clear: {
|
|
98
|
-
type: BooleanConstructor;
|
|
99
|
-
default: boolean;
|
|
100
|
-
};
|
|
101
|
-
defItem: {
|
|
102
|
-
type: NumberConstructor;
|
|
103
|
-
default: number;
|
|
104
|
-
};
|
|
105
|
-
disabled: {
|
|
106
|
-
type: BooleanConstructor;
|
|
107
|
-
default: boolean;
|
|
108
|
-
};
|
|
109
|
-
format: {
|
|
110
|
-
type: StringConstructor;
|
|
111
|
-
default: string;
|
|
112
|
-
};
|
|
113
|
-
}>>, {
|
|
114
|
-
value: string | number;
|
|
115
|
-
label: string;
|
|
116
|
-
clear: boolean;
|
|
117
|
-
modelValue: string | number;
|
|
118
|
-
disabled: boolean;
|
|
119
|
-
placeholder: string;
|
|
120
|
-
emptyTips: string;
|
|
121
|
-
localdata: unknown[];
|
|
122
|
-
defItem: number;
|
|
123
|
-
format: string;
|
|
124
|
-
}>;
|
|
125
|
-
export default _default;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
date: {
|
|
3
|
-
type: (StringConstructor | NumberConstructor | ObjectConstructor)[];
|
|
4
|
-
default(): "-";
|
|
5
|
-
};
|
|
6
|
-
locale: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
threshold: {
|
|
11
|
-
type: ArrayConstructor;
|
|
12
|
-
default(): number[];
|
|
13
|
-
};
|
|
14
|
-
format: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
refreshRate: {
|
|
19
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
20
|
-
default: number;
|
|
21
|
-
};
|
|
22
|
-
}, any, {
|
|
23
|
-
refreshMark: number;
|
|
24
|
-
}, {
|
|
25
|
-
dateShow(): any;
|
|
26
|
-
}, {
|
|
27
|
-
refresh(): void;
|
|
28
|
-
setAutoRefresh(): void;
|
|
29
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
-
date: {
|
|
31
|
-
type: (StringConstructor | NumberConstructor | ObjectConstructor)[];
|
|
32
|
-
default(): "-";
|
|
33
|
-
};
|
|
34
|
-
locale: {
|
|
35
|
-
type: StringConstructor;
|
|
36
|
-
default: string;
|
|
37
|
-
};
|
|
38
|
-
threshold: {
|
|
39
|
-
type: ArrayConstructor;
|
|
40
|
-
default(): number[];
|
|
41
|
-
};
|
|
42
|
-
format: {
|
|
43
|
-
type: StringConstructor;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
refreshRate: {
|
|
47
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
48
|
-
default: number;
|
|
49
|
-
};
|
|
50
|
-
}>>, {
|
|
51
|
-
date: string | number | Record<string, any>;
|
|
52
|
-
format: string;
|
|
53
|
-
locale: string;
|
|
54
|
-
threshold: unknown[];
|
|
55
|
-
refreshRate: string | number;
|
|
56
|
-
}>;
|
|
57
|
-
export default _default;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
weeks: {
|
|
3
|
-
type: ObjectConstructor;
|
|
4
|
-
default(): {};
|
|
5
|
-
};
|
|
6
|
-
calendar: {
|
|
7
|
-
type: ObjectConstructor;
|
|
8
|
-
default: () => {};
|
|
9
|
-
};
|
|
10
|
-
selected: {
|
|
11
|
-
type: ArrayConstructor;
|
|
12
|
-
default: () => never[];
|
|
13
|
-
};
|
|
14
|
-
checkHover: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
}, any, any, {}, {
|
|
19
|
-
choiceDate(weeks: any): void;
|
|
20
|
-
handleMousemove(weeks: any): void;
|
|
21
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
-
weeks: {
|
|
23
|
-
type: ObjectConstructor;
|
|
24
|
-
default(): {};
|
|
25
|
-
};
|
|
26
|
-
calendar: {
|
|
27
|
-
type: ObjectConstructor;
|
|
28
|
-
default: () => {};
|
|
29
|
-
};
|
|
30
|
-
selected: {
|
|
31
|
-
type: ArrayConstructor;
|
|
32
|
-
default: () => never[];
|
|
33
|
-
};
|
|
34
|
-
checkHover: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
}>>, {
|
|
39
|
-
weeks: Record<string, any>;
|
|
40
|
-
calendar: Record<string, any>;
|
|
41
|
-
selected: unknown[];
|
|
42
|
-
checkHover: boolean;
|
|
43
|
-
}>;
|
|
44
|
-
export default _default;
|
|
@@ -1,253 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
date: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
defTime: {
|
|
7
|
-
type: (StringConstructor | ObjectConstructor)[];
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
selectableTimes: {
|
|
11
|
-
type: ObjectConstructor[];
|
|
12
|
-
default(): {};
|
|
13
|
-
};
|
|
14
|
-
selected: {
|
|
15
|
-
type: ArrayConstructor;
|
|
16
|
-
default(): never[];
|
|
17
|
-
};
|
|
18
|
-
startDate: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
endDate: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
startPlaceholder: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
endPlaceholder: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
range: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
hasTime: {
|
|
39
|
-
type: BooleanConstructor;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
insert: {
|
|
43
|
-
type: BooleanConstructor;
|
|
44
|
-
default: boolean;
|
|
45
|
-
};
|
|
46
|
-
showMonth: {
|
|
47
|
-
type: BooleanConstructor;
|
|
48
|
-
default: boolean;
|
|
49
|
-
};
|
|
50
|
-
clearDate: {
|
|
51
|
-
type: BooleanConstructor;
|
|
52
|
-
default: boolean;
|
|
53
|
-
};
|
|
54
|
-
checkHover: {
|
|
55
|
-
type: BooleanConstructor;
|
|
56
|
-
default: boolean;
|
|
57
|
-
};
|
|
58
|
-
hideSecond: {
|
|
59
|
-
type: BooleanConstructor[];
|
|
60
|
-
default: boolean;
|
|
61
|
-
};
|
|
62
|
-
pleStatus: {
|
|
63
|
-
type: ObjectConstructor;
|
|
64
|
-
default(): {
|
|
65
|
-
before: string;
|
|
66
|
-
after: string;
|
|
67
|
-
data: never[];
|
|
68
|
-
fulldate: string;
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
|
-
defaultValue: {
|
|
72
|
-
type: (StringConstructor | ArrayConstructor | ObjectConstructor)[];
|
|
73
|
-
default: string;
|
|
74
|
-
};
|
|
75
|
-
}, any, {
|
|
76
|
-
show: boolean;
|
|
77
|
-
weeks: never[];
|
|
78
|
-
calendar: {};
|
|
79
|
-
nowDate: {};
|
|
80
|
-
aniMaskShow: boolean;
|
|
81
|
-
firstEnter: boolean;
|
|
82
|
-
time: string;
|
|
83
|
-
timeRange: {
|
|
84
|
-
startTime: string;
|
|
85
|
-
endTime: string;
|
|
86
|
-
};
|
|
87
|
-
tempSingleDate: string;
|
|
88
|
-
tempRange: {
|
|
89
|
-
before: string;
|
|
90
|
-
after: string;
|
|
91
|
-
};
|
|
92
|
-
}, {
|
|
93
|
-
timepickerStartTime(): any;
|
|
94
|
-
timepickerEndTime(): any;
|
|
95
|
-
/**
|
|
96
|
-
* for i18n
|
|
97
|
-
*/
|
|
98
|
-
selectDateText(): any;
|
|
99
|
-
startDateText(): any;
|
|
100
|
-
endDateText(): any;
|
|
101
|
-
okText(): any;
|
|
102
|
-
yearText(): any;
|
|
103
|
-
monthText(): any;
|
|
104
|
-
MONText(): any;
|
|
105
|
-
TUEText(): any;
|
|
106
|
-
WEDText(): any;
|
|
107
|
-
THUText(): any;
|
|
108
|
-
FRIText(): any;
|
|
109
|
-
SATText(): any;
|
|
110
|
-
SUNText(): any;
|
|
111
|
-
confirmText(): any;
|
|
112
|
-
}, {
|
|
113
|
-
leaveCale(): void;
|
|
114
|
-
handleMouse(weeks: any): void;
|
|
115
|
-
rangeWithinMonth(A: any, B: any): boolean;
|
|
116
|
-
maskClick(): void;
|
|
117
|
-
clearCalender(): void;
|
|
118
|
-
bindDateChange(e: any): void;
|
|
119
|
-
/**
|
|
120
|
-
* 初始化日期显示
|
|
121
|
-
* @param {Object} date
|
|
122
|
-
*/
|
|
123
|
-
init(date: Object): void;
|
|
124
|
-
/**
|
|
125
|
-
* 打开日历弹窗
|
|
126
|
-
*/
|
|
127
|
-
open(): void;
|
|
128
|
-
/**
|
|
129
|
-
* 关闭日历弹窗
|
|
130
|
-
*/
|
|
131
|
-
close(): void;
|
|
132
|
-
/**
|
|
133
|
-
* 确认按钮
|
|
134
|
-
*/
|
|
135
|
-
confirm(): void;
|
|
136
|
-
/**
|
|
137
|
-
* 变化触发
|
|
138
|
-
*/
|
|
139
|
-
change(): void;
|
|
140
|
-
/**
|
|
141
|
-
* 选择月份触发
|
|
142
|
-
*/
|
|
143
|
-
monthSwitch(): void;
|
|
144
|
-
/**
|
|
145
|
-
* 派发事件
|
|
146
|
-
* @param {Object} name
|
|
147
|
-
*/
|
|
148
|
-
setEmit(name: Object): void;
|
|
149
|
-
/**
|
|
150
|
-
* 选择天触发
|
|
151
|
-
* @param {Object} weeks
|
|
152
|
-
*/
|
|
153
|
-
choiceDate(weeks: Object): void;
|
|
154
|
-
changeMonth(type: any): void;
|
|
155
|
-
/**
|
|
156
|
-
* 设置日期
|
|
157
|
-
* @param {Object} date
|
|
158
|
-
*/
|
|
159
|
-
setDate(date: Object): void;
|
|
160
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
161
|
-
date: {
|
|
162
|
-
type: StringConstructor;
|
|
163
|
-
default: string;
|
|
164
|
-
};
|
|
165
|
-
defTime: {
|
|
166
|
-
type: (StringConstructor | ObjectConstructor)[];
|
|
167
|
-
default: string;
|
|
168
|
-
};
|
|
169
|
-
selectableTimes: {
|
|
170
|
-
type: ObjectConstructor[];
|
|
171
|
-
default(): {};
|
|
172
|
-
};
|
|
173
|
-
selected: {
|
|
174
|
-
type: ArrayConstructor;
|
|
175
|
-
default(): never[];
|
|
176
|
-
};
|
|
177
|
-
startDate: {
|
|
178
|
-
type: StringConstructor;
|
|
179
|
-
default: string;
|
|
180
|
-
};
|
|
181
|
-
endDate: {
|
|
182
|
-
type: StringConstructor;
|
|
183
|
-
default: string;
|
|
184
|
-
};
|
|
185
|
-
startPlaceholder: {
|
|
186
|
-
type: StringConstructor;
|
|
187
|
-
default: string;
|
|
188
|
-
};
|
|
189
|
-
endPlaceholder: {
|
|
190
|
-
type: StringConstructor;
|
|
191
|
-
default: string;
|
|
192
|
-
};
|
|
193
|
-
range: {
|
|
194
|
-
type: BooleanConstructor;
|
|
195
|
-
default: boolean;
|
|
196
|
-
};
|
|
197
|
-
hasTime: {
|
|
198
|
-
type: BooleanConstructor;
|
|
199
|
-
default: boolean;
|
|
200
|
-
};
|
|
201
|
-
insert: {
|
|
202
|
-
type: BooleanConstructor;
|
|
203
|
-
default: boolean;
|
|
204
|
-
};
|
|
205
|
-
showMonth: {
|
|
206
|
-
type: BooleanConstructor;
|
|
207
|
-
default: boolean;
|
|
208
|
-
};
|
|
209
|
-
clearDate: {
|
|
210
|
-
type: BooleanConstructor;
|
|
211
|
-
default: boolean;
|
|
212
|
-
};
|
|
213
|
-
checkHover: {
|
|
214
|
-
type: BooleanConstructor;
|
|
215
|
-
default: boolean;
|
|
216
|
-
};
|
|
217
|
-
hideSecond: {
|
|
218
|
-
type: BooleanConstructor[];
|
|
219
|
-
default: boolean;
|
|
220
|
-
};
|
|
221
|
-
pleStatus: {
|
|
222
|
-
type: ObjectConstructor;
|
|
223
|
-
default(): {
|
|
224
|
-
before: string;
|
|
225
|
-
after: string;
|
|
226
|
-
data: never[];
|
|
227
|
-
fulldate: string;
|
|
228
|
-
};
|
|
229
|
-
};
|
|
230
|
-
defaultValue: {
|
|
231
|
-
type: (StringConstructor | ArrayConstructor | ObjectConstructor)[];
|
|
232
|
-
default: string;
|
|
233
|
-
};
|
|
234
|
-
}>>, {
|
|
235
|
-
selected: unknown[];
|
|
236
|
-
date: string;
|
|
237
|
-
startDate: string;
|
|
238
|
-
endDate: string;
|
|
239
|
-
range: boolean;
|
|
240
|
-
insert: boolean;
|
|
241
|
-
showMonth: boolean;
|
|
242
|
-
clearDate: boolean;
|
|
243
|
-
checkHover: boolean;
|
|
244
|
-
hideSecond: boolean;
|
|
245
|
-
defTime: string | Record<string, any>;
|
|
246
|
-
pleStatus: Record<string, any>;
|
|
247
|
-
selectableTimes: Record<string, any>;
|
|
248
|
-
startPlaceholder: string;
|
|
249
|
-
endPlaceholder: string;
|
|
250
|
-
hasTime: boolean;
|
|
251
|
-
defaultValue: string | unknown[] | Record<string, any>;
|
|
252
|
-
}>;
|
|
253
|
-
export default _default;
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
en: {
|
|
3
|
-
"uni-datetime-picker.selectDate": string;
|
|
4
|
-
"uni-datetime-picker.selectTime": string;
|
|
5
|
-
"uni-datetime-picker.selectDateTime": string;
|
|
6
|
-
"uni-datetime-picker.startDate": string;
|
|
7
|
-
"uni-datetime-picker.endDate": string;
|
|
8
|
-
"uni-datetime-picker.startTime": string;
|
|
9
|
-
"uni-datetime-picker.endTime": string;
|
|
10
|
-
"uni-datetime-picker.ok": string;
|
|
11
|
-
"uni-datetime-picker.clear": string;
|
|
12
|
-
"uni-datetime-picker.cancel": string;
|
|
13
|
-
"uni-datetime-picker.year": string;
|
|
14
|
-
"uni-datetime-picker.month": string;
|
|
15
|
-
"uni-calender.MON": string;
|
|
16
|
-
"uni-calender.TUE": string;
|
|
17
|
-
"uni-calender.WED": string;
|
|
18
|
-
"uni-calender.THU": string;
|
|
19
|
-
"uni-calender.FRI": string;
|
|
20
|
-
"uni-calender.SAT": string;
|
|
21
|
-
"uni-calender.SUN": string;
|
|
22
|
-
"uni-calender.confirm": string;
|
|
23
|
-
};
|
|
24
|
-
'zh-Hans': {
|
|
25
|
-
"uni-datetime-picker.selectDate": string;
|
|
26
|
-
"uni-datetime-picker.selectTime": string;
|
|
27
|
-
"uni-datetime-picker.selectDateTime": string;
|
|
28
|
-
"uni-datetime-picker.startDate": string;
|
|
29
|
-
"uni-datetime-picker.endDate": string;
|
|
30
|
-
"uni-datetime-picker.startTime": string;
|
|
31
|
-
"uni-datetime-picker.endTime": string;
|
|
32
|
-
"uni-datetime-picker.ok": string;
|
|
33
|
-
"uni-datetime-picker.clear": string;
|
|
34
|
-
"uni-datetime-picker.cancel": string;
|
|
35
|
-
"uni-datetime-picker.year": string;
|
|
36
|
-
"uni-datetime-picker.month": string;
|
|
37
|
-
"uni-calender.SUN": string;
|
|
38
|
-
"uni-calender.MON": string;
|
|
39
|
-
"uni-calender.TUE": string;
|
|
40
|
-
"uni-calender.WED": string;
|
|
41
|
-
"uni-calender.THU": string;
|
|
42
|
-
"uni-calender.FRI": string;
|
|
43
|
-
"uni-calender.SAT": string;
|
|
44
|
-
"uni-calender.confirm": string;
|
|
45
|
-
};
|
|
46
|
-
'zh-Hant': {
|
|
47
|
-
"uni-datetime-picker.selectDate": string;
|
|
48
|
-
"uni-datetime-picker.selectTime": string;
|
|
49
|
-
"uni-datetime-picker.selectDateTime": string;
|
|
50
|
-
"uni-datetime-picker.startDate": string;
|
|
51
|
-
"uni-datetime-picker.endDate": string;
|
|
52
|
-
"uni-datetime-picker.startTime": string;
|
|
53
|
-
"uni-datetime-picker.endTime": string;
|
|
54
|
-
"uni-datetime-picker.ok": string;
|
|
55
|
-
"uni-datetime-picker.clear": string;
|
|
56
|
-
"uni-datetime-picker.cancel": string;
|
|
57
|
-
"uni-datetime-picker.year": string;
|
|
58
|
-
"uni-datetime-picker.month": string;
|
|
59
|
-
"uni-calender.SUN": string;
|
|
60
|
-
"uni-calender.MON": string;
|
|
61
|
-
"uni-calender.TUE": string;
|
|
62
|
-
"uni-calender.WED": string;
|
|
63
|
-
"uni-calender.THU": string;
|
|
64
|
-
"uni-calender.FRI": string;
|
|
65
|
-
"uni-calender.SAT": string;
|
|
66
|
-
"uni-calender.confirm": string;
|
|
67
|
-
};
|
|
68
|
-
};
|
|
69
|
-
export default _default;
|