@polyv/vue-components 1.7.0 → 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 (252) hide show
  1. package/package.json +1 -1
  2. package/styles/function.scss +4 -1
  3. package/vue2/index.es.js +9341 -8532
  4. package/vue2/src/components/business/external-links/use-external-links.d.ts +21 -16
  5. package/vue2/src/components/business/live-status-tag/index.d.ts +14 -14
  6. package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  7. package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  8. package/vue2/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  9. package/vue2/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  10. package/vue2/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  11. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +9 -0
  12. package/vue2/src/components/button/index.d.ts +26 -0
  13. package/vue2/src/components/button/src/button.vue.d.ts +9 -0
  14. package/vue2/src/components/button/src/use-button.d.ts +13 -0
  15. package/vue2/src/components/condition-filter/index.d.ts +122 -0
  16. package/vue2/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  17. package/vue2/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  18. package/vue2/src/components/condition-filter/src/hooks.d.ts +5 -0
  19. package/vue2/src/components/condition-filter/src/props-define.d.ts +43 -0
  20. package/vue2/src/components/dropdown/index.d.ts +6 -0
  21. package/vue2/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  22. package/vue2/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  23. package/vue2/src/components/exports.d.ts +4 -0
  24. package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -0
  25. package/vue2/src/components/form/checkbox/src/props-define.d.ts +0 -5
  26. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  27. package/vue2/src/components/form/file-upload/index.d.ts +2 -0
  28. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +1 -0
  29. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -5
  30. package/vue2/src/components/form/form-group/index.d.ts +20 -2
  31. package/vue2/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  32. package/vue2/src/components/form/form-group/src/props-define.d.ts +12 -0
  33. package/vue2/src/components/form/form-item/index.d.ts +35 -30
  34. package/vue2/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  35. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +16 -15
  36. package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  37. package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  38. package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  39. package/vue2/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  40. package/vue2/src/components/form/form-submit-button/index.d.ts +9 -0
  41. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +9 -0
  42. package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  43. package/vue2/src/components/form/form-wrap/index.d.ts +24 -24
  44. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +8 -8
  45. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -4
  46. package/vue2/src/components/form/hooks/use-form-change.d.ts +20 -0
  47. package/vue2/src/components/form/hooks/use-form-extra.d.ts +21 -0
  48. package/vue2/src/components/form/input/index.d.ts +7 -0
  49. package/vue2/src/components/form/input/src/input.vue.d.ts +7 -0
  50. package/vue2/src/components/form/input/src/props-define.d.ts +8 -6
  51. package/vue2/src/components/form/input-number/src/props-define.d.ts +1 -6
  52. package/vue2/src/components/form/input-url/index.d.ts +21 -0
  53. package/vue2/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  54. package/vue2/src/components/form/input-url/src/props-define.d.ts +13 -0
  55. package/vue2/src/components/form/radio/src/props-define.d.ts +0 -5
  56. package/vue2/src/components/form/select/index.d.ts +60 -0
  57. package/vue2/src/components/form/select/src/props-define.d.ts +10 -6
  58. package/vue2/src/components/form/select/src/select.vue.d.ts +21 -0
  59. package/vue2/src/components/form/switch/src/props-define.d.ts +0 -5
  60. package/vue2/src/components/form/timezone-picker/index.d.ts +63 -0
  61. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +27 -0
  62. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +63 -0
  63. package/vue2/src/components/form/types/index.d.ts +1 -1
  64. package/vue2/src/components/icons/icons/application/index.d.ts +6 -0
  65. package/vue2/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  66. package/vue2/src/components/icons/icons/computer/index.d.ts +6 -0
  67. package/vue2/src/components/icons/icons/computer-data/index.d.ts +6 -0
  68. package/vue2/src/components/icons/icons/computer-down/index.d.ts +6 -0
  69. package/vue2/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  70. package/vue2/src/components/icons/icons/computer-play/index.d.ts +6 -0
  71. package/vue2/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  72. package/vue2/src/components/icons/icons/edit-two/index.d.ts +6 -0
  73. package/vue2/src/components/icons/icons/feedback/index.d.ts +6 -0
  74. package/vue2/src/components/icons/icons/home/index.d.ts +6 -0
  75. package/vue2/src/components/icons/icons/instruction/index.d.ts +6 -0
  76. package/vue2/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  77. package/vue2/src/components/icons/icons/money/index.d.ts +6 -0
  78. package/vue2/src/components/icons/icons/move-down/index.d.ts +6 -0
  79. package/vue2/src/components/icons/icons/move-up/index.d.ts +6 -0
  80. package/vue2/src/components/icons/icons/play-fast/index.d.ts +6 -0
  81. package/vue2/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  82. package/vue2/src/components/icons/icons/preview-close/index.d.ts +6 -0
  83. package/vue2/src/components/icons/icons/preview-open/index.d.ts +6 -0
  84. package/vue2/src/components/icons/icons/protect/index.d.ts +6 -0
  85. package/vue2/src/components/icons/icons/remind-off/index.d.ts +6 -0
  86. package/vue2/src/components/icons/icons/remind-on/index.d.ts +6 -0
  87. package/vue2/src/components/icons/icons/setting-two/index.d.ts +6 -0
  88. package/vue2/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  89. package/vue2/src/components/icons/icons/share/index.d.ts +6 -0
  90. package/vue2/src/components/icons/map.d.ts +25 -0
  91. package/vue2/src/components/image/index.d.ts +150 -0
  92. package/vue2/src/components/image/src/events.d.ts +6 -0
  93. package/vue2/src/components/image/src/image.vue.d.ts +69 -0
  94. package/vue2/src/components/image/src/props-define.d.ts +57 -0
  95. package/vue2/src/components/image/src/use-image.d.ts +16 -0
  96. package/vue2/src/components/menu/index.d.ts +56 -17
  97. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +3 -0
  98. package/vue2/src/components/menu/src/menu-item.vue.d.ts +11 -1
  99. package/vue2/src/components/menu/src/menu.vue.d.ts +8 -5
  100. package/vue2/src/components/menu/src/props-define.d.ts +29 -3
  101. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +9 -1
  102. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +12 -0
  103. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +22 -16
  104. package/vue2/src/components/section/index.d.ts +27 -0
  105. package/vue2/src/components/section/src/props-define.d.ts +24 -0
  106. package/vue2/src/components/section/src/section.vue.d.ts +24 -0
  107. package/vue2/src/components/table/index.d.ts +6 -6
  108. package/vue2/src/components/table/src/hooks/props-define.d.ts +1 -1
  109. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  110. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +4 -4
  111. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +6 -6
  112. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  113. package/vue2/src/components/table/src/table-column.vue.d.ts +2 -2
  114. package/vue2/src/components/tag/index.d.ts +14 -14
  115. package/vue2/src/components/tag/src/props-define.d.ts +2 -2
  116. package/vue2/src/components/tag/src/tag.vue.d.ts +5 -5
  117. package/vue2/src/components/tooltip/src/props-define.d.ts +6 -0
  118. package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  119. package/vue2/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  120. package/vue2/src/lang/hook.d.ts +4 -0
  121. package/vue2/src/lang/internal/en.json.d.ts +5 -0
  122. package/vue2/src/lang/internal/index.d.ts +5 -0
  123. package/vue2/src/lang/internal/ja.json.d.ts +5 -0
  124. package/vue2/src/lang/internal/ko.json.d.ts +5 -0
  125. package/vue2/src/lang/internal/ru.json.d.ts +5 -0
  126. package/vue2/src/lang/internal/zh-CN.json.d.ts +5 -0
  127. package/vue2/src/lang/internal/zh-TW.json.d.ts +5 -0
  128. package/vue3/index.es.js +9356 -8547
  129. package/vue3/src/components/business/external-links/use-external-links.d.ts +21 -16
  130. package/vue3/src/components/business/live-status-tag/index.d.ts +14 -14
  131. package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  132. package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  133. package/vue3/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  134. package/vue3/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  135. package/vue3/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  136. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +9 -0
  137. package/vue3/src/components/button/index.d.ts +26 -0
  138. package/vue3/src/components/button/src/button.vue.d.ts +9 -0
  139. package/vue3/src/components/button/src/use-button.d.ts +13 -0
  140. package/vue3/src/components/condition-filter/index.d.ts +122 -0
  141. package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  142. package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  143. package/vue3/src/components/condition-filter/src/hooks.d.ts +5 -0
  144. package/vue3/src/components/condition-filter/src/props-define.d.ts +43 -0
  145. package/vue3/src/components/dropdown/index.d.ts +6 -0
  146. package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  147. package/vue3/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  148. package/vue3/src/components/exports.d.ts +4 -0
  149. package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -0
  150. package/vue3/src/components/form/checkbox/src/props-define.d.ts +0 -5
  151. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  152. package/vue3/src/components/form/file-upload/index.d.ts +2 -0
  153. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +1 -0
  154. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -5
  155. package/vue3/src/components/form/form-group/index.d.ts +20 -2
  156. package/vue3/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  157. package/vue3/src/components/form/form-group/src/props-define.d.ts +12 -0
  158. package/vue3/src/components/form/form-item/index.d.ts +35 -30
  159. package/vue3/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  160. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +16 -15
  161. package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  162. package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  163. package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  164. package/vue3/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  165. package/vue3/src/components/form/form-submit-button/index.d.ts +9 -0
  166. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +9 -0
  167. package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  168. package/vue3/src/components/form/form-wrap/index.d.ts +24 -24
  169. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +8 -8
  170. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -4
  171. package/vue3/src/components/form/hooks/use-form-change.d.ts +20 -0
  172. package/vue3/src/components/form/hooks/use-form-extra.d.ts +21 -0
  173. package/vue3/src/components/form/input/index.d.ts +7 -0
  174. package/vue3/src/components/form/input/src/input.vue.d.ts +7 -0
  175. package/vue3/src/components/form/input/src/props-define.d.ts +8 -6
  176. package/vue3/src/components/form/input-number/src/props-define.d.ts +1 -6
  177. package/vue3/src/components/form/input-url/index.d.ts +21 -0
  178. package/vue3/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  179. package/vue3/src/components/form/input-url/src/props-define.d.ts +13 -0
  180. package/vue3/src/components/form/radio/src/props-define.d.ts +0 -5
  181. package/vue3/src/components/form/select/index.d.ts +60 -0
  182. package/vue3/src/components/form/select/src/props-define.d.ts +10 -6
  183. package/vue3/src/components/form/select/src/select.vue.d.ts +21 -0
  184. package/vue3/src/components/form/switch/src/props-define.d.ts +0 -5
  185. package/vue3/src/components/form/timezone-picker/index.d.ts +63 -0
  186. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +27 -0
  187. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +63 -0
  188. package/vue3/src/components/form/types/index.d.ts +1 -1
  189. package/vue3/src/components/icons/icons/application/index.d.ts +6 -0
  190. package/vue3/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  191. package/vue3/src/components/icons/icons/computer/index.d.ts +6 -0
  192. package/vue3/src/components/icons/icons/computer-data/index.d.ts +6 -0
  193. package/vue3/src/components/icons/icons/computer-down/index.d.ts +6 -0
  194. package/vue3/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  195. package/vue3/src/components/icons/icons/computer-play/index.d.ts +6 -0
  196. package/vue3/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  197. package/vue3/src/components/icons/icons/edit-two/index.d.ts +6 -0
  198. package/vue3/src/components/icons/icons/feedback/index.d.ts +6 -0
  199. package/vue3/src/components/icons/icons/home/index.d.ts +6 -0
  200. package/vue3/src/components/icons/icons/instruction/index.d.ts +6 -0
  201. package/vue3/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  202. package/vue3/src/components/icons/icons/money/index.d.ts +6 -0
  203. package/vue3/src/components/icons/icons/move-down/index.d.ts +6 -0
  204. package/vue3/src/components/icons/icons/move-up/index.d.ts +6 -0
  205. package/vue3/src/components/icons/icons/play-fast/index.d.ts +6 -0
  206. package/vue3/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  207. package/vue3/src/components/icons/icons/preview-close/index.d.ts +6 -0
  208. package/vue3/src/components/icons/icons/preview-open/index.d.ts +6 -0
  209. package/vue3/src/components/icons/icons/protect/index.d.ts +6 -0
  210. package/vue3/src/components/icons/icons/remind-off/index.d.ts +6 -0
  211. package/vue3/src/components/icons/icons/remind-on/index.d.ts +6 -0
  212. package/vue3/src/components/icons/icons/setting-two/index.d.ts +6 -0
  213. package/vue3/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  214. package/vue3/src/components/icons/icons/share/index.d.ts +6 -0
  215. package/vue3/src/components/icons/map.d.ts +25 -0
  216. package/vue3/src/components/image/index.d.ts +150 -0
  217. package/vue3/src/components/image/src/events.d.ts +6 -0
  218. package/vue3/src/components/image/src/image.vue.d.ts +69 -0
  219. package/vue3/src/components/image/src/props-define.d.ts +57 -0
  220. package/vue3/src/components/image/src/use-image.d.ts +16 -0
  221. package/vue3/src/components/menu/index.d.ts +56 -17
  222. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +3 -0
  223. package/vue3/src/components/menu/src/menu-item.vue.d.ts +11 -1
  224. package/vue3/src/components/menu/src/menu.vue.d.ts +8 -5
  225. package/vue3/src/components/menu/src/props-define.d.ts +29 -3
  226. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +9 -1
  227. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +12 -0
  228. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +22 -16
  229. package/vue3/src/components/section/index.d.ts +27 -0
  230. package/vue3/src/components/section/src/props-define.d.ts +24 -0
  231. package/vue3/src/components/section/src/section.vue.d.ts +24 -0
  232. package/vue3/src/components/table/index.d.ts +6 -6
  233. package/vue3/src/components/table/src/hooks/props-define.d.ts +1 -1
  234. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  235. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +4 -4
  236. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +6 -6
  237. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  238. package/vue3/src/components/table/src/table-column.vue.d.ts +2 -2
  239. package/vue3/src/components/tag/index.d.ts +14 -14
  240. package/vue3/src/components/tag/src/props-define.d.ts +2 -2
  241. package/vue3/src/components/tag/src/tag.vue.d.ts +5 -5
  242. package/vue3/src/components/tooltip/src/props-define.d.ts +6 -0
  243. package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  244. package/vue3/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  245. package/vue3/src/lang/hook.d.ts +4 -0
  246. package/vue3/src/lang/internal/en.json.d.ts +5 -0
  247. package/vue3/src/lang/internal/index.d.ts +5 -0
  248. package/vue3/src/lang/internal/ja.json.d.ts +5 -0
  249. package/vue3/src/lang/internal/ko.json.d.ts +5 -0
  250. package/vue3/src/lang/internal/ru.json.d.ts +5 -0
  251. package/vue3/src/lang/internal/zh-CN.json.d.ts +5 -0
  252. package/vue3/src/lang/internal/zh-TW.json.d.ts +5 -0
@@ -312,6 +312,11 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
312
312
  channelCover: {
313
313
  channelId: string;
314
314
  };
315
+ conditionFilter: {
316
+ reset: string;
317
+ expand: string;
318
+ collapse: string;
319
+ };
315
320
  } & {
316
321
  common: {
317
322
  confirm: string;
@@ -338,11 +343,11 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
338
343
  formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
339
344
  default: () => ValidatorRules;
340
345
  };
341
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
342
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
343
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
346
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
347
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
348
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
344
349
  submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
345
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
350
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
346
351
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
347
352
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
348
353
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -356,11 +361,11 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
356
361
  formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
357
362
  default: () => ValidatorRules;
358
363
  };
359
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
360
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
361
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
364
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
365
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
366
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
362
367
  submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
363
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
368
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
364
369
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
365
370
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
366
371
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -379,11 +384,11 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
379
384
  formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
380
385
  default: () => ValidatorRules;
381
386
  };
382
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
383
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
384
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
387
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
388
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
389
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
385
390
  submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
386
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
391
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
387
392
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
388
393
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
389
394
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -400,11 +405,11 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
400
405
  formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
401
406
  default: () => ValidatorRules;
402
407
  };
403
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
404
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
405
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
408
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
409
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
410
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
406
411
  submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
407
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
412
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
408
413
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
409
414
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
410
415
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -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>>;
@@ -32,6 +32,10 @@ export declare const rewardReceiveEmits: () => {
32
32
  * 点击返回
33
33
  */
34
34
  'click-back': import('../../../../vue-utils').EmitFuncType<void>;
35
+ /**
36
+ * 点击关闭
37
+ */
38
+ close: import('../../../../vue-utils').EmitFuncType<void>;
35
39
  };
36
40
  export interface RewardReceiveInstance {
37
41
  setupReceiveData: (data: RewardReceiveData) => void;
@@ -289,6 +293,11 @@ export declare const useRewardReceive: (options: {
289
293
  channelCover: {
290
294
  channelId: string;
291
295
  };
296
+ conditionFilter: {
297
+ reset: string;
298
+ expand: string;
299
+ collapse: string;
300
+ };
292
301
  } & {
293
302
  common: {
294
303
  confirm: string;
@@ -13,6 +13,9 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
13
13
  outline: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
14
14
  default: boolean;
15
15
  };
16
+ plain: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
17
+ default: boolean;
18
+ };
16
19
  block: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
17
20
  default: boolean;
18
21
  };
@@ -24,6 +27,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
24
27
  link: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
25
28
  default: boolean;
26
29
  };
30
+ icon: import('vue-types').VueTypeDef<boolean | import('@polyv/icons-vue-middle').IconComponentOption>;
27
31
  minWidth: import('vue-types').VueTypeDef<number | boolean> & {
28
32
  default: number | boolean;
29
33
  };
@@ -45,6 +49,9 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
45
49
  outline: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
46
50
  default: boolean;
47
51
  };
52
+ plain: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
53
+ default: boolean;
54
+ };
48
55
  block: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
49
56
  default: boolean;
50
57
  };
@@ -56,6 +63,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
56
63
  link: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
57
64
  default: boolean;
58
65
  };
66
+ icon: import('vue-types').VueTypeDef<boolean | import('@polyv/icons-vue-middle').IconComponentOption>;
59
67
  minWidth: import('vue-types').VueTypeDef<number | boolean> & {
60
68
  default: number | boolean;
61
69
  };
@@ -71,6 +79,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
71
79
  disabled: boolean;
72
80
  size: "default" | "small" | "large" | "mini";
73
81
  outline: boolean;
82
+ plain: boolean;
74
83
  block: boolean;
75
84
  gradient: boolean;
76
85
  minWidth: number | boolean;
@@ -90,6 +99,9 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
90
99
  outline: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
91
100
  default: boolean;
92
101
  };
102
+ plain: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
103
+ default: boolean;
104
+ };
93
105
  block: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
94
106
  default: boolean;
95
107
  };
@@ -101,6 +113,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
101
113
  link: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
102
114
  default: boolean;
103
115
  };
116
+ icon: import('vue-types').VueTypeDef<boolean | import('@polyv/icons-vue-middle').IconComponentOption>;
104
117
  minWidth: import('vue-types').VueTypeDef<number | boolean> & {
105
118
  default: number | boolean;
106
119
  };
@@ -122,6 +135,9 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
122
135
  outline: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
123
136
  default: boolean;
124
137
  };
138
+ plain: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
139
+ default: boolean;
140
+ };
125
141
  block: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
126
142
  default: boolean;
127
143
  };
@@ -133,6 +149,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
133
149
  link: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
134
150
  default: boolean;
135
151
  };
152
+ icon: import('vue-types').VueTypeDef<boolean | import('@polyv/icons-vue-middle').IconComponentOption>;
136
153
  minWidth: import('vue-types').VueTypeDef<number | boolean> & {
137
154
  default: number | boolean;
138
155
  };
@@ -154,6 +171,9 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
154
171
  outline: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
155
172
  default: boolean;
156
173
  };
174
+ plain: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
175
+ default: boolean;
176
+ };
157
177
  block: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
158
178
  default: boolean;
159
179
  };
@@ -165,6 +185,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
165
185
  link: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
166
186
  default: boolean;
167
187
  };
188
+ icon: import('vue-types').VueTypeDef<boolean | import('@polyv/icons-vue-middle').IconComponentOption>;
168
189
  minWidth: import('vue-types').VueTypeDef<number | boolean> & {
169
190
  default: number | boolean;
170
191
  };
@@ -180,6 +201,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
180
201
  disabled: boolean;
181
202
  size: "default" | "small" | "large" | "mini";
182
203
  outline: boolean;
204
+ plain: boolean;
183
205
  block: boolean;
184
206
  gradient: boolean;
185
207
  minWidth: number | boolean;
@@ -200,6 +222,9 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
200
222
  outline: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
201
223
  default: boolean;
202
224
  };
225
+ plain: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
226
+ default: boolean;
227
+ };
203
228
  block: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
204
229
  default: boolean;
205
230
  };
@@ -211,6 +236,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
211
236
  link: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
212
237
  default: boolean;
213
238
  };
239
+ icon: import('vue-types').VueTypeDef<boolean | import('@polyv/icons-vue-middle').IconComponentOption>;
214
240
  minWidth: import('vue-types').VueTypeDef<number | boolean> & {
215
241
  default: number | boolean;
216
242
  };
@@ -25,6 +25,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
25
25
  outline: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
26
26
  default: boolean;
27
27
  };
28
+ plain: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
29
+ default: boolean;
30
+ };
28
31
  block: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
29
32
  default: boolean;
30
33
  };
@@ -36,6 +39,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
36
39
  link: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
37
40
  default: boolean;
38
41
  };
42
+ icon: import('vue-types').VueTypeDef<boolean | import('@polyv/icons-vue-middle').IconComponentOption>;
39
43
  minWidth: import('vue-types').VueTypeDef<number | boolean> & {
40
44
  default: number | boolean;
41
45
  };
@@ -60,6 +64,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
60
64
  outline: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
61
65
  default: boolean;
62
66
  };
67
+ plain: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
68
+ default: boolean;
69
+ };
63
70
  block: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
64
71
  default: boolean;
65
72
  };
@@ -71,6 +78,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
71
78
  link: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
72
79
  default: boolean;
73
80
  };
81
+ icon: import('vue-types').VueTypeDef<boolean | import('@polyv/icons-vue-middle').IconComponentOption>;
74
82
  minWidth: import('vue-types').VueTypeDef<number | boolean> & {
75
83
  default: number | boolean;
76
84
  };
@@ -83,6 +91,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
83
91
  disabled: boolean;
84
92
  size: "default" | "small" | "large" | "mini";
85
93
  outline: boolean;
94
+ plain: boolean;
86
95
  block: boolean;
87
96
  gradient: boolean;
88
97
  minWidth: number | boolean;
@@ -1,4 +1,5 @@
1
1
  import { FormatProps } from '../../../vue-utils';
2
+ import { IconComponentOption } from '@polyv/icons-vue-middle';
2
3
  export declare const buttonProps: () => {
3
4
  business: import('vue-types').VueTypeValidableDef<import('../../../hooks/business/use-business-type').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../../hooks/business/use-business-type').BusinessType>>;
4
5
  /**
@@ -35,6 +36,13 @@ export declare const buttonProps: () => {
35
36
  outline: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
36
37
  default: boolean;
37
38
  };
39
+ /**
40
+ * 是否为 plain 按钮
41
+ * @default false
42
+ */
43
+ plain: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
44
+ default: boolean;
45
+ };
38
46
  /**
39
47
  * 是否为块级按钮
40
48
  * @default false
@@ -64,6 +72,11 @@ export declare const buttonProps: () => {
64
72
  link: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
65
73
  default: boolean;
66
74
  };
75
+ /**
76
+ * 是否为图标按钮
77
+ * @default false
78
+ */
79
+ icon: import('vue-types').VueTypeDef<boolean | IconComponentOption>;
67
80
  /**
68
81
  * 按钮最小宽度
69
82
  * @default false
@@ -0,0 +1,122 @@
1
+ export declare const PwcConditionFilter: import('../../vue-utils/install-utils').SFCInstall<import('vue/types/v3-component-public-instance').ComponentPublicInstanceConstructor<import('vue/types/v3-component-public-instance').Vue3Instance<{}, Readonly<import('vue').ExtractPropTypes<{
2
+ "v-model-key": import('vue-types').VueTypeValidableDef<{
3
+ [key: string]: any;
4
+ }, import('vue-types/dist/types').ValidatorFunction<{
5
+ [key: string]: any;
6
+ }>> & {
7
+ default: () => {
8
+ [key: string]: any;
9
+ };
10
+ };
11
+ resetFilter: import('vue-types').VueTypeDef<boolean | (() => any)> & {
12
+ default: boolean | (() => any);
13
+ };
14
+ }>>, Readonly<import('vue').ExtractPropTypes<{
15
+ "v-model-key": import('vue-types').VueTypeValidableDef<{
16
+ [key: string]: any;
17
+ }, import('vue-types/dist/types').ValidatorFunction<{
18
+ [key: string]: any;
19
+ }>> & {
20
+ default: () => {
21
+ [key: string]: any;
22
+ };
23
+ };
24
+ resetFilter: import('vue-types').VueTypeDef<boolean | (() => any)> & {
25
+ default: boolean | (() => any);
26
+ };
27
+ }>>, {
28
+ search: (arg: any) => void;
29
+ reset: (arg?: void | undefined) => void;
30
+ }, {
31
+ "v-model-key": {
32
+ [key: string]: any;
33
+ };
34
+ resetFilter: boolean | (() => any);
35
+ }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
36
+ "v-model-key": import('vue-types').VueTypeValidableDef<{
37
+ [key: string]: any;
38
+ }, import('vue-types/dist/types').ValidatorFunction<{
39
+ [key: string]: any;
40
+ }>> & {
41
+ default: () => {
42
+ [key: string]: any;
43
+ };
44
+ };
45
+ resetFilter: import('vue-types').VueTypeDef<boolean | (() => any)> & {
46
+ default: boolean | (() => any);
47
+ };
48
+ }>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
49
+ "v-model-key": import('vue-types').VueTypeValidableDef<{
50
+ [key: string]: any;
51
+ }, import('vue-types/dist/types').ValidatorFunction<{
52
+ [key: string]: any;
53
+ }>> & {
54
+ default: () => {
55
+ [key: string]: any;
56
+ };
57
+ };
58
+ resetFilter: import('vue-types').VueTypeDef<boolean | (() => any)> & {
59
+ default: boolean | (() => any);
60
+ };
61
+ }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
62
+ "v-model-key": import('vue-types').VueTypeValidableDef<{
63
+ [key: string]: any;
64
+ }, import('vue-types/dist/types').ValidatorFunction<{
65
+ [key: string]: any;
66
+ }>> & {
67
+ default: () => {
68
+ [key: string]: any;
69
+ };
70
+ };
71
+ resetFilter: import('vue-types').VueTypeDef<boolean | (() => any)> & {
72
+ default: boolean | (() => any);
73
+ };
74
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
75
+ search: (arg: any) => void;
76
+ reset: (arg?: void | undefined) => void;
77
+ }, string, {
78
+ "v-model-key": {
79
+ [key: string]: any;
80
+ };
81
+ resetFilter: boolean | (() => any);
82
+ }> & {
83
+ props: {
84
+ "v-model-key": import('vue-types').VueTypeValidableDef<{
85
+ [key: string]: any;
86
+ }, import('vue-types/dist/types').ValidatorFunction<{
87
+ [key: string]: any;
88
+ }>> & {
89
+ default: () => {
90
+ [key: string]: any;
91
+ };
92
+ };
93
+ resetFilter: import('vue-types').VueTypeDef<boolean | (() => any)> & {
94
+ default: boolean | (() => any);
95
+ };
96
+ };
97
+ } & (new () => {
98
+ $scopedSlots: {
99
+ default?(_: {}): any;
100
+ extra?(_: {}): any;
101
+ };
102
+ }), import('../../vue-utils/install-utils').InstallOptions>;
103
+ export declare const PwcConditionFilterItem: import('../../vue-utils/install-utils').SFCInstall<import('vue/types/v3-component-public-instance').ComponentPublicInstanceConstructor<import('vue/types/v3-component-public-instance').Vue3Instance<{}, Readonly<import('vue').ExtractPropTypes<{
104
+ label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
105
+ }>>, Readonly<import('vue').ExtractPropTypes<{
106
+ label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
107
+ }>>, {}, {}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
108
+ label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
109
+ }>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
110
+ label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
111
+ }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
112
+ label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
113
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}> & {
114
+ props: {
115
+ label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
116
+ };
117
+ } & (new () => {
118
+ $scopedSlots: {
119
+ default?(_: {}): any;
120
+ };
121
+ }), import('../../vue-utils/install-utils').InstallOptions>;
122
+ export * from './src/props-define';
@@ -0,0 +1,21 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: HTMLDivElement;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{
11
+ label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
12
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
13
+ label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
14
+ }>>, {}>;
15
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
+ export default _default;
17
+ type __VLS_WithTemplateSlots<T, S> = T & {
18
+ new (): {
19
+ $scopedSlots: S;
20
+ };
21
+ };