@polyv/vue-components 1.7.0 → 1.8.1

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 (254) hide show
  1. package/package.json +1 -1
  2. package/styles/function.scss +4 -1
  3. package/vue2/index.es.js +9348 -8533
  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-pagination.d.ts +3 -1
  112. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +7 -6
  113. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  114. package/vue2/src/components/table/src/table-column.vue.d.ts +2 -2
  115. package/vue2/src/components/tag/index.d.ts +14 -14
  116. package/vue2/src/components/tag/src/props-define.d.ts +2 -2
  117. package/vue2/src/components/tag/src/tag.vue.d.ts +5 -5
  118. package/vue2/src/components/tooltip/src/props-define.d.ts +6 -0
  119. package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  120. package/vue2/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  121. package/vue2/src/lang/hook.d.ts +4 -0
  122. package/vue2/src/lang/internal/en.json.d.ts +5 -0
  123. package/vue2/src/lang/internal/index.d.ts +5 -0
  124. package/vue2/src/lang/internal/ja.json.d.ts +5 -0
  125. package/vue2/src/lang/internal/ko.json.d.ts +5 -0
  126. package/vue2/src/lang/internal/ru.json.d.ts +5 -0
  127. package/vue2/src/lang/internal/zh-CN.json.d.ts +5 -0
  128. package/vue2/src/lang/internal/zh-TW.json.d.ts +5 -0
  129. package/vue3/index.es.js +9366 -8551
  130. package/vue3/src/components/business/external-links/use-external-links.d.ts +21 -16
  131. package/vue3/src/components/business/live-status-tag/index.d.ts +14 -14
  132. package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  133. package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  134. package/vue3/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  135. package/vue3/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  136. package/vue3/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  137. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +9 -0
  138. package/vue3/src/components/button/index.d.ts +26 -0
  139. package/vue3/src/components/button/src/button.vue.d.ts +9 -0
  140. package/vue3/src/components/button/src/use-button.d.ts +13 -0
  141. package/vue3/src/components/condition-filter/index.d.ts +122 -0
  142. package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  143. package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  144. package/vue3/src/components/condition-filter/src/hooks.d.ts +5 -0
  145. package/vue3/src/components/condition-filter/src/props-define.d.ts +43 -0
  146. package/vue3/src/components/dropdown/index.d.ts +6 -0
  147. package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  148. package/vue3/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  149. package/vue3/src/components/exports.d.ts +4 -0
  150. package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -0
  151. package/vue3/src/components/form/checkbox/src/props-define.d.ts +0 -5
  152. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  153. package/vue3/src/components/form/file-upload/index.d.ts +2 -0
  154. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +1 -0
  155. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -5
  156. package/vue3/src/components/form/form-group/index.d.ts +20 -2
  157. package/vue3/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  158. package/vue3/src/components/form/form-group/src/props-define.d.ts +12 -0
  159. package/vue3/src/components/form/form-item/index.d.ts +35 -30
  160. package/vue3/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  161. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +16 -15
  162. package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  163. package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  164. package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  165. package/vue3/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  166. package/vue3/src/components/form/form-submit-button/index.d.ts +9 -0
  167. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +9 -0
  168. package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  169. package/vue3/src/components/form/form-wrap/index.d.ts +24 -24
  170. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +8 -8
  171. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -4
  172. package/vue3/src/components/form/hooks/use-form-change.d.ts +20 -0
  173. package/vue3/src/components/form/hooks/use-form-extra.d.ts +21 -0
  174. package/vue3/src/components/form/input/index.d.ts +7 -0
  175. package/vue3/src/components/form/input/src/input.vue.d.ts +7 -0
  176. package/vue3/src/components/form/input/src/props-define.d.ts +8 -6
  177. package/vue3/src/components/form/input-number/src/props-define.d.ts +1 -6
  178. package/vue3/src/components/form/input-url/index.d.ts +21 -0
  179. package/vue3/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  180. package/vue3/src/components/form/input-url/src/props-define.d.ts +13 -0
  181. package/vue3/src/components/form/radio/src/props-define.d.ts +0 -5
  182. package/vue3/src/components/form/select/index.d.ts +60 -0
  183. package/vue3/src/components/form/select/src/props-define.d.ts +10 -6
  184. package/vue3/src/components/form/select/src/select.vue.d.ts +21 -0
  185. package/vue3/src/components/form/switch/src/props-define.d.ts +0 -5
  186. package/vue3/src/components/form/timezone-picker/index.d.ts +63 -0
  187. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +27 -0
  188. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +63 -0
  189. package/vue3/src/components/form/types/index.d.ts +1 -1
  190. package/vue3/src/components/icons/icons/application/index.d.ts +6 -0
  191. package/vue3/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  192. package/vue3/src/components/icons/icons/computer/index.d.ts +6 -0
  193. package/vue3/src/components/icons/icons/computer-data/index.d.ts +6 -0
  194. package/vue3/src/components/icons/icons/computer-down/index.d.ts +6 -0
  195. package/vue3/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  196. package/vue3/src/components/icons/icons/computer-play/index.d.ts +6 -0
  197. package/vue3/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  198. package/vue3/src/components/icons/icons/edit-two/index.d.ts +6 -0
  199. package/vue3/src/components/icons/icons/feedback/index.d.ts +6 -0
  200. package/vue3/src/components/icons/icons/home/index.d.ts +6 -0
  201. package/vue3/src/components/icons/icons/instruction/index.d.ts +6 -0
  202. package/vue3/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  203. package/vue3/src/components/icons/icons/money/index.d.ts +6 -0
  204. package/vue3/src/components/icons/icons/move-down/index.d.ts +6 -0
  205. package/vue3/src/components/icons/icons/move-up/index.d.ts +6 -0
  206. package/vue3/src/components/icons/icons/play-fast/index.d.ts +6 -0
  207. package/vue3/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  208. package/vue3/src/components/icons/icons/preview-close/index.d.ts +6 -0
  209. package/vue3/src/components/icons/icons/preview-open/index.d.ts +6 -0
  210. package/vue3/src/components/icons/icons/protect/index.d.ts +6 -0
  211. package/vue3/src/components/icons/icons/remind-off/index.d.ts +6 -0
  212. package/vue3/src/components/icons/icons/remind-on/index.d.ts +6 -0
  213. package/vue3/src/components/icons/icons/setting-two/index.d.ts +6 -0
  214. package/vue3/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  215. package/vue3/src/components/icons/icons/share/index.d.ts +6 -0
  216. package/vue3/src/components/icons/map.d.ts +25 -0
  217. package/vue3/src/components/image/index.d.ts +150 -0
  218. package/vue3/src/components/image/src/events.d.ts +6 -0
  219. package/vue3/src/components/image/src/image.vue.d.ts +69 -0
  220. package/vue3/src/components/image/src/props-define.d.ts +57 -0
  221. package/vue3/src/components/image/src/use-image.d.ts +16 -0
  222. package/vue3/src/components/menu/index.d.ts +56 -17
  223. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +3 -0
  224. package/vue3/src/components/menu/src/menu-item.vue.d.ts +11 -1
  225. package/vue3/src/components/menu/src/menu.vue.d.ts +8 -5
  226. package/vue3/src/components/menu/src/props-define.d.ts +29 -3
  227. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +9 -1
  228. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +12 -0
  229. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +22 -16
  230. package/vue3/src/components/section/index.d.ts +27 -0
  231. package/vue3/src/components/section/src/props-define.d.ts +24 -0
  232. package/vue3/src/components/section/src/section.vue.d.ts +24 -0
  233. package/vue3/src/components/table/index.d.ts +6 -6
  234. package/vue3/src/components/table/src/hooks/props-define.d.ts +1 -1
  235. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  236. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +4 -4
  237. package/vue3/src/components/table/src/hooks/use-table/use-table-pagination.d.ts +3 -1
  238. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +7 -6
  239. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  240. package/vue3/src/components/table/src/table-column.vue.d.ts +2 -2
  241. package/vue3/src/components/tag/index.d.ts +14 -14
  242. package/vue3/src/components/tag/src/props-define.d.ts +2 -2
  243. package/vue3/src/components/tag/src/tag.vue.d.ts +5 -5
  244. package/vue3/src/components/tooltip/src/props-define.d.ts +6 -0
  245. package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  246. package/vue3/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  247. package/vue3/src/lang/hook.d.ts +4 -0
  248. package/vue3/src/lang/internal/en.json.d.ts +5 -0
  249. package/vue3/src/lang/internal/index.d.ts +5 -0
  250. package/vue3/src/lang/internal/ja.json.d.ts +5 -0
  251. package/vue3/src/lang/internal/ko.json.d.ts +5 -0
  252. package/vue3/src/lang/internal/ru.json.d.ts +5 -0
  253. package/vue3/src/lang/internal/zh-CN.json.d.ts +5 -0
  254. package/vue3/src/lang/internal/zh-TW.json.d.ts +5 -0
@@ -1,6 +1,6 @@
1
1
  export declare const menuEffects: readonly ["light", "dark"];
2
2
  export type MenuEffect = typeof menuEffects[number];
3
- export declare const menuModes: readonly ["horizontal", "vertical"];
3
+ export declare const menuModes: readonly ["horizontal", "vertical", "tab", "button"];
4
4
  export type MenuMode = typeof menuModes[number];
5
5
  export interface MenuRouterLocation {
6
6
  name?: string;
@@ -20,8 +20,8 @@ export declare const menuProps: () => {
20
20
  * 菜单模式
21
21
  * @default 'vertical'
22
22
  */
23
- mode: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
24
- default: "vertical" | "horizontal";
23
+ mode: import('vue-types').VueTypeDef<"button" | "vertical" | "horizontal" | "tab"> & {
24
+ default: "button" | "vertical" | "horizontal" | "tab";
25
25
  };
26
26
  /**
27
27
  * 是否折叠
@@ -44,8 +44,18 @@ export declare const menuProps: () => {
44
44
  forceExpand: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
45
45
  default: boolean;
46
46
  };
47
+ /**
48
+ * 背景
49
+ */
50
+ background: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
47
51
  };
48
52
  export declare const menuEmits: () => {};
53
+ export interface MenuSlots {
54
+ /**
55
+ * 头部
56
+ */
57
+ header: void;
58
+ }
49
59
  export declare const subMenuProps: () => {
50
60
  /**
51
61
  * 标题
@@ -59,6 +69,12 @@ export declare const subMenuProps: () => {
59
69
  * 激活时的图标
60
70
  */
61
71
  activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
72
+ /**
73
+ * 图标模式
74
+ */
75
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
76
+ default: boolean;
77
+ };
62
78
  };
63
79
  export interface SubMenuSlots {
64
80
  /**
@@ -96,6 +112,16 @@ export declare const menuItemProps: () => {
96
112
  * 路由跳转
97
113
  */
98
114
  to: import('vue-types').VueTypeDef<string | MenuRouterLocation>;
115
+ /**
116
+ * 链接
117
+ */
118
+ href: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
119
+ /**
120
+ * 图标模式
121
+ */
122
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
123
+ default: boolean;
124
+ };
99
125
  };
100
126
  export interface MenuItemSlots {
101
127
  /**
@@ -18,11 +18,19 @@ declare const __VLS_component: import('vue').DefineComponent<{
18
18
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
19
19
  icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
20
20
  activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
21
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
22
+ default: boolean;
23
+ };
21
24
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
22
25
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
23
26
  icon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
24
27
  activeIcon: import('vue-types').VueTypeValidableDef<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption, import('vue-types/dist/types').ValidatorFunction<import('@polyv/icons-vue-middle/icon-builder').IconComponentOption>>;
25
- }>>, {}>;
28
+ iconMode: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
29
+ default: boolean;
30
+ };
31
+ }>>, {
32
+ iconMode: boolean;
33
+ }>;
26
34
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
35
  export default _default;
28
36
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -63,6 +63,9 @@ declare const _default: import('vue').DefineComponent<{
63
63
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
64
64
  default: number;
65
65
  };
66
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
67
+ default: boolean;
68
+ };
66
69
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
67
70
  default: boolean;
68
71
  };
@@ -115,6 +118,9 @@ declare const _default: import('vue').DefineComponent<{
115
118
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
116
119
  default: number;
117
120
  };
121
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
122
+ default: boolean;
123
+ };
118
124
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
119
125
  default: boolean;
120
126
  };
@@ -201,6 +207,9 @@ declare const _default: import('vue').DefineComponent<{
201
207
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
202
208
  default: number;
203
209
  };
210
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
211
+ default: boolean;
212
+ };
204
213
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
205
214
  default: boolean;
206
215
  };
@@ -253,6 +262,9 @@ declare const _default: import('vue').DefineComponent<{
253
262
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
254
263
  default: number;
255
264
  };
265
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
266
+ default: boolean;
267
+ };
256
268
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
257
269
  default: boolean;
258
270
  };
@@ -64,6 +64,9 @@ export declare const messageBoxElementProps: () => {
64
64
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
65
65
  default: number;
66
66
  };
67
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
68
+ default: boolean;
69
+ };
67
70
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
68
71
  default: boolean;
69
72
  };
@@ -116,6 +119,9 @@ export declare const messageBoxElementProps: () => {
116
119
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
117
120
  default: number;
118
121
  };
122
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
123
+ default: boolean;
124
+ };
119
125
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
120
126
  default: boolean;
121
127
  };
@@ -162,11 +168,11 @@ export declare const useMessageBoxElement: (options: {
162
168
  formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
163
169
  default: () => ValidatorRules;
164
170
  };
165
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
166
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
167
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
171
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
172
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
173
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
168
174
  submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
169
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
175
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
170
176
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
171
177
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
172
178
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -180,11 +186,11 @@ export declare const useMessageBoxElement: (options: {
180
186
  formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
181
187
  default: () => ValidatorRules;
182
188
  };
183
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
184
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
185
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
189
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
190
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
191
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
186
192
  submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
187
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
193
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
188
194
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
189
195
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
190
196
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -203,11 +209,11 @@ export declare const useMessageBoxElement: (options: {
203
209
  formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
204
210
  default: () => ValidatorRules;
205
211
  };
206
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
207
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
208
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
212
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
213
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
214
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
209
215
  submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
210
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
216
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
211
217
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
212
218
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
213
219
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -224,11 +230,11 @@ export declare const useMessageBoxElement: (options: {
224
230
  formRules: import('vue-types').VueTypeValidableDef<ValidatorRules, import('vue-types/dist/types').ValidatorFunction<ValidatorRules>> & {
225
231
  default: () => ValidatorRules;
226
232
  };
227
- labelWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
228
- labelHeight: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
229
- contentWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
233
+ labelWidth: import('vue-types').VueTypeDef<string | number>;
234
+ labelHeight: import('vue-types').VueTypeDef<string | number>;
235
+ contentWidth: import('vue-types').VueTypeDef<string | number>;
230
236
  submitAction: import('vue-types').VueTypeValidableDef<import('../../form/form-wrap').FormSubmitAction, import('vue-types/dist/types').ValidatorFunction<import('../../form/form-wrap').FormSubmitAction>>;
231
- labelModel: import('vue-types').VueTypeDef<"header" | "inline">;
237
+ labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box">;
232
238
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
233
239
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
234
240
  readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -0,0 +1,27 @@
1
+ export declare const PwcSection: 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
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
3
+ titleTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
4
+ }>>, Readonly<import('vue').ExtractPropTypes<{
5
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
6
+ titleTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
7
+ }>>, {}, {}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
8
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
9
+ titleTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
10
+ }>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
11
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
12
+ titleTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
13
+ }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
14
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
15
+ titleTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
16
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}> & {
17
+ props: {
18
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
19
+ titleTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
20
+ };
21
+ } & (new () => {
22
+ $scopedSlots: {
23
+ title?(_: {}): any;
24
+ default?(_: {}): any;
25
+ };
26
+ }), import('../../vue-utils/install-utils').InstallOptions>;
27
+ export * from './src/props-define';
@@ -0,0 +1,24 @@
1
+ export declare const sectionProps: () => {
2
+ /**
3
+ * 标题
4
+ */
5
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
6
+ /**
7
+ * 标题提示
8
+ */
9
+ titleTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
10
+ };
11
+ export interface SectionSlots {
12
+ /**
13
+ * 标题插槽
14
+ */
15
+ title: void;
16
+ /**
17
+ * 标题提示插槽
18
+ */
19
+ 'title-tooltip': void;
20
+ /**
21
+ * 内容插槽
22
+ */
23
+ default: void;
24
+ }
@@ -0,0 +1,24 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ title?(_: {}): any;
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: HTMLElement;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<{
12
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
13
+ titleTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
14
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
15
+ title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
16
+ titleTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
17
+ }>>, {}>;
18
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
19
+ export default _default;
20
+ type __VLS_WithTemplateSlots<T, S> = T & {
21
+ new (): {
22
+ $scopedSlots: S;
23
+ };
24
+ };
@@ -561,7 +561,7 @@ export declare const PwcTable: import('../../vue-utils/install-utils').SFCInstal
561
561
  }), import('../../vue-utils/install-utils').InstallOptions>;
562
562
  export declare const PwcTableColumn: 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<{
563
563
  "v-model-key": import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
564
- type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "multiple" | "expand">;
564
+ type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "expand" | "multiple">;
565
565
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
566
566
  prop: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
567
567
  width: import('vue-types').VueTypeDef<string | number>;
@@ -589,7 +589,7 @@ export declare const PwcTableColumn: import('../../vue-utils/install-utils').SFC
589
589
  };
590
590
  }>>, Readonly<import('vue').ExtractPropTypes<{
591
591
  "v-model-key": import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
592
- type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "multiple" | "expand">;
592
+ type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "expand" | "multiple">;
593
593
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
594
594
  prop: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
595
595
  width: import('vue-types').VueTypeDef<string | number>;
@@ -625,7 +625,7 @@ export declare const PwcTableColumn: import('../../vue-utils/install-utils').SFC
625
625
  sortable: boolean;
626
626
  }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
627
627
  "v-model-key": import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
628
- type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "multiple" | "expand">;
628
+ type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "expand" | "multiple">;
629
629
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
630
630
  prop: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
631
631
  width: import('vue-types').VueTypeDef<string | number>;
@@ -653,7 +653,7 @@ export declare const PwcTableColumn: import('../../vue-utils/install-utils').SFC
653
653
  };
654
654
  }>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
655
655
  "v-model-key": import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
656
- type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "multiple" | "expand">;
656
+ type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "expand" | "multiple">;
657
657
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
658
658
  prop: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
659
659
  width: import('vue-types').VueTypeDef<string | number>;
@@ -681,7 +681,7 @@ export declare const PwcTableColumn: import('../../vue-utils/install-utils').SFC
681
681
  };
682
682
  }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
683
683
  "v-model-key": import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
684
- type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "multiple" | "expand">;
684
+ type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "expand" | "multiple">;
685
685
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
686
686
  prop: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
687
687
  width: import('vue-types').VueTypeDef<string | number>;
@@ -718,7 +718,7 @@ export declare const PwcTableColumn: import('../../vue-utils/install-utils').SFC
718
718
  }> & {
719
719
  props: {
720
720
  "v-model-key": import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
721
- type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "multiple" | "expand">;
721
+ type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "expand" | "multiple">;
722
722
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
723
723
  prop: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
724
724
  width: import('vue-types').VueTypeDef<string | number>;
@@ -174,7 +174,7 @@ export declare const tableColumnProps: () => {
174
174
  * 列类型
175
175
  * @propType TableColumnType
176
176
  */
177
- type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "multiple" | "expand">;
177
+ type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "expand" | "multiple">;
178
178
  /**
179
179
  * 列头文字
180
180
  */
@@ -18,9 +18,10 @@ export declare const useColumnComputed: (options: TableElementInstance & {
18
18
  readonly title?: string | undefined;
19
19
  readonly "v-model-key"?: any;
20
20
  readonly fixed?: "left" | "right" | undefined;
21
- readonly type?: "operation" | "tags" | "index" | "single" | "multiple" | "expand" | undefined;
21
+ readonly type?: "operation" | "tags" | "index" | "single" | "expand" | "multiple" | undefined;
22
22
  readonly minWidth?: string | number | undefined;
23
23
  readonly width?: string | number | undefined;
24
+ readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
24
25
  readonly prop?: string | undefined;
25
26
  readonly multipleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
26
27
  readonly singleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
@@ -31,7 +32,6 @@ export declare const useColumnComputed: (options: TableElementInstance & {
31
32
  dateFormat?: string | undefined;
32
33
  enumMap?: Record<any, string> | undefined;
33
34
  } | undefined;
34
- readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
35
35
  };
36
36
  getModelValue: () => any;
37
37
  updateModelValue: (value: any) => void;
@@ -12,9 +12,10 @@ export declare const useColumnListStore: () => {
12
12
  readonly title?: string | undefined;
13
13
  readonly "v-model-key"?: any;
14
14
  readonly fixed?: "left" | "right" | undefined;
15
- readonly type?: "operation" | "tags" | "index" | "single" | "multiple" | "expand" | undefined;
15
+ readonly type?: "operation" | "tags" | "index" | "single" | "expand" | "multiple" | undefined;
16
16
  readonly minWidth?: string | number | undefined;
17
17
  readonly width?: string | number | undefined;
18
+ readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
18
19
  readonly prop?: string | undefined;
19
20
  readonly multipleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
20
21
  readonly singleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
@@ -25,7 +26,6 @@ export declare const useColumnListStore: () => {
25
26
  dateFormat?: string | undefined;
26
27
  enumMap?: Record<any, string> | undefined;
27
28
  } | undefined;
28
- readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
29
29
  };
30
30
  getModelValue: () => any;
31
31
  updateModelValue: (value: any) => void;
@@ -72,9 +72,10 @@ export declare const useColumnList: (position: TableColumnRenderPosition) => {
72
72
  readonly title?: string | undefined;
73
73
  readonly "v-model-key"?: any;
74
74
  readonly fixed?: "left" | "right" | undefined;
75
- readonly type?: "operation" | "tags" | "index" | "single" | "multiple" | "expand" | undefined;
75
+ readonly type?: "operation" | "tags" | "index" | "single" | "expand" | "multiple" | undefined;
76
76
  readonly minWidth?: string | number | undefined;
77
77
  readonly width?: string | number | undefined;
78
+ readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
78
79
  readonly prop?: string | undefined;
79
80
  readonly multipleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
80
81
  readonly singleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
@@ -85,7 +86,6 @@ export declare const useColumnList: (position: TableColumnRenderPosition) => {
85
86
  dateFormat?: string | undefined;
86
87
  enumMap?: Record<any, string> | undefined;
87
88
  } | undefined;
88
- readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
89
89
  };
90
90
  getModelValue: () => any;
91
91
  updateModelValue: (value: any) => void;
@@ -8,5 +8,7 @@ export interface TablePaginationInjectData {
8
8
  }
9
9
  export declare const useTablePagination: (options: {
10
10
  tableProps: VueProps<typeof tableProps>;
11
- }) => void;
11
+ }) => {
12
+ tablePaginationVisible: ComputedRef<boolean>;
13
+ };
12
14
  export declare const useTablePaginationInject: () => TablePaginationInjectData;
@@ -36,9 +36,10 @@ export declare const useTable: (options: {
36
36
  readonly title?: string | undefined;
37
37
  readonly "v-model-key"?: any;
38
38
  readonly fixed?: "left" | "right" | undefined;
39
- readonly type?: "operation" | "tags" | "index" | "single" | "multiple" | "expand" | undefined;
39
+ readonly type?: "operation" | "tags" | "index" | "single" | "expand" | "multiple" | undefined;
40
40
  readonly minWidth?: string | number | undefined;
41
41
  readonly width?: string | number | undefined;
42
+ readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
42
43
  readonly prop?: string | undefined;
43
44
  readonly multipleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
44
45
  readonly singleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
@@ -49,7 +50,6 @@ export declare const useTable: (options: {
49
50
  dateFormat?: string | undefined;
50
51
  enumMap?: Record<any, string> | undefined;
51
52
  } | undefined;
52
- readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
53
53
  };
54
54
  getModelValue: () => any;
55
55
  updateModelValue: (value: any) => void;
@@ -98,9 +98,10 @@ export declare const useTable: (options: {
98
98
  readonly title?: string | undefined;
99
99
  readonly "v-model-key"?: any;
100
100
  readonly fixed?: "left" | "right" | undefined;
101
- readonly type?: "operation" | "tags" | "index" | "single" | "multiple" | "expand" | undefined;
101
+ readonly type?: "operation" | "tags" | "index" | "single" | "expand" | "multiple" | undefined;
102
102
  readonly minWidth?: string | number | undefined;
103
103
  readonly width?: string | number | undefined;
104
+ readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
104
105
  readonly prop?: string | undefined;
105
106
  readonly multipleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
106
107
  readonly singleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
@@ -111,7 +112,6 @@ export declare const useTable: (options: {
111
112
  dateFormat?: string | undefined;
112
113
  enumMap?: Record<any, string> | undefined;
113
114
  } | undefined;
114
- readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
115
115
  };
116
116
  getModelValue: () => any;
117
117
  updateModelValue: (value: any) => void;
@@ -160,9 +160,10 @@ export declare const useTable: (options: {
160
160
  readonly title?: string | undefined;
161
161
  readonly "v-model-key"?: any;
162
162
  readonly fixed?: "left" | "right" | undefined;
163
- readonly type?: "operation" | "tags" | "index" | "single" | "multiple" | "expand" | undefined;
163
+ readonly type?: "operation" | "tags" | "index" | "single" | "expand" | "multiple" | undefined;
164
164
  readonly minWidth?: string | number | undefined;
165
165
  readonly width?: string | number | undefined;
166
+ readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
166
167
  readonly prop?: string | undefined;
167
168
  readonly multipleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
168
169
  readonly singleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
@@ -173,7 +174,6 @@ export declare const useTable: (options: {
173
174
  dateFormat?: string | undefined;
174
175
  enumMap?: Record<any, string> | undefined;
175
176
  } | undefined;
176
- readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
177
177
  };
178
178
  getModelValue: () => any;
179
179
  updateModelValue: (value: any) => void;
@@ -210,6 +210,7 @@ export declare const useTable: (options: {
210
210
  columnCount: ComputedRef<number>;
211
211
  columnWidthTotal: ComputedRef<number>;
212
212
  };
213
+ tablePaginationVisible: ComputedRef<boolean>;
213
214
  hasHorizontalScroll: ComputedRef<boolean>;
214
215
  hasVerticalScroll: ComputedRef<boolean>;
215
216
  wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
@@ -21,9 +21,10 @@ export declare const useColumnChildren: (columnInstance: TableColumnInstance) =>
21
21
  readonly title?: string | undefined;
22
22
  readonly "v-model-key"?: any;
23
23
  readonly fixed?: "left" | "right" | undefined;
24
- readonly type?: "operation" | "tags" | "index" | "single" | "multiple" | "expand" | undefined;
24
+ readonly type?: "operation" | "tags" | "index" | "single" | "expand" | "multiple" | undefined;
25
25
  readonly minWidth?: string | number | undefined;
26
26
  readonly width?: string | number | undefined;
27
+ readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
27
28
  readonly prop?: string | undefined;
28
29
  readonly multipleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
29
30
  readonly singleDisabled?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
@@ -34,7 +35,6 @@ export declare const useColumnChildren: (columnInstance: TableColumnInstance) =>
34
35
  dateFormat?: string | undefined;
35
36
  enumMap?: Record<any, string> | undefined;
36
37
  } | undefined;
37
- readonly showExpand?: ((params: import('../../types').TableRowParams) => boolean) | undefined;
38
38
  };
39
39
  getModelValue: () => any;
40
40
  updateModelValue: (value: any) => void;
@@ -19,7 +19,7 @@ declare function __VLS_template(): {
19
19
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
20
  declare const __VLS_component: import('vue').DefineComponent<{
21
21
  "v-model-key": import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
22
- type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "multiple" | "expand">;
22
+ type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "expand" | "multiple">;
23
23
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
24
24
  prop: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
25
25
  width: import('vue-types').VueTypeDef<string | number>;
@@ -49,7 +49,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
49
49
  [x: string]: (...args: any[]) => void;
50
50
  }, string, Readonly<import('vue').ExtractPropTypes<{
51
51
  "v-model-key": import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
52
- type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "multiple" | "expand">;
52
+ type: import('vue-types').VueTypeDef<"operation" | "tags" | "index" | "single" | "expand" | "multiple">;
53
53
  title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
54
54
  prop: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
55
55
  width: import('vue-types').VueTypeDef<string | number>;