@polyv/vue-components 1.6.0 → 1.7.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 (263) hide show
  1. package/package.json +2 -2
  2. package/styles/root/basic.scss +14 -7
  3. package/styles/root/border.scss +6 -0
  4. package/styles/skin-color.scss +37 -11
  5. package/styles/variables.scss +15 -1
  6. package/vue2/index.es.js +16155 -21494
  7. package/vue2/src/components/alert/index.d.ts +2 -0
  8. package/vue2/src/components/alert/src/alert.vue.d.ts +2 -0
  9. package/vue2/src/components/alert/src/props-define.d.ts +8 -0
  10. package/vue2/src/components/business/channel-cover/index.d.ts +38 -0
  11. package/vue2/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  12. package/vue2/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  13. package/vue2/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  14. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  15. package/vue2/src/components/business/external-links/external-links.vue.d.ts +1 -2
  16. package/vue2/src/components/business/external-links/use-external-links.d.ts +111 -3
  17. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +22 -0
  18. package/vue2/src/components/collapse-transition/index.d.ts +36 -0
  19. package/vue2/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  20. package/vue2/src/components/collapse-transition/src/props-define.d.ts +9 -0
  21. package/vue2/src/components/example/example.vue.d.ts +16 -1
  22. package/vue2/src/components/example/index.d.ts +75 -4
  23. package/vue2/src/components/exports.d.ts +22 -1
  24. package/vue2/src/components/form/file-upload/index.d.ts +467 -0
  25. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +185 -0
  26. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +296 -0
  27. package/vue2/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  28. package/vue2/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  29. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  30. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  31. package/vue2/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  32. package/vue2/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  33. package/vue2/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  34. package/vue2/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  35. package/vue2/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  36. package/vue2/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  37. package/vue2/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  38. package/vue2/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  39. package/vue2/src/components/form/form-item/index.d.ts +2 -2
  40. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +1 -1
  41. package/vue2/src/components/form/form-submit-button/index.d.ts +1 -1
  42. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  43. package/vue2/src/components/form/form-wrap/index.d.ts +8 -2
  44. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +3 -1
  45. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -0
  46. package/vue2/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  47. package/vue2/src/components/form/input-number/index.d.ts +2 -2
  48. package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  49. package/vue2/src/components/form/select/index.d.ts +40 -40
  50. package/vue2/src/components/form/timezone-picker/index.d.ts +70 -70
  51. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +18 -18
  52. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -42
  53. package/vue2/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  54. package/vue2/src/components/form/transfer/transfer.vue.d.ts +0 -1
  55. package/vue2/src/components/icons/icons/effect/index.d.ts +6 -0
  56. package/vue2/src/components/icons/icons/file/index.d.ts +6 -0
  57. package/vue2/src/components/icons/icons/id-card/index.d.ts +6 -0
  58. package/vue2/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  59. package/vue2/src/components/icons/icons/lang/index.d.ts +6 -0
  60. package/vue2/src/components/icons/icons/link/index.d.ts +6 -0
  61. package/vue2/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  62. package/vue2/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  63. package/vue2/src/components/icons/icons/platform/index.d.ts +6 -0
  64. package/vue2/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  65. package/vue2/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  66. package/vue2/src/components/icons/icons/upload-three/index.d.ts +6 -0
  67. package/vue2/src/components/icons/icons/user/index.d.ts +6 -0
  68. package/vue2/src/components/icons/icons/user-filled/index.d.ts +6 -0
  69. package/vue2/src/components/icons/icons/video/index.d.ts +6 -0
  70. package/vue2/src/components/icons/icons/video-filled/index.d.ts +6 -0
  71. package/vue2/src/components/icons/map.d.ts +16 -0
  72. package/vue2/src/components/info-card/index.d.ts +181 -2
  73. package/{vue3/src/components/info-card → vue2/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  74. package/vue2/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  75. package/vue2/src/components/menu/index.d.ts +156 -0
  76. package/vue2/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  77. package/vue2/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  78. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  79. package/vue2/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  80. package/vue2/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  81. package/vue2/src/components/menu/src/menu-item.vue.d.ts +14 -0
  82. package/vue2/src/components/menu/src/menu.vue.d.ts +52 -0
  83. package/vue2/src/components/menu/src/props-define.d.ts +114 -0
  84. package/vue2/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  85. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  86. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  87. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  88. package/vue2/src/components/pagination/use-pagination.d.ts +3 -3
  89. package/vue2/src/components/popconfirm/index.d.ts +20 -0
  90. package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  91. package/vue2/src/components/popconfirm/src/props-define.d.ts +3 -0
  92. package/vue2/src/components/popover/index.d.ts +20 -0
  93. package/vue2/src/components/popover/src/popover.vue.d.ts +7 -0
  94. package/vue2/src/components/popover/src/props-define.d.ts +3 -0
  95. package/vue2/src/components/popup/index.d.ts +13 -6
  96. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  97. package/vue2/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  98. package/vue2/src/components/popup/src/popup.vue.d.ts +4 -2
  99. package/vue2/src/components/popup/src/types.d.ts +3 -0
  100. package/vue2/src/components/slider/index.d.ts +8 -1
  101. package/vue2/src/components/slider/src/props-define.d.ts +7 -0
  102. package/vue2/src/components/slider/src/slider.vue.d.ts +8 -1
  103. package/vue2/src/components/table/index.d.ts +84 -12
  104. package/vue2/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  105. package/vue2/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  106. package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  107. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  108. package/vue2/src/components/table/src/hooks/props-define.d.ts +58 -2
  109. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  110. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  111. package/vue2/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  112. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  113. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  114. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  115. package/vue2/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  116. package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  117. package/vue2/src/components/table/src/table-column.vue.d.ts +13 -4
  118. package/vue2/src/components/table/src/table.vue.d.ts +16 -0
  119. package/vue2/src/components/table/src/types/index.d.ts +1 -1
  120. package/vue2/src/components/tooltip/index.d.ts +20 -0
  121. package/vue2/src/components/tooltip/src/props-define.d.ts +7 -0
  122. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  123. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  124. package/vue2/src/hooks/exports.d.ts +1 -0
  125. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  126. package/vue2/src/lang/internal/en.json.d.ts +28 -6
  127. package/vue2/src/lang/internal/index.d.ts +22 -0
  128. package/vue2/src/lang/internal/ja.json.d.ts +29 -7
  129. package/vue2/src/lang/internal/ko.json.d.ts +29 -7
  130. package/vue2/src/lang/internal/ru.json.d.ts +29 -7
  131. package/vue2/src/lang/internal/zh-CN.json.d.ts +27 -5
  132. package/vue2/src/lang/internal/zh-TW.json.d.ts +28 -6
  133. package/vue2/src/vue-utils/index.d.ts +1 -0
  134. package/vue3/index.es.js +16162 -21506
  135. package/vue3/src/components/alert/index.d.ts +2 -0
  136. package/vue3/src/components/alert/src/alert.vue.d.ts +2 -0
  137. package/vue3/src/components/alert/src/props-define.d.ts +8 -0
  138. package/vue3/src/components/business/channel-cover/index.d.ts +38 -0
  139. package/vue3/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  140. package/vue3/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  141. package/vue3/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  142. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  143. package/vue3/src/components/business/external-links/external-links.vue.d.ts +1 -2
  144. package/vue3/src/components/business/external-links/use-external-links.d.ts +111 -3
  145. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +22 -0
  146. package/vue3/src/components/collapse-transition/index.d.ts +36 -0
  147. package/vue3/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  148. package/vue3/src/components/collapse-transition/src/props-define.d.ts +9 -0
  149. package/vue3/src/components/example/example.vue.d.ts +16 -1
  150. package/vue3/src/components/example/index.d.ts +75 -4
  151. package/vue3/src/components/exports.d.ts +22 -1
  152. package/vue3/src/components/form/file-upload/index.d.ts +467 -0
  153. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +185 -0
  154. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +296 -0
  155. package/vue3/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  156. package/vue3/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  157. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  158. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  159. package/vue3/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  160. package/vue3/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  161. package/vue3/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  162. package/vue3/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  163. package/vue3/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  164. package/vue3/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  165. package/vue3/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  166. package/vue3/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  167. package/vue3/src/components/form/form-item/index.d.ts +2 -2
  168. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +1 -1
  169. package/vue3/src/components/form/form-submit-button/index.d.ts +1 -1
  170. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  171. package/vue3/src/components/form/form-wrap/index.d.ts +8 -2
  172. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +3 -1
  173. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -0
  174. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  175. package/vue3/src/components/form/input-number/index.d.ts +2 -2
  176. package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  177. package/vue3/src/components/form/select/index.d.ts +40 -40
  178. package/vue3/src/components/form/timezone-picker/index.d.ts +70 -70
  179. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +18 -18
  180. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -42
  181. package/vue3/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  182. package/vue3/src/components/form/transfer/transfer.vue.d.ts +0 -1
  183. package/vue3/src/components/icons/icons/effect/index.d.ts +6 -0
  184. package/vue3/src/components/icons/icons/file/index.d.ts +6 -0
  185. package/vue3/src/components/icons/icons/id-card/index.d.ts +6 -0
  186. package/vue3/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  187. package/vue3/src/components/icons/icons/lang/index.d.ts +6 -0
  188. package/vue3/src/components/icons/icons/link/index.d.ts +6 -0
  189. package/vue3/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  190. package/vue3/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  191. package/vue3/src/components/icons/icons/platform/index.d.ts +6 -0
  192. package/vue3/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  193. package/vue3/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  194. package/vue3/src/components/icons/icons/upload-three/index.d.ts +6 -0
  195. package/vue3/src/components/icons/icons/user/index.d.ts +6 -0
  196. package/vue3/src/components/icons/icons/user-filled/index.d.ts +6 -0
  197. package/vue3/src/components/icons/icons/video/index.d.ts +6 -0
  198. package/vue3/src/components/icons/icons/video-filled/index.d.ts +6 -0
  199. package/vue3/src/components/icons/map.d.ts +16 -0
  200. package/vue3/src/components/info-card/index.d.ts +181 -2
  201. package/{vue2/src/components/info-card → vue3/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  202. package/vue3/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  203. package/vue3/src/components/menu/index.d.ts +156 -0
  204. package/vue3/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  205. package/vue3/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  206. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  207. package/vue3/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  208. package/vue3/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  209. package/vue3/src/components/menu/src/menu-item.vue.d.ts +14 -0
  210. package/vue3/src/components/menu/src/menu.vue.d.ts +52 -0
  211. package/vue3/src/components/menu/src/props-define.d.ts +114 -0
  212. package/vue3/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  213. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  214. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  215. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  216. package/vue3/src/components/pagination/use-pagination.d.ts +3 -3
  217. package/vue3/src/components/popconfirm/index.d.ts +20 -0
  218. package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  219. package/vue3/src/components/popconfirm/src/props-define.d.ts +3 -0
  220. package/vue3/src/components/popover/index.d.ts +20 -0
  221. package/vue3/src/components/popover/src/popover.vue.d.ts +7 -0
  222. package/vue3/src/components/popover/src/props-define.d.ts +3 -0
  223. package/vue3/src/components/popup/index.d.ts +13 -6
  224. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  225. package/vue3/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  226. package/vue3/src/components/popup/src/popup.vue.d.ts +4 -2
  227. package/vue3/src/components/popup/src/types.d.ts +3 -0
  228. package/vue3/src/components/slider/index.d.ts +8 -1
  229. package/vue3/src/components/slider/src/props-define.d.ts +7 -0
  230. package/vue3/src/components/slider/src/slider.vue.d.ts +8 -1
  231. package/vue3/src/components/table/index.d.ts +84 -12
  232. package/vue3/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  233. package/vue3/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  234. package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  235. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  236. package/vue3/src/components/table/src/hooks/props-define.d.ts +58 -2
  237. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  238. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  239. package/vue3/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  240. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  241. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  242. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  243. package/vue3/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  244. package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  245. package/vue3/src/components/table/src/table-column.vue.d.ts +13 -4
  246. package/vue3/src/components/table/src/table.vue.d.ts +16 -0
  247. package/vue3/src/components/table/src/types/index.d.ts +1 -1
  248. package/vue3/src/components/tooltip/index.d.ts +20 -0
  249. package/vue3/src/components/tooltip/src/props-define.d.ts +7 -0
  250. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  251. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  252. package/vue3/src/hooks/exports.d.ts +1 -0
  253. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  254. package/vue3/src/lang/internal/en.json.d.ts +28 -6
  255. package/vue3/src/lang/internal/index.d.ts +22 -0
  256. package/vue3/src/lang/internal/ja.json.d.ts +29 -7
  257. package/vue3/src/lang/internal/ko.json.d.ts +29 -7
  258. package/vue3/src/lang/internal/ru.json.d.ts +29 -7
  259. package/vue3/src/lang/internal/zh-CN.json.d.ts +27 -5
  260. package/vue3/src/lang/internal/zh-TW.json.d.ts +28 -6
  261. package/vue3/src/vue-utils/index.d.ts +1 -0
  262. package/vue2/src/components/form/index.d.ts +0 -18
  263. package/vue3/src/components/form/index.d.ts +0 -18
@@ -0,0 +1,5 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ click: (arg?: void | undefined) => void;
3
+ "add-files": (arg: File[]) => void;
4
+ }, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
5
+ export default _default;
@@ -0,0 +1,4 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ click: (arg?: void | undefined) => void;
3
+ }, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
4
+ export default _default;
@@ -0,0 +1,23 @@
1
+ import { FileUploadItem } from '../hooks/types';
2
+ declare const _default: import('vue').DefineComponent<{
3
+ item: import('vue-types').VueTypeValidableDef<FileUploadItem, import('vue-types/dist/types').ValidatorFunction<FileUploadItem>> & {
4
+ required: true;
5
+ };
6
+ index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
7
+ default: number;
8
+ } & {
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
12
+ item: import('vue-types').VueTypeValidableDef<FileUploadItem, import('vue-types/dist/types').ValidatorFunction<FileUploadItem>> & {
13
+ required: true;
14
+ };
15
+ index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
16
+ default: number;
17
+ } & {
18
+ required: true;
19
+ };
20
+ }>>, {
21
+ index: number;
22
+ }>;
23
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import { FileUploadItem } from '../hooks/types';
2
+ declare const _default: import('vue').DefineComponent<{
3
+ item: import('vue-types').VueTypeValidableDef<FileUploadItem, import('vue-types/dist/types').ValidatorFunction<FileUploadItem>> & {
4
+ required: true;
5
+ };
6
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ replace: (arg?: void | undefined) => void;
8
+ "cancel-upload": (arg?: void | undefined) => void;
9
+ }, string, Readonly<import('vue').ExtractPropTypes<{
10
+ item: import('vue-types').VueTypeValidableDef<FileUploadItem, import('vue-types/dist/types').ValidatorFunction<FileUploadItem>> & {
11
+ required: true;
12
+ };
13
+ }>>, {}>;
14
+ export default _default;
@@ -0,0 +1,16 @@
1
+ import { FileUploadItem } from '../hooks/types';
2
+ declare const _default: import('vue').DefineComponent<{
3
+ item: import('vue-types').VueTypeValidableDef<FileUploadItem, import('vue-types/dist/types').ValidatorFunction<FileUploadItem>> & {
4
+ required: true;
5
+ };
6
+ fileName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
7
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
+ replace: (arg?: void | undefined) => void;
9
+ "cancel-upload": (arg?: void | undefined) => void;
10
+ }, string, Readonly<import('vue').ExtractPropTypes<{
11
+ item: import('vue-types').VueTypeValidableDef<FileUploadItem, import('vue-types/dist/types').ValidatorFunction<FileUploadItem>> & {
12
+ required: true;
13
+ };
14
+ fileName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
15
+ }>>, {}>;
16
+ export default _default;
@@ -0,0 +1,10 @@
1
+ export declare const fileUploadItemEmits: () => {
2
+ /**
3
+ * 替换
4
+ */
5
+ replace: import('../../../../../vue-utils').EmitFuncType<void>;
6
+ /**
7
+ * 取消上传
8
+ */
9
+ 'cancel-upload': import('../../../../../vue-utils').EmitFuncType<void>;
10
+ };
@@ -92,7 +92,7 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
92
92
  formItemIsError: import('vue').ComputedRef<boolean>;
93
93
  setErrorMessage(message: string | undefined): void;
94
94
  removeErrorMessage(): void;
95
- validateFormItem(validateOptions?: import('..').FormValidateOptions): Promise<void>;
95
+ validateFormItem(validateOptions?: import('../types').FormValidateOptions): Promise<void>;
96
96
  }> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
97
97
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
98
98
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
@@ -154,7 +154,7 @@ export declare const PwcFormItem: import('../../../vue-utils/install-utils').SFC
154
154
  formItemIsError: import('vue').ComputedRef<boolean>;
155
155
  setErrorMessage(message: string | undefined): void;
156
156
  removeErrorMessage(): void;
157
- validateFormItem(validateOptions?: import('..').FormValidateOptions): Promise<void>;
157
+ validateFormItem(validateOptions?: import('../types').FormValidateOptions): Promise<void>;
158
158
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
159
159
  required: boolean;
160
160
  showErrorMessage: boolean;
@@ -53,7 +53,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
53
53
  formItemIsError: import('vue').ComputedRef<boolean>;
54
54
  setErrorMessage(message: string | undefined): void;
55
55
  removeErrorMessage(): void;
56
- validateFormItem(validateOptions?: import('../..').FormValidateOptions): Promise<void>;
56
+ validateFormItem(validateOptions?: import('../../types').FormValidateOptions): Promise<void>;
57
57
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
58
58
  formField: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
59
59
  label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
@@ -74,8 +74,8 @@ export declare const PwcFormSubmitButton: import('../../../vue-utils/install-uti
74
74
  };
75
75
  }>>, {
76
76
  link: boolean;
77
- text: string;
78
77
  type: "success" | "warning" | "primary" | "danger" | "ordinary";
78
+ text: string;
79
79
  disabled: boolean;
80
80
  size: "default" | "small" | "large" | "mini";
81
81
  outline: boolean;
@@ -74,8 +74,8 @@ declare const _default: import('vue').DefineComponent<{
74
74
  };
75
75
  }>>, {
76
76
  link: boolean;
77
- text: string;
78
77
  type: "success" | "warning" | "primary" | "danger" | "ordinary";
78
+ text: string;
79
79
  disabled: boolean;
80
80
  size: "default" | "small" | "large" | "mini";
81
81
  outline: boolean;
@@ -14,6 +14,7 @@ export declare const PwcFormWrap: import('../../../vue-utils/install-utils').SFC
14
14
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
15
15
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
16
16
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
17
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
17
18
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
18
19
  }>>, Readonly<import('vue').ExtractPropTypes<{
19
20
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
@@ -31,6 +32,7 @@ export declare const PwcFormWrap: import('../../../vue-utils/install-utils').SFC
31
32
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
32
33
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
33
34
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
35
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
34
36
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
35
37
  }>>, {
36
38
  "submit-form": (arg: import('../../..').UniversalParams<any>) => void;
@@ -53,9 +55,10 @@ export declare const PwcFormWrap: import('../../../vue-utils/install-utils').SFC
53
55
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
54
56
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
55
57
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
58
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
56
59
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
57
60
  }>>> & import('vue').ShallowUnwrapRef<{
58
- validateCurrentForm: (validateOptions?: import('..').FormValidateOptions) => Promise<void>;
61
+ validateCurrentForm: (validateOptions?: import('../types').FormValidateOptions) => Promise<void>;
59
62
  buildFormData: <D extends Record<string | number, any>>() => D;
60
63
  }> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
61
64
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
@@ -73,6 +76,7 @@ export declare const PwcFormWrap: import('../../../vue-utils/install-utils').SFC
73
76
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
74
77
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
75
78
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
79
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
76
80
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
77
81
  }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
78
82
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
@@ -90,9 +94,10 @@ export declare const PwcFormWrap: import('../../../vue-utils/install-utils').SFC
90
94
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
91
95
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
92
96
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
97
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
93
98
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
94
99
  }>>, {
95
- validateCurrentForm: (validateOptions?: import('..').FormValidateOptions) => Promise<void>;
100
+ validateCurrentForm: (validateOptions?: import('../types').FormValidateOptions) => Promise<void>;
96
101
  buildFormData: <D extends Record<string | number, any>>() => D;
97
102
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
98
103
  "submit-form": (arg: import('../../..').UniversalParams<any>) => void;
@@ -116,6 +121,7 @@ export declare const PwcFormWrap: import('../../../vue-utils/install-utils').SFC
116
121
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
117
122
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
118
123
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
124
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
119
125
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
120
126
  };
121
127
  } & (new () => {
@@ -23,9 +23,10 @@ declare const __VLS_component: import('vue').DefineComponent<{
23
23
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
24
24
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
25
25
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
26
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
26
27
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
27
28
  }, {
28
- validateCurrentForm: (validateOptions?: import('../..').FormValidateOptions) => Promise<void>;
29
+ validateCurrentForm: (validateOptions?: import('../../types').FormValidateOptions) => Promise<void>;
29
30
  buildFormData: <D extends Record<string | number, any>>() => D;
30
31
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
31
32
  "submit-form": (arg: import('../../../..').UniversalParams<any>) => void;
@@ -45,6 +46,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
45
46
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
46
47
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
47
48
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
49
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
48
50
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
49
51
  }>>, {
50
52
  formData: import('../../../..').UniversalParams<any>;
@@ -55,6 +55,10 @@ export declare const formWrapProps: () => {
55
55
  * 是否只读
56
56
  */
57
57
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
58
+ /**
59
+ * 表单间距
60
+ */
61
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
58
62
  /**
59
63
  * 表单主题
60
64
  * @propType FormEffect
@@ -1,5 +1,5 @@
1
1
  import { BusinessType } from '../../../hooks/business/use-business-type';
2
- import { VueProps } from '../../../vue-utils';
2
+ import { FormatProps } from '../../../vue-utils';
3
3
  import { ComputedRef, Ref } from 'vue';
4
4
  import { FormSize, FormEffect } from '../types';
5
5
  import { useRenderSlots } from '../../../hooks/vue/use-render-slots';
@@ -69,7 +69,7 @@ export interface FormEntranceSlots {
69
69
  }
70
70
  export interface FormEntranceInject {
71
71
  /** 入口参数 */
72
- entranceProps: VueProps<typeof formEntranceProps>;
72
+ entranceProps: FormatProps<typeof formEntranceProps>;
73
73
  /** 是否聚焦 */
74
74
  isFocusing: Ref<boolean>;
75
75
  /** 尺寸 */
@@ -100,7 +100,7 @@ export interface FormEntranceInject {
100
100
  * @param options - 选项
101
101
  */
102
102
  export declare const useFormEntrance: (options: {
103
- props: VueProps<typeof formEntranceProps>;
103
+ props: FormatProps<typeof formEntranceProps>;
104
104
  }) => FormEntranceInject;
105
105
  /**
106
106
  * 表单组件入口注入 hook
@@ -66,8 +66,8 @@ export declare const PwcInputNumber: import('../../../vue-utils/install-utils').
66
66
  placeholder: string;
67
67
  validateForm: boolean;
68
68
  clearable: boolean;
69
- min: number;
70
69
  max: number;
70
+ min: number;
71
71
  }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
72
72
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
73
73
  default: string;
@@ -165,8 +165,8 @@ export declare const PwcInputNumber: import('../../../vue-utils/install-utils').
165
165
  placeholder: string;
166
166
  validateForm: boolean;
167
167
  clearable: boolean;
168
- min: number;
169
168
  max: number;
169
+ min: number;
170
170
  }> & {
171
171
  props: {
172
172
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -78,8 +78,8 @@ declare const __VLS_component: import('vue').DefineComponent<{
78
78
  placeholder: string;
79
79
  validateForm: boolean;
80
80
  clearable: boolean;
81
- min: number;
82
81
  max: number;
82
+ min: number;
83
83
  }>;
84
84
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
85
85
  export default _default;
@@ -63,8 +63,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
63
63
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
64
64
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
65
65
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
66
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
67
- default: import('..').InputValueType;
66
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
67
+ default: import('../input').InputValueType;
68
68
  };
69
69
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
70
70
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -115,8 +115,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
115
115
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
116
116
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
117
117
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
118
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
119
- default: import('..').InputValueType;
118
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
119
+ default: import('../input').InputValueType;
120
120
  };
121
121
  }>>>> & {
122
122
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -168,8 +168,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
168
168
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
169
169
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
170
170
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
171
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
172
- default: import('..').InputValueType;
171
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
172
+ default: import('../input').InputValueType;
173
173
  };
174
174
  }>>;
175
175
  };
@@ -257,8 +257,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
257
257
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
258
258
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
259
259
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
260
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
261
- default: import('..').InputValueType;
260
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
261
+ default: import('../input').InputValueType;
262
262
  };
263
263
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
264
264
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -309,8 +309,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
309
309
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
310
310
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
311
311
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
312
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
313
- default: import('..').InputValueType;
312
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
313
+ default: import('../input').InputValueType;
314
314
  };
315
315
  }>>>> & {
316
316
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -362,8 +362,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
362
362
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
363
363
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
364
364
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
365
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
366
- default: import('..').InputValueType;
365
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
366
+ default: import('../input').InputValueType;
367
367
  };
368
368
  }>>;
369
369
  };
@@ -447,8 +447,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
447
447
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
448
448
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
449
449
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
450
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
451
- default: import('..').InputValueType;
450
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
451
+ default: import('../input').InputValueType;
452
452
  };
453
453
  }>>;
454
454
  }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
@@ -516,8 +516,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
516
516
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
517
517
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
518
518
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
519
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
520
- default: import('..').InputValueType;
519
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
520
+ default: import('../input').InputValueType;
521
521
  };
522
522
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
523
523
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -568,8 +568,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
568
568
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
569
569
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
570
570
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
571
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
572
- default: import('..').InputValueType;
571
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
572
+ default: import('../input').InputValueType;
573
573
  };
574
574
  }>>>> & {
575
575
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -621,8 +621,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
621
621
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
622
622
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
623
623
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
624
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
625
- default: import('..').InputValueType;
624
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
625
+ default: import('../input').InputValueType;
626
626
  };
627
627
  }>>;
628
628
  };
@@ -710,8 +710,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
710
710
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
711
711
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
712
712
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
713
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
714
- default: import('..').InputValueType;
713
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
714
+ default: import('../input').InputValueType;
715
715
  };
716
716
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
717
717
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -762,8 +762,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
762
762
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
763
763
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
764
764
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
765
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
766
- default: import('..').InputValueType;
765
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
766
+ default: import('../input').InputValueType;
767
767
  };
768
768
  }>>>> & {
769
769
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -815,8 +815,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
815
815
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
816
816
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
817
817
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
818
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
819
- default: import('..').InputValueType;
818
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
819
+ default: import('../input').InputValueType;
820
820
  };
821
821
  }>>;
822
822
  };
@@ -904,8 +904,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
904
904
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
905
905
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
906
906
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
907
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
908
- default: import('..').InputValueType;
907
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
908
+ default: import('../input').InputValueType;
909
909
  };
910
910
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
911
911
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -956,8 +956,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
956
956
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
957
957
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
958
958
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
959
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
960
- default: import('..').InputValueType;
959
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
960
+ default: import('../input').InputValueType;
961
961
  };
962
962
  }>>>> & {
963
963
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -1009,8 +1009,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1009
1009
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1010
1010
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1011
1011
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1012
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1013
- default: import('..').InputValueType;
1012
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1013
+ default: import('../input').InputValueType;
1014
1014
  };
1015
1015
  }>>;
1016
1016
  };
@@ -1094,8 +1094,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1094
1094
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1095
1095
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1096
1096
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1097
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1098
- default: import('..').InputValueType;
1097
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1098
+ default: import('../input').InputValueType;
1099
1099
  };
1100
1100
  }>>;
1101
1101
  }> & {
@@ -1164,8 +1164,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1164
1164
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1165
1165
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1166
1166
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1167
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1168
- default: import('..').InputValueType;
1167
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1168
+ default: import('../input').InputValueType;
1169
1169
  };
1170
1170
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1171
1171
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -1216,8 +1216,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1216
1216
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1217
1217
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1218
1218
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1219
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1220
- default: import('..').InputValueType;
1219
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1220
+ default: import('../input').InputValueType;
1221
1221
  };
1222
1222
  }>>>> & {
1223
1223
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -1269,8 +1269,8 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1269
1269
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1270
1270
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1271
1271
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1272
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1273
- default: import('..').InputValueType;
1272
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1273
+ default: import('../input').InputValueType;
1274
1274
  };
1275
1275
  }>>;
1276
1276
  };