@kengic/uni 0.3.2-beta.4 → 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 -1527
- 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 +1 -1
- 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 -244
- package/dist/src/components/uni-ui/uni-data-pickerview/uni-data-picker.d.ts +0 -178
- 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 -13
- 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 -13
- package/dist/src/components/uni-ui/uni-popup/popup.d.ts +0 -11
- 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,65 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
info: {
|
|
3
|
-
type: ArrayConstructor;
|
|
4
|
-
default(): never[];
|
|
5
|
-
};
|
|
6
|
-
current: {
|
|
7
|
-
type: NumberConstructor;
|
|
8
|
-
default: number;
|
|
9
|
-
};
|
|
10
|
-
dotsStyles: {
|
|
11
|
-
type: ObjectConstructor;
|
|
12
|
-
default(): {};
|
|
13
|
-
};
|
|
14
|
-
mode: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
field: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
}, any, {
|
|
23
|
-
dots: {
|
|
24
|
-
width: number;
|
|
25
|
-
height: number;
|
|
26
|
-
bottom: number;
|
|
27
|
-
color: string;
|
|
28
|
-
backgroundColor: string;
|
|
29
|
-
border: string;
|
|
30
|
-
selectedBackgroundColor: string;
|
|
31
|
-
selectedBorder: string;
|
|
32
|
-
};
|
|
33
|
-
}, {}, {
|
|
34
|
-
clickItem(index: any): void;
|
|
35
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clickItem"[], "clickItem", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
-
info: {
|
|
37
|
-
type: ArrayConstructor;
|
|
38
|
-
default(): never[];
|
|
39
|
-
};
|
|
40
|
-
current: {
|
|
41
|
-
type: NumberConstructor;
|
|
42
|
-
default: number;
|
|
43
|
-
};
|
|
44
|
-
dotsStyles: {
|
|
45
|
-
type: ObjectConstructor;
|
|
46
|
-
default(): {};
|
|
47
|
-
};
|
|
48
|
-
mode: {
|
|
49
|
-
type: StringConstructor;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
field: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
}>> & {
|
|
57
|
-
onClickItem?: ((...args: any[]) => any) | undefined;
|
|
58
|
-
}, {
|
|
59
|
-
mode: string;
|
|
60
|
-
field: string;
|
|
61
|
-
current: number;
|
|
62
|
-
info: unknown[];
|
|
63
|
-
dotsStyles: Record<string, any>;
|
|
64
|
-
}>;
|
|
65
|
-
export default _default;
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
data: {
|
|
3
|
-
type: ArrayConstructor;
|
|
4
|
-
default(): never[];
|
|
5
|
-
};
|
|
6
|
-
border: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
stripe: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
type: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
emptyText: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
loading: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
rowKey: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
}, any, {
|
|
31
|
-
noData: boolean;
|
|
32
|
-
minWidth: number;
|
|
33
|
-
multiTableHeads: never[];
|
|
34
|
-
}, {}, {
|
|
35
|
-
isNodata(): void;
|
|
36
|
-
/**
|
|
37
|
-
* 选中所有
|
|
38
|
-
*/
|
|
39
|
-
selectionAll(): void;
|
|
40
|
-
/**
|
|
41
|
-
* 用于多选表格,切换某一行的选中状态,如果使用了第二个参数,则是设置这一行选中与否(selected 为 true 则选中)
|
|
42
|
-
*/
|
|
43
|
-
toggleRowSelection(row: any, selected: any): void;
|
|
44
|
-
/**
|
|
45
|
-
* 用于多选表格,清空用户的选择
|
|
46
|
-
*/
|
|
47
|
-
clearSelection(): void;
|
|
48
|
-
/**
|
|
49
|
-
* 用于多选表格,切换所有行的选中状态
|
|
50
|
-
*/
|
|
51
|
-
toggleAllSelection(): void;
|
|
52
|
-
/**
|
|
53
|
-
* 选中\取消选中
|
|
54
|
-
* @param {Object} child
|
|
55
|
-
* @param {Object} check
|
|
56
|
-
* @param {Object} rowValue
|
|
57
|
-
*/
|
|
58
|
-
check(child: Object, check: Object, keyValue: any, emit: any): void;
|
|
59
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "selection-change"[], "selection-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
60
|
-
data: {
|
|
61
|
-
type: ArrayConstructor;
|
|
62
|
-
default(): never[];
|
|
63
|
-
};
|
|
64
|
-
border: {
|
|
65
|
-
type: BooleanConstructor;
|
|
66
|
-
default: boolean;
|
|
67
|
-
};
|
|
68
|
-
stripe: {
|
|
69
|
-
type: BooleanConstructor;
|
|
70
|
-
default: boolean;
|
|
71
|
-
};
|
|
72
|
-
type: {
|
|
73
|
-
type: StringConstructor;
|
|
74
|
-
default: string;
|
|
75
|
-
};
|
|
76
|
-
emptyText: {
|
|
77
|
-
type: StringConstructor;
|
|
78
|
-
default: string;
|
|
79
|
-
};
|
|
80
|
-
loading: {
|
|
81
|
-
type: BooleanConstructor;
|
|
82
|
-
default: boolean;
|
|
83
|
-
};
|
|
84
|
-
rowKey: {
|
|
85
|
-
type: StringConstructor;
|
|
86
|
-
default: string;
|
|
87
|
-
};
|
|
88
|
-
}>> & {
|
|
89
|
-
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
90
|
-
}, {
|
|
91
|
-
data: unknown[];
|
|
92
|
-
type: string;
|
|
93
|
-
border: boolean;
|
|
94
|
-
emptyText: string;
|
|
95
|
-
loading: boolean;
|
|
96
|
-
stripe: boolean;
|
|
97
|
-
rowKey: string;
|
|
98
|
-
}>;
|
|
99
|
-
export default _default;
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
type: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
size: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
text: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
disabled: {
|
|
15
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
inverted: {
|
|
19
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
circle: {
|
|
23
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
mark: {
|
|
27
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
customStyle: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
}, any, any, {
|
|
35
|
-
classes(): string;
|
|
36
|
-
}, {
|
|
37
|
-
isTrue(value: any): boolean;
|
|
38
|
-
onClick(): void;
|
|
39
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
-
type: {
|
|
41
|
-
type: StringConstructor;
|
|
42
|
-
default: string;
|
|
43
|
-
};
|
|
44
|
-
size: {
|
|
45
|
-
type: StringConstructor;
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
text: {
|
|
49
|
-
type: StringConstructor;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
disabled: {
|
|
53
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
54
|
-
default: boolean;
|
|
55
|
-
};
|
|
56
|
-
inverted: {
|
|
57
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
|
-
circle: {
|
|
61
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
62
|
-
default: boolean;
|
|
63
|
-
};
|
|
64
|
-
mark: {
|
|
65
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
66
|
-
default: boolean;
|
|
67
|
-
};
|
|
68
|
-
customStyle: {
|
|
69
|
-
type: StringConstructor;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
}>> & {
|
|
73
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
74
|
-
}, {
|
|
75
|
-
type: string;
|
|
76
|
-
inverted: string | boolean;
|
|
77
|
-
text: string;
|
|
78
|
-
size: string;
|
|
79
|
-
customStyle: string;
|
|
80
|
-
mark: string | boolean;
|
|
81
|
-
circle: string | boolean;
|
|
82
|
-
disabled: string | boolean;
|
|
83
|
-
}>;
|
|
84
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
-
export default _default;
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
width: {
|
|
3
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
align: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
rowspan: {
|
|
11
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12
|
-
default: number;
|
|
13
|
-
};
|
|
14
|
-
colspan: {
|
|
15
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
16
|
-
default: number;
|
|
17
|
-
};
|
|
18
|
-
}, any, {
|
|
19
|
-
border: boolean;
|
|
20
|
-
}, {}, {
|
|
21
|
-
/**
|
|
22
|
-
* 获取父元素实例
|
|
23
|
-
*/
|
|
24
|
-
getTable(): false | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
25
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
-
width: {
|
|
27
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
align: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
rowspan: {
|
|
35
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
36
|
-
default: number;
|
|
37
|
-
};
|
|
38
|
-
colspan: {
|
|
39
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
40
|
-
default: number;
|
|
41
|
-
};
|
|
42
|
-
}>>, {
|
|
43
|
-
width: string | number;
|
|
44
|
-
align: string;
|
|
45
|
-
colspan: string | number;
|
|
46
|
-
rowspan: string | number;
|
|
47
|
-
}>;
|
|
48
|
-
export default _default;
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
filterType: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
filterData: {
|
|
7
|
-
type: ArrayConstructor;
|
|
8
|
-
default(): never[];
|
|
9
|
-
};
|
|
10
|
-
mode: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
map: {
|
|
15
|
-
type: ObjectConstructor;
|
|
16
|
-
default(): {
|
|
17
|
-
text: string;
|
|
18
|
-
value: string;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
filterDefaultValue: {
|
|
22
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
23
|
-
default(): "";
|
|
24
|
-
};
|
|
25
|
-
}, any, {
|
|
26
|
-
resource: {
|
|
27
|
-
reset: string;
|
|
28
|
-
search: string;
|
|
29
|
-
submit: string;
|
|
30
|
-
filter: string;
|
|
31
|
-
gt: string;
|
|
32
|
-
lt: string;
|
|
33
|
-
date: string;
|
|
34
|
-
};
|
|
35
|
-
enabled: boolean;
|
|
36
|
-
isOpened: boolean;
|
|
37
|
-
dataList: never[];
|
|
38
|
-
filterValue: string | unknown[];
|
|
39
|
-
checkedValues: never[];
|
|
40
|
-
gtValue: string;
|
|
41
|
-
ltValue: string;
|
|
42
|
-
dateRange: never[];
|
|
43
|
-
dateSelect: never[];
|
|
44
|
-
}, {
|
|
45
|
-
canReset(): any;
|
|
46
|
-
isSelect(): any;
|
|
47
|
-
isSearch(): any;
|
|
48
|
-
isRange(): any;
|
|
49
|
-
isDate(): any;
|
|
50
|
-
}, {
|
|
51
|
-
_copyFilters(): void;
|
|
52
|
-
openPopup(): void;
|
|
53
|
-
closePopup(): void;
|
|
54
|
-
handleClose(e: any): void;
|
|
55
|
-
resetDate(): void;
|
|
56
|
-
onDropdown(e: any): void;
|
|
57
|
-
onItemClick(e: any, index: any): void;
|
|
58
|
-
datetimechange(e: any): void;
|
|
59
|
-
timepickerclose(e: any): void;
|
|
60
|
-
handleSelectSubmit(): void;
|
|
61
|
-
handleSelectReset(): void;
|
|
62
|
-
handleSearchSubmit(): void;
|
|
63
|
-
handleSearchReset(): void;
|
|
64
|
-
handleRangeSubmit(isReset: any): void;
|
|
65
|
-
handleRangeReset(): void;
|
|
66
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
67
|
-
filterType: {
|
|
68
|
-
type: StringConstructor;
|
|
69
|
-
default: string;
|
|
70
|
-
};
|
|
71
|
-
filterData: {
|
|
72
|
-
type: ArrayConstructor;
|
|
73
|
-
default(): never[];
|
|
74
|
-
};
|
|
75
|
-
mode: {
|
|
76
|
-
type: StringConstructor;
|
|
77
|
-
default: string;
|
|
78
|
-
};
|
|
79
|
-
map: {
|
|
80
|
-
type: ObjectConstructor;
|
|
81
|
-
default(): {
|
|
82
|
-
text: string;
|
|
83
|
-
value: string;
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
filterDefaultValue: {
|
|
87
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
88
|
-
default(): "";
|
|
89
|
-
};
|
|
90
|
-
}>> & {
|
|
91
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
92
|
-
}, {
|
|
93
|
-
map: Record<string, any>;
|
|
94
|
-
mode: string;
|
|
95
|
-
filterData: unknown[];
|
|
96
|
-
filterType: string;
|
|
97
|
-
filterDefaultValue: string | unknown[];
|
|
98
|
-
}>;
|
|
99
|
-
export default _default;
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
width: {
|
|
3
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
align: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
rowspan: {
|
|
11
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12
|
-
default: number;
|
|
13
|
-
};
|
|
14
|
-
colspan: {
|
|
15
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
16
|
-
default: number;
|
|
17
|
-
};
|
|
18
|
-
sortable: {
|
|
19
|
-
type: BooleanConstructor;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
filterType: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
filterData: {
|
|
27
|
-
type: ArrayConstructor;
|
|
28
|
-
default(): never[];
|
|
29
|
-
};
|
|
30
|
-
filterDefaultValue: {
|
|
31
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
32
|
-
default(): "";
|
|
33
|
-
};
|
|
34
|
-
}, any, {
|
|
35
|
-
border: boolean;
|
|
36
|
-
ascending: boolean;
|
|
37
|
-
descending: boolean;
|
|
38
|
-
}, {
|
|
39
|
-
customWidth(): string | number;
|
|
40
|
-
contentAlign(): string;
|
|
41
|
-
}, {
|
|
42
|
-
sort(): void;
|
|
43
|
-
ascendingFn(): void;
|
|
44
|
-
descendingFn(): void;
|
|
45
|
-
clearOther(): void;
|
|
46
|
-
ondropdown(e: any): void;
|
|
47
|
-
/**
|
|
48
|
-
* 获取父元素实例
|
|
49
|
-
*/
|
|
50
|
-
getTable(name: any): false | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
51
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("sort-change" | "filter-change")[], "sort-change" | "filter-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
52
|
-
width: {
|
|
53
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
align: {
|
|
57
|
-
type: StringConstructor;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
rowspan: {
|
|
61
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
62
|
-
default: number;
|
|
63
|
-
};
|
|
64
|
-
colspan: {
|
|
65
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
66
|
-
default: number;
|
|
67
|
-
};
|
|
68
|
-
sortable: {
|
|
69
|
-
type: BooleanConstructor;
|
|
70
|
-
default: boolean;
|
|
71
|
-
};
|
|
72
|
-
filterType: {
|
|
73
|
-
type: StringConstructor;
|
|
74
|
-
default: string;
|
|
75
|
-
};
|
|
76
|
-
filterData: {
|
|
77
|
-
type: ArrayConstructor;
|
|
78
|
-
default(): never[];
|
|
79
|
-
};
|
|
80
|
-
filterDefaultValue: {
|
|
81
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
82
|
-
default(): "";
|
|
83
|
-
};
|
|
84
|
-
}>> & {
|
|
85
|
-
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
86
|
-
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
87
|
-
}, {
|
|
88
|
-
width: string | number;
|
|
89
|
-
align: string;
|
|
90
|
-
colspan: string | number;
|
|
91
|
-
rowspan: string | number;
|
|
92
|
-
filterData: unknown[];
|
|
93
|
-
filterType: string;
|
|
94
|
-
filterDefaultValue: string | unknown[];
|
|
95
|
-
sortable: boolean;
|
|
96
|
-
}>;
|
|
97
|
-
export default _default;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
-
border: boolean;
|
|
3
|
-
selection: boolean;
|
|
4
|
-
rowspan: number;
|
|
5
|
-
indeterminate: boolean;
|
|
6
|
-
checked: boolean;
|
|
7
|
-
}, {}, {
|
|
8
|
-
init(self: any): void;
|
|
9
|
-
checkboxSelected(e: any): void;
|
|
10
|
-
/**
|
|
11
|
-
* 获取父元素实例
|
|
12
|
-
*/
|
|
13
|
-
getTable(name?: string): false | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
14
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
15
|
-
export default _default;
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
type: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
title: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
align: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
color: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
stat: {
|
|
19
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
}, any, {}, {
|
|
23
|
-
textAlign(): string;
|
|
24
|
-
}, {
|
|
25
|
-
isOpenStat(): any;
|
|
26
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
-
type: {
|
|
28
|
-
type: StringConstructor;
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
|
-
title: {
|
|
32
|
-
type: StringConstructor;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
align: {
|
|
36
|
-
type: StringConstructor;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
color: {
|
|
40
|
-
type: StringConstructor;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
stat: {
|
|
44
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
}>>, {
|
|
48
|
-
type: string;
|
|
49
|
-
title: string;
|
|
50
|
-
color: string;
|
|
51
|
-
stat: string | boolean;
|
|
52
|
-
align: string;
|
|
53
|
-
}>;
|
|
54
|
-
export default _default;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
content: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
placement: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
}, any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
-
content: {
|
|
12
|
-
type: StringConstructor;
|
|
13
|
-
default: string;
|
|
14
|
-
};
|
|
15
|
-
placement: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
}>>, {
|
|
20
|
-
content: string;
|
|
21
|
-
placement: string;
|
|
22
|
-
}>;
|
|
23
|
-
export default _default;
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
indeterminate: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
checked: {
|
|
7
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
disabled: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
index: {
|
|
15
|
-
type: NumberConstructor;
|
|
16
|
-
default: number;
|
|
17
|
-
};
|
|
18
|
-
cellData: {
|
|
19
|
-
type: ObjectConstructor;
|
|
20
|
-
default(): {};
|
|
21
|
-
};
|
|
22
|
-
}, any, {
|
|
23
|
-
isChecked: boolean;
|
|
24
|
-
isDisabled: boolean;
|
|
25
|
-
isIndeterminate: boolean;
|
|
26
|
-
}, {}, {
|
|
27
|
-
selected(): void;
|
|
28
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "checkboxSelected"[], "checkboxSelected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
-
indeterminate: {
|
|
30
|
-
type: BooleanConstructor;
|
|
31
|
-
default: boolean;
|
|
32
|
-
};
|
|
33
|
-
checked: {
|
|
34
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
disabled: {
|
|
38
|
-
type: BooleanConstructor;
|
|
39
|
-
default: boolean;
|
|
40
|
-
};
|
|
41
|
-
index: {
|
|
42
|
-
type: NumberConstructor;
|
|
43
|
-
default: number;
|
|
44
|
-
};
|
|
45
|
-
cellData: {
|
|
46
|
-
type: ObjectConstructor;
|
|
47
|
-
default(): {};
|
|
48
|
-
};
|
|
49
|
-
}>> & {
|
|
50
|
-
onCheckboxSelected?: ((...args: any[]) => any) | undefined;
|
|
51
|
-
}, {
|
|
52
|
-
disabled: boolean;
|
|
53
|
-
checked: string | boolean;
|
|
54
|
-
indeterminate: boolean;
|
|
55
|
-
index: number;
|
|
56
|
-
cellData: Record<string, any>;
|
|
57
|
-
}>;
|
|
58
|
-
export default _default;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
disabled: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
keyValue: {
|
|
7
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
}, any, {
|
|
11
|
-
value: boolean;
|
|
12
|
-
border: boolean;
|
|
13
|
-
selection: boolean;
|
|
14
|
-
widthThArr: never[];
|
|
15
|
-
ishead: boolean;
|
|
16
|
-
checked: boolean;
|
|
17
|
-
indeterminate: boolean;
|
|
18
|
-
}, {}, {
|
|
19
|
-
minWidthUpdate(width: any): void;
|
|
20
|
-
checkboxSelected(e: any): void;
|
|
21
|
-
change(e: any): void;
|
|
22
|
-
/**
|
|
23
|
-
* 获取父元素实例
|
|
24
|
-
*/
|
|
25
|
-
getTable(name?: string): false | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
26
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
-
disabled: {
|
|
28
|
-
type: BooleanConstructor;
|
|
29
|
-
default: boolean;
|
|
30
|
-
};
|
|
31
|
-
keyValue: {
|
|
32
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
}>>, {
|
|
36
|
-
disabled: boolean;
|
|
37
|
-
keyValue: string | number;
|
|
38
|
-
}>;
|
|
39
|
-
export default _default;
|