@polyv/vue-components 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (263) hide show
  1. package/package.json +2 -2
  2. package/styles/root/basic.scss +14 -7
  3. package/styles/root/border.scss +6 -0
  4. package/styles/skin-color.scss +37 -11
  5. package/styles/variables.scss +15 -1
  6. package/vue2/index.es.js +16155 -21494
  7. package/vue2/src/components/alert/index.d.ts +2 -0
  8. package/vue2/src/components/alert/src/alert.vue.d.ts +2 -0
  9. package/vue2/src/components/alert/src/props-define.d.ts +8 -0
  10. package/vue2/src/components/business/channel-cover/index.d.ts +38 -0
  11. package/vue2/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  12. package/vue2/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  13. package/vue2/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  14. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  15. package/vue2/src/components/business/external-links/external-links.vue.d.ts +1 -2
  16. package/vue2/src/components/business/external-links/use-external-links.d.ts +111 -3
  17. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +22 -0
  18. package/vue2/src/components/collapse-transition/index.d.ts +36 -0
  19. package/vue2/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  20. package/vue2/src/components/collapse-transition/src/props-define.d.ts +9 -0
  21. package/vue2/src/components/example/example.vue.d.ts +16 -1
  22. package/vue2/src/components/example/index.d.ts +75 -4
  23. package/vue2/src/components/exports.d.ts +22 -1
  24. package/vue2/src/components/form/file-upload/index.d.ts +467 -0
  25. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +185 -0
  26. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +296 -0
  27. package/vue2/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  28. package/vue2/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  29. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  30. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  31. package/vue2/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  32. package/vue2/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  33. package/vue2/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  34. package/vue2/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  35. package/vue2/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  36. package/vue2/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  37. package/vue2/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  38. package/vue2/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  39. package/vue2/src/components/form/form-item/index.d.ts +2 -2
  40. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +1 -1
  41. package/vue2/src/components/form/form-submit-button/index.d.ts +1 -1
  42. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  43. package/vue2/src/components/form/form-wrap/index.d.ts +8 -2
  44. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +3 -1
  45. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -0
  46. package/vue2/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  47. package/vue2/src/components/form/input-number/index.d.ts +2 -2
  48. package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  49. package/vue2/src/components/form/select/index.d.ts +40 -40
  50. package/vue2/src/components/form/timezone-picker/index.d.ts +70 -70
  51. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +18 -18
  52. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -42
  53. package/vue2/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  54. package/vue2/src/components/form/transfer/transfer.vue.d.ts +0 -1
  55. package/vue2/src/components/icons/icons/effect/index.d.ts +6 -0
  56. package/vue2/src/components/icons/icons/file/index.d.ts +6 -0
  57. package/vue2/src/components/icons/icons/id-card/index.d.ts +6 -0
  58. package/vue2/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  59. package/vue2/src/components/icons/icons/lang/index.d.ts +6 -0
  60. package/vue2/src/components/icons/icons/link/index.d.ts +6 -0
  61. package/vue2/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  62. package/vue2/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  63. package/vue2/src/components/icons/icons/platform/index.d.ts +6 -0
  64. package/vue2/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  65. package/vue2/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  66. package/vue2/src/components/icons/icons/upload-three/index.d.ts +6 -0
  67. package/vue2/src/components/icons/icons/user/index.d.ts +6 -0
  68. package/vue2/src/components/icons/icons/user-filled/index.d.ts +6 -0
  69. package/vue2/src/components/icons/icons/video/index.d.ts +6 -0
  70. package/vue2/src/components/icons/icons/video-filled/index.d.ts +6 -0
  71. package/vue2/src/components/icons/map.d.ts +16 -0
  72. package/vue2/src/components/info-card/index.d.ts +181 -2
  73. package/{vue3/src/components/info-card → vue2/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  74. package/vue2/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  75. package/vue2/src/components/menu/index.d.ts +156 -0
  76. package/vue2/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  77. package/vue2/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  78. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  79. package/vue2/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  80. package/vue2/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  81. package/vue2/src/components/menu/src/menu-item.vue.d.ts +14 -0
  82. package/vue2/src/components/menu/src/menu.vue.d.ts +52 -0
  83. package/vue2/src/components/menu/src/props-define.d.ts +114 -0
  84. package/vue2/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  85. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  86. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  87. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  88. package/vue2/src/components/pagination/use-pagination.d.ts +3 -3
  89. package/vue2/src/components/popconfirm/index.d.ts +20 -0
  90. package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  91. package/vue2/src/components/popconfirm/src/props-define.d.ts +3 -0
  92. package/vue2/src/components/popover/index.d.ts +20 -0
  93. package/vue2/src/components/popover/src/popover.vue.d.ts +7 -0
  94. package/vue2/src/components/popover/src/props-define.d.ts +3 -0
  95. package/vue2/src/components/popup/index.d.ts +13 -6
  96. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  97. package/vue2/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  98. package/vue2/src/components/popup/src/popup.vue.d.ts +4 -2
  99. package/vue2/src/components/popup/src/types.d.ts +3 -0
  100. package/vue2/src/components/slider/index.d.ts +8 -1
  101. package/vue2/src/components/slider/src/props-define.d.ts +7 -0
  102. package/vue2/src/components/slider/src/slider.vue.d.ts +8 -1
  103. package/vue2/src/components/table/index.d.ts +84 -12
  104. package/vue2/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  105. package/vue2/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  106. package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  107. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  108. package/vue2/src/components/table/src/hooks/props-define.d.ts +58 -2
  109. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  110. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  111. package/vue2/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  112. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  113. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  114. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  115. package/vue2/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  116. package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  117. package/vue2/src/components/table/src/table-column.vue.d.ts +13 -4
  118. package/vue2/src/components/table/src/table.vue.d.ts +16 -0
  119. package/vue2/src/components/table/src/types/index.d.ts +1 -1
  120. package/vue2/src/components/tooltip/index.d.ts +20 -0
  121. package/vue2/src/components/tooltip/src/props-define.d.ts +7 -0
  122. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  123. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  124. package/vue2/src/hooks/exports.d.ts +1 -0
  125. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  126. package/vue2/src/lang/internal/en.json.d.ts +28 -6
  127. package/vue2/src/lang/internal/index.d.ts +22 -0
  128. package/vue2/src/lang/internal/ja.json.d.ts +29 -7
  129. package/vue2/src/lang/internal/ko.json.d.ts +29 -7
  130. package/vue2/src/lang/internal/ru.json.d.ts +29 -7
  131. package/vue2/src/lang/internal/zh-CN.json.d.ts +27 -5
  132. package/vue2/src/lang/internal/zh-TW.json.d.ts +28 -6
  133. package/vue2/src/vue-utils/index.d.ts +1 -0
  134. package/vue3/index.es.js +16162 -21506
  135. package/vue3/src/components/alert/index.d.ts +2 -0
  136. package/vue3/src/components/alert/src/alert.vue.d.ts +2 -0
  137. package/vue3/src/components/alert/src/props-define.d.ts +8 -0
  138. package/vue3/src/components/business/channel-cover/index.d.ts +38 -0
  139. package/vue3/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  140. package/vue3/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  141. package/vue3/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  142. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  143. package/vue3/src/components/business/external-links/external-links.vue.d.ts +1 -2
  144. package/vue3/src/components/business/external-links/use-external-links.d.ts +111 -3
  145. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +22 -0
  146. package/vue3/src/components/collapse-transition/index.d.ts +36 -0
  147. package/vue3/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  148. package/vue3/src/components/collapse-transition/src/props-define.d.ts +9 -0
  149. package/vue3/src/components/example/example.vue.d.ts +16 -1
  150. package/vue3/src/components/example/index.d.ts +75 -4
  151. package/vue3/src/components/exports.d.ts +22 -1
  152. package/vue3/src/components/form/file-upload/index.d.ts +467 -0
  153. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +185 -0
  154. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +296 -0
  155. package/vue3/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  156. package/vue3/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  157. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  158. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  159. package/vue3/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  160. package/vue3/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  161. package/vue3/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  162. package/vue3/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  163. package/vue3/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  164. package/vue3/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  165. package/vue3/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  166. package/vue3/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  167. package/vue3/src/components/form/form-item/index.d.ts +2 -2
  168. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +1 -1
  169. package/vue3/src/components/form/form-submit-button/index.d.ts +1 -1
  170. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  171. package/vue3/src/components/form/form-wrap/index.d.ts +8 -2
  172. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +3 -1
  173. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -0
  174. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  175. package/vue3/src/components/form/input-number/index.d.ts +2 -2
  176. package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  177. package/vue3/src/components/form/select/index.d.ts +40 -40
  178. package/vue3/src/components/form/timezone-picker/index.d.ts +70 -70
  179. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +18 -18
  180. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -42
  181. package/vue3/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  182. package/vue3/src/components/form/transfer/transfer.vue.d.ts +0 -1
  183. package/vue3/src/components/icons/icons/effect/index.d.ts +6 -0
  184. package/vue3/src/components/icons/icons/file/index.d.ts +6 -0
  185. package/vue3/src/components/icons/icons/id-card/index.d.ts +6 -0
  186. package/vue3/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  187. package/vue3/src/components/icons/icons/lang/index.d.ts +6 -0
  188. package/vue3/src/components/icons/icons/link/index.d.ts +6 -0
  189. package/vue3/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  190. package/vue3/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  191. package/vue3/src/components/icons/icons/platform/index.d.ts +6 -0
  192. package/vue3/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  193. package/vue3/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  194. package/vue3/src/components/icons/icons/upload-three/index.d.ts +6 -0
  195. package/vue3/src/components/icons/icons/user/index.d.ts +6 -0
  196. package/vue3/src/components/icons/icons/user-filled/index.d.ts +6 -0
  197. package/vue3/src/components/icons/icons/video/index.d.ts +6 -0
  198. package/vue3/src/components/icons/icons/video-filled/index.d.ts +6 -0
  199. package/vue3/src/components/icons/map.d.ts +16 -0
  200. package/vue3/src/components/info-card/index.d.ts +181 -2
  201. package/{vue2/src/components/info-card → vue3/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  202. package/vue3/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  203. package/vue3/src/components/menu/index.d.ts +156 -0
  204. package/vue3/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  205. package/vue3/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  206. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  207. package/vue3/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  208. package/vue3/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  209. package/vue3/src/components/menu/src/menu-item.vue.d.ts +14 -0
  210. package/vue3/src/components/menu/src/menu.vue.d.ts +52 -0
  211. package/vue3/src/components/menu/src/props-define.d.ts +114 -0
  212. package/vue3/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  213. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  214. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  215. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  216. package/vue3/src/components/pagination/use-pagination.d.ts +3 -3
  217. package/vue3/src/components/popconfirm/index.d.ts +20 -0
  218. package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  219. package/vue3/src/components/popconfirm/src/props-define.d.ts +3 -0
  220. package/vue3/src/components/popover/index.d.ts +20 -0
  221. package/vue3/src/components/popover/src/popover.vue.d.ts +7 -0
  222. package/vue3/src/components/popover/src/props-define.d.ts +3 -0
  223. package/vue3/src/components/popup/index.d.ts +13 -6
  224. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  225. package/vue3/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  226. package/vue3/src/components/popup/src/popup.vue.d.ts +4 -2
  227. package/vue3/src/components/popup/src/types.d.ts +3 -0
  228. package/vue3/src/components/slider/index.d.ts +8 -1
  229. package/vue3/src/components/slider/src/props-define.d.ts +7 -0
  230. package/vue3/src/components/slider/src/slider.vue.d.ts +8 -1
  231. package/vue3/src/components/table/index.d.ts +84 -12
  232. package/vue3/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  233. package/vue3/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  234. package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  235. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  236. package/vue3/src/components/table/src/hooks/props-define.d.ts +58 -2
  237. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  238. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  239. package/vue3/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  240. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  241. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  242. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  243. package/vue3/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  244. package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  245. package/vue3/src/components/table/src/table-column.vue.d.ts +13 -4
  246. package/vue3/src/components/table/src/table.vue.d.ts +16 -0
  247. package/vue3/src/components/table/src/types/index.d.ts +1 -1
  248. package/vue3/src/components/tooltip/index.d.ts +20 -0
  249. package/vue3/src/components/tooltip/src/props-define.d.ts +7 -0
  250. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  251. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  252. package/vue3/src/hooks/exports.d.ts +1 -0
  253. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  254. package/vue3/src/lang/internal/en.json.d.ts +28 -6
  255. package/vue3/src/lang/internal/index.d.ts +22 -0
  256. package/vue3/src/lang/internal/ja.json.d.ts +29 -7
  257. package/vue3/src/lang/internal/ko.json.d.ts +29 -7
  258. package/vue3/src/lang/internal/ru.json.d.ts +29 -7
  259. package/vue3/src/lang/internal/zh-CN.json.d.ts +27 -5
  260. package/vue3/src/lang/internal/zh-TW.json.d.ts +28 -6
  261. package/vue3/src/vue-utils/index.d.ts +1 -0
  262. package/vue2/src/components/form/index.d.ts +0 -18
  263. package/vue3/src/components/form/index.d.ts +0 -18
@@ -0,0 +1,114 @@
1
+ export declare const menuEffects: readonly ["light", "dark"];
2
+ export type MenuEffect = typeof menuEffects[number];
3
+ export declare const menuModes: readonly ["horizontal", "vertical"];
4
+ export type MenuMode = typeof menuModes[number];
5
+ export interface MenuRouterLocation {
6
+ name?: string;
7
+ path?: string;
8
+ hash?: string;
9
+ query?: Record<string, string | (string | null)[] | null | undefined>;
10
+ params?: Record<string, string>;
11
+ append?: boolean;
12
+ replace?: boolean;
13
+ }
14
+ export declare const menuProps: () => {
15
+ /**
16
+ * 绑定值
17
+ */
18
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
19
+ /**
20
+ * 菜单模式
21
+ * @default 'vertical'
22
+ */
23
+ mode: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
24
+ default: "vertical" | "horizontal";
25
+ };
26
+ /**
27
+ * 是否折叠
28
+ * @default false
29
+ */
30
+ collapsed: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
31
+ default: boolean;
32
+ };
33
+ /**
34
+ * 菜单主题
35
+ * @default 'dark'
36
+ */
37
+ effect: import('vue-types').VueTypeDef<"light" | "dark"> & {
38
+ default: "light" | "dark";
39
+ };
40
+ /**
41
+ * 强制展开子菜单
42
+ * @default false
43
+ */
44
+ forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
45
+ default: boolean;
46
+ };
47
+ };
48
+ export declare const menuEmits: () => {};
49
+ export declare const subMenuProps: () => {
50
+ /**
51
+ * 标题
52
+ */
53
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
54
+ /**
55
+ * 图标
56
+ */
57
+ 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>>;
58
+ /**
59
+ * 激活时的图标
60
+ */
61
+ 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>>;
62
+ };
63
+ export interface SubMenuSlots {
64
+ /**
65
+ * 标题
66
+ */
67
+ title: void;
68
+ /**
69
+ * 图标
70
+ */
71
+ icon: {
72
+ /**
73
+ * 是否激活
74
+ */
75
+ isActive: boolean;
76
+ };
77
+ }
78
+ export declare const menuItemProps: () => {
79
+ /**
80
+ * 索引
81
+ */
82
+ index: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
83
+ /**
84
+ * 标题
85
+ */
86
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
87
+ /**
88
+ * 图标
89
+ */
90
+ 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>>;
91
+ /**
92
+ * 激活时的图标
93
+ */
94
+ 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>>;
95
+ /**
96
+ * 路由跳转
97
+ */
98
+ to: import('vue-types').VueTypeDef<string | MenuRouterLocation>;
99
+ };
100
+ export interface MenuItemSlots {
101
+ /**
102
+ * 标题
103
+ */
104
+ title: void;
105
+ /**
106
+ * 图标
107
+ */
108
+ icon: {
109
+ /**
110
+ * 是否激活
111
+ */
112
+ isActive: boolean;
113
+ };
114
+ }
@@ -0,0 +1,19 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {
7
+ popperRef: HTMLDivElement;
8
+ };
9
+ rootEl: HTMLDivElement;
10
+ };
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
13
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
14
+ export default _default;
15
+ type __VLS_WithTemplateSlots<T, S> = T & {
16
+ new (): {
17
+ $scopedSlots: S;
18
+ };
19
+ };
@@ -0,0 +1,32 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ icon?(_: {
5
+ isActive: boolean;
6
+ }): any;
7
+ title?(_: {}): any;
8
+ default?(_: {}): any;
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {
12
+ contentRef: HTMLDivElement;
13
+ };
14
+ rootEl: HTMLDivElement;
15
+ };
16
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
+ declare const __VLS_component: import('vue').DefineComponent<{
18
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
19
+ 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>>;
20
+ 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>>;
21
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
22
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
23
+ 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>>;
24
+ 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>>;
25
+ }>>, {}>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
+ export default _default;
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $scopedSlots: S;
31
+ };
32
+ };
@@ -278,8 +278,8 @@ declare const _default: import('vue').DefineComponent<{
278
278
  showConfirmButton: boolean;
279
279
  confirmType: import('../../..').ConfirmType;
280
280
  showCancelButton: boolean;
281
- defaultValue: string;
282
281
  showInput: boolean;
282
+ defaultValue: string;
283
283
  requireMessage: string;
284
284
  }>;
285
285
  export default _default;
@@ -79,8 +79,8 @@ export declare const messageBoxElementProps: () => {
79
79
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
80
80
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
81
81
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
82
- "v-model-key": import('vue-types').VueTypeDef<import('../../form').InputValueType> & {
83
- default: import('../../form').InputValueType;
82
+ "v-model-key": import('vue-types').VueTypeDef<import('../../form/input').InputValueType> & {
83
+ default: import('../../form/input').InputValueType;
84
84
  };
85
85
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
86
86
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -131,8 +131,8 @@ export declare const messageBoxElementProps: () => {
131
131
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
132
132
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
133
133
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
134
- "v-model-key": import('vue-types').VueTypeDef<import('../../form').InputValueType> & {
135
- default: import('../../form').InputValueType;
134
+ "v-model-key": import('vue-types').VueTypeDef<import('../../form/input').InputValueType> & {
135
+ default: import('../../form/input').InputValueType;
136
136
  };
137
137
  }>>>>;
138
138
  };
@@ -165,11 +165,12 @@ export declare const useMessageBoxElement: (options: {
165
165
  labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
166
166
  labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
167
167
  contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
168
- submitAction: import('vue-types').VueTypeValidableDef<import('../../form').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form').FormSubmitAction>>;
168
+ submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
169
169
  labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
170
170
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
171
171
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
172
172
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
173
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
173
174
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
174
175
  }>>, Readonly<import('vue').ExtractPropTypes<{
175
176
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
@@ -182,11 +183,12 @@ export declare const useMessageBoxElement: (options: {
182
183
  labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
183
184
  labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
184
185
  contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
185
- submitAction: import('vue-types').VueTypeValidableDef<import('../../form').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form').FormSubmitAction>>;
186
+ submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
186
187
  labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
187
188
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
188
189
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
189
190
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
191
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
190
192
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
191
193
  }>>, {
192
194
  "submit-form": (arg: import('../../..').UniversalParams<any>) => void;
@@ -204,14 +206,15 @@ export declare const useMessageBoxElement: (options: {
204
206
  labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
205
207
  labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
206
208
  contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
207
- submitAction: import('vue-types').VueTypeValidableDef<import('../../form').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form').FormSubmitAction>>;
209
+ submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
208
210
  labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
209
211
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
210
212
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
211
213
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
214
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
212
215
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
213
216
  }>>> & import('vue').ShallowUnwrapRef<{
214
- validateCurrentForm: (validateOptions?: import('../../form').FormValidateOptions) => Promise<void>;
217
+ validateCurrentForm: (validateOptions?: import('../../exports').FormValidateOptions) => Promise<void>;
215
218
  buildFormData: <D extends Record<string | number, any>>() => D;
216
219
  }> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
217
220
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
@@ -224,11 +227,12 @@ export declare const useMessageBoxElement: (options: {
224
227
  labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
225
228
  labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
226
229
  contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
227
- submitAction: import('vue-types').VueTypeValidableDef<import('../../form').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form').FormSubmitAction>>;
230
+ submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
228
231
  labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
229
232
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
230
233
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
231
234
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
235
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
232
236
  effect: import('vue-types').VueTypeDef<"fill" | "outline">;
233
237
  }>> & {
234
238
  $scopedSlots: {
@@ -1,8 +1,8 @@
1
+ import { FormSize } from '../form/types';
2
+ import { PageContent } from '../../hooks/pagination/types';
1
3
  import { VueEmit, VueProps } from '../../vue-utils';
2
- import { paginationEmits, paginationProps } from './props-define';
3
4
  import { ComputedRef } from 'vue';
4
- import { PageContent } from '../../hooks/pagination/types';
5
- import { FormSize } from '../form';
5
+ import { paginationEmits, paginationProps } from './props-define';
6
6
  export interface PaginationInjectData {
7
7
  props: VueProps<typeof paginationProps>;
8
8
  pageNumber: ComputedRef<number>;
@@ -32,6 +32,9 @@ export declare const PwcPopconfirm: import('../../vue-utils/install-utils').SFCI
32
32
  offset: import('vue-types').VueTypeDef<import('../..').PopperOffset> & {
33
33
  default: () => import('../..').PopperOffset;
34
34
  };
35
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
36
+ default: boolean;
37
+ };
35
38
  showConfirmButton: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
36
39
  default: boolean;
37
40
  };
@@ -80,6 +83,9 @@ export declare const PwcPopconfirm: import('../../vue-utils/install-utils').SFCI
80
83
  offset: import('vue-types').VueTypeDef<import('../..').PopperOffset> & {
81
84
  default: () => import('../..').PopperOffset;
82
85
  };
86
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
87
+ default: boolean;
88
+ };
83
89
  showConfirmButton: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
84
90
  default: boolean;
85
91
  };
@@ -99,6 +105,7 @@ export declare const PwcPopconfirm: import('../../vue-utils/install-utils').SFCI
99
105
  confirm: (arg?: void | undefined) => void;
100
106
  }, {
101
107
  "v-model-key": boolean;
108
+ ignoreSkinColor: boolean;
102
109
  disabled: boolean;
103
110
  offset: import('../..').PopperOffset;
104
111
  raw: boolean;
@@ -145,6 +152,9 @@ export declare const PwcPopconfirm: import('../../vue-utils/install-utils').SFCI
145
152
  offset: import('vue-types').VueTypeDef<import('../..').PopperOffset> & {
146
153
  default: () => import('../..').PopperOffset;
147
154
  };
155
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
156
+ default: boolean;
157
+ };
148
158
  showConfirmButton: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
149
159
  default: boolean;
150
160
  };
@@ -193,6 +203,9 @@ export declare const PwcPopconfirm: import('../../vue-utils/install-utils').SFCI
193
203
  offset: import('vue-types').VueTypeDef<import('../..').PopperOffset> & {
194
204
  default: () => import('../..').PopperOffset;
195
205
  };
206
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
207
+ default: boolean;
208
+ };
196
209
  showConfirmButton: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
197
210
  default: boolean;
198
211
  };
@@ -241,6 +254,9 @@ export declare const PwcPopconfirm: import('../../vue-utils/install-utils').SFCI
241
254
  offset: import('vue-types').VueTypeDef<import('../..').PopperOffset> & {
242
255
  default: () => import('../..').PopperOffset;
243
256
  };
257
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
258
+ default: boolean;
259
+ };
244
260
  showConfirmButton: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
245
261
  default: boolean;
246
262
  };
@@ -260,6 +276,7 @@ export declare const PwcPopconfirm: import('../../vue-utils/install-utils').SFCI
260
276
  confirm: (arg?: void | undefined) => void;
261
277
  }, string, {
262
278
  "v-model-key": boolean;
279
+ ignoreSkinColor: boolean;
263
280
  disabled: boolean;
264
281
  offset: import('../..').PopperOffset;
265
282
  raw: boolean;
@@ -307,6 +324,9 @@ export declare const PwcPopconfirm: import('../../vue-utils/install-utils').SFCI
307
324
  offset: import('vue-types').VueTypeDef<import('../..').PopperOffset> & {
308
325
  default: () => import('../..').PopperOffset;
309
326
  };
327
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
328
+ default: boolean;
329
+ };
310
330
  showConfirmButton: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
311
331
  default: boolean;
312
332
  };
@@ -34,6 +34,9 @@ declare function __VLS_template(): {
34
34
  default: () => import('../../..').PopperOffset;
35
35
  };
36
36
  feedbackType: import('vue-types').VueTypeValidableDef<import('../../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../../..').FeedbackType>>;
37
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
38
+ default: boolean;
39
+ };
37
40
  }>>, Readonly<import('vue').ExtractPropTypes<{
38
41
  "v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
39
42
  default: boolean;
@@ -63,10 +66,14 @@ declare function __VLS_template(): {
63
66
  default: () => import('../../..').PopperOffset;
64
67
  };
65
68
  feedbackType: import('vue-types').VueTypeValidableDef<import('../../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../../..').FeedbackType>>;
69
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
70
+ default: boolean;
71
+ };
66
72
  }>>, {
67
73
  [x: string]: (...args: any[]) => void;
68
74
  }, {
69
75
  "v-model-key": boolean;
76
+ ignoreSkinColor: boolean;
70
77
  disabled: boolean;
71
78
  offset: import('../../..').PopperOffset;
72
79
  raw: boolean;
@@ -103,6 +110,9 @@ declare function __VLS_template(): {
103
110
  default: () => import('../../..').PopperOffset;
104
111
  };
105
112
  feedbackType: import('vue-types').VueTypeValidableDef<import('../../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../../..').FeedbackType>>;
113
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
114
+ default: boolean;
115
+ };
106
116
  }>>> & import('vue').ShallowUnwrapRef<{
107
117
  hidePopper: () => void;
108
118
  showPopper: () => void;
@@ -135,6 +145,9 @@ declare function __VLS_template(): {
135
145
  default: () => import('../../..').PopperOffset;
136
146
  };
137
147
  feedbackType: import('vue-types').VueTypeValidableDef<import('../../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../../..').FeedbackType>>;
148
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
149
+ default: boolean;
150
+ };
138
151
  }>> & {
139
152
  $scopedSlots: {
140
153
  reference?(_: {}): any;
@@ -179,6 +192,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
179
192
  offset: import('vue-types').VueTypeDef<import('../../..').PopperOffset> & {
180
193
  default: () => import('../../..').PopperOffset;
181
194
  };
195
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
196
+ default: boolean;
197
+ };
182
198
  showConfirmButton: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
183
199
  default: boolean;
184
200
  };
@@ -230,6 +246,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
230
246
  offset: import('vue-types').VueTypeDef<import('../../..').PopperOffset> & {
231
247
  default: () => import('../../..').PopperOffset;
232
248
  };
249
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
250
+ default: boolean;
251
+ };
233
252
  showConfirmButton: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
234
253
  default: boolean;
235
254
  };
@@ -246,6 +265,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
246
265
  cancelButtonType: import('vue-types').VueTypeDef<"success" | "warning" | "primary" | "danger" | "ordinary">;
247
266
  }>>, {
248
267
  "v-model-key": boolean;
268
+ ignoreSkinColor: boolean;
249
269
  disabled: boolean;
250
270
  offset: import('../../..').PopperOffset;
251
271
  raw: boolean;
@@ -51,6 +51,9 @@ export declare const popconfirmProps: () => {
51
51
  offset: import('vue-types').VueTypeDef<import('../../../hooks/components/use-popper').PopperOffset> & {
52
52
  default: () => import('../../../hooks/components/use-popper').PopperOffset;
53
53
  };
54
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
55
+ default: boolean;
56
+ };
54
57
  showConfirmButton: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
55
58
  default: boolean;
56
59
  };
@@ -27,6 +27,9 @@ export declare const PwcPopover: import('../../vue-utils/install-utils').SFCInst
27
27
  default: () => import('../..').PopperOffset;
28
28
  };
29
29
  feedbackType: import('vue-types').VueTypeValidableDef<import('../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../..').FeedbackType>>;
30
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
31
+ default: boolean;
32
+ };
30
33
  }>>, Readonly<import('vue').ExtractPropTypes<{
31
34
  "v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
32
35
  default: boolean;
@@ -56,10 +59,14 @@ export declare const PwcPopover: import('../../vue-utils/install-utils').SFCInst
56
59
  default: () => import('../..').PopperOffset;
57
60
  };
58
61
  feedbackType: import('vue-types').VueTypeValidableDef<import('../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../..').FeedbackType>>;
62
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
63
+ default: boolean;
64
+ };
59
65
  }>>, {
60
66
  [x: string]: (...args: any[]) => void;
61
67
  }, {
62
68
  "v-model-key": boolean;
69
+ ignoreSkinColor: boolean;
63
70
  disabled: boolean;
64
71
  offset: import('../..').PopperOffset;
65
72
  raw: boolean;
@@ -96,6 +103,9 @@ export declare const PwcPopover: import('../../vue-utils/install-utils').SFCInst
96
103
  default: () => import('../..').PopperOffset;
97
104
  };
98
105
  feedbackType: import('vue-types').VueTypeValidableDef<import('../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../..').FeedbackType>>;
106
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
107
+ default: boolean;
108
+ };
99
109
  }>>> & import('vue').ShallowUnwrapRef<{
100
110
  hidePopper: () => void;
101
111
  showPopper: () => void;
@@ -128,6 +138,9 @@ export declare const PwcPopover: import('../../vue-utils/install-utils').SFCInst
128
138
  default: () => import('../..').PopperOffset;
129
139
  };
130
140
  feedbackType: import('vue-types').VueTypeValidableDef<import('../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../..').FeedbackType>>;
141
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
142
+ default: boolean;
143
+ };
131
144
  }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
132
145
  "v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
133
146
  default: boolean;
@@ -157,6 +170,9 @@ export declare const PwcPopover: import('../../vue-utils/install-utils').SFCInst
157
170
  default: () => import('../..').PopperOffset;
158
171
  };
159
172
  feedbackType: import('vue-types').VueTypeValidableDef<import('../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../..').FeedbackType>>;
173
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
174
+ default: boolean;
175
+ };
160
176
  }>>, {
161
177
  hidePopper: () => void;
162
178
  showPopper: () => void;
@@ -164,6 +180,7 @@ export declare const PwcPopover: import('../../vue-utils/install-utils').SFCInst
164
180
  [x: string]: (...args: any[]) => void;
165
181
  }, string, {
166
182
  "v-model-key": boolean;
183
+ ignoreSkinColor: boolean;
167
184
  disabled: boolean;
168
185
  offset: import('../..').PopperOffset;
169
186
  raw: boolean;
@@ -201,6 +218,9 @@ export declare const PwcPopover: import('../../vue-utils/install-utils').SFCInst
201
218
  default: () => import('../..').PopperOffset;
202
219
  };
203
220
  feedbackType: import('vue-types').VueTypeValidableDef<import('../..').FeedbackType, import('vue-types/dist/types').ValidatorFunction<import('../..').FeedbackType>>;
221
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
222
+ default: boolean;
223
+ };
204
224
  };
205
225
  } & (new () => {
206
226
  $scopedSlots: {
@@ -41,6 +41,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
41
41
  default: () => import('../../../hooks/components/use-popper').PopperOffset;
42
42
  };
43
43
  feedbackType: import('vue-types').VueTypeValidableDef<FeedbackType, import('vue-types/dist/types').ValidatorFunction<FeedbackType>>;
44
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
45
+ default: boolean;
46
+ };
44
47
  }, {
45
48
  hidePopper: () => void;
46
49
  showPopper: () => void;
@@ -75,8 +78,12 @@ declare const __VLS_component: import('vue').DefineComponent<{
75
78
  default: () => import('../../../hooks/components/use-popper').PopperOffset;
76
79
  };
77
80
  feedbackType: import('vue-types').VueTypeValidableDef<FeedbackType, import('vue-types/dist/types').ValidatorFunction<FeedbackType>>;
81
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
82
+ default: boolean;
83
+ };
78
84
  }>>, {
79
85
  "v-model-key": boolean;
86
+ ignoreSkinColor: boolean;
80
87
  disabled: boolean;
81
88
  offset: import('../../../hooks/components/use-popper').PopperOffset;
82
89
  raw: boolean;
@@ -73,5 +73,8 @@ export declare const popoverProps: () => {
73
73
  * 反馈类型
74
74
  */
75
75
  feedbackType: import('vue-types').VueTypeValidableDef<FeedbackType, import('vue-types/dist/types').ValidatorFunction<FeedbackType>>;
76
+ ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
77
+ default: boolean;
78
+ };
76
79
  };
77
80
  export declare const popoverEmits: () => {};