@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,178 +0,0 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
namespace props {
|
|
3
|
-
namespace localdata {
|
|
4
|
-
export const type: (ArrayConstructor | ObjectConstructor)[];
|
|
5
|
-
function _default(): never[];
|
|
6
|
-
export { _default as default };
|
|
7
|
-
}
|
|
8
|
-
namespace spaceInfo {
|
|
9
|
-
const type_1: ObjectConstructor;
|
|
10
|
-
export { type_1 as type };
|
|
11
|
-
function _default(): {};
|
|
12
|
-
export { _default as default };
|
|
13
|
-
}
|
|
14
|
-
namespace collection {
|
|
15
|
-
const type_2: StringConstructor;
|
|
16
|
-
export { type_2 as type };
|
|
17
|
-
const _default: string;
|
|
18
|
-
export { _default as default };
|
|
19
|
-
}
|
|
20
|
-
namespace action {
|
|
21
|
-
const type_3: StringConstructor;
|
|
22
|
-
export { type_3 as type };
|
|
23
|
-
const _default_1: string;
|
|
24
|
-
export { _default_1 as default };
|
|
25
|
-
}
|
|
26
|
-
namespace field {
|
|
27
|
-
const type_4: StringConstructor;
|
|
28
|
-
export { type_4 as type };
|
|
29
|
-
const _default_2: string;
|
|
30
|
-
export { _default_2 as default };
|
|
31
|
-
}
|
|
32
|
-
namespace orderby {
|
|
33
|
-
const type_5: StringConstructor;
|
|
34
|
-
export { type_5 as type };
|
|
35
|
-
const _default_3: string;
|
|
36
|
-
export { _default_3 as default };
|
|
37
|
-
}
|
|
38
|
-
namespace where {
|
|
39
|
-
const type_6: (StringConstructor | ObjectConstructor)[];
|
|
40
|
-
export { type_6 as type };
|
|
41
|
-
const _default_4: string;
|
|
42
|
-
export { _default_4 as default };
|
|
43
|
-
}
|
|
44
|
-
namespace pageData {
|
|
45
|
-
const type_7: StringConstructor;
|
|
46
|
-
export { type_7 as type };
|
|
47
|
-
const _default_5: string;
|
|
48
|
-
export { _default_5 as default };
|
|
49
|
-
}
|
|
50
|
-
namespace pageCurrent {
|
|
51
|
-
const type_8: NumberConstructor;
|
|
52
|
-
export { type_8 as type };
|
|
53
|
-
const _default_6: number;
|
|
54
|
-
export { _default_6 as default };
|
|
55
|
-
}
|
|
56
|
-
namespace pageSize {
|
|
57
|
-
const type_9: NumberConstructor;
|
|
58
|
-
export { type_9 as type };
|
|
59
|
-
const _default_7: number;
|
|
60
|
-
export { _default_7 as default };
|
|
61
|
-
}
|
|
62
|
-
namespace getcount {
|
|
63
|
-
const type_10: (StringConstructor | BooleanConstructor)[];
|
|
64
|
-
export { type_10 as type };
|
|
65
|
-
const _default_8: boolean;
|
|
66
|
-
export { _default_8 as default };
|
|
67
|
-
}
|
|
68
|
-
namespace getone {
|
|
69
|
-
const type_11: (StringConstructor | BooleanConstructor)[];
|
|
70
|
-
export { type_11 as type };
|
|
71
|
-
const _default_9: boolean;
|
|
72
|
-
export { _default_9 as default };
|
|
73
|
-
}
|
|
74
|
-
namespace gettree {
|
|
75
|
-
const type_12: (StringConstructor | BooleanConstructor)[];
|
|
76
|
-
export { type_12 as type };
|
|
77
|
-
const _default_10: boolean;
|
|
78
|
-
export { _default_10 as default };
|
|
79
|
-
}
|
|
80
|
-
namespace manual {
|
|
81
|
-
const type_13: BooleanConstructor;
|
|
82
|
-
export { type_13 as type };
|
|
83
|
-
const _default_11: boolean;
|
|
84
|
-
export { _default_11 as default };
|
|
85
|
-
}
|
|
86
|
-
namespace value {
|
|
87
|
-
const type_14: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
88
|
-
export { type_14 as type };
|
|
89
|
-
function _default(): never[];
|
|
90
|
-
export { _default as default };
|
|
91
|
-
}
|
|
92
|
-
namespace modelValue {
|
|
93
|
-
const type_15: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
94
|
-
export { type_15 as type };
|
|
95
|
-
function _default(): never[];
|
|
96
|
-
export { _default as default };
|
|
97
|
-
}
|
|
98
|
-
namespace preload {
|
|
99
|
-
const type_16: BooleanConstructor;
|
|
100
|
-
export { type_16 as type };
|
|
101
|
-
const _default_12: boolean;
|
|
102
|
-
export { _default_12 as default };
|
|
103
|
-
}
|
|
104
|
-
namespace stepSearh {
|
|
105
|
-
const type_17: BooleanConstructor;
|
|
106
|
-
export { type_17 as type };
|
|
107
|
-
const _default_13: boolean;
|
|
108
|
-
export { _default_13 as default };
|
|
109
|
-
}
|
|
110
|
-
namespace selfField {
|
|
111
|
-
const type_18: StringConstructor;
|
|
112
|
-
export { type_18 as type };
|
|
113
|
-
const _default_14: string;
|
|
114
|
-
export { _default_14 as default };
|
|
115
|
-
}
|
|
116
|
-
namespace parentField {
|
|
117
|
-
const type_19: StringConstructor;
|
|
118
|
-
export { type_19 as type };
|
|
119
|
-
const _default_15: string;
|
|
120
|
-
export { _default_15 as default };
|
|
121
|
-
}
|
|
122
|
-
namespace multiple {
|
|
123
|
-
const type_20: BooleanConstructor;
|
|
124
|
-
export { type_20 as type };
|
|
125
|
-
const _default_16: boolean;
|
|
126
|
-
export { _default_16 as default };
|
|
127
|
-
}
|
|
128
|
-
namespace map {
|
|
129
|
-
const type_21: ObjectConstructor;
|
|
130
|
-
export { type_21 as type };
|
|
131
|
-
function _default(): {
|
|
132
|
-
text: string;
|
|
133
|
-
value: string;
|
|
134
|
-
};
|
|
135
|
-
export { _default as default };
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
function data(): any;
|
|
139
|
-
namespace computed {
|
|
140
|
-
function isLocalData(): any;
|
|
141
|
-
function isCloudData(): any;
|
|
142
|
-
function isCloudDataList(): any;
|
|
143
|
-
function isCloudDataTree(): any;
|
|
144
|
-
function dataValue(): any;
|
|
145
|
-
function hasValue(): boolean;
|
|
146
|
-
}
|
|
147
|
-
function created(): void;
|
|
148
|
-
namespace methods {
|
|
149
|
-
function onPropsChange(): void;
|
|
150
|
-
function loadData(): Promise<void>;
|
|
151
|
-
function loadLocalData(): Promise<void>;
|
|
152
|
-
function loadCloudDataList(): Promise<void>;
|
|
153
|
-
function loadCloudDataTree(): Promise<void>;
|
|
154
|
-
function loadCloudDataNode(callback: any): Promise<void>;
|
|
155
|
-
function getCloudDataValue(): any;
|
|
156
|
-
function getCloudDataListValue(): any;
|
|
157
|
-
function getCloudDataTreeValue(): any;
|
|
158
|
-
function getCommand(options?: {}): UniCloud.Database;
|
|
159
|
-
function _cloudDataPostField(): string;
|
|
160
|
-
function _cloudDataTreeWhere(): string;
|
|
161
|
-
function _cloudDataNodeWhere(): string | any[];
|
|
162
|
-
function _getWhereByForeignKey(): string;
|
|
163
|
-
function _getForeignKeyByField(): any;
|
|
164
|
-
function _updateBindData(node: any): {
|
|
165
|
-
isleaf: boolean;
|
|
166
|
-
hasNodes: boolean;
|
|
167
|
-
};
|
|
168
|
-
function _updateSelected(): void;
|
|
169
|
-
function _filterData(data: any, paths: any): {
|
|
170
|
-
dataList: any[];
|
|
171
|
-
hasNodes: boolean;
|
|
172
|
-
};
|
|
173
|
-
function _extractTree(nodes: any, result: any, parent_value: any): void;
|
|
174
|
-
function _extractTreePath(nodes: any, result: any): void;
|
|
175
|
-
function _findNodePath(key: any, nodes: any, path?: any[]): any;
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
export default _default;
|
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
managedMode: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
ellipsis: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
}, any, any, {}, {
|
|
11
|
-
onPropsChange(): void;
|
|
12
|
-
handleSelect(index: any): void;
|
|
13
|
-
handleNodeClick(item: any, i: any, j: any): void;
|
|
14
|
-
updateData(data: any): void;
|
|
15
|
-
onDataChange(): void;
|
|
16
|
-
onSelectedChange(node: any, isleaf: any): void;
|
|
17
|
-
_dispatchEvent(): void;
|
|
18
|
-
}, {
|
|
19
|
-
props: {
|
|
20
|
-
localdata: {
|
|
21
|
-
type: (ArrayConstructor | ObjectConstructor)[];
|
|
22
|
-
default(): never[];
|
|
23
|
-
};
|
|
24
|
-
spaceInfo: {
|
|
25
|
-
type: ObjectConstructor;
|
|
26
|
-
default(): {};
|
|
27
|
-
};
|
|
28
|
-
collection: {
|
|
29
|
-
type: StringConstructor;
|
|
30
|
-
default: string;
|
|
31
|
-
};
|
|
32
|
-
action: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
default: string;
|
|
35
|
-
};
|
|
36
|
-
field: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
orderby: {
|
|
41
|
-
type: StringConstructor;
|
|
42
|
-
default: string;
|
|
43
|
-
};
|
|
44
|
-
where: {
|
|
45
|
-
type: (StringConstructor | ObjectConstructor)[];
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
pageData: {
|
|
49
|
-
type: StringConstructor;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
pageCurrent: {
|
|
53
|
-
type: NumberConstructor;
|
|
54
|
-
default: number;
|
|
55
|
-
};
|
|
56
|
-
pageSize: {
|
|
57
|
-
type: NumberConstructor;
|
|
58
|
-
default: number;
|
|
59
|
-
};
|
|
60
|
-
getcount: {
|
|
61
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
62
|
-
default: boolean;
|
|
63
|
-
};
|
|
64
|
-
getone: {
|
|
65
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
66
|
-
default: boolean;
|
|
67
|
-
};
|
|
68
|
-
gettree: {
|
|
69
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
70
|
-
default: boolean;
|
|
71
|
-
};
|
|
72
|
-
manual: {
|
|
73
|
-
type: BooleanConstructor;
|
|
74
|
-
default: boolean;
|
|
75
|
-
};
|
|
76
|
-
value: {
|
|
77
|
-
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
78
|
-
default(): never[];
|
|
79
|
-
};
|
|
80
|
-
modelValue: {
|
|
81
|
-
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
82
|
-
default(): never[];
|
|
83
|
-
};
|
|
84
|
-
preload: {
|
|
85
|
-
type: BooleanConstructor;
|
|
86
|
-
default: boolean;
|
|
87
|
-
};
|
|
88
|
-
stepSearh: {
|
|
89
|
-
type: BooleanConstructor;
|
|
90
|
-
default: boolean;
|
|
91
|
-
};
|
|
92
|
-
selfField: {
|
|
93
|
-
type: StringConstructor;
|
|
94
|
-
default: string;
|
|
95
|
-
};
|
|
96
|
-
parentField: {
|
|
97
|
-
type: StringConstructor;
|
|
98
|
-
default: string;
|
|
99
|
-
};
|
|
100
|
-
multiple: {
|
|
101
|
-
type: BooleanConstructor;
|
|
102
|
-
default: boolean;
|
|
103
|
-
};
|
|
104
|
-
map: {
|
|
105
|
-
type: ObjectConstructor;
|
|
106
|
-
default(): {
|
|
107
|
-
text: string;
|
|
108
|
-
value: string;
|
|
109
|
-
};
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
data(): any;
|
|
113
|
-
computed: {
|
|
114
|
-
isLocalData(): any;
|
|
115
|
-
isCloudData(): any;
|
|
116
|
-
isCloudDataList(): any;
|
|
117
|
-
isCloudDataTree(): any;
|
|
118
|
-
dataValue(): any;
|
|
119
|
-
hasValue(): boolean;
|
|
120
|
-
};
|
|
121
|
-
created(): void;
|
|
122
|
-
methods: {
|
|
123
|
-
onPropsChange(): void;
|
|
124
|
-
loadData(): Promise<void>;
|
|
125
|
-
loadLocalData(): Promise<void>;
|
|
126
|
-
loadCloudDataList(): Promise<void>;
|
|
127
|
-
loadCloudDataTree(): Promise<void>;
|
|
128
|
-
loadCloudDataNode(callback: any): Promise<void>;
|
|
129
|
-
getCloudDataValue(): any;
|
|
130
|
-
getCloudDataListValue(): any;
|
|
131
|
-
getCloudDataTreeValue(): any;
|
|
132
|
-
getCommand(options?: {}): UniCloud.Database;
|
|
133
|
-
_cloudDataPostField(): string;
|
|
134
|
-
_cloudDataTreeWhere(): string;
|
|
135
|
-
_cloudDataNodeWhere(): string | any[];
|
|
136
|
-
_getWhereByForeignKey(): string;
|
|
137
|
-
_getForeignKeyByField(): any;
|
|
138
|
-
_updateBindData(node: any): {
|
|
139
|
-
isleaf: boolean;
|
|
140
|
-
hasNodes: boolean;
|
|
141
|
-
};
|
|
142
|
-
_updateSelected(): void;
|
|
143
|
-
_filterData(data: any, paths: any): {
|
|
144
|
-
dataList: any[];
|
|
145
|
-
hasNodes: boolean;
|
|
146
|
-
};
|
|
147
|
-
_extractTree(nodes: any, result: any, parent_value: any): void;
|
|
148
|
-
_extractTreePath(nodes: any, result: any): void;
|
|
149
|
-
_findNodePath(key: any, nodes: any, path?: any[]): any;
|
|
150
|
-
};
|
|
151
|
-
}, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue" | "nodeclick" | "datachange")[], "change" | "update:modelValue" | "nodeclick" | "datachange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
152
|
-
managedMode: {
|
|
153
|
-
type: BooleanConstructor;
|
|
154
|
-
default: boolean;
|
|
155
|
-
};
|
|
156
|
-
ellipsis: {
|
|
157
|
-
type: BooleanConstructor;
|
|
158
|
-
default: boolean;
|
|
159
|
-
};
|
|
160
|
-
}>> & {
|
|
161
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
162
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
163
|
-
onNodeclick?: ((...args: any[]) => any) | undefined;
|
|
164
|
-
onDatachange?: ((...args: any[]) => any) | undefined;
|
|
165
|
-
}, {
|
|
166
|
-
managedMode: boolean;
|
|
167
|
-
ellipsis: boolean;
|
|
168
|
-
}>;
|
|
169
|
-
export default _default;
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
localdata: {
|
|
3
|
-
type: ArrayConstructor;
|
|
4
|
-
default(): never[];
|
|
5
|
-
};
|
|
6
|
-
value: {
|
|
7
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
modelValue: {
|
|
11
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
label: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
placeholder: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
emptyTips: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
clear: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
defItem: {
|
|
31
|
-
type: NumberConstructor;
|
|
32
|
-
default: number;
|
|
33
|
-
};
|
|
34
|
-
disabled: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
format: {
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
default: string;
|
|
41
|
-
};
|
|
42
|
-
}, any, {
|
|
43
|
-
showSelector: boolean;
|
|
44
|
-
current: string;
|
|
45
|
-
mixinDatacomResData: never[];
|
|
46
|
-
apps: never[];
|
|
47
|
-
channels: never[];
|
|
48
|
-
cacheKey: string;
|
|
49
|
-
}, {
|
|
50
|
-
typePlaceholder(): string;
|
|
51
|
-
valueCom(): string | number;
|
|
52
|
-
}, {
|
|
53
|
-
debounce(fn: any, time?: number): (...args: any[]) => void;
|
|
54
|
-
query(): void;
|
|
55
|
-
onMixinDatacomPropsChange(): void;
|
|
56
|
-
initDefVal(): void;
|
|
57
|
-
/**
|
|
58
|
-
* @param {[String, Number]} value
|
|
59
|
-
* 判断用户给的 value 是否同时为禁用状态
|
|
60
|
-
*/
|
|
61
|
-
isDisabled(value: [string, number]): false;
|
|
62
|
-
clearVal(): void;
|
|
63
|
-
change(item: any): void;
|
|
64
|
-
emit(val: any): void;
|
|
65
|
-
toggleSelector(): void;
|
|
66
|
-
formatItemName(item: any): any;
|
|
67
|
-
getLoadData(): never[];
|
|
68
|
-
getCurrentCacheKey(): never;
|
|
69
|
-
getCache(name?: any): any;
|
|
70
|
-
setCache(value: any, name?: any): void;
|
|
71
|
-
removeCache(name?: any): void;
|
|
72
|
-
}, any, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
73
|
-
localdata: {
|
|
74
|
-
type: ArrayConstructor;
|
|
75
|
-
default(): never[];
|
|
76
|
-
};
|
|
77
|
-
value: {
|
|
78
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
79
|
-
default: string;
|
|
80
|
-
};
|
|
81
|
-
modelValue: {
|
|
82
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
83
|
-
default: string;
|
|
84
|
-
};
|
|
85
|
-
label: {
|
|
86
|
-
type: StringConstructor;
|
|
87
|
-
default: string;
|
|
88
|
-
};
|
|
89
|
-
placeholder: {
|
|
90
|
-
type: StringConstructor;
|
|
91
|
-
default: string;
|
|
92
|
-
};
|
|
93
|
-
emptyTips: {
|
|
94
|
-
type: StringConstructor;
|
|
95
|
-
default: string;
|
|
96
|
-
};
|
|
97
|
-
clear: {
|
|
98
|
-
type: BooleanConstructor;
|
|
99
|
-
default: boolean;
|
|
100
|
-
};
|
|
101
|
-
defItem: {
|
|
102
|
-
type: NumberConstructor;
|
|
103
|
-
default: number;
|
|
104
|
-
};
|
|
105
|
-
disabled: {
|
|
106
|
-
type: BooleanConstructor;
|
|
107
|
-
default: boolean;
|
|
108
|
-
};
|
|
109
|
-
format: {
|
|
110
|
-
type: StringConstructor;
|
|
111
|
-
default: string;
|
|
112
|
-
};
|
|
113
|
-
}>>, {
|
|
114
|
-
value: string | number;
|
|
115
|
-
label: string;
|
|
116
|
-
format: string;
|
|
117
|
-
clear: boolean;
|
|
118
|
-
placeholder: string;
|
|
119
|
-
modelValue: string | number;
|
|
120
|
-
disabled: boolean;
|
|
121
|
-
emptyTips: string;
|
|
122
|
-
localdata: unknown[];
|
|
123
|
-
defItem: number;
|
|
124
|
-
}>;
|
|
125
|
-
export default _default;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
date: {
|
|
3
|
-
type: (StringConstructor | NumberConstructor | ObjectConstructor)[];
|
|
4
|
-
default(): "-";
|
|
5
|
-
};
|
|
6
|
-
locale: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
threshold: {
|
|
11
|
-
type: ArrayConstructor;
|
|
12
|
-
default(): number[];
|
|
13
|
-
};
|
|
14
|
-
format: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
refreshRate: {
|
|
19
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
20
|
-
default: number;
|
|
21
|
-
};
|
|
22
|
-
}, any, {
|
|
23
|
-
refreshMark: number;
|
|
24
|
-
}, {
|
|
25
|
-
dateShow(): any;
|
|
26
|
-
}, {
|
|
27
|
-
refresh(): void;
|
|
28
|
-
setAutoRefresh(): void;
|
|
29
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
-
date: {
|
|
31
|
-
type: (StringConstructor | NumberConstructor | ObjectConstructor)[];
|
|
32
|
-
default(): "-";
|
|
33
|
-
};
|
|
34
|
-
locale: {
|
|
35
|
-
type: StringConstructor;
|
|
36
|
-
default: string;
|
|
37
|
-
};
|
|
38
|
-
threshold: {
|
|
39
|
-
type: ArrayConstructor;
|
|
40
|
-
default(): number[];
|
|
41
|
-
};
|
|
42
|
-
format: {
|
|
43
|
-
type: StringConstructor;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
refreshRate: {
|
|
47
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
48
|
-
default: number;
|
|
49
|
-
};
|
|
50
|
-
}>>, {
|
|
51
|
-
format: string;
|
|
52
|
-
date: string | number | Record<string, any>;
|
|
53
|
-
locale: string;
|
|
54
|
-
threshold: unknown[];
|
|
55
|
-
refreshRate: string | number;
|
|
56
|
-
}>;
|
|
57
|
-
export default _default;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
weeks: {
|
|
3
|
-
type: ObjectConstructor;
|
|
4
|
-
default(): {};
|
|
5
|
-
};
|
|
6
|
-
calendar: {
|
|
7
|
-
type: ObjectConstructor;
|
|
8
|
-
default: () => {};
|
|
9
|
-
};
|
|
10
|
-
selected: {
|
|
11
|
-
type: ArrayConstructor;
|
|
12
|
-
default: () => never[];
|
|
13
|
-
};
|
|
14
|
-
checkHover: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
}, any, any, {}, {
|
|
19
|
-
choiceDate(weeks: any): void;
|
|
20
|
-
handleMousemove(weeks: any): void;
|
|
21
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
-
weeks: {
|
|
23
|
-
type: ObjectConstructor;
|
|
24
|
-
default(): {};
|
|
25
|
-
};
|
|
26
|
-
calendar: {
|
|
27
|
-
type: ObjectConstructor;
|
|
28
|
-
default: () => {};
|
|
29
|
-
};
|
|
30
|
-
selected: {
|
|
31
|
-
type: ArrayConstructor;
|
|
32
|
-
default: () => never[];
|
|
33
|
-
};
|
|
34
|
-
checkHover: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
}>>, {
|
|
39
|
-
weeks: Record<string, any>;
|
|
40
|
-
calendar: Record<string, any>;
|
|
41
|
-
selected: unknown[];
|
|
42
|
-
checkHover: boolean;
|
|
43
|
-
}>;
|
|
44
|
-
export default _default;
|