@polyv/vue-components 1.5.1 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (428) hide show
  1. package/package.json +2 -1
  2. package/styles/function.scss +4 -2
  3. package/styles/root/basic.scss +43 -7
  4. package/styles/variables.scss +35 -4
  5. package/vue2/index.es.js +8644 -6695
  6. package/vue2/src/components/alert/index.d.ts +96 -0
  7. package/vue2/src/components/alert/src/alert.vue.d.ts +50 -0
  8. package/vue2/src/components/alert/src/props-define.d.ts +54 -0
  9. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +453 -1
  10. package/vue2/src/components/business/external-links/external-links.vue.d.ts +2 -2
  11. package/vue2/src/components/business/external-links/use-external-links.d.ts +19 -0
  12. package/vue2/src/components/business/live-status-tag/index.d.ts +84 -0
  13. package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +46 -0
  14. package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +44 -0
  15. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +19 -0
  16. package/vue2/src/components/button/index.d.ts +32 -6
  17. package/vue2/src/components/button/src/button.vue.d.ts +12 -3
  18. package/vue2/src/components/button/src/use-button.d.ts +13 -0
  19. package/vue2/src/components/card/index.d.ts +77 -0
  20. package/vue2/src/components/card/src/card.vue.d.ts +43 -0
  21. package/vue2/src/components/card/src/hooks/props-define.d.ts +46 -0
  22. package/vue2/src/components/dropdown/index.d.ts +175 -4
  23. package/{vue3/src/components/dropdown → vue2/src/components/dropdown/src}/dropdown.vue.d.ts +13 -11
  24. package/{vue3/src/components/dropdown → vue2/src/components/dropdown/src}/use-dropdown.d.ts +21 -6
  25. package/vue2/src/components/empty/index.d.ts +6 -6
  26. package/vue2/src/components/empty/src/empty.vue.d.ts +2 -2
  27. package/vue2/src/components/empty/src/props-define.d.ts +1 -1
  28. package/vue2/src/components/example/example.vue.d.ts +5 -5
  29. package/vue2/src/components/example/index.d.ts +5 -5
  30. package/vue2/src/components/example/props-define.d.ts +2 -2
  31. package/vue2/src/components/exports.d.ts +5 -0
  32. package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -2
  33. package/vue2/src/components/form/area-picker/area-picker.vue.d.ts +18 -3
  34. package/vue2/src/components/form/area-picker/components/picker-popup.vue.d.ts +20 -1
  35. package/vue2/src/components/form/area-picker/use-area-picker.d.ts +89 -3
  36. package/vue2/src/components/form/checkbox/index.d.ts +36 -8
  37. package/vue2/src/components/form/checkbox/src/checkbox-group.vue.d.ts +10 -2
  38. package/vue2/src/components/form/checkbox/src/checkbox.vue.d.ts +5 -0
  39. package/vue2/src/components/form/checkbox/src/props-define.d.ts +123 -0
  40. package/vue2/src/components/form/checkbox/src/use-checkbox-group.d.ts +1 -29
  41. package/vue2/src/components/form/checkbox/src/use-checkbox.d.ts +1 -67
  42. package/vue2/src/components/form/date-picker/index.d.ts +23 -3
  43. package/vue2/src/components/form/date-picker/src/date-picker.vue.d.ts +23 -3
  44. package/vue2/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +1 -1
  45. package/vue2/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +1 -1
  46. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +25 -2
  47. package/vue2/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +6 -5
  48. package/vue2/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +14 -0
  49. package/vue2/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +9 -7
  50. package/vue2/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +4 -4
  51. package/vue2/src/components/form/date-picker/src/hooks/use-year-month.d.ts +2 -1
  52. package/vue2/src/components/form/date-picker/src/types/index.d.ts +21 -0
  53. package/vue2/src/components/form/form-item/index.d.ts +14 -4
  54. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +7 -2
  55. package/vue2/src/components/form/form-item/src/hooks/config.d.ts +1 -0
  56. package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +113 -0
  57. package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +1 -1
  58. package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +8 -0
  59. package/vue2/src/components/form/form-item/src/use-form-item.d.ts +5 -78
  60. package/vue2/src/components/form/form-submit-button/index.d.ts +10 -3
  61. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -3
  62. package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +3 -0
  63. package/vue2/src/components/form/form-wrap/index.d.ts +6 -6
  64. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +2 -2
  65. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +1 -1
  66. package/vue2/src/components/form/hooks/use-form-clearable.d.ts +19 -0
  67. package/vue2/src/components/form/hooks/use-form-entrance.d.ts +40 -1
  68. package/vue2/src/components/form/image-upload/index.d.ts +53 -0
  69. package/vue2/src/components/form/image-upload/src/hooks/props-define.d.ts +65 -2
  70. package/vue2/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +8 -0
  71. package/vue2/src/components/form/image-upload/src/image-upload.vue.d.ts +53 -0
  72. package/vue2/src/components/form/index.d.ts +2 -1
  73. package/vue2/src/components/form/input/index.d.ts +24 -200
  74. package/vue2/src/components/form/input/src/input.vue.d.ts +25 -22
  75. package/vue2/src/components/form/input/src/props-define.d.ts +20 -10
  76. package/vue2/src/components/form/input/src/use-input.d.ts +3 -1
  77. package/vue2/src/components/form/input-number/index.d.ts +207 -2
  78. package/vue2/src/components/form/input-number/{input-number.vue.d.ts → src/input-number.vue.d.ts} +20 -4
  79. package/vue2/src/components/form/input-number/{props-define.d.ts → src/props-define.d.ts} +16 -5
  80. package/{vue3/src/components/form/input-number → vue2/src/components/form/input-number/src}/use-input-number.d.ts +1 -1
  81. package/vue2/src/components/form/radio/index.d.ts +70 -23
  82. package/vue2/src/components/form/radio/src/props-define.d.ts +115 -0
  83. package/vue2/src/components/form/radio/src/radio-group.vue.d.ts +21 -5
  84. package/vue2/src/components/form/radio/src/radio.vue.d.ts +7 -2
  85. package/vue2/src/components/form/radio/src/type.d.ts +13 -1
  86. package/vue2/src/components/form/select/index.d.ts +280 -28
  87. package/vue2/src/components/form/select/src/props-define.d.ts +50 -5
  88. package/vue2/src/components/form/select/src/select.vue.d.ts +98 -10
  89. package/vue2/src/components/form/switch/index.d.ts +10 -2
  90. package/vue2/src/components/form/switch/src/props-define.d.ts +5 -1
  91. package/vue2/src/components/form/switch/src/switch.vue.d.ts +10 -2
  92. package/vue2/src/components/form/switch/src/use-switch.d.ts +1 -1
  93. package/vue2/src/components/form/timezone-picker/index.d.ts +1406 -0
  94. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +619 -0
  95. package/vue2/src/components/form/timezone-picker/src/hooks/use-timezone-data.d.ts +25 -0
  96. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +1407 -0
  97. package/vue2/src/components/form/transfer/transfer.vue.d.ts +2 -2
  98. package/vue2/src/components/form/video-upload/hooks/props-define.d.ts +11 -0
  99. package/vue2/src/components/form/video-upload/hooks/use-video-upload.d.ts +2 -0
  100. package/vue2/src/components/form/video-upload/video-upload.vue.d.ts +9 -0
  101. package/vue2/src/components/icons/icons/clock-two/index.d.ts +6 -0
  102. package/vue2/src/components/icons/icons/data-export-two/index.d.ts +6 -0
  103. package/vue2/src/components/icons/icons/error/index.d.ts +6 -0
  104. package/vue2/src/components/icons/icons/filter/index.d.ts +6 -0
  105. package/vue2/src/components/icons/icons/landscape/index.d.ts +6 -0
  106. package/vue2/src/components/icons/icons/portrait/index.d.ts +6 -0
  107. package/vue2/src/components/icons/icons/rocket/index.d.ts +6 -0
  108. package/vue2/src/components/icons/icons/statistics/index.d.ts +6 -0
  109. package/vue2/src/components/icons/icons/success/index.d.ts +6 -0
  110. package/vue2/src/components/icons/icons/tag/index.d.ts +6 -0
  111. package/vue2/src/components/icons/map.d.ts +10 -0
  112. package/vue2/src/components/image-cropper/index.d.ts +22 -0
  113. package/vue2/src/components/image-cropper/src/hooks/props-define.d.ts +52 -0
  114. package/vue2/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +31 -0
  115. package/vue2/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +6 -0
  116. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +9 -0
  117. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +8 -0
  118. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +23 -0
  119. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +8 -0
  120. package/vue2/src/components/image-cropper/src/image-cropper.vue.d.ts +22 -0
  121. package/vue2/src/components/loading/index.d.ts +6 -6
  122. package/vue2/src/components/loading/src/loading.vue.d.ts +6 -6
  123. package/vue2/src/components/loading/src/props-define.d.ts +2 -2
  124. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +75 -45
  125. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +37 -21
  126. package/vue2/src/components/message-box/types.d.ts +27 -0
  127. package/vue2/src/components/pagination/pagination.vue.d.ts +1 -1
  128. package/vue2/src/components/popconfirm/index.d.ts +331 -2
  129. package/vue2/src/components/popconfirm/{popconfirm.vue.d.ts → src/popconfirm.vue.d.ts} +68 -46
  130. package/{vue3/src/components/popconfirm → vue2/src/components/popconfirm/src}/props-define.d.ts +13 -15
  131. package/vue2/src/components/popover/index.d.ts +50 -30
  132. package/vue2/src/components/popover/src/popover.vue.d.ts +18 -11
  133. package/vue2/src/components/popover/src/props-define.d.ts +12 -4
  134. package/vue2/src/components/popup/index.d.ts +696 -4
  135. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/popup-props.d.ts +68 -24
  136. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-append.d.ts +1 -1
  137. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-back.d.ts +1 -1
  138. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-config.d.ts +1 -1
  139. package/vue2/src/components/popup/{hooks → src/hooks}/use-popup-draggable.d.ts +1 -1
  140. package/vue2/src/components/popup/src/hooks/use-popup-effect.d.ts +7 -0
  141. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-height.d.ts +6 -3
  142. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-position.d.ts +2 -2
  143. package/vue2/src/components/popup/src/hooks/use-popup-scroll.d.ts +149 -0
  144. package/vue2/src/components/popup/{hooks → src/hooks}/use-popup-visible.d.ts +1 -1
  145. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-width.d.ts +3 -2
  146. package/vue2/src/components/popup/src/popup.vue.d.ts +402 -0
  147. package/vue2/src/components/resize-box/resize-box.vue.d.ts +2 -2
  148. package/vue2/src/components/scrollbar/index.d.ts +18 -2
  149. package/vue2/src/components/scrollbar/src/props-define.d.ts +13 -0
  150. package/vue2/src/components/scrollbar/src/scrollbar-track.vue.d.ts +2 -2
  151. package/vue2/src/components/scrollbar/src/scrollbar.vue.d.ts +7 -1
  152. package/vue2/src/components/slider/index.d.ts +1 -1
  153. package/vue2/src/components/slider/src/slider.vue.d.ts +1 -1
  154. package/vue2/src/components/swiper/hooks/swiper-props.d.ts +1 -1
  155. package/vue2/src/components/swiper/hooks/use-swiper-options.d.ts +393 -1
  156. package/vue2/src/components/swiper/hooks/use-swiper-wrapper.d.ts +393 -1
  157. package/vue2/src/components/swiper/swiper.vue.d.ts +2 -2
  158. package/vue2/src/components/table/index.d.ts +8 -8
  159. package/vue2/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
  160. package/vue2/src/components/table/src/hooks/props-define.d.ts +1 -1
  161. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  162. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +5 -5
  163. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +9 -9
  164. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  165. package/vue2/src/components/table/src/table-column.vue.d.ts +2 -2
  166. package/vue2/src/components/table/src/table.vue.d.ts +1 -1
  167. package/vue2/src/components/tabs/index.d.ts +145 -0
  168. package/vue2/src/components/tabs/src/props-define.d.ts +86 -0
  169. package/vue2/src/components/tabs/src/tab-pane.vue.d.ts +35 -0
  170. package/vue2/src/components/tabs/src/tabs.vue.d.ts +48 -0
  171. package/vue2/src/components/tabs/src/types.d.ts +28 -0
  172. package/vue2/src/components/tag/index.d.ts +28 -28
  173. package/vue2/src/components/tag/src/props-define.d.ts +6 -6
  174. package/vue2/src/components/tag/src/tag.vue.d.ts +10 -10
  175. package/vue2/src/components/tooltip/index.d.ts +16 -16
  176. package/vue2/src/components/tooltip/src/props-define.d.ts +2 -2
  177. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +9 -82
  178. package/vue2/src/components/tooltip/src/use-tooltip.d.ts +2 -2
  179. package/vue2/src/components/zoom-container/hooks/use-zoom-drag.d.ts +1 -0
  180. package/vue2/src/config/index.d.ts +4 -0
  181. package/vue2/src/hooks/business/use-skin-color/index.d.ts +1 -0
  182. package/vue2/src/hooks/business/use-skin-color/types.d.ts +4 -0
  183. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +5 -0
  184. package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +93 -19
  185. package/vue2/src/hooks/interactive/use-scroll/index.d.ts +8 -0
  186. package/vue2/src/hooks/pagination/use-scroll-pagintaion/index.d.ts +8 -0
  187. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +6 -0
  188. package/vue2/src/hooks/vue/use-vue/index.d.ts +0 -1
  189. package/vue2/src/lang/internal/en.json.d.ts +20 -1
  190. package/vue2/src/lang/internal/index.d.ts +19 -0
  191. package/vue2/src/lang/internal/ja.json.d.ts +20 -1
  192. package/vue2/src/lang/internal/ko.json.d.ts +20 -1
  193. package/vue2/src/lang/internal/ru.json.d.ts +20 -1
  194. package/vue2/src/lang/internal/zh-CN.json.d.ts +20 -1
  195. package/vue2/src/lang/internal/zh-TW.json.d.ts +20 -1
  196. package/vue2/src/plugins/cropperjs/index.d.ts +14 -0
  197. package/vue2/src/utils/string.d.ts +10 -0
  198. package/vue2/src/vue-utils/render-slot.d.ts +10 -0
  199. package/vue3/index.es.js +8644 -6695
  200. package/vue3/src/components/alert/index.d.ts +96 -0
  201. package/vue3/src/components/alert/src/alert.vue.d.ts +50 -0
  202. package/vue3/src/components/alert/src/props-define.d.ts +54 -0
  203. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +453 -1
  204. package/vue3/src/components/business/external-links/external-links.vue.d.ts +2 -2
  205. package/vue3/src/components/business/external-links/use-external-links.d.ts +19 -0
  206. package/vue3/src/components/business/live-status-tag/index.d.ts +84 -0
  207. package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +46 -0
  208. package/vue3/src/components/business/live-status-tag/src/playing-icon.vue.d.ts +2 -0
  209. package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +44 -0
  210. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +19 -0
  211. package/vue3/src/components/button/index.d.ts +32 -6
  212. package/vue3/src/components/button/src/button.vue.d.ts +12 -3
  213. package/vue3/src/components/button/src/use-button.d.ts +13 -0
  214. package/vue3/src/components/card/index.d.ts +77 -0
  215. package/vue3/src/components/card/src/card.vue.d.ts +43 -0
  216. package/vue3/src/components/card/src/hooks/props-define.d.ts +46 -0
  217. package/vue3/src/components/dropdown/index.d.ts +175 -4
  218. package/{vue2/src/components/dropdown → vue3/src/components/dropdown/src}/dropdown.vue.d.ts +13 -11
  219. package/{vue2/src/components/dropdown → vue3/src/components/dropdown/src}/use-dropdown.d.ts +21 -6
  220. package/vue3/src/components/empty/index.d.ts +6 -6
  221. package/vue3/src/components/empty/src/empty.vue.d.ts +2 -2
  222. package/vue3/src/components/empty/src/props-define.d.ts +1 -1
  223. package/vue3/src/components/example/example.vue.d.ts +5 -5
  224. package/vue3/src/components/example/index.d.ts +5 -5
  225. package/vue3/src/components/example/props-define.d.ts +2 -2
  226. package/vue3/src/components/exports.d.ts +5 -0
  227. package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -2
  228. package/vue3/src/components/form/area-picker/area-picker.vue.d.ts +18 -3
  229. package/vue3/src/components/form/area-picker/components/picker-popup.vue.d.ts +20 -1
  230. package/vue3/src/components/form/area-picker/use-area-picker.d.ts +89 -3
  231. package/vue3/src/components/form/checkbox/index.d.ts +36 -8
  232. package/vue3/src/components/form/checkbox/src/checkbox-group.vue.d.ts +10 -2
  233. package/vue3/src/components/form/checkbox/src/checkbox.vue.d.ts +5 -0
  234. package/vue3/src/components/form/checkbox/src/props-define.d.ts +123 -0
  235. package/vue3/src/components/form/checkbox/src/use-checkbox-group.d.ts +1 -29
  236. package/vue3/src/components/form/checkbox/src/use-checkbox.d.ts +1 -67
  237. package/vue3/src/components/form/date-picker/index.d.ts +23 -3
  238. package/vue3/src/components/form/date-picker/src/date-picker.vue.d.ts +23 -3
  239. package/vue3/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +1 -1
  240. package/vue3/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +1 -1
  241. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +25 -2
  242. package/vue3/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +6 -5
  243. package/vue3/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +14 -0
  244. package/vue3/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +9 -7
  245. package/vue3/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +4 -4
  246. package/vue3/src/components/form/date-picker/src/hooks/use-year-month.d.ts +2 -1
  247. package/vue3/src/components/form/date-picker/src/types/index.d.ts +21 -0
  248. package/vue3/src/components/form/form-item/index.d.ts +14 -4
  249. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +7 -2
  250. package/vue3/src/components/form/form-item/src/hooks/config.d.ts +1 -0
  251. package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +113 -0
  252. package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +1 -1
  253. package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +8 -0
  254. package/vue3/src/components/form/form-item/src/use-form-item.d.ts +5 -78
  255. package/vue3/src/components/form/form-submit-button/index.d.ts +10 -3
  256. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -3
  257. package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +3 -0
  258. package/vue3/src/components/form/form-wrap/index.d.ts +6 -6
  259. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +2 -2
  260. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +1 -1
  261. package/vue3/src/components/form/hooks/use-form-clearable.d.ts +19 -0
  262. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +40 -1
  263. package/vue3/src/components/form/image-upload/index.d.ts +53 -0
  264. package/vue3/src/components/form/image-upload/src/hooks/props-define.d.ts +65 -2
  265. package/vue3/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +8 -0
  266. package/vue3/src/components/form/image-upload/src/image-upload.vue.d.ts +53 -0
  267. package/vue3/src/components/form/index.d.ts +2 -1
  268. package/vue3/src/components/form/input/index.d.ts +24 -200
  269. package/vue3/src/components/form/input/src/input.vue.d.ts +25 -22
  270. package/vue3/src/components/form/input/src/props-define.d.ts +20 -10
  271. package/vue3/src/components/form/input/src/use-input.d.ts +3 -1
  272. package/vue3/src/components/form/input-number/index.d.ts +207 -2
  273. package/vue3/src/components/form/input-number/{input-number.vue.d.ts → src/input-number.vue.d.ts} +20 -4
  274. package/vue3/src/components/form/input-number/{props-define.d.ts → src/props-define.d.ts} +16 -5
  275. package/{vue2/src/components/form/input-number → vue3/src/components/form/input-number/src}/use-input-number.d.ts +1 -1
  276. package/vue3/src/components/form/radio/index.d.ts +70 -23
  277. package/vue3/src/components/form/radio/src/props-define.d.ts +115 -0
  278. package/vue3/src/components/form/radio/src/radio-group.vue.d.ts +21 -5
  279. package/vue3/src/components/form/radio/src/radio.vue.d.ts +7 -2
  280. package/vue3/src/components/form/radio/src/type.d.ts +13 -1
  281. package/vue3/src/components/form/select/index.d.ts +280 -28
  282. package/vue3/src/components/form/select/src/props-define.d.ts +50 -5
  283. package/vue3/src/components/form/select/src/select.vue.d.ts +98 -10
  284. package/vue3/src/components/form/switch/index.d.ts +10 -2
  285. package/vue3/src/components/form/switch/src/props-define.d.ts +5 -1
  286. package/vue3/src/components/form/switch/src/switch.vue.d.ts +10 -2
  287. package/vue3/src/components/form/switch/src/use-switch.d.ts +1 -1
  288. package/vue3/src/components/form/timezone-picker/index.d.ts +1406 -0
  289. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +619 -0
  290. package/vue3/src/components/form/timezone-picker/src/hooks/use-timezone-data.d.ts +25 -0
  291. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +1407 -0
  292. package/vue3/src/components/form/transfer/transfer.vue.d.ts +2 -2
  293. package/vue3/src/components/form/video-upload/hooks/props-define.d.ts +11 -0
  294. package/vue3/src/components/form/video-upload/hooks/use-video-upload.d.ts +2 -0
  295. package/vue3/src/components/form/video-upload/video-upload.vue.d.ts +9 -0
  296. package/vue3/src/components/icons/icons/clock-two/index.d.ts +6 -0
  297. package/vue3/src/components/icons/icons/data-export-two/index.d.ts +6 -0
  298. package/vue3/src/components/icons/icons/error/index.d.ts +6 -0
  299. package/vue3/src/components/icons/icons/filter/index.d.ts +6 -0
  300. package/vue3/src/components/icons/icons/landscape/index.d.ts +6 -0
  301. package/vue3/src/components/icons/icons/portrait/index.d.ts +6 -0
  302. package/vue3/src/components/icons/icons/rocket/index.d.ts +6 -0
  303. package/vue3/src/components/icons/icons/statistics/index.d.ts +6 -0
  304. package/vue3/src/components/icons/icons/success/index.d.ts +6 -0
  305. package/vue3/src/components/icons/icons/tag/index.d.ts +6 -0
  306. package/vue3/src/components/icons/map.d.ts +10 -0
  307. package/vue3/src/components/image-cropper/index.d.ts +22 -0
  308. package/vue3/src/components/image-cropper/src/hooks/props-define.d.ts +52 -0
  309. package/vue3/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +31 -0
  310. package/vue3/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +6 -0
  311. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +9 -0
  312. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +8 -0
  313. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +23 -0
  314. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +8 -0
  315. package/vue3/src/components/image-cropper/src/image-cropper.vue.d.ts +22 -0
  316. package/vue3/src/components/loading/index.d.ts +6 -6
  317. package/vue3/src/components/loading/src/loading.vue.d.ts +6 -6
  318. package/vue3/src/components/loading/src/props-define.d.ts +2 -2
  319. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +75 -45
  320. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +37 -21
  321. package/vue3/src/components/message-box/types.d.ts +27 -0
  322. package/vue3/src/components/pagination/pagination.vue.d.ts +1 -1
  323. package/vue3/src/components/popconfirm/index.d.ts +331 -2
  324. package/vue3/src/components/popconfirm/{popconfirm.vue.d.ts → src/popconfirm.vue.d.ts} +68 -46
  325. package/{vue2/src/components/popconfirm → vue3/src/components/popconfirm/src}/props-define.d.ts +13 -15
  326. package/vue3/src/components/popover/index.d.ts +50 -30
  327. package/vue3/src/components/popover/src/popover.vue.d.ts +18 -11
  328. package/vue3/src/components/popover/src/props-define.d.ts +12 -4
  329. package/vue3/src/components/popup/index.d.ts +696 -4
  330. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/popup-props.d.ts +68 -24
  331. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-append.d.ts +1 -1
  332. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-back.d.ts +1 -1
  333. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-config.d.ts +1 -1
  334. package/vue3/src/components/popup/{hooks → src/hooks}/use-popup-draggable.d.ts +1 -1
  335. package/vue3/src/components/popup/src/hooks/use-popup-effect.d.ts +7 -0
  336. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-height.d.ts +6 -3
  337. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-position.d.ts +2 -2
  338. package/vue3/src/components/popup/src/hooks/use-popup-scroll.d.ts +149 -0
  339. package/vue3/src/components/popup/{hooks → src/hooks}/use-popup-visible.d.ts +1 -1
  340. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-width.d.ts +3 -2
  341. package/vue3/src/components/popup/src/popup.vue.d.ts +402 -0
  342. package/vue3/src/components/resize-box/resize-box.vue.d.ts +2 -2
  343. package/vue3/src/components/scrollbar/index.d.ts +18 -2
  344. package/vue3/src/components/scrollbar/src/props-define.d.ts +13 -0
  345. package/vue3/src/components/scrollbar/src/scrollbar-track.vue.d.ts +2 -2
  346. package/vue3/src/components/scrollbar/src/scrollbar.vue.d.ts +7 -1
  347. package/vue3/src/components/slider/index.d.ts +1 -1
  348. package/vue3/src/components/slider/src/slider.vue.d.ts +1 -1
  349. package/vue3/src/components/swiper/hooks/swiper-props.d.ts +1 -1
  350. package/vue3/src/components/swiper/hooks/use-swiper-options.d.ts +393 -1
  351. package/vue3/src/components/swiper/hooks/use-swiper-wrapper.d.ts +393 -1
  352. package/vue3/src/components/swiper/swiper.vue.d.ts +2 -2
  353. package/vue3/src/components/table/index.d.ts +8 -8
  354. package/vue3/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
  355. package/vue3/src/components/table/src/hooks/props-define.d.ts +1 -1
  356. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  357. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +5 -5
  358. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +9 -9
  359. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  360. package/vue3/src/components/table/src/table-column.vue.d.ts +2 -2
  361. package/vue3/src/components/table/src/table.vue.d.ts +1 -1
  362. package/vue3/src/components/tabs/index.d.ts +145 -0
  363. package/vue3/src/components/tabs/src/props-define.d.ts +86 -0
  364. package/vue3/src/components/tabs/src/tab-nav.vue.d.ts +2 -0
  365. package/vue3/src/components/tabs/src/tab-pane.vue.d.ts +35 -0
  366. package/vue3/src/components/tabs/src/tabs.vue.d.ts +48 -0
  367. package/vue3/src/components/tabs/src/types.d.ts +28 -0
  368. package/vue3/src/components/tag/index.d.ts +28 -28
  369. package/vue3/src/components/tag/src/props-define.d.ts +6 -6
  370. package/vue3/src/components/tag/src/tag.vue.d.ts +10 -10
  371. package/vue3/src/components/tooltip/index.d.ts +16 -16
  372. package/vue3/src/components/tooltip/src/props-define.d.ts +2 -2
  373. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +9 -82
  374. package/vue3/src/components/tooltip/src/use-tooltip.d.ts +2 -2
  375. package/vue3/src/components/zoom-container/hooks/use-zoom-drag.d.ts +1 -0
  376. package/vue3/src/config/index.d.ts +4 -0
  377. package/vue3/src/hooks/business/use-skin-color/index.d.ts +1 -0
  378. package/vue3/src/hooks/business/use-skin-color/types.d.ts +4 -0
  379. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +5 -0
  380. package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +93 -19
  381. package/vue3/src/hooks/interactive/use-scroll/index.d.ts +8 -0
  382. package/vue3/src/hooks/pagination/use-scroll-pagintaion/index.d.ts +8 -0
  383. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +6 -0
  384. package/vue3/src/hooks/vue/use-vue/index.d.ts +0 -1
  385. package/vue3/src/lang/internal/en.json.d.ts +20 -1
  386. package/vue3/src/lang/internal/index.d.ts +19 -0
  387. package/vue3/src/lang/internal/ja.json.d.ts +20 -1
  388. package/vue3/src/lang/internal/ko.json.d.ts +20 -1
  389. package/vue3/src/lang/internal/ru.json.d.ts +20 -1
  390. package/vue3/src/lang/internal/zh-CN.json.d.ts +20 -1
  391. package/vue3/src/lang/internal/zh-TW.json.d.ts +20 -1
  392. package/vue3/src/plugins/cropperjs/index.d.ts +14 -0
  393. package/vue3/src/utils/string.d.ts +10 -0
  394. package/vue3/src/vue-utils/render-slot.d.ts +10 -0
  395. package/vue2/src/components/form/date-picker/src/hooks/use-date-input.d.ts +0 -16
  396. package/vue2/src/components/form/date-picker/src/utils/date-utils.d.ts +0 -34
  397. package/vue2/src/components/form/radio/src/use-radio-group.d.ts +0 -43
  398. package/vue2/src/components/form/radio/src/use-radio.d.ts +0 -53
  399. package/vue2/src/components/popper/hooks.d.ts +0 -7
  400. package/vue2/src/components/popper/index.d.ts +0 -4
  401. package/vue2/src/components/popper/popper-content.vue.d.ts +0 -19
  402. package/vue2/src/components/popper/popper-reference.vue.d.ts +0 -17
  403. package/vue2/src/components/popper/popper.vue.d.ts +0 -58
  404. package/vue2/src/components/popper/props-define.d.ts +0 -41
  405. package/vue2/src/components/popup/hooks/use-popup-scroll.d.ts +0 -9
  406. package/vue2/src/components/popup/popup.vue.d.ts +0 -225
  407. package/vue2/src/components/slot/index.d.ts +0 -6
  408. package/vue3/src/components/form/date-picker/src/hooks/use-date-input.d.ts +0 -16
  409. package/vue3/src/components/form/date-picker/src/utils/date-utils.d.ts +0 -34
  410. package/vue3/src/components/form/radio/src/use-radio-group.d.ts +0 -43
  411. package/vue3/src/components/form/radio/src/use-radio.d.ts +0 -53
  412. package/vue3/src/components/popper/hooks.d.ts +0 -7
  413. package/vue3/src/components/popper/index.d.ts +0 -4
  414. package/vue3/src/components/popper/popper-content.vue.d.ts +0 -19
  415. package/vue3/src/components/popper/popper-reference.vue.d.ts +0 -17
  416. package/vue3/src/components/popper/popper.vue.d.ts +0 -58
  417. package/vue3/src/components/popper/props-define.d.ts +0 -41
  418. package/vue3/src/components/popup/hooks/use-popup-scroll.d.ts +0 -9
  419. package/vue3/src/components/popup/popup.vue.d.ts +0 -225
  420. package/vue3/src/components/slot/index.d.ts +0 -6
  421. /package/vue2/src/components/{form/date-picker/src/components/picker-reference/picker-reference.vue.d.ts → business/live-status-tag/src/playing-icon.vue.d.ts} +0 -0
  422. /package/vue2/src/components/dropdown/{dropdown-item.vue.d.ts → src/dropdown-item.vue.d.ts} +0 -0
  423. /package/vue2/src/components/dropdown/{dropdown-menu.vue.d.ts → src/dropdown-menu.vue.d.ts} +0 -0
  424. /package/vue2/src/components/popup/{types.d.ts → src/types.d.ts} +0 -0
  425. /package/{vue3/src/components/form/date-picker/src/components/picker-reference/picker-reference.vue.d.ts → vue2/src/components/tabs/src/tab-nav.vue.d.ts} +0 -0
  426. /package/vue3/src/components/dropdown/{dropdown-item.vue.d.ts → src/dropdown-item.vue.d.ts} +0 -0
  427. /package/vue3/src/components/dropdown/{dropdown-menu.vue.d.ts → src/dropdown-menu.vue.d.ts} +0 -0
  428. /package/vue3/src/components/popup/{types.d.ts → src/types.d.ts} +0 -0
@@ -0,0 +1,1406 @@
1
+ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils').SFCInstall<import('vue').DefineComponent<{
2
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
3
+ defaultTimezone: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
4
+ default: boolean;
5
+ };
6
+ selectProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
7
+ options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
8
+ default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
9
+ };
10
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
11
+ default: string;
12
+ };
13
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
14
+ default: boolean;
15
+ };
16
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
17
+ default: number;
18
+ };
19
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
20
+ default: boolean;
21
+ };
22
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
23
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
24
+ default: string;
25
+ };
26
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
27
+ default: string;
28
+ };
29
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
30
+ default: number;
31
+ };
32
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
33
+ default: boolean;
34
+ };
35
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
36
+ default: string;
37
+ };
38
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
39
+ default: string;
40
+ };
41
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
42
+ default: boolean;
43
+ };
44
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
45
+ default: number;
46
+ };
47
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
48
+ default: boolean;
49
+ };
50
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
51
+ default: number;
52
+ };
53
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
54
+ default: number;
55
+ };
56
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
57
+ default: boolean;
58
+ };
59
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
60
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
61
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
62
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
63
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
64
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
65
+ default: boolean;
66
+ };
67
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
68
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
69
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
70
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
71
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
72
+ default: import('..').InputValueType;
73
+ };
74
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
75
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
76
+ default: string;
77
+ };
78
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
79
+ default: string;
80
+ };
81
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
82
+ default: number;
83
+ };
84
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
85
+ default: boolean;
86
+ };
87
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
88
+ default: string;
89
+ };
90
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
91
+ default: string;
92
+ };
93
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
94
+ default: boolean;
95
+ };
96
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
97
+ default: number;
98
+ };
99
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
100
+ default: boolean;
101
+ };
102
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
103
+ default: number;
104
+ };
105
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
106
+ default: number;
107
+ };
108
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
109
+ default: boolean;
110
+ };
111
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
112
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
113
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
114
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
115
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
116
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
117
+ default: boolean;
118
+ };
119
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
120
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
121
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
122
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
123
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
124
+ default: import('..').InputValueType;
125
+ };
126
+ }>>>> & {
127
+ default: () => Partial<import('vue').ExtractPropTypes<{
128
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
129
+ default: string;
130
+ };
131
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
132
+ default: string;
133
+ };
134
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
135
+ default: number;
136
+ };
137
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
138
+ default: boolean;
139
+ };
140
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
141
+ default: string;
142
+ };
143
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
144
+ default: string;
145
+ };
146
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
147
+ default: boolean;
148
+ };
149
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
150
+ default: number;
151
+ };
152
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
153
+ default: boolean;
154
+ };
155
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
156
+ default: number;
157
+ };
158
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
159
+ default: number;
160
+ };
161
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
162
+ default: boolean;
163
+ };
164
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
165
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
166
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
167
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
168
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
169
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
170
+ default: boolean;
171
+ };
172
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
173
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
174
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
175
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
176
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
177
+ default: import('..').InputValueType;
178
+ };
179
+ }>>;
180
+ };
181
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
182
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
183
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
184
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
185
+ default: boolean;
186
+ };
187
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
188
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
189
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
190
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
191
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
192
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
193
+ default: boolean;
194
+ };
195
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
196
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
197
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
198
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
199
+ "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
200
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
201
+ options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
202
+ default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
203
+ };
204
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
205
+ default: string;
206
+ };
207
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
208
+ default: boolean;
209
+ };
210
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
211
+ default: number;
212
+ };
213
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
214
+ default: boolean;
215
+ };
216
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
217
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
218
+ default: string;
219
+ };
220
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
221
+ default: string;
222
+ };
223
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
224
+ default: number;
225
+ };
226
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
227
+ default: boolean;
228
+ };
229
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
230
+ default: string;
231
+ };
232
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
233
+ default: string;
234
+ };
235
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
236
+ default: boolean;
237
+ };
238
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
239
+ default: number;
240
+ };
241
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
242
+ default: boolean;
243
+ };
244
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
245
+ default: number;
246
+ };
247
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
248
+ default: number;
249
+ };
250
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
251
+ default: boolean;
252
+ };
253
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
254
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
255
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
256
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
257
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
258
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
259
+ default: boolean;
260
+ };
261
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
262
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
263
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
264
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
265
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
266
+ default: import('..').InputValueType;
267
+ };
268
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
269
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
270
+ default: string;
271
+ };
272
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
273
+ default: string;
274
+ };
275
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
276
+ default: number;
277
+ };
278
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
279
+ default: boolean;
280
+ };
281
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
282
+ default: string;
283
+ };
284
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
285
+ default: string;
286
+ };
287
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
288
+ default: boolean;
289
+ };
290
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
291
+ default: number;
292
+ };
293
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
294
+ default: boolean;
295
+ };
296
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
297
+ default: number;
298
+ };
299
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
300
+ default: number;
301
+ };
302
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
303
+ default: boolean;
304
+ };
305
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
306
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
307
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
308
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
309
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
310
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
311
+ default: boolean;
312
+ };
313
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
314
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
315
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
316
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
317
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
318
+ default: import('..').InputValueType;
319
+ };
320
+ }>>>> & {
321
+ default: () => Partial<import('vue').ExtractPropTypes<{
322
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
323
+ default: string;
324
+ };
325
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
326
+ default: string;
327
+ };
328
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
329
+ default: number;
330
+ };
331
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
332
+ default: boolean;
333
+ };
334
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
335
+ default: string;
336
+ };
337
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
338
+ default: string;
339
+ };
340
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
341
+ default: boolean;
342
+ };
343
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
344
+ default: number;
345
+ };
346
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
347
+ default: boolean;
348
+ };
349
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
350
+ default: number;
351
+ };
352
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
353
+ default: number;
354
+ };
355
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
356
+ default: boolean;
357
+ };
358
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
359
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
360
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
361
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
362
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
363
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
364
+ default: boolean;
365
+ };
366
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
367
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
368
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
369
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
370
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
371
+ default: import('..').InputValueType;
372
+ };
373
+ }>>;
374
+ };
375
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
376
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
377
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
378
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
379
+ default: boolean;
380
+ };
381
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
382
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
383
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
384
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
385
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
386
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
387
+ default: boolean;
388
+ };
389
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
390
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
391
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
392
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
393
+ "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
394
+ }>>>> & {
395
+ default: () => Partial<import('vue').ExtractPropTypes<{
396
+ options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
397
+ default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
398
+ };
399
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
400
+ default: string;
401
+ };
402
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
403
+ default: boolean;
404
+ };
405
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
406
+ default: number;
407
+ };
408
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
409
+ default: boolean;
410
+ };
411
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
412
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
413
+ default: string;
414
+ };
415
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
416
+ default: string;
417
+ };
418
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
419
+ default: number;
420
+ };
421
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
422
+ default: boolean;
423
+ };
424
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
425
+ default: string;
426
+ };
427
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
428
+ default: string;
429
+ };
430
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
431
+ default: boolean;
432
+ };
433
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
434
+ default: number;
435
+ };
436
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
437
+ default: boolean;
438
+ };
439
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
440
+ default: number;
441
+ };
442
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
443
+ default: number;
444
+ };
445
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
446
+ default: boolean;
447
+ };
448
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
449
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
450
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
451
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
452
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
453
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
454
+ default: boolean;
455
+ };
456
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
457
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
458
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
459
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
460
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
461
+ default: import('..').InputValueType;
462
+ };
463
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
464
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
465
+ default: string;
466
+ };
467
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
468
+ default: string;
469
+ };
470
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
471
+ default: number;
472
+ };
473
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
474
+ default: boolean;
475
+ };
476
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
477
+ default: string;
478
+ };
479
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
480
+ default: string;
481
+ };
482
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
483
+ default: boolean;
484
+ };
485
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
486
+ default: number;
487
+ };
488
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
489
+ default: boolean;
490
+ };
491
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
492
+ default: number;
493
+ };
494
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
495
+ default: number;
496
+ };
497
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
498
+ default: boolean;
499
+ };
500
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
501
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
502
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
503
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
504
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
505
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
506
+ default: boolean;
507
+ };
508
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
509
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
510
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
511
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
512
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
513
+ default: import('..').InputValueType;
514
+ };
515
+ }>>>> & {
516
+ default: () => Partial<import('vue').ExtractPropTypes<{
517
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
518
+ default: string;
519
+ };
520
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
521
+ default: string;
522
+ };
523
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
524
+ default: number;
525
+ };
526
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
527
+ default: boolean;
528
+ };
529
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
530
+ default: string;
531
+ };
532
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
533
+ default: string;
534
+ };
535
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
536
+ default: boolean;
537
+ };
538
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
539
+ default: number;
540
+ };
541
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
542
+ default: boolean;
543
+ };
544
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
545
+ default: number;
546
+ };
547
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
548
+ default: number;
549
+ };
550
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
551
+ default: boolean;
552
+ };
553
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
554
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
555
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
556
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
557
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
558
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
559
+ default: boolean;
560
+ };
561
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
562
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
563
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
564
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
565
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
566
+ default: import('..').InputValueType;
567
+ };
568
+ }>>;
569
+ };
570
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
571
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
572
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
573
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
574
+ default: boolean;
575
+ };
576
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
577
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
578
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
579
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
580
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
581
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
582
+ default: boolean;
583
+ };
584
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
585
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
586
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
587
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
588
+ "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
589
+ }>>;
590
+ };
591
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
592
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
593
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
594
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
595
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
596
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
597
+ default: boolean;
598
+ };
599
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
600
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
601
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
602
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
603
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
604
+ change: (arg: string | undefined) => void;
605
+ }, string, Readonly<import('vue').ExtractPropTypes<{
606
+ "v-model-key": import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
607
+ defaultTimezone: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
608
+ default: boolean;
609
+ };
610
+ selectProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
611
+ options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
612
+ default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
613
+ };
614
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
615
+ default: string;
616
+ };
617
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
618
+ default: boolean;
619
+ };
620
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
621
+ default: number;
622
+ };
623
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
624
+ default: boolean;
625
+ };
626
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
627
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
628
+ default: string;
629
+ };
630
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
631
+ default: string;
632
+ };
633
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
634
+ default: number;
635
+ };
636
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
637
+ default: boolean;
638
+ };
639
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
640
+ default: string;
641
+ };
642
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
643
+ default: string;
644
+ };
645
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
646
+ default: boolean;
647
+ };
648
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
649
+ default: number;
650
+ };
651
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
652
+ default: boolean;
653
+ };
654
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
655
+ default: number;
656
+ };
657
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
658
+ default: number;
659
+ };
660
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
661
+ default: boolean;
662
+ };
663
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
664
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
665
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
666
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
667
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
668
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
669
+ default: boolean;
670
+ };
671
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
672
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
673
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
674
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
675
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
676
+ default: import('..').InputValueType;
677
+ };
678
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
679
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
680
+ default: string;
681
+ };
682
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
683
+ default: string;
684
+ };
685
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
686
+ default: number;
687
+ };
688
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
689
+ default: boolean;
690
+ };
691
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
692
+ default: string;
693
+ };
694
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
695
+ default: string;
696
+ };
697
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
698
+ default: boolean;
699
+ };
700
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
701
+ default: number;
702
+ };
703
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
704
+ default: boolean;
705
+ };
706
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
707
+ default: number;
708
+ };
709
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
710
+ default: number;
711
+ };
712
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
713
+ default: boolean;
714
+ };
715
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
716
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
717
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
718
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
719
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
720
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
721
+ default: boolean;
722
+ };
723
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
724
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
725
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
726
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
727
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
728
+ default: import('..').InputValueType;
729
+ };
730
+ }>>>> & {
731
+ default: () => Partial<import('vue').ExtractPropTypes<{
732
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
733
+ default: string;
734
+ };
735
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
736
+ default: string;
737
+ };
738
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
739
+ default: number;
740
+ };
741
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
742
+ default: boolean;
743
+ };
744
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
745
+ default: string;
746
+ };
747
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
748
+ default: string;
749
+ };
750
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
751
+ default: boolean;
752
+ };
753
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
754
+ default: number;
755
+ };
756
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
757
+ default: boolean;
758
+ };
759
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
760
+ default: number;
761
+ };
762
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
763
+ default: number;
764
+ };
765
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
766
+ default: boolean;
767
+ };
768
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
769
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
770
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
771
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
772
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
773
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
774
+ default: boolean;
775
+ };
776
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
777
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
778
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
779
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
780
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
781
+ default: import('..').InputValueType;
782
+ };
783
+ }>>;
784
+ };
785
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
786
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
787
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
788
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
789
+ default: boolean;
790
+ };
791
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
792
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
793
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
794
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
795
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
796
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
797
+ default: boolean;
798
+ };
799
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
800
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
801
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
802
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
803
+ "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
804
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
805
+ options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
806
+ default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
807
+ };
808
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
809
+ default: string;
810
+ };
811
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
812
+ default: boolean;
813
+ };
814
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
815
+ default: number;
816
+ };
817
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
818
+ default: boolean;
819
+ };
820
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
821
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
822
+ default: string;
823
+ };
824
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
825
+ default: string;
826
+ };
827
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
828
+ default: number;
829
+ };
830
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
831
+ default: boolean;
832
+ };
833
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
834
+ default: string;
835
+ };
836
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
837
+ default: string;
838
+ };
839
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
840
+ default: boolean;
841
+ };
842
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
843
+ default: number;
844
+ };
845
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
846
+ default: boolean;
847
+ };
848
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
849
+ default: number;
850
+ };
851
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
852
+ default: number;
853
+ };
854
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
855
+ default: boolean;
856
+ };
857
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
858
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
859
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
860
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
861
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
862
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
863
+ default: boolean;
864
+ };
865
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
866
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
867
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
868
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
869
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
870
+ default: import('..').InputValueType;
871
+ };
872
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
873
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
874
+ default: string;
875
+ };
876
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
877
+ default: string;
878
+ };
879
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
880
+ default: number;
881
+ };
882
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
883
+ default: boolean;
884
+ };
885
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
886
+ default: string;
887
+ };
888
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
889
+ default: string;
890
+ };
891
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
892
+ default: boolean;
893
+ };
894
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
895
+ default: number;
896
+ };
897
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
898
+ default: boolean;
899
+ };
900
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
901
+ default: number;
902
+ };
903
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
904
+ default: number;
905
+ };
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('..').InputValueType> & {
922
+ default: import('..').InputValueType;
923
+ };
924
+ }>>>> & {
925
+ default: () => Partial<import('vue').ExtractPropTypes<{
926
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
927
+ default: string;
928
+ };
929
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
930
+ default: string;
931
+ };
932
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
933
+ default: number;
934
+ };
935
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
936
+ default: boolean;
937
+ };
938
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
939
+ default: string;
940
+ };
941
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
942
+ default: string;
943
+ };
944
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
945
+ default: boolean;
946
+ };
947
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
948
+ default: number;
949
+ };
950
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
951
+ default: boolean;
952
+ };
953
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
954
+ default: number;
955
+ };
956
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
957
+ default: number;
958
+ };
959
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
960
+ default: boolean;
961
+ };
962
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
963
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
964
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
965
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
966
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
967
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
968
+ default: boolean;
969
+ };
970
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
971
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
972
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
973
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
974
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
975
+ default: import('..').InputValueType;
976
+ };
977
+ }>>;
978
+ };
979
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
980
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
981
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
982
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
983
+ default: boolean;
984
+ };
985
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
986
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
987
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
988
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
989
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
990
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
991
+ default: boolean;
992
+ };
993
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
994
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
995
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
996
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
997
+ "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
998
+ }>>>> & {
999
+ default: () => Partial<import('vue').ExtractPropTypes<{
1000
+ options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
1001
+ default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
1002
+ };
1003
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1004
+ default: string;
1005
+ };
1006
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1007
+ default: boolean;
1008
+ };
1009
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1010
+ default: number;
1011
+ };
1012
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1013
+ default: boolean;
1014
+ };
1015
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
1016
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1017
+ default: string;
1018
+ };
1019
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1020
+ default: string;
1021
+ };
1022
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1023
+ default: number;
1024
+ };
1025
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1026
+ default: boolean;
1027
+ };
1028
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1029
+ default: string;
1030
+ };
1031
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1032
+ default: string;
1033
+ };
1034
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1035
+ default: boolean;
1036
+ };
1037
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1038
+ default: number;
1039
+ };
1040
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1041
+ default: boolean;
1042
+ };
1043
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1044
+ default: number;
1045
+ };
1046
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1047
+ default: number;
1048
+ };
1049
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1050
+ default: boolean;
1051
+ };
1052
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1053
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1054
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1055
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1056
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1057
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1058
+ default: boolean;
1059
+ };
1060
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1061
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1062
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1063
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1064
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1065
+ default: import('..').InputValueType;
1066
+ };
1067
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1068
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1069
+ default: string;
1070
+ };
1071
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1072
+ default: string;
1073
+ };
1074
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1075
+ default: number;
1076
+ };
1077
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1078
+ default: boolean;
1079
+ };
1080
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1081
+ default: string;
1082
+ };
1083
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1084
+ default: string;
1085
+ };
1086
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1087
+ default: boolean;
1088
+ };
1089
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1090
+ default: number;
1091
+ };
1092
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1093
+ default: boolean;
1094
+ };
1095
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1096
+ default: number;
1097
+ };
1098
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1099
+ default: number;
1100
+ };
1101
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1102
+ default: boolean;
1103
+ };
1104
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1105
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1106
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1107
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1108
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1109
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1110
+ default: boolean;
1111
+ };
1112
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1113
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1114
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1115
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1116
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1117
+ default: import('..').InputValueType;
1118
+ };
1119
+ }>>>> & {
1120
+ default: () => Partial<import('vue').ExtractPropTypes<{
1121
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1122
+ default: string;
1123
+ };
1124
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1125
+ default: string;
1126
+ };
1127
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1128
+ default: number;
1129
+ };
1130
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1131
+ default: boolean;
1132
+ };
1133
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1134
+ default: string;
1135
+ };
1136
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1137
+ default: string;
1138
+ };
1139
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1140
+ default: boolean;
1141
+ };
1142
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1143
+ default: number;
1144
+ };
1145
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1146
+ default: boolean;
1147
+ };
1148
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1149
+ default: number;
1150
+ };
1151
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1152
+ default: number;
1153
+ };
1154
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1155
+ default: boolean;
1156
+ };
1157
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1158
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1159
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1160
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1161
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1162
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1163
+ default: boolean;
1164
+ };
1165
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1166
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1167
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1168
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1169
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1170
+ default: import('..').InputValueType;
1171
+ };
1172
+ }>>;
1173
+ };
1174
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1175
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1176
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
1177
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1178
+ default: boolean;
1179
+ };
1180
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1181
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1182
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1183
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1184
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1185
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1186
+ default: boolean;
1187
+ };
1188
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1189
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1190
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1191
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1192
+ "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
1193
+ }>>;
1194
+ };
1195
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1196
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1197
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1198
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1199
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1200
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1201
+ default: boolean;
1202
+ };
1203
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1204
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1205
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1206
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1207
+ }>>, {
1208
+ validateForm: boolean;
1209
+ defaultTimezone: boolean;
1210
+ selectProps: Partial<import('vue').ExtractPropTypes<{
1211
+ options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
1212
+ default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
1213
+ };
1214
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1215
+ default: string;
1216
+ };
1217
+ multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1218
+ default: boolean;
1219
+ };
1220
+ max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1221
+ default: number;
1222
+ };
1223
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1224
+ default: boolean;
1225
+ };
1226
+ searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
1227
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1228
+ default: string;
1229
+ };
1230
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1231
+ default: string;
1232
+ };
1233
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1234
+ default: number;
1235
+ };
1236
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1237
+ default: boolean;
1238
+ };
1239
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1240
+ default: string;
1241
+ };
1242
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1243
+ default: string;
1244
+ };
1245
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1246
+ default: boolean;
1247
+ };
1248
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1249
+ default: number;
1250
+ };
1251
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1252
+ default: boolean;
1253
+ };
1254
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1255
+ default: number;
1256
+ };
1257
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1258
+ default: number;
1259
+ };
1260
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1261
+ default: boolean;
1262
+ };
1263
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1264
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1265
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1266
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1267
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1268
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1269
+ default: boolean;
1270
+ };
1271
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1272
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1273
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1274
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1275
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1276
+ default: import('..').InputValueType;
1277
+ };
1278
+ }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1279
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1280
+ default: string;
1281
+ };
1282
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1283
+ default: string;
1284
+ };
1285
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1286
+ default: number;
1287
+ };
1288
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1289
+ default: boolean;
1290
+ };
1291
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1292
+ default: string;
1293
+ };
1294
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1295
+ default: string;
1296
+ };
1297
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1298
+ default: boolean;
1299
+ };
1300
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1301
+ default: number;
1302
+ };
1303
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1304
+ default: boolean;
1305
+ };
1306
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1307
+ default: number;
1308
+ };
1309
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1310
+ default: number;
1311
+ };
1312
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1313
+ default: boolean;
1314
+ };
1315
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1316
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1317
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1318
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1319
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1320
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1321
+ default: boolean;
1322
+ };
1323
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1324
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1325
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1326
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1327
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1328
+ default: import('..').InputValueType;
1329
+ };
1330
+ }>>>> & {
1331
+ default: () => Partial<import('vue').ExtractPropTypes<{
1332
+ type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1333
+ default: string;
1334
+ };
1335
+ placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1336
+ default: string;
1337
+ };
1338
+ maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1339
+ default: number;
1340
+ };
1341
+ showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1342
+ default: boolean;
1343
+ };
1344
+ prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1345
+ default: string;
1346
+ };
1347
+ suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1348
+ default: string;
1349
+ };
1350
+ useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1351
+ default: boolean;
1352
+ };
1353
+ rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1354
+ default: number;
1355
+ };
1356
+ autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1357
+ default: boolean;
1358
+ };
1359
+ cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1360
+ default: number;
1361
+ };
1362
+ enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1363
+ default: number;
1364
+ };
1365
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1366
+ default: boolean;
1367
+ };
1368
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1369
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1370
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1371
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1372
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1373
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1374
+ default: boolean;
1375
+ };
1376
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1377
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1378
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1379
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1380
+ "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1381
+ default: import('..').InputValueType;
1382
+ };
1383
+ }>>;
1384
+ };
1385
+ customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1386
+ optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1387
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
1388
+ clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1389
+ default: boolean;
1390
+ };
1391
+ business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1392
+ size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1393
+ disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1394
+ readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
1395
+ effect: import('vue-types').VueTypeDef<"fill" | "outline">;
1396
+ validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1397
+ default: boolean;
1398
+ };
1399
+ prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1400
+ append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1401
+ prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1402
+ suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1403
+ "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
1404
+ }>>;
1405
+ }>, import('../../../vue-utils/install-utils').InstallOptions>;
1406
+ export * from './src/hooks/props-define';