@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,123 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
title: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
note: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
clickable: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
link: {
|
|
15
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
to: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
badgeText: {
|
|
23
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
badgePositon: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
time: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
avatarCircle: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
avatar: {
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
default: string;
|
|
41
|
-
};
|
|
42
|
-
avatarList: {
|
|
43
|
-
type: ArrayConstructor;
|
|
44
|
-
default(): never[];
|
|
45
|
-
};
|
|
46
|
-
}, any, {
|
|
47
|
-
isFirstChild: boolean;
|
|
48
|
-
border: boolean;
|
|
49
|
-
imageWidth: number;
|
|
50
|
-
avatarUrl: string;
|
|
51
|
-
}, {
|
|
52
|
-
isDraft(): any;
|
|
53
|
-
isSingle(): "uni-badge--dot" | "uni-badge--complex" | "uni-badge--single";
|
|
54
|
-
computedAvatar(): "avatarItem--3" | "avatarItem--2" | "avatarItem--1";
|
|
55
|
-
}, {
|
|
56
|
-
/**
|
|
57
|
-
* 获取父元素实例
|
|
58
|
-
*/
|
|
59
|
-
getForm(name?: string): false | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
60
|
-
onClick(): void;
|
|
61
|
-
openPage(): void;
|
|
62
|
-
pageApi(api: any): void;
|
|
63
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
|
-
title: {
|
|
65
|
-
type: StringConstructor;
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
note: {
|
|
69
|
-
type: StringConstructor;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
clickable: {
|
|
73
|
-
type: BooleanConstructor;
|
|
74
|
-
default: boolean;
|
|
75
|
-
};
|
|
76
|
-
link: {
|
|
77
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
78
|
-
default: boolean;
|
|
79
|
-
};
|
|
80
|
-
to: {
|
|
81
|
-
type: StringConstructor;
|
|
82
|
-
default: string;
|
|
83
|
-
};
|
|
84
|
-
badgeText: {
|
|
85
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
86
|
-
default: string;
|
|
87
|
-
};
|
|
88
|
-
badgePositon: {
|
|
89
|
-
type: StringConstructor;
|
|
90
|
-
default: string;
|
|
91
|
-
};
|
|
92
|
-
time: {
|
|
93
|
-
type: StringConstructor;
|
|
94
|
-
default: string;
|
|
95
|
-
};
|
|
96
|
-
avatarCircle: {
|
|
97
|
-
type: BooleanConstructor;
|
|
98
|
-
default: boolean;
|
|
99
|
-
};
|
|
100
|
-
avatar: {
|
|
101
|
-
type: StringConstructor;
|
|
102
|
-
default: string;
|
|
103
|
-
};
|
|
104
|
-
avatarList: {
|
|
105
|
-
type: ArrayConstructor;
|
|
106
|
-
default(): never[];
|
|
107
|
-
};
|
|
108
|
-
}>> & {
|
|
109
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
110
|
-
}, {
|
|
111
|
-
link: string | boolean;
|
|
112
|
-
time: string;
|
|
113
|
-
title: string;
|
|
114
|
-
to: string;
|
|
115
|
-
avatar: string;
|
|
116
|
-
note: string;
|
|
117
|
-
clickable: boolean;
|
|
118
|
-
badgeText: string | number;
|
|
119
|
-
badgePositon: string;
|
|
120
|
-
avatarCircle: boolean;
|
|
121
|
-
avatarList: unknown[];
|
|
122
|
-
}>;
|
|
123
|
-
export default _default;
|
|
@@ -1,248 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
direction: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
title: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
note: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
ellipsis: {
|
|
15
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
16
|
-
default: number;
|
|
17
|
-
};
|
|
18
|
-
disabled: {
|
|
19
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
clickable: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
showArrow: {
|
|
27
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
link: {
|
|
31
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
32
|
-
default: boolean;
|
|
33
|
-
};
|
|
34
|
-
to: {
|
|
35
|
-
type: StringConstructor;
|
|
36
|
-
default: string;
|
|
37
|
-
};
|
|
38
|
-
showBadge: {
|
|
39
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
showSwitch: {
|
|
43
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
44
|
-
default: boolean;
|
|
45
|
-
};
|
|
46
|
-
switchChecked: {
|
|
47
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
48
|
-
default: boolean;
|
|
49
|
-
};
|
|
50
|
-
badgeText: {
|
|
51
|
-
type: StringConstructor;
|
|
52
|
-
default: string;
|
|
53
|
-
};
|
|
54
|
-
badgeType: {
|
|
55
|
-
type: StringConstructor;
|
|
56
|
-
default: string;
|
|
57
|
-
};
|
|
58
|
-
badgeStyle: {
|
|
59
|
-
type: ObjectConstructor;
|
|
60
|
-
default(): {};
|
|
61
|
-
};
|
|
62
|
-
rightText: {
|
|
63
|
-
type: StringConstructor;
|
|
64
|
-
default: string;
|
|
65
|
-
};
|
|
66
|
-
thumb: {
|
|
67
|
-
type: StringConstructor;
|
|
68
|
-
default: string;
|
|
69
|
-
};
|
|
70
|
-
thumbSize: {
|
|
71
|
-
type: StringConstructor;
|
|
72
|
-
default: string;
|
|
73
|
-
};
|
|
74
|
-
showExtraIcon: {
|
|
75
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
76
|
-
default: boolean;
|
|
77
|
-
};
|
|
78
|
-
extraIcon: {
|
|
79
|
-
type: ObjectConstructor;
|
|
80
|
-
default(): {
|
|
81
|
-
type: string;
|
|
82
|
-
color: string;
|
|
83
|
-
size: number;
|
|
84
|
-
customPrefix: string;
|
|
85
|
-
};
|
|
86
|
-
};
|
|
87
|
-
border: {
|
|
88
|
-
type: BooleanConstructor;
|
|
89
|
-
default: boolean;
|
|
90
|
-
};
|
|
91
|
-
customStyle: {
|
|
92
|
-
type: ObjectConstructor;
|
|
93
|
-
default(): {
|
|
94
|
-
padding: string;
|
|
95
|
-
backgroundColor: string;
|
|
96
|
-
};
|
|
97
|
-
};
|
|
98
|
-
keepScrollPosition: {
|
|
99
|
-
type: BooleanConstructor;
|
|
100
|
-
default: boolean;
|
|
101
|
-
};
|
|
102
|
-
}, any, {
|
|
103
|
-
isFirstChild: boolean;
|
|
104
|
-
padding: {
|
|
105
|
-
top: string;
|
|
106
|
-
right: string;
|
|
107
|
-
bottom: string;
|
|
108
|
-
left: string;
|
|
109
|
-
};
|
|
110
|
-
}, {}, {
|
|
111
|
-
/**
|
|
112
|
-
* 获取父元素实例
|
|
113
|
-
*/
|
|
114
|
-
getForm(name?: string): false | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
115
|
-
onClick(): void;
|
|
116
|
-
onSwitchChange(e: any): void;
|
|
117
|
-
openPage(): void;
|
|
118
|
-
pageApi(api: any): void;
|
|
119
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "switchChange")[], "click" | "switchChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
120
|
-
direction: {
|
|
121
|
-
type: StringConstructor;
|
|
122
|
-
default: string;
|
|
123
|
-
};
|
|
124
|
-
title: {
|
|
125
|
-
type: StringConstructor;
|
|
126
|
-
default: string;
|
|
127
|
-
};
|
|
128
|
-
note: {
|
|
129
|
-
type: StringConstructor;
|
|
130
|
-
default: string;
|
|
131
|
-
};
|
|
132
|
-
ellipsis: {
|
|
133
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
134
|
-
default: number;
|
|
135
|
-
};
|
|
136
|
-
disabled: {
|
|
137
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
138
|
-
default: boolean;
|
|
139
|
-
};
|
|
140
|
-
clickable: {
|
|
141
|
-
type: BooleanConstructor;
|
|
142
|
-
default: boolean;
|
|
143
|
-
};
|
|
144
|
-
showArrow: {
|
|
145
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
146
|
-
default: boolean;
|
|
147
|
-
};
|
|
148
|
-
link: {
|
|
149
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
150
|
-
default: boolean;
|
|
151
|
-
};
|
|
152
|
-
to: {
|
|
153
|
-
type: StringConstructor;
|
|
154
|
-
default: string;
|
|
155
|
-
};
|
|
156
|
-
showBadge: {
|
|
157
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
158
|
-
default: boolean;
|
|
159
|
-
};
|
|
160
|
-
showSwitch: {
|
|
161
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
162
|
-
default: boolean;
|
|
163
|
-
};
|
|
164
|
-
switchChecked: {
|
|
165
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
166
|
-
default: boolean;
|
|
167
|
-
};
|
|
168
|
-
badgeText: {
|
|
169
|
-
type: StringConstructor;
|
|
170
|
-
default: string;
|
|
171
|
-
};
|
|
172
|
-
badgeType: {
|
|
173
|
-
type: StringConstructor;
|
|
174
|
-
default: string;
|
|
175
|
-
};
|
|
176
|
-
badgeStyle: {
|
|
177
|
-
type: ObjectConstructor;
|
|
178
|
-
default(): {};
|
|
179
|
-
};
|
|
180
|
-
rightText: {
|
|
181
|
-
type: StringConstructor;
|
|
182
|
-
default: string;
|
|
183
|
-
};
|
|
184
|
-
thumb: {
|
|
185
|
-
type: StringConstructor;
|
|
186
|
-
default: string;
|
|
187
|
-
};
|
|
188
|
-
thumbSize: {
|
|
189
|
-
type: StringConstructor;
|
|
190
|
-
default: string;
|
|
191
|
-
};
|
|
192
|
-
showExtraIcon: {
|
|
193
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
194
|
-
default: boolean;
|
|
195
|
-
};
|
|
196
|
-
extraIcon: {
|
|
197
|
-
type: ObjectConstructor;
|
|
198
|
-
default(): {
|
|
199
|
-
type: string;
|
|
200
|
-
color: string;
|
|
201
|
-
size: number;
|
|
202
|
-
customPrefix: string;
|
|
203
|
-
};
|
|
204
|
-
};
|
|
205
|
-
border: {
|
|
206
|
-
type: BooleanConstructor;
|
|
207
|
-
default: boolean;
|
|
208
|
-
};
|
|
209
|
-
customStyle: {
|
|
210
|
-
type: ObjectConstructor;
|
|
211
|
-
default(): {
|
|
212
|
-
padding: string;
|
|
213
|
-
backgroundColor: string;
|
|
214
|
-
};
|
|
215
|
-
};
|
|
216
|
-
keepScrollPosition: {
|
|
217
|
-
type: BooleanConstructor;
|
|
218
|
-
default: boolean;
|
|
219
|
-
};
|
|
220
|
-
}>> & {
|
|
221
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
222
|
-
onSwitchChange?: ((...args: any[]) => any) | undefined;
|
|
223
|
-
}, {
|
|
224
|
-
customStyle: Record<string, any>;
|
|
225
|
-
link: string | boolean;
|
|
226
|
-
title: string;
|
|
227
|
-
direction: string;
|
|
228
|
-
to: string;
|
|
229
|
-
border: boolean;
|
|
230
|
-
disabled: string | boolean;
|
|
231
|
-
thumb: string;
|
|
232
|
-
showArrow: string | boolean;
|
|
233
|
-
ellipsis: string | number;
|
|
234
|
-
note: string;
|
|
235
|
-
clickable: boolean;
|
|
236
|
-
badgeText: string;
|
|
237
|
-
showBadge: string | boolean;
|
|
238
|
-
showSwitch: string | boolean;
|
|
239
|
-
switchChecked: string | boolean;
|
|
240
|
-
badgeType: string;
|
|
241
|
-
badgeStyle: Record<string, any>;
|
|
242
|
-
rightText: string;
|
|
243
|
-
thumbSize: string;
|
|
244
|
-
showExtraIcon: string | boolean;
|
|
245
|
-
extraIcon: Record<string, any>;
|
|
246
|
-
keepScrollPosition: boolean;
|
|
247
|
-
}>;
|
|
248
|
-
export default _default;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
en: {
|
|
3
|
-
"uni-load-more.contentdown": string;
|
|
4
|
-
"uni-load-more.contentrefresh": string;
|
|
5
|
-
"uni-load-more.contentnomore": string;
|
|
6
|
-
};
|
|
7
|
-
'zh-Hans': {
|
|
8
|
-
"uni-load-more.contentdown": string;
|
|
9
|
-
"uni-load-more.contentrefresh": string;
|
|
10
|
-
"uni-load-more.contentnomore": string;
|
|
11
|
-
};
|
|
12
|
-
'zh-Hant': {
|
|
13
|
-
"uni-load-more.contentdown": string;
|
|
14
|
-
"uni-load-more.contentrefresh": string;
|
|
15
|
-
"uni-load-more.contentnomore": string;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
export default _default;
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
status: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
showIcon: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
iconType: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
iconSize: {
|
|
15
|
-
type: NumberConstructor;
|
|
16
|
-
default: number;
|
|
17
|
-
};
|
|
18
|
-
color: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
contentText: {
|
|
23
|
-
type: ObjectConstructor;
|
|
24
|
-
default(): {
|
|
25
|
-
contentdown: string;
|
|
26
|
-
contentrefresh: string;
|
|
27
|
-
contentnomore: string;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
showText: {
|
|
31
|
-
type: BooleanConstructor;
|
|
32
|
-
default: boolean;
|
|
33
|
-
};
|
|
34
|
-
}, any, {
|
|
35
|
-
webviewHide: boolean;
|
|
36
|
-
platform: any;
|
|
37
|
-
imgBase64: string;
|
|
38
|
-
}, {
|
|
39
|
-
iconSnowWidth(): number;
|
|
40
|
-
contentdownText(): any;
|
|
41
|
-
contentrefreshText(): any;
|
|
42
|
-
contentnomoreText(): any;
|
|
43
|
-
}, {
|
|
44
|
-
onClick(): void;
|
|
45
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clickLoadMore"[], "clickLoadMore", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
-
status: {
|
|
47
|
-
type: StringConstructor;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
showIcon: {
|
|
51
|
-
type: BooleanConstructor;
|
|
52
|
-
default: boolean;
|
|
53
|
-
};
|
|
54
|
-
iconType: {
|
|
55
|
-
type: StringConstructor;
|
|
56
|
-
default: string;
|
|
57
|
-
};
|
|
58
|
-
iconSize: {
|
|
59
|
-
type: NumberConstructor;
|
|
60
|
-
default: number;
|
|
61
|
-
};
|
|
62
|
-
color: {
|
|
63
|
-
type: StringConstructor;
|
|
64
|
-
default: string;
|
|
65
|
-
};
|
|
66
|
-
contentText: {
|
|
67
|
-
type: ObjectConstructor;
|
|
68
|
-
default(): {
|
|
69
|
-
contentdown: string;
|
|
70
|
-
contentrefresh: string;
|
|
71
|
-
contentnomore: string;
|
|
72
|
-
};
|
|
73
|
-
};
|
|
74
|
-
showText: {
|
|
75
|
-
type: BooleanConstructor;
|
|
76
|
-
default: boolean;
|
|
77
|
-
};
|
|
78
|
-
}>> & {
|
|
79
|
-
onClickLoadMore?: ((...args: any[]) => any) | undefined;
|
|
80
|
-
}, {
|
|
81
|
-
color: string;
|
|
82
|
-
contentText: Record<string, any>;
|
|
83
|
-
status: string;
|
|
84
|
-
iconSize: number;
|
|
85
|
-
showIcon: boolean;
|
|
86
|
-
iconType: string;
|
|
87
|
-
showText: boolean;
|
|
88
|
-
}>;
|
|
89
|
-
export default _default;
|
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
dark: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
title: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
leftText: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
rightText: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
leftIcon: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
rightIcon: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
fixed: {
|
|
27
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
color: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
backgroundColor: {
|
|
35
|
-
type: StringConstructor;
|
|
36
|
-
default: string;
|
|
37
|
-
};
|
|
38
|
-
statusBar: {
|
|
39
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
shadow: {
|
|
43
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
44
|
-
default: boolean;
|
|
45
|
-
};
|
|
46
|
-
border: {
|
|
47
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
48
|
-
default: boolean;
|
|
49
|
-
};
|
|
50
|
-
height: {
|
|
51
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
52
|
-
default: number;
|
|
53
|
-
};
|
|
54
|
-
leftWidth: {
|
|
55
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
56
|
-
default: number;
|
|
57
|
-
};
|
|
58
|
-
rightWidth: {
|
|
59
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
60
|
-
default: number;
|
|
61
|
-
};
|
|
62
|
-
stat: {
|
|
63
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
64
|
-
default: string;
|
|
65
|
-
};
|
|
66
|
-
}, any, any, {
|
|
67
|
-
themeBgColor(): any;
|
|
68
|
-
themeColor(): any;
|
|
69
|
-
navbarHeight(): any;
|
|
70
|
-
leftIconWidth(): any;
|
|
71
|
-
rightIconWidth(): any;
|
|
72
|
-
}, {
|
|
73
|
-
onClickLeft(): void;
|
|
74
|
-
onClickRight(): void;
|
|
75
|
-
onClickTitle(): void;
|
|
76
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clickLeft" | "clickRight" | "clickTitle")[], "clickLeft" | "clickRight" | "clickTitle", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
77
|
-
dark: {
|
|
78
|
-
type: BooleanConstructor;
|
|
79
|
-
default: boolean;
|
|
80
|
-
};
|
|
81
|
-
title: {
|
|
82
|
-
type: StringConstructor;
|
|
83
|
-
default: string;
|
|
84
|
-
};
|
|
85
|
-
leftText: {
|
|
86
|
-
type: StringConstructor;
|
|
87
|
-
default: string;
|
|
88
|
-
};
|
|
89
|
-
rightText: {
|
|
90
|
-
type: StringConstructor;
|
|
91
|
-
default: string;
|
|
92
|
-
};
|
|
93
|
-
leftIcon: {
|
|
94
|
-
type: StringConstructor;
|
|
95
|
-
default: string;
|
|
96
|
-
};
|
|
97
|
-
rightIcon: {
|
|
98
|
-
type: StringConstructor;
|
|
99
|
-
default: string;
|
|
100
|
-
};
|
|
101
|
-
fixed: {
|
|
102
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
103
|
-
default: boolean;
|
|
104
|
-
};
|
|
105
|
-
color: {
|
|
106
|
-
type: StringConstructor;
|
|
107
|
-
default: string;
|
|
108
|
-
};
|
|
109
|
-
backgroundColor: {
|
|
110
|
-
type: StringConstructor;
|
|
111
|
-
default: string;
|
|
112
|
-
};
|
|
113
|
-
statusBar: {
|
|
114
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
115
|
-
default: boolean;
|
|
116
|
-
};
|
|
117
|
-
shadow: {
|
|
118
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
119
|
-
default: boolean;
|
|
120
|
-
};
|
|
121
|
-
border: {
|
|
122
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
123
|
-
default: boolean;
|
|
124
|
-
};
|
|
125
|
-
height: {
|
|
126
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
127
|
-
default: number;
|
|
128
|
-
};
|
|
129
|
-
leftWidth: {
|
|
130
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
131
|
-
default: number;
|
|
132
|
-
};
|
|
133
|
-
rightWidth: {
|
|
134
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
135
|
-
default: number;
|
|
136
|
-
};
|
|
137
|
-
stat: {
|
|
138
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
139
|
-
default: string;
|
|
140
|
-
};
|
|
141
|
-
}>> & {
|
|
142
|
-
onClickLeft?: ((...args: any[]) => any) | undefined;
|
|
143
|
-
onClickRight?: ((...args: any[]) => any) | undefined;
|
|
144
|
-
onClickTitle?: ((...args: any[]) => any) | undefined;
|
|
145
|
-
}, {
|
|
146
|
-
fixed: string | boolean;
|
|
147
|
-
title: string;
|
|
148
|
-
color: string;
|
|
149
|
-
height: string | number;
|
|
150
|
-
backgroundColor: string;
|
|
151
|
-
border: string | boolean;
|
|
152
|
-
shadow: string | boolean;
|
|
153
|
-
stat: string | boolean;
|
|
154
|
-
leftIcon: string;
|
|
155
|
-
rightText: string;
|
|
156
|
-
statusBar: string | boolean;
|
|
157
|
-
dark: boolean;
|
|
158
|
-
leftText: string;
|
|
159
|
-
rightIcon: string;
|
|
160
|
-
leftWidth: string | number;
|
|
161
|
-
rightWidth: string | number;
|
|
162
|
-
}>;
|
|
163
|
-
export default _default;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
-
statusBarHeight: string;
|
|
3
|
-
}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
4
|
-
export default _default;
|