@polyv/vue-components 1.9.0 → 1.10.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 (323) hide show
  1. package/package.json +3 -2
  2. package/vue2/index.es.js +15629 -12581
  3. package/vue2/src/components/alert/index.d.ts +14 -14
  4. package/vue2/src/components/alert/src/alert.vue.d.ts +5 -5
  5. package/vue2/src/components/alert/src/props-define.d.ts +2 -2
  6. package/vue2/src/components/animation/bubble-animation/bubble-animation.vue.d.ts +1 -1
  7. package/vue2/src/components/animation/number-animation/index.d.ts +118 -0
  8. package/vue2/src/components/animation/number-animation/src/number-animation.vue.d.ts +58 -0
  9. package/vue2/src/components/animation/number-animation/src/props-define.d.ts +58 -0
  10. package/vue2/src/components/badge/index.d.ts +63 -0
  11. package/vue2/src/components/badge/src/badge.vue.d.ts +37 -0
  12. package/vue2/src/components/badge/src/props-define.d.ts +29 -0
  13. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +23 -19
  14. package/vue2/src/components/business/external-links/external-links.vue.d.ts +7 -0
  15. package/vue2/src/components/business/external-links/index.d.ts +38 -1
  16. package/vue2/src/components/business/external-links/use-external-links.d.ts +39 -1
  17. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +14 -0
  18. package/vue2/src/components/button/index.d.ts +2 -2
  19. package/vue2/src/components/button/src/button.vue.d.ts +1 -1
  20. package/vue2/src/components/color-cell/index.d.ts +12 -0
  21. package/vue2/src/components/color-cell/src/color-cell.vue.d.ts +12 -0
  22. package/vue2/src/components/color-cell/src/props-define.d.ts +8 -0
  23. package/vue2/src/components/condition-filter/index.d.ts +46 -0
  24. package/vue2/src/components/condition-filter/src/condition-filter-item.vue.d.ts +9 -0
  25. package/vue2/src/components/condition-filter/src/condition-filter.vue.d.ts +7 -0
  26. package/vue2/src/components/condition-filter/src/props-define.d.ts +18 -0
  27. package/vue2/src/components/descriptions/index.d.ts +106 -0
  28. package/vue2/src/components/descriptions/src/descriptions-item.vue.d.ts +32 -0
  29. package/vue2/src/components/descriptions/src/descriptions.d.ts +58 -0
  30. package/vue2/src/components/descriptions/src/inject.d.ts +7 -0
  31. package/vue2/src/components/descriptions/src/item-cell.d.ts +15 -0
  32. package/vue2/src/components/descriptions/src/props-define.d.ts +81 -0
  33. package/vue2/src/components/dropdown/index.d.ts +58 -58
  34. package/vue2/src/components/dropdown/src/dropdown-item.vue.d.ts +1 -1
  35. package/vue2/src/components/dropdown/src/dropdown.vue.d.ts +15 -15
  36. package/vue2/src/components/dropdown/src/sub-dropdown.vue.d.ts +5 -5
  37. package/vue2/src/components/dropdown/src/use-dropdown.d.ts +8 -8
  38. package/vue2/src/components/empty/index.d.ts +6 -6
  39. package/vue2/src/components/empty/src/empty.vue.d.ts +2 -2
  40. package/vue2/src/components/empty/src/props-define.d.ts +1 -1
  41. package/vue2/src/components/example/example.vue.d.ts +5 -5
  42. package/vue2/src/components/example/index.d.ts +14 -14
  43. package/vue2/src/components/example/props-define.d.ts +2 -2
  44. package/vue2/src/components/exports.d.ts +10 -0
  45. package/vue2/src/components/file-icon/index.d.ts +15 -1
  46. package/vue2/src/components/form/color-picker/index.d.ts +82 -0
  47. package/vue2/src/components/form/color-picker/src/color-picker.vue.d.ts +82 -0
  48. package/vue2/src/components/form/color-picker/src/props-define.d.ts +65 -0
  49. package/vue2/src/components/form/file-upload/index.d.ts +106 -42
  50. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +36 -14
  51. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +28 -7
  52. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +1 -1
  53. package/vue2/src/components/form/form-submit-button/index.d.ts +1 -1
  54. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  55. package/vue2/src/components/form/image-upload/index.d.ts +24 -12
  56. package/vue2/src/components/form/image-upload/src/hooks/props-define.d.ts +12 -6
  57. package/vue2/src/components/form/image-upload/src/image-upload.vue.d.ts +24 -12
  58. package/vue2/src/components/form/input/index.d.ts +2 -2
  59. package/vue2/src/components/form/input/src/input.vue.d.ts +2 -2
  60. package/vue2/src/components/form/input-number/index.d.ts +2 -2
  61. package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  62. package/vue2/src/components/form/select/index.d.ts +934 -5
  63. package/vue2/src/components/form/select/src/props-define.d.ts +4 -0
  64. package/vue2/src/components/form/select/src/select.vue.d.ts +59 -13
  65. package/vue2/src/components/form/transfer/transfer.vue.d.ts +2 -2
  66. package/vue2/src/components/form/tree-select/index.d.ts +74 -0
  67. package/vue2/src/components/form/tree-select/src/props-define.d.ts +59 -0
  68. package/vue2/src/components/form/tree-select/src/tree-select.vue.d.ts +76 -0
  69. package/vue2/src/components/grid/index.d.ts +111 -0
  70. package/vue2/src/components/grid/src/col.vue.d.ts +34 -0
  71. package/vue2/src/components/grid/src/inject-key.d.ts +10 -0
  72. package/vue2/src/components/grid/src/props-define.d.ts +35 -0
  73. package/vue2/src/components/grid/src/row.vue.d.ts +35 -0
  74. package/vue2/src/components/icons/icons/crop/index.d.ts +6 -0
  75. package/vue2/src/components/icons/icons/grid/index.d.ts +6 -0
  76. package/vue2/src/components/icons/icons/pause/index.d.ts +6 -0
  77. package/vue2/src/components/icons/icons/play/index.d.ts +6 -0
  78. package/vue2/src/components/icons/icons/violation/index.d.ts +6 -0
  79. package/vue2/src/components/icons/map.d.ts +5 -0
  80. package/vue2/src/components/image/index.d.ts +6 -6
  81. package/vue2/src/components/image/src/image.vue.d.ts +2 -2
  82. package/vue2/src/components/image/src/props-define.d.ts +1 -1
  83. package/vue2/src/components/image-cropper/index.d.ts +14 -8
  84. package/vue2/src/components/image-cropper/src/cropper-layer/use-cropper-layer.d.ts +41 -0
  85. package/vue2/src/components/image-cropper/src/hooks/props-define.d.ts +22 -19
  86. package/vue2/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +35 -9
  87. package/vue2/src/components/image-cropper/src/image-cropper.vue.d.ts +16 -9
  88. package/vue2/src/components/notification/index.d.ts +2 -0
  89. package/vue2/src/components/notification/src/hooks.d.ts +15 -0
  90. package/vue2/src/components/notification/src/notification-popover.vue.d.ts +21 -0
  91. package/vue2/src/components/notification/src/notification.d.ts +23 -0
  92. package/vue2/src/components/notification/src/position-management.d.ts +16 -0
  93. package/vue2/src/components/notification/src/types.d.ts +26 -0
  94. package/vue2/src/components/pagination/index.d.ts +1 -1
  95. package/vue2/src/components/pagination/pagination.vue.d.ts +1 -1
  96. package/vue2/src/components/popconfirm/index.d.ts +38 -34
  97. package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +37 -34
  98. package/vue2/src/components/popconfirm/src/props-define.d.ts +12 -4
  99. package/vue2/src/components/popover/index.d.ts +36 -34
  100. package/vue2/src/components/popover/src/popover.vue.d.ts +14 -13
  101. package/vue2/src/components/popover/src/props-define.d.ts +14 -5
  102. package/vue2/src/components/popup/index.d.ts +36 -30
  103. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +8 -4
  104. package/vue2/src/components/popup/src/hooks/use-popup-effect.d.ts +1 -1
  105. package/vue2/src/components/popup/src/hooks/use-popup-position.d.ts +1 -1
  106. package/vue2/src/components/popup/src/popup.vue.d.ts +13 -11
  107. package/vue2/src/components/splitter/index.d.ts +87 -0
  108. package/vue2/src/components/splitter/src/inject-key.d.ts +16 -0
  109. package/vue2/src/components/splitter/src/props-define.d.ts +32 -0
  110. package/vue2/src/components/splitter/src/splitter-panel.vue.d.ts +25 -0
  111. package/vue2/src/components/splitter/src/splitter.vue.d.ts +36 -0
  112. package/vue2/src/components/swiper/index.d.ts +212 -2
  113. package/vue2/src/components/table/index.d.ts +62 -11
  114. package/vue2/src/components/table/src/components/table-body-cell/body-cell-tags.vue.d.ts +19 -1
  115. package/vue2/src/components/table/src/components/table-body-cell/use-table-body-cell.d.ts +2 -0
  116. package/vue2/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
  117. package/vue2/src/components/table/src/components/table-multiple-select/table-row-multiple.vue.d.ts +5 -1
  118. package/vue2/src/components/table/src/components/table-multiple-select/use-table-multiple.d.ts +1 -0
  119. package/vue2/src/components/table/src/components/table-single-select/table-row-single.vue.d.ts +34 -0
  120. package/vue2/src/components/table/src/components/table-single-select/use-table-single.d.ts +7 -0
  121. package/vue2/src/components/table/src/hooks/props-define.d.ts +30 -5
  122. package/vue2/src/components/table/src/hooks/use-table/use-table-request.d.ts +3 -2
  123. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +2 -1
  124. package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +4 -2
  125. package/vue2/src/components/table/src/table-column.vue.d.ts +7 -3
  126. package/vue2/src/components/table/src/table.vue.d.ts +2 -1
  127. package/vue2/src/components/table/src/types/index.d.ts +1 -0
  128. package/vue2/src/components/table-operation/index.d.ts +24 -2
  129. package/vue2/src/components/table-operation/src/props-define.d.ts +7 -0
  130. package/vue2/src/components/table-operation/src/table-operation-item.vue.d.ts +9 -1
  131. package/vue2/src/components/tag/index.d.ts +16 -16
  132. package/vue2/src/components/tag/src/props-define.d.ts +2 -2
  133. package/vue2/src/components/tag/src/tag.vue.d.ts +6 -6
  134. package/vue2/src/components/toast/_component/toast-element.vue.d.ts +1 -1
  135. package/vue2/src/components/tooltip/index.d.ts +30 -30
  136. package/vue2/src/components/tooltip/src/props-define.d.ts +4 -4
  137. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +11 -11
  138. package/vue2/src/components/tooltip/src/use-tooltip.d.ts +2 -2
  139. package/vue2/src/components/tree/index.d.ts +36 -0
  140. package/vue2/src/components/tree/src/hooks/use-tree.d.ts +25 -0
  141. package/vue2/src/components/tree/src/props-define.d.ts +103 -0
  142. package/vue2/src/components/tree/src/tree-node.vue.d.ts +11 -0
  143. package/vue2/src/components/tree/src/tree.vue.d.ts +36 -0
  144. package/vue2/src/hooks/element/use-breakpoint/index.d.ts +10 -0
  145. package/vue2/src/interface/enum.d.ts +2 -0
  146. package/vue2/src/lang/internal/en.json.d.ts +27 -13
  147. package/vue2/src/lang/internal/index.d.ts +14 -0
  148. package/vue2/src/lang/internal/ja.json.d.ts +27 -13
  149. package/vue2/src/lang/internal/ko.json.d.ts +27 -13
  150. package/vue2/src/lang/internal/ru.json.d.ts +27 -13
  151. package/vue2/src/lang/internal/zh-CN.json.d.ts +28 -14
  152. package/vue2/src/lang/internal/zh-TW.json.d.ts +27 -13
  153. package/vue2/src/vue-utils/render-slot.d.ts +9 -1
  154. package/vue2/src/vue-utils/version-compatible/types.d.ts +9 -0
  155. package/vue3/index.es.js +14584 -11332
  156. package/vue3/src/components/alert/index.d.ts +14 -14
  157. package/vue3/src/components/alert/src/alert.vue.d.ts +5 -5
  158. package/vue3/src/components/alert/src/props-define.d.ts +2 -2
  159. package/vue3/src/components/animation/bubble-animation/bubble-animation.vue.d.ts +1 -1
  160. package/vue3/src/components/animation/number-animation/index.d.ts +118 -0
  161. package/vue3/src/components/animation/number-animation/src/number-animation.vue.d.ts +58 -0
  162. package/vue3/src/components/animation/number-animation/src/props-define.d.ts +58 -0
  163. package/vue3/src/components/badge/index.d.ts +63 -0
  164. package/vue3/src/components/badge/src/badge.vue.d.ts +37 -0
  165. package/vue3/src/components/badge/src/props-define.d.ts +29 -0
  166. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +23 -19
  167. package/vue3/src/components/business/external-links/external-links.vue.d.ts +7 -0
  168. package/vue3/src/components/business/external-links/index.d.ts +38 -1
  169. package/vue3/src/components/business/external-links/use-external-links.d.ts +39 -1
  170. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +14 -0
  171. package/vue3/src/components/button/index.d.ts +2 -2
  172. package/vue3/src/components/button/src/button.vue.d.ts +1 -1
  173. package/vue3/src/components/color-cell/index.d.ts +12 -0
  174. package/vue3/src/components/color-cell/src/color-cell.vue.d.ts +12 -0
  175. package/vue3/src/components/color-cell/src/props-define.d.ts +8 -0
  176. package/vue3/src/components/condition-filter/index.d.ts +46 -0
  177. package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +9 -0
  178. package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +7 -0
  179. package/vue3/src/components/condition-filter/src/props-define.d.ts +18 -0
  180. package/vue3/src/components/descriptions/index.d.ts +106 -0
  181. package/vue3/src/components/descriptions/src/descriptions-item.vue.d.ts +32 -0
  182. package/vue3/src/components/descriptions/src/descriptions.d.ts +58 -0
  183. package/vue3/src/components/descriptions/src/inject.d.ts +7 -0
  184. package/vue3/src/components/descriptions/src/item-cell.d.ts +15 -0
  185. package/vue3/src/components/descriptions/src/props-define.d.ts +81 -0
  186. package/vue3/src/components/dropdown/index.d.ts +58 -58
  187. package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +1 -1
  188. package/vue3/src/components/dropdown/src/dropdown.vue.d.ts +15 -15
  189. package/vue3/src/components/dropdown/src/sub-dropdown.vue.d.ts +5 -5
  190. package/vue3/src/components/dropdown/src/use-dropdown.d.ts +8 -8
  191. package/vue3/src/components/empty/index.d.ts +6 -6
  192. package/vue3/src/components/empty/src/empty.vue.d.ts +2 -2
  193. package/vue3/src/components/empty/src/props-define.d.ts +1 -1
  194. package/vue3/src/components/example/example.vue.d.ts +5 -5
  195. package/vue3/src/components/example/index.d.ts +14 -14
  196. package/vue3/src/components/example/props-define.d.ts +2 -2
  197. package/vue3/src/components/exports.d.ts +10 -0
  198. package/vue3/src/components/file-icon/index.d.ts +15 -1
  199. package/vue3/src/components/form/color-picker/index.d.ts +82 -0
  200. package/vue3/src/components/form/color-picker/src/color-picker.vue.d.ts +82 -0
  201. package/vue3/src/components/form/color-picker/src/props-define.d.ts +65 -0
  202. package/vue3/src/components/form/file-upload/index.d.ts +106 -42
  203. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +36 -14
  204. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +28 -7
  205. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +1 -1
  206. package/vue3/src/components/form/form-submit-button/index.d.ts +1 -1
  207. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  208. package/vue3/src/components/form/image-upload/index.d.ts +24 -12
  209. package/vue3/src/components/form/image-upload/src/hooks/props-define.d.ts +12 -6
  210. package/vue3/src/components/form/image-upload/src/image-upload.vue.d.ts +24 -12
  211. package/vue3/src/components/form/input/index.d.ts +2 -2
  212. package/vue3/src/components/form/input/src/input.vue.d.ts +2 -2
  213. package/vue3/src/components/form/input-number/index.d.ts +2 -2
  214. package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  215. package/vue3/src/components/form/select/index.d.ts +934 -5
  216. package/vue3/src/components/form/select/src/props-define.d.ts +4 -0
  217. package/vue3/src/components/form/select/src/select.vue.d.ts +59 -13
  218. package/vue3/src/components/form/transfer/transfer.vue.d.ts +2 -2
  219. package/vue3/src/components/form/tree-select/index.d.ts +74 -0
  220. package/vue3/src/components/form/tree-select/src/props-define.d.ts +59 -0
  221. package/vue3/src/components/form/tree-select/src/tree-select.vue.d.ts +76 -0
  222. package/vue3/src/components/grid/index.d.ts +111 -0
  223. package/vue3/src/components/grid/src/col.vue.d.ts +34 -0
  224. package/vue3/src/components/grid/src/inject-key.d.ts +10 -0
  225. package/vue3/src/components/grid/src/props-define.d.ts +35 -0
  226. package/vue3/src/components/grid/src/row.vue.d.ts +35 -0
  227. package/vue3/src/components/icons/icons/crop/index.d.ts +6 -0
  228. package/vue3/src/components/icons/icons/grid/index.d.ts +6 -0
  229. package/vue3/src/components/icons/icons/pause/index.d.ts +6 -0
  230. package/vue3/src/components/icons/icons/play/index.d.ts +6 -0
  231. package/vue3/src/components/icons/icons/violation/index.d.ts +6 -0
  232. package/vue3/src/components/icons/map.d.ts +5 -0
  233. package/vue3/src/components/image/index.d.ts +6 -6
  234. package/vue3/src/components/image/src/image.vue.d.ts +2 -2
  235. package/vue3/src/components/image/src/props-define.d.ts +1 -1
  236. package/vue3/src/components/image-cropper/index.d.ts +14 -8
  237. package/vue3/src/components/image-cropper/src/cropper-layer/cropper-layer.vue.d.ts +2 -0
  238. package/vue3/src/components/image-cropper/src/cropper-layer/use-cropper-layer.d.ts +41 -0
  239. package/vue3/src/components/image-cropper/src/hooks/props-define.d.ts +22 -19
  240. package/vue3/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +35 -9
  241. package/vue3/src/components/image-cropper/src/image-cropper.vue.d.ts +16 -9
  242. package/vue3/src/components/image-cropper/src/image-layer/image-layer.vue.d.ts +2 -0
  243. package/vue3/src/components/notification/index.d.ts +2 -0
  244. package/vue3/src/components/notification/src/hooks.d.ts +15 -0
  245. package/vue3/src/components/notification/src/notification-popover.vue.d.ts +21 -0
  246. package/vue3/src/components/notification/src/notification.d.ts +23 -0
  247. package/vue3/src/components/notification/src/position-management.d.ts +16 -0
  248. package/vue3/src/components/notification/src/types.d.ts +26 -0
  249. package/vue3/src/components/pagination/index.d.ts +1 -1
  250. package/vue3/src/components/pagination/pagination.vue.d.ts +1 -1
  251. package/vue3/src/components/popconfirm/index.d.ts +38 -34
  252. package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +37 -34
  253. package/vue3/src/components/popconfirm/src/props-define.d.ts +12 -4
  254. package/vue3/src/components/popover/index.d.ts +36 -34
  255. package/vue3/src/components/popover/src/popover.vue.d.ts +14 -13
  256. package/vue3/src/components/popover/src/props-define.d.ts +14 -5
  257. package/vue3/src/components/popup/index.d.ts +36 -30
  258. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +8 -4
  259. package/vue3/src/components/popup/src/hooks/use-popup-effect.d.ts +1 -1
  260. package/vue3/src/components/popup/src/hooks/use-popup-position.d.ts +1 -1
  261. package/vue3/src/components/popup/src/popup.vue.d.ts +13 -11
  262. package/vue3/src/components/splitter/index.d.ts +87 -0
  263. package/vue3/src/components/splitter/src/inject-key.d.ts +16 -0
  264. package/vue3/src/components/splitter/src/props-define.d.ts +32 -0
  265. package/vue3/src/components/splitter/src/splitter-panel.vue.d.ts +25 -0
  266. package/vue3/src/components/splitter/src/splitter.vue.d.ts +36 -0
  267. package/vue3/src/components/swiper/index.d.ts +212 -2
  268. package/vue3/src/components/table/index.d.ts +62 -11
  269. package/vue3/src/components/table/src/components/table-body-cell/body-cell-tags.vue.d.ts +19 -1
  270. package/vue3/src/components/table/src/components/table-body-cell/use-table-body-cell.d.ts +2 -0
  271. package/vue3/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
  272. package/vue3/src/components/table/src/components/table-multiple-select/table-row-multiple.vue.d.ts +5 -1
  273. package/vue3/src/components/table/src/components/table-multiple-select/use-table-multiple.d.ts +1 -0
  274. package/vue3/src/components/table/src/components/table-single-select/table-row-single.vue.d.ts +34 -0
  275. package/vue3/src/components/table/src/components/table-single-select/use-table-single.d.ts +7 -0
  276. package/vue3/src/components/table/src/hooks/props-define.d.ts +30 -5
  277. package/vue3/src/components/table/src/hooks/use-table/use-table-request.d.ts +3 -2
  278. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +2 -1
  279. package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +4 -2
  280. package/vue3/src/components/table/src/table-column.vue.d.ts +7 -3
  281. package/vue3/src/components/table/src/table.vue.d.ts +2 -1
  282. package/vue3/src/components/table/src/types/index.d.ts +1 -0
  283. package/vue3/src/components/table-operation/index.d.ts +24 -2
  284. package/vue3/src/components/table-operation/src/props-define.d.ts +7 -0
  285. package/vue3/src/components/table-operation/src/table-operation-item.vue.d.ts +9 -1
  286. package/vue3/src/components/tag/index.d.ts +16 -16
  287. package/vue3/src/components/tag/src/props-define.d.ts +2 -2
  288. package/vue3/src/components/tag/src/tag.vue.d.ts +6 -6
  289. package/vue3/src/components/toast/_component/toast-element.vue.d.ts +1 -1
  290. package/vue3/src/components/tooltip/index.d.ts +30 -30
  291. package/vue3/src/components/tooltip/src/props-define.d.ts +4 -4
  292. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +11 -11
  293. package/vue3/src/components/tooltip/src/use-tooltip.d.ts +2 -2
  294. package/vue3/src/components/tree/index.d.ts +36 -0
  295. package/vue3/src/components/tree/src/hooks/use-tree.d.ts +25 -0
  296. package/vue3/src/components/tree/src/props-define.d.ts +103 -0
  297. package/vue3/src/components/tree/src/tree-node.vue.d.ts +11 -0
  298. package/vue3/src/components/tree/src/tree.vue.d.ts +36 -0
  299. package/vue3/src/hooks/element/use-breakpoint/index.d.ts +10 -0
  300. package/vue3/src/interface/enum.d.ts +2 -0
  301. package/vue3/src/lang/internal/en.json.d.ts +27 -13
  302. package/vue3/src/lang/internal/index.d.ts +14 -0
  303. package/vue3/src/lang/internal/ja.json.d.ts +27 -13
  304. package/vue3/src/lang/internal/ko.json.d.ts +27 -13
  305. package/vue3/src/lang/internal/ru.json.d.ts +27 -13
  306. package/vue3/src/lang/internal/zh-CN.json.d.ts +28 -14
  307. package/vue3/src/lang/internal/zh-TW.json.d.ts +27 -13
  308. package/vue3/src/vue-utils/render-slot.d.ts +9 -1
  309. package/vue3/src/vue-utils/version-compatible/types.d.ts +9 -0
  310. package/vue2/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +0 -6
  311. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +0 -9
  312. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +0 -8
  313. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +0 -23
  314. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +0 -8
  315. package/vue2/src/plugins/cropperjs/index.d.ts +0 -14
  316. package/vue3/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +0 -6
  317. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +0 -9
  318. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +0 -8
  319. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +0 -23
  320. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +0 -8
  321. package/vue3/src/plugins/cropperjs/index.d.ts +0 -14
  322. /package/vue2/src/components/{table/src/components/table-body-cell/body-cell-single.vue.d.ts → image-cropper/src/cropper-layer/cropper-layer.vue.d.ts} +0 -0
  323. /package/{vue3/src/components/table/src/components/table-body-cell/body-cell-single.vue.d.ts → vue2/src/components/image-cropper/src/image-layer/image-layer.vue.d.ts} +0 -0
@@ -1,4 +1,4 @@
1
- export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCInstall<import('vue').DefineComponent<{
1
+ export declare const PwcSelect: 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
2
  options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
3
3
  default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
4
4
  };
@@ -210,11 +210,716 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
210
210
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
211
211
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
212
212
  "v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
213
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
213
+ }>>, Readonly<import('vue').ExtractPropTypes<{
214
+ options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
215
+ default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
216
+ };
217
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
218
+ default: string;
219
+ };
220
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
221
+ default: boolean;
222
+ };
223
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
224
+ default: number;
225
+ };
226
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
227
+ default: boolean;
228
+ };
229
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
230
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
231
+ default: string;
232
+ };
233
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
234
+ default: string;
235
+ };
236
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
237
+ default: number;
238
+ };
239
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
240
+ default: boolean;
241
+ };
242
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
243
+ default: string;
244
+ };
245
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
246
+ default: string;
247
+ };
248
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
249
+ default: boolean;
250
+ };
251
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
252
+ default: number;
253
+ };
254
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
255
+ default: boolean;
256
+ };
257
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
258
+ default: number;
259
+ };
260
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
261
+ default: number;
262
+ };
263
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
264
+ default: boolean;
265
+ };
266
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
267
+ default: boolean;
268
+ };
269
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
270
+ default: boolean;
271
+ };
272
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
273
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
274
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
275
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
276
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
277
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
278
+ default: boolean;
279
+ };
280
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
281
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
282
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
283
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
284
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
285
+ default: import('../input').InputValueType;
286
+ };
287
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
288
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
289
+ default: string;
290
+ };
291
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
292
+ default: string;
293
+ };
294
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
295
+ default: number;
296
+ };
297
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
298
+ default: boolean;
299
+ };
300
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
301
+ default: string;
302
+ };
303
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
304
+ default: string;
305
+ };
306
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
307
+ default: boolean;
308
+ };
309
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
310
+ default: number;
311
+ };
312
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
313
+ default: boolean;
314
+ };
315
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
316
+ default: number;
317
+ };
318
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
319
+ default: number;
320
+ };
321
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
322
+ default: boolean;
323
+ };
324
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
325
+ default: boolean;
326
+ };
327
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
328
+ default: boolean;
329
+ };
330
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
331
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
332
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
333
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
334
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
335
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
336
+ default: boolean;
337
+ };
338
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
339
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
340
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
341
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
342
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
343
+ default: import('../input').InputValueType;
344
+ };
345
+ }>>>> & {
346
+ default: () => Partial<import('vue').ExtractPropTypes<{
347
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
348
+ default: string;
349
+ };
350
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
351
+ default: string;
352
+ };
353
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
354
+ default: number;
355
+ };
356
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
357
+ default: boolean;
358
+ };
359
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
360
+ default: string;
361
+ };
362
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
363
+ default: string;
364
+ };
365
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
366
+ default: boolean;
367
+ };
368
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
369
+ default: number;
370
+ };
371
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
372
+ default: boolean;
373
+ };
374
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
375
+ default: number;
376
+ };
377
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
378
+ default: number;
379
+ };
380
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
381
+ default: boolean;
382
+ };
383
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
384
+ default: boolean;
385
+ };
386
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
387
+ default: boolean;
388
+ };
389
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
390
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
391
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
392
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
393
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
394
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
395
+ default: boolean;
396
+ };
397
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
398
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
399
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
400
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
401
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
402
+ default: import('../input').InputValueType;
403
+ };
404
+ }>>;
405
+ };
406
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
407
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
408
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
409
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
410
+ default: boolean;
411
+ };
412
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
413
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
414
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
415
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
416
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
417
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
418
+ default: boolean;
419
+ };
420
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
421
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
422
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
423
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
424
+ "v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
425
+ }>>, {
214
426
  change: (arg: import('./src/type').SelectValue | import('./src/type').SelectValue[]) => void;
215
427
  clear: (arg?: void | undefined) => void;
216
428
  "options-end-reached": (arg?: void | undefined) => void;
217
- }, string, Readonly<import('vue').ExtractPropTypes<{
429
+ }, {
430
+ search: boolean;
431
+ options: (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
432
+ placeholder: string;
433
+ multiple: boolean;
434
+ validateForm: boolean;
435
+ clearable: boolean;
436
+ max: number;
437
+ searchInputProps: Partial<import('vue').ExtractPropTypes<{
438
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
439
+ default: string;
440
+ };
441
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
442
+ default: string;
443
+ };
444
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
445
+ default: number;
446
+ };
447
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
448
+ default: boolean;
449
+ };
450
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
451
+ default: string;
452
+ };
453
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
454
+ default: string;
455
+ };
456
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
457
+ default: boolean;
458
+ };
459
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
460
+ default: number;
461
+ };
462
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
463
+ default: boolean;
464
+ };
465
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
466
+ default: number;
467
+ };
468
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
469
+ default: number;
470
+ };
471
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
472
+ default: boolean;
473
+ };
474
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
475
+ default: boolean;
476
+ };
477
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
478
+ default: boolean;
479
+ };
480
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
481
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
482
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
483
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
484
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
485
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
486
+ default: boolean;
487
+ };
488
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
489
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
490
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
491
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
492
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
493
+ default: import('../input').InputValueType;
494
+ };
495
+ }>>;
496
+ }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
497
+ options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
498
+ default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
499
+ };
500
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
501
+ default: string;
502
+ };
503
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
504
+ default: boolean;
505
+ };
506
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
507
+ default: number;
508
+ };
509
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
510
+ default: boolean;
511
+ };
512
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
513
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
514
+ default: string;
515
+ };
516
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
517
+ default: string;
518
+ };
519
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
520
+ default: number;
521
+ };
522
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
523
+ default: boolean;
524
+ };
525
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
526
+ default: string;
527
+ };
528
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
529
+ default: string;
530
+ };
531
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
532
+ default: boolean;
533
+ };
534
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
535
+ default: number;
536
+ };
537
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
538
+ default: boolean;
539
+ };
540
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
541
+ default: number;
542
+ };
543
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
544
+ default: number;
545
+ };
546
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
547
+ default: boolean;
548
+ };
549
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
550
+ default: boolean;
551
+ };
552
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
553
+ default: boolean;
554
+ };
555
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
556
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
557
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
558
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
559
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
560
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
561
+ default: boolean;
562
+ };
563
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
564
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
565
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
566
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
567
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
568
+ default: import('../input').InputValueType;
569
+ };
570
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
571
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
572
+ default: string;
573
+ };
574
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
575
+ default: string;
576
+ };
577
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
578
+ default: number;
579
+ };
580
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
581
+ default: boolean;
582
+ };
583
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
584
+ default: string;
585
+ };
586
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
587
+ default: string;
588
+ };
589
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
590
+ default: boolean;
591
+ };
592
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
593
+ default: number;
594
+ };
595
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
596
+ default: boolean;
597
+ };
598
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
599
+ default: number;
600
+ };
601
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
602
+ default: number;
603
+ };
604
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
605
+ default: boolean;
606
+ };
607
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
608
+ default: boolean;
609
+ };
610
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
611
+ default: boolean;
612
+ };
613
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
614
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
615
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
616
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
617
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
618
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
619
+ default: boolean;
620
+ };
621
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
622
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
623
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
624
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
625
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
626
+ default: import('../input').InputValueType;
627
+ };
628
+ }>>>> & {
629
+ default: () => Partial<import('vue').ExtractPropTypes<{
630
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
631
+ default: string;
632
+ };
633
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
634
+ default: string;
635
+ };
636
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
637
+ default: number;
638
+ };
639
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
640
+ default: boolean;
641
+ };
642
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
643
+ default: string;
644
+ };
645
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
646
+ default: string;
647
+ };
648
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
649
+ default: boolean;
650
+ };
651
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
652
+ default: number;
653
+ };
654
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
655
+ default: boolean;
656
+ };
657
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
658
+ default: number;
659
+ };
660
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
661
+ default: number;
662
+ };
663
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
664
+ default: boolean;
665
+ };
666
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
667
+ default: boolean;
668
+ };
669
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
670
+ default: boolean;
671
+ };
672
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
673
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
674
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
675
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
676
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
677
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
678
+ default: boolean;
679
+ };
680
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
681
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
682
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
683
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
684
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
685
+ default: import('../input').InputValueType;
686
+ };
687
+ }>>;
688
+ };
689
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
690
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
691
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
692
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
693
+ default: boolean;
694
+ };
695
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
696
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
697
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
698
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
699
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
700
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
701
+ default: boolean;
702
+ };
703
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
704
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
705
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
706
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
707
+ "v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
708
+ }>>> & import('vue').ShallowUnwrapRef<{
709
+ closeOptions: () => void;
710
+ }> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
711
+ options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
712
+ default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
713
+ };
714
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
715
+ default: string;
716
+ };
717
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
718
+ default: boolean;
719
+ };
720
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
721
+ default: number;
722
+ };
723
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
724
+ default: boolean;
725
+ };
726
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
727
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
728
+ default: string;
729
+ };
730
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
731
+ default: string;
732
+ };
733
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
734
+ default: number;
735
+ };
736
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
737
+ default: boolean;
738
+ };
739
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
740
+ default: string;
741
+ };
742
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
743
+ default: string;
744
+ };
745
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
746
+ default: boolean;
747
+ };
748
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
749
+ default: number;
750
+ };
751
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
752
+ default: boolean;
753
+ };
754
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
755
+ default: number;
756
+ };
757
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
758
+ default: number;
759
+ };
760
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
761
+ default: boolean;
762
+ };
763
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
764
+ default: boolean;
765
+ };
766
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
767
+ default: boolean;
768
+ };
769
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
770
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
771
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
772
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
773
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
774
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
775
+ default: boolean;
776
+ };
777
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
778
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
779
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
780
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
781
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
782
+ default: import('../input').InputValueType;
783
+ };
784
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
785
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
786
+ default: string;
787
+ };
788
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
789
+ default: string;
790
+ };
791
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
792
+ default: number;
793
+ };
794
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
795
+ default: boolean;
796
+ };
797
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
798
+ default: string;
799
+ };
800
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
801
+ default: string;
802
+ };
803
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
804
+ default: boolean;
805
+ };
806
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
807
+ default: number;
808
+ };
809
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
810
+ default: boolean;
811
+ };
812
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
813
+ default: number;
814
+ };
815
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
816
+ default: number;
817
+ };
818
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
819
+ default: boolean;
820
+ };
821
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
822
+ default: boolean;
823
+ };
824
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
825
+ default: boolean;
826
+ };
827
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
828
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
829
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
830
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
831
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
832
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
833
+ default: boolean;
834
+ };
835
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
836
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
837
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
838
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
839
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
840
+ default: import('../input').InputValueType;
841
+ };
842
+ }>>>> & {
843
+ default: () => Partial<import('vue').ExtractPropTypes<{
844
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
845
+ default: string;
846
+ };
847
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
848
+ default: string;
849
+ };
850
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
851
+ default: number;
852
+ };
853
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
854
+ default: boolean;
855
+ };
856
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
857
+ default: string;
858
+ };
859
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
860
+ default: string;
861
+ };
862
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
863
+ default: boolean;
864
+ };
865
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
866
+ default: number;
867
+ };
868
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
869
+ default: boolean;
870
+ };
871
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
872
+ default: number;
873
+ };
874
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
875
+ default: number;
876
+ };
877
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
878
+ default: boolean;
879
+ };
880
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
881
+ default: boolean;
882
+ };
883
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
884
+ default: boolean;
885
+ };
886
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
887
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
888
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
889
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
890
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
891
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
892
+ default: boolean;
893
+ };
894
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
895
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
896
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
897
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
898
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
899
+ default: import('../input').InputValueType;
900
+ };
901
+ }>>;
902
+ };
903
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
904
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
905
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
906
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
907
+ default: boolean;
908
+ };
909
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
910
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
911
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
912
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
913
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
914
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
915
+ default: boolean;
916
+ };
917
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
918
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
919
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
920
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
921
+ "v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
922
+ }>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
218
923
  options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
219
924
  default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
220
925
  };
@@ -427,10 +1132,16 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
427
1132
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
428
1133
  "v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
429
1134
  }>>, {
1135
+ closeOptions: () => void;
1136
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1137
+ change: (arg: import('./src/type').SelectValue | import('./src/type').SelectValue[]) => void;
1138
+ clear: (arg?: void | undefined) => void;
1139
+ "options-end-reached": (arg?: void | undefined) => void;
1140
+ }, string, {
430
1141
  search: boolean;
1142
+ options: (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
431
1143
  placeholder: string;
432
1144
  multiple: boolean;
433
- options: (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
434
1145
  validateForm: boolean;
435
1146
  clearable: boolean;
436
1147
  max: number;
@@ -493,6 +1204,224 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
493
1204
  default: import('../input').InputValueType;
494
1205
  };
495
1206
  }>>;
496
- }>, import('../../../vue-utils/install-utils').InstallOptions>;
1207
+ }> & {
1208
+ props: {
1209
+ options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
1210
+ default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
1211
+ };
1212
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1213
+ default: string;
1214
+ };
1215
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1216
+ default: boolean;
1217
+ };
1218
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1219
+ default: number;
1220
+ };
1221
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1222
+ default: boolean;
1223
+ };
1224
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
1225
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1226
+ default: string;
1227
+ };
1228
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1229
+ default: string;
1230
+ };
1231
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1232
+ default: number;
1233
+ };
1234
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1235
+ default: boolean;
1236
+ };
1237
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1238
+ default: string;
1239
+ };
1240
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1241
+ default: string;
1242
+ };
1243
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1244
+ default: boolean;
1245
+ };
1246
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1247
+ default: number;
1248
+ };
1249
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1250
+ default: boolean;
1251
+ };
1252
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1253
+ default: number;
1254
+ };
1255
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1256
+ default: number;
1257
+ };
1258
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1259
+ default: boolean;
1260
+ };
1261
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1262
+ default: boolean;
1263
+ };
1264
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1265
+ default: boolean;
1266
+ };
1267
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1268
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1269
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1270
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1271
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1272
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1273
+ default: boolean;
1274
+ };
1275
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1276
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1277
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1278
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1279
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1280
+ default: import('../input').InputValueType;
1281
+ };
1282
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1283
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1284
+ default: string;
1285
+ };
1286
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1287
+ default: string;
1288
+ };
1289
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1290
+ default: number;
1291
+ };
1292
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1293
+ default: boolean;
1294
+ };
1295
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1296
+ default: string;
1297
+ };
1298
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1299
+ default: string;
1300
+ };
1301
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1302
+ default: boolean;
1303
+ };
1304
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1305
+ default: number;
1306
+ };
1307
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1308
+ default: boolean;
1309
+ };
1310
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1311
+ default: number;
1312
+ };
1313
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1314
+ default: number;
1315
+ };
1316
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1317
+ default: boolean;
1318
+ };
1319
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1320
+ default: boolean;
1321
+ };
1322
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1323
+ default: boolean;
1324
+ };
1325
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1326
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1327
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1328
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1329
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1330
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1331
+ default: boolean;
1332
+ };
1333
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1334
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1335
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1336
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1337
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1338
+ default: import('../input').InputValueType;
1339
+ };
1340
+ }>>>> & {
1341
+ default: () => Partial<import('vue').ExtractPropTypes<{
1342
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1343
+ default: string;
1344
+ };
1345
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1346
+ default: string;
1347
+ };
1348
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1349
+ default: number;
1350
+ };
1351
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1352
+ default: boolean;
1353
+ };
1354
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1355
+ default: string;
1356
+ };
1357
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1358
+ default: string;
1359
+ };
1360
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1361
+ default: boolean;
1362
+ };
1363
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1364
+ default: number;
1365
+ };
1366
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1367
+ default: boolean;
1368
+ };
1369
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1370
+ default: number;
1371
+ };
1372
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1373
+ default: number;
1374
+ };
1375
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1376
+ default: boolean;
1377
+ };
1378
+ copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1379
+ default: boolean;
1380
+ };
1381
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1382
+ default: boolean;
1383
+ };
1384
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1385
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1386
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1387
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1388
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1389
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1390
+ default: boolean;
1391
+ };
1392
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1393
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1394
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1395
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1396
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1397
+ default: import('../input').InputValueType;
1398
+ };
1399
+ }>>;
1400
+ };
1401
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1402
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1403
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
1404
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1405
+ default: boolean;
1406
+ };
1407
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1408
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1409
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1410
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1411
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1412
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1413
+ default: boolean;
1414
+ };
1415
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1416
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1417
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1418
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1419
+ "v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
1420
+ };
1421
+ } & (new () => {
1422
+ $scopedSlots: {
1423
+ arrow?(_: {}): any;
1424
+ };
1425
+ }), import('../../../vue-utils/install-utils').InstallOptions>;
497
1426
  export * from './src/props-define';
498
1427
  export * from './src/type';