@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,269 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
name: StringConstructor;
|
|
3
|
-
value: (StringConstructor | NumberConstructor)[];
|
|
4
|
-
modelValue: (StringConstructor | NumberConstructor)[];
|
|
5
|
-
type: {
|
|
6
|
-
type: StringConstructor;
|
|
7
|
-
default: string;
|
|
8
|
-
};
|
|
9
|
-
clearable: {
|
|
10
|
-
type: BooleanConstructor;
|
|
11
|
-
default: boolean;
|
|
12
|
-
};
|
|
13
|
-
autoHeight: {
|
|
14
|
-
type: BooleanConstructor;
|
|
15
|
-
default: boolean;
|
|
16
|
-
};
|
|
17
|
-
placeholder: {
|
|
18
|
-
type: StringConstructor;
|
|
19
|
-
default: string;
|
|
20
|
-
};
|
|
21
|
-
placeholderStyle: StringConstructor;
|
|
22
|
-
focus: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
disabled: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
maxlength: {
|
|
31
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
32
|
-
default: number;
|
|
33
|
-
};
|
|
34
|
-
confirmType: {
|
|
35
|
-
type: StringConstructor;
|
|
36
|
-
default: string;
|
|
37
|
-
};
|
|
38
|
-
clearSize: {
|
|
39
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
40
|
-
default: number;
|
|
41
|
-
};
|
|
42
|
-
inputBorder: {
|
|
43
|
-
type: BooleanConstructor;
|
|
44
|
-
default: boolean;
|
|
45
|
-
};
|
|
46
|
-
prefixIcon: {
|
|
47
|
-
type: StringConstructor;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
suffixIcon: {
|
|
51
|
-
type: StringConstructor;
|
|
52
|
-
default: string;
|
|
53
|
-
};
|
|
54
|
-
trim: {
|
|
55
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
56
|
-
default: boolean;
|
|
57
|
-
};
|
|
58
|
-
cursorSpacing: {
|
|
59
|
-
type: NumberConstructor;
|
|
60
|
-
default: number;
|
|
61
|
-
};
|
|
62
|
-
passwordIcon: {
|
|
63
|
-
type: BooleanConstructor;
|
|
64
|
-
default: boolean;
|
|
65
|
-
};
|
|
66
|
-
primaryColor: {
|
|
67
|
-
type: StringConstructor;
|
|
68
|
-
default: string;
|
|
69
|
-
};
|
|
70
|
-
styles: {
|
|
71
|
-
type: ObjectConstructor;
|
|
72
|
-
default(): {
|
|
73
|
-
color: string;
|
|
74
|
-
backgroundColor: string;
|
|
75
|
-
disableColor: string;
|
|
76
|
-
borderColor: string;
|
|
77
|
-
};
|
|
78
|
-
};
|
|
79
|
-
errorMessage: {
|
|
80
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
81
|
-
default: string;
|
|
82
|
-
};
|
|
83
|
-
}, any, {
|
|
84
|
-
focused: boolean;
|
|
85
|
-
val: string;
|
|
86
|
-
showMsg: string;
|
|
87
|
-
border: boolean;
|
|
88
|
-
isFirstBorder: boolean;
|
|
89
|
-
showClearIcon: boolean;
|
|
90
|
-
showPassword: boolean;
|
|
91
|
-
focusShow: boolean;
|
|
92
|
-
localMsg: string;
|
|
93
|
-
isEnter: boolean;
|
|
94
|
-
}, {
|
|
95
|
-
isVal(): boolean;
|
|
96
|
-
msg(): string | boolean;
|
|
97
|
-
inputMaxlength(): number;
|
|
98
|
-
boxStyle(): string;
|
|
99
|
-
inputContentClass(): string;
|
|
100
|
-
inputContentStyle(): string;
|
|
101
|
-
inputStyle(): string;
|
|
102
|
-
}, {
|
|
103
|
-
/**
|
|
104
|
-
* 初始化变量值
|
|
105
|
-
*/
|
|
106
|
-
init(): void;
|
|
107
|
-
/**
|
|
108
|
-
* 点击图标时触发
|
|
109
|
-
* @param {Object} type
|
|
110
|
-
*/
|
|
111
|
-
onClickIcon(type: Object): void;
|
|
112
|
-
/**
|
|
113
|
-
* 显示隐藏内容,密码框时生效
|
|
114
|
-
*/
|
|
115
|
-
onEyes(): void;
|
|
116
|
-
/**
|
|
117
|
-
* 输入时触发
|
|
118
|
-
* @param {Object} event
|
|
119
|
-
*/
|
|
120
|
-
onInput(event: Object): void;
|
|
121
|
-
/**
|
|
122
|
-
* 外部调用方法
|
|
123
|
-
* 获取焦点时触发
|
|
124
|
-
* @param {Object} event
|
|
125
|
-
*/
|
|
126
|
-
onFocus(): void;
|
|
127
|
-
_Focus(event: any): void;
|
|
128
|
-
/**
|
|
129
|
-
* 外部调用方法
|
|
130
|
-
* 失去焦点时触发
|
|
131
|
-
* @param {Object} event
|
|
132
|
-
*/
|
|
133
|
-
onBlur(): void;
|
|
134
|
-
_Blur(event: any): void;
|
|
135
|
-
/**
|
|
136
|
-
* 按下键盘的发送键
|
|
137
|
-
* @param {Object} e
|
|
138
|
-
*/
|
|
139
|
-
onConfirm(e: Object): void;
|
|
140
|
-
/**
|
|
141
|
-
* 清理内容
|
|
142
|
-
* @param {Object} event
|
|
143
|
-
*/
|
|
144
|
-
onClear(event: Object): void;
|
|
145
|
-
/**
|
|
146
|
-
* 键盘高度发生变化的时候触发此事件
|
|
147
|
-
* 兼容性:微信小程序2.7.0+、App 3.1.0+
|
|
148
|
-
* @param {Object} event
|
|
149
|
-
*/
|
|
150
|
-
onkeyboardheightchange(event: Object): void;
|
|
151
|
-
/**
|
|
152
|
-
* 去除空格
|
|
153
|
-
*/
|
|
154
|
-
trimStr(str: any, pos?: string): any;
|
|
155
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "change" | "confirm" | "input" | "update:modelValue" | "focus" | "blur" | "clear" | "iconClick" | "eyes" | "keyboardheightchange")[], "click" | "input" | "clear" | "change" | "confirm" | "update:modelValue" | "focus" | "blur" | "iconClick" | "eyes" | "keyboardheightchange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
156
|
-
name: StringConstructor;
|
|
157
|
-
value: (StringConstructor | NumberConstructor)[];
|
|
158
|
-
modelValue: (StringConstructor | NumberConstructor)[];
|
|
159
|
-
type: {
|
|
160
|
-
type: StringConstructor;
|
|
161
|
-
default: string;
|
|
162
|
-
};
|
|
163
|
-
clearable: {
|
|
164
|
-
type: BooleanConstructor;
|
|
165
|
-
default: boolean;
|
|
166
|
-
};
|
|
167
|
-
autoHeight: {
|
|
168
|
-
type: BooleanConstructor;
|
|
169
|
-
default: boolean;
|
|
170
|
-
};
|
|
171
|
-
placeholder: {
|
|
172
|
-
type: StringConstructor;
|
|
173
|
-
default: string;
|
|
174
|
-
};
|
|
175
|
-
placeholderStyle: StringConstructor;
|
|
176
|
-
focus: {
|
|
177
|
-
type: BooleanConstructor;
|
|
178
|
-
default: boolean;
|
|
179
|
-
};
|
|
180
|
-
disabled: {
|
|
181
|
-
type: BooleanConstructor;
|
|
182
|
-
default: boolean;
|
|
183
|
-
};
|
|
184
|
-
maxlength: {
|
|
185
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
186
|
-
default: number;
|
|
187
|
-
};
|
|
188
|
-
confirmType: {
|
|
189
|
-
type: StringConstructor;
|
|
190
|
-
default: string;
|
|
191
|
-
};
|
|
192
|
-
clearSize: {
|
|
193
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
194
|
-
default: number;
|
|
195
|
-
};
|
|
196
|
-
inputBorder: {
|
|
197
|
-
type: BooleanConstructor;
|
|
198
|
-
default: boolean;
|
|
199
|
-
};
|
|
200
|
-
prefixIcon: {
|
|
201
|
-
type: StringConstructor;
|
|
202
|
-
default: string;
|
|
203
|
-
};
|
|
204
|
-
suffixIcon: {
|
|
205
|
-
type: StringConstructor;
|
|
206
|
-
default: string;
|
|
207
|
-
};
|
|
208
|
-
trim: {
|
|
209
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
210
|
-
default: boolean;
|
|
211
|
-
};
|
|
212
|
-
cursorSpacing: {
|
|
213
|
-
type: NumberConstructor;
|
|
214
|
-
default: number;
|
|
215
|
-
};
|
|
216
|
-
passwordIcon: {
|
|
217
|
-
type: BooleanConstructor;
|
|
218
|
-
default: boolean;
|
|
219
|
-
};
|
|
220
|
-
primaryColor: {
|
|
221
|
-
type: StringConstructor;
|
|
222
|
-
default: string;
|
|
223
|
-
};
|
|
224
|
-
styles: {
|
|
225
|
-
type: ObjectConstructor;
|
|
226
|
-
default(): {
|
|
227
|
-
color: string;
|
|
228
|
-
backgroundColor: string;
|
|
229
|
-
disableColor: string;
|
|
230
|
-
borderColor: string;
|
|
231
|
-
};
|
|
232
|
-
};
|
|
233
|
-
errorMessage: {
|
|
234
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
235
|
-
default: string;
|
|
236
|
-
};
|
|
237
|
-
}>> & {
|
|
238
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
239
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
240
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
241
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
242
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
243
|
-
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
244
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
245
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
246
|
-
onIconClick?: ((...args: any[]) => any) | undefined;
|
|
247
|
-
onEyes?: ((...args: any[]) => any) | undefined;
|
|
248
|
-
onKeyboardheightchange?: ((...args: any[]) => any) | undefined;
|
|
249
|
-
}, {
|
|
250
|
-
type: string;
|
|
251
|
-
trim: string | boolean;
|
|
252
|
-
disabled: boolean;
|
|
253
|
-
placeholder: string;
|
|
254
|
-
focus: boolean;
|
|
255
|
-
styles: Record<string, any>;
|
|
256
|
-
errorMessage: string | boolean;
|
|
257
|
-
clearable: boolean;
|
|
258
|
-
autoHeight: boolean;
|
|
259
|
-
maxlength: string | number;
|
|
260
|
-
confirmType: string;
|
|
261
|
-
clearSize: string | number;
|
|
262
|
-
inputBorder: boolean;
|
|
263
|
-
prefixIcon: string;
|
|
264
|
-
suffixIcon: string;
|
|
265
|
-
cursorSpacing: number;
|
|
266
|
-
passwordIcon: boolean;
|
|
267
|
-
primaryColor: string;
|
|
268
|
-
}>;
|
|
269
|
-
export default _default;
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
pattern: {
|
|
3
|
-
type: ObjectConstructor;
|
|
4
|
-
default(): {};
|
|
5
|
-
};
|
|
6
|
-
horizontal: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
vertical: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
direction: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
content: {
|
|
19
|
-
type: ArrayConstructor;
|
|
20
|
-
default(): never[];
|
|
21
|
-
};
|
|
22
|
-
show: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
popMenu: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
}, any, {
|
|
31
|
-
fabShow: boolean;
|
|
32
|
-
isShow: boolean;
|
|
33
|
-
isAndroidNvue: boolean;
|
|
34
|
-
styles: {
|
|
35
|
-
color: string;
|
|
36
|
-
selectedColor: string;
|
|
37
|
-
backgroundColor: string;
|
|
38
|
-
buttonColor: string;
|
|
39
|
-
iconColor: string;
|
|
40
|
-
icon: string;
|
|
41
|
-
};
|
|
42
|
-
}, {
|
|
43
|
-
contentWidth(e: any): string;
|
|
44
|
-
contentWidthMin(): "55px";
|
|
45
|
-
boxWidth(): string | boolean;
|
|
46
|
-
boxHeight(): string | boolean;
|
|
47
|
-
leftBottom(): string | boolean;
|
|
48
|
-
rightBottom(): string | boolean;
|
|
49
|
-
leftTop(): string | boolean;
|
|
50
|
-
rightTop(): string | boolean;
|
|
51
|
-
flexDirectionStart(): string | boolean;
|
|
52
|
-
flexDirectionEnd(): string | boolean;
|
|
53
|
-
horizontalLeft(): string | boolean;
|
|
54
|
-
horizontalRight(): string | boolean;
|
|
55
|
-
nvueBottom(): number;
|
|
56
|
-
}, {
|
|
57
|
-
_onClick(): void;
|
|
58
|
-
open(): void;
|
|
59
|
-
close(): void;
|
|
60
|
-
/**
|
|
61
|
-
* 按钮点击事件
|
|
62
|
-
*/
|
|
63
|
-
_onItemClick(index: any, item: any): void;
|
|
64
|
-
/**
|
|
65
|
-
* 获取 位置信息
|
|
66
|
-
*/
|
|
67
|
-
getPosition(types: any, paramA: any, paramB: any): string | boolean;
|
|
68
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("fabClick" | "trigger")[], "fabClick" | "trigger", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
69
|
-
pattern: {
|
|
70
|
-
type: ObjectConstructor;
|
|
71
|
-
default(): {};
|
|
72
|
-
};
|
|
73
|
-
horizontal: {
|
|
74
|
-
type: StringConstructor;
|
|
75
|
-
default: string;
|
|
76
|
-
};
|
|
77
|
-
vertical: {
|
|
78
|
-
type: StringConstructor;
|
|
79
|
-
default: string;
|
|
80
|
-
};
|
|
81
|
-
direction: {
|
|
82
|
-
type: StringConstructor;
|
|
83
|
-
default: string;
|
|
84
|
-
};
|
|
85
|
-
content: {
|
|
86
|
-
type: ArrayConstructor;
|
|
87
|
-
default(): never[];
|
|
88
|
-
};
|
|
89
|
-
show: {
|
|
90
|
-
type: BooleanConstructor;
|
|
91
|
-
default: boolean;
|
|
92
|
-
};
|
|
93
|
-
popMenu: {
|
|
94
|
-
type: BooleanConstructor;
|
|
95
|
-
default: boolean;
|
|
96
|
-
};
|
|
97
|
-
}>> & {
|
|
98
|
-
onFabClick?: ((...args: any[]) => any) | undefined;
|
|
99
|
-
onTrigger?: ((...args: any[]) => any) | undefined;
|
|
100
|
-
}, {
|
|
101
|
-
pattern: Record<string, any>;
|
|
102
|
-
content: unknown[];
|
|
103
|
-
direction: string;
|
|
104
|
-
show: boolean;
|
|
105
|
-
horizontal: string;
|
|
106
|
-
vertical: string;
|
|
107
|
-
popMenu: boolean;
|
|
108
|
-
}>;
|
|
109
|
-
export default _default;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
en: {
|
|
3
|
-
"uni-fav.collect": string;
|
|
4
|
-
"uni-fav.collected": string;
|
|
5
|
-
};
|
|
6
|
-
'zh-Hans': {
|
|
7
|
-
"uni-fav.collect": string;
|
|
8
|
-
"uni-fav.collected": string;
|
|
9
|
-
};
|
|
10
|
-
'zh-Hant': {
|
|
11
|
-
"uni-fav.collect": string;
|
|
12
|
-
"uni-fav.collected": string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
export default _default;
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
star: {
|
|
3
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
bgColor: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
fgColor: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
bgColorChecked: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
fgColorChecked: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
circle: {
|
|
23
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
checked: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
contentText: {
|
|
31
|
-
type: ObjectConstructor;
|
|
32
|
-
default(): {
|
|
33
|
-
contentDefault: string;
|
|
34
|
-
contentFav: string;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
stat: {
|
|
38
|
-
type: BooleanConstructor;
|
|
39
|
-
default: boolean;
|
|
40
|
-
};
|
|
41
|
-
}, any, any, {
|
|
42
|
-
contentDefault(): any;
|
|
43
|
-
contentFav(): any;
|
|
44
|
-
}, {
|
|
45
|
-
onClick(): void;
|
|
46
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
-
star: {
|
|
48
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
49
|
-
default: boolean;
|
|
50
|
-
};
|
|
51
|
-
bgColor: {
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
fgColor: {
|
|
56
|
-
type: StringConstructor;
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
|
-
bgColorChecked: {
|
|
60
|
-
type: StringConstructor;
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
fgColorChecked: {
|
|
64
|
-
type: StringConstructor;
|
|
65
|
-
default: string;
|
|
66
|
-
};
|
|
67
|
-
circle: {
|
|
68
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
69
|
-
default: boolean;
|
|
70
|
-
};
|
|
71
|
-
checked: {
|
|
72
|
-
type: BooleanConstructor;
|
|
73
|
-
default: boolean;
|
|
74
|
-
};
|
|
75
|
-
contentText: {
|
|
76
|
-
type: ObjectConstructor;
|
|
77
|
-
default(): {
|
|
78
|
-
contentDefault: string;
|
|
79
|
-
contentFav: string;
|
|
80
|
-
};
|
|
81
|
-
};
|
|
82
|
-
stat: {
|
|
83
|
-
type: BooleanConstructor;
|
|
84
|
-
default: boolean;
|
|
85
|
-
};
|
|
86
|
-
}>> & {
|
|
87
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
88
|
-
}, {
|
|
89
|
-
circle: string | boolean;
|
|
90
|
-
contentText: Record<string, any>;
|
|
91
|
-
checked: boolean;
|
|
92
|
-
star: string | boolean;
|
|
93
|
-
bgColor: string;
|
|
94
|
-
fgColor: string;
|
|
95
|
-
bgColorChecked: string;
|
|
96
|
-
fgColorChecked: string;
|
|
97
|
-
stat: boolean;
|
|
98
|
-
}>;
|
|
99
|
-
export default _default;
|