@polyv/vue-components 1.7.0 → 1.8.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 (252) hide show
  1. package/package.json +1 -1
  2. package/styles/function.scss +4 -1
  3. package/vue2/index.es.js +9341 -8532
  4. package/vue2/src/components/business/external-links/use-external-links.d.ts +21 -16
  5. package/vue2/src/components/business/live-status-tag/index.d.ts +14 -14
  6. package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  7. package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  8. package/vue2/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  9. package/vue2/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  10. package/vue2/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  11. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +9 -0
  12. package/vue2/src/components/button/index.d.ts +26 -0
  13. package/vue2/src/components/button/src/button.vue.d.ts +9 -0
  14. package/vue2/src/components/button/src/use-button.d.ts +13 -0
  15. package/vue2/src/components/condition-filter/index.d.ts +122 -0
  16. package/vue2/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  17. package/vue2/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  18. package/vue2/src/components/condition-filter/src/hooks.d.ts +5 -0
  19. package/vue2/src/components/condition-filter/src/props-define.d.ts +43 -0
  20. package/vue2/src/components/dropdown/index.d.ts +6 -0
  21. package/vue2/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  22. package/vue2/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  23. package/vue2/src/components/exports.d.ts +4 -0
  24. package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -0
  25. package/vue2/src/components/form/checkbox/src/props-define.d.ts +0 -5
  26. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  27. package/vue2/src/components/form/file-upload/index.d.ts +2 -0
  28. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +1 -0
  29. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -5
  30. package/vue2/src/components/form/form-group/index.d.ts +20 -2
  31. package/vue2/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  32. package/vue2/src/components/form/form-group/src/props-define.d.ts +12 -0
  33. package/vue2/src/components/form/form-item/index.d.ts +35 -30
  34. package/vue2/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  35. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +16 -15
  36. package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  37. package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  38. package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  39. package/vue2/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  40. package/vue2/src/components/form/form-submit-button/index.d.ts +9 -0
  41. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +9 -0
  42. package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  43. package/vue2/src/components/form/form-wrap/index.d.ts +24 -24
  44. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +8 -8
  45. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -4
  46. package/vue2/src/components/form/hooks/use-form-change.d.ts +20 -0
  47. package/vue2/src/components/form/hooks/use-form-extra.d.ts +21 -0
  48. package/vue2/src/components/form/input/index.d.ts +7 -0
  49. package/vue2/src/components/form/input/src/input.vue.d.ts +7 -0
  50. package/vue2/src/components/form/input/src/props-define.d.ts +8 -6
  51. package/vue2/src/components/form/input-number/src/props-define.d.ts +1 -6
  52. package/vue2/src/components/form/input-url/index.d.ts +21 -0
  53. package/vue2/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  54. package/vue2/src/components/form/input-url/src/props-define.d.ts +13 -0
  55. package/vue2/src/components/form/radio/src/props-define.d.ts +0 -5
  56. package/vue2/src/components/form/select/index.d.ts +60 -0
  57. package/vue2/src/components/form/select/src/props-define.d.ts +10 -6
  58. package/vue2/src/components/form/select/src/select.vue.d.ts +21 -0
  59. package/vue2/src/components/form/switch/src/props-define.d.ts +0 -5
  60. package/vue2/src/components/form/timezone-picker/index.d.ts +63 -0
  61. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +27 -0
  62. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +63 -0
  63. package/vue2/src/components/form/types/index.d.ts +1 -1
  64. package/vue2/src/components/icons/icons/application/index.d.ts +6 -0
  65. package/vue2/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  66. package/vue2/src/components/icons/icons/computer/index.d.ts +6 -0
  67. package/vue2/src/components/icons/icons/computer-data/index.d.ts +6 -0
  68. package/vue2/src/components/icons/icons/computer-down/index.d.ts +6 -0
  69. package/vue2/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  70. package/vue2/src/components/icons/icons/computer-play/index.d.ts +6 -0
  71. package/vue2/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  72. package/vue2/src/components/icons/icons/edit-two/index.d.ts +6 -0
  73. package/vue2/src/components/icons/icons/feedback/index.d.ts +6 -0
  74. package/vue2/src/components/icons/icons/home/index.d.ts +6 -0
  75. package/vue2/src/components/icons/icons/instruction/index.d.ts +6 -0
  76. package/vue2/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  77. package/vue2/src/components/icons/icons/money/index.d.ts +6 -0
  78. package/vue2/src/components/icons/icons/move-down/index.d.ts +6 -0
  79. package/vue2/src/components/icons/icons/move-up/index.d.ts +6 -0
  80. package/vue2/src/components/icons/icons/play-fast/index.d.ts +6 -0
  81. package/vue2/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  82. package/vue2/src/components/icons/icons/preview-close/index.d.ts +6 -0
  83. package/vue2/src/components/icons/icons/preview-open/index.d.ts +6 -0
  84. package/vue2/src/components/icons/icons/protect/index.d.ts +6 -0
  85. package/vue2/src/components/icons/icons/remind-off/index.d.ts +6 -0
  86. package/vue2/src/components/icons/icons/remind-on/index.d.ts +6 -0
  87. package/vue2/src/components/icons/icons/setting-two/index.d.ts +6 -0
  88. package/vue2/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  89. package/vue2/src/components/icons/icons/share/index.d.ts +6 -0
  90. package/vue2/src/components/icons/map.d.ts +25 -0
  91. package/vue2/src/components/image/index.d.ts +150 -0
  92. package/vue2/src/components/image/src/events.d.ts +6 -0
  93. package/vue2/src/components/image/src/image.vue.d.ts +69 -0
  94. package/vue2/src/components/image/src/props-define.d.ts +57 -0
  95. package/vue2/src/components/image/src/use-image.d.ts +16 -0
  96. package/vue2/src/components/menu/index.d.ts +56 -17
  97. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +3 -0
  98. package/vue2/src/components/menu/src/menu-item.vue.d.ts +11 -1
  99. package/vue2/src/components/menu/src/menu.vue.d.ts +8 -5
  100. package/vue2/src/components/menu/src/props-define.d.ts +29 -3
  101. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +9 -1
  102. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +12 -0
  103. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +22 -16
  104. package/vue2/src/components/section/index.d.ts +27 -0
  105. package/vue2/src/components/section/src/props-define.d.ts +24 -0
  106. package/vue2/src/components/section/src/section.vue.d.ts +24 -0
  107. package/vue2/src/components/table/index.d.ts +6 -6
  108. package/vue2/src/components/table/src/hooks/props-define.d.ts +1 -1
  109. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  110. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +4 -4
  111. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +6 -6
  112. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  113. package/vue2/src/components/table/src/table-column.vue.d.ts +2 -2
  114. package/vue2/src/components/tag/index.d.ts +14 -14
  115. package/vue2/src/components/tag/src/props-define.d.ts +2 -2
  116. package/vue2/src/components/tag/src/tag.vue.d.ts +5 -5
  117. package/vue2/src/components/tooltip/src/props-define.d.ts +6 -0
  118. package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  119. package/vue2/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  120. package/vue2/src/lang/hook.d.ts +4 -0
  121. package/vue2/src/lang/internal/en.json.d.ts +5 -0
  122. package/vue2/src/lang/internal/index.d.ts +5 -0
  123. package/vue2/src/lang/internal/ja.json.d.ts +5 -0
  124. package/vue2/src/lang/internal/ko.json.d.ts +5 -0
  125. package/vue2/src/lang/internal/ru.json.d.ts +5 -0
  126. package/vue2/src/lang/internal/zh-CN.json.d.ts +5 -0
  127. package/vue2/src/lang/internal/zh-TW.json.d.ts +5 -0
  128. package/vue3/index.es.js +9356 -8547
  129. package/vue3/src/components/business/external-links/use-external-links.d.ts +21 -16
  130. package/vue3/src/components/business/live-status-tag/index.d.ts +14 -14
  131. package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  132. package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  133. package/vue3/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  134. package/vue3/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  135. package/vue3/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  136. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +9 -0
  137. package/vue3/src/components/button/index.d.ts +26 -0
  138. package/vue3/src/components/button/src/button.vue.d.ts +9 -0
  139. package/vue3/src/components/button/src/use-button.d.ts +13 -0
  140. package/vue3/src/components/condition-filter/index.d.ts +122 -0
  141. package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  142. package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  143. package/vue3/src/components/condition-filter/src/hooks.d.ts +5 -0
  144. package/vue3/src/components/condition-filter/src/props-define.d.ts +43 -0
  145. package/vue3/src/components/dropdown/index.d.ts +6 -0
  146. package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  147. package/vue3/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  148. package/vue3/src/components/exports.d.ts +4 -0
  149. package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -0
  150. package/vue3/src/components/form/checkbox/src/props-define.d.ts +0 -5
  151. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  152. package/vue3/src/components/form/file-upload/index.d.ts +2 -0
  153. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +1 -0
  154. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -5
  155. package/vue3/src/components/form/form-group/index.d.ts +20 -2
  156. package/vue3/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  157. package/vue3/src/components/form/form-group/src/props-define.d.ts +12 -0
  158. package/vue3/src/components/form/form-item/index.d.ts +35 -30
  159. package/vue3/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  160. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +16 -15
  161. package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  162. package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  163. package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  164. package/vue3/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  165. package/vue3/src/components/form/form-submit-button/index.d.ts +9 -0
  166. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +9 -0
  167. package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  168. package/vue3/src/components/form/form-wrap/index.d.ts +24 -24
  169. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +8 -8
  170. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -4
  171. package/vue3/src/components/form/hooks/use-form-change.d.ts +20 -0
  172. package/vue3/src/components/form/hooks/use-form-extra.d.ts +21 -0
  173. package/vue3/src/components/form/input/index.d.ts +7 -0
  174. package/vue3/src/components/form/input/src/input.vue.d.ts +7 -0
  175. package/vue3/src/components/form/input/src/props-define.d.ts +8 -6
  176. package/vue3/src/components/form/input-number/src/props-define.d.ts +1 -6
  177. package/vue3/src/components/form/input-url/index.d.ts +21 -0
  178. package/vue3/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  179. package/vue3/src/components/form/input-url/src/props-define.d.ts +13 -0
  180. package/vue3/src/components/form/radio/src/props-define.d.ts +0 -5
  181. package/vue3/src/components/form/select/index.d.ts +60 -0
  182. package/vue3/src/components/form/select/src/props-define.d.ts +10 -6
  183. package/vue3/src/components/form/select/src/select.vue.d.ts +21 -0
  184. package/vue3/src/components/form/switch/src/props-define.d.ts +0 -5
  185. package/vue3/src/components/form/timezone-picker/index.d.ts +63 -0
  186. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +27 -0
  187. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +63 -0
  188. package/vue3/src/components/form/types/index.d.ts +1 -1
  189. package/vue3/src/components/icons/icons/application/index.d.ts +6 -0
  190. package/vue3/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  191. package/vue3/src/components/icons/icons/computer/index.d.ts +6 -0
  192. package/vue3/src/components/icons/icons/computer-data/index.d.ts +6 -0
  193. package/vue3/src/components/icons/icons/computer-down/index.d.ts +6 -0
  194. package/vue3/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  195. package/vue3/src/components/icons/icons/computer-play/index.d.ts +6 -0
  196. package/vue3/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  197. package/vue3/src/components/icons/icons/edit-two/index.d.ts +6 -0
  198. package/vue3/src/components/icons/icons/feedback/index.d.ts +6 -0
  199. package/vue3/src/components/icons/icons/home/index.d.ts +6 -0
  200. package/vue3/src/components/icons/icons/instruction/index.d.ts +6 -0
  201. package/vue3/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  202. package/vue3/src/components/icons/icons/money/index.d.ts +6 -0
  203. package/vue3/src/components/icons/icons/move-down/index.d.ts +6 -0
  204. package/vue3/src/components/icons/icons/move-up/index.d.ts +6 -0
  205. package/vue3/src/components/icons/icons/play-fast/index.d.ts +6 -0
  206. package/vue3/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  207. package/vue3/src/components/icons/icons/preview-close/index.d.ts +6 -0
  208. package/vue3/src/components/icons/icons/preview-open/index.d.ts +6 -0
  209. package/vue3/src/components/icons/icons/protect/index.d.ts +6 -0
  210. package/vue3/src/components/icons/icons/remind-off/index.d.ts +6 -0
  211. package/vue3/src/components/icons/icons/remind-on/index.d.ts +6 -0
  212. package/vue3/src/components/icons/icons/setting-two/index.d.ts +6 -0
  213. package/vue3/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  214. package/vue3/src/components/icons/icons/share/index.d.ts +6 -0
  215. package/vue3/src/components/icons/map.d.ts +25 -0
  216. package/vue3/src/components/image/index.d.ts +150 -0
  217. package/vue3/src/components/image/src/events.d.ts +6 -0
  218. package/vue3/src/components/image/src/image.vue.d.ts +69 -0
  219. package/vue3/src/components/image/src/props-define.d.ts +57 -0
  220. package/vue3/src/components/image/src/use-image.d.ts +16 -0
  221. package/vue3/src/components/menu/index.d.ts +56 -17
  222. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +3 -0
  223. package/vue3/src/components/menu/src/menu-item.vue.d.ts +11 -1
  224. package/vue3/src/components/menu/src/menu.vue.d.ts +8 -5
  225. package/vue3/src/components/menu/src/props-define.d.ts +29 -3
  226. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +9 -1
  227. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +12 -0
  228. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +22 -16
  229. package/vue3/src/components/section/index.d.ts +27 -0
  230. package/vue3/src/components/section/src/props-define.d.ts +24 -0
  231. package/vue3/src/components/section/src/section.vue.d.ts +24 -0
  232. package/vue3/src/components/table/index.d.ts +6 -6
  233. package/vue3/src/components/table/src/hooks/props-define.d.ts +1 -1
  234. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  235. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +4 -4
  236. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +6 -6
  237. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  238. package/vue3/src/components/table/src/table-column.vue.d.ts +2 -2
  239. package/vue3/src/components/tag/index.d.ts +14 -14
  240. package/vue3/src/components/tag/src/props-define.d.ts +2 -2
  241. package/vue3/src/components/tag/src/tag.vue.d.ts +5 -5
  242. package/vue3/src/components/tooltip/src/props-define.d.ts +6 -0
  243. package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  244. package/vue3/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  245. package/vue3/src/lang/hook.d.ts +4 -0
  246. package/vue3/src/lang/internal/en.json.d.ts +5 -0
  247. package/vue3/src/lang/internal/index.d.ts +5 -0
  248. package/vue3/src/lang/internal/ja.json.d.ts +5 -0
  249. package/vue3/src/lang/internal/ko.json.d.ts +5 -0
  250. package/vue3/src/lang/internal/ru.json.d.ts +5 -0
  251. package/vue3/src/lang/internal/zh-CN.json.d.ts +5 -0
  252. package/vue3/src/lang/internal/zh-TW.json.d.ts +5 -0
@@ -0,0 +1,52 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ extra?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: HTMLDivElement;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<{
12
+ "v-model-key": import('vue-types').VueTypeValidableDef<{
13
+ [key: string]: any;
14
+ }, import('vue-types/dist/types').ValidatorFunction<{
15
+ [key: string]: any;
16
+ }>> & {
17
+ default: () => {
18
+ [key: string]: any;
19
+ };
20
+ };
21
+ resetFilter: import('vue-types').VueTypeDef<boolean | (() => any)> & {
22
+ default: boolean | (() => any);
23
+ };
24
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
+ search: (arg: any) => void;
26
+ reset: (arg?: void | undefined) => void;
27
+ }, string, Readonly<import('vue').ExtractPropTypes<{
28
+ "v-model-key": import('vue-types').VueTypeValidableDef<{
29
+ [key: string]: any;
30
+ }, import('vue-types/dist/types').ValidatorFunction<{
31
+ [key: string]: any;
32
+ }>> & {
33
+ default: () => {
34
+ [key: string]: any;
35
+ };
36
+ };
37
+ resetFilter: import('vue-types').VueTypeDef<boolean | (() => any)> & {
38
+ default: boolean | (() => any);
39
+ };
40
+ }>>, {
41
+ "v-model-key": {
42
+ [key: string]: any;
43
+ };
44
+ resetFilter: boolean | (() => any);
45
+ }>;
46
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
47
+ export default _default;
48
+ type __VLS_WithTemplateSlots<T, S> = T & {
49
+ new (): {
50
+ $scopedSlots: S;
51
+ };
52
+ };
@@ -0,0 +1,5 @@
1
+ import { InjectionKey } from 'vue';
2
+ export declare const CONDITION_FILTER_INJECT_KEY: InjectionKey<{
3
+ addItemCount: () => void;
4
+ removeItemCount: () => void;
5
+ }>;
@@ -0,0 +1,43 @@
1
+ export declare const conditionFilterProps: () => {
2
+ /**
3
+ * 绑定值
4
+ */
5
+ "v-model-key": import('vue-types').VueTypeValidableDef<{
6
+ [key: string]: any;
7
+ }, import('vue-types/dist/types').ValidatorFunction<{
8
+ [key: string]: any;
9
+ }>> & {
10
+ default: () => {
11
+ [key: string]: any;
12
+ };
13
+ };
14
+ /**
15
+ * 重置筛选
16
+ * @default false
17
+ */
18
+ resetFilter: import('vue-types').VueTypeDef<boolean | (() => any)> & {
19
+ default: boolean | (() => any);
20
+ };
21
+ };
22
+ export declare const conditionFilterEmits: () => {
23
+ /**
24
+ * 搜索回调
25
+ */
26
+ search: import('../../../vue-utils').EmitFuncType<any>;
27
+ /**
28
+ * 重置筛选
29
+ */
30
+ reset: import('../../../vue-utils').EmitFuncType<void>;
31
+ };
32
+ export interface ConditionFilterSlots {
33
+ /**
34
+ * 额外内容
35
+ */
36
+ extra: void;
37
+ }
38
+ export declare const conditionFilterItemProps: () => {
39
+ /**
40
+ * 标签
41
+ */
42
+ label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
43
+ };
@@ -129,11 +129,13 @@ export declare const PwcDropdownMenu: import('../../vue-utils/install-utils').SF
129
129
  }), import('../../vue-utils/install-utils').InstallOptions>;
130
130
  export declare const PwcDropdownItem: import('../../vue-utils/install-utils').SFCInstall<import('vue/types/v3-component-public-instance').ComponentPublicInstanceConstructor<import('vue/types/v3-component-public-instance').Vue3Instance<{}, Readonly<import('vue').ExtractPropTypes<{
131
131
  command: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
132
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
132
133
  disabled: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
133
134
  default: boolean;
134
135
  };
135
136
  }>>, Readonly<import('vue').ExtractPropTypes<{
136
137
  command: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
138
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
137
139
  disabled: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
138
140
  default: boolean;
139
141
  };
@@ -143,16 +145,19 @@ export declare const PwcDropdownItem: import('../../vue-utils/install-utils').SF
143
145
  disabled: boolean;
144
146
  }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
145
147
  command: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
148
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
146
149
  disabled: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
147
150
  default: boolean;
148
151
  };
149
152
  }>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
150
153
  command: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
154
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
151
155
  disabled: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
152
156
  default: boolean;
153
157
  };
154
158
  }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
155
159
  command: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
160
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
156
161
  disabled: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
157
162
  default: boolean;
158
163
  };
@@ -163,6 +168,7 @@ export declare const PwcDropdownItem: import('../../vue-utils/install-utils').SF
163
168
  }> & {
164
169
  props: {
165
170
  command: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
171
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
166
172
  disabled: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
167
173
  default: boolean;
168
174
  };
@@ -9,6 +9,7 @@ declare function __VLS_template(): {
9
9
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
10
  declare const __VLS_component: import('vue').DefineComponent<{
11
11
  command: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
12
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
12
13
  disabled: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
13
14
  default: boolean;
14
15
  };
@@ -16,6 +17,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
16
17
  click: (arg?: void | undefined) => void;
17
18
  }, string, Readonly<import('vue').ExtractPropTypes<{
18
19
  command: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
20
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
19
21
  disabled: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
20
22
  default: boolean;
21
23
  };
@@ -49,6 +49,10 @@ export declare const dropdownItemProps: () => {
49
49
  * 指令
50
50
  */
51
51
  command: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
52
+ /**
53
+ * 标题
54
+ */
55
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
52
56
  /**
53
57
  * 是否禁用
54
58
  * @default false
@@ -12,6 +12,7 @@ export * from './button';
12
12
  export * from './card';
13
13
  export * from './category-select';
14
14
  export * from './collapse-transition';
15
+ export * from './condition-filter';
15
16
  export * from './dropdown';
16
17
  export * from './empty';
17
18
  export * from './example';
@@ -27,6 +28,7 @@ export * from './form/form-wrap';
27
28
  export * from './form/image-upload';
28
29
  export * from './form/input';
29
30
  export * from './form/input-number';
31
+ export * from './form/input-url';
30
32
  export * from './form/protocol';
31
33
  export * from './form/radio';
32
34
  export * from './form/select';
@@ -37,6 +39,7 @@ export * from './form/types';
37
39
  export * from './form/video-upload';
38
40
  export * from './icons';
39
41
  export * from './icons/map';
42
+ export * from './image';
40
43
  export * from './image-cropper';
41
44
  export * from './image-preview';
42
45
  export * from './info-card';
@@ -50,6 +53,7 @@ export * from './popup';
50
53
  export * from './progress';
51
54
  export * from './resize-box';
52
55
  export * from './scrollbar';
56
+ export * from './section';
53
57
  export * from './slider';
54
58
  export * from './swiper';
55
59
  export * from './table';
@@ -1,6 +1,7 @@
1
1
  declare function __VLS_template(): {
2
2
  attrs: Partial<{}>;
3
3
  slots: {
4
+ 'extra-prefix'?(_: {}): any;
4
5
  default?(_: {}): any;
5
6
  'extra-suffix'?(_: {}): any;
6
7
  };
@@ -114,10 +114,5 @@ export declare const checkboxGroupProps: () => {
114
114
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
115
115
  };
116
116
  export declare const checkboxGroupEmits: () => {
117
- /**
118
- * 修改
119
- * @cbName 复选框组值
120
- * @cbType FormCheckboxValue[]
121
- */
122
117
  change: import('../../../../vue-utils').EmitFuncType<FormCheckboxValue[]>;
123
118
  };
@@ -96,10 +96,6 @@ export declare const datePickerProps: () => {
96
96
  };
97
97
  };
98
98
  export declare const datePickerEmits: () => {
99
- /**
100
- * 修改
101
- * @cbName 修改值
102
- */
103
99
  change: import('../../../../../vue-utils').EmitFuncType<DatePickerValue | DatePickerValue[]>;
104
100
  clear: import('../../../../../vue-utils').EmitFuncType<void>;
105
101
  };
@@ -142,6 +142,7 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
142
142
  index: number;
143
143
  }) => void;
144
144
  change: (arg: string | string[]) => void;
145
+ "choice-file": (arg: File) => void;
145
146
  }, {
146
147
  data: {
147
148
  [key: string]: any;
@@ -365,6 +366,7 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
365
366
  index: number;
366
367
  }) => void;
367
368
  change: (arg: string | string[]) => void;
369
+ "choice-file": (arg: File) => void;
368
370
  }, string, {
369
371
  data: {
370
372
  [key: string]: any;
@@ -94,6 +94,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
94
94
  index: number;
95
95
  }) => void;
96
96
  change: (arg: string | string[]) => void;
97
+ "choice-file": (arg: File) => void;
97
98
  }, string, Readonly<import('vue').ExtractPropTypes<{
98
99
  "v-model-key": import('vue-types').VueTypeDef<string | string[]> & {
99
100
  default: string | (() => string[]);
@@ -4,7 +4,7 @@ export interface FileUploadController {
4
4
  /**
5
5
  * 执行上传
6
6
  */
7
- uploadAction?: (data: FileUploadActionData) => Promise<FileUploadActionResult>;
7
+ uploadAction?: (data: FileUploadActionData) => Promise<FileUploadActionResult | undefined>;
8
8
  /**
9
9
  * 取消上传
10
10
  */
@@ -238,10 +238,6 @@ export declare const fileUploadProps: () => {
238
238
  }>>>>;
239
239
  };
240
240
  export declare const fileUploadEmits: () => {
241
- /**
242
- * 图片上传变化
243
- */
244
- change: import('../../../../../vue-utils').EmitFuncType<string | string[]>;
245
241
  /**
246
242
  * 替换
247
243
  */
@@ -249,6 +245,11 @@ export declare const fileUploadEmits: () => {
249
245
  url: string;
250
246
  index: number;
251
247
  }>;
248
+ /**
249
+ * 选择文件
250
+ */
251
+ 'choice-file': import('../../../../../vue-utils').EmitFuncType<File>;
252
+ change: import('../../../../../vue-utils').EmitFuncType<string | string[]>;
252
253
  };
253
254
  export interface FileUploadItemSlotData {
254
255
  /**
@@ -1,5 +1,23 @@
1
- export declare const PwcFormGroup: import('../../../vue-utils/install-utils').SFCInstall<import('vue/types/v3-component-public-instance').ComponentPublicInstanceConstructor<import('vue/types/v3-component-public-instance').Vue3Instance<{}, Readonly<import('vue').ExtractPropTypes<{}>>, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{}>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}> & {
2
- props: {};
1
+ export declare const PwcFormGroup: import('../../../vue-utils/install-utils').SFCInstall<import('vue/types/v3-component-public-instance').ComponentPublicInstanceConstructor<import('vue/types/v3-component-public-instance').Vue3Instance<{}, Readonly<import('vue').ExtractPropTypes<{
2
+ prefixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
3
+ suffixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
4
+ }>>, Readonly<import('vue').ExtractPropTypes<{
5
+ prefixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
6
+ suffixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
7
+ }>>, {}, {}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
8
+ prefixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
9
+ suffixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
10
+ }>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
11
+ prefixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
12
+ suffixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
13
+ }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
14
+ prefixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
15
+ suffixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
16
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}> & {
17
+ props: {
18
+ prefixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
19
+ suffixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
20
+ };
3
21
  } & (new () => {
4
22
  $scopedSlots: {
5
23
  prefix?(_: {}): any;
@@ -9,7 +9,13 @@ declare function __VLS_template(): {
9
9
  rootEl: HTMLDivElement;
10
10
  };
11
11
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
- declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
12
+ declare const __VLS_component: import('vue').DefineComponent<{
13
+ prefixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
14
+ suffixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
15
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
16
+ prefixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
17
+ suffixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
18
+ }>>, {}>;
13
19
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
14
20
  export default _default;
15
21
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,3 +1,15 @@
1
+ export declare const formGroupProps: () => {
2
+ /**
3
+ * 前缀宽度
4
+ * @default 80
5
+ */
6
+ prefixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
7
+ /**
8
+ * 后缀宽度
9
+ * @default 80
10
+ */
11
+ suffixWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
12
+ };
1
13
  export interface FormGroupSlots {
2
14
  /**
3
15
  * 前缀插槽
@@ -2,14 +2,14 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
2
2
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
3
3
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
4
4
  labelTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
5
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
6
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
7
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
5
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
6
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
7
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
8
8
  showErrorMessage: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
9
9
  default: boolean;
10
10
  };
11
11
  errorMessage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
12
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
12
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
13
13
  required: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
14
14
  default: boolean;
15
15
  };
@@ -29,14 +29,14 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
29
29
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
30
30
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
31
31
  labelTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
32
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
33
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
34
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
32
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
33
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
34
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
35
35
  showErrorMessage: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
36
36
  default: boolean;
37
37
  };
38
38
  errorMessage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
39
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
39
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
40
40
  required: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
41
41
  default: boolean;
42
42
  };
@@ -62,14 +62,14 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
62
62
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
63
63
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
64
64
  labelTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
65
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
66
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
67
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
65
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
66
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
67
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
68
68
  showErrorMessage: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
69
69
  default: boolean;
70
70
  };
71
71
  errorMessage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
72
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
72
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
73
73
  required: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
74
74
  default: boolean;
75
75
  };
@@ -93,18 +93,21 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
93
93
  setErrorMessage(message: string | undefined): void;
94
94
  removeErrorMessage(): void;
95
95
  validateFormItem(validateOptions?: import('../types').FormValidateOptions): Promise<void>;
96
+ itemSlotsRes: import('../../..').UseRenderSlotsReturn<import('./src/hooks/props-define').FormItemSlots>;
97
+ labelModel: import('vue').ComputedRef<import('../types').FormItemLabelModel>;
98
+ labelRef: import('vue').Ref<HTMLDivElement | undefined>;
96
99
  }> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
97
100
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
98
101
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
99
102
  labelTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
100
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
101
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
102
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
103
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
104
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
105
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
103
106
  showErrorMessage: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
104
107
  default: boolean;
105
108
  };
106
109
  errorMessage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
107
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
110
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
108
111
  required: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
109
112
  default: boolean;
110
113
  };
@@ -124,14 +127,14 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
124
127
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
125
128
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
126
129
  labelTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
127
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
128
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
129
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
130
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
131
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
132
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
130
133
  showErrorMessage: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
131
134
  default: boolean;
132
135
  };
133
136
  errorMessage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
134
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
137
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
135
138
  required: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
136
139
  default: boolean;
137
140
  };
@@ -155,6 +158,9 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
155
158
  setErrorMessage(message: string | undefined): void;
156
159
  removeErrorMessage(): void;
157
160
  validateFormItem(validateOptions?: import('../types').FormValidateOptions): Promise<void>;
161
+ itemSlotsRes: import('../../..').UseRenderSlotsReturn<import('./src/hooks/props-define').FormItemSlots>;
162
+ labelModel: import('vue').ComputedRef<import('../types').FormItemLabelModel>;
163
+ labelRef: import('vue').Ref<HTMLDivElement | undefined>;
158
164
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
159
165
  required: boolean;
160
166
  showErrorMessage: boolean;
@@ -166,14 +172,14 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
166
172
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
167
173
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
168
174
  labelTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
169
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
170
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
171
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
175
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
176
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
177
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
172
178
  showErrorMessage: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
173
179
  default: boolean;
174
180
  };
175
181
  errorMessage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
176
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
182
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
177
183
  required: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
178
184
  default: boolean;
179
185
  };
@@ -192,14 +198,13 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
192
198
  };
193
199
  } & (new () => {
194
200
  $scopedSlots: {
195
- label?(_: {
196
- label: string | undefined;
197
- }): any;
198
- 'label-tooltip'?(_: {}): any;
199
- default?(_: {}): any;
200
- 'content-suffix'?(_: {}): any;
201
+ 'header-prefix'?(_: {}): any;
202
+ tips?(_: {}): any;
201
203
  tips?(_: {}): any;
202
204
  tips?(_: {}): any;
205
+ 'header-suffix'?(_: {}): any;
206
+ default?(_: {}): any;
207
+ 'content-suffix'?(_: {}): any;
203
208
  footer?(_: {}): any;
204
209
  };
205
210
  }), import('../../../vue-utils/install-utils').InstallOptions>;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -2,19 +2,17 @@ import { formItemProps } from './hooks/props-define';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
5
- label?(_: {
6
- label: string | undefined;
7
- }): any;
8
- 'label-tooltip'?(_: {}): any;
9
- default?(_: {}): any;
10
- 'content-suffix'?(_: {}): any;
5
+ 'header-prefix'?(_: {}): any;
6
+ tips?(_: {}): any;
11
7
  tips?(_: {}): any;
12
8
  tips?(_: {}): any;
9
+ 'header-suffix'?(_: {}): any;
10
+ default?(_: {}): any;
11
+ 'content-suffix'?(_: {}): any;
13
12
  footer?(_: {}): any;
14
13
  };
15
14
  refs: {
16
15
  itemWrapRef: HTMLDivElement;
17
- labelRef: HTMLDivElement;
18
16
  };
19
17
  rootEl: HTMLDivElement;
20
18
  };
@@ -23,14 +21,14 @@ declare const __VLS_component: import('vue').DefineComponent<{
23
21
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
24
22
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
25
23
  labelTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
26
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
27
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
28
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
24
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
25
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
26
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
29
27
  showErrorMessage: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
30
28
  default: boolean;
31
29
  };
32
30
  errorMessage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
33
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
31
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
34
32
  required: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
35
33
  default: boolean;
36
34
  };
@@ -54,18 +52,21 @@ declare const __VLS_component: import('vue').DefineComponent<{
54
52
  setErrorMessage(message: string | undefined): void;
55
53
  removeErrorMessage(): void;
56
54
  validateFormItem(validateOptions?: import('../../types').FormValidateOptions): Promise<void>;
55
+ itemSlotsRes: import('../../../..').UseRenderSlotsReturn<import('./hooks/props-define').FormItemSlots>;
56
+ labelModel: import('vue').ComputedRef<import('../../types').FormItemLabelModel>;
57
+ labelRef: import('vue').Ref<HTMLDivElement | undefined>;
57
58
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
58
59
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
59
60
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
60
61
  labelTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
61
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
62
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
63
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
62
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
63
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
64
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
64
65
  showErrorMessage: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
65
66
  default: boolean;
66
67
  };
67
68
  errorMessage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
68
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
69
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
69
70
  required: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
70
71
  default: boolean;
71
72
  };