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
@@ -0,0 +1,43 @@
1
+ @use "../../libs/css/theme" as *;
2
+ @use "../../libs/css/mixin.scss" as *;
3
+
4
+
5
+ @include b(tabbar-item) {
6
+ flex: 1;
7
+ text-align: center;
8
+ text-decoration: none;
9
+ height: 100%;
10
+ display: flex;
11
+ justify-content: center;
12
+ align-items: center;
13
+
14
+ @include e(body) {
15
+ display: flex;
16
+ align-items: center;
17
+ flex-direction: column;
18
+ line-height: 1;
19
+ padding: 0;
20
+ position: relative;
21
+
22
+ :deep(){
23
+ @include is(active) {
24
+ color: $hy-primary;
25
+ }
26
+
27
+ @include is(inactive) {
28
+ color: $hy-text-color--grey;
29
+ }
30
+ }
31
+ }
32
+
33
+
34
+ @include e(body-title) {
35
+ font-size: $hy-font-size-sm;
36
+ line-height: initial;
37
+ }
38
+
39
+ @include edeep(body-icon) {
40
+ font-size: 40rpx;
41
+ }
42
+
43
+ }
@@ -0,0 +1,24 @@
1
+ const tabBarItemProps = {
2
+ /** 图标 */
3
+ icon: {
4
+ type: String,
5
+ default: ''
6
+ },
7
+ /** 标题 */
8
+ title: {
9
+ type: String,
10
+ default: ''
11
+ },
12
+ /** 唯一标识 */
13
+ name: {
14
+ type: [String, Number],
15
+ default: ''
16
+ },
17
+ /** 徽标显示值,当为徽标为点时候,必须要value设置true或者有值 */
18
+ value: {
19
+ type: [String, Number, Boolean],
20
+ default: ''
21
+ }
22
+ }
23
+
24
+ export default tabBarItemProps
@@ -0,0 +1,22 @@
1
+ import type { TabBarGroupProps } from '../hy-tabbar-group/typing'
2
+
3
+ export interface ITabbarConfig extends TabBarGroupProps {
4
+ /**
5
+ * 子项状态变更触发父方法
6
+ * */
7
+ setChange: (option: string | number) => void
8
+ /** 获取默认唯一值,递增 */
9
+ getIndex: () => number
10
+ }
11
+
12
+ // ITabBarItemEmits 接口定义组件的自定义事件
13
+ export interface ITabBarItemEmits {
14
+ // 点击事件
15
+ (e: 'click', value: number): void
16
+ // 激活事件
17
+ (e: 'active', value: number): void
18
+ // 变化事件
19
+ (e: 'change', value: number): void
20
+ // 更新激活状态事件
21
+ (e: 'update:active', active: boolean): void
22
+ }
@@ -3,9 +3,15 @@ import type HyIconProps from './typing'
3
3
 
4
4
  const tagProps = {
5
5
  /** 标签的文字内容 */
6
- text: String,
6
+ text: {
7
+ type: String,
8
+ default: ''
9
+ },
7
10
  /** 点击需要传得值 */
8
- name: [String, Number],
11
+ name: {
12
+ type: [String, Number],
13
+ default: ''
14
+ },
9
15
  /**
10
16
  * 标签类型
11
17
  * @values info,primary,success,error,warning
@@ -35,7 +35,10 @@ const textProps = {
35
35
  default: ''
36
36
  },
37
37
  /** 格式化规则 */
38
- format: [Function, String],
38
+ format: {
39
+ type: [Function, String],
40
+ default: ''
41
+ },
39
42
  /** mode=phone时,点击文本是否拨打电话 */
40
43
  call: {
41
44
  type: Boolean,
@@ -54,7 +57,10 @@ const textProps = {
54
57
  default: false
55
58
  },
56
59
  /** 文本显示的行数,如果设置,超出此行数,将会显示省略号 */
57
- lines: [String, Number],
60
+ lines: {
61
+ type: [String, Number],
62
+ default: ''
63
+ },
58
64
  /** 文本颜色 */
59
65
  color: String,
60
66
  /** 字体大小 */
@@ -56,7 +56,10 @@ const textareaProps = {
56
56
  default: 0
57
57
  },
58
58
  /** 指定focus时的光标位置 */
59
- cursor: [String, Number],
59
+ cursor: {
60
+ type: [String, Number],
61
+ default: ''
62
+ },
60
63
  /** 是否显示键盘上方带有”完成“按钮那一栏 */
61
64
  showConfirmBar: {
62
65
  type: Boolean,
@@ -58,9 +58,7 @@ const tooltipProps = {
58
58
  /** 扩展的按钮组 */
59
59
  buttons: {
60
60
  type: Array,
61
- default() {
62
- return []
63
- }
61
+ default: () => []
64
62
  },
65
63
  /** 是否显示透明遮罩以防止触摸穿透 */
66
64
  overlay: {
@@ -82,7 +82,7 @@ const uploadProps = {
82
82
  /** 所选的图片的尺寸 */
83
83
  sizeType: {
84
84
  type: Array as PropType<('original' | 'compressed')[]>,
85
- default: ['original', 'compressed']
85
+ default: () => ['original', 'compressed']
86
86
  },
87
87
  /** 是否开启图片多选,部分安卓机型不支持 */
88
88
  multiple: {
@@ -1,183 +1,183 @@
1
- import HyTabBr from "./hy-tabBar/hy-tabBar.vue";
1
+ import HyTabbar from '@/package/components/hy-tabbar/hy-tabbar.vue'
2
2
  // 组件库
3
- import HyAddressPicker from "./hy-address-picker/hy-address-picker.vue";
4
- import HyAvatar from "./hy-avatar/hy-avatar.vue";
5
- import HyBackTop from "./hy-back-top/hy-back-top.vue";
6
- import HyBadge from "./hy-badge/hy-badge.vue";
7
- import HyButton from "./hy-button/hy-button.vue";
8
- import HyCard from "./hy-card/hy-card.vue";
9
- import HyCell from "./hy-cell/hy-cell.vue";
10
- import HyCheckButton from "./hy-check-button/hy-check-button.vue";
11
- import HyCheckbox from "./hy-checkbox/hy-checkbox.vue";
12
- import HyCountDown from "./hy-count-down/hy-count-down.vue";
13
- import HyCountTo from "./hy-count-to/hy-count-to.vue";
14
- import HyDatetimePicker from "./hy-datetime-picker/hy-datetime-picker.vue";
15
- import HyDivider from "./hy-divider/hy-divider.vue";
16
- import HyDropdown from "./hy-dropdown/hy-dropdown.vue";
17
- import HyDropdownItem from "./hy-dropdown-item/hy-dropdown-item.vue";
18
- import YkEmpty from "./hy-empty/hy-empty.vue";
19
- import YkFloatButton from "./hy-float-button/hy-float-button.vue";
20
- import HyFoldingPanel from "@/package/components/hy-folding-panel/hy-folding-panel.vue";
21
- import HyForm from "@/package/components/hy-form-group/hy-form.vue";
22
- import HyFormSimple from "@/package/components/hy-form/hy-form-simple.vue";
23
- import HyFormItem from "./hy-form-item/hy-form-item.vue";
24
- import HyGrid from "./hy-grid/hy-grid.vue";
25
- import HyIcon from "./hy-icon/hy-icon.vue";
26
- import HyImage from "./hy-image/hy-image.vue";
27
- import HyInput from "./hy-input/hy-input.vue";
28
- import HyLine from "./hy-line/hy-line.vue";
29
- import HyLineProgress from "./hy-line-progress/hy-line-progress.vue";
30
- import HyList from "./hy-list/hy-list.vue";
31
- import HyLoading from "./hy-loading/hy-loading.vue";
32
- import YkLogin from "./hy-login/hy-login.vue";
33
- import HyModal from "./hy-modal/hy-modal.vue";
34
- import HyNavbar from "./hy-navbar/hy-navbar.vue";
35
- import HyNoticeBar from "./hy-notice-bar/hy-notice-bar.vue";
36
- import HyNumberStep from "./hy-number-step/hy-number-step.vue";
37
- import HyOverlay from "./hy-overlay/hy-overlay.vue";
38
- import YkPrice from "./hy-price/hy-price.vue";
39
- import HyPicker from "./hy-picker/hy-picker.vue";
40
- import HyPopup from "./hy-popup/hy-popup.vue";
41
- import HyQrcode from "./hy-qrcode/hy-qrcode.vue";
42
- import HyRadio from "./hy-radio/hy-radio.vue";
43
- import HyRate from "./hy-rate/hy-rate.vue";
44
- import HyReadMore from "./hy-read-more/hy-read-more.vue";
3
+ import HyAddressPicker from './hy-address-picker/hy-address-picker.vue'
4
+ import HyAvatar from './hy-avatar/hy-avatar.vue'
5
+ import HyBackTop from './hy-back-top/hy-back-top.vue'
6
+ import HyBadge from './hy-badge/hy-badge.vue'
7
+ import HyButton from './hy-button/hy-button.vue'
8
+ import HyCard from './hy-card/hy-card.vue'
9
+ import HyCell from './hy-cell/hy-cell.vue'
10
+ import HyCheckButton from './hy-check-button/hy-check-button.vue'
11
+ import HyCheckbox from './hy-checkbox/hy-checkbox.vue'
12
+ import HyCountDown from './hy-count-down/hy-count-down.vue'
13
+ import HyCountTo from './hy-count-to/hy-count-to.vue'
14
+ import HyDatetimePicker from './hy-datetime-picker/hy-datetime-picker.vue'
15
+ import HyDivider from './hy-divider/hy-divider.vue'
16
+ import HyDropdown from './hy-dropdown/hy-dropdown.vue'
17
+ import HyDropdownItem from './hy-dropdown-item/hy-dropdown-item.vue'
18
+ import YkEmpty from './hy-empty/hy-empty.vue'
19
+ import YkFloatButton from './hy-float-button/hy-float-button.vue'
20
+ import HyFoldingPanel from '@/package/components/hy-folding-panel/hy-folding-panel.vue'
21
+ import HyForm from '@/package/components/hy-form-group/hy-form.vue'
22
+ import HyFormSimple from '@/package/components/hy-form/hy-form-simple.vue'
23
+ import HyFormItem from './hy-form-item/hy-form-item.vue'
24
+ import HyGrid from './hy-grid/hy-grid.vue'
25
+ import HyIcon from './hy-icon/hy-icon.vue'
26
+ import HyImage from './hy-image/hy-image.vue'
27
+ import HyInput from './hy-input/hy-input.vue'
28
+ import HyLine from './hy-line/hy-line.vue'
29
+ import HyLineProgress from './hy-line-progress/hy-line-progress.vue'
30
+ import HyList from './hy-list/hy-list.vue'
31
+ import HyLoading from './hy-loading/hy-loading.vue'
32
+ import YkLogin from './hy-login/hy-login.vue'
33
+ import HyModal from './hy-modal/hy-modal.vue'
34
+ import HyNavbar from './hy-navbar/hy-navbar.vue'
35
+ import HyNoticeBar from './hy-notice-bar/hy-notice-bar.vue'
36
+ import HyNumberStep from './hy-number-step/hy-number-step.vue'
37
+ import HyOverlay from './hy-overlay/hy-overlay.vue'
38
+ import YkPrice from './hy-price/hy-price.vue'
39
+ import HyPicker from './hy-picker/hy-picker.vue'
40
+ import HyPopup from './hy-popup/hy-popup.vue'
41
+ import HyQrcode from './hy-qrcode/hy-qrcode.vue'
42
+ import HyRadio from './hy-radio/hy-radio.vue'
43
+ import HyRate from './hy-rate/hy-rate.vue'
44
+ import HyReadMore from './hy-read-more/hy-read-more.vue'
45
45
  // import HySafeBottom from "./hy-safe-bottom/hy-safe-bottom.vue";
46
- import HyScrollList from "./hy-scroll-list/hy-scroll-list.vue";
47
- import HySearch from "./hy-search/hy-search.vue";
48
- import HySlider from "./hy-slider/hy-slider.vue";
49
- import HyStatusBar from "./hy-status-bar/hy-status-bar.vue";
50
- import HySteps from "./hy-steps/hy-steps.vue";
51
- import HySubsection from "./hy-subsection/hy-subsection.vue";
52
- import HySwiper from "./hy-swiper/hy-swiper.vue";
53
- import HySwitch from "./hy-switch/hy-switch.vue";
54
- import HyTabs from "./hy-tabs/hy-tabs.vue";
55
- import HyTag from "./hy-tag/hy-tag.vue";
56
- import HyTextarea from "./hy-textarea/hy-textarea.vue";
57
- import HyTooltip from "./hy-tooltip/hy-tooltip.vue";
58
- import HyTransition from "./hy-transition/hy-transition.vue";
59
- import HyUpload from "./hy-upload/hy-upload.vue";
60
- import HyWarn from "./hy-warn/hy-warn.vue";
46
+ import HyScrollList from './hy-scroll-list/hy-scroll-list.vue'
47
+ import HySearch from './hy-search/hy-search.vue'
48
+ import HySlider from './hy-slider/hy-slider.vue'
49
+ import HyStatusBar from './hy-status-bar/hy-status-bar.vue'
50
+ import HySteps from './hy-steps/hy-steps.vue'
51
+ import HySubsection from './hy-subsection/hy-subsection.vue'
52
+ import HySwiper from './hy-swiper/hy-swiper.vue'
53
+ import HySwitch from './hy-switch/hy-switch.vue'
54
+ import HyTabs from './hy-tabs/hy-tabs.vue'
55
+ import HyTag from './hy-tag/hy-tag.vue'
56
+ import HyTextarea from './hy-textarea/hy-textarea.vue'
57
+ import HyTooltip from './hy-tooltip/hy-tooltip.vue'
58
+ import HyTransition from './hy-transition/hy-transition.vue'
59
+ import HyUpload from './hy-upload/hy-upload.vue'
60
+ import HyWarn from './hy-warn/hy-warn.vue'
61
61
 
62
62
  const install = (Vue: any) => {
63
- Vue.component("hy-tabBar", HyTabBr);
63
+ Vue.component('hy-tabbar', HyTabbar)
64
64
 
65
- Vue.component("HyAddressPicker", HyAddressPicker);
66
- Vue.component("HyAvatar", HyAvatar);
67
- Vue.component("HyBackTop", HyBackTop);
68
- Vue.component("HyBadge", HyBadge);
69
- Vue.component("HyButton", HyButton);
70
- Vue.component("HyCard", HyCard);
71
- Vue.component("HyCell", HyCell);
72
- Vue.component("HyCheckButton", HyCheckButton);
73
- Vue.component("HyCheckbox", HyCheckbox);
74
- Vue.component("HyCountDown", HyCountDown);
75
- Vue.component("HyCountTo", HyCountTo);
76
- Vue.component("HyDatetimePicker", HyDatetimePicker);
77
- Vue.component("HyDivider", HyDivider);
78
- Vue.component("HyDropdown", HyDropdown);
79
- Vue.component("HyDropdownItem", HyDropdownItem);
80
- Vue.component("YkEmpty", YkEmpty);
81
- Vue.component("YkFloatButton", YkFloatButton);
82
- Vue.component("HyFoldingPanel", HyFoldingPanel);
83
- Vue.component("HyForm", HyForm);
84
- Vue.component("HyFormSimple", HyFormSimple);
85
- Vue.component("HyFormItem", HyFormItem);
86
- Vue.component("HyGrid", HyGrid);
87
- Vue.component("HyIcon", HyIcon);
88
- Vue.component("HyImage", HyImage);
89
- Vue.component("HyInput", HyInput);
90
- Vue.component("HyLine", HyLine);
91
- Vue.component("HyLineProgress", HyLineProgress);
92
- Vue.component("HyList", HyList);
93
- Vue.component("HyLoading", HyLoading);
94
- // Vue.component("YkLogin", YkLogin);
95
- Vue.component("HyModal", HyModal);
96
- Vue.component("HyNavbar", HyNavbar);
97
- Vue.component("HyNoticeBar", HyNoticeBar);
98
- Vue.component("HyNumberStep", HyNumberStep);
99
- Vue.component("HyOverlay", HyOverlay);
100
- Vue.component("YkPrice", YkPrice);
101
- Vue.component("HyPicker", HyPicker);
102
- Vue.component("HyPopup", HyPopup);
103
- Vue.component("HyQrcode", HyQrcode);
104
- Vue.component("HyRadio", HyRadio);
105
- Vue.component("HyRate", HyRate);
106
- Vue.component("HyReadMore", HyReadMore);
107
- Vue.component("HyScrollList", HyScrollList);
108
- Vue.component("HySearch", HySearch);
109
- Vue.component("HySlider", HySlider);
110
- Vue.component("HyStatusBar", HyStatusBar);
111
- Vue.component("HySteps", HySteps);
112
- Vue.component("HySubsection", HySubsection);
113
- Vue.component("HySwiper", HySwiper);
114
- Vue.component("HySwitch", HySwitch);
115
- Vue.component("HyTabs", HyTabs);
116
- Vue.component("HyTag", HyTag);
117
- Vue.component("HyTextarea", HyTextarea);
118
- Vue.component("HyTooltip", HyTooltip);
119
- Vue.component("HyTransition", HyTransition);
120
- Vue.component("HyUpload", HyUpload);
121
- Vue.component("HyWarn", HyWarn);
122
- // Vue.config.globalProperties.$dialog = myDialog;
123
- };
65
+ Vue.component('HyAddressPicker', HyAddressPicker)
66
+ Vue.component('HyAvatar', HyAvatar)
67
+ Vue.component('HyBackTop', HyBackTop)
68
+ Vue.component('HyBadge', HyBadge)
69
+ Vue.component('HyButton', HyButton)
70
+ Vue.component('HyCard', HyCard)
71
+ Vue.component('HyCell', HyCell)
72
+ Vue.component('HyCheckButton', HyCheckButton)
73
+ Vue.component('HyCheckbox', HyCheckbox)
74
+ Vue.component('HyCountDown', HyCountDown)
75
+ Vue.component('HyCountTo', HyCountTo)
76
+ Vue.component('HyDatetimePicker', HyDatetimePicker)
77
+ Vue.component('HyDivider', HyDivider)
78
+ Vue.component('HyDropdown', HyDropdown)
79
+ Vue.component('HyDropdownItem', HyDropdownItem)
80
+ Vue.component('YkEmpty', YkEmpty)
81
+ Vue.component('YkFloatButton', YkFloatButton)
82
+ Vue.component('HyFoldingPanel', HyFoldingPanel)
83
+ Vue.component('HyForm', HyForm)
84
+ Vue.component('HyFormSimple', HyFormSimple)
85
+ Vue.component('HyFormItem', HyFormItem)
86
+ Vue.component('HyGrid', HyGrid)
87
+ Vue.component('HyIcon', HyIcon)
88
+ Vue.component('HyImage', HyImage)
89
+ Vue.component('HyInput', HyInput)
90
+ Vue.component('HyLine', HyLine)
91
+ Vue.component('HyLineProgress', HyLineProgress)
92
+ Vue.component('HyList', HyList)
93
+ Vue.component('HyLoading', HyLoading)
94
+ // Vue.component("YkLogin", YkLogin);
95
+ Vue.component('HyModal', HyModal)
96
+ Vue.component('HyNavbar', HyNavbar)
97
+ Vue.component('HyNoticeBar', HyNoticeBar)
98
+ Vue.component('HyNumberStep', HyNumberStep)
99
+ Vue.component('HyOverlay', HyOverlay)
100
+ Vue.component('YkPrice', YkPrice)
101
+ Vue.component('HyPicker', HyPicker)
102
+ Vue.component('HyPopup', HyPopup)
103
+ Vue.component('HyQrcode', HyQrcode)
104
+ Vue.component('HyRadio', HyRadio)
105
+ Vue.component('HyRate', HyRate)
106
+ Vue.component('HyReadMore', HyReadMore)
107
+ Vue.component('HyScrollList', HyScrollList)
108
+ Vue.component('HySearch', HySearch)
109
+ Vue.component('HySlider', HySlider)
110
+ Vue.component('HyStatusBar', HyStatusBar)
111
+ Vue.component('HySteps', HySteps)
112
+ Vue.component('HySubsection', HySubsection)
113
+ Vue.component('HySwiper', HySwiper)
114
+ Vue.component('HySwitch', HySwitch)
115
+ Vue.component('HyTabs', HyTabs)
116
+ Vue.component('HyTag', HyTag)
117
+ Vue.component('HyTextarea', HyTextarea)
118
+ Vue.component('HyTooltip', HyTooltip)
119
+ Vue.component('HyTransition', HyTransition)
120
+ Vue.component('HyUpload', HyUpload)
121
+ Vue.component('HyWarn', HyWarn)
122
+ // Vue.config.globalProperties.$dialog = myDialog;
123
+ }
124
124
  export {
125
- install,
126
- HyAddressPicker,
127
- HyAvatar,
128
- HyBackTop,
129
- HyBadge,
130
- HyButton,
131
- HyCard,
132
- HyCell,
133
- HyCheckButton,
134
- HyCheckbox,
135
- HyCountDown,
136
- HyCountTo,
137
- HyDatetimePicker,
138
- HyDivider,
139
- HyDropdown,
140
- HyDropdownItem,
141
- YkEmpty,
142
- YkFloatButton,
143
- HyFoldingPanel,
144
- HyForm,
145
- HyFormSimple,
146
- HyFormItem,
147
- HyGrid,
148
- HyIcon,
149
- HyImage,
150
- HyInput,
151
- HyLine,
152
- HyLineProgress,
153
- HyList,
154
- HyLoading,
155
- // YkLogin,
156
- HyModal,
157
- HyNavbar,
158
- HyNoticeBar,
159
- HyNumberStep,
160
- HyOverlay,
161
- YkPrice,
162
- HyPicker,
163
- HyPopup,
164
- HyQrcode,
165
- HyRadio,
166
- HyRate,
167
- HyReadMore,
168
- HyScrollList,
169
- HySearch,
170
- HySlider,
171
- HyStatusBar,
172
- HySteps,
173
- HySubsection,
174
- HySwiper,
175
- HySwitch,
176
- HyTabs,
177
- HyTag,
178
- HyTextarea,
179
- HyTooltip,
180
- HyTransition,
181
- HyUpload,
182
- HyWarn,
183
- };
125
+ install,
126
+ HyAddressPicker,
127
+ HyAvatar,
128
+ HyBackTop,
129
+ HyBadge,
130
+ HyButton,
131
+ HyCard,
132
+ HyCell,
133
+ HyCheckButton,
134
+ HyCheckbox,
135
+ HyCountDown,
136
+ HyCountTo,
137
+ HyDatetimePicker,
138
+ HyDivider,
139
+ HyDropdown,
140
+ HyDropdownItem,
141
+ YkEmpty,
142
+ YkFloatButton,
143
+ HyFoldingPanel,
144
+ HyForm,
145
+ HyFormSimple,
146
+ HyFormItem,
147
+ HyGrid,
148
+ HyIcon,
149
+ HyImage,
150
+ HyInput,
151
+ HyLine,
152
+ HyLineProgress,
153
+ HyList,
154
+ HyLoading,
155
+ // YkLogin,
156
+ HyModal,
157
+ HyNavbar,
158
+ HyNoticeBar,
159
+ HyNumberStep,
160
+ HyOverlay,
161
+ YkPrice,
162
+ HyPicker,
163
+ HyPopup,
164
+ HyQrcode,
165
+ HyRadio,
166
+ HyRate,
167
+ HyReadMore,
168
+ HyScrollList,
169
+ HySearch,
170
+ HySlider,
171
+ HyStatusBar,
172
+ HySteps,
173
+ HySubsection,
174
+ HySwiper,
175
+ HySwitch,
176
+ HyTabs,
177
+ HyTag,
178
+ HyTextarea,
179
+ HyTooltip,
180
+ HyTransition,
181
+ HyUpload,
182
+ HyWarn
183
+ }