@polyv/vue-components 1.6.1 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (261) hide show
  1. package/package.json +2 -2
  2. package/styles/root/basic.scss +14 -7
  3. package/styles/root/border.scss +6 -0
  4. package/styles/skin-color.scss +37 -11
  5. package/styles/variables.scss +15 -1
  6. package/vue2/index.es.js +16146 -21500
  7. package/vue2/src/components/alert/index.d.ts +2 -0
  8. package/vue2/src/components/alert/src/alert.vue.d.ts +2 -0
  9. package/vue2/src/components/alert/src/props-define.d.ts +8 -0
  10. package/vue2/src/components/business/channel-cover/index.d.ts +38 -0
  11. package/vue2/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  12. package/vue2/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  13. package/vue2/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  14. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  15. package/vue2/src/components/business/external-links/external-links.vue.d.ts +1 -2
  16. package/vue2/src/components/business/external-links/use-external-links.d.ts +111 -3
  17. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +22 -0
  18. package/vue2/src/components/collapse-transition/index.d.ts +36 -0
  19. package/vue2/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  20. package/vue2/src/components/collapse-transition/src/props-define.d.ts +9 -0
  21. package/vue2/src/components/example/example.vue.d.ts +16 -1
  22. package/vue2/src/components/example/index.d.ts +75 -4
  23. package/vue2/src/components/exports.d.ts +22 -1
  24. package/vue2/src/components/form/file-upload/index.d.ts +467 -0
  25. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +185 -0
  26. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +296 -0
  27. package/vue2/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  28. package/vue2/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  29. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  30. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  31. package/vue2/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  32. package/vue2/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  33. package/vue2/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  34. package/vue2/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  35. package/vue2/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  36. package/vue2/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  37. package/vue2/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  38. package/vue2/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  39. package/vue2/src/components/form/form-item/index.d.ts +2 -2
  40. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +1 -1
  41. package/vue2/src/components/form/form-submit-button/index.d.ts +1 -1
  42. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  43. package/vue2/src/components/form/form-wrap/index.d.ts +8 -2
  44. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +3 -1
  45. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -0
  46. package/vue2/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  47. package/vue2/src/components/form/input-number/index.d.ts +2 -2
  48. package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  49. package/vue2/src/components/form/select/index.d.ts +40 -40
  50. package/vue2/src/components/form/timezone-picker/index.d.ts +70 -70
  51. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +18 -18
  52. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -42
  53. package/vue2/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  54. package/vue2/src/components/form/transfer/transfer.vue.d.ts +0 -1
  55. package/vue2/src/components/icons/icons/effect/index.d.ts +6 -0
  56. package/vue2/src/components/icons/icons/file/index.d.ts +6 -0
  57. package/vue2/src/components/icons/icons/id-card/index.d.ts +6 -0
  58. package/vue2/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  59. package/vue2/src/components/icons/icons/lang/index.d.ts +6 -0
  60. package/vue2/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  61. package/vue2/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  62. package/vue2/src/components/icons/icons/platform/index.d.ts +6 -0
  63. package/vue2/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  64. package/vue2/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  65. package/vue2/src/components/icons/icons/upload-three/index.d.ts +6 -0
  66. package/vue2/src/components/icons/icons/user/index.d.ts +6 -0
  67. package/vue2/src/components/icons/icons/user-filled/index.d.ts +6 -0
  68. package/vue2/src/components/icons/icons/video/index.d.ts +6 -0
  69. package/vue2/src/components/icons/icons/video-filled/index.d.ts +6 -0
  70. package/vue2/src/components/icons/map.d.ts +15 -0
  71. package/vue2/src/components/info-card/index.d.ts +181 -2
  72. package/{vue3/src/components/info-card → vue2/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  73. package/vue2/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  74. package/vue2/src/components/menu/index.d.ts +156 -0
  75. package/vue2/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  76. package/vue2/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  77. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  78. package/vue2/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  79. package/vue2/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  80. package/vue2/src/components/menu/src/menu-item.vue.d.ts +14 -0
  81. package/vue2/src/components/menu/src/menu.vue.d.ts +52 -0
  82. package/vue2/src/components/menu/src/props-define.d.ts +114 -0
  83. package/vue2/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  84. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  85. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  86. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  87. package/vue2/src/components/pagination/use-pagination.d.ts +3 -3
  88. package/vue2/src/components/popconfirm/index.d.ts +20 -0
  89. package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  90. package/vue2/src/components/popconfirm/src/props-define.d.ts +3 -0
  91. package/vue2/src/components/popover/index.d.ts +20 -0
  92. package/vue2/src/components/popover/src/popover.vue.d.ts +7 -0
  93. package/vue2/src/components/popover/src/props-define.d.ts +3 -0
  94. package/vue2/src/components/popup/index.d.ts +13 -6
  95. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  96. package/vue2/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  97. package/vue2/src/components/popup/src/popup.vue.d.ts +4 -2
  98. package/vue2/src/components/popup/src/types.d.ts +3 -0
  99. package/vue2/src/components/slider/index.d.ts +8 -1
  100. package/vue2/src/components/slider/src/props-define.d.ts +7 -0
  101. package/vue2/src/components/slider/src/slider.vue.d.ts +8 -1
  102. package/vue2/src/components/table/index.d.ts +84 -12
  103. package/vue2/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  104. package/vue2/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  105. package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  106. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  107. package/vue2/src/components/table/src/hooks/props-define.d.ts +58 -2
  108. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  109. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  110. package/vue2/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  111. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  112. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  113. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  114. package/vue2/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  115. package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  116. package/vue2/src/components/table/src/table-column.vue.d.ts +13 -4
  117. package/vue2/src/components/table/src/table.vue.d.ts +16 -0
  118. package/vue2/src/components/table/src/types/index.d.ts +1 -1
  119. package/vue2/src/components/tooltip/index.d.ts +20 -0
  120. package/vue2/src/components/tooltip/src/props-define.d.ts +7 -0
  121. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  122. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  123. package/vue2/src/hooks/exports.d.ts +1 -0
  124. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  125. package/vue2/src/lang/internal/en.json.d.ts +28 -6
  126. package/vue2/src/lang/internal/index.d.ts +22 -0
  127. package/vue2/src/lang/internal/ja.json.d.ts +29 -7
  128. package/vue2/src/lang/internal/ko.json.d.ts +29 -7
  129. package/vue2/src/lang/internal/ru.json.d.ts +29 -7
  130. package/vue2/src/lang/internal/zh-CN.json.d.ts +27 -5
  131. package/vue2/src/lang/internal/zh-TW.json.d.ts +28 -6
  132. package/vue2/src/vue-utils/index.d.ts +1 -0
  133. package/vue3/index.es.js +16153 -21512
  134. package/vue3/src/components/alert/index.d.ts +2 -0
  135. package/vue3/src/components/alert/src/alert.vue.d.ts +2 -0
  136. package/vue3/src/components/alert/src/props-define.d.ts +8 -0
  137. package/vue3/src/components/business/channel-cover/index.d.ts +38 -0
  138. package/vue3/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  139. package/vue3/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  140. package/vue3/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  141. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  142. package/vue3/src/components/business/external-links/external-links.vue.d.ts +1 -2
  143. package/vue3/src/components/business/external-links/use-external-links.d.ts +111 -3
  144. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +22 -0
  145. package/vue3/src/components/collapse-transition/index.d.ts +36 -0
  146. package/vue3/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  147. package/vue3/src/components/collapse-transition/src/props-define.d.ts +9 -0
  148. package/vue3/src/components/example/example.vue.d.ts +16 -1
  149. package/vue3/src/components/example/index.d.ts +75 -4
  150. package/vue3/src/components/exports.d.ts +22 -1
  151. package/vue3/src/components/form/file-upload/index.d.ts +467 -0
  152. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +185 -0
  153. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +296 -0
  154. package/vue3/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  155. package/vue3/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  156. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  157. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  158. package/vue3/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  159. package/vue3/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  160. package/vue3/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  161. package/vue3/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  162. package/vue3/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  163. package/vue3/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  164. package/vue3/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  165. package/vue3/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  166. package/vue3/src/components/form/form-item/index.d.ts +2 -2
  167. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +1 -1
  168. package/vue3/src/components/form/form-submit-button/index.d.ts +1 -1
  169. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  170. package/vue3/src/components/form/form-wrap/index.d.ts +8 -2
  171. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +3 -1
  172. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -0
  173. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  174. package/vue3/src/components/form/input-number/index.d.ts +2 -2
  175. package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  176. package/vue3/src/components/form/select/index.d.ts +40 -40
  177. package/vue3/src/components/form/timezone-picker/index.d.ts +70 -70
  178. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +18 -18
  179. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -42
  180. package/vue3/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  181. package/vue3/src/components/form/transfer/transfer.vue.d.ts +0 -1
  182. package/vue3/src/components/icons/icons/effect/index.d.ts +6 -0
  183. package/vue3/src/components/icons/icons/file/index.d.ts +6 -0
  184. package/vue3/src/components/icons/icons/id-card/index.d.ts +6 -0
  185. package/vue3/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  186. package/vue3/src/components/icons/icons/lang/index.d.ts +6 -0
  187. package/vue3/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  188. package/vue3/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  189. package/vue3/src/components/icons/icons/platform/index.d.ts +6 -0
  190. package/vue3/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  191. package/vue3/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  192. package/vue3/src/components/icons/icons/upload-three/index.d.ts +6 -0
  193. package/vue3/src/components/icons/icons/user/index.d.ts +6 -0
  194. package/vue3/src/components/icons/icons/user-filled/index.d.ts +6 -0
  195. package/vue3/src/components/icons/icons/video/index.d.ts +6 -0
  196. package/vue3/src/components/icons/icons/video-filled/index.d.ts +6 -0
  197. package/vue3/src/components/icons/map.d.ts +15 -0
  198. package/vue3/src/components/info-card/index.d.ts +181 -2
  199. package/{vue2/src/components/info-card → vue3/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  200. package/vue3/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  201. package/vue3/src/components/menu/index.d.ts +156 -0
  202. package/vue3/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  203. package/vue3/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  204. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  205. package/vue3/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  206. package/vue3/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  207. package/vue3/src/components/menu/src/menu-item.vue.d.ts +14 -0
  208. package/vue3/src/components/menu/src/menu.vue.d.ts +52 -0
  209. package/vue3/src/components/menu/src/props-define.d.ts +114 -0
  210. package/vue3/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  211. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  212. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  213. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  214. package/vue3/src/components/pagination/use-pagination.d.ts +3 -3
  215. package/vue3/src/components/popconfirm/index.d.ts +20 -0
  216. package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  217. package/vue3/src/components/popconfirm/src/props-define.d.ts +3 -0
  218. package/vue3/src/components/popover/index.d.ts +20 -0
  219. package/vue3/src/components/popover/src/popover.vue.d.ts +7 -0
  220. package/vue3/src/components/popover/src/props-define.d.ts +3 -0
  221. package/vue3/src/components/popup/index.d.ts +13 -6
  222. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  223. package/vue3/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  224. package/vue3/src/components/popup/src/popup.vue.d.ts +4 -2
  225. package/vue3/src/components/popup/src/types.d.ts +3 -0
  226. package/vue3/src/components/slider/index.d.ts +8 -1
  227. package/vue3/src/components/slider/src/props-define.d.ts +7 -0
  228. package/vue3/src/components/slider/src/slider.vue.d.ts +8 -1
  229. package/vue3/src/components/table/index.d.ts +84 -12
  230. package/vue3/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  231. package/vue3/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  232. package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  233. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  234. package/vue3/src/components/table/src/hooks/props-define.d.ts +58 -2
  235. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  236. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  237. package/vue3/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  238. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  239. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  240. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  241. package/vue3/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  242. package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  243. package/vue3/src/components/table/src/table-column.vue.d.ts +13 -4
  244. package/vue3/src/components/table/src/table.vue.d.ts +16 -0
  245. package/vue3/src/components/table/src/types/index.d.ts +1 -1
  246. package/vue3/src/components/tooltip/index.d.ts +20 -0
  247. package/vue3/src/components/tooltip/src/props-define.d.ts +7 -0
  248. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  249. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  250. package/vue3/src/hooks/exports.d.ts +1 -0
  251. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  252. package/vue3/src/lang/internal/en.json.d.ts +28 -6
  253. package/vue3/src/lang/internal/index.d.ts +22 -0
  254. package/vue3/src/lang/internal/ja.json.d.ts +29 -7
  255. package/vue3/src/lang/internal/ko.json.d.ts +29 -7
  256. package/vue3/src/lang/internal/ru.json.d.ts +29 -7
  257. package/vue3/src/lang/internal/zh-CN.json.d.ts +27 -5
  258. package/vue3/src/lang/internal/zh-TW.json.d.ts +28 -6
  259. package/vue3/src/vue-utils/index.d.ts +1 -0
  260. package/vue2/src/components/form/index.d.ts +0 -18
  261. package/vue3/src/components/form/index.d.ts +0 -18
@@ -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: () => {};
@@ -21,7 +21,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
21
21
  default: boolean;
22
22
  };
23
23
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
24
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
24
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
25
25
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
26
26
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
27
27
  default: () => import('vue').CSSProperties;
@@ -80,6 +80,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
80
80
  default: boolean;
81
81
  };
82
82
  customClose: import('vue-types').VueTypeValidableDef<import('./src/types').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomClosePopup>>;
83
+ customBack: import('vue-types').VueTypeValidableDef<import('./src/types').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomBackPopup>>;
83
84
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
84
85
  default: boolean;
85
86
  };
@@ -121,7 +122,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
121
122
  default: boolean;
122
123
  };
123
124
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
124
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
125
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
125
126
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
126
127
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
127
128
  default: () => import('vue').CSSProperties;
@@ -180,6 +181,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
180
181
  default: boolean;
181
182
  };
182
183
  customClose: import('vue-types').VueTypeValidableDef<import('./src/types').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomClosePopup>>;
184
+ customBack: import('vue-types').VueTypeValidableDef<import('./src/types').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomBackPopup>>;
183
185
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
184
186
  default: boolean;
185
187
  };
@@ -257,7 +259,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
257
259
  default: boolean;
258
260
  };
259
261
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
260
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
262
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
261
263
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
262
264
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
263
265
  default: () => import('vue').CSSProperties;
@@ -316,6 +318,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
316
318
  default: boolean;
317
319
  };
318
320
  customClose: import('vue-types').VueTypeValidableDef<import('./src/types').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomClosePopup>>;
321
+ customBack: import('vue-types').VueTypeValidableDef<import('./src/types').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomBackPopup>>;
319
322
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
320
323
  default: boolean;
321
324
  };
@@ -361,7 +364,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
361
364
  default: boolean;
362
365
  };
363
366
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
364
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
367
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
365
368
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
366
369
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
367
370
  default: () => import('vue').CSSProperties;
@@ -420,6 +423,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
420
423
  default: boolean;
421
424
  };
422
425
  customClose: import('vue-types').VueTypeValidableDef<import('./src/types').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomClosePopup>>;
426
+ customBack: import('vue-types').VueTypeValidableDef<import('./src/types').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomBackPopup>>;
423
427
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
424
428
  default: boolean;
425
429
  };
@@ -461,7 +465,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
461
465
  default: boolean;
462
466
  };
463
467
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
464
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
468
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
465
469
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
466
470
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
467
471
  default: () => import('vue').CSSProperties;
@@ -520,6 +524,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
520
524
  default: boolean;
521
525
  };
522
526
  customClose: import('vue-types').VueTypeValidableDef<import('./src/types').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomClosePopup>>;
527
+ customBack: import('vue-types').VueTypeValidableDef<import('./src/types').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomBackPopup>>;
523
528
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
524
529
  default: boolean;
525
530
  };
@@ -602,7 +607,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
602
607
  default: boolean;
603
608
  };
604
609
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
605
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
610
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
606
611
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
607
612
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
608
613
  default: () => import('vue').CSSProperties;
@@ -661,6 +666,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
661
666
  default: boolean;
662
667
  };
663
668
  customClose: import('vue-types').VueTypeValidableDef<import('./src/types').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomClosePopup>>;
669
+ customBack: import('vue-types').VueTypeValidableDef<import('./src/types').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('./src/types').CustomBackPopup>>;
664
670
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
665
671
  default: boolean;
666
672
  };
@@ -694,3 +700,4 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
694
700
  export * from './src/types';
695
701
  export * from './src/hooks/use-popup-config';
696
702
  export * from './src/hooks/popup-props';
703
+ export { type PopupInjectData, usePopupInject } from './src/hooks/use-popup-provide';
@@ -1,9 +1,9 @@
1
- import { PopupConfig, CustomClosePopup } from '../types';
1
+ import { PopupConfig, CustomClosePopup, CustomBackPopup } from '../types';
2
2
  /** 弹层主题,compact 紧凑型,standard 标准型,custom 自定义 */
3
3
  export declare const popupEffects: readonly ["compact", "standard", "custom"];
4
4
  export type PopupEffect = typeof popupEffects[number];
5
- /** 弹层用途,gray 灰色,marketing 营销 */
6
- export declare const popupPurpose: readonly ["gray", "marketing"];
5
+ /** 弹层用途,gray 灰色,marketing 营销,interaction 互动 */
6
+ export declare const popupPurpose: readonly ["gray", "marketing", "interaction"];
7
7
  export type PopupPurpose = typeof popupPurpose[number];
8
8
  export declare const popupProps: () => {
9
9
  ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
@@ -39,7 +39,7 @@ export declare const popupProps: () => {
39
39
  * 弹层用途
40
40
  * @propType PopupPurpose
41
41
  */
42
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
42
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
43
43
  /**
44
44
  * 标题
45
45
  */
@@ -187,6 +187,8 @@ export declare const popupProps: () => {
187
187
  * 自定义关闭弹层
188
188
  */
189
189
  customClose: import('vue-types').VueTypeValidableDef<CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<CustomClosePopup>>;
190
+ /** 自定义返回 */
191
+ customBack: import('vue-types').VueTypeValidableDef<CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<CustomBackPopup>>;
190
192
  /**
191
193
  * 窗口是否可以拖拽
192
194
  * @description 仅 PC 端在 position 为 center 时有效
@@ -0,0 +1,9 @@
1
+ import { VueProps } from '../../../../vue-utils';
2
+ import { popupProps } from './popup-props';
3
+ export interface PopupInjectData {
4
+ popupProps: VueProps<typeof popupProps>;
5
+ }
6
+ export declare const usePopupProvide: (options: {
7
+ props: VueProps<typeof popupProps>;
8
+ }) => void;
9
+ export declare const usePopupInject: () => PopupInjectData | undefined;
@@ -175,7 +175,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
175
175
  default: boolean;
176
176
  };
177
177
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
178
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
178
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
179
179
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
180
180
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
181
181
  default: () => import('vue').CSSProperties;
@@ -234,6 +234,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
234
234
  default: boolean;
235
235
  };
236
236
  customClose: import('vue-types').VueTypeValidableDef<import('./types').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('./types').CustomClosePopup>>;
237
+ customBack: import('vue-types').VueTypeValidableDef<import('./types').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('./types').CustomBackPopup>>;
237
238
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
238
239
  default: boolean;
239
240
  };
@@ -287,7 +288,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
287
288
  default: boolean;
288
289
  };
289
290
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
290
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
291
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
291
292
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
292
293
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
293
294
  default: () => import('vue').CSSProperties;
@@ -346,6 +347,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
346
347
  default: boolean;
347
348
  };
348
349
  customClose: import('vue-types').VueTypeValidableDef<import('./types').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('./types').CustomClosePopup>>;
350
+ customBack: import('vue-types').VueTypeValidableDef<import('./types').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('./types').CustomBackPopup>>;
349
351
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
350
352
  default: boolean;
351
353
  };
@@ -11,6 +11,9 @@ export interface PopupConfig {
11
11
  export type CustomClosePopup = (options: {
12
12
  closeBody: () => void;
13
13
  }) => unknown;
14
+ export type CustomBackPopup = (options: {
15
+ closeBody: () => void;
16
+ }) => unknown;
14
17
  export type PopupBackAction = () => void;
15
18
  export interface PopupBackActionData {
16
19
  backAction?: PopupBackAction;
@@ -37,6 +37,9 @@ export declare const PwcSlider: import('../../vue-utils/install-utils').SFCInsta
37
37
  default: number;
38
38
  };
39
39
  sliderBarHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
40
+ buttonSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
41
+ default: number;
42
+ };
40
43
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
41
44
  change: (arg: import('./src/props-define').SliderValue) => void;
42
45
  }, string, Readonly<import('vue').ExtractPropTypes<{
@@ -78,12 +81,15 @@ export declare const PwcSlider: import('../../vue-utils/install-utils').SFCInsta
78
81
  default: number;
79
82
  };
80
83
  sliderBarHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
84
+ buttonSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
85
+ default: number;
86
+ };
81
87
  }>>, {
82
88
  "v-model-key": import('./src/props-define').SliderValue;
83
89
  disabled: boolean;
84
90
  range: boolean;
85
- min: number;
86
91
  max: number;
92
+ min: number;
87
93
  showTooltip: boolean;
88
94
  step: number;
89
95
  showStops: boolean;
@@ -91,5 +97,6 @@ export declare const PwcSlider: import('../../vue-utils/install-utils').SFCInsta
91
97
  cssRotateAngle: 0 | 180 | 90 | 270;
92
98
  progressBarVisible: boolean;
93
99
  hotAreaHeight: number;
100
+ buttonSize: number;
94
101
  }>, import('../../vue-utils/install-utils').InstallOptions>;
95
102
  export * from './src/props-define';
@@ -97,6 +97,13 @@ export declare const sliderProps: () => {
97
97
  * 滑块条高度
98
98
  */
99
99
  sliderBarHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
100
+ /**
101
+ * 按钮大小
102
+ * @default 14
103
+ */
104
+ buttonSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
105
+ default: number;
106
+ };
100
107
  };
101
108
  export declare const sliderEmits: () => {
102
109
  /**