hy-app 0.5.13 → 0.5.15
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/components/hy-address-picker/hy-address-picker.vue +0 -1
- package/components/hy-button/hy-button.vue +7 -1
- package/components/hy-button/index.scss +25 -21
- package/components/hy-cell-item/hy-cell-item.vue +161 -161
- package/components/hy-cell-item/props.ts +59 -66
- package/components/hy-code-input/hy-code-input.vue +231 -231
- package/components/hy-code-input/props.ts +90 -88
- package/components/hy-config-provider/index.scss +4 -7
- package/components/hy-datetime-picker/hy-datetime-picker.vue +519 -521
- package/components/hy-folding-panel/hy-folding-panel-group.vue +163 -0
- package/components/hy-icon/index.scss +1 -2
- package/components/hy-index-bar/hy-index-bar.vue +185 -0
- package/components/hy-index-bar/index.scss +65 -0
- package/components/hy-index-bar/props.ts +94 -0
- package/components/hy-index-bar/typing.d.ts +36 -0
- package/components/hy-notify/hy-notify.vue +174 -174
- package/components/hy-number-step/hy-number-step.vue +367 -367
- package/components/hy-number-step/index.scss +14 -5
- package/components/hy-picker/hy-picker.vue +0 -1
- package/components/hy-picker/index.scss +1 -1
- package/components/hy-qrcode/qrcode.js.bak +1434 -0
- package/components/hy-table/hy-table.vue +30 -13
- package/components/hy-table/index.scss +6 -1
- package/components/hy-table/props.ts +1 -1
- package/components/hy-tabs/index.scss +1 -0
- package/components/hy-tag/index.scss +4 -13
- package/components/hy-text/hy-text.vue +1 -1
- package/components/hy-textarea/hy-textarea.vue +1 -1
- package/components/hy-textarea/index.scss +1 -4
- package/global.d.ts +92 -91
- package/libs/css/iconfont.css +117 -119
- package/libs/utils/utils.ts +502 -521
- package/package.json +2 -2
- package/web-types.json +1 -1
|
@@ -302,8 +302,19 @@
|
|
|
302
302
|
</view>
|
|
303
303
|
</template>
|
|
304
304
|
|
|
305
|
+
<script lang="ts">
|
|
306
|
+
export default {
|
|
307
|
+
name: 'hy-tabs',
|
|
308
|
+
options: {
|
|
309
|
+
addGlobalClass: true,
|
|
310
|
+
virtualHost: true,
|
|
311
|
+
styleIsolation: 'shared'
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
</script>
|
|
315
|
+
|
|
305
316
|
<script setup lang="ts">
|
|
306
|
-
import { ref, computed, watch, onMounted } from 'vue'
|
|
317
|
+
import { ref, computed, watch, onMounted, nextTick } from 'vue'
|
|
307
318
|
import { addUnit, IconConfig, sleep, getPx } from '../../libs'
|
|
308
319
|
import type { ITableColumn, ITableEmits } from './typing'
|
|
309
320
|
import tableProps from './props'
|
|
@@ -312,6 +323,12 @@ import HyIcon from '../hy-icon/hy-icon.vue'
|
|
|
312
323
|
import HyEmpty from '../hy-empty/hy-empty.vue'
|
|
313
324
|
import HyLoading from '../hy-loading/hy-loading.vue'
|
|
314
325
|
|
|
326
|
+
/**
|
|
327
|
+
* Table是一个基于Uniapp开发的高性能表格组件,支持固定列、排序、斑马纹、自定义插槽等功能,适用于各种数据展示场景。
|
|
328
|
+
* @displayName hy-table
|
|
329
|
+
*/
|
|
330
|
+
defineOptions({})
|
|
331
|
+
|
|
315
332
|
const props = defineProps(tableProps)
|
|
316
333
|
const emit = defineEmits<ITableEmits>()
|
|
317
334
|
|
|
@@ -321,6 +338,7 @@ const scrollTop = ref(0)
|
|
|
321
338
|
const rowHeights = ref<number[]>([])
|
|
322
339
|
const sortField = ref<string>('')
|
|
323
340
|
const sortOrder = ref<'asc' | 'desc'>('asc')
|
|
341
|
+
const SLEEP_TIME = 60
|
|
324
342
|
|
|
325
343
|
// 防止滚动循环触发和抖动的标志位
|
|
326
344
|
const isUpdatingScroll = ref(false)
|
|
@@ -375,8 +393,7 @@ const processedData = computed(() => {
|
|
|
375
393
|
const getHeaderCellStyle = (col: ITableColumn) => {
|
|
376
394
|
return {
|
|
377
395
|
width: addUnit(col.width),
|
|
378
|
-
textAlign: col.align || 'left'
|
|
379
|
-
flexShrink: 0
|
|
396
|
+
textAlign: col.align || 'left'
|
|
380
397
|
}
|
|
381
398
|
}
|
|
382
399
|
|
|
@@ -385,9 +402,7 @@ const getBodyCellStyle = (col: ITableColumn, rowIndex: number) => {
|
|
|
385
402
|
return {
|
|
386
403
|
width: addUnit(col.width),
|
|
387
404
|
textAlign: col.align || 'left',
|
|
388
|
-
|
|
389
|
-
height: addUnit(rowHeight),
|
|
390
|
-
lineHeight: addUnit(rowHeight)
|
|
405
|
+
height: addUnit(rowHeight)
|
|
391
406
|
}
|
|
392
407
|
}
|
|
393
408
|
|
|
@@ -413,8 +428,7 @@ const getRowStyle = computed(() => {
|
|
|
413
428
|
const rowHeight = rowHeights.value[rowIndex] || props.rowHeight
|
|
414
429
|
const styles: any = {
|
|
415
430
|
width: addUnit(scrollWidth.value),
|
|
416
|
-
height: addUnit(rowHeight)
|
|
417
|
-
lineHeight: addUnit(rowHeight)
|
|
431
|
+
height: addUnit(rowHeight)
|
|
418
432
|
}
|
|
419
433
|
|
|
420
434
|
return styles
|
|
@@ -428,6 +442,9 @@ const getCellValue = (row: any, col: ITableColumn) => {
|
|
|
428
442
|
return row[col.key] || ''
|
|
429
443
|
}
|
|
430
444
|
|
|
445
|
+
/**
|
|
446
|
+
* 头部横向滚动
|
|
447
|
+
* */
|
|
431
448
|
const onHeaderScroll = async (e: any) => {
|
|
432
449
|
if (isUpdatingScroll.value) return
|
|
433
450
|
|
|
@@ -436,7 +453,7 @@ const onHeaderScroll = async (e: any) => {
|
|
|
436
453
|
isUpdatingScroll.value = true
|
|
437
454
|
scrollLeft.value = newScrollLeft
|
|
438
455
|
// 在下一个事件循环重置标志位
|
|
439
|
-
await sleep(
|
|
456
|
+
await sleep(SLEEP_TIME)
|
|
440
457
|
isUpdatingScroll.value = false
|
|
441
458
|
}
|
|
442
459
|
}
|
|
@@ -454,7 +471,7 @@ const onScroll = async (e: any) => {
|
|
|
454
471
|
}
|
|
455
472
|
|
|
456
473
|
// 在下一个事件循环重置标志位
|
|
457
|
-
await sleep(
|
|
474
|
+
await sleep(SLEEP_TIME)
|
|
458
475
|
isUpdatingScroll.value = false
|
|
459
476
|
}
|
|
460
477
|
|
|
@@ -471,7 +488,7 @@ const onCrosswiseScroll = async (e: any) => {
|
|
|
471
488
|
scrollLeft.value = newScrollLeft
|
|
472
489
|
}
|
|
473
490
|
// 在下一个事件循环重置标志位
|
|
474
|
-
await sleep(
|
|
491
|
+
await sleep(SLEEP_TIME)
|
|
475
492
|
isUpdatingScroll.value = false
|
|
476
493
|
}
|
|
477
494
|
|
|
@@ -486,7 +503,7 @@ const onLeftScroll = async (e: any) => {
|
|
|
486
503
|
isUpdatingScroll.value = true
|
|
487
504
|
scrollTop.value = newScrollTop
|
|
488
505
|
// 在下一个事件循环重置标志位
|
|
489
|
-
await sleep(
|
|
506
|
+
await sleep(SLEEP_TIME)
|
|
490
507
|
isUpdatingScroll.value = false
|
|
491
508
|
}
|
|
492
509
|
}
|
|
@@ -502,7 +519,7 @@ const onRightScroll = async (e: any) => {
|
|
|
502
519
|
isUpdatingScroll.value = true
|
|
503
520
|
scrollTop.value = newScrollTop
|
|
504
521
|
// 在下一个事件循环重置标志位
|
|
505
|
-
await sleep(
|
|
522
|
+
await sleep(SLEEP_TIME)
|
|
506
523
|
isUpdatingScroll.value = false
|
|
507
524
|
}
|
|
508
525
|
}
|
|
@@ -41,6 +41,7 @@ $stripe-bg: $hy-background--table-header;
|
|
|
41
41
|
position: relative;
|
|
42
42
|
flex-shrink: 0;
|
|
43
43
|
background-color: $hy-background--table-header;
|
|
44
|
+
|
|
44
45
|
&:last-child {
|
|
45
46
|
border-right: none;
|
|
46
47
|
}
|
|
@@ -58,12 +59,13 @@ $stripe-bg: $hy-background--table-header;
|
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
@include e(left, right) {
|
|
61
|
-
position: sticky
|
|
62
|
+
position: sticky;
|
|
62
63
|
}
|
|
63
64
|
|
|
64
65
|
@include e(left) {
|
|
65
66
|
left: 0;
|
|
66
67
|
border-right: $hy-border-line;
|
|
68
|
+
|
|
67
69
|
@include is(shadow) {
|
|
68
70
|
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
|
|
69
71
|
}
|
|
@@ -112,6 +114,7 @@ $stripe-bg: $hy-background--table-header;
|
|
|
112
114
|
border-bottom: $hy-border-line;
|
|
113
115
|
box-sizing: border-box;
|
|
114
116
|
background-color: $hy-background--container;
|
|
117
|
+
|
|
115
118
|
&:last-child {
|
|
116
119
|
border-right: none;
|
|
117
120
|
}
|
|
@@ -160,10 +163,12 @@ $stripe-bg: $hy-background--table-header;
|
|
|
160
163
|
|
|
161
164
|
@include m(left) {
|
|
162
165
|
left: 0;
|
|
166
|
+
|
|
163
167
|
@include is(shadow) {
|
|
164
168
|
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
|
|
165
169
|
}
|
|
166
170
|
}
|
|
171
|
+
|
|
167
172
|
@include m(right) {
|
|
168
173
|
right: 0;
|
|
169
174
|
border-left: $hy-border-line;
|
|
@@ -45,32 +45,23 @@ $hy-background--disabled);
|
|
|
45
45
|
|
|
46
46
|
@include m(large) {
|
|
47
47
|
font-size: $hy-font-size-lg;
|
|
48
|
-
line-height: $hy-font-size-lg;
|
|
49
48
|
}
|
|
50
49
|
}
|
|
51
50
|
|
|
52
51
|
@include m(mini) {
|
|
53
|
-
|
|
54
|
-
line-height: 17px;
|
|
55
|
-
padding: 0 $hy-border-margin-padding-sm;
|
|
52
|
+
padding: 4rpx 10rpx;
|
|
56
53
|
}
|
|
57
54
|
|
|
58
55
|
@include m(small) {
|
|
59
|
-
|
|
60
|
-
line-height: 22px;
|
|
61
|
-
padding: 0 $hy-border-margin-padding-sm;
|
|
56
|
+
padding: 6rpx $hy-border-margin-padding-sm;
|
|
62
57
|
}
|
|
63
58
|
|
|
64
59
|
@include m(medium) {
|
|
65
|
-
|
|
66
|
-
line-height: 26px;
|
|
67
|
-
padding: 0 $hy-border-margin-padding-base;
|
|
60
|
+
padding: 8rpx $hy-border-margin-padding-base;
|
|
68
61
|
}
|
|
69
62
|
|
|
70
63
|
@include m(large) {
|
|
71
|
-
|
|
72
|
-
line-height: 32px;
|
|
73
|
-
padding: 0 15px;
|
|
64
|
+
padding: 10rpx $hy-border-margin-padding-lg;
|
|
74
65
|
}
|
|
75
66
|
|
|
76
67
|
|
|
@@ -78,7 +78,7 @@ defineOptions({})
|
|
|
78
78
|
|
|
79
79
|
const props = defineProps(textareaProps)
|
|
80
80
|
const emit = defineEmits<ITextareaEmits>()
|
|
81
|
-
const formItem = inject<FormItemContext>('formItem')
|
|
81
|
+
const formItem = inject<FormItemContext | null>('formItem', null)
|
|
82
82
|
|
|
83
83
|
// 输入框的值
|
|
84
84
|
const innerValue = ref<string>('')
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
min-height: 50rpx;
|
|
34
34
|
max-height: 200rpx;
|
|
35
35
|
color: $hy-text-color;
|
|
36
|
+
caret-color: $hy-text-color;
|
|
36
37
|
flex: 1;
|
|
37
38
|
font-size: 15px;
|
|
38
39
|
width: 100%;
|
|
@@ -50,7 +51,3 @@
|
|
|
50
51
|
border-radius: $hy-border-radius-sm;
|
|
51
52
|
}
|
|
52
53
|
}
|
|
53
|
-
//textarea {
|
|
54
|
-
// background-color: transparent;
|
|
55
|
-
// border: none;
|
|
56
|
-
//}
|
package/global.d.ts
CHANGED
|
@@ -1,91 +1,92 @@
|
|
|
1
|
-
declare module 'vue' {
|
|
2
|
-
// Helper for Volar
|
|
3
|
-
export interface GlobalComponents {
|
|
4
|
-
HyActionSheet: (typeof import('./components/hy-action-sheet/hy-action-sheet.vue'))['default']
|
|
5
|
-
HyAddressPicker: (typeof import('./components/hy-address-picker/hy-address-picker.vue'))['default']
|
|
6
|
-
HyAvatar: (typeof import('./components/hy-avatar/hy-avatar.vue'))['default']
|
|
7
|
-
HyBackTop: (typeof import('./components/hy-back-top/hy-back-top.vue'))['default']
|
|
8
|
-
HyBadge: (typeof import('./components/hy-badge/hy-badge.vue'))['default']
|
|
9
|
-
HyButton: (typeof import('./components/hy-button/hy-button.vue'))['default']
|
|
10
|
-
HyCalendar: (typeof import('./components/hy-calendar/hy-calendar.vue'))['default']
|
|
11
|
-
HyCard: (typeof import('./components/hy-card/hy-card.vue'))['default']
|
|
12
|
-
HyCell: (typeof import('./components/hy-cell/hy-cell.vue'))['default']
|
|
13
|
-
HyCellItem: (typeof import('./components/hy-cell-item/hy-cell-item.vue'))['default']
|
|
14
|
-
HyCheckButton: (typeof import('./components/hy-check-button/hy-check-button.vue'))['default']
|
|
15
|
-
HyCheckbox: (typeof import('./components/hy-checkbox/hy-checkbox.vue'))['default']
|
|
16
|
-
HyCheckboxGroup: (typeof import('./components/hy-checkbox-group/hy-checkbox-group.vue'))['default']
|
|
17
|
-
HyCheckboxItem: (typeof import('./components/hy-checkbox-item/hy-checkbox-item.vue'))['default']
|
|
18
|
-
HyCodeInput: (typeof import('./components/hy-code-input/hy-code-input.vue'))['default']
|
|
19
|
-
HyConfigProvider: (typeof import('./components/hy-config-provider/hy-config-provider.vue'))['default']
|
|
20
|
-
HyCountDown: (typeof import('./components/hy-count-down/hy-count-down.vue'))['default']
|
|
21
|
-
HyCountTo: (typeof import('./components/hy-count-to/hy-count-to.vue'))['default']
|
|
22
|
-
HyCoupon: (typeof import('./components/hy-coupon/hy-coupon.vue'))['default']
|
|
23
|
-
HyDatetimePicker: (typeof import('./components/hy-datetime-picker/hy-datetime-picker.vue'))['default']
|
|
24
|
-
HyDatetimePickerView: (typeof import('./components/hy-datetime-picker-view/hy-datetime-picker-view.vue'))['default']
|
|
25
|
-
HyDivider: (typeof import('./components/hy-divider/hy-divider.vue'))['default']
|
|
26
|
-
HyDropdown: (typeof import('./components/hy-dropdown/hy-dropdown.vue'))['default']
|
|
27
|
-
HyDropdownItem: (typeof import('./components/hy-dropdown-item/hy-dropdown-item.vue'))['default']
|
|
28
|
-
HyEmpty: (typeof import('./components/hy-empty/hy-empty.vue'))['default']
|
|
29
|
-
HyFlex: (typeof import('./components/hy-flex/hy-flex.vue'))['default']
|
|
30
|
-
HyFloatButton: (typeof import('./components/hy-float-button/hy-float-button.vue'))['default']
|
|
31
|
-
HyFloatingPanel: (typeof import('./components/hy-floating-panel/hy-floating-panel.vue'))['default']
|
|
32
|
-
HyFloatingPanelItem: (typeof import('./components/hy-floating-panel-item/hy-floating-panel-item.vue'))['default']
|
|
33
|
-
HyForm: (typeof import('@/package/components/hy-form-group/hy-form.vue'))['default']
|
|
34
|
-
HyFormItem: (typeof import('./components/hy-form-item/hy-form-item.vue'))['default']
|
|
35
|
-
HyFormGroup: (typeof import('./components/hy-form-group/hy-form-group.vue'))['default']
|
|
36
|
-
HyGrid: (typeof import('./components/hy-grid/hy-grid.vue'))['default']
|
|
37
|
-
HyIcon: (typeof import('./components/hy-icon/hy-icon.vue'))['default']
|
|
38
|
-
HyImage: (typeof import('./components/hy-image/hy-image.vue'))['default']
|
|
39
|
-
HyInput: (typeof import('./components/hy-input/hy-input.vue'))['default']
|
|
40
|
-
HyLine: (typeof import('./components/hy-line/hy-line.vue'))['default']
|
|
41
|
-
HyLineProgress: (typeof import('./components/hy-line-progress/hy-line-progress.vue'))['default']
|
|
42
|
-
HyList: (typeof import('./components/hy-list/hy-list.vue'))['default']
|
|
43
|
-
HyLoading: (typeof import('./components/hy-loading/hy-loading.vue'))['default']
|
|
44
|
-
HyMenu: (typeof import('./components/hy-menu/hy-menu.vue'))['default']
|
|
45
|
-
HyModal: (typeof import('./components/hy-modal/hy-modal.vue'))['default']
|
|
46
|
-
HyNavbar: (typeof import('./components/hy-navbar/hy-navbar.vue'))['default']
|
|
47
|
-
HyNoticeBar: (typeof import('./components/hy-notice-bar/hy-notice-bar.vue'))['default']
|
|
48
|
-
HyNotify: (typeof import('./components/hy-notify/hy-notify.vue'))['default']
|
|
49
|
-
HyNumberStep: (typeof import('./components/hy-number-step/hy-number-step.vue'))['default']
|
|
50
|
-
HyOverlay: (typeof import('./components/hy-overlay/hy-overlay.vue'))['default']
|
|
51
|
-
HyPagination: (typeof import('./components/hy-pagination/hy-pagination.vue'))['default']
|
|
52
|
-
HyParse: (typeof import('./components/hy-parse/hy-parse.vue'))['default']
|
|
53
|
-
HyPicker: (typeof import('./components/hy-picker/hy-picker.vue'))['default']
|
|
54
|
-
HyPopover: (typeof import('./components/hy-popover/hy-popover.vue'))['default']
|
|
55
|
-
HyPopup: (typeof import('./components/hy-popup/hy-popup.vue'))['default']
|
|
56
|
-
HyPrice: (typeof import('./components/hy-price/hy-price.vue'))['default']
|
|
57
|
-
HyQrcode: (typeof import('./components/hy-qrcode/hy-qrcode.vue'))['default']
|
|
58
|
-
HyRadio: (typeof import('./components/hy-radio/hy-radio.vue'))['default']
|
|
59
|
-
HyRate: (typeof import('./components/hy-rate/hy-rate.vue'))['default']
|
|
60
|
-
HyReadMore: (typeof import('./components/hy-read-more/hy-read-more.vue'))['default']
|
|
61
|
-
HyRollingNum: (typeof import('./components/hy-rolling-num/hy-rolling-num.vue'))['default']
|
|
62
|
-
HyScrollList: (typeof import('./components/hy-scroll-list/hy-scroll-list.vue'))['default']
|
|
63
|
-
HySearch: (typeof import('./components/hy-search/hy-search.vue'))['default']
|
|
64
|
-
HySignature: (typeof import('./components/hy-signature/hy-signature.vue'))['default']
|
|
65
|
-
HySlider: (typeof import('./components/hy-slider/hy-slider.vue'))['default']
|
|
66
|
-
HyStatusBar: (typeof import('./components/hy-status-bar/hy-status-bar.vue'))['default']
|
|
67
|
-
HySteps: (typeof import('./components/hy-steps/hy-steps.vue'))['default']
|
|
68
|
-
HySticky: (typeof import('./components/hy-sticky/hy-sticky.vue'))['default']
|
|
69
|
-
HySubmitBar: (typeof import('./components/hy-submit-bar/hy-submit-bar.vue'))['default']
|
|
70
|
-
HySubsection: (typeof import('./components/hy-subsection/hy-subsection.vue'))['default']
|
|
71
|
-
HySwipeAction: (typeof import('./components/hy-swipe-action/hy-swipe-action.vue'))['default']
|
|
72
|
-
HySwiper: (typeof import('./components/hy-swiper/hy-swiper.vue'))['default']
|
|
73
|
-
HySwitch: (typeof import('./components/hy-switch/hy-switch.vue'))['default']
|
|
74
|
-
HyTabbar: (typeof import('@/package/components/hy-tabbar/hy-tabbar.vue'))['default']
|
|
75
|
-
HyTabbarGroup: (typeof import('./components/hy-tabbar-group/hy-tabbar-group.vue'))['default']
|
|
76
|
-
HyTabbarItem: (typeof import('./components/hy-tabbar-item/hy-tabbar-item.vue'))['default']
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
|
|
1
|
+
declare module 'vue' {
|
|
2
|
+
// Helper for Volar
|
|
3
|
+
export interface GlobalComponents {
|
|
4
|
+
HyActionSheet: (typeof import('./components/hy-action-sheet/hy-action-sheet.vue'))['default']
|
|
5
|
+
HyAddressPicker: (typeof import('./components/hy-address-picker/hy-address-picker.vue'))['default']
|
|
6
|
+
HyAvatar: (typeof import('./components/hy-avatar/hy-avatar.vue'))['default']
|
|
7
|
+
HyBackTop: (typeof import('./components/hy-back-top/hy-back-top.vue'))['default']
|
|
8
|
+
HyBadge: (typeof import('./components/hy-badge/hy-badge.vue'))['default']
|
|
9
|
+
HyButton: (typeof import('./components/hy-button/hy-button.vue'))['default']
|
|
10
|
+
HyCalendar: (typeof import('./components/hy-calendar/hy-calendar.vue'))['default']
|
|
11
|
+
HyCard: (typeof import('./components/hy-card/hy-card.vue'))['default']
|
|
12
|
+
HyCell: (typeof import('./components/hy-cell/hy-cell.vue'))['default']
|
|
13
|
+
HyCellItem: (typeof import('./components/hy-cell-item/hy-cell-item.vue'))['default']
|
|
14
|
+
HyCheckButton: (typeof import('./components/hy-check-button/hy-check-button.vue'))['default']
|
|
15
|
+
HyCheckbox: (typeof import('./components/hy-checkbox/hy-checkbox.vue'))['default']
|
|
16
|
+
HyCheckboxGroup: (typeof import('./components/hy-checkbox-group/hy-checkbox-group.vue'))['default']
|
|
17
|
+
HyCheckboxItem: (typeof import('./components/hy-checkbox-item/hy-checkbox-item.vue'))['default']
|
|
18
|
+
HyCodeInput: (typeof import('./components/hy-code-input/hy-code-input.vue'))['default']
|
|
19
|
+
HyConfigProvider: (typeof import('./components/hy-config-provider/hy-config-provider.vue'))['default']
|
|
20
|
+
HyCountDown: (typeof import('./components/hy-count-down/hy-count-down.vue'))['default']
|
|
21
|
+
HyCountTo: (typeof import('./components/hy-count-to/hy-count-to.vue'))['default']
|
|
22
|
+
HyCoupon: (typeof import('./components/hy-coupon/hy-coupon.vue'))['default']
|
|
23
|
+
HyDatetimePicker: (typeof import('./components/hy-datetime-picker/hy-datetime-picker.vue'))['default']
|
|
24
|
+
HyDatetimePickerView: (typeof import('./components/hy-datetime-picker-view/hy-datetime-picker-view.vue'))['default']
|
|
25
|
+
HyDivider: (typeof import('./components/hy-divider/hy-divider.vue'))['default']
|
|
26
|
+
HyDropdown: (typeof import('./components/hy-dropdown/hy-dropdown.vue'))['default']
|
|
27
|
+
HyDropdownItem: (typeof import('./components/hy-dropdown-item/hy-dropdown-item.vue'))['default']
|
|
28
|
+
HyEmpty: (typeof import('./components/hy-empty/hy-empty.vue'))['default']
|
|
29
|
+
HyFlex: (typeof import('./components/hy-flex/hy-flex.vue'))['default']
|
|
30
|
+
HyFloatButton: (typeof import('./components/hy-float-button/hy-float-button.vue'))['default']
|
|
31
|
+
HyFloatingPanel: (typeof import('./components/hy-floating-panel/hy-floating-panel.vue'))['default']
|
|
32
|
+
HyFloatingPanelItem: (typeof import('./components/hy-floating-panel-item/hy-floating-panel-item.vue'))['default']
|
|
33
|
+
HyForm: (typeof import('@/package/components/hy-form-group/hy-form.vue'))['default']
|
|
34
|
+
HyFormItem: (typeof import('./components/hy-form-item/hy-form-item.vue'))['default']
|
|
35
|
+
HyFormGroup: (typeof import('./components/hy-form-group/hy-form-group.vue'))['default']
|
|
36
|
+
HyGrid: (typeof import('./components/hy-grid/hy-grid.vue'))['default']
|
|
37
|
+
HyIcon: (typeof import('./components/hy-icon/hy-icon.vue'))['default']
|
|
38
|
+
HyImage: (typeof import('./components/hy-image/hy-image.vue'))['default']
|
|
39
|
+
HyInput: (typeof import('./components/hy-input/hy-input.vue'))['default']
|
|
40
|
+
HyLine: (typeof import('./components/hy-line/hy-line.vue'))['default']
|
|
41
|
+
HyLineProgress: (typeof import('./components/hy-line-progress/hy-line-progress.vue'))['default']
|
|
42
|
+
HyList: (typeof import('./components/hy-list/hy-list.vue'))['default']
|
|
43
|
+
HyLoading: (typeof import('./components/hy-loading/hy-loading.vue'))['default']
|
|
44
|
+
HyMenu: (typeof import('./components/hy-menu/hy-menu.vue'))['default']
|
|
45
|
+
HyModal: (typeof import('./components/hy-modal/hy-modal.vue'))['default']
|
|
46
|
+
HyNavbar: (typeof import('./components/hy-navbar/hy-navbar.vue'))['default']
|
|
47
|
+
HyNoticeBar: (typeof import('./components/hy-notice-bar/hy-notice-bar.vue'))['default']
|
|
48
|
+
HyNotify: (typeof import('./components/hy-notify/hy-notify.vue'))['default']
|
|
49
|
+
HyNumberStep: (typeof import('./components/hy-number-step/hy-number-step.vue'))['default']
|
|
50
|
+
HyOverlay: (typeof import('./components/hy-overlay/hy-overlay.vue'))['default']
|
|
51
|
+
HyPagination: (typeof import('./components/hy-pagination/hy-pagination.vue'))['default']
|
|
52
|
+
HyParse: (typeof import('./components/hy-parse/hy-parse.vue'))['default']
|
|
53
|
+
HyPicker: (typeof import('./components/hy-picker/hy-picker.vue'))['default']
|
|
54
|
+
HyPopover: (typeof import('./components/hy-popover/hy-popover.vue'))['default']
|
|
55
|
+
HyPopup: (typeof import('./components/hy-popup/hy-popup.vue'))['default']
|
|
56
|
+
HyPrice: (typeof import('./components/hy-price/hy-price.vue'))['default']
|
|
57
|
+
HyQrcode: (typeof import('./components/hy-qrcode/hy-qrcode.vue'))['default']
|
|
58
|
+
HyRadio: (typeof import('./components/hy-radio/hy-radio.vue'))['default']
|
|
59
|
+
HyRate: (typeof import('./components/hy-rate/hy-rate.vue'))['default']
|
|
60
|
+
HyReadMore: (typeof import('./components/hy-read-more/hy-read-more.vue'))['default']
|
|
61
|
+
HyRollingNum: (typeof import('./components/hy-rolling-num/hy-rolling-num.vue'))['default']
|
|
62
|
+
HyScrollList: (typeof import('./components/hy-scroll-list/hy-scroll-list.vue'))['default']
|
|
63
|
+
HySearch: (typeof import('./components/hy-search/hy-search.vue'))['default']
|
|
64
|
+
HySignature: (typeof import('./components/hy-signature/hy-signature.vue'))['default']
|
|
65
|
+
HySlider: (typeof import('./components/hy-slider/hy-slider.vue'))['default']
|
|
66
|
+
HyStatusBar: (typeof import('./components/hy-status-bar/hy-status-bar.vue'))['default']
|
|
67
|
+
HySteps: (typeof import('./components/hy-steps/hy-steps.vue'))['default']
|
|
68
|
+
HySticky: (typeof import('./components/hy-sticky/hy-sticky.vue'))['default']
|
|
69
|
+
HySubmitBar: (typeof import('./components/hy-submit-bar/hy-submit-bar.vue'))['default']
|
|
70
|
+
HySubsection: (typeof import('./components/hy-subsection/hy-subsection.vue'))['default']
|
|
71
|
+
HySwipeAction: (typeof import('./components/hy-swipe-action/hy-swipe-action.vue'))['default']
|
|
72
|
+
HySwiper: (typeof import('./components/hy-swiper/hy-swiper.vue'))['default']
|
|
73
|
+
HySwitch: (typeof import('./components/hy-switch/hy-switch.vue'))['default']
|
|
74
|
+
HyTabbar: (typeof import('@/package/components/hy-tabbar/hy-tabbar.vue'))['default']
|
|
75
|
+
HyTabbarGroup: (typeof import('./components/hy-tabbar-group/hy-tabbar-group.vue'))['default']
|
|
76
|
+
HyTabbarItem: (typeof import('./components/hy-tabbar-item/hy-tabbar-item.vue'))['default']
|
|
77
|
+
HyTable: (typeof import('./components/hy-table/hy-table.vue'))['default']
|
|
78
|
+
HyTabs: (typeof import('./components/hy-tabs/hy-tabs.vue'))['default']
|
|
79
|
+
HyTag: (typeof import('./components/hy-tag/hy-tag.vue'))['default']
|
|
80
|
+
HyTextarea: (typeof import('./components/hy-textarea/hy-textarea.vue'))['default']
|
|
81
|
+
HyText: (typeof import('./components/hy-text/hy-text.vue'))['default']
|
|
82
|
+
HyToast: (typeof import('./components/hy-toast/hy-toast.vue'))['default']
|
|
83
|
+
HyTooltip: (typeof import('./components/hy-tooltip/hy-tooltip.vue'))['default']
|
|
84
|
+
HyTransition: (typeof import('./components/hy-transition/hy-transition.vue'))['default']
|
|
85
|
+
HyUpload: (typeof import('./components/hy-upload/hy-upload.vue'))['default']
|
|
86
|
+
HyWarn: (typeof import('./components/hy-warn/hy-warn.vue'))['default']
|
|
87
|
+
HyWaterfall: (typeof import('./components/hy-waterfall/hy-waterfall.vue'))['default']
|
|
88
|
+
HyWatermark: (typeof import('./components/hy-watermark/hy-watermark.vue'))['default']
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export {}
|