@polyv/vue-components 1.6.1 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (428) hide show
  1. package/package.json +2 -2
  2. package/styles/function.scss +4 -1
  3. package/styles/root/basic.scss +14 -7
  4. package/styles/root/border.scss +6 -0
  5. package/styles/skin-color.scss +37 -11
  6. package/styles/variables.scss +15 -1
  7. package/vue2/index.es.js +18218 -22763
  8. package/vue2/src/components/alert/index.d.ts +2 -0
  9. package/vue2/src/components/alert/src/alert.vue.d.ts +2 -0
  10. package/vue2/src/components/alert/src/props-define.d.ts +8 -0
  11. package/vue2/src/components/business/channel-cover/index.d.ts +38 -0
  12. package/vue2/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  13. package/vue2/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  14. package/vue2/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  15. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  16. package/vue2/src/components/business/external-links/external-links.vue.d.ts +1 -2
  17. package/vue2/src/components/business/external-links/use-external-links.d.ts +116 -3
  18. package/vue2/src/components/business/live-status-tag/index.d.ts +14 -14
  19. package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  20. package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  21. package/vue2/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  22. package/vue2/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  23. package/vue2/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  24. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +31 -0
  25. package/vue2/src/components/button/index.d.ts +26 -0
  26. package/vue2/src/components/button/src/button.vue.d.ts +9 -0
  27. package/vue2/src/components/button/src/use-button.d.ts +13 -0
  28. package/vue2/src/components/collapse-transition/index.d.ts +36 -0
  29. package/vue2/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  30. package/vue2/src/components/collapse-transition/src/props-define.d.ts +9 -0
  31. package/vue2/src/components/condition-filter/index.d.ts +122 -0
  32. package/vue2/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  33. package/vue2/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  34. package/vue2/src/components/condition-filter/src/hooks.d.ts +5 -0
  35. package/vue2/src/components/condition-filter/src/props-define.d.ts +43 -0
  36. package/vue2/src/components/dropdown/index.d.ts +6 -0
  37. package/vue2/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  38. package/vue2/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  39. package/vue2/src/components/example/example.vue.d.ts +16 -1
  40. package/vue2/src/components/example/index.d.ts +75 -4
  41. package/vue2/src/components/exports.d.ts +26 -1
  42. package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -0
  43. package/vue2/src/components/form/checkbox/src/props-define.d.ts +0 -5
  44. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  45. package/vue2/src/components/form/file-upload/index.d.ts +469 -0
  46. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +186 -0
  47. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +297 -0
  48. package/vue2/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  49. package/vue2/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  50. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  51. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  52. package/vue2/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  53. package/vue2/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  54. package/vue2/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  55. package/vue2/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  56. package/vue2/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  57. package/vue2/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  58. package/vue2/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  59. package/vue2/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  60. package/vue2/src/components/form/form-group/index.d.ts +20 -2
  61. package/vue2/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  62. package/vue2/src/components/form/form-group/src/props-define.d.ts +12 -0
  63. package/vue2/src/components/form/form-item/index.d.ts +37 -32
  64. package/vue2/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  65. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +17 -16
  66. package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  67. package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  68. package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  69. package/vue2/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  70. package/vue2/src/components/form/form-submit-button/index.d.ts +10 -1
  71. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -1
  72. package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  73. package/vue2/src/components/form/form-wrap/index.d.ts +32 -26
  74. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +11 -9
  75. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +8 -4
  76. package/vue2/src/components/form/hooks/use-form-change.d.ts +20 -0
  77. package/vue2/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  78. package/vue2/src/components/form/hooks/use-form-extra.d.ts +21 -0
  79. package/vue2/src/components/form/input/index.d.ts +7 -0
  80. package/vue2/src/components/form/input/src/input.vue.d.ts +7 -0
  81. package/vue2/src/components/form/input/src/props-define.d.ts +8 -6
  82. package/vue2/src/components/form/input-number/index.d.ts +2 -2
  83. package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  84. package/vue2/src/components/form/input-number/src/props-define.d.ts +1 -6
  85. package/vue2/src/components/form/input-url/index.d.ts +21 -0
  86. package/vue2/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  87. package/vue2/src/components/form/input-url/src/props-define.d.ts +13 -0
  88. package/vue2/src/components/form/radio/src/props-define.d.ts +0 -5
  89. package/vue2/src/components/form/select/index.d.ts +100 -40
  90. package/vue2/src/components/form/select/src/props-define.d.ts +10 -6
  91. package/vue2/src/components/form/select/src/select.vue.d.ts +21 -0
  92. package/vue2/src/components/form/switch/src/props-define.d.ts +0 -5
  93. package/vue2/src/components/form/timezone-picker/index.d.ts +133 -70
  94. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +45 -18
  95. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +105 -42
  96. package/vue2/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  97. package/vue2/src/components/form/transfer/transfer.vue.d.ts +0 -1
  98. package/vue2/src/components/form/types/index.d.ts +1 -1
  99. package/vue2/src/components/icons/icons/application/index.d.ts +6 -0
  100. package/vue2/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  101. package/vue2/src/components/icons/icons/computer/index.d.ts +6 -0
  102. package/vue2/src/components/icons/icons/computer-data/index.d.ts +6 -0
  103. package/vue2/src/components/icons/icons/computer-down/index.d.ts +6 -0
  104. package/vue2/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  105. package/vue2/src/components/icons/icons/computer-play/index.d.ts +6 -0
  106. package/vue2/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  107. package/vue2/src/components/icons/icons/edit-two/index.d.ts +6 -0
  108. package/vue2/src/components/icons/icons/effect/index.d.ts +6 -0
  109. package/vue2/src/components/icons/icons/feedback/index.d.ts +6 -0
  110. package/vue2/src/components/icons/icons/file/index.d.ts +6 -0
  111. package/vue2/src/components/icons/icons/home/index.d.ts +6 -0
  112. package/vue2/src/components/icons/icons/id-card/index.d.ts +6 -0
  113. package/vue2/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  114. package/vue2/src/components/icons/icons/instruction/index.d.ts +6 -0
  115. package/vue2/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  116. package/vue2/src/components/icons/icons/lang/index.d.ts +6 -0
  117. package/vue2/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  118. package/vue2/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  119. package/vue2/src/components/icons/icons/money/index.d.ts +6 -0
  120. package/vue2/src/components/icons/icons/move-down/index.d.ts +6 -0
  121. package/vue2/src/components/icons/icons/move-up/index.d.ts +6 -0
  122. package/vue2/src/components/icons/icons/platform/index.d.ts +6 -0
  123. package/vue2/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  124. package/vue2/src/components/icons/icons/play-fast/index.d.ts +6 -0
  125. package/vue2/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  126. package/vue2/src/components/icons/icons/preview-close/index.d.ts +6 -0
  127. package/vue2/src/components/icons/icons/preview-open/index.d.ts +6 -0
  128. package/vue2/src/components/icons/icons/protect/index.d.ts +6 -0
  129. package/vue2/src/components/icons/icons/remind-off/index.d.ts +6 -0
  130. package/vue2/src/components/icons/icons/remind-on/index.d.ts +6 -0
  131. package/vue2/src/components/icons/icons/setting-two/index.d.ts +6 -0
  132. package/vue2/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  133. package/vue2/src/components/icons/icons/share/index.d.ts +6 -0
  134. package/vue2/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  135. package/vue2/src/components/icons/icons/upload-three/index.d.ts +6 -0
  136. package/vue2/src/components/icons/icons/user/index.d.ts +6 -0
  137. package/vue2/src/components/icons/icons/user-filled/index.d.ts +6 -0
  138. package/vue2/src/components/icons/icons/video/index.d.ts +6 -0
  139. package/vue2/src/components/icons/icons/video-filled/index.d.ts +6 -0
  140. package/vue2/src/components/icons/map.d.ts +40 -0
  141. package/vue2/src/components/image/index.d.ts +150 -0
  142. package/vue2/src/components/image/src/events.d.ts +6 -0
  143. package/vue2/src/components/image/src/image.vue.d.ts +69 -0
  144. package/vue2/src/components/image/src/props-define.d.ts +57 -0
  145. package/vue2/src/components/image/src/use-image.d.ts +16 -0
  146. package/vue2/src/components/info-card/index.d.ts +181 -2
  147. package/{vue3/src/components/info-card → vue2/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  148. package/vue2/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  149. package/vue2/src/components/menu/index.d.ts +195 -0
  150. package/vue2/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  151. package/vue2/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  152. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +26 -0
  153. package/vue2/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  154. package/vue2/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  155. package/vue2/src/components/menu/src/menu-item.vue.d.ts +24 -0
  156. package/vue2/src/components/menu/src/menu.vue.d.ts +55 -0
  157. package/vue2/src/components/menu/src/props-define.d.ts +140 -0
  158. package/vue2/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  159. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +40 -0
  160. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +13 -1
  161. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +35 -25
  162. package/vue2/src/components/pagination/use-pagination.d.ts +3 -3
  163. package/vue2/src/components/popconfirm/index.d.ts +20 -0
  164. package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  165. package/vue2/src/components/popconfirm/src/props-define.d.ts +3 -0
  166. package/vue2/src/components/popover/index.d.ts +20 -0
  167. package/vue2/src/components/popover/src/popover.vue.d.ts +7 -0
  168. package/vue2/src/components/popover/src/props-define.d.ts +3 -0
  169. package/vue2/src/components/popup/index.d.ts +13 -6
  170. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  171. package/vue2/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  172. package/vue2/src/components/popup/src/popup.vue.d.ts +4 -2
  173. package/vue2/src/components/popup/src/types.d.ts +3 -0
  174. package/vue2/src/components/section/index.d.ts +27 -0
  175. package/vue2/src/components/section/src/props-define.d.ts +24 -0
  176. package/vue2/src/components/section/src/section.vue.d.ts +24 -0
  177. package/vue2/src/components/slider/index.d.ts +8 -1
  178. package/vue2/src/components/slider/src/props-define.d.ts +7 -0
  179. package/vue2/src/components/slider/src/slider.vue.d.ts +8 -1
  180. package/vue2/src/components/table/index.d.ts +84 -12
  181. package/vue2/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  182. package/vue2/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  183. package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  184. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  185. package/vue2/src/components/table/src/hooks/props-define.d.ts +58 -2
  186. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  187. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  188. package/vue2/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  189. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  190. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  191. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  192. package/vue2/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  193. package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  194. package/vue2/src/components/table/src/table-column.vue.d.ts +13 -4
  195. package/vue2/src/components/table/src/table.vue.d.ts +16 -0
  196. package/vue2/src/components/table/src/types/index.d.ts +1 -1
  197. package/vue2/src/components/tag/index.d.ts +14 -14
  198. package/vue2/src/components/tag/src/props-define.d.ts +2 -2
  199. package/vue2/src/components/tag/src/tag.vue.d.ts +5 -5
  200. package/vue2/src/components/tooltip/index.d.ts +20 -0
  201. package/vue2/src/components/tooltip/src/props-define.d.ts +13 -0
  202. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  203. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  204. package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  205. package/vue2/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  206. package/vue2/src/hooks/exports.d.ts +1 -0
  207. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  208. package/vue2/src/lang/hook.d.ts +4 -0
  209. package/vue2/src/lang/internal/en.json.d.ts +33 -6
  210. package/vue2/src/lang/internal/index.d.ts +27 -0
  211. package/vue2/src/lang/internal/ja.json.d.ts +34 -7
  212. package/vue2/src/lang/internal/ko.json.d.ts +34 -7
  213. package/vue2/src/lang/internal/ru.json.d.ts +34 -7
  214. package/vue2/src/lang/internal/zh-CN.json.d.ts +32 -5
  215. package/vue2/src/lang/internal/zh-TW.json.d.ts +33 -6
  216. package/vue2/src/vue-utils/index.d.ts +1 -0
  217. package/vue3/index.es.js +18206 -22756
  218. package/vue3/src/components/alert/index.d.ts +2 -0
  219. package/vue3/src/components/alert/src/alert.vue.d.ts +2 -0
  220. package/vue3/src/components/alert/src/props-define.d.ts +8 -0
  221. package/vue3/src/components/business/channel-cover/index.d.ts +38 -0
  222. package/vue3/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  223. package/vue3/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  224. package/vue3/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  225. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  226. package/vue3/src/components/business/external-links/external-links.vue.d.ts +1 -2
  227. package/vue3/src/components/business/external-links/use-external-links.d.ts +116 -3
  228. package/vue3/src/components/business/live-status-tag/index.d.ts +14 -14
  229. package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  230. package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  231. package/vue3/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  232. package/vue3/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  233. package/vue3/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  234. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +31 -0
  235. package/vue3/src/components/button/index.d.ts +26 -0
  236. package/vue3/src/components/button/src/button.vue.d.ts +9 -0
  237. package/vue3/src/components/button/src/use-button.d.ts +13 -0
  238. package/vue3/src/components/collapse-transition/index.d.ts +36 -0
  239. package/vue3/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  240. package/vue3/src/components/collapse-transition/src/props-define.d.ts +9 -0
  241. package/vue3/src/components/condition-filter/index.d.ts +122 -0
  242. package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  243. package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  244. package/vue3/src/components/condition-filter/src/hooks.d.ts +5 -0
  245. package/vue3/src/components/condition-filter/src/props-define.d.ts +43 -0
  246. package/vue3/src/components/dropdown/index.d.ts +6 -0
  247. package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  248. package/vue3/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  249. package/vue3/src/components/example/example.vue.d.ts +16 -1
  250. package/vue3/src/components/example/index.d.ts +75 -4
  251. package/vue3/src/components/exports.d.ts +26 -1
  252. package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -0
  253. package/vue3/src/components/form/checkbox/src/props-define.d.ts +0 -5
  254. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  255. package/vue3/src/components/form/file-upload/index.d.ts +469 -0
  256. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +186 -0
  257. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +297 -0
  258. package/vue3/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  259. package/vue3/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  260. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  261. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  262. package/vue3/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  263. package/vue3/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  264. package/vue3/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  265. package/vue3/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  266. package/vue3/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  267. package/vue3/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  268. package/vue3/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  269. package/vue3/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  270. package/vue3/src/components/form/form-group/index.d.ts +20 -2
  271. package/vue3/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  272. package/vue3/src/components/form/form-group/src/props-define.d.ts +12 -0
  273. package/vue3/src/components/form/form-item/index.d.ts +37 -32
  274. package/vue3/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  275. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +17 -16
  276. package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  277. package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  278. package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  279. package/vue3/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  280. package/vue3/src/components/form/form-submit-button/index.d.ts +10 -1
  281. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -1
  282. package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  283. package/vue3/src/components/form/form-wrap/index.d.ts +32 -26
  284. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +11 -9
  285. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +8 -4
  286. package/vue3/src/components/form/hooks/use-form-change.d.ts +20 -0
  287. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  288. package/vue3/src/components/form/hooks/use-form-extra.d.ts +21 -0
  289. package/vue3/src/components/form/input/index.d.ts +7 -0
  290. package/vue3/src/components/form/input/src/input.vue.d.ts +7 -0
  291. package/vue3/src/components/form/input/src/props-define.d.ts +8 -6
  292. package/vue3/src/components/form/input-number/index.d.ts +2 -2
  293. package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  294. package/vue3/src/components/form/input-number/src/props-define.d.ts +1 -6
  295. package/vue3/src/components/form/input-url/index.d.ts +21 -0
  296. package/vue3/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  297. package/vue3/src/components/form/input-url/src/props-define.d.ts +13 -0
  298. package/vue3/src/components/form/radio/src/props-define.d.ts +0 -5
  299. package/vue3/src/components/form/select/index.d.ts +100 -40
  300. package/vue3/src/components/form/select/src/props-define.d.ts +10 -6
  301. package/vue3/src/components/form/select/src/select.vue.d.ts +21 -0
  302. package/vue3/src/components/form/switch/src/props-define.d.ts +0 -5
  303. package/vue3/src/components/form/timezone-picker/index.d.ts +133 -70
  304. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +45 -18
  305. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +105 -42
  306. package/vue3/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  307. package/vue3/src/components/form/transfer/transfer.vue.d.ts +0 -1
  308. package/vue3/src/components/form/types/index.d.ts +1 -1
  309. package/vue3/src/components/icons/icons/application/index.d.ts +6 -0
  310. package/vue3/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  311. package/vue3/src/components/icons/icons/computer/index.d.ts +6 -0
  312. package/vue3/src/components/icons/icons/computer-data/index.d.ts +6 -0
  313. package/vue3/src/components/icons/icons/computer-down/index.d.ts +6 -0
  314. package/vue3/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  315. package/vue3/src/components/icons/icons/computer-play/index.d.ts +6 -0
  316. package/vue3/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  317. package/vue3/src/components/icons/icons/edit-two/index.d.ts +6 -0
  318. package/vue3/src/components/icons/icons/effect/index.d.ts +6 -0
  319. package/vue3/src/components/icons/icons/feedback/index.d.ts +6 -0
  320. package/vue3/src/components/icons/icons/file/index.d.ts +6 -0
  321. package/vue3/src/components/icons/icons/home/index.d.ts +6 -0
  322. package/vue3/src/components/icons/icons/id-card/index.d.ts +6 -0
  323. package/vue3/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  324. package/vue3/src/components/icons/icons/instruction/index.d.ts +6 -0
  325. package/vue3/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  326. package/vue3/src/components/icons/icons/lang/index.d.ts +6 -0
  327. package/vue3/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  328. package/vue3/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  329. package/vue3/src/components/icons/icons/money/index.d.ts +6 -0
  330. package/vue3/src/components/icons/icons/move-down/index.d.ts +6 -0
  331. package/vue3/src/components/icons/icons/move-up/index.d.ts +6 -0
  332. package/vue3/src/components/icons/icons/platform/index.d.ts +6 -0
  333. package/vue3/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  334. package/vue3/src/components/icons/icons/play-fast/index.d.ts +6 -0
  335. package/vue3/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  336. package/vue3/src/components/icons/icons/preview-close/index.d.ts +6 -0
  337. package/vue3/src/components/icons/icons/preview-open/index.d.ts +6 -0
  338. package/vue3/src/components/icons/icons/protect/index.d.ts +6 -0
  339. package/vue3/src/components/icons/icons/remind-off/index.d.ts +6 -0
  340. package/vue3/src/components/icons/icons/remind-on/index.d.ts +6 -0
  341. package/vue3/src/components/icons/icons/setting-two/index.d.ts +6 -0
  342. package/vue3/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  343. package/vue3/src/components/icons/icons/share/index.d.ts +6 -0
  344. package/vue3/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  345. package/vue3/src/components/icons/icons/upload-three/index.d.ts +6 -0
  346. package/vue3/src/components/icons/icons/user/index.d.ts +6 -0
  347. package/vue3/src/components/icons/icons/user-filled/index.d.ts +6 -0
  348. package/vue3/src/components/icons/icons/video/index.d.ts +6 -0
  349. package/vue3/src/components/icons/icons/video-filled/index.d.ts +6 -0
  350. package/vue3/src/components/icons/map.d.ts +40 -0
  351. package/vue3/src/components/image/index.d.ts +150 -0
  352. package/vue3/src/components/image/src/events.d.ts +6 -0
  353. package/vue3/src/components/image/src/image.vue.d.ts +69 -0
  354. package/vue3/src/components/image/src/props-define.d.ts +57 -0
  355. package/vue3/src/components/image/src/use-image.d.ts +16 -0
  356. package/vue3/src/components/info-card/index.d.ts +181 -2
  357. package/{vue2/src/components/info-card → vue3/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  358. package/vue3/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  359. package/vue3/src/components/menu/index.d.ts +195 -0
  360. package/vue3/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  361. package/vue3/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  362. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +26 -0
  363. package/vue3/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  364. package/vue3/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  365. package/vue3/src/components/menu/src/menu-item.vue.d.ts +24 -0
  366. package/vue3/src/components/menu/src/menu.vue.d.ts +55 -0
  367. package/vue3/src/components/menu/src/props-define.d.ts +140 -0
  368. package/vue3/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  369. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +40 -0
  370. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +13 -1
  371. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +35 -25
  372. package/vue3/src/components/pagination/use-pagination.d.ts +3 -3
  373. package/vue3/src/components/popconfirm/index.d.ts +20 -0
  374. package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  375. package/vue3/src/components/popconfirm/src/props-define.d.ts +3 -0
  376. package/vue3/src/components/popover/index.d.ts +20 -0
  377. package/vue3/src/components/popover/src/popover.vue.d.ts +7 -0
  378. package/vue3/src/components/popover/src/props-define.d.ts +3 -0
  379. package/vue3/src/components/popup/index.d.ts +13 -6
  380. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  381. package/vue3/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  382. package/vue3/src/components/popup/src/popup.vue.d.ts +4 -2
  383. package/vue3/src/components/popup/src/types.d.ts +3 -0
  384. package/vue3/src/components/section/index.d.ts +27 -0
  385. package/vue3/src/components/section/src/props-define.d.ts +24 -0
  386. package/vue3/src/components/section/src/section.vue.d.ts +24 -0
  387. package/vue3/src/components/slider/index.d.ts +8 -1
  388. package/vue3/src/components/slider/src/props-define.d.ts +7 -0
  389. package/vue3/src/components/slider/src/slider.vue.d.ts +8 -1
  390. package/vue3/src/components/table/index.d.ts +84 -12
  391. package/vue3/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  392. package/vue3/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  393. package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  394. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  395. package/vue3/src/components/table/src/hooks/props-define.d.ts +58 -2
  396. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  397. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  398. package/vue3/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  399. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  400. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  401. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  402. package/vue3/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  403. package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  404. package/vue3/src/components/table/src/table-column.vue.d.ts +13 -4
  405. package/vue3/src/components/table/src/table.vue.d.ts +16 -0
  406. package/vue3/src/components/table/src/types/index.d.ts +1 -1
  407. package/vue3/src/components/tag/index.d.ts +14 -14
  408. package/vue3/src/components/tag/src/props-define.d.ts +2 -2
  409. package/vue3/src/components/tag/src/tag.vue.d.ts +5 -5
  410. package/vue3/src/components/tooltip/index.d.ts +20 -0
  411. package/vue3/src/components/tooltip/src/props-define.d.ts +13 -0
  412. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  413. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  414. package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  415. package/vue3/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  416. package/vue3/src/hooks/exports.d.ts +1 -0
  417. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  418. package/vue3/src/lang/hook.d.ts +4 -0
  419. package/vue3/src/lang/internal/en.json.d.ts +33 -6
  420. package/vue3/src/lang/internal/index.d.ts +27 -0
  421. package/vue3/src/lang/internal/ja.json.d.ts +34 -7
  422. package/vue3/src/lang/internal/ko.json.d.ts +34 -7
  423. package/vue3/src/lang/internal/ru.json.d.ts +34 -7
  424. package/vue3/src/lang/internal/zh-CN.json.d.ts +32 -5
  425. package/vue3/src/lang/internal/zh-TW.json.d.ts +33 -6
  426. package/vue3/src/vue-utils/index.d.ts +1 -0
  427. package/vue2/src/components/form/index.d.ts +0 -18
  428. package/vue3/src/components/form/index.d.ts +0 -18
@@ -91,6 +91,8 @@ export declare const PwcAlert: import('../../vue-utils/install-utils').SFCInstal
91
91
  icon?(_: {}): any;
92
92
  title?(_: {}): any;
93
93
  default?(_: {}): any;
94
+ suffix?(_: {}): any;
95
+ extra?(_: {}): any;
94
96
  };
95
97
  }), import('../../vue-utils/install-utils').InstallOptions>;
96
98
  export * from './src/props-define';
@@ -4,6 +4,8 @@ declare function __VLS_template(): {
4
4
  icon?(_: {}): any;
5
5
  title?(_: {}): any;
6
6
  default?(_: {}): any;
7
+ suffix?(_: {}): any;
8
+ extra?(_: {}): any;
7
9
  };
8
10
  refs: {};
9
11
  rootEl: Element;
@@ -51,4 +51,12 @@ export interface AlertSlots {
51
51
  * 图标
52
52
  */
53
53
  icon: void;
54
+ /**
55
+ * 后缀插槽
56
+ */
57
+ suffix: void;
58
+ /**
59
+ * 额外内容插槽
60
+ */
61
+ extra: void;
54
62
  }
@@ -0,0 +1,38 @@
1
+ export declare const PwcChannelCover: import('../../../vue-utils/install-utils').SFCInstall<import('vue').DefineComponent<{
2
+ channelId: import('vue-types').VueTypeDef<string | number>;
3
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
4
+ titleColor: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
5
+ forceShowBgTitle: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
6
+ showInfo: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
7
+ default: boolean;
8
+ };
9
+ coverImage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
10
+ coverImageId: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
11
+ checkDefaultCoverMark: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
12
+ default: boolean;
13
+ };
14
+ backgroundBlur: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
15
+ default: boolean;
16
+ };
17
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
18
+ channelId: import('vue-types').VueTypeDef<string | number>;
19
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
20
+ titleColor: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
21
+ forceShowBgTitle: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
22
+ showInfo: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
23
+ default: boolean;
24
+ };
25
+ coverImage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
26
+ coverImageId: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
27
+ checkDefaultCoverMark: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
28
+ default: boolean;
29
+ };
30
+ backgroundBlur: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
31
+ default: boolean;
32
+ };
33
+ }>>, {
34
+ showInfo: boolean;
35
+ checkDefaultCoverMark: boolean;
36
+ backgroundBlur: boolean;
37
+ }>, import('../../../vue-utils/install-utils').InstallOptions>;
38
+ export * from './src/props-define';
@@ -0,0 +1,38 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ channelId: import('vue-types').VueTypeDef<string | number>;
3
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
4
+ titleColor: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
5
+ forceShowBgTitle: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
6
+ showInfo: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
7
+ default: boolean;
8
+ };
9
+ coverImage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
10
+ coverImageId: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
11
+ checkDefaultCoverMark: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
12
+ default: boolean;
13
+ };
14
+ backgroundBlur: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
15
+ default: boolean;
16
+ };
17
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
18
+ channelId: import('vue-types').VueTypeDef<string | number>;
19
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
20
+ titleColor: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
21
+ forceShowBgTitle: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
22
+ showInfo: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
23
+ default: boolean;
24
+ };
25
+ coverImage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
26
+ coverImageId: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
27
+ checkDefaultCoverMark: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
28
+ default: boolean;
29
+ };
30
+ backgroundBlur: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
31
+ default: boolean;
32
+ };
33
+ }>>, {
34
+ showInfo: boolean;
35
+ checkDefaultCoverMark: boolean;
36
+ backgroundBlur: boolean;
37
+ }>;
38
+ export default _default;
@@ -0,0 +1,7 @@
1
+ export declare const internalBgColors: string[];
2
+ export declare const internalBgImages: Array<{
3
+ id: string;
4
+ url: string;
5
+ portraitUrl: string;
6
+ textColor?: string;
7
+ }>;
@@ -0,0 +1,47 @@
1
+ export declare const channelCoverProps: () => {
2
+ /**
3
+ * 频道号
4
+ */
5
+ channelId: import('vue-types').VueTypeDef<string | number>;
6
+ /**
7
+ * 频道标题
8
+ */
9
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
10
+ /**
11
+ * 背景标题颜色
12
+ */
13
+ titleColor: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
14
+ /**
15
+ * 强制显示背景标题
16
+ */
17
+ forceShowBgTitle: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
18
+ /**
19
+ * 显示信息
20
+ * @default false
21
+ */
22
+ showInfo: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
23
+ default: boolean;
24
+ };
25
+ /**
26
+ * 封面图
27
+ */
28
+ coverImage: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
29
+ /**
30
+ * 封面图 id
31
+ */
32
+ coverImageId: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
33
+ /**
34
+ * 是否检查默认封面图
35
+ * @default true
36
+ */
37
+ checkDefaultCoverMark: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
38
+ default: boolean;
39
+ };
40
+ /**
41
+ * 添加虚化背景图
42
+ * @default false
43
+ */
44
+ backgroundBlur: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
45
+ default: boolean;
46
+ };
47
+ };
@@ -44,7 +44,7 @@ export declare const useDataExportRecord: (options: {
44
44
  default: boolean;
45
45
  };
46
46
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
47
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
47
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
48
48
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
49
49
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
50
50
  default: () => import('vue').CSSProperties;
@@ -103,6 +103,7 @@ export declare const useDataExportRecord: (options: {
103
103
  default: boolean;
104
104
  };
105
105
  customClose: import('vue-types').VueTypeValidableDef<import('../../../popup').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('../../../popup').CustomClosePopup>>;
106
+ customBack: import('vue-types').VueTypeValidableDef<import('../../../popup').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('../../../popup').CustomBackPopup>>;
106
107
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
107
108
  default: boolean;
108
109
  };
@@ -144,7 +145,7 @@ export declare const useDataExportRecord: (options: {
144
145
  default: boolean;
145
146
  };
146
147
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
147
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
148
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
148
149
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
149
150
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
150
151
  default: () => import('vue').CSSProperties;
@@ -203,6 +204,7 @@ export declare const useDataExportRecord: (options: {
203
204
  default: boolean;
204
205
  };
205
206
  customClose: import('vue-types').VueTypeValidableDef<import('../../../popup').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('../../../popup').CustomClosePopup>>;
207
+ customBack: import('vue-types').VueTypeValidableDef<import('../../../popup').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('../../../popup').CustomBackPopup>>;
206
208
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
207
209
  default: boolean;
208
210
  };
@@ -280,7 +282,7 @@ export declare const useDataExportRecord: (options: {
280
282
  default: boolean;
281
283
  };
282
284
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
283
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
285
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
284
286
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
285
287
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
286
288
  default: () => import('vue').CSSProperties;
@@ -339,6 +341,7 @@ export declare const useDataExportRecord: (options: {
339
341
  default: boolean;
340
342
  };
341
343
  customClose: import('vue-types').VueTypeValidableDef<import('../../../popup').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('../../../popup').CustomClosePopup>>;
344
+ customBack: import('vue-types').VueTypeValidableDef<import('../../../popup').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('../../../popup').CustomBackPopup>>;
342
345
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
343
346
  default: boolean;
344
347
  };
@@ -384,7 +387,7 @@ export declare const useDataExportRecord: (options: {
384
387
  default: boolean;
385
388
  };
386
389
  effect: import('vue-types').VueTypeDef<"compact" | "standard" | "custom">;
387
- purpose: import('vue-types').VueTypeDef<"gray" | "marketing">;
390
+ purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
388
391
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
389
392
  titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
390
393
  default: () => import('vue').CSSProperties;
@@ -443,6 +446,7 @@ export declare const useDataExportRecord: (options: {
443
446
  default: boolean;
444
447
  };
445
448
  customClose: import('vue-types').VueTypeValidableDef<import('../../../popup').CustomClosePopup, import('vue-types/dist/types').ValidatorFunction<import('../../../popup').CustomClosePopup>>;
449
+ customBack: import('vue-types').VueTypeValidableDef<import('../../../popup').CustomBackPopup, import('vue-types/dist/types').ValidatorFunction<import('../../../popup').CustomBackPopup>>;
446
450
  draggable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
447
451
  default: boolean;
448
452
  };
@@ -1,4 +1,3 @@
1
- declare function validateCurrentForm(): Promise<void>;
2
1
  declare const _default: import('vue').DefineComponent<{
3
2
  "v-model-key": import('vue-types').VueTypeValidableDef<import('./use-external-links').ExternalLinksModelValue, import('vue-types/dist/types').ValidatorFunction<import('./use-external-links').ExternalLinksModelValue>> & {
4
3
  default: () => import('./use-external-links').ExternalLinksModelValue;
@@ -11,7 +10,7 @@ declare const _default: import('vue').DefineComponent<{
11
10
  default: boolean;
12
11
  };
13
12
  }, {
14
- validateCurrentForm: typeof validateCurrentForm;
13
+ validateCurrentForm: () => Promise<void>;
15
14
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
15
  change: (arg: import('./use-external-links').ExternalLinksModelValue) => void;
17
16
  }, string, Readonly<import('vue').ExtractPropTypes<{
@@ -1,7 +1,7 @@
1
1
  import { SelectOptionItem } from '../../form/select';
2
2
  import { ValidatorRules } from '../../../plugins/async-validator';
3
3
  import { VueEmit, VueProps } from '../../../vue-utils';
4
- declare enum LinkJumpWay {
4
+ export declare enum LinkJumpWay {
5
5
  /**
6
6
  * iframe 弹框形式打开
7
7
  */
@@ -121,6 +121,23 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
121
121
  gotIt: string;
122
122
  empty: string;
123
123
  };
124
+ fileUpload: {
125
+ error1: string;
126
+ error2: string;
127
+ error3: string;
128
+ error4: string;
129
+ error5: string;
130
+ error6: string;
131
+ uploading: string;
132
+ upload: string;
133
+ clickUpload: string;
134
+ replace: string;
135
+ delete: string;
136
+ defaultPlaceholder1: string;
137
+ defaultPlaceholder2: string;
138
+ cropperTitle: string;
139
+ dragText: string;
140
+ };
124
141
  imageUpload: {
125
142
  error1: string;
126
143
  error2: string;
@@ -201,6 +218,7 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
201
218
  totalPages: string;
202
219
  size: string;
203
220
  goto: string;
221
+ page: string;
204
222
  };
205
223
  example: {
206
224
  text: string;
@@ -273,6 +291,7 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
273
291
  error: {
274
292
  urlPattern: string;
275
293
  urlEmpty: string;
294
+ empty: string;
276
295
  };
277
296
  };
278
297
  liveStatusTag: {
@@ -290,6 +309,14 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
290
309
  more: string;
291
310
  collapse: string;
292
311
  };
312
+ channelCover: {
313
+ channelId: string;
314
+ };
315
+ conditionFilter: {
316
+ reset: string;
317
+ expand: string;
318
+ collapse: string;
319
+ };
293
320
  } & {
294
321
  common: {
295
322
  confirm: string;
@@ -308,7 +335,92 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
308
335
  comma: string;
309
336
  };
310
337
  }>, options?: import('../../..').UniversalParams<string | number>) => string;
311
- formData: {
338
+ formRef: import('vue').Ref<(import('vue/types/v3-component-public-instance').Vue3Instance<{}, Readonly<import('vue').ExtractPropTypes<{
339
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
340
+ formData: import('vue-types').VueTypeValidableDef<import('../../..').UniversalParams<any>, import('vue-types/dist/types').ValidatorFunction<import('../../..').UniversalParams<any>>> & {
341
+ default: () => import('../../..').UniversalParams<any>;
342
+ };
343
+ formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
344
+ default: () => ValidatorRules;
345
+ };
346
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
347
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
348
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
349
+ submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
350
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
351
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
352
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
353
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
354
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
355
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
356
+ }>>, Readonly<import('vue').ExtractPropTypes<{
357
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
358
+ formData: import('vue-types').VueTypeValidableDef<import('../../..').UniversalParams<any>, import('vue-types/dist/types').ValidatorFunction<import('../../..').UniversalParams<any>>> & {
359
+ default: () => import('../../..').UniversalParams<any>;
360
+ };
361
+ formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
362
+ default: () => ValidatorRules;
363
+ };
364
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
365
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
366
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
367
+ submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
368
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
369
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
370
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
371
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
372
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
373
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
374
+ }>>, {
375
+ "submit-form": (arg: import('../../..').UniversalParams<any>) => void;
376
+ }, {
377
+ formData: import('../../..').UniversalParams<any>;
378
+ formRules: ValidatorRules;
379
+ }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
380
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
381
+ formData: import('vue-types').VueTypeValidableDef<import('../../..').UniversalParams<any>, import('vue-types/dist/types').ValidatorFunction<import('../../..').UniversalParams<any>>> & {
382
+ default: () => import('../../..').UniversalParams<any>;
383
+ };
384
+ formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
385
+ default: () => ValidatorRules;
386
+ };
387
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
388
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
389
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
390
+ submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
391
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
392
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
393
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
394
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
395
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
396
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
397
+ }>>> & import('vue').ShallowUnwrapRef<{
398
+ validateCurrentForm: (validateOptions?: import('../../exports').FormValidateOptions) => Promise<void>;
399
+ buildFormData: <D extends Record<string | number, any>>() => D;
400
+ }> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
401
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
402
+ formData: import('vue-types').VueTypeValidableDef<import('../../..').UniversalParams<any>, import('vue-types/dist/types').ValidatorFunction<import('../../..').UniversalParams<any>>> & {
403
+ default: () => import('../../..').UniversalParams<any>;
404
+ };
405
+ formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
406
+ default: () => ValidatorRules;
407
+ };
408
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
409
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
410
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
411
+ submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
412
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
413
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
414
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
415
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
416
+ gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
417
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
418
+ }>> & {
419
+ $scopedSlots: {
420
+ default?(_: {}): any;
421
+ };
422
+ }) | undefined>;
423
+ formData: import('vue').Ref<{
312
424
  linkType: LinkType;
313
425
  link: string;
314
426
  jumpWay: LinkJumpWay;
@@ -321,9 +433,10 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
321
433
  iosLink: string;
322
434
  androidLink: string;
323
435
  harmonyLink: string;
324
- };
436
+ }>;
325
437
  formRules: import('vue').ComputedRef<ValidatorRules>;
326
438
  jumpWayOptions: import('vue').ComputedRef<SelectOptionItem<LinkJumpWay>[]>;
327
439
  jumpWayTipsText: import('vue').ComputedRef<string>;
440
+ validateCurrentForm: () => Promise<void>;
328
441
  };
329
442
  export {};
@@ -2,8 +2,8 @@ export declare const PwcLiveStatusTag: import('../../../vue-utils/install-utils'
2
2
  status: import('vue-types').VueTypeDef<"stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush"> & {
3
3
  default: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
4
4
  };
5
- effect: import('vue-types').VueTypeDef<"fill" | "outline" | "gradient" | "transparent" | "plain"> & {
6
- default: "fill" | "outline" | "gradient" | "transparent" | "plain";
5
+ effect: import('vue-types').VueTypeDef<"fill" | "outline" | "plain" | "gradient" | "transparent"> & {
6
+ default: "fill" | "outline" | "plain" | "gradient" | "transparent";
7
7
  };
8
8
  color: import('vue-types').VueTypeDef<"success" | "warning" | "info" | "primary" | "danger" | "tips">;
9
9
  playingIcon: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
@@ -13,23 +13,23 @@ export declare const PwcLiveStatusTag: import('../../../vue-utils/install-utils'
13
13
  status: import('vue-types').VueTypeDef<"stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush"> & {
14
14
  default: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
15
15
  };
16
- effect: import('vue-types').VueTypeDef<"fill" | "outline" | "gradient" | "transparent" | "plain"> & {
17
- default: "fill" | "outline" | "gradient" | "transparent" | "plain";
16
+ effect: import('vue-types').VueTypeDef<"fill" | "outline" | "plain" | "gradient" | "transparent"> & {
17
+ default: "fill" | "outline" | "plain" | "gradient" | "transparent";
18
18
  };
19
19
  color: import('vue-types').VueTypeDef<"success" | "warning" | "info" | "primary" | "danger" | "tips">;
20
20
  playingIcon: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
21
21
  default: boolean;
22
22
  };
23
23
  }>>, {}, {
24
- effect: "fill" | "outline" | "gradient" | "transparent" | "plain";
24
+ effect: "fill" | "outline" | "plain" | "gradient" | "transparent";
25
25
  status: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
26
26
  playingIcon: boolean;
27
27
  }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
28
28
  status: import('vue-types').VueTypeDef<"stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush"> & {
29
29
  default: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
30
30
  };
31
- effect: import('vue-types').VueTypeDef<"fill" | "outline" | "gradient" | "transparent" | "plain"> & {
32
- default: "fill" | "outline" | "gradient" | "transparent" | "plain";
31
+ effect: import('vue-types').VueTypeDef<"fill" | "outline" | "plain" | "gradient" | "transparent"> & {
32
+ default: "fill" | "outline" | "plain" | "gradient" | "transparent";
33
33
  };
34
34
  color: import('vue-types').VueTypeDef<"success" | "warning" | "info" | "primary" | "danger" | "tips">;
35
35
  playingIcon: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
@@ -39,8 +39,8 @@ export declare const PwcLiveStatusTag: import('../../../vue-utils/install-utils'
39
39
  status: import('vue-types').VueTypeDef<"stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush"> & {
40
40
  default: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
41
41
  };
42
- effect: import('vue-types').VueTypeDef<"fill" | "outline" | "gradient" | "transparent" | "plain"> & {
43
- default: "fill" | "outline" | "gradient" | "transparent" | "plain";
42
+ effect: import('vue-types').VueTypeDef<"fill" | "outline" | "plain" | "gradient" | "transparent"> & {
43
+ default: "fill" | "outline" | "plain" | "gradient" | "transparent";
44
44
  };
45
45
  color: import('vue-types').VueTypeDef<"success" | "warning" | "info" | "primary" | "danger" | "tips">;
46
46
  playingIcon: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
@@ -50,15 +50,15 @@ export declare const PwcLiveStatusTag: import('../../../vue-utils/install-utils'
50
50
  status: import('vue-types').VueTypeDef<"stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush"> & {
51
51
  default: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
52
52
  };
53
- effect: import('vue-types').VueTypeDef<"fill" | "outline" | "gradient" | "transparent" | "plain"> & {
54
- default: "fill" | "outline" | "gradient" | "transparent" | "plain";
53
+ effect: import('vue-types').VueTypeDef<"fill" | "outline" | "plain" | "gradient" | "transparent"> & {
54
+ default: "fill" | "outline" | "plain" | "gradient" | "transparent";
55
55
  };
56
56
  color: import('vue-types').VueTypeDef<"success" | "warning" | "info" | "primary" | "danger" | "tips">;
57
57
  playingIcon: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
58
58
  default: boolean;
59
59
  };
60
60
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
61
- effect: "fill" | "outline" | "gradient" | "transparent" | "plain";
61
+ effect: "fill" | "outline" | "plain" | "gradient" | "transparent";
62
62
  status: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
63
63
  playingIcon: boolean;
64
64
  }> & {
@@ -66,8 +66,8 @@ export declare const PwcLiveStatusTag: import('../../../vue-utils/install-utils'
66
66
  status: import('vue-types').VueTypeDef<"stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush"> & {
67
67
  default: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
68
68
  };
69
- effect: import('vue-types').VueTypeDef<"fill" | "outline" | "gradient" | "transparent" | "plain"> & {
70
- default: "fill" | "outline" | "gradient" | "transparent" | "plain";
69
+ effect: import('vue-types').VueTypeDef<"fill" | "outline" | "plain" | "gradient" | "transparent"> & {
70
+ default: "fill" | "outline" | "plain" | "gradient" | "transparent";
71
71
  };
72
72
  color: import('vue-types').VueTypeDef<"success" | "warning" | "info" | "primary" | "danger" | "tips">;
73
73
  playingIcon: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
@@ -14,8 +14,8 @@ declare const __VLS_component: import('vue').DefineComponent<{
14
14
  status: import('vue-types').VueTypeDef<"stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush"> & {
15
15
  default: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
16
16
  };
17
- effect: import('vue-types').VueTypeDef<"fill" | "outline" | "gradient" | "transparent" | "plain"> & {
18
- default: "fill" | "outline" | "gradient" | "transparent" | "plain";
17
+ effect: import('vue-types').VueTypeDef<"fill" | "outline" | "plain" | "gradient" | "transparent"> & {
18
+ default: "fill" | "outline" | "plain" | "gradient" | "transparent";
19
19
  };
20
20
  color: import('vue-types').VueTypeDef<"success" | "warning" | "info" | "primary" | "danger" | "tips">;
21
21
  playingIcon: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
@@ -25,15 +25,15 @@ declare const __VLS_component: import('vue').DefineComponent<{
25
25
  status: import('vue-types').VueTypeDef<"stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush"> & {
26
26
  default: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
27
27
  };
28
- effect: import('vue-types').VueTypeDef<"fill" | "outline" | "gradient" | "transparent" | "plain"> & {
29
- default: "fill" | "outline" | "gradient" | "transparent" | "plain";
28
+ effect: import('vue-types').VueTypeDef<"fill" | "outline" | "plain" | "gradient" | "transparent"> & {
29
+ default: "fill" | "outline" | "plain" | "gradient" | "transparent";
30
30
  };
31
31
  color: import('vue-types').VueTypeDef<"success" | "warning" | "info" | "primary" | "danger" | "tips">;
32
32
  playingIcon: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
33
33
  default: boolean;
34
34
  };
35
35
  }>>, {
36
- effect: "fill" | "outline" | "gradient" | "transparent" | "plain";
36
+ effect: "fill" | "outline" | "plain" | "gradient" | "transparent";
37
37
  status: "stop" | "waiting" | "expired" | "live" | "playback" | "end" | "unStart" | "testing" | "banpush";
38
38
  playingIcon: boolean;
39
39
  }>;
@@ -18,8 +18,8 @@ export declare const liveStatusTagProps: () => {
18
18
  * @propType LiveStatusTagEffect
19
19
  * @default 'plain
20
20
  */
21
- effect: import('vue-types').VueTypeDef<"fill" | "outline" | "gradient" | "transparent" | "plain"> & {
22
- default: "fill" | "outline" | "gradient" | "transparent" | "plain";
21
+ effect: import('vue-types').VueTypeDef<"fill" | "outline" | "plain" | "gradient" | "transparent"> & {
22
+ default: "fill" | "outline" | "plain" | "gradient" | "transparent";
23
23
  };
24
24
  /**
25
25
  * 直播状态标签颜色
@@ -13,6 +13,7 @@ declare const _default: import('vue').DefineComponent<{
13
13
  };
14
14
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
15
  "click-pendant": (arg?: void | undefined) => void;
16
+ "countdown-change": (arg: number) => void;
16
17
  "countdown-finish": (arg?: void | undefined) => void;
17
18
  }, string, Readonly<import('vue').ExtractPropTypes<{
18
19
  iconUrl: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -29,6 +29,10 @@ export declare const normalPendantEmit: () => {
29
29
  * 点击挂件
30
30
  */
31
31
  'click-pendant': import('../../../vue-utils').EmitFuncType<void>;
32
+ /**
33
+ * 倒计时剩余时间改变
34
+ */
35
+ 'countdown-change': import('../../../vue-utils').EmitFuncType<number>;
32
36
  /**
33
37
  * 倒计时结束
34
38
  */
@@ -12,6 +12,7 @@ declare const _default: import('vue').DefineComponent<{
12
12
  setupBackAction: (data: PopupBackActionData) => void;
13
13
  setupReceiveData: (data: import('..').RewardReceiveData) => void;
14
14
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
+ close: (arg?: void | undefined) => void;
15
16
  "click-back": (arg?: void | undefined) => void;
16
17
  }, string, Readonly<import('vue').ExtractPropTypes<{
17
18
  popupConfig: import('vue-types').VueTypeValidableDef<import('../../../popup').PopupConfig, import('vue-types/dist/types').ValidatorFunction<import('../../../popup').PopupConfig>>;