@kengic/uni 0.3.2-beta.4 → 0.3.2-beta.6
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 +3 -2
- 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,127 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
rules: {
|
|
3
|
-
type: ArrayConstructor;
|
|
4
|
-
default(): null;
|
|
5
|
-
};
|
|
6
|
-
name: {
|
|
7
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
required: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
label: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
labelWidth: {
|
|
19
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
labelAlign: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
errorMessage: {
|
|
27
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
leftIcon: StringConstructor;
|
|
31
|
-
iconColor: {
|
|
32
|
-
type: StringConstructor;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
}, any, {
|
|
36
|
-
errMsg: string;
|
|
37
|
-
userRules: null;
|
|
38
|
-
localLabelAlign: string;
|
|
39
|
-
localLabelWidth: string;
|
|
40
|
-
localLabelPos: string;
|
|
41
|
-
border: boolean;
|
|
42
|
-
isFirstBorder: boolean;
|
|
43
|
-
}, {
|
|
44
|
-
msg(): string | true;
|
|
45
|
-
}, {
|
|
46
|
-
/**
|
|
47
|
-
* 外部调用方法
|
|
48
|
-
* 设置规则 ,主要用于小程序自定义检验规则
|
|
49
|
-
* @param {Array} rules 规则源数据
|
|
50
|
-
*/
|
|
51
|
-
setRules(rules?: any[]): void;
|
|
52
|
-
setValue(): void;
|
|
53
|
-
/**
|
|
54
|
-
* 外部调用方法
|
|
55
|
-
* 校验数据
|
|
56
|
-
* @param {any} value 需要校验的数据
|
|
57
|
-
* @param {boolean} 是否立即校验
|
|
58
|
-
* @return {Array|null} 校验内容
|
|
59
|
-
*/
|
|
60
|
-
onFieldChange(value: any, formtrigger?: boolean): any[] | null;
|
|
61
|
-
/**
|
|
62
|
-
* 初始组件数据
|
|
63
|
-
*/
|
|
64
|
-
init(type?: boolean): void;
|
|
65
|
-
unInit(): void;
|
|
66
|
-
itemSetValue(value: any): any;
|
|
67
|
-
/**
|
|
68
|
-
* 移除该表单项的校验结果
|
|
69
|
-
*/
|
|
70
|
-
clearValidate(): void;
|
|
71
|
-
_isRequired(): boolean;
|
|
72
|
-
_justifyContent(): "center" | "flex-end" | "flex-start";
|
|
73
|
-
_labelWidthUnit(labelWidth: any): any;
|
|
74
|
-
_labelPosition(): any;
|
|
75
|
-
/**
|
|
76
|
-
* 触发时机
|
|
77
|
-
* @param {Object} rule 当前规则内时机
|
|
78
|
-
* @param {Object} itemRlue 当前组件时机
|
|
79
|
-
* @param {Object} parentRule 父组件时机
|
|
80
|
-
*/
|
|
81
|
-
isTrigger(rule: Object, itemRlue: Object, parentRule: Object): "submit" | "bind";
|
|
82
|
-
num2px(num: any): any;
|
|
83
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
-
rules: {
|
|
85
|
-
type: ArrayConstructor;
|
|
86
|
-
default(): null;
|
|
87
|
-
};
|
|
88
|
-
name: {
|
|
89
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
90
|
-
default: string;
|
|
91
|
-
};
|
|
92
|
-
required: {
|
|
93
|
-
type: BooleanConstructor;
|
|
94
|
-
default: boolean;
|
|
95
|
-
};
|
|
96
|
-
label: {
|
|
97
|
-
type: StringConstructor;
|
|
98
|
-
default: string;
|
|
99
|
-
};
|
|
100
|
-
labelWidth: {
|
|
101
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
102
|
-
default: string;
|
|
103
|
-
};
|
|
104
|
-
labelAlign: {
|
|
105
|
-
type: StringConstructor;
|
|
106
|
-
default: string;
|
|
107
|
-
};
|
|
108
|
-
errorMessage: {
|
|
109
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
110
|
-
default: string;
|
|
111
|
-
};
|
|
112
|
-
leftIcon: StringConstructor;
|
|
113
|
-
iconColor: {
|
|
114
|
-
type: StringConstructor;
|
|
115
|
-
default: string;
|
|
116
|
-
};
|
|
117
|
-
}>>, {
|
|
118
|
-
name: string | unknown[];
|
|
119
|
-
label: string;
|
|
120
|
-
labelWidth: string | number;
|
|
121
|
-
required: boolean;
|
|
122
|
-
errorMessage: string | boolean;
|
|
123
|
-
iconColor: string;
|
|
124
|
-
rules: unknown[];
|
|
125
|
-
labelAlign: string;
|
|
126
|
-
}>;
|
|
127
|
-
export default _default;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
en: {
|
|
3
|
-
"uni-goods-nav.options.shop": string;
|
|
4
|
-
"uni-goods-nav.options.cart": string;
|
|
5
|
-
"uni-goods-nav.buttonGroup.addToCart": string;
|
|
6
|
-
"uni-goods-nav.buttonGroup.buyNow": string;
|
|
7
|
-
};
|
|
8
|
-
'zh-Hans': {
|
|
9
|
-
"uni-goods-nav.options.shop": string;
|
|
10
|
-
"uni-goods-nav.options.cart": string;
|
|
11
|
-
"uni-goods-nav.buttonGroup.addToCart": string;
|
|
12
|
-
"uni-goods-nav.buttonGroup.buyNow": string;
|
|
13
|
-
};
|
|
14
|
-
'zh-Hant': {
|
|
15
|
-
"uni-goods-nav.options.shop": string;
|
|
16
|
-
"uni-goods-nav.options.cart": string;
|
|
17
|
-
"uni-goods-nav.buttonGroup.addToCart": string;
|
|
18
|
-
"uni-goods-nav.buttonGroup.buyNow": string;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
export default _default;
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
options: {
|
|
3
|
-
type: ArrayConstructor;
|
|
4
|
-
default(): {
|
|
5
|
-
icon: string;
|
|
6
|
-
text: any;
|
|
7
|
-
}[];
|
|
8
|
-
};
|
|
9
|
-
buttonGroup: {
|
|
10
|
-
type: ArrayConstructor;
|
|
11
|
-
default(): {
|
|
12
|
-
text: any;
|
|
13
|
-
backgroundColor: string;
|
|
14
|
-
color: string;
|
|
15
|
-
}[];
|
|
16
|
-
};
|
|
17
|
-
fill: {
|
|
18
|
-
type: BooleanConstructor;
|
|
19
|
-
default: boolean;
|
|
20
|
-
};
|
|
21
|
-
stat: {
|
|
22
|
-
type: BooleanConstructor;
|
|
23
|
-
default: boolean;
|
|
24
|
-
};
|
|
25
|
-
}, any, any, {}, {
|
|
26
|
-
onClick(index: any, item: any): void;
|
|
27
|
-
buttonClick(index: any, item: any): void;
|
|
28
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "buttonClick")[], "click" | "buttonClick", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
-
options: {
|
|
30
|
-
type: ArrayConstructor;
|
|
31
|
-
default(): {
|
|
32
|
-
icon: string;
|
|
33
|
-
text: any;
|
|
34
|
-
}[];
|
|
35
|
-
};
|
|
36
|
-
buttonGroup: {
|
|
37
|
-
type: ArrayConstructor;
|
|
38
|
-
default(): {
|
|
39
|
-
text: any;
|
|
40
|
-
backgroundColor: string;
|
|
41
|
-
color: string;
|
|
42
|
-
}[];
|
|
43
|
-
};
|
|
44
|
-
fill: {
|
|
45
|
-
type: BooleanConstructor;
|
|
46
|
-
default: boolean;
|
|
47
|
-
};
|
|
48
|
-
stat: {
|
|
49
|
-
type: BooleanConstructor;
|
|
50
|
-
default: boolean;
|
|
51
|
-
};
|
|
52
|
-
}>> & {
|
|
53
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
54
|
-
onButtonClick?: ((...args: any[]) => any) | undefined;
|
|
55
|
-
}, {
|
|
56
|
-
fill: boolean;
|
|
57
|
-
options: unknown[];
|
|
58
|
-
stat: boolean;
|
|
59
|
-
buttonGroup: unknown[];
|
|
60
|
-
}>;
|
|
61
|
-
export default _default;
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
column: {
|
|
3
|
-
type: NumberConstructor;
|
|
4
|
-
default: number;
|
|
5
|
-
};
|
|
6
|
-
showBorder: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
borderColor: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
square: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
highlight: {
|
|
19
|
-
type: BooleanConstructor;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
}, any, {
|
|
23
|
-
elId: string;
|
|
24
|
-
width: number;
|
|
25
|
-
}, {}, {
|
|
26
|
-
init(): void;
|
|
27
|
-
change(e: any): void;
|
|
28
|
-
_getSize(fn: any): void;
|
|
29
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
-
column: {
|
|
31
|
-
type: NumberConstructor;
|
|
32
|
-
default: number;
|
|
33
|
-
};
|
|
34
|
-
showBorder: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
borderColor: {
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
default: string;
|
|
41
|
-
};
|
|
42
|
-
square: {
|
|
43
|
-
type: BooleanConstructor;
|
|
44
|
-
default: boolean;
|
|
45
|
-
};
|
|
46
|
-
highlight: {
|
|
47
|
-
type: BooleanConstructor;
|
|
48
|
-
default: boolean;
|
|
49
|
-
};
|
|
50
|
-
}>> & {
|
|
51
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
52
|
-
}, {
|
|
53
|
-
borderColor: string;
|
|
54
|
-
column: number;
|
|
55
|
-
showBorder: boolean;
|
|
56
|
-
square: boolean;
|
|
57
|
-
highlight: boolean;
|
|
58
|
-
}>;
|
|
59
|
-
export default _default;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
index: {
|
|
3
|
-
type: NumberConstructor;
|
|
4
|
-
default: number;
|
|
5
|
-
};
|
|
6
|
-
}, any, {
|
|
7
|
-
column: number;
|
|
8
|
-
showBorder: boolean;
|
|
9
|
-
square: boolean;
|
|
10
|
-
highlight: boolean;
|
|
11
|
-
left: number;
|
|
12
|
-
top: number;
|
|
13
|
-
openNum: number;
|
|
14
|
-
width: number;
|
|
15
|
-
borderColor: string;
|
|
16
|
-
}, {}, {
|
|
17
|
-
_onClick(): void;
|
|
18
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
-
index: {
|
|
20
|
-
type: NumberConstructor;
|
|
21
|
-
default: number;
|
|
22
|
-
};
|
|
23
|
-
}>>, {
|
|
24
|
-
index: number;
|
|
25
|
-
}>;
|
|
26
|
-
export default _default;
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
title: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
top: {
|
|
7
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
8
|
-
default: number;
|
|
9
|
-
};
|
|
10
|
-
mode: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
stat: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
}, any, {
|
|
19
|
-
margin: boolean;
|
|
20
|
-
border: boolean;
|
|
21
|
-
}, {}, {
|
|
22
|
-
/**
|
|
23
|
-
* 获取父元素实例
|
|
24
|
-
*/
|
|
25
|
-
getForm(): false | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
26
|
-
onClick(): void;
|
|
27
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
|
-
title: {
|
|
29
|
-
type: StringConstructor;
|
|
30
|
-
default: string;
|
|
31
|
-
};
|
|
32
|
-
top: {
|
|
33
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
34
|
-
default: number;
|
|
35
|
-
};
|
|
36
|
-
mode: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
stat: {
|
|
41
|
-
type: BooleanConstructor;
|
|
42
|
-
default: boolean;
|
|
43
|
-
};
|
|
44
|
-
}>> & {
|
|
45
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
46
|
-
}, {
|
|
47
|
-
title: string;
|
|
48
|
-
mode: string;
|
|
49
|
-
top: string | number;
|
|
50
|
-
stat: boolean;
|
|
51
|
-
}>;
|
|
52
|
-
export default _default;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
const id: string;
|
|
3
|
-
const name: string;
|
|
4
|
-
const font_family: string;
|
|
5
|
-
const css_prefix_text: string;
|
|
6
|
-
const description: string;
|
|
7
|
-
const glyphs: {
|
|
8
|
-
icon_id: string;
|
|
9
|
-
name: string;
|
|
10
|
-
font_class: string;
|
|
11
|
-
unicode: string;
|
|
12
|
-
unicode_decimal: number;
|
|
13
|
-
}[];
|
|
14
|
-
}
|
|
15
|
-
export default _default;
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
type: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
color: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
size: {
|
|
11
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12
|
-
default: number;
|
|
13
|
-
};
|
|
14
|
-
customPrefix: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
}, any, {
|
|
19
|
-
icons: {
|
|
20
|
-
icon_id: string;
|
|
21
|
-
name: string;
|
|
22
|
-
font_class: string;
|
|
23
|
-
unicode: string;
|
|
24
|
-
unicode_decimal: number;
|
|
25
|
-
}[];
|
|
26
|
-
}, {
|
|
27
|
-
unicode(): string;
|
|
28
|
-
iconSize(): any;
|
|
29
|
-
}, {
|
|
30
|
-
_onClick(): void;
|
|
31
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
-
type: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
default: string;
|
|
35
|
-
};
|
|
36
|
-
color: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
size: {
|
|
41
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
42
|
-
default: number;
|
|
43
|
-
};
|
|
44
|
-
customPrefix: {
|
|
45
|
-
type: StringConstructor;
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
}>> & {
|
|
49
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
50
|
-
}, {
|
|
51
|
-
type: string;
|
|
52
|
-
size: string | number;
|
|
53
|
-
color: string;
|
|
54
|
-
customPrefix: string;
|
|
55
|
-
}>;
|
|
56
|
-
export default _default;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
loaded: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
idx: {
|
|
7
|
-
type: NumberConstructor;
|
|
8
|
-
default: number;
|
|
9
|
-
};
|
|
10
|
-
list: {
|
|
11
|
-
type: ObjectConstructor;
|
|
12
|
-
default(): {};
|
|
13
|
-
};
|
|
14
|
-
showSelect: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
}, any, any, {}, {
|
|
19
|
-
onClick(idx: any, index: any): void;
|
|
20
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "itemClick"[], "itemClick", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
-
loaded: {
|
|
22
|
-
type: BooleanConstructor;
|
|
23
|
-
default: boolean;
|
|
24
|
-
};
|
|
25
|
-
idx: {
|
|
26
|
-
type: NumberConstructor;
|
|
27
|
-
default: number;
|
|
28
|
-
};
|
|
29
|
-
list: {
|
|
30
|
-
type: ObjectConstructor;
|
|
31
|
-
default(): {};
|
|
32
|
-
};
|
|
33
|
-
showSelect: {
|
|
34
|
-
type: BooleanConstructor;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
}>> & {
|
|
38
|
-
onItemClick?: ((...args: any[]) => any) | undefined;
|
|
39
|
-
}, {
|
|
40
|
-
list: Record<string, any>;
|
|
41
|
-
loaded: boolean;
|
|
42
|
-
idx: number;
|
|
43
|
-
showSelect: boolean;
|
|
44
|
-
}>;
|
|
45
|
-
export default _default;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
options: {
|
|
3
|
-
type: ArrayConstructor;
|
|
4
|
-
default(): never[];
|
|
5
|
-
};
|
|
6
|
-
showSelect: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
}, any, {
|
|
11
|
-
lists: never[];
|
|
12
|
-
winHeight: number;
|
|
13
|
-
itemHeight: number;
|
|
14
|
-
winOffsetY: number;
|
|
15
|
-
touchmove: boolean;
|
|
16
|
-
touchmoveIndex: number;
|
|
17
|
-
scrollViewId: string;
|
|
18
|
-
touchmovable: boolean;
|
|
19
|
-
loaded: boolean;
|
|
20
|
-
isPC: boolean;
|
|
21
|
-
}, {}, {
|
|
22
|
-
setList(): void;
|
|
23
|
-
touchStart(e: any): void;
|
|
24
|
-
touchMove(e: any): false | undefined;
|
|
25
|
-
touchEnd(): void;
|
|
26
|
-
/**
|
|
27
|
-
* 兼容 PC @tian
|
|
28
|
-
*/
|
|
29
|
-
mousedown(e: any): void;
|
|
30
|
-
mousemove(e: any): void;
|
|
31
|
-
mouseleave(e: any): void;
|
|
32
|
-
IsPC(): boolean;
|
|
33
|
-
onClick(e: any): void;
|
|
34
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
-
options: {
|
|
36
|
-
type: ArrayConstructor;
|
|
37
|
-
default(): never[];
|
|
38
|
-
};
|
|
39
|
-
showSelect: {
|
|
40
|
-
type: BooleanConstructor;
|
|
41
|
-
default: boolean;
|
|
42
|
-
};
|
|
43
|
-
}>> & {
|
|
44
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
45
|
-
}, {
|
|
46
|
-
options: unknown[];
|
|
47
|
-
showSelect: boolean;
|
|
48
|
-
}>;
|
|
49
|
-
export default _default;
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
href: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
text: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
download: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
showUnderLine: {
|
|
15
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
copyTips: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
color: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
fontSize: {
|
|
27
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
28
|
-
default: number;
|
|
29
|
-
};
|
|
30
|
-
}, any, any, {
|
|
31
|
-
isShowA(): boolean;
|
|
32
|
-
}, {
|
|
33
|
-
isMail(): any;
|
|
34
|
-
isTel(): any;
|
|
35
|
-
openURL(): void;
|
|
36
|
-
makePhoneCall(phoneNumber: any): void;
|
|
37
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
-
href: {
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
default: string;
|
|
41
|
-
};
|
|
42
|
-
text: {
|
|
43
|
-
type: StringConstructor;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
download: {
|
|
47
|
-
type: StringConstructor;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
showUnderLine: {
|
|
51
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
52
|
-
default: boolean;
|
|
53
|
-
};
|
|
54
|
-
copyTips: {
|
|
55
|
-
type: StringConstructor;
|
|
56
|
-
default: string;
|
|
57
|
-
};
|
|
58
|
-
color: {
|
|
59
|
-
type: StringConstructor;
|
|
60
|
-
default: string;
|
|
61
|
-
};
|
|
62
|
-
fontSize: {
|
|
63
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
64
|
-
default: number;
|
|
65
|
-
};
|
|
66
|
-
}>>, {
|
|
67
|
-
text: string;
|
|
68
|
-
color: string;
|
|
69
|
-
href: string;
|
|
70
|
-
fontSize: string | number;
|
|
71
|
-
download: string;
|
|
72
|
-
showUnderLine: string | boolean;
|
|
73
|
-
copyTips: string;
|
|
74
|
-
}>;
|
|
75
|
-
export default _default;
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
stackFromEnd: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
enableBackToTop: {
|
|
7
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
scrollY: {
|
|
11
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
border: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
renderReverse: {
|
|
19
|
-
type: BooleanConstructor;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
}, any, any, {}, {
|
|
23
|
-
loadMore(e: any): void;
|
|
24
|
-
scroll(e: any): void;
|
|
25
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
-
stackFromEnd: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
enableBackToTop: {
|
|
31
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
32
|
-
default: boolean;
|
|
33
|
-
};
|
|
34
|
-
scrollY: {
|
|
35
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
border: {
|
|
39
|
-
type: BooleanConstructor;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
renderReverse: {
|
|
43
|
-
type: BooleanConstructor;
|
|
44
|
-
default: boolean;
|
|
45
|
-
};
|
|
46
|
-
}>>, {
|
|
47
|
-
border: boolean;
|
|
48
|
-
stackFromEnd: boolean;
|
|
49
|
-
enableBackToTop: string | boolean;
|
|
50
|
-
scrollY: string | boolean;
|
|
51
|
-
renderReverse: boolean;
|
|
52
|
-
}>;
|
|
53
|
-
export default _default;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
display: {
|
|
3
|
-
type: StringConstructor[];
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
}, any, {
|
|
7
|
-
pulling: boolean;
|
|
8
|
-
}, {
|
|
9
|
-
isShow(): boolean;
|
|
10
|
-
}, {
|
|
11
|
-
onchange(value: any): void;
|
|
12
|
-
onrefresh(e: any): void;
|
|
13
|
-
onpullingdown(e: any): void;
|
|
14
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
display: {
|
|
16
|
-
type: StringConstructor[];
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
}>>, {
|
|
20
|
-
display: string;
|
|
21
|
-
}>;
|
|
22
|
-
export default _default;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
title: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
}, any, {
|
|
7
|
-
isFirstChild: boolean;
|
|
8
|
-
border: boolean;
|
|
9
|
-
borderShow: boolean;
|
|
10
|
-
}, {}, {
|
|
11
|
-
/**
|
|
12
|
-
* 获取父元素实例
|
|
13
|
-
*/
|
|
14
|
-
getForm(name?: string): false | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
15
|
-
aderror(e: any): void;
|
|
16
|
-
closeAd(e: any): void;
|
|
17
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
-
title: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
}>>, {
|
|
23
|
-
title: string;
|
|
24
|
-
}>;
|
|
25
|
-
export default _default;
|