@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,166 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
date: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
selected: {
|
|
7
|
-
type: ArrayConstructor;
|
|
8
|
-
default(): never[];
|
|
9
|
-
};
|
|
10
|
-
lunar: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
startDate: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
endDate: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
range: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
insert: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
showMonth: {
|
|
31
|
-
type: BooleanConstructor;
|
|
32
|
-
default: boolean;
|
|
33
|
-
};
|
|
34
|
-
clearDate: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
}, any, {
|
|
39
|
-
show: boolean;
|
|
40
|
-
weeks: never[];
|
|
41
|
-
calendar: {};
|
|
42
|
-
nowDate: string;
|
|
43
|
-
aniMaskShow: boolean;
|
|
44
|
-
}, {
|
|
45
|
-
/**
|
|
46
|
-
* for i18n
|
|
47
|
-
*/
|
|
48
|
-
okText(): any;
|
|
49
|
-
cancelText(): any;
|
|
50
|
-
todayText(): any;
|
|
51
|
-
monText(): any;
|
|
52
|
-
TUEText(): any;
|
|
53
|
-
WEDText(): any;
|
|
54
|
-
THUText(): any;
|
|
55
|
-
FRIText(): any;
|
|
56
|
-
SATText(): any;
|
|
57
|
-
SUNText(): any;
|
|
58
|
-
}, {
|
|
59
|
-
clean(): void;
|
|
60
|
-
bindDateChange(e: any): void;
|
|
61
|
-
/**
|
|
62
|
-
* 初始化日期显示
|
|
63
|
-
* @param {Object} date
|
|
64
|
-
*/
|
|
65
|
-
init(date: Object): void;
|
|
66
|
-
/**
|
|
67
|
-
* 打开日历弹窗
|
|
68
|
-
*/
|
|
69
|
-
open(): void;
|
|
70
|
-
/**
|
|
71
|
-
* 关闭日历弹窗
|
|
72
|
-
*/
|
|
73
|
-
close(): void;
|
|
74
|
-
/**
|
|
75
|
-
* 确认按钮
|
|
76
|
-
*/
|
|
77
|
-
confirm(): void;
|
|
78
|
-
/**
|
|
79
|
-
* 变化触发
|
|
80
|
-
*/
|
|
81
|
-
change(): void;
|
|
82
|
-
/**
|
|
83
|
-
* 选择月份触发
|
|
84
|
-
*/
|
|
85
|
-
monthSwitch(): void;
|
|
86
|
-
/**
|
|
87
|
-
* 派发事件
|
|
88
|
-
* @param {Object} name
|
|
89
|
-
*/
|
|
90
|
-
setEmit(name: Object): void;
|
|
91
|
-
/**
|
|
92
|
-
* 选择天触发
|
|
93
|
-
* @param {Object} weeks
|
|
94
|
-
*/
|
|
95
|
-
choiceDate(weeks: Object): void;
|
|
96
|
-
/**
|
|
97
|
-
* 回到今天
|
|
98
|
-
*/
|
|
99
|
-
backToday(): void;
|
|
100
|
-
/**
|
|
101
|
-
* 上个月
|
|
102
|
-
*/
|
|
103
|
-
pre(): void;
|
|
104
|
-
/**
|
|
105
|
-
* 下个月
|
|
106
|
-
*/
|
|
107
|
-
next(): void;
|
|
108
|
-
/**
|
|
109
|
-
* 设置日期
|
|
110
|
-
* @param {Object} date
|
|
111
|
-
*/
|
|
112
|
-
setDate(date: Object): void;
|
|
113
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "close" | "confirm" | "monthSwitch")[], "change" | "close" | "confirm" | "monthSwitch", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
114
|
-
date: {
|
|
115
|
-
type: StringConstructor;
|
|
116
|
-
default: string;
|
|
117
|
-
};
|
|
118
|
-
selected: {
|
|
119
|
-
type: ArrayConstructor;
|
|
120
|
-
default(): never[];
|
|
121
|
-
};
|
|
122
|
-
lunar: {
|
|
123
|
-
type: BooleanConstructor;
|
|
124
|
-
default: boolean;
|
|
125
|
-
};
|
|
126
|
-
startDate: {
|
|
127
|
-
type: StringConstructor;
|
|
128
|
-
default: string;
|
|
129
|
-
};
|
|
130
|
-
endDate: {
|
|
131
|
-
type: StringConstructor;
|
|
132
|
-
default: string;
|
|
133
|
-
};
|
|
134
|
-
range: {
|
|
135
|
-
type: BooleanConstructor;
|
|
136
|
-
default: boolean;
|
|
137
|
-
};
|
|
138
|
-
insert: {
|
|
139
|
-
type: BooleanConstructor;
|
|
140
|
-
default: boolean;
|
|
141
|
-
};
|
|
142
|
-
showMonth: {
|
|
143
|
-
type: BooleanConstructor;
|
|
144
|
-
default: boolean;
|
|
145
|
-
};
|
|
146
|
-
clearDate: {
|
|
147
|
-
type: BooleanConstructor;
|
|
148
|
-
default: boolean;
|
|
149
|
-
};
|
|
150
|
-
}>> & {
|
|
151
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
152
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
153
|
-
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
154
|
-
onMonthSwitch?: ((...args: any[]) => any) | undefined;
|
|
155
|
-
}, {
|
|
156
|
-
selected: unknown[];
|
|
157
|
-
lunar: boolean;
|
|
158
|
-
date: string;
|
|
159
|
-
startDate: string;
|
|
160
|
-
endDate: string;
|
|
161
|
-
range: boolean;
|
|
162
|
-
insert: boolean;
|
|
163
|
-
showMonth: boolean;
|
|
164
|
-
clearDate: boolean;
|
|
165
|
-
}>;
|
|
166
|
-
export default _default;
|
|
@@ -1,211 +0,0 @@
|
|
|
1
|
-
export default Calendar;
|
|
2
|
-
declare class Calendar {
|
|
3
|
-
constructor({ date, selected, startDate, endDate, range }?: {
|
|
4
|
-
date: any;
|
|
5
|
-
selected: any;
|
|
6
|
-
startDate: any;
|
|
7
|
-
endDate: any;
|
|
8
|
-
range: any;
|
|
9
|
-
});
|
|
10
|
-
date: {
|
|
11
|
-
fullDate: string;
|
|
12
|
-
year: number;
|
|
13
|
-
month: string | number;
|
|
14
|
-
date: string | number;
|
|
15
|
-
day: number;
|
|
16
|
-
};
|
|
17
|
-
selected: any;
|
|
18
|
-
startDate: any;
|
|
19
|
-
endDate: any;
|
|
20
|
-
range: any;
|
|
21
|
-
weeks: {};
|
|
22
|
-
/**
|
|
23
|
-
* 设置日期
|
|
24
|
-
* @param {Object} date
|
|
25
|
-
*/
|
|
26
|
-
setDate(date: Object): void;
|
|
27
|
-
selectDate: {
|
|
28
|
-
fullDate: string;
|
|
29
|
-
year: number;
|
|
30
|
-
month: string | number;
|
|
31
|
-
date: string | number;
|
|
32
|
-
day: number;
|
|
33
|
-
} | undefined;
|
|
34
|
-
/**
|
|
35
|
-
* 清理多选状态
|
|
36
|
-
*/
|
|
37
|
-
cleanMultipleStatus(): void;
|
|
38
|
-
multipleStatus: {
|
|
39
|
-
before: string;
|
|
40
|
-
after: string;
|
|
41
|
-
data: never[];
|
|
42
|
-
} | undefined;
|
|
43
|
-
/**
|
|
44
|
-
* 重置开始日期
|
|
45
|
-
*/
|
|
46
|
-
resetSatrtDate(startDate: any): void;
|
|
47
|
-
/**
|
|
48
|
-
* 重置结束日期
|
|
49
|
-
*/
|
|
50
|
-
resetEndDate(endDate: any): void;
|
|
51
|
-
/**
|
|
52
|
-
* 获取任意时间
|
|
53
|
-
*/
|
|
54
|
-
getDate(date: any, AddDayCount?: number, str?: string): {
|
|
55
|
-
fullDate: string;
|
|
56
|
-
year: number;
|
|
57
|
-
month: string | number;
|
|
58
|
-
date: string | number;
|
|
59
|
-
day: number;
|
|
60
|
-
};
|
|
61
|
-
/**
|
|
62
|
-
* 获取上月剩余天数
|
|
63
|
-
*/
|
|
64
|
-
_getLastMonthDays(firstDay: any, full: any): {
|
|
65
|
-
date: number;
|
|
66
|
-
month: number;
|
|
67
|
-
lunar: number | {
|
|
68
|
-
lYear: number;
|
|
69
|
-
lMonth: number;
|
|
70
|
-
lDay: number;
|
|
71
|
-
Animal: string;
|
|
72
|
-
IMonthCn: string;
|
|
73
|
-
IDayCn: string;
|
|
74
|
-
cYear: any;
|
|
75
|
-
cMonth: any;
|
|
76
|
-
cDay: any;
|
|
77
|
-
gzYear: string;
|
|
78
|
-
gzMonth: string;
|
|
79
|
-
gzDay: string;
|
|
80
|
-
isToday: boolean;
|
|
81
|
-
isLeap: boolean;
|
|
82
|
-
nWeek: number;
|
|
83
|
-
ncWeek: string;
|
|
84
|
-
isTerm: boolean;
|
|
85
|
-
Term: string | null;
|
|
86
|
-
astro: string;
|
|
87
|
-
};
|
|
88
|
-
disable: boolean;
|
|
89
|
-
}[];
|
|
90
|
-
/**
|
|
91
|
-
* 获取本月天数
|
|
92
|
-
*/
|
|
93
|
-
_currentMonthDys(dateData: any, full: any): {
|
|
94
|
-
fullDate: string;
|
|
95
|
-
year: any;
|
|
96
|
-
date: number;
|
|
97
|
-
multiple: boolean;
|
|
98
|
-
beforeMultiple: boolean;
|
|
99
|
-
afterMultiple: boolean;
|
|
100
|
-
month: any;
|
|
101
|
-
lunar: number | {
|
|
102
|
-
lYear: number;
|
|
103
|
-
lMonth: number;
|
|
104
|
-
lDay: number;
|
|
105
|
-
Animal: string;
|
|
106
|
-
IMonthCn: string;
|
|
107
|
-
IDayCn: string;
|
|
108
|
-
cYear: any;
|
|
109
|
-
cMonth: any;
|
|
110
|
-
cDay: any;
|
|
111
|
-
gzYear: string;
|
|
112
|
-
gzMonth: string;
|
|
113
|
-
gzDay: string;
|
|
114
|
-
isToday: boolean;
|
|
115
|
-
isLeap: boolean;
|
|
116
|
-
nWeek: number;
|
|
117
|
-
ncWeek: string;
|
|
118
|
-
isTerm: boolean;
|
|
119
|
-
Term: string | null;
|
|
120
|
-
astro: string;
|
|
121
|
-
};
|
|
122
|
-
disable: boolean;
|
|
123
|
-
isDay: boolean;
|
|
124
|
-
}[];
|
|
125
|
-
/**
|
|
126
|
-
* 获取下月天数
|
|
127
|
-
*/
|
|
128
|
-
_getNextMonthDays(surplus: any, full: any): {
|
|
129
|
-
date: number;
|
|
130
|
-
month: number;
|
|
131
|
-
lunar: number | {
|
|
132
|
-
lYear: number;
|
|
133
|
-
lMonth: number;
|
|
134
|
-
lDay: number;
|
|
135
|
-
Animal: string;
|
|
136
|
-
IMonthCn: string;
|
|
137
|
-
IDayCn: string;
|
|
138
|
-
cYear: any;
|
|
139
|
-
cMonth: any;
|
|
140
|
-
cDay: any;
|
|
141
|
-
gzYear: string;
|
|
142
|
-
gzMonth: string;
|
|
143
|
-
gzDay: string;
|
|
144
|
-
isToday: boolean;
|
|
145
|
-
isLeap: boolean;
|
|
146
|
-
nWeek: number;
|
|
147
|
-
ncWeek: string;
|
|
148
|
-
isTerm: boolean;
|
|
149
|
-
Term: string | null;
|
|
150
|
-
astro: string;
|
|
151
|
-
};
|
|
152
|
-
disable: boolean;
|
|
153
|
-
}[];
|
|
154
|
-
/**
|
|
155
|
-
* 获取当前日期详情
|
|
156
|
-
* @param {Object} date
|
|
157
|
-
*/
|
|
158
|
-
getInfo(date: Object): any;
|
|
159
|
-
/**
|
|
160
|
-
* 比较时间大小
|
|
161
|
-
*/
|
|
162
|
-
dateCompare(startDate: any, endDate: any): boolean;
|
|
163
|
-
/**
|
|
164
|
-
* 比较时间是否相等
|
|
165
|
-
*/
|
|
166
|
-
dateEqual(before: any, after: any): boolean;
|
|
167
|
-
/**
|
|
168
|
-
* 获取日期范围内所有日期
|
|
169
|
-
* @param {Object} begin
|
|
170
|
-
* @param {Object} end
|
|
171
|
-
*/
|
|
172
|
-
geDateAll(begin: Object, end: Object): string[];
|
|
173
|
-
/**
|
|
174
|
-
* 计算阴历日期显示
|
|
175
|
-
*/
|
|
176
|
-
getlunar(year: any, month: any, date: any): -1 | {
|
|
177
|
-
lYear: number;
|
|
178
|
-
lMonth: number;
|
|
179
|
-
lDay: number;
|
|
180
|
-
Animal: string;
|
|
181
|
-
IMonthCn: string;
|
|
182
|
-
IDayCn: string;
|
|
183
|
-
cYear: any;
|
|
184
|
-
cMonth: any;
|
|
185
|
-
cDay: any;
|
|
186
|
-
gzYear: string;
|
|
187
|
-
gzMonth: string;
|
|
188
|
-
gzDay: string;
|
|
189
|
-
isToday: boolean;
|
|
190
|
-
isLeap: boolean;
|
|
191
|
-
nWeek: number;
|
|
192
|
-
ncWeek: string;
|
|
193
|
-
isTerm: boolean;
|
|
194
|
-
Term: string | null;
|
|
195
|
-
astro: string;
|
|
196
|
-
};
|
|
197
|
-
/**
|
|
198
|
-
* 设置打点
|
|
199
|
-
*/
|
|
200
|
-
setSelectInfo(data: any, value: any): void;
|
|
201
|
-
/**
|
|
202
|
-
* 获取多选状态
|
|
203
|
-
*/
|
|
204
|
-
setMultiple(fullDate: any): void;
|
|
205
|
-
/**
|
|
206
|
-
* 获取每周数据
|
|
207
|
-
* @param {Object} dateData
|
|
208
|
-
*/
|
|
209
|
-
_getWeek(dateData: Object): void;
|
|
210
|
-
canlender: any[] | undefined;
|
|
211
|
-
}
|
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
title: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
subTitle: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
padding: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
margin: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
spacing: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
extra: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
cover: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
thumbnail: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
isFull: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
isShadow: {
|
|
39
|
-
type: BooleanConstructor;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
shadow: {
|
|
43
|
-
type: StringConstructor;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
border: {
|
|
47
|
-
type: BooleanConstructor;
|
|
48
|
-
default: boolean;
|
|
49
|
-
};
|
|
50
|
-
}, any, any, {}, {
|
|
51
|
-
onClick(type: any): void;
|
|
52
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
-
title: {
|
|
54
|
-
type: StringConstructor;
|
|
55
|
-
default: string;
|
|
56
|
-
};
|
|
57
|
-
subTitle: {
|
|
58
|
-
type: StringConstructor;
|
|
59
|
-
default: string;
|
|
60
|
-
};
|
|
61
|
-
padding: {
|
|
62
|
-
type: StringConstructor;
|
|
63
|
-
default: string;
|
|
64
|
-
};
|
|
65
|
-
margin: {
|
|
66
|
-
type: StringConstructor;
|
|
67
|
-
default: string;
|
|
68
|
-
};
|
|
69
|
-
spacing: {
|
|
70
|
-
type: StringConstructor;
|
|
71
|
-
default: string;
|
|
72
|
-
};
|
|
73
|
-
extra: {
|
|
74
|
-
type: StringConstructor;
|
|
75
|
-
default: string;
|
|
76
|
-
};
|
|
77
|
-
cover: {
|
|
78
|
-
type: StringConstructor;
|
|
79
|
-
default: string;
|
|
80
|
-
};
|
|
81
|
-
thumbnail: {
|
|
82
|
-
type: StringConstructor;
|
|
83
|
-
default: string;
|
|
84
|
-
};
|
|
85
|
-
isFull: {
|
|
86
|
-
type: BooleanConstructor;
|
|
87
|
-
default: boolean;
|
|
88
|
-
};
|
|
89
|
-
isShadow: {
|
|
90
|
-
type: BooleanConstructor;
|
|
91
|
-
default: boolean;
|
|
92
|
-
};
|
|
93
|
-
shadow: {
|
|
94
|
-
type: StringConstructor;
|
|
95
|
-
default: string;
|
|
96
|
-
};
|
|
97
|
-
border: {
|
|
98
|
-
type: BooleanConstructor;
|
|
99
|
-
default: boolean;
|
|
100
|
-
};
|
|
101
|
-
}>> & {
|
|
102
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
103
|
-
}, {
|
|
104
|
-
title: string;
|
|
105
|
-
border: boolean;
|
|
106
|
-
margin: string;
|
|
107
|
-
padding: string;
|
|
108
|
-
subTitle: string;
|
|
109
|
-
spacing: string;
|
|
110
|
-
extra: string;
|
|
111
|
-
cover: string;
|
|
112
|
-
thumbnail: string;
|
|
113
|
-
isFull: boolean;
|
|
114
|
-
isShadow: boolean;
|
|
115
|
-
shadow: string;
|
|
116
|
-
}>;
|
|
117
|
-
export default _default;
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
span: {
|
|
3
|
-
type: NumberConstructor;
|
|
4
|
-
default: number;
|
|
5
|
-
};
|
|
6
|
-
offset: {
|
|
7
|
-
type: NumberConstructor;
|
|
8
|
-
default: number;
|
|
9
|
-
};
|
|
10
|
-
pull: {
|
|
11
|
-
type: NumberConstructor;
|
|
12
|
-
default: number;
|
|
13
|
-
};
|
|
14
|
-
push: {
|
|
15
|
-
type: NumberConstructor;
|
|
16
|
-
default: number;
|
|
17
|
-
};
|
|
18
|
-
xs: (NumberConstructor | ObjectConstructor)[];
|
|
19
|
-
sm: (NumberConstructor | ObjectConstructor)[];
|
|
20
|
-
md: (NumberConstructor | ObjectConstructor)[];
|
|
21
|
-
lg: (NumberConstructor | ObjectConstructor)[];
|
|
22
|
-
xl: (NumberConstructor | ObjectConstructor)[];
|
|
23
|
-
}, any, {
|
|
24
|
-
gutter: number;
|
|
25
|
-
sizeClass: string;
|
|
26
|
-
parentWidth: number;
|
|
27
|
-
nvueWidth: number;
|
|
28
|
-
marginLeft: number;
|
|
29
|
-
right: number;
|
|
30
|
-
left: number;
|
|
31
|
-
}, {
|
|
32
|
-
sizeList(): {
|
|
33
|
-
span: number;
|
|
34
|
-
offset: number;
|
|
35
|
-
pull: number;
|
|
36
|
-
push: number;
|
|
37
|
-
};
|
|
38
|
-
pointClassList(): string;
|
|
39
|
-
}, {
|
|
40
|
-
updateGutter(parentGutter: any): void;
|
|
41
|
-
updateNvueWidth(width: any): void;
|
|
42
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
43
|
-
span: {
|
|
44
|
-
type: NumberConstructor;
|
|
45
|
-
default: number;
|
|
46
|
-
};
|
|
47
|
-
offset: {
|
|
48
|
-
type: NumberConstructor;
|
|
49
|
-
default: number;
|
|
50
|
-
};
|
|
51
|
-
pull: {
|
|
52
|
-
type: NumberConstructor;
|
|
53
|
-
default: number;
|
|
54
|
-
};
|
|
55
|
-
push: {
|
|
56
|
-
type: NumberConstructor;
|
|
57
|
-
default: number;
|
|
58
|
-
};
|
|
59
|
-
xs: (NumberConstructor | ObjectConstructor)[];
|
|
60
|
-
sm: (NumberConstructor | ObjectConstructor)[];
|
|
61
|
-
md: (NumberConstructor | ObjectConstructor)[];
|
|
62
|
-
lg: (NumberConstructor | ObjectConstructor)[];
|
|
63
|
-
xl: (NumberConstructor | ObjectConstructor)[];
|
|
64
|
-
}>>, {
|
|
65
|
-
push: number;
|
|
66
|
-
offset: number;
|
|
67
|
-
span: number;
|
|
68
|
-
pull: number;
|
|
69
|
-
}>;
|
|
70
|
-
export default _default;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
value: {
|
|
3
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
modelValue: {
|
|
7
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
accordion: {
|
|
11
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
}, any, {}, {
|
|
15
|
-
dataValue(): string | any[];
|
|
16
|
-
}, {
|
|
17
|
-
setOpen(val: any): void;
|
|
18
|
-
setAccordion(self: any): void;
|
|
19
|
-
resize(): void;
|
|
20
|
-
onChange(isOpen: any, self: any): void;
|
|
21
|
-
emit(val: any): void;
|
|
22
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "activeItem" | "input" | "update:modelValue")[], "input" | "change" | "activeItem" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
-
value: {
|
|
24
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
modelValue: {
|
|
28
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
|
-
accordion: {
|
|
32
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
33
|
-
default: boolean;
|
|
34
|
-
};
|
|
35
|
-
}>> & {
|
|
36
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
37
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
38
|
-
onActiveItem?: ((...args: any[]) => any) | undefined;
|
|
39
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
40
|
-
}, {
|
|
41
|
-
value: string | unknown[];
|
|
42
|
-
modelValue: string | unknown[];
|
|
43
|
-
accordion: string | boolean;
|
|
44
|
-
}>;
|
|
45
|
-
export default _default;
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
title: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
name: {
|
|
7
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
disabled: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
showAnimation: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
open: {
|
|
19
|
-
type: BooleanConstructor;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
thumb: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
titleBorder: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
border: {
|
|
31
|
-
type: BooleanConstructor;
|
|
32
|
-
default: boolean;
|
|
33
|
-
};
|
|
34
|
-
showArrow: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
}, any, {
|
|
39
|
-
isOpen: boolean;
|
|
40
|
-
isheight: null;
|
|
41
|
-
height: number;
|
|
42
|
-
elId: string;
|
|
43
|
-
nameSync: number;
|
|
44
|
-
}, {}, {
|
|
45
|
-
init(type: any): void;
|
|
46
|
-
uninstall(): void;
|
|
47
|
-
onClick(isOpen: any, type: any): void;
|
|
48
|
-
getCollapseHeight(type: any, index?: number): void;
|
|
49
|
-
getNvueHwight(type: any): void;
|
|
50
|
-
/**
|
|
51
|
-
* 获取父元素实例
|
|
52
|
-
*/
|
|
53
|
-
getCollapse(name?: string): false | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
54
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
|
-
title: {
|
|
56
|
-
type: StringConstructor;
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
|
-
name: {
|
|
60
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
disabled: {
|
|
64
|
-
type: BooleanConstructor;
|
|
65
|
-
default: boolean;
|
|
66
|
-
};
|
|
67
|
-
showAnimation: {
|
|
68
|
-
type: BooleanConstructor;
|
|
69
|
-
default: boolean;
|
|
70
|
-
};
|
|
71
|
-
open: {
|
|
72
|
-
type: BooleanConstructor;
|
|
73
|
-
default: boolean;
|
|
74
|
-
};
|
|
75
|
-
thumb: {
|
|
76
|
-
type: StringConstructor;
|
|
77
|
-
default: string;
|
|
78
|
-
};
|
|
79
|
-
titleBorder: {
|
|
80
|
-
type: StringConstructor;
|
|
81
|
-
default: string;
|
|
82
|
-
};
|
|
83
|
-
border: {
|
|
84
|
-
type: BooleanConstructor;
|
|
85
|
-
default: boolean;
|
|
86
|
-
};
|
|
87
|
-
showArrow: {
|
|
88
|
-
type: BooleanConstructor;
|
|
89
|
-
default: boolean;
|
|
90
|
-
};
|
|
91
|
-
}>>, {
|
|
92
|
-
name: string | number;
|
|
93
|
-
title: string;
|
|
94
|
-
border: boolean;
|
|
95
|
-
open: boolean;
|
|
96
|
-
disabled: boolean;
|
|
97
|
-
showAnimation: boolean;
|
|
98
|
-
thumb: string;
|
|
99
|
-
titleBorder: string;
|
|
100
|
-
showArrow: boolean;
|
|
101
|
-
}>;
|
|
102
|
-
export default _default;
|