hy-app 0.5.12 → 0.5.14

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.
@@ -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
- flexShrink: 0,
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(0)
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(0)
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(0)
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(0)
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(0)
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;
@@ -17,7 +17,7 @@ const tableProps = {
17
17
  type: [String, Number],
18
18
  default: 400
19
19
  },
20
- /** 行高,如 '500rpx' */
20
+ /** 行高,如 '50' */
21
21
  rowHeight: {
22
22
  type: [String, Number],
23
23
  default: 50
@@ -26,6 +26,7 @@ $hy-background--disabled);
26
26
  }
27
27
 
28
28
  @include e(text) {
29
+ white-space: nowrap;
29
30
 
30
31
  @include m(mini) {
31
32
  font-size: 20rpx;
@@ -44,32 +45,23 @@ $hy-background--disabled);
44
45
 
45
46
  @include m(large) {
46
47
  font-size: $hy-font-size-lg;
47
- line-height: $hy-font-size-lg;
48
48
  }
49
49
  }
50
50
 
51
51
  @include m(mini) {
52
- height: 17px;
53
- line-height: 17px;
54
- padding: 0 $hy-border-margin-padding-sm;
52
+ padding: 4rpx 10rpx;
55
53
  }
56
54
 
57
55
  @include m(small) {
58
- height: 22px;
59
- line-height: 22px;
60
- padding: 0 $hy-border-margin-padding-sm;
56
+ padding: 6rpx $hy-border-margin-padding-sm;
61
57
  }
62
58
 
63
59
  @include m(medium) {
64
- height: 26px;
65
- line-height: 26px;
66
- padding: 0 $hy-border-margin-padding-base;
60
+ padding: 8rpx $hy-border-margin-padding-base;
67
61
  }
68
62
 
69
63
  @include m(large) {
70
- height: 32px;
71
- line-height: 32px;
72
- padding: 0 15px;
64
+ padding: 10rpx $hy-border-margin-padding-lg;
73
65
  }
74
66
 
75
67
 
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <view :class="['hy-test', customClass]" v-if="show" :style="wrapStyle" @tap="clickHandler">
2
+ <view :class="['hy-text', customClass]" v-if="show" :style="wrapStyle" @tap="clickHandler">
3
3
  <text
4
4
  :class="['hy-text__price', type && `hy-text__value--${type}`]"
5
5
  v-if="mode === 'price'"
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
- HyTabs: (typeof import('./components/hy-tabs/hy-tabs.vue'))['default']
78
- HyTag: (typeof import('./components/hy-tag/hy-tag.vue'))['default']
79
- HyTextarea: (typeof import('./components/hy-textarea/hy-textarea.vue'))['default']
80
- HyText: (typeof import('./components/hy-text/hy-text.vue'))['default']
81
- HyToast: (typeof import('./components/hy-toast/hy-toast.vue'))['default']
82
- HyTooltip: (typeof import('./components/hy-tooltip/hy-tooltip.vue'))['default']
83
- HyTransition: (typeof import('./components/hy-transition/hy-transition.vue'))['default']
84
- HyUpload: (typeof import('./components/hy-upload/hy-upload.vue'))['default']
85
- HyWarn: (typeof import('./components/hy-warn/hy-warn.vue'))['default']
86
- HyWaterfall: (typeof import('./components/hy-waterfall/hy-waterfall.vue'))['default']
87
- HyWatermark: (typeof import('./components/hy-watermark/hy-watermark.vue'))['default']
88
- }
89
- }
90
-
91
- export {}
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 {}