@tplc/wot 0.0.1 → 0.1.0

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 (224) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/components/composables/useParent.ts +1 -1
  3. package/components/wd-table/types.ts +1 -1
  4. package/components/wd-table-col/wd-table-col.vue +1 -1
  5. package/global.d.ts +91 -102
  6. package/package.json +10 -1
  7. package/tsconfig.dts.json +9 -0
  8. package/types/components/common/AbortablePromise.d.ts +8 -0
  9. package/types/components/common/base64.d.ts +1 -0
  10. package/types/components/common/canvasHelper.d.ts +6 -0
  11. package/types/components/common/clickoutside.d.ts +4 -0
  12. package/types/components/common/dayjs.d.ts +26 -0
  13. package/types/components/common/props.d.ts +47 -0
  14. package/types/components/common/util.d.ts +263 -0
  15. package/types/components/composables/useCell.d.ts +3 -0
  16. package/types/components/composables/useChildren.d.ts +9 -0
  17. package/types/components/composables/useCountDown.d.ts +20 -0
  18. package/types/components/composables/useLockScroll.d.ts +5 -0
  19. package/types/components/composables/useParent.d.ts +15 -0
  20. package/types/components/composables/usePopover.d.ts +9 -0
  21. package/types/components/composables/useQueue.d.ts +13 -0
  22. package/types/components/composables/useRaf.d.ts +6 -0
  23. package/types/components/composables/useTouch.d.ts +11 -0
  24. package/types/components/composables/useTranslate.d.ts +3 -0
  25. package/types/components/wd-action-sheet/types.d.ts +145 -0
  26. package/types/components/wd-action-sheet/wd-action-sheet.vue.d.ts +145 -0
  27. package/types/components/wd-backtop/types.d.ts +66 -0
  28. package/types/components/wd-backtop/wd-backtop.vue.d.ts +101 -0
  29. package/types/components/wd-badge/types.d.ts +53 -0
  30. package/types/components/wd-badge/wd-badge.vue.d.ts +71 -0
  31. package/types/components/wd-button/types.d.ts +125 -0
  32. package/types/components/wd-button/wd-button.vue.d.ts +157 -0
  33. package/types/components/wd-calendar/types.d.ts +283 -0
  34. package/types/components/wd-calendar/wd-calendar.vue.d.ts +324 -0
  35. package/types/components/wd-calendar-view/month/month.vue.d.ts +79 -0
  36. package/types/components/wd-calendar-view/month/types.d.ts +38 -0
  37. package/types/components/wd-calendar-view/monthPanel/month-panel.vue.d.ts +113 -0
  38. package/types/components/wd-calendar-view/monthPanel/types.d.ts +70 -0
  39. package/types/components/wd-calendar-view/types.d.ts +131 -0
  40. package/types/components/wd-calendar-view/utils.d.ts +121 -0
  41. package/types/components/wd-calendar-view/wd-calendar-view.vue.d.ts +141 -0
  42. package/types/components/wd-calendar-view/year/types.d.ts +34 -0
  43. package/types/components/wd-calendar-view/year/year.vue.d.ts +71 -0
  44. package/types/components/wd-calendar-view/yearPanel/types.d.ts +53 -0
  45. package/types/components/wd-calendar-view/yearPanel/year-panel.vue.d.ts +81 -0
  46. package/types/components/wd-card/types.d.ts +42 -0
  47. package/types/components/wd-card/wd-card.vue.d.ts +63 -0
  48. package/types/components/wd-cell/types.d.ts +129 -0
  49. package/types/components/wd-cell/wd-cell.vue.d.ts +163 -0
  50. package/types/components/wd-cell-group/types.d.ts +40 -0
  51. package/types/components/wd-cell-group/wd-cell-group.vue.d.ts +54 -0
  52. package/types/components/wd-checkbox/types.d.ts +75 -0
  53. package/types/components/wd-checkbox/wd-checkbox.vue.d.ts +106 -0
  54. package/types/components/wd-checkbox-group/types.d.ts +78 -0
  55. package/types/components/wd-checkbox-group/wd-checkbox-group.vue.d.ts +103 -0
  56. package/types/components/wd-circle/types.d.ts +77 -0
  57. package/types/components/wd-circle/wd-circle.vue.d.ts +106 -0
  58. package/types/components/wd-col/types.d.ts +26 -0
  59. package/types/components/wd-col/wd-col.vue.d.ts +48 -0
  60. package/types/components/wd-col-picker/types.d.ts +226 -0
  61. package/types/components/wd-col-picker/wd-col-picker.vue.d.ts +269 -0
  62. package/types/components/wd-collapse/types.d.ts +70 -0
  63. package/types/components/wd-collapse/wd-collapse.vue.d.ts +92 -0
  64. package/types/components/wd-collapse-item/types.d.ts +46 -0
  65. package/types/components/wd-collapse-item/wd-collapse-item.vue.d.ts +65 -0
  66. package/types/components/wd-config-provider/types.d.ts +874 -0
  67. package/types/components/wd-config-provider/wd-config-provider.vue.d.ts +48 -0
  68. package/types/components/wd-count-down/types.d.ts +55 -0
  69. package/types/components/wd-count-down/utils.d.ts +8 -0
  70. package/types/components/wd-count-down/wd-count-down.vue.d.ts +77 -0
  71. package/types/components/wd-count-to/types.d.ts +125 -0
  72. package/types/components/wd-count-to/wd-count-to.vue.d.ts +154 -0
  73. package/types/components/wd-curtain/types.d.ts +53 -0
  74. package/types/components/wd-curtain/wd-curtain.vue.d.ts +91 -0
  75. package/types/components/wd-datetime-picker/types.d.ts +297 -0
  76. package/types/components/wd-datetime-picker/wd-datetime-picker.vue.d.ts +354 -0
  77. package/types/components/wd-datetime-picker-view/types.d.ts +148 -0
  78. package/types/components/wd-datetime-picker-view/wd-datetime-picker-view.vue.d.ts +184 -0
  79. package/types/components/wd-divider/types.d.ts +19 -0
  80. package/types/components/wd-divider/wd-divider.vue.d.ts +39 -0
  81. package/types/components/wd-drop-menu/types.d.ts +54 -0
  82. package/types/components/wd-drop-menu/wd-drop-menu.vue.d.ts +75 -0
  83. package/types/components/wd-drop-menu-item/types.d.ts +106 -0
  84. package/types/components/wd-drop-menu-item/wd-drop-menu-item.vue.d.ts +145 -0
  85. package/types/components/wd-fab/types.d.ts +88 -0
  86. package/types/components/wd-fab/wd-fab.vue.d.ts +127 -0
  87. package/types/components/wd-form/types.d.ts +79 -0
  88. package/types/components/wd-form/wd-form.vue.d.ts +72 -0
  89. package/types/components/wd-form-item/types.d.ts +32 -0
  90. package/types/components/wd-form-item/wd-form-item.vue.d.ts +73 -0
  91. package/types/components/wd-gap/types.d.ts +31 -0
  92. package/types/components/wd-gap/wd-gap.vue.d.ts +50 -0
  93. package/types/components/wd-grid/types.d.ts +59 -0
  94. package/types/components/wd-grid/wd-grid.vue.d.ts +70 -0
  95. package/types/components/wd-grid-item/types.d.ts +101 -0
  96. package/types/components/wd-grid-item/wd-grid-item.vue.d.ts +134 -0
  97. package/types/components/wd-icon/types.d.ts +32 -0
  98. package/types/components/wd-icon/wd-icon.vue.d.ts +50 -0
  99. package/types/components/wd-img/types.d.ts +59 -0
  100. package/types/components/wd-img/wd-img.vue.d.ts +92 -0
  101. package/types/components/wd-img-cropper/types.d.ts +101 -0
  102. package/types/components/wd-img-cropper/wd-img-cropper.vue.d.ts +124 -0
  103. package/types/components/wd-index-anchor/type.d.ts +16 -0
  104. package/types/components/wd-index-anchor/wd-index-anchor.vue.d.ts +40 -0
  105. package/types/components/wd-index-bar/type.d.ts +26 -0
  106. package/types/components/wd-index-bar/wd-index-bar.vue.d.ts +23 -0
  107. package/types/components/wd-input/types.d.ts +271 -0
  108. package/types/components/wd-input/wd-input.vue.d.ts +369 -0
  109. package/types/components/wd-input-number/types.d.ts +108 -0
  110. package/types/components/wd-input-number/wd-input-number.vue.d.ts +158 -0
  111. package/types/components/wd-loading/types.d.ts +34 -0
  112. package/types/components/wd-loading/wd-loading.vue.d.ts +50 -0
  113. package/types/components/wd-loadmore/types.d.ts +31 -0
  114. package/types/components/wd-loadmore/wd-loadmore.vue.d.ts +43 -0
  115. package/types/components/wd-message-box/index.d.ts +9 -0
  116. package/types/components/wd-message-box/types.d.ts +99 -0
  117. package/types/components/wd-message-box/wd-message-box.vue.d.ts +32 -0
  118. package/types/components/wd-navbar/types.d.ts +80 -0
  119. package/types/components/wd-navbar/wd-navbar.vue.d.ts +117 -0
  120. package/types/components/wd-navbar-capsule/wd-navbar-capsule.vue.d.ts +8 -0
  121. package/types/components/wd-notice-bar/types.d.ts +81 -0
  122. package/types/components/wd-notice-bar/wd-notice-bar.vue.d.ts +118 -0
  123. package/types/components/wd-notify/index.d.ts +8 -0
  124. package/types/components/wd-notify/types.d.ts +87 -0
  125. package/types/components/wd-notify/wd-notify.vue.d.ts +105 -0
  126. package/types/components/wd-number-keyboard/key/index.vue.d.ts +54 -0
  127. package/types/components/wd-number-keyboard/key/types.d.ts +23 -0
  128. package/types/components/wd-number-keyboard/types.d.ts +118 -0
  129. package/types/components/wd-number-keyboard/wd-number-keyboard.vue.d.ts +158 -0
  130. package/types/components/wd-overlay/types.d.ts +39 -0
  131. package/types/components/wd-overlay/wd-overlay.vue.d.ts +70 -0
  132. package/types/components/wd-pagination/types.d.ts +67 -0
  133. package/types/components/wd-pagination/wd-pagination.vue.d.ts +95 -0
  134. package/types/components/wd-password-input/types.d.ts +59 -0
  135. package/types/components/wd-password-input/wd-password-input.vue.d.ts +90 -0
  136. package/types/components/wd-picker/types.d.ts +234 -0
  137. package/types/components/wd-picker/wd-picker.vue.d.ts +276 -0
  138. package/types/components/wd-picker-view/types.d.ts +100 -0
  139. package/types/components/wd-picker-view/wd-picker-view.vue.d.ts +119 -0
  140. package/types/components/wd-popover/types.d.ts +86 -0
  141. package/types/components/wd-popover/wd-popover.vue.d.ts +138 -0
  142. package/types/components/wd-popup/types.d.ts +96 -0
  143. package/types/components/wd-popup/wd-popup.vue.d.ts +160 -0
  144. package/types/components/wd-progress/types.d.ts +44 -0
  145. package/types/components/wd-progress/wd-progress.vue.d.ts +61 -0
  146. package/types/components/wd-radio/types.d.ts +40 -0
  147. package/types/components/wd-radio/wd-radio.vue.d.ts +73 -0
  148. package/types/components/wd-radio-group/types.d.ts +54 -0
  149. package/types/components/wd-radio-group/wd-radio-group.vue.d.ts +85 -0
  150. package/types/components/wd-rate/types.d.ts +110 -0
  151. package/types/components/wd-rate/wd-rate.vue.d.ts +128 -0
  152. package/types/components/wd-resize/types.d.ts +14 -0
  153. package/types/components/wd-resize/wd-resize.vue.d.ts +43 -0
  154. package/types/components/wd-row/types.d.ts +24 -0
  155. package/types/components/wd-row/wd-row.vue.d.ts +39 -0
  156. package/types/components/wd-search/types.d.ts +104 -0
  157. package/types/components/wd-search/wd-search.vue.d.ts +132 -0
  158. package/types/components/wd-segmented/types.d.ts +69 -0
  159. package/types/components/wd-segmented/wd-segmented.vue.d.ts +87 -0
  160. package/types/components/wd-select-picker/types.d.ts +180 -0
  161. package/types/components/wd-select-picker/wd-select-picker.vue.d.ts +316 -0
  162. package/types/components/wd-sidebar/types.d.ts +24 -0
  163. package/types/components/wd-sidebar/wd-sidebar.vue.d.ts +45 -0
  164. package/types/components/wd-sidebar-item/types.d.ts +44 -0
  165. package/types/components/wd-sidebar-item/wd-sidebar-item.vue.d.ts +80 -0
  166. package/types/components/wd-skeleton/types.d.ts +72 -0
  167. package/types/components/wd-skeleton/wd-skeleton.vue.d.ts +68 -0
  168. package/types/components/wd-slider/types.d.ts +117 -0
  169. package/types/components/wd-slider/wd-slider.vue.d.ts +134 -0
  170. package/types/components/wd-sort-button/types.d.ts +58 -0
  171. package/types/components/wd-sort-button/wd-sort-button.vue.d.ts +74 -0
  172. package/types/components/wd-status-tip/types.d.ts +60 -0
  173. package/types/components/wd-status-tip/wd-status-tip.vue.d.ts +59 -0
  174. package/types/components/wd-step/types.d.ts +33 -0
  175. package/types/components/wd-step/wd-step.vue.d.ts +40 -0
  176. package/types/components/wd-steps/types.d.ts +59 -0
  177. package/types/components/wd-steps/wd-steps.vue.d.ts +68 -0
  178. package/types/components/wd-sticky/types.d.ts +24 -0
  179. package/types/components/wd-sticky/wd-sticky.vue.d.ts +59 -0
  180. package/types/components/wd-sticky-box/types.d.ts +9 -0
  181. package/types/components/wd-sticky-box/wd-sticky-box.vue.d.ts +30 -0
  182. package/types/components/wd-swipe-action/types.d.ts +42 -0
  183. package/types/components/wd-swipe-action/wd-swipe-action.vue.d.ts +61 -0
  184. package/types/components/wd-swiper/types.d.ts +213 -0
  185. package/types/components/wd-swiper/wd-swiper.vue.d.ts +236 -0
  186. package/types/components/wd-swiper-nav/types.d.ts +66 -0
  187. package/types/components/wd-swiper-nav/wd-swiper-nav.vue.d.ts +90 -0
  188. package/types/components/wd-switch/types.d.ts +65 -0
  189. package/types/components/wd-switch/wd-switch.vue.d.ts +82 -0
  190. package/types/components/wd-tab/types.d.ts +27 -0
  191. package/types/components/wd-tab/wd-tab.vue.d.ts +46 -0
  192. package/types/components/wd-tabbar/types.d.ts +87 -0
  193. package/types/components/wd-tabbar/wd-tabbar.vue.d.ts +103 -0
  194. package/types/components/wd-tabbar-item/types.d.ts +53 -0
  195. package/types/components/wd-tabbar-item/wd-tabbar-item.vue.d.ts +61 -0
  196. package/types/components/wd-table/types.d.ts +95 -0
  197. package/types/components/wd-table/wd-table.vue.d.ts +138 -0
  198. package/types/components/wd-table-col/types.d.ts +58 -0
  199. package/types/components/wd-table-col/wd-table-col.vue.d.ts +70 -0
  200. package/types/components/wd-tabs/types.d.ts +96 -0
  201. package/types/components/wd-tabs/wd-tabs.vue.d.ts +139 -0
  202. package/types/components/wd-tag/types.d.ts +104 -0
  203. package/types/components/wd-tag/wd-tag.vue.d.ts +130 -0
  204. package/types/components/wd-text/types.d.ts +128 -0
  205. package/types/components/wd-text/wd-text.vue.d.ts +131 -0
  206. package/types/components/wd-textarea/types.d.ts +363 -0
  207. package/types/components/wd-textarea/wd-textarea.vue.d.ts +390 -0
  208. package/types/components/wd-toast/index.d.ts +15 -0
  209. package/types/components/wd-toast/types.d.ts +62 -0
  210. package/types/components/wd-toast/wd-toast.vue.d.ts +32 -0
  211. package/types/components/wd-tooltip/types.d.ts +106 -0
  212. package/types/components/wd-tooltip/wd-tooltip.vue.d.ts +133 -0
  213. package/types/components/wd-transition/types.d.ts +98 -0
  214. package/types/components/wd-transition/wd-transition.vue.d.ts +136 -0
  215. package/types/components/wd-upload/types.d.ts +396 -0
  216. package/types/components/wd-upload/utils.d.ts +2 -0
  217. package/types/components/wd-upload/wd-upload.vue.d.ts +283 -0
  218. package/types/components/wd-video-preview/types.d.ts +22 -0
  219. package/types/components/wd-video-preview/wd-video-preview.vue.d.ts +27 -0
  220. package/types/components/wd-watermark/types.d.ts +131 -0
  221. package/types/components/wd-watermark/wd-watermark.vue.d.ts +176 -0
  222. package/types/locale/index.d.ts +9 -0
  223. package/types/locale/lang/zh-CN.d.ts +128 -0
  224. package/components/wot-design-uni/wot-design-uni.vue +0 -14
@@ -0,0 +1,145 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ customTitle: {
3
+ type: import("vue").PropType<string>;
4
+ default: string;
5
+ };
6
+ customIcon: {
7
+ type: import("vue").PropType<string>;
8
+ default: string;
9
+ };
10
+ modelValue: (NumberConstructor | StringConstructor)[];
11
+ options: {
12
+ type: import("vue").PropType<Record<string, any>[]>;
13
+ default: () => never[];
14
+ };
15
+ disabled: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ iconName: {
20
+ type: import("vue").PropType<string>;
21
+ default: string;
22
+ };
23
+ title: StringConstructor;
24
+ icon: {
25
+ type: import("vue").PropType<string>;
26
+ default: string;
27
+ };
28
+ iconSize: {
29
+ type: import("vue").PropType<string>;
30
+ default: string;
31
+ };
32
+ beforeToggle: import("vue").PropType<import("./types").DropMenuItemBeforeToggle>;
33
+ valueKey: {
34
+ type: import("vue").PropType<string>;
35
+ default: string;
36
+ };
37
+ labelKey: {
38
+ type: import("vue").PropType<string>;
39
+ default: string;
40
+ };
41
+ tipKey: {
42
+ type: import("vue").PropType<string>;
43
+ default: string;
44
+ };
45
+ customStyle: {
46
+ type: import("vue").PropType<string>;
47
+ default: string;
48
+ };
49
+ customClass: {
50
+ type: import("vue").PropType<string>;
51
+ default: string;
52
+ };
53
+ }, {
54
+ getShowPop: () => boolean;
55
+ open: () => void;
56
+ close: () => void;
57
+ toggle: () => void;
58
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
59
+ closed: (...args: any[]) => void;
60
+ close: (...args: any[]) => void;
61
+ open: (...args: any[]) => void;
62
+ opened: (...args: any[]) => void;
63
+ "update:modelValue": (...args: any[]) => void;
64
+ change: (...args: any[]) => void;
65
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
66
+ customTitle: {
67
+ type: import("vue").PropType<string>;
68
+ default: string;
69
+ };
70
+ customIcon: {
71
+ type: import("vue").PropType<string>;
72
+ default: string;
73
+ };
74
+ modelValue: (NumberConstructor | StringConstructor)[];
75
+ options: {
76
+ type: import("vue").PropType<Record<string, any>[]>;
77
+ default: () => never[];
78
+ };
79
+ disabled: {
80
+ type: BooleanConstructor;
81
+ default: boolean;
82
+ };
83
+ iconName: {
84
+ type: import("vue").PropType<string>;
85
+ default: string;
86
+ };
87
+ title: StringConstructor;
88
+ icon: {
89
+ type: import("vue").PropType<string>;
90
+ default: string;
91
+ };
92
+ iconSize: {
93
+ type: import("vue").PropType<string>;
94
+ default: string;
95
+ };
96
+ beforeToggle: import("vue").PropType<import("./types").DropMenuItemBeforeToggle>;
97
+ valueKey: {
98
+ type: import("vue").PropType<string>;
99
+ default: string;
100
+ };
101
+ labelKey: {
102
+ type: import("vue").PropType<string>;
103
+ default: string;
104
+ };
105
+ tipKey: {
106
+ type: import("vue").PropType<string>;
107
+ default: string;
108
+ };
109
+ customStyle: {
110
+ type: import("vue").PropType<string>;
111
+ default: string;
112
+ };
113
+ customClass: {
114
+ type: import("vue").PropType<string>;
115
+ default: string;
116
+ };
117
+ }>> & {
118
+ onClosed?: ((...args: any[]) => any) | undefined;
119
+ onClose?: ((...args: any[]) => any) | undefined;
120
+ onOpen?: ((...args: any[]) => any) | undefined;
121
+ onOpened?: ((...args: any[]) => any) | undefined;
122
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
123
+ onChange?: ((...args: any[]) => any) | undefined;
124
+ }, {
125
+ customStyle: string;
126
+ customClass: string;
127
+ options: Record<string, any>[];
128
+ icon: string;
129
+ disabled: boolean;
130
+ iconName: string;
131
+ iconSize: string;
132
+ valueKey: string;
133
+ labelKey: string;
134
+ tipKey: string;
135
+ customTitle: string;
136
+ customIcon: string;
137
+ }, {}>, {
138
+ default?(_: {}): any;
139
+ }>;
140
+ export default _default;
141
+ type __VLS_WithTemplateSlots<T, S> = T & {
142
+ new (): {
143
+ $slots: S;
144
+ };
145
+ };
@@ -0,0 +1,88 @@
1
+ import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue';
2
+ export type FabType = 'primary' | 'success' | 'info' | 'warning' | 'error' | 'default';
3
+ export type FabPosition = 'left-top' | 'right-top' | 'left-bottom' | 'right-bottom';
4
+ export type FabDirection = 'top' | 'right' | 'bottom' | 'left';
5
+ export type FabGap = Partial<Record<FabDirection, number>>;
6
+ export declare const fabProps: {
7
+ /**
8
+ * 是否激活
9
+ */
10
+ active: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ /**
15
+ * 类型,可选值为 default primary info success warning error
16
+ */
17
+ type: {
18
+ type: PropType<FabType>;
19
+ default: FabType;
20
+ };
21
+ /**
22
+ * 悬浮按钮位置,可选值为 left-top right-top left-bottom right-bottom
23
+ */
24
+ position: {
25
+ type: PropType<FabPosition>;
26
+ default: FabPosition;
27
+ };
28
+ /**
29
+ * 悬浮按钮菜单弹出方向,可选值为 top bottom left right
30
+ */
31
+ direction: {
32
+ type: PropType<FabDirection>;
33
+ default: FabDirection;
34
+ };
35
+ /**
36
+ * 是否禁用
37
+ */
38
+ disabled: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ /**
43
+ * 悬浮按钮未展开时的图标
44
+ */
45
+ inactiveIcon: {
46
+ type: PropType<string>;
47
+ default: string;
48
+ };
49
+ /**
50
+ * 悬浮按钮展开时的图标
51
+ */
52
+ activeIcon: {
53
+ type: PropType<string>;
54
+ default: string;
55
+ };
56
+ /**
57
+ * 自定义悬浮按钮层级
58
+ */
59
+ zIndex: {
60
+ type: NumberConstructor;
61
+ default: number;
62
+ };
63
+ /**
64
+ * 是否可拖动
65
+ */
66
+ draggable: {
67
+ type: BooleanConstructor;
68
+ default: boolean;
69
+ };
70
+ gap: {
71
+ type: PropType<FabGap>;
72
+ default: () => {};
73
+ };
74
+ customStyle: {
75
+ type: PropType<string>;
76
+ default: string;
77
+ };
78
+ customClass: {
79
+ type: PropType<string>;
80
+ default: string;
81
+ };
82
+ };
83
+ export type FabProps = ExtractPropTypes<typeof fabProps>;
84
+ export type FabExpose = {
85
+ open: () => void;
86
+ close: () => void;
87
+ };
88
+ export type FabInstance = ComponentPublicInstance<FabProps, FabExpose>;
@@ -0,0 +1,127 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ active: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ type: {
7
+ type: import("vue").PropType<import("./types").FabType>;
8
+ default: import("./types").FabType;
9
+ };
10
+ position: {
11
+ type: import("vue").PropType<import("./types").FabPosition>;
12
+ default: import("./types").FabPosition;
13
+ };
14
+ direction: {
15
+ type: import("vue").PropType<import("./types").FabDirection>;
16
+ default: import("./types").FabDirection;
17
+ };
18
+ disabled: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ inactiveIcon: {
23
+ type: import("vue").PropType<string>;
24
+ default: string;
25
+ };
26
+ activeIcon: {
27
+ type: import("vue").PropType<string>;
28
+ default: string;
29
+ };
30
+ zIndex: {
31
+ type: NumberConstructor;
32
+ default: number;
33
+ };
34
+ draggable: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ gap: {
39
+ type: import("vue").PropType<import("./types").FabGap>;
40
+ default: () => {};
41
+ };
42
+ customStyle: {
43
+ type: import("vue").PropType<string>;
44
+ default: string;
45
+ };
46
+ customClass: {
47
+ type: import("vue").PropType<string>;
48
+ default: string;
49
+ };
50
+ }, {
51
+ open: () => void;
52
+ close: () => void;
53
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
54
+ "update:active": (...args: any[]) => void;
55
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
56
+ active: {
57
+ type: BooleanConstructor;
58
+ default: boolean;
59
+ };
60
+ type: {
61
+ type: import("vue").PropType<import("./types").FabType>;
62
+ default: import("./types").FabType;
63
+ };
64
+ position: {
65
+ type: import("vue").PropType<import("./types").FabPosition>;
66
+ default: import("./types").FabPosition;
67
+ };
68
+ direction: {
69
+ type: import("vue").PropType<import("./types").FabDirection>;
70
+ default: import("./types").FabDirection;
71
+ };
72
+ disabled: {
73
+ type: BooleanConstructor;
74
+ default: boolean;
75
+ };
76
+ inactiveIcon: {
77
+ type: import("vue").PropType<string>;
78
+ default: string;
79
+ };
80
+ activeIcon: {
81
+ type: import("vue").PropType<string>;
82
+ default: string;
83
+ };
84
+ zIndex: {
85
+ type: NumberConstructor;
86
+ default: number;
87
+ };
88
+ draggable: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
92
+ gap: {
93
+ type: import("vue").PropType<import("./types").FabGap>;
94
+ default: () => {};
95
+ };
96
+ customStyle: {
97
+ type: import("vue").PropType<string>;
98
+ default: string;
99
+ };
100
+ customClass: {
101
+ type: import("vue").PropType<string>;
102
+ default: string;
103
+ };
104
+ }>> & {
105
+ "onUpdate:active"?: ((...args: any[]) => any) | undefined;
106
+ }, {
107
+ zIndex: number;
108
+ customStyle: string;
109
+ customClass: string;
110
+ type: import("./types").FabType;
111
+ position: import("./types").FabPosition;
112
+ disabled: boolean;
113
+ direction: import("./types").FabDirection;
114
+ active: boolean;
115
+ inactiveIcon: string;
116
+ activeIcon: string;
117
+ draggable: boolean;
118
+ gap: Partial<Record<import("./types").FabDirection, number>>;
119
+ }, {}>, {
120
+ default?(_: {}): any;
121
+ }>;
122
+ export default _default;
123
+ type __VLS_WithTemplateSlots<T, S> = T & {
124
+ new (): {
125
+ $slots: S;
126
+ };
127
+ };
@@ -0,0 +1,79 @@
1
+ import { type ComponentPublicInstance, type ExtractPropTypes, type InjectionKey, type PropType } from 'vue';
2
+ export type FormProvide = {
3
+ props: {
4
+ model: Record<string, any>;
5
+ rules?: FormRules;
6
+ border?: boolean;
7
+ };
8
+ errorMessages?: Record<string, string>;
9
+ };
10
+ export declare const FORM_KEY: InjectionKey<FormProvide>;
11
+ export type FormRules = {
12
+ [key: string]: FormItemRule[];
13
+ };
14
+ export type ErrorMessage = {
15
+ prop: string;
16
+ message: string;
17
+ };
18
+ export interface FormItemRule {
19
+ [key: string]: any;
20
+ required: boolean;
21
+ message: string;
22
+ pattern?: RegExp;
23
+ validator?: (value: any, rule: FormItemRuleWithoutValidator) => boolean | Promise<string> | Promise<boolean> | Promise<void> | Promise<unknown>;
24
+ }
25
+ export type FormItemRuleWithoutValidator = Omit<FormItemRule, 'validator'>;
26
+ export declare const formProps: {
27
+ /**
28
+ * 表单数据对象
29
+ */
30
+ model: {
31
+ type: PropType<Record<string, any>>;
32
+ required: true;
33
+ };
34
+ /**
35
+ * 表单验证规则
36
+ */
37
+ rules: {
38
+ type: PropType<FormRules>;
39
+ default: () => {};
40
+ };
41
+ /**
42
+ * 是否在输入时重置表单校验信息
43
+ */
44
+ resetOnChange: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ /**
49
+ * 错误提示类型
50
+ */
51
+ errorType: {
52
+ type: PropType<"toast" | "message" | "none">;
53
+ default: string;
54
+ };
55
+ customStyle: {
56
+ type: PropType<string>;
57
+ default: string;
58
+ };
59
+ customClass: {
60
+ type: PropType<string>;
61
+ default: string;
62
+ };
63
+ };
64
+ export type FormProps = ExtractPropTypes<typeof formProps>;
65
+ export type FormExpose = {
66
+ /**
67
+ * 表单校验
68
+ * @param prop 指定校验字段
69
+ */
70
+ validate: (prop?: string) => Promise<{
71
+ valid: boolean;
72
+ errors: ErrorMessage[];
73
+ }>;
74
+ /**
75
+ * 重置表单项的验证提示
76
+ */
77
+ reset: () => void;
78
+ };
79
+ export type FormInstance = ComponentPublicInstance<FormProps, FormExpose>;
@@ -0,0 +1,72 @@
1
+ import { type FormRules, type ErrorMessage } from './types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
+ model: {
4
+ type: import("vue").PropType<Record<string, any>>;
5
+ required: true;
6
+ };
7
+ rules: {
8
+ type: import("vue").PropType<FormRules>;
9
+ default: () => {};
10
+ };
11
+ resetOnChange: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ errorType: {
16
+ type: import("vue").PropType<"toast" | "message" | "none">;
17
+ default: string;
18
+ };
19
+ customStyle: {
20
+ type: import("vue").PropType<string>;
21
+ default: string;
22
+ };
23
+ customClass: {
24
+ type: import("vue").PropType<string>;
25
+ default: string;
26
+ };
27
+ }, {
28
+ validate: (prop?: string) => Promise<{
29
+ valid: boolean;
30
+ errors: ErrorMessage[];
31
+ }>;
32
+ reset: () => void;
33
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
34
+ model: {
35
+ type: import("vue").PropType<Record<string, any>>;
36
+ required: true;
37
+ };
38
+ rules: {
39
+ type: import("vue").PropType<FormRules>;
40
+ default: () => {};
41
+ };
42
+ resetOnChange: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ errorType: {
47
+ type: import("vue").PropType<"toast" | "message" | "none">;
48
+ default: string;
49
+ };
50
+ customStyle: {
51
+ type: import("vue").PropType<string>;
52
+ default: string;
53
+ };
54
+ customClass: {
55
+ type: import("vue").PropType<string>;
56
+ default: string;
57
+ };
58
+ }>>, {
59
+ customStyle: string;
60
+ customClass: string;
61
+ rules: FormRules;
62
+ resetOnChange: boolean;
63
+ errorType: "message" | "toast" | "none";
64
+ }, {}>, {
65
+ default?(_: {}): any;
66
+ }>;
67
+ export default _default;
68
+ type __VLS_WithTemplateSlots<T, S> = T & {
69
+ new (): {
70
+ $slots: S;
71
+ };
72
+ };
@@ -0,0 +1,32 @@
1
+ import type { ExtractPropTypes } from 'vue';
2
+ import type { FormItemRule } from '../wd-form/types';
3
+ export declare const formItemProps: {
4
+ prop: {
5
+ type: StringConstructor;
6
+ required: true;
7
+ };
8
+ rules: {
9
+ type: import("vue").PropType<FormItemRule[]>;
10
+ default: () => never[];
11
+ };
12
+ required: BooleanConstructor;
13
+ center: {
14
+ type: BooleanConstructor;
15
+ default: boolean;
16
+ };
17
+ label: StringConstructor;
18
+ labelWidth: {
19
+ type: import("vue").PropType<string>;
20
+ default: string;
21
+ };
22
+ isLink: BooleanConstructor;
23
+ customStyle: {
24
+ type: import("vue").PropType<string>;
25
+ default: string;
26
+ };
27
+ customClass: {
28
+ type: import("vue").PropType<string>;
29
+ default: string;
30
+ };
31
+ };
32
+ export type FormItemProps = ExtractPropTypes<typeof formItemProps>;
@@ -0,0 +1,73 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ prop: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ rules: {
7
+ type: import("vue").PropType<import("../wd-form/types").FormItemRule[]>;
8
+ default: () => never[];
9
+ };
10
+ required: BooleanConstructor;
11
+ center: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ label: StringConstructor;
16
+ labelWidth: {
17
+ type: import("vue").PropType<string>;
18
+ default: string;
19
+ };
20
+ isLink: BooleanConstructor;
21
+ customStyle: {
22
+ type: import("vue").PropType<string>;
23
+ default: string;
24
+ };
25
+ customClass: {
26
+ type: import("vue").PropType<string>;
27
+ default: string;
28
+ };
29
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
30
+ prop: {
31
+ type: StringConstructor;
32
+ required: true;
33
+ };
34
+ rules: {
35
+ type: import("vue").PropType<import("../wd-form/types").FormItemRule[]>;
36
+ default: () => never[];
37
+ };
38
+ required: BooleanConstructor;
39
+ center: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
43
+ label: StringConstructor;
44
+ labelWidth: {
45
+ type: import("vue").PropType<string>;
46
+ default: string;
47
+ };
48
+ isLink: BooleanConstructor;
49
+ customStyle: {
50
+ type: import("vue").PropType<string>;
51
+ default: string;
52
+ };
53
+ customClass: {
54
+ type: import("vue").PropType<string>;
55
+ default: string;
56
+ };
57
+ }>>, {
58
+ customStyle: string;
59
+ customClass: string;
60
+ required: boolean;
61
+ rules: import("../wd-form/types").FormItemRule[];
62
+ labelWidth: string;
63
+ center: boolean;
64
+ isLink: boolean;
65
+ }, {}>, {
66
+ default?(_: {}): any;
67
+ }>;
68
+ export default _default;
69
+ type __VLS_WithTemplateSlots<T, S> = T & {
70
+ new (): {
71
+ $slots: S;
72
+ };
73
+ };
@@ -0,0 +1,31 @@
1
+ export declare const gapProps: {
2
+ /**
3
+ * 背景颜色
4
+ */
5
+ bgColor: {
6
+ type: import("vue").PropType<string>;
7
+ default: string;
8
+ };
9
+ /**
10
+ * 是否开启底部安全区
11
+ */
12
+ safeAreaBottom: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ /**
17
+ * 高度
18
+ */
19
+ height: {
20
+ type: (NumberConstructor | StringConstructor)[];
21
+ default: number;
22
+ };
23
+ customStyle: {
24
+ type: import("vue").PropType<string>;
25
+ default: string;
26
+ };
27
+ customClass: {
28
+ type: import("vue").PropType<string>;
29
+ default: string;
30
+ };
31
+ };
@@ -0,0 +1,50 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ bgColor: {
3
+ type: import("vue").PropType<string>;
4
+ default: string;
5
+ };
6
+ safeAreaBottom: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ height: {
11
+ type: (NumberConstructor | StringConstructor)[];
12
+ default: number;
13
+ };
14
+ customStyle: {
15
+ type: import("vue").PropType<string>;
16
+ default: string;
17
+ };
18
+ customClass: {
19
+ type: import("vue").PropType<string>;
20
+ default: string;
21
+ };
22
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
+ bgColor: {
24
+ type: import("vue").PropType<string>;
25
+ default: string;
26
+ };
27
+ safeAreaBottom: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ height: {
32
+ type: (NumberConstructor | StringConstructor)[];
33
+ default: number;
34
+ };
35
+ customStyle: {
36
+ type: import("vue").PropType<string>;
37
+ default: string;
38
+ };
39
+ customClass: {
40
+ type: import("vue").PropType<string>;
41
+ default: string;
42
+ };
43
+ }>>, {
44
+ customStyle: string;
45
+ customClass: string;
46
+ bgColor: string;
47
+ height: string | number;
48
+ safeAreaBottom: boolean;
49
+ }, {}>;
50
+ export default _default;