@polyv/vue-components 1.6.1 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (428) hide show
  1. package/package.json +2 -2
  2. package/styles/function.scss +4 -1
  3. package/styles/root/basic.scss +14 -7
  4. package/styles/root/border.scss +6 -0
  5. package/styles/skin-color.scss +37 -11
  6. package/styles/variables.scss +15 -1
  7. package/vue2/index.es.js +18218 -22763
  8. package/vue2/src/components/alert/index.d.ts +2 -0
  9. package/vue2/src/components/alert/src/alert.vue.d.ts +2 -0
  10. package/vue2/src/components/alert/src/props-define.d.ts +8 -0
  11. package/vue2/src/components/business/channel-cover/index.d.ts +38 -0
  12. package/vue2/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  13. package/vue2/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  14. package/vue2/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  15. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  16. package/vue2/src/components/business/external-links/external-links.vue.d.ts +1 -2
  17. package/vue2/src/components/business/external-links/use-external-links.d.ts +116 -3
  18. package/vue2/src/components/business/live-status-tag/index.d.ts +14 -14
  19. package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  20. package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  21. package/vue2/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  22. package/vue2/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  23. package/vue2/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  24. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +31 -0
  25. package/vue2/src/components/button/index.d.ts +26 -0
  26. package/vue2/src/components/button/src/button.vue.d.ts +9 -0
  27. package/vue2/src/components/button/src/use-button.d.ts +13 -0
  28. package/vue2/src/components/collapse-transition/index.d.ts +36 -0
  29. package/vue2/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  30. package/vue2/src/components/collapse-transition/src/props-define.d.ts +9 -0
  31. package/vue2/src/components/condition-filter/index.d.ts +122 -0
  32. package/vue2/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  33. package/vue2/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  34. package/vue2/src/components/condition-filter/src/hooks.d.ts +5 -0
  35. package/vue2/src/components/condition-filter/src/props-define.d.ts +43 -0
  36. package/vue2/src/components/dropdown/index.d.ts +6 -0
  37. package/vue2/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  38. package/vue2/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  39. package/vue2/src/components/example/example.vue.d.ts +16 -1
  40. package/vue2/src/components/example/index.d.ts +75 -4
  41. package/vue2/src/components/exports.d.ts +26 -1
  42. package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -0
  43. package/vue2/src/components/form/checkbox/src/props-define.d.ts +0 -5
  44. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  45. package/vue2/src/components/form/file-upload/index.d.ts +469 -0
  46. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +186 -0
  47. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +297 -0
  48. package/vue2/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  49. package/vue2/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  50. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  51. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  52. package/vue2/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  53. package/vue2/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  54. package/vue2/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  55. package/vue2/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  56. package/vue2/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  57. package/vue2/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  58. package/vue2/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  59. package/vue2/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  60. package/vue2/src/components/form/form-group/index.d.ts +20 -2
  61. package/vue2/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  62. package/vue2/src/components/form/form-group/src/props-define.d.ts +12 -0
  63. package/vue2/src/components/form/form-item/index.d.ts +37 -32
  64. package/vue2/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  65. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +17 -16
  66. package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  67. package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  68. package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  69. package/vue2/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  70. package/vue2/src/components/form/form-submit-button/index.d.ts +10 -1
  71. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -1
  72. package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  73. package/vue2/src/components/form/form-wrap/index.d.ts +32 -26
  74. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +11 -9
  75. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +8 -4
  76. package/vue2/src/components/form/hooks/use-form-change.d.ts +20 -0
  77. package/vue2/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  78. package/vue2/src/components/form/hooks/use-form-extra.d.ts +21 -0
  79. package/vue2/src/components/form/input/index.d.ts +7 -0
  80. package/vue2/src/components/form/input/src/input.vue.d.ts +7 -0
  81. package/vue2/src/components/form/input/src/props-define.d.ts +8 -6
  82. package/vue2/src/components/form/input-number/index.d.ts +2 -2
  83. package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  84. package/vue2/src/components/form/input-number/src/props-define.d.ts +1 -6
  85. package/vue2/src/components/form/input-url/index.d.ts +21 -0
  86. package/vue2/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  87. package/vue2/src/components/form/input-url/src/props-define.d.ts +13 -0
  88. package/vue2/src/components/form/radio/src/props-define.d.ts +0 -5
  89. package/vue2/src/components/form/select/index.d.ts +100 -40
  90. package/vue2/src/components/form/select/src/props-define.d.ts +10 -6
  91. package/vue2/src/components/form/select/src/select.vue.d.ts +21 -0
  92. package/vue2/src/components/form/switch/src/props-define.d.ts +0 -5
  93. package/vue2/src/components/form/timezone-picker/index.d.ts +133 -70
  94. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +45 -18
  95. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +105 -42
  96. package/vue2/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  97. package/vue2/src/components/form/transfer/transfer.vue.d.ts +0 -1
  98. package/vue2/src/components/form/types/index.d.ts +1 -1
  99. package/vue2/src/components/icons/icons/application/index.d.ts +6 -0
  100. package/vue2/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  101. package/vue2/src/components/icons/icons/computer/index.d.ts +6 -0
  102. package/vue2/src/components/icons/icons/computer-data/index.d.ts +6 -0
  103. package/vue2/src/components/icons/icons/computer-down/index.d.ts +6 -0
  104. package/vue2/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  105. package/vue2/src/components/icons/icons/computer-play/index.d.ts +6 -0
  106. package/vue2/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  107. package/vue2/src/components/icons/icons/edit-two/index.d.ts +6 -0
  108. package/vue2/src/components/icons/icons/effect/index.d.ts +6 -0
  109. package/vue2/src/components/icons/icons/feedback/index.d.ts +6 -0
  110. package/vue2/src/components/icons/icons/file/index.d.ts +6 -0
  111. package/vue2/src/components/icons/icons/home/index.d.ts +6 -0
  112. package/vue2/src/components/icons/icons/id-card/index.d.ts +6 -0
  113. package/vue2/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  114. package/vue2/src/components/icons/icons/instruction/index.d.ts +6 -0
  115. package/vue2/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  116. package/vue2/src/components/icons/icons/lang/index.d.ts +6 -0
  117. package/vue2/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  118. package/vue2/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  119. package/vue2/src/components/icons/icons/money/index.d.ts +6 -0
  120. package/vue2/src/components/icons/icons/move-down/index.d.ts +6 -0
  121. package/vue2/src/components/icons/icons/move-up/index.d.ts +6 -0
  122. package/vue2/src/components/icons/icons/platform/index.d.ts +6 -0
  123. package/vue2/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  124. package/vue2/src/components/icons/icons/play-fast/index.d.ts +6 -0
  125. package/vue2/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  126. package/vue2/src/components/icons/icons/preview-close/index.d.ts +6 -0
  127. package/vue2/src/components/icons/icons/preview-open/index.d.ts +6 -0
  128. package/vue2/src/components/icons/icons/protect/index.d.ts +6 -0
  129. package/vue2/src/components/icons/icons/remind-off/index.d.ts +6 -0
  130. package/vue2/src/components/icons/icons/remind-on/index.d.ts +6 -0
  131. package/vue2/src/components/icons/icons/setting-two/index.d.ts +6 -0
  132. package/vue2/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  133. package/vue2/src/components/icons/icons/share/index.d.ts +6 -0
  134. package/vue2/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  135. package/vue2/src/components/icons/icons/upload-three/index.d.ts +6 -0
  136. package/vue2/src/components/icons/icons/user/index.d.ts +6 -0
  137. package/vue2/src/components/icons/icons/user-filled/index.d.ts +6 -0
  138. package/vue2/src/components/icons/icons/video/index.d.ts +6 -0
  139. package/vue2/src/components/icons/icons/video-filled/index.d.ts +6 -0
  140. package/vue2/src/components/icons/map.d.ts +40 -0
  141. package/vue2/src/components/image/index.d.ts +150 -0
  142. package/vue2/src/components/image/src/events.d.ts +6 -0
  143. package/vue2/src/components/image/src/image.vue.d.ts +69 -0
  144. package/vue2/src/components/image/src/props-define.d.ts +57 -0
  145. package/vue2/src/components/image/src/use-image.d.ts +16 -0
  146. package/vue2/src/components/info-card/index.d.ts +181 -2
  147. package/{vue3/src/components/info-card → vue2/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  148. package/vue2/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  149. package/vue2/src/components/menu/index.d.ts +195 -0
  150. package/vue2/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  151. package/vue2/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  152. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +26 -0
  153. package/vue2/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  154. package/vue2/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  155. package/vue2/src/components/menu/src/menu-item.vue.d.ts +24 -0
  156. package/vue2/src/components/menu/src/menu.vue.d.ts +55 -0
  157. package/vue2/src/components/menu/src/props-define.d.ts +140 -0
  158. package/vue2/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  159. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +40 -0
  160. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +13 -1
  161. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +35 -25
  162. package/vue2/src/components/pagination/use-pagination.d.ts +3 -3
  163. package/vue2/src/components/popconfirm/index.d.ts +20 -0
  164. package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  165. package/vue2/src/components/popconfirm/src/props-define.d.ts +3 -0
  166. package/vue2/src/components/popover/index.d.ts +20 -0
  167. package/vue2/src/components/popover/src/popover.vue.d.ts +7 -0
  168. package/vue2/src/components/popover/src/props-define.d.ts +3 -0
  169. package/vue2/src/components/popup/index.d.ts +13 -6
  170. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  171. package/vue2/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  172. package/vue2/src/components/popup/src/popup.vue.d.ts +4 -2
  173. package/vue2/src/components/popup/src/types.d.ts +3 -0
  174. package/vue2/src/components/section/index.d.ts +27 -0
  175. package/vue2/src/components/section/src/props-define.d.ts +24 -0
  176. package/vue2/src/components/section/src/section.vue.d.ts +24 -0
  177. package/vue2/src/components/slider/index.d.ts +8 -1
  178. package/vue2/src/components/slider/src/props-define.d.ts +7 -0
  179. package/vue2/src/components/slider/src/slider.vue.d.ts +8 -1
  180. package/vue2/src/components/table/index.d.ts +84 -12
  181. package/vue2/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  182. package/vue2/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  183. package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  184. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  185. package/vue2/src/components/table/src/hooks/props-define.d.ts +58 -2
  186. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  187. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  188. package/vue2/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  189. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  190. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  191. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  192. package/vue2/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  193. package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  194. package/vue2/src/components/table/src/table-column.vue.d.ts +13 -4
  195. package/vue2/src/components/table/src/table.vue.d.ts +16 -0
  196. package/vue2/src/components/table/src/types/index.d.ts +1 -1
  197. package/vue2/src/components/tag/index.d.ts +14 -14
  198. package/vue2/src/components/tag/src/props-define.d.ts +2 -2
  199. package/vue2/src/components/tag/src/tag.vue.d.ts +5 -5
  200. package/vue2/src/components/tooltip/index.d.ts +20 -0
  201. package/vue2/src/components/tooltip/src/props-define.d.ts +13 -0
  202. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  203. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  204. package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  205. package/vue2/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  206. package/vue2/src/hooks/exports.d.ts +1 -0
  207. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  208. package/vue2/src/lang/hook.d.ts +4 -0
  209. package/vue2/src/lang/internal/en.json.d.ts +33 -6
  210. package/vue2/src/lang/internal/index.d.ts +27 -0
  211. package/vue2/src/lang/internal/ja.json.d.ts +34 -7
  212. package/vue2/src/lang/internal/ko.json.d.ts +34 -7
  213. package/vue2/src/lang/internal/ru.json.d.ts +34 -7
  214. package/vue2/src/lang/internal/zh-CN.json.d.ts +32 -5
  215. package/vue2/src/lang/internal/zh-TW.json.d.ts +33 -6
  216. package/vue2/src/vue-utils/index.d.ts +1 -0
  217. package/vue3/index.es.js +18206 -22756
  218. package/vue3/src/components/alert/index.d.ts +2 -0
  219. package/vue3/src/components/alert/src/alert.vue.d.ts +2 -0
  220. package/vue3/src/components/alert/src/props-define.d.ts +8 -0
  221. package/vue3/src/components/business/channel-cover/index.d.ts +38 -0
  222. package/vue3/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  223. package/vue3/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  224. package/vue3/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  225. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  226. package/vue3/src/components/business/external-links/external-links.vue.d.ts +1 -2
  227. package/vue3/src/components/business/external-links/use-external-links.d.ts +116 -3
  228. package/vue3/src/components/business/live-status-tag/index.d.ts +14 -14
  229. package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  230. package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  231. package/vue3/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  232. package/vue3/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  233. package/vue3/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  234. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +31 -0
  235. package/vue3/src/components/button/index.d.ts +26 -0
  236. package/vue3/src/components/button/src/button.vue.d.ts +9 -0
  237. package/vue3/src/components/button/src/use-button.d.ts +13 -0
  238. package/vue3/src/components/collapse-transition/index.d.ts +36 -0
  239. package/vue3/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  240. package/vue3/src/components/collapse-transition/src/props-define.d.ts +9 -0
  241. package/vue3/src/components/condition-filter/index.d.ts +122 -0
  242. package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  243. package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  244. package/vue3/src/components/condition-filter/src/hooks.d.ts +5 -0
  245. package/vue3/src/components/condition-filter/src/props-define.d.ts +43 -0
  246. package/vue3/src/components/dropdown/index.d.ts +6 -0
  247. package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  248. package/vue3/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  249. package/vue3/src/components/example/example.vue.d.ts +16 -1
  250. package/vue3/src/components/example/index.d.ts +75 -4
  251. package/vue3/src/components/exports.d.ts +26 -1
  252. package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -0
  253. package/vue3/src/components/form/checkbox/src/props-define.d.ts +0 -5
  254. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  255. package/vue3/src/components/form/file-upload/index.d.ts +469 -0
  256. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +186 -0
  257. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +297 -0
  258. package/vue3/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  259. package/vue3/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  260. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  261. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  262. package/vue3/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  263. package/vue3/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  264. package/vue3/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  265. package/vue3/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  266. package/vue3/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  267. package/vue3/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  268. package/vue3/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  269. package/vue3/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  270. package/vue3/src/components/form/form-group/index.d.ts +20 -2
  271. package/vue3/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  272. package/vue3/src/components/form/form-group/src/props-define.d.ts +12 -0
  273. package/vue3/src/components/form/form-item/index.d.ts +37 -32
  274. package/vue3/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  275. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +17 -16
  276. package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  277. package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  278. package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  279. package/vue3/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  280. package/vue3/src/components/form/form-submit-button/index.d.ts +10 -1
  281. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -1
  282. package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  283. package/vue3/src/components/form/form-wrap/index.d.ts +32 -26
  284. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +11 -9
  285. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +8 -4
  286. package/vue3/src/components/form/hooks/use-form-change.d.ts +20 -0
  287. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  288. package/vue3/src/components/form/hooks/use-form-extra.d.ts +21 -0
  289. package/vue3/src/components/form/input/index.d.ts +7 -0
  290. package/vue3/src/components/form/input/src/input.vue.d.ts +7 -0
  291. package/vue3/src/components/form/input/src/props-define.d.ts +8 -6
  292. package/vue3/src/components/form/input-number/index.d.ts +2 -2
  293. package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  294. package/vue3/src/components/form/input-number/src/props-define.d.ts +1 -6
  295. package/vue3/src/components/form/input-url/index.d.ts +21 -0
  296. package/vue3/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  297. package/vue3/src/components/form/input-url/src/props-define.d.ts +13 -0
  298. package/vue3/src/components/form/radio/src/props-define.d.ts +0 -5
  299. package/vue3/src/components/form/select/index.d.ts +100 -40
  300. package/vue3/src/components/form/select/src/props-define.d.ts +10 -6
  301. package/vue3/src/components/form/select/src/select.vue.d.ts +21 -0
  302. package/vue3/src/components/form/switch/src/props-define.d.ts +0 -5
  303. package/vue3/src/components/form/timezone-picker/index.d.ts +133 -70
  304. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +45 -18
  305. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +105 -42
  306. package/vue3/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  307. package/vue3/src/components/form/transfer/transfer.vue.d.ts +0 -1
  308. package/vue3/src/components/form/types/index.d.ts +1 -1
  309. package/vue3/src/components/icons/icons/application/index.d.ts +6 -0
  310. package/vue3/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  311. package/vue3/src/components/icons/icons/computer/index.d.ts +6 -0
  312. package/vue3/src/components/icons/icons/computer-data/index.d.ts +6 -0
  313. package/vue3/src/components/icons/icons/computer-down/index.d.ts +6 -0
  314. package/vue3/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  315. package/vue3/src/components/icons/icons/computer-play/index.d.ts +6 -0
  316. package/vue3/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  317. package/vue3/src/components/icons/icons/edit-two/index.d.ts +6 -0
  318. package/vue3/src/components/icons/icons/effect/index.d.ts +6 -0
  319. package/vue3/src/components/icons/icons/feedback/index.d.ts +6 -0
  320. package/vue3/src/components/icons/icons/file/index.d.ts +6 -0
  321. package/vue3/src/components/icons/icons/home/index.d.ts +6 -0
  322. package/vue3/src/components/icons/icons/id-card/index.d.ts +6 -0
  323. package/vue3/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  324. package/vue3/src/components/icons/icons/instruction/index.d.ts +6 -0
  325. package/vue3/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  326. package/vue3/src/components/icons/icons/lang/index.d.ts +6 -0
  327. package/vue3/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  328. package/vue3/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  329. package/vue3/src/components/icons/icons/money/index.d.ts +6 -0
  330. package/vue3/src/components/icons/icons/move-down/index.d.ts +6 -0
  331. package/vue3/src/components/icons/icons/move-up/index.d.ts +6 -0
  332. package/vue3/src/components/icons/icons/platform/index.d.ts +6 -0
  333. package/vue3/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  334. package/vue3/src/components/icons/icons/play-fast/index.d.ts +6 -0
  335. package/vue3/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  336. package/vue3/src/components/icons/icons/preview-close/index.d.ts +6 -0
  337. package/vue3/src/components/icons/icons/preview-open/index.d.ts +6 -0
  338. package/vue3/src/components/icons/icons/protect/index.d.ts +6 -0
  339. package/vue3/src/components/icons/icons/remind-off/index.d.ts +6 -0
  340. package/vue3/src/components/icons/icons/remind-on/index.d.ts +6 -0
  341. package/vue3/src/components/icons/icons/setting-two/index.d.ts +6 -0
  342. package/vue3/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  343. package/vue3/src/components/icons/icons/share/index.d.ts +6 -0
  344. package/vue3/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  345. package/vue3/src/components/icons/icons/upload-three/index.d.ts +6 -0
  346. package/vue3/src/components/icons/icons/user/index.d.ts +6 -0
  347. package/vue3/src/components/icons/icons/user-filled/index.d.ts +6 -0
  348. package/vue3/src/components/icons/icons/video/index.d.ts +6 -0
  349. package/vue3/src/components/icons/icons/video-filled/index.d.ts +6 -0
  350. package/vue3/src/components/icons/map.d.ts +40 -0
  351. package/vue3/src/components/image/index.d.ts +150 -0
  352. package/vue3/src/components/image/src/events.d.ts +6 -0
  353. package/vue3/src/components/image/src/image.vue.d.ts +69 -0
  354. package/vue3/src/components/image/src/props-define.d.ts +57 -0
  355. package/vue3/src/components/image/src/use-image.d.ts +16 -0
  356. package/vue3/src/components/info-card/index.d.ts +181 -2
  357. package/{vue2/src/components/info-card → vue3/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  358. package/vue3/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  359. package/vue3/src/components/menu/index.d.ts +195 -0
  360. package/vue3/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  361. package/vue3/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  362. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +26 -0
  363. package/vue3/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  364. package/vue3/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  365. package/vue3/src/components/menu/src/menu-item.vue.d.ts +24 -0
  366. package/vue3/src/components/menu/src/menu.vue.d.ts +55 -0
  367. package/vue3/src/components/menu/src/props-define.d.ts +140 -0
  368. package/vue3/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  369. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +40 -0
  370. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +13 -1
  371. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +35 -25
  372. package/vue3/src/components/pagination/use-pagination.d.ts +3 -3
  373. package/vue3/src/components/popconfirm/index.d.ts +20 -0
  374. package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  375. package/vue3/src/components/popconfirm/src/props-define.d.ts +3 -0
  376. package/vue3/src/components/popover/index.d.ts +20 -0
  377. package/vue3/src/components/popover/src/popover.vue.d.ts +7 -0
  378. package/vue3/src/components/popover/src/props-define.d.ts +3 -0
  379. package/vue3/src/components/popup/index.d.ts +13 -6
  380. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  381. package/vue3/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  382. package/vue3/src/components/popup/src/popup.vue.d.ts +4 -2
  383. package/vue3/src/components/popup/src/types.d.ts +3 -0
  384. package/vue3/src/components/section/index.d.ts +27 -0
  385. package/vue3/src/components/section/src/props-define.d.ts +24 -0
  386. package/vue3/src/components/section/src/section.vue.d.ts +24 -0
  387. package/vue3/src/components/slider/index.d.ts +8 -1
  388. package/vue3/src/components/slider/src/props-define.d.ts +7 -0
  389. package/vue3/src/components/slider/src/slider.vue.d.ts +8 -1
  390. package/vue3/src/components/table/index.d.ts +84 -12
  391. package/vue3/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  392. package/vue3/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  393. package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  394. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  395. package/vue3/src/components/table/src/hooks/props-define.d.ts +58 -2
  396. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  397. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  398. package/vue3/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  399. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  400. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  401. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  402. package/vue3/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  403. package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  404. package/vue3/src/components/table/src/table-column.vue.d.ts +13 -4
  405. package/vue3/src/components/table/src/table.vue.d.ts +16 -0
  406. package/vue3/src/components/table/src/types/index.d.ts +1 -1
  407. package/vue3/src/components/tag/index.d.ts +14 -14
  408. package/vue3/src/components/tag/src/props-define.d.ts +2 -2
  409. package/vue3/src/components/tag/src/tag.vue.d.ts +5 -5
  410. package/vue3/src/components/tooltip/index.d.ts +20 -0
  411. package/vue3/src/components/tooltip/src/props-define.d.ts +13 -0
  412. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  413. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  414. package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  415. package/vue3/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  416. package/vue3/src/hooks/exports.d.ts +1 -0
  417. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  418. package/vue3/src/lang/hook.d.ts +4 -0
  419. package/vue3/src/lang/internal/en.json.d.ts +33 -6
  420. package/vue3/src/lang/internal/index.d.ts +27 -0
  421. package/vue3/src/lang/internal/ja.json.d.ts +34 -7
  422. package/vue3/src/lang/internal/ko.json.d.ts +34 -7
  423. package/vue3/src/lang/internal/ru.json.d.ts +34 -7
  424. package/vue3/src/lang/internal/zh-CN.json.d.ts +32 -5
  425. package/vue3/src/lang/internal/zh-TW.json.d.ts +33 -6
  426. package/vue3/src/vue-utils/index.d.ts +1 -0
  427. package/vue2/src/components/form/index.d.ts +0 -18
  428. package/vue3/src/components/form/index.d.ts +0 -18
@@ -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';
@@ -1,6 +1,7 @@
1
1
  declare function __VLS_template(): {
2
2
  attrs: Partial<{}>;
3
3
  slots: {
4
+ image?(_: {}): any;
4
5
  'image-overlay'?(_: {}): any;
5
6
  name?(_: {}): any;
6
7
  description?(_: {}): any;
@@ -31,7 +32,12 @@ declare const __VLS_component: import('vue').DefineComponent<{
31
32
  idLabel: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
32
33
  default: string;
33
34
  };
34
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
35
+ triggerClick: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
36
+ default: boolean;
37
+ };
38
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
39
+ "click-info": (arg?: void | undefined) => void;
40
+ }, string, Readonly<import('vue').ExtractPropTypes<{
35
41
  image: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
36
42
  imageWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
37
43
  default: number;
@@ -53,6 +59,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
53
59
  idLabel: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
54
60
  default: string;
55
61
  };
62
+ triggerClick: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
63
+ default: boolean;
64
+ };
56
65
  }>>, {
57
66
  tags: import('./props-define').InfoCardTagItem[];
58
67
  imageWidth: number;
@@ -60,6 +69,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
60
69
  imageRadius: string;
61
70
  idValue: string | number | boolean;
62
71
  idLabel: string;
72
+ triggerClick: boolean;
63
73
  }>;
64
74
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
65
75
  export default _default;
@@ -1,4 +1,4 @@
1
- import { TagType } from '../tag';
1
+ import { TagType } from '../../tag';
2
2
  export interface InfoCardTagItem {
3
3
  /**
4
4
  * 标签类型
@@ -63,8 +63,25 @@ export declare const infoCardProps: () => {
63
63
  idLabel: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
64
64
  default: string;
65
65
  };
66
+ /**
67
+ * 触发点击
68
+ * @default false
69
+ */
70
+ triggerClick: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
71
+ default: boolean;
72
+ };
73
+ };
74
+ export declare const infoCardEmits: () => {
75
+ /**
76
+ * 点击信息,仅传入 `triggerClick` 时才触发
77
+ */
78
+ 'click-info': import('../../../vue-utils').EmitFuncType<void>;
66
79
  };
67
80
  export interface InfoCardSlots {
81
+ /**
82
+ * 图片插槽
83
+ */
84
+ 'image': void;
68
85
  /**
69
86
  * 图片覆盖层插槽
70
87
  */
@@ -0,0 +1,195 @@
1
+ export declare const PwcMenu: 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
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
3
+ mode: import('vue-types').VueTypeDef<"button" | "vertical" | "horizontal" | "tab"> & {
4
+ default: "button" | "vertical" | "horizontal" | "tab";
5
+ };
6
+ collapsed: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
7
+ default: boolean;
8
+ };
9
+ effect: import('vue-types').VueTypeDef<"light" | "dark"> & {
10
+ default: "light" | "dark";
11
+ };
12
+ forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
13
+ default: boolean;
14
+ };
15
+ background: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
16
+ }>>, Readonly<import('vue').ExtractPropTypes<{
17
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
18
+ mode: import('vue-types').VueTypeDef<"button" | "vertical" | "horizontal" | "tab"> & {
19
+ default: "button" | "vertical" | "horizontal" | "tab";
20
+ };
21
+ collapsed: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
22
+ default: boolean;
23
+ };
24
+ effect: import('vue-types').VueTypeDef<"light" | "dark"> & {
25
+ default: "light" | "dark";
26
+ };
27
+ forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
28
+ default: boolean;
29
+ };
30
+ background: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
31
+ }>>, {
32
+ [x: string]: (...args: any[]) => void;
33
+ }, {
34
+ effect: "light" | "dark";
35
+ mode: "button" | "vertical" | "horizontal" | "tab";
36
+ collapsed: boolean;
37
+ forceExpand: boolean;
38
+ }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
39
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
40
+ mode: import('vue-types').VueTypeDef<"button" | "vertical" | "horizontal" | "tab"> & {
41
+ default: "button" | "vertical" | "horizontal" | "tab";
42
+ };
43
+ collapsed: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
44
+ default: boolean;
45
+ };
46
+ effect: import('vue-types').VueTypeDef<"light" | "dark"> & {
47
+ default: "light" | "dark";
48
+ };
49
+ forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
50
+ default: boolean;
51
+ };
52
+ background: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
53
+ }>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
54
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
55
+ mode: import('vue-types').VueTypeDef<"button" | "vertical" | "horizontal" | "tab"> & {
56
+ default: "button" | "vertical" | "horizontal" | "tab";
57
+ };
58
+ collapsed: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
59
+ default: boolean;
60
+ };
61
+ effect: import('vue-types').VueTypeDef<"light" | "dark"> & {
62
+ default: "light" | "dark";
63
+ };
64
+ forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
65
+ default: boolean;
66
+ };
67
+ background: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
68
+ }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
69
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
70
+ mode: import('vue-types').VueTypeDef<"button" | "vertical" | "horizontal" | "tab"> & {
71
+ default: "button" | "vertical" | "horizontal" | "tab";
72
+ };
73
+ collapsed: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
74
+ default: boolean;
75
+ };
76
+ effect: import('vue-types').VueTypeDef<"light" | "dark"> & {
77
+ default: "light" | "dark";
78
+ };
79
+ forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
80
+ default: boolean;
81
+ };
82
+ background: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
83
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
84
+ [x: string]: (...args: any[]) => void;
85
+ }, string, {
86
+ effect: "light" | "dark";
87
+ mode: "button" | "vertical" | "horizontal" | "tab";
88
+ collapsed: boolean;
89
+ forceExpand: boolean;
90
+ }> & {
91
+ props: {
92
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
93
+ mode: import('vue-types').VueTypeDef<"button" | "vertical" | "horizontal" | "tab"> & {
94
+ default: "button" | "vertical" | "horizontal" | "tab";
95
+ };
96
+ collapsed: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
97
+ default: boolean;
98
+ };
99
+ effect: import('vue-types').VueTypeDef<"light" | "dark"> & {
100
+ default: "light" | "dark";
101
+ };
102
+ forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
103
+ default: boolean;
104
+ };
105
+ background: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
106
+ };
107
+ } & (new () => {
108
+ $scopedSlots: {
109
+ header?(_: {}): any;
110
+ default?(_: {}): any;
111
+ };
112
+ }), import('../../vue-utils/install-utils').InstallOptions>;
113
+ export declare const PwcSubMenu: 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<{
114
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
115
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
116
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
117
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
118
+ default: boolean;
119
+ };
120
+ }>>, Readonly<import('vue').ExtractPropTypes<{
121
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
122
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
123
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
124
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
125
+ default: boolean;
126
+ };
127
+ }>>, {}, {
128
+ iconMode: boolean;
129
+ }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
130
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
131
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
132
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
133
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
134
+ default: boolean;
135
+ };
136
+ }>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
137
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
138
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
139
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
140
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
141
+ default: boolean;
142
+ };
143
+ }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
144
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
145
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
146
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
147
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
148
+ default: boolean;
149
+ };
150
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
151
+ iconMode: boolean;
152
+ }> & {
153
+ props: {
154
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
155
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
156
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
157
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
158
+ default: boolean;
159
+ };
160
+ };
161
+ } & (new () => {
162
+ $scopedSlots: {
163
+ icon?(_: {
164
+ isActive: boolean;
165
+ }): any;
166
+ title?(_: {}): any;
167
+ default?(_: {}): any;
168
+ default?(_: {}): any;
169
+ };
170
+ }), import('../../vue-utils/install-utils').InstallOptions>;
171
+ export declare const PwcMenuItem: import('../../vue-utils/install-utils').SFCInstall<import('vue').DefineComponent<{
172
+ index: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
173
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
174
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
175
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
176
+ to: import('vue-types').VueTypeDef<string | import('./src/props-define').MenuRouterLocation>;
177
+ href: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
178
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
179
+ default: boolean;
180
+ };
181
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
182
+ index: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
183
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
184
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
185
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
186
+ to: import('vue-types').VueTypeDef<string | import('./src/props-define').MenuRouterLocation>;
187
+ href: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
188
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
189
+ default: boolean;
190
+ };
191
+ }>>, {
192
+ iconMode: boolean;
193
+ }>, import('../../vue-utils/install-utils').InstallOptions>;
194
+ export declare const PwcMenuDivider: import('../../vue-utils/install-utils').SFCInstall<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>, import('../../vue-utils/install-utils').InstallOptions>;
195
+ export * from './src/props-define';
@@ -0,0 +1,29 @@
1
+ import { UseRenderSlotsReturn } from '../../../../hooks/vue/use-render-slots';
2
+ import { VueProps } from '../../../../vue-utils';
3
+ import { ComputedRef, InjectionKey } from 'vue';
4
+ import { menuItemProps, MenuItemSlots } from '../props-define';
5
+ export interface MenuItemInstance {
6
+ /**
7
+ * 获取是否激活
8
+ */
9
+ getIsActive: () => boolean;
10
+ }
11
+ export interface MenuItemInjectData {
12
+ menuItemProps: VueProps<typeof menuItemProps>;
13
+ /** 是否激活 */
14
+ isActive: ComputedRef<boolean>;
15
+ onClickItem: () => void;
16
+ menuItemSlotRes: UseRenderSlotsReturn<MenuItemSlots>;
17
+ }
18
+ export declare const MENU_ITEM_INJECT_KEY: InjectionKey<MenuItemInjectData>;
19
+ interface RouterLinkSlotData {
20
+ href: string;
21
+ isActive: boolean;
22
+ isExactActive: boolean;
23
+ }
24
+ export declare const useMenuItem: (options: {
25
+ props: VueProps<typeof menuItemProps>;
26
+ }) => {
27
+ receiveRouterSlotData: (slotData: RouterLinkSlotData) => {};
28
+ };
29
+ export {};
@@ -0,0 +1,14 @@
1
+ import { VueProps } from '../../../../vue-utils';
2
+ import { menuProps } from '../props-define';
3
+ import { ComputedRef } from 'vue';
4
+ export interface MenuInjectData {
5
+ menuProps: VueProps<typeof menuProps>;
6
+ modelValue: ComputedRef<string | undefined>;
7
+ updateModelValue: (value: string | undefined) => void;
8
+ }
9
+ export declare const useMenu: (options: {
10
+ props: VueProps<typeof menuProps>;
11
+ }) => {
12
+ menuClass: ComputedRef<string[]>;
13
+ };
14
+ export declare const useMenuInject: () => MenuInjectData;
@@ -0,0 +1,26 @@
1
+ import { VueProps } from '../../../../vue-utils';
2
+ import { subMenuProps } from '../props-define';
3
+ import { InjectionKey, Ref } from 'vue';
4
+ import { MenuItemInstance } from './use-menu-item';
5
+ export interface SubMenuInjectData {
6
+ menuItemList: Ref<MenuItemInstance[]>;
7
+ contentRef: Ref<HTMLDivElement | undefined>;
8
+ }
9
+ export interface SubMenuPopperInjectData {
10
+ }
11
+ export declare const SUB_MENU_POPPER_INJECT_KEY: InjectionKey<SubMenuPopperInjectData>;
12
+ export declare const useSubMenu: (options: {
13
+ props: VueProps<typeof subMenuProps>;
14
+ }) => {
15
+ isActive: import('vue').ComputedRef<boolean>;
16
+ isExpand: Ref<boolean>;
17
+ toggleExpand: () => void;
18
+ subMenuIcon: import('vue').ComputedRef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption | undefined>;
19
+ onClickSubMenu: () => void;
20
+ contentRef: Ref<HTMLDivElement | undefined>;
21
+ menuItemList: Ref<{
22
+ getIsActive: () => boolean;
23
+ }[]>;
24
+ };
25
+ export declare const useSubMenuPopperInject: () => SubMenuPopperInjectData | undefined;
26
+ export declare const useSubMenuInject: (menuItemInstance?: MenuItemInstance) => SubMenuInjectData | undefined;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -0,0 +1,24 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ index: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
3
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
4
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
5
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
6
+ to: import('vue-types').VueTypeDef<string | import('./props-define').MenuRouterLocation>;
7
+ href: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
8
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
9
+ default: boolean;
10
+ };
11
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
12
+ index: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
13
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
14
+ icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
15
+ activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
16
+ to: import('vue-types').VueTypeDef<string | import('./props-define').MenuRouterLocation>;
17
+ href: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
18
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
19
+ default: boolean;
20
+ };
21
+ }>>, {
22
+ iconMode: boolean;
23
+ }>;
24
+ export default _default;
@@ -0,0 +1,55 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ header?(_: {}): any;
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: HTMLDivElement;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<{
12
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
13
+ mode: import('vue-types').VueTypeDef<"button" | "vertical" | "horizontal" | "tab"> & {
14
+ default: "button" | "vertical" | "horizontal" | "tab";
15
+ };
16
+ collapsed: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
17
+ default: boolean;
18
+ };
19
+ effect: import('vue-types').VueTypeDef<"light" | "dark"> & {
20
+ default: "light" | "dark";
21
+ };
22
+ forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
23
+ default: boolean;
24
+ };
25
+ background: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
26
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
27
+ [x: string]: (...args: any[]) => void;
28
+ }, string, Readonly<import('vue').ExtractPropTypes<{
29
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
30
+ mode: import('vue-types').VueTypeDef<"button" | "vertical" | "horizontal" | "tab"> & {
31
+ default: "button" | "vertical" | "horizontal" | "tab";
32
+ };
33
+ collapsed: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
34
+ default: boolean;
35
+ };
36
+ effect: import('vue-types').VueTypeDef<"light" | "dark"> & {
37
+ default: "light" | "dark";
38
+ };
39
+ forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
40
+ default: boolean;
41
+ };
42
+ background: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
43
+ }>>, {
44
+ effect: "light" | "dark";
45
+ mode: "button" | "vertical" | "horizontal" | "tab";
46
+ collapsed: boolean;
47
+ forceExpand: boolean;
48
+ }>;
49
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
50
+ export default _default;
51
+ type __VLS_WithTemplateSlots<T, S> = T & {
52
+ new (): {
53
+ $scopedSlots: S;
54
+ };
55
+ };