hy-app 0.5.3 → 0.5.4

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.
Files changed (46) hide show
  1. package/components/hy-avatar/hy-avatar.vue +4 -3
  2. package/components/hy-badge/hy-badge.vue +3 -3
  3. package/components/hy-badge/index.scss +0 -1
  4. package/components/hy-badge/props.ts +6 -1
  5. package/components/hy-coupon/index.scss +7 -2
  6. package/components/hy-coupon/props.ts +7 -4
  7. package/components/hy-coupon/typing.d.ts +1 -1
  8. package/components/hy-datetime-picker/props.ts +1 -3
  9. package/components/hy-folding-panel/props.ts +1 -1
  10. package/components/hy-folding-panel/typing.d.ts +0 -38
  11. package/components/hy-folding-panel-item/hy-folding-panel-item.vue +2 -3
  12. package/components/hy-folding-panel-item/typing.d.ts +14 -0
  13. package/components/hy-icon/hy-icon.vue +3 -8
  14. package/components/hy-list/props.ts +1 -1
  15. package/components/hy-notice-bar/typing.d.ts +2 -0
  16. package/components/hy-popup/hy-popup.vue +0 -1
  17. package/components/hy-qrcode/hy-qrcode.vue +70 -4
  18. package/components/hy-qrcode/index.scss +3 -4
  19. package/components/hy-qrcode/qrcode.js +138 -0
  20. package/components/hy-signature/hy-signature.vue +25 -22
  21. package/components/hy-signature/index.scss +0 -4
  22. package/components/hy-tabbar/hy-tabbar.vue +137 -0
  23. package/components/{hy-tabBar → hy-tabbar}/index.scss +30 -30
  24. package/components/hy-tabbar/props.ts +59 -0
  25. package/components/hy-tabbar/typing.d.ts +61 -0
  26. package/components/hy-tabbar-group/README.md +326 -0
  27. package/components/hy-tabbar-group/hy-tabbar-group.vue +87 -0
  28. package/components/hy-tabbar-group/index.scss +57 -0
  29. package/components/hy-tabbar-group/props.ts +78 -0
  30. package/components/hy-tabbar-group/typing.ts +16 -0
  31. package/components/hy-tabbar-item/hy-tabbar-item.vue +103 -0
  32. package/components/hy-tabbar-item/index.scss +43 -0
  33. package/components/hy-tabbar-item/props.ts +24 -0
  34. package/components/hy-tabbar-item/typing.ts +22 -0
  35. package/components/hy-tag/props.ts +8 -2
  36. package/components/hy-text/props.ts +8 -2
  37. package/components/hy-textarea/props.ts +4 -1
  38. package/components/hy-tooltip/props.ts +1 -3
  39. package/components/hy-upload/props.ts +1 -1
  40. package/components/index.ts +177 -177
  41. package/global.d.ts +87 -85
  42. package/package.json +2 -2
  43. package/web-types.json +1 -1
  44. package/components/hy-tabBar/hy-tabBar.vue +0 -109
  45. package/components/hy-tabBar/props.ts +0 -13
  46. package/components/hy-tabBar/typing.d.ts +0 -54
package/global.d.ts CHANGED
@@ -1,87 +1,89 @@
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
- HyCheckButton: (typeof import("./components/hy-check-button/hy-check-button.vue"))["default"];
14
- HyCheckbox: (typeof import("./components/hy-checkbox/hy-checkbox.vue"))["default"];
15
- HyCheckboxGroup: (typeof import("./components/hy-checkbox-group/hy-checkbox-group.vue"))["default"];
16
- HyCheckboxItem: (typeof import("./components/hy-checkbox-item/hy-checkbox-item.vue"))["default"];
17
- HyCodeInput: (typeof import("./components/hy-code-input/hy-code-input.vue"))["default"];
18
- HyConfigProvider: (typeof import("./components/hy-config-provider/hy-config-provider.vue"))["default"];
19
- HyCountDown: (typeof import("./components/hy-count-down/hy-count-down.vue"))["default"];
20
- HyCountTo: (typeof import("./components/hy-count-to/hy-count-to.vue"))["default"];
21
- HyCoupon: (typeof import("./components/hy-coupon/hy-coupon.vue"))["default"];
22
- HyDatetimePicker: (typeof import("./components/hy-datetime-picker/hy-datetime-picker.vue"))["default"];
23
- HyDatetimePickerView: (typeof import("./components/hy-datetime-picker-view/hy-datetime-picker-view.vue"))["default"];
24
- HyDivider: (typeof import("./components/hy-divider/hy-divider.vue"))["default"];
25
- HyDropdown: (typeof import("./components/hy-dropdown/hy-dropdown.vue"))["default"];
26
- HyDropdownItem: (typeof import("./components/hy-dropdown-item/hy-dropdown-item.vue"))["default"];
27
- HyEmpty: (typeof import("./components/hy-empty/hy-empty.vue"))["default"];
28
- HyFlex: (typeof import("./components/hy-flex/hy-flex.vue"))["default"];
29
- HyFloatButton: (typeof import("./components/hy-float-button/hy-float-button.vue"))["default"];
30
- HyFloatingPanel: (typeof import("./components/hy-floating-panel/hy-floating-panel.vue"))["default"];
31
- HyFloatingPanelItem: (typeof import("./components/hy-floating-panel-item/hy-floating-panel-item.vue"))["default"];
32
- HyForm: (typeof import("@/package/components/hy-form-group/hy-form.vue"))["default"];
33
- HyFormItem: (typeof import("./components/hy-form-item/hy-form-item.vue"))["default"];
34
- HyFormGroup: (typeof import("./components/hy-form-group/hy-form-group.vue"))["default"];
35
- HyGrid: (typeof import("./components/hy-grid/hy-grid.vue"))["default"];
36
- HyIcon: (typeof import("./components/hy-icon/hy-icon.vue"))["default"];
37
- HyImage: (typeof import("./components/hy-image/hy-image.vue"))["default"];
38
- HyInput: (typeof import("./components/hy-input/hy-input.vue"))["default"];
39
- HyLine: (typeof import("./components/hy-line/hy-line.vue"))["default"];
40
- HyLineProgress: (typeof import("./components/hy-line-progress/hy-line-progress.vue"))["default"];
41
- HyList: (typeof import("./components/hy-list/hy-list.vue"))["default"];
42
- HyLoading: (typeof import("./components/hy-loading/hy-loading.vue"))["default"];
43
- HyMenu: (typeof import("./components/hy-menu/hy-menu.vue"))["default"];
44
- HyModal: (typeof import("./components/hy-modal/hy-modal.vue"))["default"];
45
- HyNavbar: (typeof import("./components/hy-navbar/hy-navbar.vue"))["default"];
46
- HyNoticeBar: (typeof import("./components/hy-notice-bar/hy-notice-bar.vue"))["default"];
47
- HyNotify: (typeof import("./components/hy-notify/hy-notify.vue"))["default"];
48
- HyNumberStep: (typeof import("./components/hy-number-step/hy-number-step.vue"))["default"];
49
- HyOverlay: (typeof import("./components/hy-overlay/hy-overlay.vue"))["default"];
50
- HyPagination: (typeof import("./components/hy-pagination/hy-pagination.vue"))["default"];
51
- HyParse: (typeof import("./components/hy-parse/hy-parse.vue"))["default"];
52
- HyPicker: (typeof import("./components/hy-picker/hy-picker.vue"))["default"];
53
- HyPopover: (typeof import("./components/hy-popover/hy-popover.vue"))["default"];
54
- HyPopup: (typeof import("./components/hy-popup/hy-popup.vue"))["default"];
55
- HyPrice: (typeof import("./components/hy-price/hy-price.vue"))["default"];
56
- HyQrcode: (typeof import("./components/hy-qrcode/hy-qrcode.vue"))["default"];
57
- HyRadio: (typeof import("./components/hy-radio/hy-radio.vue"))["default"];
58
- HyRate: (typeof import("./components/hy-rate/hy-rate.vue"))["default"];
59
- HyReadMore: (typeof import("./components/hy-read-more/hy-read-more.vue"))["default"];
60
- HyScrollList: (typeof import("./components/hy-scroll-list/hy-scroll-list.vue"))["default"];
61
- HySearch: (typeof import("./components/hy-search/hy-search.vue"))["default"];
62
- HySignature: (typeof import("./components/hy-signature/hy-signature.vue"))["default"];
63
- HySlider: (typeof import("./components/hy-slider/hy-slider.vue"))["default"];
64
- HyStatusBar: (typeof import("./components/hy-status-bar/hy-status-bar.vue"))["default"];
65
- HySteps: (typeof import("./components/hy-steps/hy-steps.vue"))["default"];
66
- HySticky: (typeof import("./components/hy-sticky/hy-sticky.vue"))["default"];
67
- HySubmitBar: (typeof import("./components/hy-submit-bar/hy-submit-bar.vue"))["default"];
68
- HySubsection: (typeof import("./components/hy-subsection/hy-subsection.vue"))["default"];
69
- HySwipeAction: (typeof import("./components/hy-swipe-action/hy-swipe-action.vue"))["default"];
70
- HySwiper: (typeof import("./components/hy-swiper/hy-swiper.vue"))["default"];
71
- HySwitch: (typeof import("./components/hy-switch/hy-switch.vue"))["default"];
72
- HyTabBar: (typeof import("./components/hy-tabBar/hy-tabBar.vue"))["default"];
73
- HyTabs: (typeof import("./components/hy-tabs/hy-tabs.vue"))["default"];
74
- HyTag: (typeof import("./components/hy-tag/hy-tag.vue"))["default"];
75
- HyTextarea: (typeof import("./components/hy-textarea/hy-textarea.vue"))["default"];
76
- HyText: (typeof import("./components/hy-text/hy-text.vue"))["default"];
77
- HyToast: (typeof import("./components/hy-toast/hy-toast.vue"))["default"];
78
- HyTooltip: (typeof import("./components/hy-tooltip/hy-tooltip.vue"))["default"];
79
- HyTransition: (typeof import("./components/hy-transition/hy-transition.vue"))["default"];
80
- HyUpload: (typeof import("./components/hy-upload/hy-upload.vue"))["default"];
81
- HyWarn: (typeof import("./components/hy-warn/hy-warn.vue"))["default"];
82
- HyWaterfall: (typeof import("./components/hy-waterfall/hy-waterfall.vue"))["default"];
83
- HyWatermark: (typeof import("./components/hy-watermark/hy-watermark.vue"))["default"];
84
- }
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
+ HyCheckButton: (typeof import('./components/hy-check-button/hy-check-button.vue'))['default']
14
+ HyCheckbox: (typeof import('./components/hy-checkbox/hy-checkbox.vue'))['default']
15
+ HyCheckboxGroup: (typeof import('./components/hy-checkbox-group/hy-checkbox-group.vue'))['default']
16
+ HyCheckboxItem: (typeof import('./components/hy-checkbox-item/hy-checkbox-item.vue'))['default']
17
+ HyCodeInput: (typeof import('./components/hy-code-input/hy-code-input.vue'))['default']
18
+ HyConfigProvider: (typeof import('./components/hy-config-provider/hy-config-provider.vue'))['default']
19
+ HyCountDown: (typeof import('./components/hy-count-down/hy-count-down.vue'))['default']
20
+ HyCountTo: (typeof import('./components/hy-count-to/hy-count-to.vue'))['default']
21
+ HyCoupon: (typeof import('./components/hy-coupon/hy-coupon.vue'))['default']
22
+ HyDatetimePicker: (typeof import('./components/hy-datetime-picker/hy-datetime-picker.vue'))['default']
23
+ HyDatetimePickerView: (typeof import('./components/hy-datetime-picker-view/hy-datetime-picker-view.vue'))['default']
24
+ HyDivider: (typeof import('./components/hy-divider/hy-divider.vue'))['default']
25
+ HyDropdown: (typeof import('./components/hy-dropdown/hy-dropdown.vue'))['default']
26
+ HyDropdownItem: (typeof import('./components/hy-dropdown-item/hy-dropdown-item.vue'))['default']
27
+ HyEmpty: (typeof import('./components/hy-empty/hy-empty.vue'))['default']
28
+ HyFlex: (typeof import('./components/hy-flex/hy-flex.vue'))['default']
29
+ HyFloatButton: (typeof import('./components/hy-float-button/hy-float-button.vue'))['default']
30
+ HyFloatingPanel: (typeof import('./components/hy-floating-panel/hy-floating-panel.vue'))['default']
31
+ HyFloatingPanelItem: (typeof import('./components/hy-floating-panel-item/hy-floating-panel-item.vue'))['default']
32
+ HyForm: (typeof import('@/package/components/hy-form-group/hy-form.vue'))['default']
33
+ HyFormItem: (typeof import('./components/hy-form-item/hy-form-item.vue'))['default']
34
+ HyFormGroup: (typeof import('./components/hy-form-group/hy-form-group.vue'))['default']
35
+ HyGrid: (typeof import('./components/hy-grid/hy-grid.vue'))['default']
36
+ HyIcon: (typeof import('./components/hy-icon/hy-icon.vue'))['default']
37
+ HyImage: (typeof import('./components/hy-image/hy-image.vue'))['default']
38
+ HyInput: (typeof import('./components/hy-input/hy-input.vue'))['default']
39
+ HyLine: (typeof import('./components/hy-line/hy-line.vue'))['default']
40
+ HyLineProgress: (typeof import('./components/hy-line-progress/hy-line-progress.vue'))['default']
41
+ HyList: (typeof import('./components/hy-list/hy-list.vue'))['default']
42
+ HyLoading: (typeof import('./components/hy-loading/hy-loading.vue'))['default']
43
+ HyMenu: (typeof import('./components/hy-menu/hy-menu.vue'))['default']
44
+ HyModal: (typeof import('./components/hy-modal/hy-modal.vue'))['default']
45
+ HyNavbar: (typeof import('./components/hy-navbar/hy-navbar.vue'))['default']
46
+ HyNoticeBar: (typeof import('./components/hy-notice-bar/hy-notice-bar.vue'))['default']
47
+ HyNotify: (typeof import('./components/hy-notify/hy-notify.vue'))['default']
48
+ HyNumberStep: (typeof import('./components/hy-number-step/hy-number-step.vue'))['default']
49
+ HyOverlay: (typeof import('./components/hy-overlay/hy-overlay.vue'))['default']
50
+ HyPagination: (typeof import('./components/hy-pagination/hy-pagination.vue'))['default']
51
+ HyParse: (typeof import('./components/hy-parse/hy-parse.vue'))['default']
52
+ HyPicker: (typeof import('./components/hy-picker/hy-picker.vue'))['default']
53
+ HyPopover: (typeof import('./components/hy-popover/hy-popover.vue'))['default']
54
+ HyPopup: (typeof import('./components/hy-popup/hy-popup.vue'))['default']
55
+ HyPrice: (typeof import('./components/hy-price/hy-price.vue'))['default']
56
+ HyQrcode: (typeof import('./components/hy-qrcode/hy-qrcode.vue'))['default']
57
+ HyRadio: (typeof import('./components/hy-radio/hy-radio.vue'))['default']
58
+ HyRate: (typeof import('./components/hy-rate/hy-rate.vue'))['default']
59
+ HyReadMore: (typeof import('./components/hy-read-more/hy-read-more.vue'))['default']
60
+ HyScrollList: (typeof import('./components/hy-scroll-list/hy-scroll-list.vue'))['default']
61
+ HySearch: (typeof import('./components/hy-search/hy-search.vue'))['default']
62
+ HySignature: (typeof import('./components/hy-signature/hy-signature.vue'))['default']
63
+ HySlider: (typeof import('./components/hy-slider/hy-slider.vue'))['default']
64
+ HyStatusBar: (typeof import('./components/hy-status-bar/hy-status-bar.vue'))['default']
65
+ HySteps: (typeof import('./components/hy-steps/hy-steps.vue'))['default']
66
+ HySticky: (typeof import('./components/hy-sticky/hy-sticky.vue'))['default']
67
+ HySubmitBar: (typeof import('./components/hy-submit-bar/hy-submit-bar.vue'))['default']
68
+ HySubsection: (typeof import('./components/hy-subsection/hy-subsection.vue'))['default']
69
+ HySwipeAction: (typeof import('./components/hy-swipe-action/hy-swipe-action.vue'))['default']
70
+ HySwiper: (typeof import('./components/hy-swiper/hy-swiper.vue'))['default']
71
+ HySwitch: (typeof import('./components/hy-switch/hy-switch.vue'))['default']
72
+ HyTabbar: (typeof import('@/package/components/hy-tabbar/hy-tabbar.vue'))['default']
73
+ HyTabbarGroup: (typeof import('./components/hy-tabbar-group/hy-tabbar-group.vue'))['default']
74
+ HyTabbarItem: (typeof import('./components/hy-tabbar-item/hy-tabbar-item.vue'))['default']
75
+ HyTabs: (typeof import('./components/hy-tabs/hy-tabs.vue'))['default']
76
+ HyTag: (typeof import('./components/hy-tag/hy-tag.vue'))['default']
77
+ HyTextarea: (typeof import('./components/hy-textarea/hy-textarea.vue'))['default']
78
+ HyText: (typeof import('./components/hy-text/hy-text.vue'))['default']
79
+ HyToast: (typeof import('./components/hy-toast/hy-toast.vue'))['default']
80
+ HyTooltip: (typeof import('./components/hy-tooltip/hy-tooltip.vue'))['default']
81
+ HyTransition: (typeof import('./components/hy-transition/hy-transition.vue'))['default']
82
+ HyUpload: (typeof import('./components/hy-upload/hy-upload.vue'))['default']
83
+ HyWarn: (typeof import('./components/hy-warn/hy-warn.vue'))['default']
84
+ HyWaterfall: (typeof import('./components/hy-waterfall/hy-waterfall.vue'))['default']
85
+ HyWatermark: (typeof import('./components/hy-watermark/hy-watermark.vue'))['default']
86
+ }
85
87
  }
86
88
 
87
- export {};
89
+ export {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hy-app",
3
- "version": "0.5.3",
4
- "description": "fix: 新增优惠券",
3
+ "version": "0.5.4",
4
+ "description": "fix: tabbar优化",
5
5
  "main": "./index.ts",
6
6
  "private": false,
7
7
  "scripts": {},