@polyv/vue-components 1.6.1 → 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 (261) 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 +16146 -21500
  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/menu-expand/index.d.ts +6 -0
  61. package/vue2/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  62. package/vue2/src/components/icons/icons/platform/index.d.ts +6 -0
  63. package/vue2/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  64. package/vue2/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  65. package/vue2/src/components/icons/icons/upload-three/index.d.ts +6 -0
  66. package/vue2/src/components/icons/icons/user/index.d.ts +6 -0
  67. package/vue2/src/components/icons/icons/user-filled/index.d.ts +6 -0
  68. package/vue2/src/components/icons/icons/video/index.d.ts +6 -0
  69. package/vue2/src/components/icons/icons/video-filled/index.d.ts +6 -0
  70. package/vue2/src/components/icons/map.d.ts +15 -0
  71. package/vue2/src/components/info-card/index.d.ts +181 -2
  72. package/{vue3/src/components/info-card → vue2/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  73. package/vue2/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  74. package/vue2/src/components/menu/index.d.ts +156 -0
  75. package/vue2/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  76. package/vue2/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  77. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  78. package/vue2/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  79. package/vue2/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  80. package/vue2/src/components/menu/src/menu-item.vue.d.ts +14 -0
  81. package/vue2/src/components/menu/src/menu.vue.d.ts +52 -0
  82. package/vue2/src/components/menu/src/props-define.d.ts +114 -0
  83. package/vue2/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  84. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  85. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  86. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  87. package/vue2/src/components/pagination/use-pagination.d.ts +3 -3
  88. package/vue2/src/components/popconfirm/index.d.ts +20 -0
  89. package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  90. package/vue2/src/components/popconfirm/src/props-define.d.ts +3 -0
  91. package/vue2/src/components/popover/index.d.ts +20 -0
  92. package/vue2/src/components/popover/src/popover.vue.d.ts +7 -0
  93. package/vue2/src/components/popover/src/props-define.d.ts +3 -0
  94. package/vue2/src/components/popup/index.d.ts +13 -6
  95. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  96. package/vue2/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  97. package/vue2/src/components/popup/src/popup.vue.d.ts +4 -2
  98. package/vue2/src/components/popup/src/types.d.ts +3 -0
  99. package/vue2/src/components/slider/index.d.ts +8 -1
  100. package/vue2/src/components/slider/src/props-define.d.ts +7 -0
  101. package/vue2/src/components/slider/src/slider.vue.d.ts +8 -1
  102. package/vue2/src/components/table/index.d.ts +84 -12
  103. package/vue2/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  104. package/vue2/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  105. package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  106. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  107. package/vue2/src/components/table/src/hooks/props-define.d.ts +58 -2
  108. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  109. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  110. package/vue2/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  111. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  112. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  113. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  114. package/vue2/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  115. package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  116. package/vue2/src/components/table/src/table-column.vue.d.ts +13 -4
  117. package/vue2/src/components/table/src/table.vue.d.ts +16 -0
  118. package/vue2/src/components/table/src/types/index.d.ts +1 -1
  119. package/vue2/src/components/tooltip/index.d.ts +20 -0
  120. package/vue2/src/components/tooltip/src/props-define.d.ts +7 -0
  121. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  122. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  123. package/vue2/src/hooks/exports.d.ts +1 -0
  124. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  125. package/vue2/src/lang/internal/en.json.d.ts +28 -6
  126. package/vue2/src/lang/internal/index.d.ts +22 -0
  127. package/vue2/src/lang/internal/ja.json.d.ts +29 -7
  128. package/vue2/src/lang/internal/ko.json.d.ts +29 -7
  129. package/vue2/src/lang/internal/ru.json.d.ts +29 -7
  130. package/vue2/src/lang/internal/zh-CN.json.d.ts +27 -5
  131. package/vue2/src/lang/internal/zh-TW.json.d.ts +28 -6
  132. package/vue2/src/vue-utils/index.d.ts +1 -0
  133. package/vue3/index.es.js +16153 -21512
  134. package/vue3/src/components/alert/index.d.ts +2 -0
  135. package/vue3/src/components/alert/src/alert.vue.d.ts +2 -0
  136. package/vue3/src/components/alert/src/props-define.d.ts +8 -0
  137. package/vue3/src/components/business/channel-cover/index.d.ts +38 -0
  138. package/vue3/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  139. package/vue3/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  140. package/vue3/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  141. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  142. package/vue3/src/components/business/external-links/external-links.vue.d.ts +1 -2
  143. package/vue3/src/components/business/external-links/use-external-links.d.ts +111 -3
  144. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +22 -0
  145. package/vue3/src/components/collapse-transition/index.d.ts +36 -0
  146. package/vue3/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  147. package/vue3/src/components/collapse-transition/src/props-define.d.ts +9 -0
  148. package/vue3/src/components/example/example.vue.d.ts +16 -1
  149. package/vue3/src/components/example/index.d.ts +75 -4
  150. package/vue3/src/components/exports.d.ts +22 -1
  151. package/vue3/src/components/form/file-upload/index.d.ts +467 -0
  152. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +185 -0
  153. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +296 -0
  154. package/vue3/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  155. package/vue3/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  156. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  157. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  158. package/vue3/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  159. package/vue3/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  160. package/vue3/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  161. package/vue3/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  162. package/vue3/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  163. package/vue3/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  164. package/vue3/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  165. package/vue3/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  166. package/vue3/src/components/form/form-item/index.d.ts +2 -2
  167. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +1 -1
  168. package/vue3/src/components/form/form-submit-button/index.d.ts +1 -1
  169. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  170. package/vue3/src/components/form/form-wrap/index.d.ts +8 -2
  171. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +3 -1
  172. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -0
  173. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  174. package/vue3/src/components/form/input-number/index.d.ts +2 -2
  175. package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  176. package/vue3/src/components/form/select/index.d.ts +40 -40
  177. package/vue3/src/components/form/timezone-picker/index.d.ts +70 -70
  178. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +18 -18
  179. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -42
  180. package/vue3/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  181. package/vue3/src/components/form/transfer/transfer.vue.d.ts +0 -1
  182. package/vue3/src/components/icons/icons/effect/index.d.ts +6 -0
  183. package/vue3/src/components/icons/icons/file/index.d.ts +6 -0
  184. package/vue3/src/components/icons/icons/id-card/index.d.ts +6 -0
  185. package/vue3/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  186. package/vue3/src/components/icons/icons/lang/index.d.ts +6 -0
  187. package/vue3/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  188. package/vue3/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  189. package/vue3/src/components/icons/icons/platform/index.d.ts +6 -0
  190. package/vue3/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  191. package/vue3/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  192. package/vue3/src/components/icons/icons/upload-three/index.d.ts +6 -0
  193. package/vue3/src/components/icons/icons/user/index.d.ts +6 -0
  194. package/vue3/src/components/icons/icons/user-filled/index.d.ts +6 -0
  195. package/vue3/src/components/icons/icons/video/index.d.ts +6 -0
  196. package/vue3/src/components/icons/icons/video-filled/index.d.ts +6 -0
  197. package/vue3/src/components/icons/map.d.ts +15 -0
  198. package/vue3/src/components/info-card/index.d.ts +181 -2
  199. package/{vue2/src/components/info-card → vue3/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  200. package/vue3/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  201. package/vue3/src/components/menu/index.d.ts +156 -0
  202. package/vue3/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  203. package/vue3/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  204. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  205. package/vue3/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  206. package/vue3/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  207. package/vue3/src/components/menu/src/menu-item.vue.d.ts +14 -0
  208. package/vue3/src/components/menu/src/menu.vue.d.ts +52 -0
  209. package/vue3/src/components/menu/src/props-define.d.ts +114 -0
  210. package/vue3/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  211. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  212. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  213. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  214. package/vue3/src/components/pagination/use-pagination.d.ts +3 -3
  215. package/vue3/src/components/popconfirm/index.d.ts +20 -0
  216. package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  217. package/vue3/src/components/popconfirm/src/props-define.d.ts +3 -0
  218. package/vue3/src/components/popover/index.d.ts +20 -0
  219. package/vue3/src/components/popover/src/popover.vue.d.ts +7 -0
  220. package/vue3/src/components/popover/src/props-define.d.ts +3 -0
  221. package/vue3/src/components/popup/index.d.ts +13 -6
  222. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  223. package/vue3/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  224. package/vue3/src/components/popup/src/popup.vue.d.ts +4 -2
  225. package/vue3/src/components/popup/src/types.d.ts +3 -0
  226. package/vue3/src/components/slider/index.d.ts +8 -1
  227. package/vue3/src/components/slider/src/props-define.d.ts +7 -0
  228. package/vue3/src/components/slider/src/slider.vue.d.ts +8 -1
  229. package/vue3/src/components/table/index.d.ts +84 -12
  230. package/vue3/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  231. package/vue3/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  232. package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  233. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  234. package/vue3/src/components/table/src/hooks/props-define.d.ts +58 -2
  235. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  236. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  237. package/vue3/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  238. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  239. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  240. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  241. package/vue3/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  242. package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  243. package/vue3/src/components/table/src/table-column.vue.d.ts +13 -4
  244. package/vue3/src/components/table/src/table.vue.d.ts +16 -0
  245. package/vue3/src/components/table/src/types/index.d.ts +1 -1
  246. package/vue3/src/components/tooltip/index.d.ts +20 -0
  247. package/vue3/src/components/tooltip/src/props-define.d.ts +7 -0
  248. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  249. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  250. package/vue3/src/hooks/exports.d.ts +1 -0
  251. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  252. package/vue3/src/lang/internal/en.json.d.ts +28 -6
  253. package/vue3/src/lang/internal/index.d.ts +22 -0
  254. package/vue3/src/lang/internal/ja.json.d.ts +29 -7
  255. package/vue3/src/lang/internal/ko.json.d.ts +29 -7
  256. package/vue3/src/lang/internal/ru.json.d.ts +29 -7
  257. package/vue3/src/lang/internal/zh-CN.json.d.ts +27 -5
  258. package/vue3/src/lang/internal/zh-TW.json.d.ts +28 -6
  259. package/vue3/src/vue-utils/index.d.ts +1 -0
  260. package/vue2/src/components/form/index.d.ts +0 -18
  261. package/vue3/src/components/form/index.d.ts +0 -18
@@ -69,8 +69,8 @@ declare const _default: import('vue').DefineComponent<{
69
69
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
70
70
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
71
71
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
72
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
73
- default: import('../..').InputValueType;
72
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
73
+ default: import('../../input').InputValueType;
74
74
  };
75
75
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
76
76
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -121,8 +121,8 @@ declare const _default: import('vue').DefineComponent<{
121
121
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
122
122
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
123
123
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
124
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
125
- default: import('../..').InputValueType;
124
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
125
+ default: import('../../input').InputValueType;
126
126
  };
127
127
  }>>>> & {
128
128
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -174,8 +174,8 @@ declare const _default: import('vue').DefineComponent<{
174
174
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
175
175
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
176
176
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
177
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
178
- default: import('../..').InputValueType;
177
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
178
+ default: import('../../input').InputValueType;
179
179
  };
180
180
  }>>;
181
181
  };
@@ -263,8 +263,8 @@ declare const _default: import('vue').DefineComponent<{
263
263
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
264
264
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
265
265
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
266
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
267
- default: import('../..').InputValueType;
266
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
267
+ default: import('../../input').InputValueType;
268
268
  };
269
269
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
270
270
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -315,8 +315,8 @@ declare const _default: import('vue').DefineComponent<{
315
315
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
316
316
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
317
317
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
318
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
319
- default: import('../..').InputValueType;
318
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
319
+ default: import('../../input').InputValueType;
320
320
  };
321
321
  }>>>> & {
322
322
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -368,8 +368,8 @@ declare const _default: import('vue').DefineComponent<{
368
368
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
369
369
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
370
370
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
371
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
372
- default: import('../..').InputValueType;
371
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
372
+ default: import('../../input').InputValueType;
373
373
  };
374
374
  }>>;
375
375
  };
@@ -458,8 +458,8 @@ declare const _default: import('vue').DefineComponent<{
458
458
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
459
459
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
460
460
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
461
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
462
- default: import('../..').InputValueType;
461
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
462
+ default: import('../../input').InputValueType;
463
463
  };
464
464
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
465
465
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -510,8 +510,8 @@ declare const _default: import('vue').DefineComponent<{
510
510
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
511
511
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
512
512
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
513
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
514
- default: import('../..').InputValueType;
513
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
514
+ default: import('../../input').InputValueType;
515
515
  };
516
516
  }>>>> & {
517
517
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -563,8 +563,8 @@ declare const _default: import('vue').DefineComponent<{
563
563
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
564
564
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
565
565
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
566
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
567
- default: import('../..').InputValueType;
566
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
567
+ default: import('../../input').InputValueType;
568
568
  };
569
569
  }>>;
570
570
  };
@@ -673,8 +673,8 @@ declare const _default: import('vue').DefineComponent<{
673
673
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
674
674
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
675
675
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
676
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
677
- default: import('../..').InputValueType;
676
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
677
+ default: import('../../input').InputValueType;
678
678
  };
679
679
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
680
680
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -725,8 +725,8 @@ declare const _default: import('vue').DefineComponent<{
725
725
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
726
726
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
727
727
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
728
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
729
- default: import('../..').InputValueType;
728
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
729
+ default: import('../../input').InputValueType;
730
730
  };
731
731
  }>>>> & {
732
732
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -778,8 +778,8 @@ declare const _default: import('vue').DefineComponent<{
778
778
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
779
779
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
780
780
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
781
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
782
- default: import('../..').InputValueType;
781
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
782
+ default: import('../../input').InputValueType;
783
783
  };
784
784
  }>>;
785
785
  };
@@ -867,8 +867,8 @@ declare const _default: import('vue').DefineComponent<{
867
867
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
868
868
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
869
869
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
870
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
871
- default: import('../..').InputValueType;
870
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
871
+ default: import('../../input').InputValueType;
872
872
  };
873
873
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
874
874
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -919,8 +919,8 @@ declare const _default: import('vue').DefineComponent<{
919
919
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
920
920
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
921
921
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
922
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
923
- default: import('../..').InputValueType;
922
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
923
+ default: import('../../input').InputValueType;
924
924
  };
925
925
  }>>>> & {
926
926
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -972,8 +972,8 @@ declare const _default: import('vue').DefineComponent<{
972
972
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
973
973
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
974
974
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
975
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
976
- default: import('../..').InputValueType;
975
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
976
+ default: import('../../input').InputValueType;
977
977
  };
978
978
  }>>;
979
979
  };
@@ -1062,8 +1062,8 @@ declare const _default: import('vue').DefineComponent<{
1062
1062
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1063
1063
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1064
1064
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1065
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
1066
- default: import('../..').InputValueType;
1065
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
1066
+ default: import('../../input').InputValueType;
1067
1067
  };
1068
1068
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1069
1069
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -1114,8 +1114,8 @@ declare const _default: import('vue').DefineComponent<{
1114
1114
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1115
1115
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1116
1116
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1117
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
1118
- default: import('../..').InputValueType;
1117
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
1118
+ default: import('../../input').InputValueType;
1119
1119
  };
1120
1120
  }>>>> & {
1121
1121
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -1167,8 +1167,8 @@ declare const _default: import('vue').DefineComponent<{
1167
1167
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1168
1168
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1169
1169
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1170
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
1171
- default: import('../..').InputValueType;
1170
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
1171
+ default: import('../../input').InputValueType;
1172
1172
  };
1173
1173
  }>>;
1174
1174
  };
@@ -1273,8 +1273,8 @@ declare const _default: import('vue').DefineComponent<{
1273
1273
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1274
1274
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1275
1275
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1276
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
1277
- default: import('../..').InputValueType;
1276
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
1277
+ default: import('../../input').InputValueType;
1278
1278
  };
1279
1279
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1280
1280
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -1325,8 +1325,8 @@ declare const _default: import('vue').DefineComponent<{
1325
1325
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1326
1326
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1327
1327
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1328
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
1329
- default: import('../..').InputValueType;
1328
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
1329
+ default: import('../../input').InputValueType;
1330
1330
  };
1331
1331
  }>>>> & {
1332
1332
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -1378,8 +1378,8 @@ declare const _default: import('vue').DefineComponent<{
1378
1378
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1379
1379
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1380
1380
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1381
- "v-model-key": import('vue-types').VueTypeDef<import('../..').InputValueType> & {
1382
- default: import('../..').InputValueType;
1381
+ "v-model-key": import('vue-types').VueTypeDef<import('../../input').InputValueType> & {
1382
+ default: import('../../input').InputValueType;
1383
1383
  };
1384
1384
  }>>;
1385
1385
  };
@@ -113,7 +113,6 @@ export declare const transferProps: () => {
113
113
  };
114
114
  };
115
115
  export declare const transferEmits: () => {
116
- 'update:modelValue': import('../../../../vue-utils').EmitFuncType<TransferItem[]>;
117
116
  search: import('../../../../vue-utils').EmitFuncType<string>;
118
117
  'update:currentPage': import('../../../../vue-utils').EmitFuncType<number>;
119
118
  'page-change': import('../../../../vue-utils').EmitFuncType<number>;
@@ -81,7 +81,6 @@ declare const __VLS_component: import('vue').DefineComponent<{
81
81
  default: boolean;
82
82
  };
83
83
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
84
- "update:modelValue": (arg: TransferItem[]) => void;
85
84
  search: (arg: string) => void;
86
85
  "update:currentPage": (arg: number) => void;
87
86
  "page-change": (arg: number) => void;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Effect Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file File Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file IdCard Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file IdCardFilled Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Lang Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file MenuExpand Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file MenuFoldUp Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Platform Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file PlatformFilled Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file StatisticsFilled Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file UploadThree Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file User Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file UserFilled Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Video Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file VideoFilled Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -27,22 +27,31 @@ export { default as PwcIconDown } from './icons/down';
27
27
  export { default as PwcIconDownload } from './icons/download';
28
28
  export { default as PwcIconDrag } from './icons/drag';
29
29
  export { default as PwcIconEdit } from './icons/edit';
30
+ export { default as PwcIconEffect } from './icons/effect';
30
31
  export { default as PwcIconEmptyPrize } from './icons/empty-prize';
31
32
  export { default as PwcIconError } from './icons/error';
32
33
  export { default as PwcIconErrorCircleFilled } from './icons/error-circle-filled';
33
34
  export { default as PwcIconErrorCircleOutline } from './icons/error-circle-outline';
35
+ export { default as PwcIconFile } from './icons/file';
34
36
  export { default as PwcIconFilter } from './icons/filter';
37
+ export { default as PwcIconIdCard } from './icons/id-card';
38
+ export { default as PwcIconIdCardFilled } from './icons/id-card-filled';
35
39
  export { default as PwcIconImage } from './icons/image';
36
40
  export { default as PwcIconInfoCircleFilled } from './icons/info-circle-filled';
37
41
  export { default as PwcIconInfoCircleOutline } from './icons/info-circle-outline';
38
42
  export { default as PwcIconLandscape } from './icons/landscape';
43
+ export { default as PwcIconLang } from './icons/lang';
39
44
  export { default as PwcIconLeft } from './icons/left';
40
45
  export { default as PwcIconLink } from './icons/link';
41
46
  export { default as PwcIconList } from './icons/list';
42
47
  export { default as PwcIconLoading } from './icons/loading';
48
+ export { default as PwcIconMenuExpand } from './icons/menu-expand';
49
+ export { default as PwcIconMenuFoldUp } from './icons/menu-fold-up';
43
50
  export { default as PwcIconMinus } from './icons/minus';
44
51
  export { default as PwcIconMinusCircleOutline } from './icons/minus-circle-outline';
45
52
  export { default as PwcIconMore } from './icons/more';
53
+ export { default as PwcIconPlatform } from './icons/platform';
54
+ export { default as PwcIconPlatformFilled } from './icons/platform-filled';
46
55
  export { default as PwcIconPortrait } from './icons/portrait';
47
56
  export { default as PwcIconQuestionCircleFilled } from './icons/question-circle-filled';
48
57
  export { default as PwcIconQuestionCircleOutline } from './icons/question-circle-outline';
@@ -52,13 +61,19 @@ export { default as PwcIconRocket } from './icons/rocket';
52
61
  export { default as PwcIconSearch } from './icons/search';
53
62
  export { default as PwcIconSetting } from './icons/setting';
54
63
  export { default as PwcIconStatistics } from './icons/statistics';
64
+ export { default as PwcIconStatisticsFilled } from './icons/statistics-filled';
55
65
  export { default as PwcIconSuccess } from './icons/success';
56
66
  export { default as PwcIconSuccessCircleFilled } from './icons/success-circle-filled';
57
67
  export { default as PwcIconSuccessCircleOutline } from './icons/success-circle-outline';
58
68
  export { default as PwcIconTag } from './icons/tag';
59
69
  export { default as PwcIconUp } from './icons/up';
60
70
  export { default as PwcIconUpload } from './icons/upload';
71
+ export { default as PwcIconUploadThree } from './icons/upload-three';
61
72
  export { default as PwcIconUploadTwo } from './icons/upload-two';
73
+ export { default as PwcIconUser } from './icons/user';
74
+ export { default as PwcIconUserFilled } from './icons/user-filled';
75
+ export { default as PwcIconVideo } from './icons/video';
76
+ export { default as PwcIconVideoFilled } from './icons/video-filled';
62
77
  export { default as PwcIconWarningCircleFilled } from './icons/warning-circle-filled';
63
78
  export { default as PwcIconWarningCircleOutline } from './icons/warning-circle-outline';
64
79
  export { default as PwcIconZoomIn } from './icons/zoom-in';
@@ -1,2 +1,181 @@
1
- export { default as PwcInfoCard } from './info-card.vue';
2
- export * from './props-define';
1
+ export declare const PwcInfoCard: 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
+ image: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
3
+ imageWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
4
+ default: number;
5
+ };
6
+ imageHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
7
+ default: number;
8
+ };
9
+ imageRadius: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
10
+ default: string;
11
+ };
12
+ name: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
13
+ description: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
14
+ tags: import('vue-types').VueTypeValidableDef<import('./src/props-define').InfoCardTagItem[], import('vue-types/dist/types').ValidatorFunction<import('./src/props-define').InfoCardTagItem[]>> & {
15
+ default: () => import('./src/props-define').InfoCardTagItem[];
16
+ };
17
+ idValue: import('vue-types').VueTypeDef<string | number | boolean> & {
18
+ default: string | number | boolean;
19
+ };
20
+ idLabel: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
21
+ default: string;
22
+ };
23
+ triggerClick: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
24
+ default: boolean;
25
+ };
26
+ }>>, Readonly<import('vue').ExtractPropTypes<{
27
+ image: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
28
+ imageWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
29
+ default: number;
30
+ };
31
+ imageHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
32
+ default: number;
33
+ };
34
+ imageRadius: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
35
+ default: string;
36
+ };
37
+ name: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
38
+ description: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
39
+ tags: import('vue-types').VueTypeValidableDef<import('./src/props-define').InfoCardTagItem[], import('vue-types/dist/types').ValidatorFunction<import('./src/props-define').InfoCardTagItem[]>> & {
40
+ default: () => import('./src/props-define').InfoCardTagItem[];
41
+ };
42
+ idValue: import('vue-types').VueTypeDef<string | number | boolean> & {
43
+ default: string | number | boolean;
44
+ };
45
+ idLabel: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
46
+ default: string;
47
+ };
48
+ triggerClick: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
49
+ default: boolean;
50
+ };
51
+ }>>, {
52
+ "click-info": (arg?: void | undefined) => void;
53
+ }, {
54
+ tags: import('./src/props-define').InfoCardTagItem[];
55
+ imageWidth: number;
56
+ imageHeight: number;
57
+ imageRadius: string;
58
+ idValue: string | number | boolean;
59
+ idLabel: string;
60
+ triggerClick: boolean;
61
+ }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
62
+ image: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
63
+ imageWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
64
+ default: number;
65
+ };
66
+ imageHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
67
+ default: number;
68
+ };
69
+ imageRadius: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
70
+ default: string;
71
+ };
72
+ name: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
73
+ description: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
74
+ tags: import('vue-types').VueTypeValidableDef<import('./src/props-define').InfoCardTagItem[], import('vue-types/dist/types').ValidatorFunction<import('./src/props-define').InfoCardTagItem[]>> & {
75
+ default: () => import('./src/props-define').InfoCardTagItem[];
76
+ };
77
+ idValue: import('vue-types').VueTypeDef<string | number | boolean> & {
78
+ default: string | number | boolean;
79
+ };
80
+ idLabel: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
81
+ default: string;
82
+ };
83
+ triggerClick: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
84
+ default: boolean;
85
+ };
86
+ }>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
87
+ image: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
88
+ imageWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
89
+ default: number;
90
+ };
91
+ imageHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
92
+ default: number;
93
+ };
94
+ imageRadius: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
95
+ default: string;
96
+ };
97
+ name: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
98
+ description: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
99
+ tags: import('vue-types').VueTypeValidableDef<import('./src/props-define').InfoCardTagItem[], import('vue-types/dist/types').ValidatorFunction<import('./src/props-define').InfoCardTagItem[]>> & {
100
+ default: () => import('./src/props-define').InfoCardTagItem[];
101
+ };
102
+ idValue: import('vue-types').VueTypeDef<string | number | boolean> & {
103
+ default: string | number | boolean;
104
+ };
105
+ idLabel: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
106
+ default: string;
107
+ };
108
+ triggerClick: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
109
+ default: boolean;
110
+ };
111
+ }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
112
+ image: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
113
+ imageWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
114
+ default: number;
115
+ };
116
+ imageHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
117
+ default: number;
118
+ };
119
+ imageRadius: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
120
+ default: string;
121
+ };
122
+ name: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
123
+ description: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
124
+ tags: import('vue-types').VueTypeValidableDef<import('./src/props-define').InfoCardTagItem[], import('vue-types/dist/types').ValidatorFunction<import('./src/props-define').InfoCardTagItem[]>> & {
125
+ default: () => import('./src/props-define').InfoCardTagItem[];
126
+ };
127
+ idValue: import('vue-types').VueTypeDef<string | number | boolean> & {
128
+ default: string | number | boolean;
129
+ };
130
+ idLabel: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
131
+ default: string;
132
+ };
133
+ triggerClick: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
134
+ default: boolean;
135
+ };
136
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
137
+ "click-info": (arg?: void | undefined) => void;
138
+ }, string, {
139
+ tags: import('./src/props-define').InfoCardTagItem[];
140
+ imageWidth: number;
141
+ imageHeight: number;
142
+ imageRadius: string;
143
+ idValue: string | number | boolean;
144
+ idLabel: string;
145
+ triggerClick: boolean;
146
+ }> & {
147
+ props: {
148
+ image: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
149
+ imageWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
150
+ default: number;
151
+ };
152
+ imageHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
153
+ default: number;
154
+ };
155
+ imageRadius: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
156
+ default: string;
157
+ };
158
+ name: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
159
+ description: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
160
+ tags: import('vue-types').VueTypeValidableDef<import('./src/props-define').InfoCardTagItem[], import('vue-types/dist/types').ValidatorFunction<import('./src/props-define').InfoCardTagItem[]>> & {
161
+ default: () => import('./src/props-define').InfoCardTagItem[];
162
+ };
163
+ idValue: import('vue-types').VueTypeDef<string | number | boolean> & {
164
+ default: string | number | boolean;
165
+ };
166
+ idLabel: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
167
+ default: string;
168
+ };
169
+ triggerClick: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
170
+ default: boolean;
171
+ };
172
+ };
173
+ } & (new () => {
174
+ $scopedSlots: {
175
+ image?(_: {}): any;
176
+ 'image-overlay'?(_: {}): any;
177
+ name?(_: {}): any;
178
+ description?(_: {}): any;
179
+ };
180
+ }), import('../../vue-utils/install-utils').InstallOptions>;
181
+ export * from './src/props-define';