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