bkui-vue 0.0.1-beta.34 → 0.0.1-beta.340

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 (644) hide show
  1. package/dist/index.cjs.js +173 -0
  2. package/dist/index.esm.js +38318 -0
  3. package/dist/index.umd.js +173 -0
  4. package/dist/style.css +1 -5865
  5. package/dist/style.variable.css +1 -0
  6. package/lib/affix/affix.css +360 -0
  7. package/lib/affix/affix.d.ts +47 -0
  8. package/lib/affix/affix.less +5 -0
  9. package/lib/affix/affix.variable.css +836 -0
  10. package/lib/affix/index.d.ts +143 -0
  11. package/lib/affix/index.js +1 -0
  12. package/lib/alert/alert.css +369 -6
  13. package/lib/alert/alert.less +29 -20
  14. package/lib/alert/alert.variable.css +753 -7
  15. package/lib/alert/index.js +1 -0
  16. package/lib/animate-number/{animate-number.js → index.js} +1 -1
  17. package/lib/backtop/backtop.css +367 -2
  18. package/lib/backtop/backtop.d.ts +2 -2
  19. package/lib/backtop/backtop.less +8 -0
  20. package/lib/backtop/backtop.variable.css +752 -4
  21. package/lib/backtop/index.d.ts +7 -7
  22. package/lib/backtop/index.js +1 -0
  23. package/lib/badge/badge.css +388 -31
  24. package/lib/badge/badge.d.ts +28 -7
  25. package/lib/badge/badge.less +5 -6
  26. package/lib/badge/badge.variable.css +749 -9
  27. package/lib/badge/index.d.ts +68 -18
  28. package/lib/badge/index.js +1 -0
  29. package/lib/breadcrumb/breadcrumb.css +413 -5
  30. package/lib/breadcrumb/breadcrumb.variable.css +795 -4
  31. package/lib/breadcrumb/index.js +1 -0
  32. package/lib/button/button.css +534 -139
  33. package/lib/button/button.d.ts +28 -7
  34. package/lib/button/button.less +74 -41
  35. package/lib/button/button.variable.css +831 -53
  36. package/lib/button/index.d.ts +45 -12
  37. package/lib/button/index.js +1 -0
  38. package/lib/card/card.css +457 -5
  39. package/lib/card/card.d.ts +47 -6
  40. package/lib/card/card.less +50 -2
  41. package/lib/card/card.variable.css +840 -5
  42. package/lib/card/index.d.ts +113 -17
  43. package/lib/card/index.js +1 -0
  44. package/lib/cascader/cascader-panel.d.ts +100 -0
  45. package/lib/cascader/cascader.css +530 -0
  46. package/lib/cascader/cascader.d.ts +303 -0
  47. package/lib/cascader/cascader.less +196 -0
  48. package/lib/cascader/cascader.variable.css +1006 -0
  49. package/lib/cascader/index.d.ts +868 -0
  50. package/lib/cascader/index.js +1 -0
  51. package/lib/cascader/interface.d.ts +51 -0
  52. package/lib/cascader/node.d.ts +31 -0
  53. package/lib/cascader/store.d.ts +23 -0
  54. package/lib/checkbox/checkbox-group.d.ts +16 -0
  55. package/lib/checkbox/checkbox.css +408 -15
  56. package/lib/checkbox/checkbox.d.ts +16 -14
  57. package/lib/checkbox/checkbox.less +79 -31
  58. package/lib/checkbox/checkbox.variable.css +790 -14
  59. package/lib/checkbox/common.d.ts +3 -3
  60. package/lib/checkbox/index.d.ts +40 -23
  61. package/lib/checkbox/index.js +1 -0
  62. package/lib/checkbox/type.d.ts +2 -6
  63. package/lib/code-diff/code-diff.css +357 -0
  64. package/lib/code-diff/code-diff.d.ts +1 -1
  65. package/lib/code-diff/code-diff.variable.css +744 -4
  66. package/lib/code-diff/index.js +1 -0
  67. package/lib/collapse/collapse-panel.d.ts +72 -0
  68. package/lib/collapse/collapse.css +385 -12
  69. package/lib/collapse/collapse.d.ts +11 -52
  70. package/lib/collapse/collapse.less +54 -29
  71. package/lib/collapse/collapse.variable.css +861 -12
  72. package/lib/collapse/index.d.ts +113 -16
  73. package/lib/collapse/index.js +1 -0
  74. package/lib/collapse/props.d.ts +121 -0
  75. package/lib/collapse/utils.d.ts +11 -0
  76. package/lib/color-picker/color-picker.css +632 -0
  77. package/lib/color-picker/color-picker.d.ts +144 -0
  78. package/lib/color-picker/color-picker.less +325 -0
  79. package/lib/color-picker/color-picker.variable.css +1108 -0
  80. package/lib/color-picker/components/color-input.d.ts +42 -0
  81. package/lib/color-picker/components/hue-slider.d.ts +41 -0
  82. package/lib/color-picker/components/input-container.d.ts +42 -0
  83. package/lib/color-picker/components/recommend-colors.d.ts +51 -0
  84. package/lib/color-picker/components/saturation-panel.d.ts +41 -0
  85. package/lib/color-picker/index.d.ts +254 -0
  86. package/lib/color-picker/index.js +1 -0
  87. package/lib/color-picker/utils.d.ts +37 -0
  88. package/lib/components.d.ts +26 -7
  89. package/lib/components.js +1 -0
  90. package/lib/container/col.d.ts +51 -0
  91. package/lib/container/container.css +448 -0
  92. package/lib/container/container.d.ts +83 -0
  93. package/lib/container/container.less +20 -0
  94. package/lib/container/container.variable.css +924 -0
  95. package/lib/container/index.d.ts +223 -0
  96. package/lib/container/index.js +1 -0
  97. package/lib/container/row.d.ts +4 -0
  98. package/lib/date-picker/base/confirm.d.ts +74 -0
  99. package/lib/date-picker/base/date-table.d.ts +102 -0
  100. package/lib/date-picker/base/picker-dropdown.d.ts +73 -0
  101. package/lib/date-picker/base/time-spinner.d.ts +153 -0
  102. package/lib/date-picker/date-picker.css +403 -20
  103. package/lib/date-picker/date-picker.d.ts +44 -15
  104. package/lib/date-picker/date-picker.less +36 -3
  105. package/lib/date-picker/date-picker.variable.css +773 -7
  106. package/lib/date-picker/index.d.ts +110 -43
  107. package/lib/date-picker/index.js +1 -0
  108. package/lib/date-picker/interface.d.ts +11 -1
  109. package/lib/date-picker/panel/date-range.d.ts +309 -0
  110. package/lib/date-picker/panel/date.d.ts +206 -0
  111. package/lib/date-picker/panel/time-range.d.ts +489 -0
  112. package/lib/date-picker/panel/time.d.ts +448 -0
  113. package/lib/date-picker/props.d.ts +53 -3
  114. package/lib/date-picker/time-picker.d.ts +381 -0
  115. package/lib/date-picker/utils.d.ts +22 -2
  116. package/lib/dialog/dialog.css +144 -22
  117. package/lib/dialog/dialog.d.ts +275 -57
  118. package/lib/dialog/dialog.less +97 -23
  119. package/lib/dialog/dialog.variable.css +144 -22
  120. package/lib/dialog/index.d.ts +606 -126
  121. package/lib/dialog/index.js +1 -0
  122. package/lib/dialog/props.d.ts +138 -0
  123. package/lib/directives/ellipsis.d.ts +7 -0
  124. package/lib/directives/index.d.ts +1 -0
  125. package/lib/directives/index.js +2 -0
  126. package/lib/directives/{directives.js.LICENSE.txt → index.js.LICENSE.txt} +0 -0
  127. package/lib/directives/tooltips.d.ts +1 -1
  128. package/lib/dist.index.js +1 -0
  129. package/lib/divider/divider.css +360 -3
  130. package/lib/divider/divider.d.ts +1 -1
  131. package/lib/divider/divider.variable.css +744 -4
  132. package/lib/divider/index.d.ts +4 -4
  133. package/lib/divider/{divider.js → index.js} +0 -0
  134. package/lib/dropdown/const.d.ts +4 -0
  135. package/lib/dropdown/dropdown.css +370 -7
  136. package/lib/dropdown/dropdown.d.ts +42 -11
  137. package/lib/dropdown/dropdown.less +47 -34
  138. package/lib/dropdown/dropdown.variable.css +757 -11
  139. package/lib/dropdown/index.d.ts +71 -10
  140. package/lib/dropdown/index.js +1 -0
  141. package/lib/exception/exception.css +397 -14
  142. package/lib/exception/exception.d.ts +10 -3
  143. package/lib/exception/exception.less +59 -22
  144. package/lib/exception/exception.variable.css +784 -18
  145. package/lib/exception/index.d.ts +23 -8
  146. package/lib/exception/index.js +1 -0
  147. package/lib/exception/typings/index.d.ts +4 -0
  148. package/lib/fixed-navbar/fixed-navbar.css +361 -4
  149. package/lib/fixed-navbar/fixed-navbar.d.ts +16 -2
  150. package/lib/fixed-navbar/fixed-navbar.variable.css +744 -4
  151. package/lib/fixed-navbar/index.d.ts +40 -5
  152. package/lib/fixed-navbar/{fixed-navbar.js → index.js} +1 -1
  153. package/lib/form/compose-form-item.d.ts +16 -0
  154. package/lib/form/form-item.d.ts +30 -8
  155. package/lib/form/form.css +461 -14
  156. package/lib/form/form.d.ts +28 -11
  157. package/lib/form/form.less +153 -45
  158. package/lib/form/form.variable.css +937 -14
  159. package/lib/form/index.d.ts +99 -32
  160. package/lib/form/index.js +1 -0
  161. package/lib/form/type.d.ts +8 -7
  162. package/lib/form/utils.d.ts +2 -0
  163. package/lib/form/validator.d.ts +1 -0
  164. package/lib/icon/angle-double-down-line.js +1 -1
  165. package/lib/icon/angle-double-left-line.js +1 -1
  166. package/lib/icon/angle-double-left.js +1 -1
  167. package/lib/icon/angle-double-right-line.js +1 -1
  168. package/lib/icon/angle-double-right.js +1 -1
  169. package/lib/icon/angle-double-up-line.js +1 -1
  170. package/lib/icon/angle-down-fill.js +1 -1
  171. package/lib/icon/angle-down-line.js +1 -1
  172. package/lib/icon/angle-down.js +1 -1
  173. package/lib/icon/angle-left.js +1 -1
  174. package/lib/icon/angle-right.js +1 -1
  175. package/lib/icon/angle-up-fill.js +1 -1
  176. package/lib/icon/angle-up.js +1 -1
  177. package/lib/icon/archive-fill.d.ts +4 -0
  178. package/lib/icon/archive-fill.js +1 -0
  179. package/lib/icon/arrows-left.js +1 -1
  180. package/lib/icon/arrows-right.js +1 -1
  181. package/lib/icon/audio-fill.d.ts +4 -0
  182. package/lib/icon/audio-fill.js +1 -0
  183. package/lib/icon/bk.js +1 -1
  184. package/lib/icon/circle.js +1 -1
  185. package/lib/icon/close-line.d.ts +4 -0
  186. package/lib/icon/close-line.js +1 -0
  187. package/lib/icon/close.js +1 -1
  188. package/lib/icon/code.js +1 -1
  189. package/lib/icon/cog-shape.js +1 -1
  190. package/lib/icon/collapse-left.js +1 -1
  191. package/lib/icon/copy.js +1 -1
  192. package/lib/icon/data-shape.d.ts +4 -0
  193. package/lib/icon/data-shape.js +1 -0
  194. package/lib/icon/del.d.ts +4 -0
  195. package/lib/icon/del.js +1 -0
  196. package/lib/icon/doc-fill.d.ts +4 -0
  197. package/lib/icon/doc-fill.js +1 -0
  198. package/lib/icon/done.js +1 -1
  199. package/lib/icon/down-shape.js +1 -1
  200. package/lib/icon/down-small.js +1 -1
  201. package/lib/icon/edit-line.d.ts +4 -0
  202. package/lib/icon/edit-line.js +1 -0
  203. package/lib/icon/ellipsis.js +1 -1
  204. package/lib/icon/enlarge-line.d.ts +4 -0
  205. package/lib/icon/enlarge-line.js +1 -0
  206. package/lib/icon/error.js +1 -1
  207. package/lib/icon/excel-fill.d.ts +4 -0
  208. package/lib/icon/excel-fill.js +1 -0
  209. package/lib/icon/exclamation-circle-shape.d.ts +4 -0
  210. package/lib/icon/exclamation-circle-shape.js +1 -0
  211. package/lib/icon/eye.js +1 -1
  212. package/lib/icon/filliscreen-line.d.ts +4 -0
  213. package/lib/icon/filliscreen-line.js +1 -0
  214. package/lib/icon/folder-open.js +1 -1
  215. package/lib/icon/folder-shape-open.js +1 -1
  216. package/lib/icon/folder-shape.js +1 -1
  217. package/lib/icon/folder.js +1 -1
  218. package/lib/icon/funnel.d.ts +4 -0
  219. package/lib/icon/funnel.js +1 -0
  220. package/lib/icon/help-document-fill.js +1 -1
  221. package/lib/icon/help-fill.js +1 -1
  222. package/lib/icon/help.js +1 -1
  223. package/lib/icon/image-fill.d.ts +4 -0
  224. package/lib/icon/img-error.d.ts +4 -0
  225. package/lib/icon/img-error.js +1 -0
  226. package/lib/icon/img-placehoulder.d.ts +4 -0
  227. package/lib/icon/img-placehoulder.js +1 -0
  228. package/lib/icon/index.d.ts +27 -1
  229. package/lib/icon/index.js +1 -0
  230. package/lib/icon/info-line.js +1 -1
  231. package/lib/icon/info.js +1 -1
  232. package/lib/icon/left-shape.js +1 -1
  233. package/lib/icon/left-turn-line.d.ts +4 -0
  234. package/lib/icon/left-turn-line.js +1 -0
  235. package/lib/icon/narrow-line.d.ts +4 -0
  236. package/lib/icon/narrow-line.js +1 -0
  237. package/lib/icon/original .d.ts +4 -0
  238. package/lib/icon/original .js +1 -0
  239. package/lib/icon/pdf-fill.d.ts +4 -0
  240. package/lib/icon/pdf-fill.js +1 -0
  241. package/lib/icon/play-shape.js +1 -1
  242. package/lib/icon/plus.js +1 -1
  243. package/lib/icon/ppt-fill.d.ts +4 -0
  244. package/lib/icon/ppt-fill.js +1 -0
  245. package/lib/icon/qq.js +1 -1
  246. package/lib/icon/right-shape.js +1 -1
  247. package/lib/icon/right-turn-line.d.ts +4 -0
  248. package/lib/icon/right-turn-line.js +1 -0
  249. package/lib/icon/search.js +1 -1
  250. package/lib/icon/share.js +1 -1
  251. package/lib/icon/spinner.js +1 -1
  252. package/lib/icon/success.js +1 -1
  253. package/lib/icon/switcher-loading.js +1 -1
  254. package/lib/icon/text-file.js +1 -1
  255. package/lib/icon/text-fill.d.ts +4 -0
  256. package/lib/icon/text-fill.js +1 -0
  257. package/lib/icon/transfer.d.ts +4 -0
  258. package/lib/icon/transfer.js +1 -0
  259. package/lib/icon/tree-application-shape.js +1 -1
  260. package/lib/icon/unfull-screen.d.ts +4 -0
  261. package/lib/icon/unfull-screen.js +1 -0
  262. package/lib/icon/unvisible.js +1 -1
  263. package/lib/icon/up-shape.js +1 -1
  264. package/lib/icon/upload.d.ts +4 -0
  265. package/lib/icon/upload.js +1 -0
  266. package/lib/icon/video-fill.d.ts +4 -0
  267. package/lib/icon/video-fill.js +1 -0
  268. package/lib/icon/warn.js +1 -1
  269. package/lib/icon/weixin.js +1 -1
  270. package/lib/image/image-viewer.css +142 -0
  271. package/lib/image/image-viewer.d.ts +73 -0
  272. package/lib/image/image-viewer.less +168 -0
  273. package/lib/image/image-viewer.variable.css +142 -0
  274. package/lib/image/image.css +37 -0
  275. package/lib/image/image.d.ts +93 -0
  276. package/lib/image/image.less +44 -0
  277. package/lib/image/image.variable.css +37 -0
  278. package/lib/image/index.d.ts +246 -0
  279. package/lib/image/index.js +1 -0
  280. package/lib/image/props.d.ts +71 -0
  281. package/lib/index.d.ts +1 -1
  282. package/lib/index.js +1 -0
  283. package/lib/info-box/index.d.ts +6 -0
  284. package/lib/info-box/index.js +1 -0
  285. package/lib/info-box/info-box.css +37 -0
  286. package/lib/info-box/info-box.d.ts +26 -0
  287. package/lib/info-box/info-box.less +50 -0
  288. package/lib/info-box/info-box.variable.css +37 -0
  289. package/lib/input/index.d.ts +171 -60
  290. package/lib/input/index.js +1 -0
  291. package/lib/input/input.css +600 -41
  292. package/lib/input/input.d.ts +116 -16
  293. package/lib/input/input.less +158 -17
  294. package/lib/input/input.variable.css +960 -18
  295. package/lib/link/index.d.ts +4 -4
  296. package/lib/link/{link.js → index.js} +0 -0
  297. package/lib/link/link.css +381 -24
  298. package/lib/link/link.d.ts +1 -1
  299. package/lib/link/link.less +16 -14
  300. package/lib/link/link.variable.css +756 -16
  301. package/lib/loading/index.d.ts +81 -4
  302. package/lib/loading/index.js +1 -0
  303. package/lib/loading/loading.css +450 -50
  304. package/lib/loading/loading.d.ts +55 -1
  305. package/lib/loading/loading.less +17 -22
  306. package/lib/loading/loading.variable.css +821 -38
  307. package/lib/menu/index.d.ts +16 -24
  308. package/lib/menu/index.js +1 -0
  309. package/lib/menu/menu.css +426 -18
  310. package/lib/menu/menu.d.ts +7 -16
  311. package/lib/menu/menu.variable.css +795 -4
  312. package/lib/menu/submenu.css +357 -0
  313. package/lib/menu/submenu.variable.css +744 -4
  314. package/lib/message/index.js +1 -0
  315. package/lib/message/message.css +397 -19
  316. package/lib/message/message.less +28 -3
  317. package/lib/message/message.variable.css +769 -8
  318. package/lib/message/messageConstructor.d.ts +43 -7
  319. package/lib/modal/index.d.ts +508 -78
  320. package/lib/modal/index.js +1 -0
  321. package/lib/modal/modal.css +63 -1
  322. package/lib/modal/modal.d.ts +194 -30
  323. package/lib/modal/modal.less +36 -1
  324. package/lib/modal/modal.variable.css +63 -1
  325. package/lib/modal/props.mixin.d.ts +82 -13
  326. package/lib/navigation/index.d.ts +310 -1
  327. package/lib/navigation/index.js +1 -0
  328. package/lib/navigation/navigation.css +360 -3
  329. package/lib/navigation/navigation.d.ts +10 -1
  330. package/lib/navigation/navigation.less +1 -1
  331. package/lib/navigation/navigation.variable.css +745 -5
  332. package/lib/notify/index.js +1 -0
  333. package/lib/notify/notify.css +386 -9
  334. package/lib/notify/notify.less +27 -4
  335. package/lib/notify/notify.variable.css +768 -8
  336. package/lib/notify/notifyConstructor.d.ts +51 -7
  337. package/lib/pagination/index.d.ts +28 -13
  338. package/lib/pagination/index.js +1 -0
  339. package/lib/pagination/pagination.css +412 -29
  340. package/lib/pagination/pagination.d.ts +14 -4
  341. package/lib/pagination/pagination.less +59 -30
  342. package/lib/pagination/pagination.variable.css +798 -32
  343. package/lib/plugin-popover/index.d.ts +27 -0
  344. package/lib/plugin-popover/index.js +1 -0
  345. package/lib/plugins/index.d.ts +1 -0
  346. package/lib/plugins/index.js +1 -0
  347. package/lib/popover/arrow.d.ts +2 -0
  348. package/lib/popover/const.d.ts +16 -0
  349. package/lib/popover/content.d.ts +24 -0
  350. package/lib/popover/index.d.ts +357 -75
  351. package/lib/popover/index.js +1 -0
  352. package/lib/popover/plugin-popover.d.ts +12 -0
  353. package/lib/popover/popover.css +364 -47
  354. package/lib/popover/popover.d.ts +155 -33
  355. package/lib/popover/popover.less +19 -66
  356. package/lib/popover/popover.variable.css +751 -51
  357. package/lib/popover/props.d.ts +75 -25
  358. package/lib/popover/reference.d.ts +2 -0
  359. package/lib/popover/root.d.ts +16 -0
  360. package/lib/popover/use-floating.d.ts +31 -0
  361. package/lib/popover/use-platform.d.ts +30 -0
  362. package/lib/popover/use-popover-init.d.ts +22 -0
  363. package/lib/popover/use-popper-id.d.ts +6 -0
  364. package/lib/popover/utils.d.ts +2 -0
  365. package/lib/popover2/index.d.ts +44 -0
  366. package/lib/popover2/index.js +1 -0
  367. package/lib/popover2/popover.d.ts +2 -0
  368. package/lib/preset.js +1 -0
  369. package/lib/process/index.d.ts +9 -9
  370. package/lib/process/index.js +1 -0
  371. package/lib/process/process.css +381 -11
  372. package/lib/process/process.d.ts +2 -2
  373. package/lib/process/process.less +17 -0
  374. package/lib/process/process.variable.css +757 -4
  375. package/lib/progress/index.d.ts +10 -10
  376. package/lib/progress/index.js +1 -0
  377. package/lib/progress/progress.css +412 -4
  378. package/lib/progress/progress.d.ts +3 -3
  379. package/lib/progress/progress.variable.css +795 -4
  380. package/lib/radio/common.d.ts +5 -5
  381. package/lib/radio/index.d.ts +29 -18
  382. package/lib/radio/index.js +1 -0
  383. package/lib/radio/radio-button.d.ts +7 -8
  384. package/lib/radio/radio-group.d.ts +16 -0
  385. package/lib/radio/radio.css +418 -60
  386. package/lib/radio/radio.d.ts +4 -4
  387. package/lib/radio/radio.less +177 -173
  388. package/lib/radio/radio.variable.css +795 -54
  389. package/lib/radio/type.d.ts +9 -4
  390. package/lib/rate/index.d.ts +24 -1
  391. package/lib/rate/index.js +1 -0
  392. package/lib/rate/rate.d.ts +11 -0
  393. package/lib/rate/star.d.ts +1 -1
  394. package/lib/resize-layout/index.d.ts +7 -7
  395. package/lib/resize-layout/index.js +1 -0
  396. package/lib/resize-layout/resize-layout.css +360 -15
  397. package/lib/resize-layout/resize-layout.d.ts +2 -2
  398. package/lib/resize-layout/resize-layout.less +3 -19
  399. package/lib/resize-layout/resize-layout.variable.css +747 -19
  400. package/lib/search-select/index.d.ts +681 -0
  401. package/lib/search-select/index.js +1 -0
  402. package/lib/search-select/input.d.ts +85 -0
  403. package/lib/search-select/menu.d.ts +83 -0
  404. package/lib/search-select/search-select.css +780 -0
  405. package/lib/search-select/search-select.d.ts +273 -0
  406. package/lib/search-select/search-select.less +375 -0
  407. package/lib/search-select/search-select.variable.css +1256 -0
  408. package/lib/search-select/selected.d.ts +137 -0
  409. package/lib/search-select/utils.d.ts +79 -0
  410. package/lib/select/common.d.ts +5 -12
  411. package/lib/select/index.d.ts +1188 -564
  412. package/lib/select/index.js +1 -0
  413. package/lib/select/option.d.ts +16 -4
  414. package/lib/select/optionGroup.d.ts +1 -1
  415. package/lib/select/select.css +553 -121
  416. package/lib/select/select.d.ts +447 -115
  417. package/lib/select/select.less +317 -197
  418. package/lib/select/select.variable.css +931 -116
  419. package/lib/select/selectTagInput.d.ts +93 -0
  420. package/lib/select/type.d.ts +21 -13
  421. package/lib/shared/dom.d.ts +3 -0
  422. package/lib/shared/hooks/use-form-item.d.ts +2 -0
  423. package/lib/shared/hooks/use-form.d.ts +2 -0
  424. package/lib/shared/index.d.ts +23 -0
  425. package/lib/shared/index.js +1 -0
  426. package/lib/shared/mask-manager.d.ts +6 -2
  427. package/lib/shared/pop-manager.d.ts +8 -4
  428. package/lib/shared/popover.d.ts +6 -2
  429. package/lib/shared/token.d.ts +4 -0
  430. package/lib/shared/utils.d.ts +13 -0
  431. package/lib/shared/vue-types.d.ts +4 -0
  432. package/lib/sideslider/index.d.ts +387 -72
  433. package/lib/sideslider/index.js +1 -0
  434. package/lib/sideslider/sideslider.css +413 -11
  435. package/lib/sideslider/sideslider.d.ts +180 -32
  436. package/lib/sideslider/sideslider.less +72 -13
  437. package/lib/sideslider/sideslider.variable.css +799 -14
  438. package/lib/slider/index.d.ts +414 -1
  439. package/lib/slider/index.js +1 -0
  440. package/lib/slider/slider.css +361 -4
  441. package/lib/slider/slider.d.ts +3 -3
  442. package/lib/slider/slider.variable.css +744 -4
  443. package/lib/steps/index.d.ts +4 -4
  444. package/lib/steps/index.js +1 -0
  445. package/lib/steps/steps.css +405 -36
  446. package/lib/steps/steps.d.ts +1 -1
  447. package/lib/steps/steps.less +24 -3
  448. package/lib/steps/steps.variable.css +759 -7
  449. package/lib/styles/index.d.ts +7 -1
  450. package/lib/styles/mixins/clearfix.css +8 -0
  451. package/lib/styles/mixins/clearfix.less +10 -0
  452. package/lib/styles/mixins/clearfix.variable.css +8 -0
  453. package/lib/styles/mixins/mixins.css +51 -0
  454. package/lib/styles/mixins/mixins.less +2 -0
  455. package/lib/styles/mixins/mixins.variable.css +51 -0
  456. package/lib/styles/mixins/scroll.css +374 -0
  457. package/lib/styles/mixins/scroll.less +22 -0
  458. package/lib/styles/mixins/scroll.variable.css +850 -0
  459. package/lib/styles/reset.css +36 -0
  460. package/lib/styles/reset.less +26 -0
  461. package/lib/styles/reset.variable.css +36 -0
  462. package/lib/styles/themes/themes.css +357 -0
  463. package/lib/styles/themes/themes.less +622 -90
  464. package/lib/styles/themes/themes.variable.css +357 -0
  465. package/lib/swiper/index.js +1 -0
  466. package/lib/switcher/index.d.ts +34 -11
  467. package/lib/switcher/index.js +1 -0
  468. package/lib/switcher/switcher.css +431 -23
  469. package/lib/switcher/switcher.d.ts +15 -4
  470. package/lib/switcher/switcher.less +5 -26
  471. package/lib/switcher/switcher.variable.css +801 -10
  472. package/lib/tab/index.d.ts +22 -25
  473. package/lib/tab/index.js +1 -0
  474. package/lib/tab/props.d.ts +3 -0
  475. package/lib/tab/tab-nav.d.ts +11 -7
  476. package/lib/tab/tab-panel.d.ts +4 -4
  477. package/lib/tab/tab.css +400 -20
  478. package/lib/tab/tab.d.ts +5 -6
  479. package/lib/tab/tab.less +29 -18
  480. package/lib/tab/tab.variable.css +767 -4
  481. package/lib/table/components/index.d.ts +3 -0
  482. package/lib/table/components/table-cell.d.ts +38 -0
  483. package/lib/table/components/table-column.d.ts +142 -0
  484. package/lib/table/components/table-row.d.ts +2 -0
  485. package/lib/table/const.d.ts +109 -1
  486. package/lib/table/index.d.ts +764 -30
  487. package/lib/table/index.js +1 -0
  488. package/lib/table/plugins/body-empty.d.ts +40 -0
  489. package/lib/table/plugins/col-group.d.ts +38 -0
  490. package/lib/table/plugins/common.d.ts +6 -0
  491. package/lib/table/plugins/head-filter.css +429 -0
  492. package/lib/table/plugins/head-filter.d.ts +26 -0
  493. package/lib/table/plugins/head-filter.less +93 -0
  494. package/lib/table/plugins/head-filter.variable.css +905 -0
  495. package/lib/table/plugins/head-sort.css +382 -0
  496. package/lib/table/plugins/head-sort.d.ts +22 -0
  497. package/lib/table/plugins/head-sort.less +31 -0
  498. package/lib/table/plugins/head-sort.variable.css +858 -0
  499. package/lib/table/plugins/index.d.ts +5 -0
  500. package/lib/table/plugins/settings.css +502 -0
  501. package/lib/table/plugins/settings.d.ts +37 -0
  502. package/lib/table/plugins/settings.less +179 -0
  503. package/lib/table/plugins/settings.variable.css +978 -0
  504. package/lib/table/plugins/use-active-columns.d.ts +16 -0
  505. package/lib/table/plugins/use-column-resize.d.ts +15 -0
  506. package/lib/table/plugins/use-fixed-column.d.ts +12 -0
  507. package/lib/table/plugins/use-pagination.d.ts +16 -0
  508. package/lib/table/plugins/use-scroll-loading.d.ts +5 -0
  509. package/lib/table/props.d.ts +282 -6
  510. package/lib/table/render.d.ts +43 -3
  511. package/lib/table/table.css +1540 -29
  512. package/lib/table/table.d.ts +191 -12
  513. package/lib/table/table.less +254 -25
  514. package/lib/table/table.variable.css +2341 -90
  515. package/lib/table/use-column.d.ts +11 -0
  516. package/lib/table/use-common.d.ts +97 -0
  517. package/lib/table/utils.d.ts +65 -9
  518. package/lib/table-column/index.d.ts +336 -0
  519. package/lib/table-column/index.js +1 -0
  520. package/lib/tag/index.d.ts +7 -7
  521. package/lib/tag/index.js +1 -0
  522. package/lib/tag/tag.css +408 -18
  523. package/lib/tag/tag.d.ts +2 -2
  524. package/lib/tag/tag.less +46 -10
  525. package/lib/tag/tag.variable.css +790 -17
  526. package/lib/tag-input/common.d.ts +13 -1
  527. package/lib/tag-input/index.d.ts +1274 -1
  528. package/lib/tag-input/index.js +1 -0
  529. package/lib/tag-input/list-tag-render.d.ts +0 -3
  530. package/lib/tag-input/tag-input.css +399 -41
  531. package/lib/tag-input/tag-input.d.ts +224 -30
  532. package/lib/tag-input/tag-input.less +102 -101
  533. package/lib/tag-input/tag-input.variable.css +768 -27
  534. package/lib/tag-input/tag-props.d.ts +106 -5
  535. package/lib/tag-input/tag-render.d.ts +0 -3
  536. package/lib/time-picker/index.d.ts +904 -0
  537. package/lib/time-picker/index.js +1 -0
  538. package/lib/time-picker/time-picker.css +572 -0
  539. package/lib/time-picker/time-picker.less +260 -0
  540. package/lib/time-picker/time-picker.variable.css +1048 -0
  541. package/lib/timeline/index.d.ts +6 -6
  542. package/lib/timeline/index.js +1 -0
  543. package/lib/timeline/timeline.css +392 -28
  544. package/lib/timeline/timeline.d.ts +1 -1
  545. package/lib/timeline/timeline.less +22 -9
  546. package/lib/timeline/timeline.variable.css +760 -13
  547. package/lib/transfer/const.d.ts +5 -0
  548. package/lib/transfer/index.d.ts +164 -150
  549. package/lib/transfer/index.js +1 -0
  550. package/lib/transfer/props.d.ts +54 -0
  551. package/lib/transfer/transfer.css +451 -91
  552. package/lib/transfer/transfer.d.ts +70 -95
  553. package/lib/transfer/transfer.less +93 -113
  554. package/lib/transfer/transfer.variable.css +838 -95
  555. package/lib/tree/constant.d.ts +57 -0
  556. package/lib/tree/index.d.ts +417 -57
  557. package/lib/tree/index.js +1 -0
  558. package/lib/tree/props.d.ts +124 -0
  559. package/lib/tree/tree.css +534 -9
  560. package/lib/tree/tree.d.ts +190 -18
  561. package/lib/tree/tree.less +54 -3
  562. package/lib/tree/tree.variable.css +1278 -13
  563. package/lib/tree/use-empty.d.ts +6 -0
  564. package/lib/tree/use-node-action.d.ts +12 -0
  565. package/lib/tree/use-node-async.d.ts +5 -0
  566. package/lib/tree/use-node-attribute.d.ts +33 -0
  567. package/lib/tree/use-node-drag.d.ts +3 -0
  568. package/lib/tree/use-search.d.ts +11 -0
  569. package/lib/tree/use-tree-init.d.ts +15 -0
  570. package/lib/tree/util.d.ts +4 -6
  571. package/lib/upload/index.d.ts +566 -0
  572. package/lib/upload/index.js +1 -0
  573. package/lib/upload/props.d.ts +111 -0
  574. package/lib/upload/upload-list.d.ts +47 -0
  575. package/lib/upload/upload-trigger.d.ts +51 -0
  576. package/lib/upload/upload.css +782 -0
  577. package/lib/upload/upload.d.ts +246 -0
  578. package/lib/upload/upload.less +464 -0
  579. package/lib/upload/upload.type.d.ts +78 -0
  580. package/lib/upload/upload.variable.css +1258 -0
  581. package/lib/upload/use-ajax-upload.d.ts +3 -0
  582. package/lib/upload/use-file-handler.d.ts +44 -0
  583. package/lib/virtual-render/index.d.ts +27 -4
  584. package/lib/virtual-render/index.js +1 -0
  585. package/lib/virtual-render/props.d.ts +10 -0
  586. package/lib/virtual-render/use-tag-render.d.ts +7 -0
  587. package/lib/virtual-render/v-virtual-render.d.ts +0 -1
  588. package/lib/virtual-render/virtual-render.css +374 -24
  589. package/lib/virtual-render/virtual-render.d.ts +12 -1
  590. package/lib/virtual-render/virtual-render.less +2 -31
  591. package/lib/virtual-render/virtual-render.variable.css +1207 -24
  592. package/lib/volar.components.d.ts +101 -0
  593. package/package.json +61 -42
  594. package/README_EN.md +0 -93
  595. package/dist/bkui-vue.cjs.js +0 -20212
  596. package/dist/bkui-vue.esm.js +0 -20159
  597. package/dist/bkui-vue.umd.js +0 -20215
  598. package/lib/alert/alert.js +0 -1
  599. package/lib/backtop/backtop.js +0 -1
  600. package/lib/badge/badge.js +0 -1
  601. package/lib/breadcrumb/breadcrumb.js +0 -1
  602. package/lib/button/button.js +0 -1
  603. package/lib/card/card.js +0 -1
  604. package/lib/checkbox/checkbox.js +0 -1
  605. package/lib/code-diff/code-diff.js +0 -1
  606. package/lib/collapse/collapse.js +0 -1
  607. package/lib/date-picker/date-picker.js +0 -1
  608. package/lib/dialog/dialog.js +0 -1
  609. package/lib/directives/directives.js +0 -2
  610. package/lib/dropdown/dropdown.js +0 -1
  611. package/lib/exception/exception.js +0 -1
  612. package/lib/form/common.d.ts +0 -3
  613. package/lib/form/form.js +0 -1
  614. package/lib/icon/icon.js +0 -1
  615. package/lib/input/input.js +0 -1
  616. package/lib/loading/loading.js +0 -1
  617. package/lib/menu/menu.js +0 -1
  618. package/lib/message/message.js +0 -1
  619. package/lib/modal/modal.js +0 -1
  620. package/lib/navigation/navigation.js +0 -1
  621. package/lib/notify/notify.js +0 -1
  622. package/lib/pagination/pagination.js +0 -1
  623. package/lib/popover/popover.js +0 -1
  624. package/lib/process/process.js +0 -1
  625. package/lib/progress/progress.js +0 -1
  626. package/lib/radio/radio.js +0 -1
  627. package/lib/rate/rate.js +0 -1
  628. package/lib/resize-layout/resize-layout.js +0 -1
  629. package/lib/select/select.js +0 -1
  630. package/lib/shared/shared.js +0 -1
  631. package/lib/sideslider/sideslider.js +0 -1
  632. package/lib/slider/slider.js +0 -1
  633. package/lib/steps/steps.js +0 -1
  634. package/lib/swiper/swiper.js +0 -1
  635. package/lib/switcher/switcher.js +0 -1
  636. package/lib/tab/tab.js +0 -1
  637. package/lib/table/table.js +0 -1
  638. package/lib/tag/tag.js +0 -1
  639. package/lib/tag-input/tag-input.js +0 -1
  640. package/lib/timeline/timeline.js +0 -1
  641. package/lib/transfer/transfer.js +0 -1
  642. package/lib/tree/tree.js +0 -1
  643. package/lib/use-form.d.ts +0 -3
  644. package/lib/virtual-render/virtual-render.js +0 -1
@@ -5,26 +5,43 @@ declare const BkSelect: {
5
5
  $: import("vue").ComponentInternalInstance;
6
6
  $data: {};
7
7
  $props: Partial<{
8
+ showOnInit: boolean;
9
+ disabled: boolean;
8
10
  placeholder: string;
11
+ list: unknown[];
9
12
  size: string;
10
13
  multiple: boolean;
11
- disabled: boolean;
12
14
  loading: boolean;
13
- showOnInit: boolean;
14
15
  clearable: boolean;
15
16
  behavior: string;
16
- popoverMinWidth: number;
17
+ withValidate: boolean;
18
+ showSelectedIcon: boolean;
19
+ tagTheme: string;
17
20
  filterable: boolean;
21
+ allowCreate: boolean;
22
+ collapseTags: boolean;
23
+ popoverMinWidth: number;
24
+ idKey: string;
18
25
  remoteMethod: (...args: any[]) => any;
19
26
  scrollHeight: number;
27
+ popoverOptions: {
28
+ [key: string]: any;
29
+ };
20
30
  showSelectAll: boolean;
21
31
  multipleMode: string;
22
- tagTheme: string;
23
- collapseTags: boolean;
32
+ autoHeight: boolean;
24
33
  noDataText: string;
25
34
  noMatchText: string;
26
35
  loadingText: string;
36
+ searchPlaceholder: string;
27
37
  selectAllText: string;
38
+ scrollLoading: boolean;
39
+ customContent: boolean;
40
+ displayKey: string;
41
+ inputSearch: boolean;
42
+ enableVirtualRender: boolean;
43
+ allowEmptyValues: unknown[];
44
+ autoFocus: boolean;
28
45
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
29
46
  modelValue: import("vue-types").VueTypeValidableDef<any>;
30
47
  multiple: import("vue-types").VueTypeValidableDef<boolean> & {
@@ -92,6 +109,11 @@ declare const BkSelect: {
92
109
  } & {
93
110
  default: boolean;
94
111
  };
112
+ autoHeight: import("vue-types").VueTypeValidableDef<boolean> & {
113
+ default: boolean;
114
+ } & {
115
+ default: boolean;
116
+ };
95
117
  noDataText: import("vue-types").VueTypeValidableDef<string> & {
96
118
  default: string;
97
119
  } & {
@@ -112,17 +134,96 @@ declare const BkSelect: {
112
134
  } & {
113
135
  default: string;
114
136
  };
137
+ searchPlaceholder: import("vue-types").VueTypeValidableDef<string> & {
138
+ default: string;
139
+ } & {
140
+ default: string;
141
+ };
115
142
  selectAllText: import("vue-types").VueTypeValidableDef<string> & {
116
143
  default: string;
117
144
  } & {
118
145
  default: string;
119
146
  };
147
+ scrollLoading: import("vue-types").VueTypeValidableDef<boolean> & {
148
+ default: boolean;
149
+ } & {
150
+ default: boolean;
151
+ };
152
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
153
+ default: boolean;
154
+ } & {
155
+ default: boolean;
156
+ };
157
+ popoverOptions: import("vue-types").VueTypeValidableDef<{
158
+ [key: string]: any;
159
+ }> & {
160
+ default: () => {
161
+ [key: string]: any;
162
+ };
163
+ } & {
164
+ default: () => {
165
+ [key: string]: any;
166
+ };
167
+ };
168
+ customContent: import("vue-types").VueTypeValidableDef<boolean> & {
169
+ default: boolean;
170
+ } & {
171
+ default: boolean;
172
+ };
173
+ list: import("vue-types").VueTypeValidableDef<unknown[]> & {
174
+ default: () => unknown[];
175
+ } & {
176
+ default: () => unknown[];
177
+ };
178
+ idKey: import("vue-types").VueTypeValidableDef<string> & {
179
+ default: string;
180
+ } & {
181
+ default: string;
182
+ };
183
+ displayKey: import("vue-types").VueTypeValidableDef<string> & {
184
+ default: string;
185
+ } & {
186
+ default: string;
187
+ };
188
+ withValidate: import("vue-types").VueTypeValidableDef<boolean> & {
189
+ default: boolean;
190
+ } & {
191
+ default: boolean;
192
+ };
193
+ showSelectedIcon: import("vue-types").VueTypeValidableDef<boolean> & {
194
+ default: boolean;
195
+ } & {
196
+ default: boolean;
197
+ };
198
+ inputSearch: import("vue-types").VueTypeValidableDef<boolean> & {
199
+ default: boolean;
200
+ } & {
201
+ default: boolean;
202
+ };
203
+ enableVirtualRender: import("vue-types").VueTypeValidableDef<boolean> & {
204
+ default: boolean;
205
+ } & {
206
+ default: boolean;
207
+ };
208
+ allowEmptyValues: import("vue-types").VueTypeValidableDef<unknown[]> & {
209
+ default: () => unknown[];
210
+ } & {
211
+ default: () => unknown[];
212
+ };
213
+ autoFocus: import("vue-types").VueTypeValidableDef<boolean> & {
214
+ default: boolean;
215
+ } & {
216
+ default: boolean;
217
+ };
120
218
  }>> & {
219
+ onFocus?: (...args: any[]) => any;
220
+ onBlur?: (...args: any[]) => any;
121
221
  onChange?: (...args: any[]) => any;
122
222
  "onUpdate:modelValue"?: (...args: any[]) => any;
123
223
  onClear?: (...args: any[]) => any;
124
224
  onToggle?: (...args: any[]) => any;
125
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placeholder" | "size" | "multiple" | "disabled" | "loading" | "showOnInit" | "clearable" | "behavior" | "popoverMinWidth" | "filterable" | "remoteMethod" | "scrollHeight" | "showSelectAll" | "multipleMode" | "tagTheme" | "collapseTags" | "noDataText" | "noMatchText" | "loadingText" | "selectAllText">;
225
+ "onScroll-end"?: (...args: any[]) => any;
226
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "showOnInit" | "disabled" | "placeholder" | "list" | "size" | "multiple" | "loading" | "clearable" | "behavior" | "withValidate" | "showSelectedIcon" | "tagTheme" | "filterable" | "allowCreate" | "collapseTags" | "popoverMinWidth" | "idKey" | "remoteMethod" | "scrollHeight" | "popoverOptions" | "showSelectAll" | "multipleMode" | "autoHeight" | "noDataText" | "noMatchText" | "loadingText" | "searchPlaceholder" | "selectAllText" | "scrollLoading" | "customContent" | "displayKey" | "inputSearch" | "enableVirtualRender" | "allowEmptyValues" | "autoFocus">;
126
227
  $attrs: {
127
228
  [x: string]: unknown;
128
229
  };
@@ -134,7 +235,7 @@ declare const BkSelect: {
134
235
  }>;
135
236
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
136
237
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
137
- $emit: (event: "change" | "toggle" | "clear" | "update:modelValue", ...args: any[]) => void;
238
+ $emit: (event: "focus" | "blur" | "change" | "toggle" | "clear" | "update:modelValue" | "scroll-end", ...args: any[]) => void;
138
239
  $el: any;
139
240
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
140
241
  modelValue: import("vue-types").VueTypeValidableDef<any>;
@@ -203,6 +304,11 @@ declare const BkSelect: {
203
304
  } & {
204
305
  default: boolean;
205
306
  };
307
+ autoHeight: import("vue-types").VueTypeValidableDef<boolean> & {
308
+ default: boolean;
309
+ } & {
310
+ default: boolean;
311
+ };
206
312
  noDataText: import("vue-types").VueTypeValidableDef<string> & {
207
313
  default: string;
208
314
  } & {
@@ -223,31 +329,161 @@ declare const BkSelect: {
223
329
  } & {
224
330
  default: string;
225
331
  };
332
+ searchPlaceholder: import("vue-types").VueTypeValidableDef<string> & {
333
+ default: string;
334
+ } & {
335
+ default: string;
336
+ };
226
337
  selectAllText: import("vue-types").VueTypeValidableDef<string> & {
227
338
  default: string;
228
339
  } & {
229
340
  default: string;
230
341
  };
342
+ scrollLoading: import("vue-types").VueTypeValidableDef<boolean> & {
343
+ default: boolean;
344
+ } & {
345
+ default: boolean;
346
+ };
347
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
348
+ default: boolean;
349
+ } & {
350
+ default: boolean;
351
+ };
352
+ popoverOptions: import("vue-types").VueTypeValidableDef<{
353
+ [key: string]: any;
354
+ }> & {
355
+ default: () => {
356
+ [key: string]: any;
357
+ };
358
+ } & {
359
+ default: () => {
360
+ [key: string]: any;
361
+ };
362
+ };
363
+ customContent: import("vue-types").VueTypeValidableDef<boolean> & {
364
+ default: boolean;
365
+ } & {
366
+ default: boolean;
367
+ };
368
+ list: import("vue-types").VueTypeValidableDef<unknown[]> & {
369
+ default: () => unknown[];
370
+ } & {
371
+ default: () => unknown[];
372
+ };
373
+ idKey: import("vue-types").VueTypeValidableDef<string> & {
374
+ default: string;
375
+ } & {
376
+ default: string;
377
+ };
378
+ displayKey: import("vue-types").VueTypeValidableDef<string> & {
379
+ default: string;
380
+ } & {
381
+ default: string;
382
+ };
383
+ withValidate: import("vue-types").VueTypeValidableDef<boolean> & {
384
+ default: boolean;
385
+ } & {
386
+ default: boolean;
387
+ };
388
+ showSelectedIcon: import("vue-types").VueTypeValidableDef<boolean> & {
389
+ default: boolean;
390
+ } & {
391
+ default: boolean;
392
+ };
393
+ inputSearch: import("vue-types").VueTypeValidableDef<boolean> & {
394
+ default: boolean;
395
+ } & {
396
+ default: boolean;
397
+ };
398
+ enableVirtualRender: import("vue-types").VueTypeValidableDef<boolean> & {
399
+ default: boolean;
400
+ } & {
401
+ default: boolean;
402
+ };
403
+ allowEmptyValues: import("vue-types").VueTypeValidableDef<unknown[]> & {
404
+ default: () => unknown[];
405
+ } & {
406
+ default: () => unknown[];
407
+ };
408
+ autoFocus: import("vue-types").VueTypeValidableDef<boolean> & {
409
+ default: boolean;
410
+ } & {
411
+ default: boolean;
412
+ };
231
413
  }>> & {
414
+ onFocus?: (...args: any[]) => any;
415
+ onBlur?: (...args: any[]) => any;
232
416
  onChange?: (...args: any[]) => any;
233
417
  "onUpdate:modelValue"?: (...args: any[]) => any;
234
418
  onClear?: (...args: any[]) => any;
235
419
  onToggle?: (...args: any[]) => any;
420
+ "onScroll-end"?: (...args: any[]) => any;
236
421
  }, {
237
- options: import("vue").Ref<Set<{
422
+ selected: import("vue").Ref<{
423
+ value: string;
424
+ label: string;
425
+ }[]>;
426
+ isInput: import("vue").ComputedRef<boolean>;
427
+ options: import("vue").ComputedRef<import("./type").OptionInstanceType[]>;
428
+ isDisabled: import("vue").ComputedRef<boolean>;
429
+ selectedLabel: import("vue").ComputedRef<string[]>;
430
+ isPopoverShow: import("vue").Ref<boolean>;
431
+ isHover: import("vue").Ref<boolean>;
432
+ popperWidth: import("vue").Ref<string | number>;
433
+ inputRef: import("vue").Ref<HTMLElement>;
434
+ triggerRef: import("vue").Ref<HTMLElement>;
435
+ contentRef: import("vue").Ref<HTMLElement>;
436
+ searchRef: import("vue").Ref<HTMLElement>;
437
+ selectTagInputRef: import("vue").Ref<{
238
438
  $: import("vue").ComponentInternalInstance;
239
439
  $data: {};
240
440
  $props: Partial<{
241
441
  disabled: boolean;
442
+ placeholder: string;
443
+ selected: import("./type").ISelected[];
444
+ tagTheme: string;
445
+ filterable: boolean;
446
+ allowCreate: boolean;
447
+ collapseTags: boolean;
242
448
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
243
- value: import("vue-types").VueTypeDef<string | number | boolean>;
244
- label: import("vue-types").VueTypeDef<string | number>;
449
+ selected: {
450
+ type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
451
+ default: () => any[];
452
+ };
453
+ tagTheme: import("vue-types").VueTypeDef<string> & {
454
+ default: string;
455
+ };
456
+ placeholder: import("vue-types").VueTypeValidableDef<string> & {
457
+ default: string;
458
+ } & {
459
+ default: string;
460
+ };
461
+ filterable: import("vue-types").VueTypeValidableDef<boolean> & {
462
+ default: boolean;
463
+ } & {
464
+ default: boolean;
465
+ };
466
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
467
+ default: boolean;
468
+ } & {
469
+ default: boolean;
470
+ };
245
471
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
246
472
  default: boolean;
247
473
  } & {
248
474
  default: boolean;
249
475
  };
250
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
476
+ modelValue: import("vue-types").VueTypeValidableDef<any>;
477
+ collapseTags: import("vue-types").VueTypeValidableDef<boolean> & {
478
+ default: boolean;
479
+ } & {
480
+ default: boolean;
481
+ };
482
+ }>> & {
483
+ onEnter?: (...args: any[]) => any;
484
+ "onUpdate:modelValue"?: (...args: any[]) => any;
485
+ onRemove?: (...args: any[]) => any;
486
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "placeholder" | "selected" | "tagTheme" | "filterable" | "allowCreate" | "collapseTags">;
251
487
  $attrs: {
252
488
  [x: string]: unknown;
253
489
  };
@@ -259,23 +495,63 @@ declare const BkSelect: {
259
495
  }>;
260
496
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
261
497
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
262
- $emit: (event: string, ...args: any[]) => void;
498
+ $emit: (event: "update:modelValue" | "remove" | "enter", ...args: any[]) => void;
263
499
  $el: any;
264
500
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
265
- value: import("vue-types").VueTypeDef<string | number | boolean>;
266
- label: import("vue-types").VueTypeDef<string | number>;
501
+ selected: {
502
+ type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
503
+ default: () => any[];
504
+ };
505
+ tagTheme: import("vue-types").VueTypeDef<string> & {
506
+ default: string;
507
+ };
508
+ placeholder: import("vue-types").VueTypeValidableDef<string> & {
509
+ default: string;
510
+ } & {
511
+ default: string;
512
+ };
513
+ filterable: import("vue-types").VueTypeValidableDef<boolean> & {
514
+ default: boolean;
515
+ } & {
516
+ default: boolean;
517
+ };
518
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
519
+ default: boolean;
520
+ } & {
521
+ default: boolean;
522
+ };
267
523
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
268
524
  default: boolean;
269
525
  } & {
270
526
  default: boolean;
271
527
  };
272
- }>>, {
273
- selected: import("vue").ComputedRef<boolean>;
274
- multiple: import("vue").ComputedRef<boolean>;
275
- handleOptionClick: () => void;
276
- visible: import("vue").Ref<boolean>;
277
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
528
+ modelValue: import("vue-types").VueTypeValidableDef<any>;
529
+ collapseTags: import("vue-types").VueTypeValidableDef<boolean> & {
530
+ default: boolean;
531
+ } & {
532
+ default: boolean;
533
+ };
534
+ }>> & {
535
+ onEnter?: (...args: any[]) => any;
536
+ "onUpdate:modelValue"?: (...args: any[]) => any;
537
+ onRemove?: (...args: any[]) => any;
538
+ }, {
539
+ select: import("./type").ISelectContext;
540
+ overflowTagIndex: import("vue").Ref<number>;
541
+ value: any;
542
+ inputRef: import("vue").Ref<HTMLElement>;
543
+ handleRemoveTag: (val: string) => void;
544
+ focus: () => void;
545
+ handleInput: (e: any) => void;
546
+ handleKeydown: (e: any) => void;
547
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "remove" | "enter")[], string, {
278
548
  disabled: boolean;
549
+ placeholder: string;
550
+ selected: import("./type").ISelected[];
551
+ tagTheme: string;
552
+ filterable: boolean;
553
+ allowCreate: boolean;
554
+ collapseTags: boolean;
279
555
  }> & {
280
556
  beforeCreate?: (() => void) | (() => void)[];
281
557
  created?: (() => void) | (() => void)[];
@@ -297,26 +573,55 @@ declare const BkSelect: {
297
573
  $nextTick: typeof import("vue").nextTick;
298
574
  $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
299
575
  } & Readonly<import("vue").ExtractPropTypes<{
300
- value: import("vue-types").VueTypeDef<string | number | boolean>;
301
- label: import("vue-types").VueTypeDef<string | number>;
576
+ selected: {
577
+ type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
578
+ default: () => any[];
579
+ };
580
+ tagTheme: import("vue-types").VueTypeDef<string> & {
581
+ default: string;
582
+ };
583
+ placeholder: import("vue-types").VueTypeValidableDef<string> & {
584
+ default: string;
585
+ } & {
586
+ default: string;
587
+ };
588
+ filterable: import("vue-types").VueTypeValidableDef<boolean> & {
589
+ default: boolean;
590
+ } & {
591
+ default: boolean;
592
+ };
593
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
594
+ default: boolean;
595
+ } & {
596
+ default: boolean;
597
+ };
302
598
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
303
599
  default: boolean;
304
600
  } & {
305
601
  default: boolean;
306
602
  };
307
- }>> & import("vue").ShallowUnwrapRef<{
308
- selected: import("vue").ComputedRef<boolean>;
309
- multiple: import("vue").ComputedRef<boolean>;
310
- handleOptionClick: () => void;
311
- visible: import("vue").Ref<boolean>;
312
- }> & {} & {} & import("vue").ComponentCustomProperties>>;
313
- isDisabled: import("vue").ComputedRef<boolean>;
314
- selectedLabel: import("vue").ComputedRef<(string | number)[]>;
315
- isPopoverShow: import("vue").Ref<boolean>;
316
- isHover: import("vue").Ref<boolean>;
317
- popperWidth: import("vue").Ref<string | number>;
603
+ modelValue: import("vue-types").VueTypeValidableDef<any>;
604
+ collapseTags: import("vue-types").VueTypeValidableDef<boolean> & {
605
+ default: boolean;
606
+ } & {
607
+ default: boolean;
608
+ };
609
+ }>> & {
610
+ onEnter?: (...args: any[]) => any;
611
+ "onUpdate:modelValue"?: (...args: any[]) => any;
612
+ onRemove?: (...args: any[]) => any;
613
+ } & import("vue").ShallowUnwrapRef<{
614
+ select: import("./type").ISelectContext;
615
+ overflowTagIndex: import("vue").Ref<number>;
616
+ value: any;
617
+ inputRef: import("vue").Ref<HTMLElement>;
618
+ handleRemoveTag: (val: string) => void;
619
+ focus: () => void;
620
+ handleInput: (e: any) => void;
621
+ handleKeydown: (e: any) => void;
622
+ }> & {} & {} & import("vue").ComponentCustomProperties>;
623
+ virtualRenderRef: import("vue").Ref<any>;
318
624
  popoverRef: import("vue").Ref<any>;
319
- inputRef: import("vue").Ref<HTMLElement>;
320
625
  searchLoading: import("vue").Ref<boolean>;
321
626
  isOptionsEmpty: import("vue").ComputedRef<boolean>;
322
627
  isSearchEmpty: import("vue").ComputedRef<boolean>;
@@ -325,192 +630,164 @@ declare const BkSelect: {
325
630
  curContentText: import("vue").ComputedRef<string>;
326
631
  isGroup: import("vue").ComputedRef<boolean>;
327
632
  searchKey: import("vue").Ref<string>;
633
+ isShowSelectAll: import("vue").ComputedRef<boolean>;
634
+ virtualHeight: import("vue").ComputedRef<number>;
635
+ filterList: import("vue").ComputedRef<unknown[]>;
636
+ isCollapseTags: import("vue").ComputedRef<boolean>;
637
+ popoverConfig: import("vue").ComputedRef<Partial<Readonly<import("vue").ExtractPropTypes<{
638
+ onAfterHidden: FunctionConstructor;
639
+ onAfterShow: FunctionConstructor;
640
+ isShow: import("vue-types").VueTypeValidableDef<boolean> & {
641
+ default: boolean;
642
+ } & {
643
+ default: boolean;
644
+ };
645
+ always: import("vue-types").VueTypeValidableDef<boolean> & {
646
+ default: boolean;
647
+ } & {
648
+ default: boolean;
649
+ };
650
+ disabled: import("vue-types").VueTypeValidableDef<boolean> & {
651
+ default: boolean;
652
+ } & {
653
+ default: boolean;
654
+ };
655
+ width: import("vue-types").VueTypeDef<string | number> & {
656
+ default: string | number;
657
+ };
658
+ height: import("vue-types").VueTypeDef<string | number> & {
659
+ default: string | number;
660
+ };
661
+ content: import("vue-types").VueTypeDef<string | number> & {
662
+ default: string | number;
663
+ };
664
+ placement: import("vue-types").VueTypeDef<string> & {
665
+ default: string;
666
+ };
667
+ theme: import("vue-types").VueTypeValidableDef<string> & {
668
+ default: string;
669
+ } & {
670
+ default: string;
671
+ };
672
+ trigger: import("vue-types").VueTypeValidableDef<string> & {
673
+ default: string;
674
+ } & {
675
+ default: string;
676
+ };
677
+ arrow: import("vue-types").VueTypeValidableDef<boolean> & {
678
+ default: boolean;
679
+ } & {
680
+ default: boolean;
681
+ };
682
+ padding: import("vue-types").VueTypeValidableDef<number> & {
683
+ default: number;
684
+ } & {
685
+ default: number;
686
+ };
687
+ offset: import("vue-types").VueTypeValidableDef<number> & {
688
+ default: number;
689
+ } & {
690
+ default: number;
691
+ };
692
+ boundary: import("vue-types").VueTypeDef<string | HTMLElement>;
693
+ zIndex: import("vue-types").VueTypeValidableDef<number> & {
694
+ default: number;
695
+ } & {
696
+ default: number;
697
+ };
698
+ disableTeleport: import("vue-types").VueTypeValidableDef<boolean> & {
699
+ default: boolean;
700
+ } & {
701
+ default: boolean;
702
+ };
703
+ autoPlacement: import("vue-types").VueTypeValidableDef<boolean> & {
704
+ default: boolean;
705
+ } & {
706
+ default: boolean;
707
+ };
708
+ autoVisibility: import("vue-types").VueTypeValidableDef<boolean> & {
709
+ default: boolean;
710
+ } & {
711
+ default: boolean;
712
+ };
713
+ disableOutsideClick: import("vue-types").VueTypeValidableDef<boolean> & {
714
+ default: boolean;
715
+ } & {
716
+ default: boolean;
717
+ };
718
+ disableTransform: import("vue-types").VueTypeValidableDef<boolean> & {
719
+ default: boolean;
720
+ } & {
721
+ default: boolean;
722
+ };
723
+ reference: import("vue-types").VueTypeValidableDef<any> & {
724
+ default: any;
725
+ };
726
+ modifiers: import("vue-types").VueTypeValidableDef<unknown[]> & {
727
+ default: () => unknown[];
728
+ } & {
729
+ default: () => unknown[];
730
+ };
731
+ }>>>>;
732
+ focusInput: () => void;
328
733
  setHover: () => void;
329
734
  cancelHover: () => void;
330
735
  handleFocus: () => void;
331
- handleInput: (e: any) => void;
736
+ handleBlur: () => void;
332
737
  handleTogglePopover: () => void;
333
738
  handleClear: (e: Event) => void;
334
- onPopoverFirstUpdate: import("@bkui-vue/shared").OnFirstUpdateFnType;
335
739
  hidePopover: () => void;
336
740
  showPopover: () => void;
337
741
  handleToggleAll: () => void;
338
- handleOptionSelected: (option: {
339
- $: import("vue").ComponentInternalInstance;
340
- $data: {};
341
- $props: Partial<{
342
- disabled: boolean;
343
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
344
- value: import("vue-types").VueTypeDef<string | number | boolean>;
345
- label: import("vue-types").VueTypeDef<string | number>;
346
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
347
- default: boolean;
348
- } & {
349
- default: boolean;
350
- };
351
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
352
- $attrs: {
353
- [x: string]: unknown;
354
- };
355
- $refs: {
356
- [x: string]: unknown;
357
- };
358
- $slots: Readonly<{
359
- [name: string]: import("vue").Slot;
360
- }>;
361
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
362
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
363
- $emit: (event: string, ...args: any[]) => void;
364
- $el: any;
365
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
366
- value: import("vue-types").VueTypeDef<string | number | boolean>;
367
- label: import("vue-types").VueTypeDef<string | number>;
368
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
369
- default: boolean;
370
- } & {
371
- default: boolean;
372
- };
373
- }>>, {
374
- selected: import("vue").ComputedRef<boolean>;
375
- multiple: import("vue").ComputedRef<boolean>;
376
- handleOptionClick: () => void;
377
- visible: import("vue").Ref<boolean>;
378
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
379
- disabled: boolean;
380
- }> & {
381
- beforeCreate?: (() => void) | (() => void)[];
382
- created?: (() => void) | (() => void)[];
383
- beforeMount?: (() => void) | (() => void)[];
384
- mounted?: (() => void) | (() => void)[];
385
- beforeUpdate?: (() => void) | (() => void)[];
386
- updated?: (() => void) | (() => void)[];
387
- activated?: (() => void) | (() => void)[];
388
- deactivated?: (() => void) | (() => void)[];
389
- beforeDestroy?: (() => void) | (() => void)[];
390
- beforeUnmount?: (() => void) | (() => void)[];
391
- destroyed?: (() => void) | (() => void)[];
392
- unmounted?: (() => void) | (() => void)[];
393
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
394
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
395
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
396
- };
397
- $forceUpdate: () => void;
398
- $nextTick: typeof import("vue").nextTick;
399
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
400
- } & Readonly<import("vue").ExtractPropTypes<{
401
- value: import("vue-types").VueTypeDef<string | number | boolean>;
402
- label: import("vue-types").VueTypeDef<string | number>;
403
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
404
- default: boolean;
405
- } & {
406
- default: boolean;
407
- };
408
- }>> & import("vue").ShallowUnwrapRef<{
409
- selected: import("vue").ComputedRef<boolean>;
410
- multiple: import("vue").ComputedRef<boolean>;
411
- handleOptionClick: () => void;
412
- visible: import("vue").Ref<boolean>;
413
- }> & {} & {} & import("vue").ComponentCustomProperties) => void;
414
- handleClickOutside: () => void;
415
- currentPlaceholder: import("vue").Ref<string>;
416
- selectedOptions: import("vue").Ref<Set<{
417
- $: import("vue").ComponentInternalInstance;
418
- $data: {};
419
- $props: Partial<{
420
- disabled: boolean;
421
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
422
- value: import("vue-types").VueTypeDef<string | number | boolean>;
423
- label: import("vue-types").VueTypeDef<string | number>;
424
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
425
- default: boolean;
426
- } & {
427
- default: boolean;
428
- };
429
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
430
- $attrs: {
431
- [x: string]: unknown;
432
- };
433
- $refs: {
434
- [x: string]: unknown;
435
- };
436
- $slots: Readonly<{
437
- [name: string]: import("vue").Slot;
438
- }>;
439
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
440
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
441
- $emit: (event: string, ...args: any[]) => void;
442
- $el: any;
443
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
444
- value: import("vue-types").VueTypeDef<string | number | boolean>;
445
- label: import("vue-types").VueTypeDef<string | number>;
446
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
447
- default: boolean;
448
- } & {
449
- default: boolean;
450
- };
451
- }>>, {
452
- selected: import("vue").ComputedRef<boolean>;
453
- multiple: import("vue").ComputedRef<boolean>;
454
- handleOptionClick: () => void;
455
- visible: import("vue").Ref<boolean>;
456
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
457
- disabled: boolean;
458
- }> & {
459
- beforeCreate?: (() => void) | (() => void)[];
460
- created?: (() => void) | (() => void)[];
461
- beforeMount?: (() => void) | (() => void)[];
462
- mounted?: (() => void) | (() => void)[];
463
- beforeUpdate?: (() => void) | (() => void)[];
464
- updated?: (() => void) | (() => void)[];
465
- activated?: (() => void) | (() => void)[];
466
- deactivated?: (() => void) | (() => void)[];
467
- beforeDestroy?: (() => void) | (() => void)[];
468
- beforeUnmount?: (() => void) | (() => void)[];
469
- destroyed?: (() => void) | (() => void)[];
470
- unmounted?: (() => void) | (() => void)[];
471
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
472
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
473
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
474
- };
475
- $forceUpdate: () => void;
476
- $nextTick: typeof import("vue").nextTick;
477
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
478
- } & Readonly<import("vue").ExtractPropTypes<{
479
- value: import("vue-types").VueTypeDef<string | number | boolean>;
480
- label: import("vue-types").VueTypeDef<string | number>;
481
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
482
- default: boolean;
483
- } & {
484
- default: boolean;
485
- };
486
- }>> & import("vue").ShallowUnwrapRef<{
487
- selected: import("vue").ComputedRef<boolean>;
488
- multiple: import("vue").ComputedRef<boolean>;
489
- handleOptionClick: () => void;
490
- visible: import("vue").Ref<boolean>;
491
- }> & {} & {} & import("vue").ComponentCustomProperties>>;
492
- currentSelectedLabel: import("vue").Ref<string>;
493
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "toggle" | "clear" | "update:modelValue")[], string, {
742
+ handleOptionSelected: (option: import("./type").OptionInstanceType) => void;
743
+ handleClickOutside: ({ event }: {
744
+ event: any;
745
+ }) => void;
746
+ handleScroll: (e: any) => void;
747
+ handleDeleteTag: (val: string) => void;
748
+ handleInputChange: (value: any) => void;
749
+ handleInputEnter: (val: string | number, e: Event) => void;
750
+ handleKeydown: (e: any) => void;
751
+ handleSelectedAllOptionMouseEnter: () => void;
752
+ handlePopoverShow: () => void;
753
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "blur" | "change" | "toggle" | "clear" | "update:modelValue" | "scroll-end")[], string, {
754
+ showOnInit: boolean;
755
+ disabled: boolean;
494
756
  placeholder: string;
757
+ list: unknown[];
495
758
  size: string;
496
759
  multiple: boolean;
497
- disabled: boolean;
498
760
  loading: boolean;
499
- showOnInit: boolean;
500
761
  clearable: boolean;
501
762
  behavior: string;
502
- popoverMinWidth: number;
763
+ withValidate: boolean;
764
+ showSelectedIcon: boolean;
765
+ tagTheme: string;
503
766
  filterable: boolean;
767
+ allowCreate: boolean;
768
+ collapseTags: boolean;
769
+ popoverMinWidth: number;
770
+ idKey: string;
504
771
  remoteMethod: (...args: any[]) => any;
505
772
  scrollHeight: number;
773
+ popoverOptions: {
774
+ [key: string]: any;
775
+ };
506
776
  showSelectAll: boolean;
507
777
  multipleMode: string;
508
- tagTheme: string;
509
- collapseTags: boolean;
778
+ autoHeight: boolean;
510
779
  noDataText: string;
511
780
  noMatchText: string;
512
781
  loadingText: string;
782
+ searchPlaceholder: string;
513
783
  selectAllText: string;
784
+ scrollLoading: boolean;
785
+ customContent: boolean;
786
+ displayKey: string;
787
+ inputSearch: boolean;
788
+ enableVirtualRender: boolean;
789
+ allowEmptyValues: unknown[];
790
+ autoFocus: boolean;
514
791
  }> & {
515
792
  beforeCreate?: (() => void) | (() => void)[];
516
793
  created?: (() => void) | (() => void)[];
@@ -598,6 +875,11 @@ declare const BkSelect: {
598
875
  } & {
599
876
  default: boolean;
600
877
  };
878
+ autoHeight: import("vue-types").VueTypeValidableDef<boolean> & {
879
+ default: boolean;
880
+ } & {
881
+ default: boolean;
882
+ };
601
883
  noDataText: import("vue-types").VueTypeValidableDef<string> & {
602
884
  default: string;
603
885
  } & {
@@ -618,31 +900,161 @@ declare const BkSelect: {
618
900
  } & {
619
901
  default: string;
620
902
  };
903
+ searchPlaceholder: import("vue-types").VueTypeValidableDef<string> & {
904
+ default: string;
905
+ } & {
906
+ default: string;
907
+ };
621
908
  selectAllText: import("vue-types").VueTypeValidableDef<string> & {
622
909
  default: string;
623
910
  } & {
624
911
  default: string;
625
912
  };
913
+ scrollLoading: import("vue-types").VueTypeValidableDef<boolean> & {
914
+ default: boolean;
915
+ } & {
916
+ default: boolean;
917
+ };
918
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
919
+ default: boolean;
920
+ } & {
921
+ default: boolean;
922
+ };
923
+ popoverOptions: import("vue-types").VueTypeValidableDef<{
924
+ [key: string]: any;
925
+ }> & {
926
+ default: () => {
927
+ [key: string]: any;
928
+ };
929
+ } & {
930
+ default: () => {
931
+ [key: string]: any;
932
+ };
933
+ };
934
+ customContent: import("vue-types").VueTypeValidableDef<boolean> & {
935
+ default: boolean;
936
+ } & {
937
+ default: boolean;
938
+ };
939
+ list: import("vue-types").VueTypeValidableDef<unknown[]> & {
940
+ default: () => unknown[];
941
+ } & {
942
+ default: () => unknown[];
943
+ };
944
+ idKey: import("vue-types").VueTypeValidableDef<string> & {
945
+ default: string;
946
+ } & {
947
+ default: string;
948
+ };
949
+ displayKey: import("vue-types").VueTypeValidableDef<string> & {
950
+ default: string;
951
+ } & {
952
+ default: string;
953
+ };
954
+ withValidate: import("vue-types").VueTypeValidableDef<boolean> & {
955
+ default: boolean;
956
+ } & {
957
+ default: boolean;
958
+ };
959
+ showSelectedIcon: import("vue-types").VueTypeValidableDef<boolean> & {
960
+ default: boolean;
961
+ } & {
962
+ default: boolean;
963
+ };
964
+ inputSearch: import("vue-types").VueTypeValidableDef<boolean> & {
965
+ default: boolean;
966
+ } & {
967
+ default: boolean;
968
+ };
969
+ enableVirtualRender: import("vue-types").VueTypeValidableDef<boolean> & {
970
+ default: boolean;
971
+ } & {
972
+ default: boolean;
973
+ };
974
+ allowEmptyValues: import("vue-types").VueTypeValidableDef<unknown[]> & {
975
+ default: () => unknown[];
976
+ } & {
977
+ default: () => unknown[];
978
+ };
979
+ autoFocus: import("vue-types").VueTypeValidableDef<boolean> & {
980
+ default: boolean;
981
+ } & {
982
+ default: boolean;
983
+ };
626
984
  }>> & {
985
+ onFocus?: (...args: any[]) => any;
986
+ onBlur?: (...args: any[]) => any;
627
987
  onChange?: (...args: any[]) => any;
628
988
  "onUpdate:modelValue"?: (...args: any[]) => any;
629
989
  onClear?: (...args: any[]) => any;
630
990
  onToggle?: (...args: any[]) => any;
991
+ "onScroll-end"?: (...args: any[]) => any;
631
992
  } & import("vue").ShallowUnwrapRef<{
632
- options: import("vue").Ref<Set<{
993
+ selected: import("vue").Ref<{
994
+ value: string;
995
+ label: string;
996
+ }[]>;
997
+ isInput: import("vue").ComputedRef<boolean>;
998
+ options: import("vue").ComputedRef<import("./type").OptionInstanceType[]>;
999
+ isDisabled: import("vue").ComputedRef<boolean>;
1000
+ selectedLabel: import("vue").ComputedRef<string[]>;
1001
+ isPopoverShow: import("vue").Ref<boolean>;
1002
+ isHover: import("vue").Ref<boolean>;
1003
+ popperWidth: import("vue").Ref<string | number>;
1004
+ inputRef: import("vue").Ref<HTMLElement>;
1005
+ triggerRef: import("vue").Ref<HTMLElement>;
1006
+ contentRef: import("vue").Ref<HTMLElement>;
1007
+ searchRef: import("vue").Ref<HTMLElement>;
1008
+ selectTagInputRef: import("vue").Ref<{
633
1009
  $: import("vue").ComponentInternalInstance;
634
1010
  $data: {};
635
1011
  $props: Partial<{
636
1012
  disabled: boolean;
1013
+ placeholder: string;
1014
+ selected: import("./type").ISelected[];
1015
+ tagTheme: string;
1016
+ filterable: boolean;
1017
+ allowCreate: boolean;
1018
+ collapseTags: boolean;
637
1019
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
638
- value: import("vue-types").VueTypeDef<string | number | boolean>;
639
- label: import("vue-types").VueTypeDef<string | number>;
1020
+ selected: {
1021
+ type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
1022
+ default: () => any[];
1023
+ };
1024
+ tagTheme: import("vue-types").VueTypeDef<string> & {
1025
+ default: string;
1026
+ };
1027
+ placeholder: import("vue-types").VueTypeValidableDef<string> & {
1028
+ default: string;
1029
+ } & {
1030
+ default: string;
1031
+ };
1032
+ filterable: import("vue-types").VueTypeValidableDef<boolean> & {
1033
+ default: boolean;
1034
+ } & {
1035
+ default: boolean;
1036
+ };
1037
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
1038
+ default: boolean;
1039
+ } & {
1040
+ default: boolean;
1041
+ };
640
1042
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
641
1043
  default: boolean;
642
1044
  } & {
643
1045
  default: boolean;
644
1046
  };
645
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
1047
+ modelValue: import("vue-types").VueTypeValidableDef<any>;
1048
+ collapseTags: import("vue-types").VueTypeValidableDef<boolean> & {
1049
+ default: boolean;
1050
+ } & {
1051
+ default: boolean;
1052
+ };
1053
+ }>> & {
1054
+ onEnter?: (...args: any[]) => any;
1055
+ "onUpdate:modelValue"?: (...args: any[]) => any;
1056
+ onRemove?: (...args: any[]) => any;
1057
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "placeholder" | "selected" | "tagTheme" | "filterable" | "allowCreate" | "collapseTags">;
646
1058
  $attrs: {
647
1059
  [x: string]: unknown;
648
1060
  };
@@ -654,23 +1066,63 @@ declare const BkSelect: {
654
1066
  }>;
655
1067
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
656
1068
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
657
- $emit: (event: string, ...args: any[]) => void;
1069
+ $emit: (event: "update:modelValue" | "remove" | "enter", ...args: any[]) => void;
658
1070
  $el: any;
659
1071
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
660
- value: import("vue-types").VueTypeDef<string | number | boolean>;
661
- label: import("vue-types").VueTypeDef<string | number>;
1072
+ selected: {
1073
+ type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
1074
+ default: () => any[];
1075
+ };
1076
+ tagTheme: import("vue-types").VueTypeDef<string> & {
1077
+ default: string;
1078
+ };
1079
+ placeholder: import("vue-types").VueTypeValidableDef<string> & {
1080
+ default: string;
1081
+ } & {
1082
+ default: string;
1083
+ };
1084
+ filterable: import("vue-types").VueTypeValidableDef<boolean> & {
1085
+ default: boolean;
1086
+ } & {
1087
+ default: boolean;
1088
+ };
1089
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
1090
+ default: boolean;
1091
+ } & {
1092
+ default: boolean;
1093
+ };
662
1094
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
663
1095
  default: boolean;
664
1096
  } & {
665
1097
  default: boolean;
666
1098
  };
667
- }>>, {
668
- selected: import("vue").ComputedRef<boolean>;
669
- multiple: import("vue").ComputedRef<boolean>;
670
- handleOptionClick: () => void;
671
- visible: import("vue").Ref<boolean>;
672
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
1099
+ modelValue: import("vue-types").VueTypeValidableDef<any>;
1100
+ collapseTags: import("vue-types").VueTypeValidableDef<boolean> & {
1101
+ default: boolean;
1102
+ } & {
1103
+ default: boolean;
1104
+ };
1105
+ }>> & {
1106
+ onEnter?: (...args: any[]) => any;
1107
+ "onUpdate:modelValue"?: (...args: any[]) => any;
1108
+ onRemove?: (...args: any[]) => any;
1109
+ }, {
1110
+ select: import("./type").ISelectContext;
1111
+ overflowTagIndex: import("vue").Ref<number>;
1112
+ value: any;
1113
+ inputRef: import("vue").Ref<HTMLElement>;
1114
+ handleRemoveTag: (val: string) => void;
1115
+ focus: () => void;
1116
+ handleInput: (e: any) => void;
1117
+ handleKeydown: (e: any) => void;
1118
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "remove" | "enter")[], string, {
673
1119
  disabled: boolean;
1120
+ placeholder: string;
1121
+ selected: import("./type").ISelected[];
1122
+ tagTheme: string;
1123
+ filterable: boolean;
1124
+ allowCreate: boolean;
1125
+ collapseTags: boolean;
674
1126
  }> & {
675
1127
  beforeCreate?: (() => void) | (() => void)[];
676
1128
  created?: (() => void) | (() => void)[];
@@ -692,26 +1144,55 @@ declare const BkSelect: {
692
1144
  $nextTick: typeof import("vue").nextTick;
693
1145
  $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
694
1146
  } & Readonly<import("vue").ExtractPropTypes<{
695
- value: import("vue-types").VueTypeDef<string | number | boolean>;
696
- label: import("vue-types").VueTypeDef<string | number>;
1147
+ selected: {
1148
+ type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
1149
+ default: () => any[];
1150
+ };
1151
+ tagTheme: import("vue-types").VueTypeDef<string> & {
1152
+ default: string;
1153
+ };
1154
+ placeholder: import("vue-types").VueTypeValidableDef<string> & {
1155
+ default: string;
1156
+ } & {
1157
+ default: string;
1158
+ };
1159
+ filterable: import("vue-types").VueTypeValidableDef<boolean> & {
1160
+ default: boolean;
1161
+ } & {
1162
+ default: boolean;
1163
+ };
1164
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
1165
+ default: boolean;
1166
+ } & {
1167
+ default: boolean;
1168
+ };
697
1169
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
698
1170
  default: boolean;
699
1171
  } & {
700
1172
  default: boolean;
701
1173
  };
702
- }>> & import("vue").ShallowUnwrapRef<{
703
- selected: import("vue").ComputedRef<boolean>;
704
- multiple: import("vue").ComputedRef<boolean>;
705
- handleOptionClick: () => void;
706
- visible: import("vue").Ref<boolean>;
707
- }> & {} & {} & import("vue").ComponentCustomProperties>>;
708
- isDisabled: import("vue").ComputedRef<boolean>;
709
- selectedLabel: import("vue").ComputedRef<(string | number)[]>;
710
- isPopoverShow: import("vue").Ref<boolean>;
711
- isHover: import("vue").Ref<boolean>;
712
- popperWidth: import("vue").Ref<string | number>;
1174
+ modelValue: import("vue-types").VueTypeValidableDef<any>;
1175
+ collapseTags: import("vue-types").VueTypeValidableDef<boolean> & {
1176
+ default: boolean;
1177
+ } & {
1178
+ default: boolean;
1179
+ };
1180
+ }>> & {
1181
+ onEnter?: (...args: any[]) => any;
1182
+ "onUpdate:modelValue"?: (...args: any[]) => any;
1183
+ onRemove?: (...args: any[]) => any;
1184
+ } & import("vue").ShallowUnwrapRef<{
1185
+ select: import("./type").ISelectContext;
1186
+ overflowTagIndex: import("vue").Ref<number>;
1187
+ value: any;
1188
+ inputRef: import("vue").Ref<HTMLElement>;
1189
+ handleRemoveTag: (val: string) => void;
1190
+ focus: () => void;
1191
+ handleInput: (e: any) => void;
1192
+ handleKeydown: (e: any) => void;
1193
+ }> & {} & {} & import("vue").ComponentCustomProperties>;
1194
+ virtualRenderRef: import("vue").Ref<any>;
713
1195
  popoverRef: import("vue").Ref<any>;
714
- inputRef: import("vue").Ref<HTMLElement>;
715
1196
  searchLoading: import("vue").Ref<boolean>;
716
1197
  isOptionsEmpty: import("vue").ComputedRef<boolean>;
717
1198
  isSearchEmpty: import("vue").ComputedRef<boolean>;
@@ -720,171 +1201,126 @@ declare const BkSelect: {
720
1201
  curContentText: import("vue").ComputedRef<string>;
721
1202
  isGroup: import("vue").ComputedRef<boolean>;
722
1203
  searchKey: import("vue").Ref<string>;
723
- setHover: () => void;
724
- cancelHover: () => void;
725
- handleFocus: () => void;
726
- handleInput: (e: any) => void;
727
- handleTogglePopover: () => void;
728
- handleClear: (e: Event) => void;
729
- onPopoverFirstUpdate: import("@bkui-vue/shared").OnFirstUpdateFnType;
730
- hidePopover: () => void;
731
- showPopover: () => void;
732
- handleToggleAll: () => void;
733
- handleOptionSelected: (option: {
734
- $: import("vue").ComponentInternalInstance;
735
- $data: {};
736
- $props: Partial<{
737
- disabled: boolean;
738
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
739
- value: import("vue-types").VueTypeDef<string | number | boolean>;
740
- label: import("vue-types").VueTypeDef<string | number>;
741
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
742
- default: boolean;
743
- } & {
744
- default: boolean;
745
- };
746
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
747
- $attrs: {
748
- [x: string]: unknown;
1204
+ isShowSelectAll: import("vue").ComputedRef<boolean>;
1205
+ virtualHeight: import("vue").ComputedRef<number>;
1206
+ filterList: import("vue").ComputedRef<unknown[]>;
1207
+ isCollapseTags: import("vue").ComputedRef<boolean>;
1208
+ popoverConfig: import("vue").ComputedRef<Partial<Readonly<import("vue").ExtractPropTypes<{
1209
+ onAfterHidden: FunctionConstructor;
1210
+ onAfterShow: FunctionConstructor;
1211
+ isShow: import("vue-types").VueTypeValidableDef<boolean> & {
1212
+ default: boolean;
1213
+ } & {
1214
+ default: boolean;
749
1215
  };
750
- $refs: {
751
- [x: string]: unknown;
752
- };
753
- $slots: Readonly<{
754
- [name: string]: import("vue").Slot;
755
- }>;
756
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
757
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
758
- $emit: (event: string, ...args: any[]) => void;
759
- $el: any;
760
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
761
- value: import("vue-types").VueTypeDef<string | number | boolean>;
762
- label: import("vue-types").VueTypeDef<string | number>;
763
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
764
- default: boolean;
765
- } & {
766
- default: boolean;
767
- };
768
- }>>, {
769
- selected: import("vue").ComputedRef<boolean>;
770
- multiple: import("vue").ComputedRef<boolean>;
771
- handleOptionClick: () => void;
772
- visible: import("vue").Ref<boolean>;
773
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
774
- disabled: boolean;
775
- }> & {
776
- beforeCreate?: (() => void) | (() => void)[];
777
- created?: (() => void) | (() => void)[];
778
- beforeMount?: (() => void) | (() => void)[];
779
- mounted?: (() => void) | (() => void)[];
780
- beforeUpdate?: (() => void) | (() => void)[];
781
- updated?: (() => void) | (() => void)[];
782
- activated?: (() => void) | (() => void)[];
783
- deactivated?: (() => void) | (() => void)[];
784
- beforeDestroy?: (() => void) | (() => void)[];
785
- beforeUnmount?: (() => void) | (() => void)[];
786
- destroyed?: (() => void) | (() => void)[];
787
- unmounted?: (() => void) | (() => void)[];
788
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
789
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
790
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
1216
+ always: import("vue-types").VueTypeValidableDef<boolean> & {
1217
+ default: boolean;
1218
+ } & {
1219
+ default: boolean;
791
1220
  };
792
- $forceUpdate: () => void;
793
- $nextTick: typeof import("vue").nextTick;
794
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
795
- } & Readonly<import("vue").ExtractPropTypes<{
796
- value: import("vue-types").VueTypeDef<string | number | boolean>;
797
- label: import("vue-types").VueTypeDef<string | number>;
798
1221
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
799
1222
  default: boolean;
800
1223
  } & {
801
1224
  default: boolean;
802
1225
  };
803
- }>> & import("vue").ShallowUnwrapRef<{
804
- selected: import("vue").ComputedRef<boolean>;
805
- multiple: import("vue").ComputedRef<boolean>;
806
- handleOptionClick: () => void;
807
- visible: import("vue").Ref<boolean>;
808
- }> & {} & {} & import("vue").ComponentCustomProperties) => void;
809
- handleClickOutside: () => void;
810
- currentPlaceholder: import("vue").Ref<string>;
811
- selectedOptions: import("vue").Ref<Set<{
812
- $: import("vue").ComponentInternalInstance;
813
- $data: {};
814
- $props: Partial<{
815
- disabled: boolean;
816
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
817
- value: import("vue-types").VueTypeDef<string | number | boolean>;
818
- label: import("vue-types").VueTypeDef<string | number>;
819
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
820
- default: boolean;
821
- } & {
822
- default: boolean;
823
- };
824
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
825
- $attrs: {
826
- [x: string]: unknown;
1226
+ width: import("vue-types").VueTypeDef<string | number> & {
1227
+ default: string | number;
827
1228
  };
828
- $refs: {
829
- [x: string]: unknown;
1229
+ height: import("vue-types").VueTypeDef<string | number> & {
1230
+ default: string | number;
830
1231
  };
831
- $slots: Readonly<{
832
- [name: string]: import("vue").Slot;
833
- }>;
834
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
835
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
836
- $emit: (event: string, ...args: any[]) => void;
837
- $el: any;
838
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
839
- value: import("vue-types").VueTypeDef<string | number | boolean>;
840
- label: import("vue-types").VueTypeDef<string | number>;
841
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
842
- default: boolean;
843
- } & {
844
- default: boolean;
845
- };
846
- }>>, {
847
- selected: import("vue").ComputedRef<boolean>;
848
- multiple: import("vue").ComputedRef<boolean>;
849
- handleOptionClick: () => void;
850
- visible: import("vue").Ref<boolean>;
851
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
852
- disabled: boolean;
853
- }> & {
854
- beforeCreate?: (() => void) | (() => void)[];
855
- created?: (() => void) | (() => void)[];
856
- beforeMount?: (() => void) | (() => void)[];
857
- mounted?: (() => void) | (() => void)[];
858
- beforeUpdate?: (() => void) | (() => void)[];
859
- updated?: (() => void) | (() => void)[];
860
- activated?: (() => void) | (() => void)[];
861
- deactivated?: (() => void) | (() => void)[];
862
- beforeDestroy?: (() => void) | (() => void)[];
863
- beforeUnmount?: (() => void) | (() => void)[];
864
- destroyed?: (() => void) | (() => void)[];
865
- unmounted?: (() => void) | (() => void)[];
866
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
867
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
868
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
1232
+ content: import("vue-types").VueTypeDef<string | number> & {
1233
+ default: string | number;
869
1234
  };
870
- $forceUpdate: () => void;
871
- $nextTick: typeof import("vue").nextTick;
872
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
873
- } & Readonly<import("vue").ExtractPropTypes<{
874
- value: import("vue-types").VueTypeDef<string | number | boolean>;
875
- label: import("vue-types").VueTypeDef<string | number>;
876
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1235
+ placement: import("vue-types").VueTypeDef<string> & {
1236
+ default: string;
1237
+ };
1238
+ theme: import("vue-types").VueTypeValidableDef<string> & {
1239
+ default: string;
1240
+ } & {
1241
+ default: string;
1242
+ };
1243
+ trigger: import("vue-types").VueTypeValidableDef<string> & {
1244
+ default: string;
1245
+ } & {
1246
+ default: string;
1247
+ };
1248
+ arrow: import("vue-types").VueTypeValidableDef<boolean> & {
1249
+ default: boolean;
1250
+ } & {
1251
+ default: boolean;
1252
+ };
1253
+ padding: import("vue-types").VueTypeValidableDef<number> & {
1254
+ default: number;
1255
+ } & {
1256
+ default: number;
1257
+ };
1258
+ offset: import("vue-types").VueTypeValidableDef<number> & {
1259
+ default: number;
1260
+ } & {
1261
+ default: number;
1262
+ };
1263
+ boundary: import("vue-types").VueTypeDef<string | HTMLElement>;
1264
+ zIndex: import("vue-types").VueTypeValidableDef<number> & {
1265
+ default: number;
1266
+ } & {
1267
+ default: number;
1268
+ };
1269
+ disableTeleport: import("vue-types").VueTypeValidableDef<boolean> & {
1270
+ default: boolean;
1271
+ } & {
1272
+ default: boolean;
1273
+ };
1274
+ autoPlacement: import("vue-types").VueTypeValidableDef<boolean> & {
1275
+ default: boolean;
1276
+ } & {
1277
+ default: boolean;
1278
+ };
1279
+ autoVisibility: import("vue-types").VueTypeValidableDef<boolean> & {
1280
+ default: boolean;
1281
+ } & {
1282
+ default: boolean;
1283
+ };
1284
+ disableOutsideClick: import("vue-types").VueTypeValidableDef<boolean> & {
1285
+ default: boolean;
1286
+ } & {
1287
+ default: boolean;
1288
+ };
1289
+ disableTransform: import("vue-types").VueTypeValidableDef<boolean> & {
877
1290
  default: boolean;
878
1291
  } & {
879
1292
  default: boolean;
880
1293
  };
881
- }>> & import("vue").ShallowUnwrapRef<{
882
- selected: import("vue").ComputedRef<boolean>;
883
- multiple: import("vue").ComputedRef<boolean>;
884
- handleOptionClick: () => void;
885
- visible: import("vue").Ref<boolean>;
886
- }> & {} & {} & import("vue").ComponentCustomProperties>>;
887
- currentSelectedLabel: import("vue").Ref<string>;
1294
+ reference: import("vue-types").VueTypeValidableDef<any> & {
1295
+ default: any;
1296
+ };
1297
+ modifiers: import("vue-types").VueTypeValidableDef<unknown[]> & {
1298
+ default: () => unknown[];
1299
+ } & {
1300
+ default: () => unknown[];
1301
+ };
1302
+ }>>>>;
1303
+ focusInput: () => void;
1304
+ setHover: () => void;
1305
+ cancelHover: () => void;
1306
+ handleFocus: () => void;
1307
+ handleBlur: () => void;
1308
+ handleTogglePopover: () => void;
1309
+ handleClear: (e: Event) => void;
1310
+ hidePopover: () => void;
1311
+ showPopover: () => void;
1312
+ handleToggleAll: () => void;
1313
+ handleOptionSelected: (option: import("./type").OptionInstanceType) => void;
1314
+ handleClickOutside: ({ event }: {
1315
+ event: any;
1316
+ }) => void;
1317
+ handleScroll: (e: any) => void;
1318
+ handleDeleteTag: (val: string) => void;
1319
+ handleInputChange: (value: any) => void;
1320
+ handleInputEnter: (val: string | number, e: Event) => void;
1321
+ handleKeydown: (e: any) => void;
1322
+ handleSelectedAllOptionMouseEnter: () => void;
1323
+ handlePopoverShow: () => void;
888
1324
  }> & {} & {} & import("vue").ComponentCustomProperties;
889
1325
  __isFragment?: never;
890
1326
  __isTeleport?: never;
@@ -956,6 +1392,11 @@ declare const BkSelect: {
956
1392
  } & {
957
1393
  default: boolean;
958
1394
  };
1395
+ autoHeight: import("vue-types").VueTypeValidableDef<boolean> & {
1396
+ default: boolean;
1397
+ } & {
1398
+ default: boolean;
1399
+ };
959
1400
  noDataText: import("vue-types").VueTypeValidableDef<string> & {
960
1401
  default: string;
961
1402
  } & {
@@ -976,31 +1417,161 @@ declare const BkSelect: {
976
1417
  } & {
977
1418
  default: string;
978
1419
  };
1420
+ searchPlaceholder: import("vue-types").VueTypeValidableDef<string> & {
1421
+ default: string;
1422
+ } & {
1423
+ default: string;
1424
+ };
979
1425
  selectAllText: import("vue-types").VueTypeValidableDef<string> & {
980
1426
  default: string;
981
1427
  } & {
982
1428
  default: string;
983
1429
  };
1430
+ scrollLoading: import("vue-types").VueTypeValidableDef<boolean> & {
1431
+ default: boolean;
1432
+ } & {
1433
+ default: boolean;
1434
+ };
1435
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
1436
+ default: boolean;
1437
+ } & {
1438
+ default: boolean;
1439
+ };
1440
+ popoverOptions: import("vue-types").VueTypeValidableDef<{
1441
+ [key: string]: any;
1442
+ }> & {
1443
+ default: () => {
1444
+ [key: string]: any;
1445
+ };
1446
+ } & {
1447
+ default: () => {
1448
+ [key: string]: any;
1449
+ };
1450
+ };
1451
+ customContent: import("vue-types").VueTypeValidableDef<boolean> & {
1452
+ default: boolean;
1453
+ } & {
1454
+ default: boolean;
1455
+ };
1456
+ list: import("vue-types").VueTypeValidableDef<unknown[]> & {
1457
+ default: () => unknown[];
1458
+ } & {
1459
+ default: () => unknown[];
1460
+ };
1461
+ idKey: import("vue-types").VueTypeValidableDef<string> & {
1462
+ default: string;
1463
+ } & {
1464
+ default: string;
1465
+ };
1466
+ displayKey: import("vue-types").VueTypeValidableDef<string> & {
1467
+ default: string;
1468
+ } & {
1469
+ default: string;
1470
+ };
1471
+ withValidate: import("vue-types").VueTypeValidableDef<boolean> & {
1472
+ default: boolean;
1473
+ } & {
1474
+ default: boolean;
1475
+ };
1476
+ showSelectedIcon: import("vue-types").VueTypeValidableDef<boolean> & {
1477
+ default: boolean;
1478
+ } & {
1479
+ default: boolean;
1480
+ };
1481
+ inputSearch: import("vue-types").VueTypeValidableDef<boolean> & {
1482
+ default: boolean;
1483
+ } & {
1484
+ default: boolean;
1485
+ };
1486
+ enableVirtualRender: import("vue-types").VueTypeValidableDef<boolean> & {
1487
+ default: boolean;
1488
+ } & {
1489
+ default: boolean;
1490
+ };
1491
+ allowEmptyValues: import("vue-types").VueTypeValidableDef<unknown[]> & {
1492
+ default: () => unknown[];
1493
+ } & {
1494
+ default: () => unknown[];
1495
+ };
1496
+ autoFocus: import("vue-types").VueTypeValidableDef<boolean> & {
1497
+ default: boolean;
1498
+ } & {
1499
+ default: boolean;
1500
+ };
984
1501
  }>> & {
1502
+ onFocus?: (...args: any[]) => any;
1503
+ onBlur?: (...args: any[]) => any;
985
1504
  onChange?: (...args: any[]) => any;
986
1505
  "onUpdate:modelValue"?: (...args: any[]) => any;
987
1506
  onClear?: (...args: any[]) => any;
988
1507
  onToggle?: (...args: any[]) => any;
1508
+ "onScroll-end"?: (...args: any[]) => any;
989
1509
  }, {
990
- options: import("vue").Ref<Set<{
1510
+ selected: import("vue").Ref<{
1511
+ value: string;
1512
+ label: string;
1513
+ }[]>;
1514
+ isInput: import("vue").ComputedRef<boolean>;
1515
+ options: import("vue").ComputedRef<import("./type").OptionInstanceType[]>;
1516
+ isDisabled: import("vue").ComputedRef<boolean>;
1517
+ selectedLabel: import("vue").ComputedRef<string[]>;
1518
+ isPopoverShow: import("vue").Ref<boolean>;
1519
+ isHover: import("vue").Ref<boolean>;
1520
+ popperWidth: import("vue").Ref<string | number>;
1521
+ inputRef: import("vue").Ref<HTMLElement>;
1522
+ triggerRef: import("vue").Ref<HTMLElement>;
1523
+ contentRef: import("vue").Ref<HTMLElement>;
1524
+ searchRef: import("vue").Ref<HTMLElement>;
1525
+ selectTagInputRef: import("vue").Ref<{
991
1526
  $: import("vue").ComponentInternalInstance;
992
1527
  $data: {};
993
1528
  $props: Partial<{
994
1529
  disabled: boolean;
1530
+ placeholder: string;
1531
+ selected: import("./type").ISelected[];
1532
+ tagTheme: string;
1533
+ filterable: boolean;
1534
+ allowCreate: boolean;
1535
+ collapseTags: boolean;
995
1536
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
996
- value: import("vue-types").VueTypeDef<string | number | boolean>;
997
- label: import("vue-types").VueTypeDef<string | number>;
1537
+ selected: {
1538
+ type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
1539
+ default: () => any[];
1540
+ };
1541
+ tagTheme: import("vue-types").VueTypeDef<string> & {
1542
+ default: string;
1543
+ };
1544
+ placeholder: import("vue-types").VueTypeValidableDef<string> & {
1545
+ default: string;
1546
+ } & {
1547
+ default: string;
1548
+ };
1549
+ filterable: import("vue-types").VueTypeValidableDef<boolean> & {
1550
+ default: boolean;
1551
+ } & {
1552
+ default: boolean;
1553
+ };
1554
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
1555
+ default: boolean;
1556
+ } & {
1557
+ default: boolean;
1558
+ };
998
1559
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
999
1560
  default: boolean;
1000
1561
  } & {
1001
1562
  default: boolean;
1002
1563
  };
1003
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
1564
+ modelValue: import("vue-types").VueTypeValidableDef<any>;
1565
+ collapseTags: import("vue-types").VueTypeValidableDef<boolean> & {
1566
+ default: boolean;
1567
+ } & {
1568
+ default: boolean;
1569
+ };
1570
+ }>> & {
1571
+ onEnter?: (...args: any[]) => any;
1572
+ "onUpdate:modelValue"?: (...args: any[]) => any;
1573
+ onRemove?: (...args: any[]) => any;
1574
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "placeholder" | "selected" | "tagTheme" | "filterable" | "allowCreate" | "collapseTags">;
1004
1575
  $attrs: {
1005
1576
  [x: string]: unknown;
1006
1577
  };
@@ -1012,23 +1583,63 @@ declare const BkSelect: {
1012
1583
  }>;
1013
1584
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
1014
1585
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
1015
- $emit: (event: string, ...args: any[]) => void;
1586
+ $emit: (event: "update:modelValue" | "remove" | "enter", ...args: any[]) => void;
1016
1587
  $el: any;
1017
1588
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1018
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1019
- label: import("vue-types").VueTypeDef<string | number>;
1589
+ selected: {
1590
+ type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
1591
+ default: () => any[];
1592
+ };
1593
+ tagTheme: import("vue-types").VueTypeDef<string> & {
1594
+ default: string;
1595
+ };
1596
+ placeholder: import("vue-types").VueTypeValidableDef<string> & {
1597
+ default: string;
1598
+ } & {
1599
+ default: string;
1600
+ };
1601
+ filterable: import("vue-types").VueTypeValidableDef<boolean> & {
1602
+ default: boolean;
1603
+ } & {
1604
+ default: boolean;
1605
+ };
1606
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
1607
+ default: boolean;
1608
+ } & {
1609
+ default: boolean;
1610
+ };
1020
1611
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1021
1612
  default: boolean;
1022
1613
  } & {
1023
1614
  default: boolean;
1024
1615
  };
1025
- }>>, {
1026
- selected: import("vue").ComputedRef<boolean>;
1027
- multiple: import("vue").ComputedRef<boolean>;
1028
- handleOptionClick: () => void;
1029
- visible: import("vue").Ref<boolean>;
1030
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
1616
+ modelValue: import("vue-types").VueTypeValidableDef<any>;
1617
+ collapseTags: import("vue-types").VueTypeValidableDef<boolean> & {
1618
+ default: boolean;
1619
+ } & {
1620
+ default: boolean;
1621
+ };
1622
+ }>> & {
1623
+ onEnter?: (...args: any[]) => any;
1624
+ "onUpdate:modelValue"?: (...args: any[]) => any;
1625
+ onRemove?: (...args: any[]) => any;
1626
+ }, {
1627
+ select: import("./type").ISelectContext;
1628
+ overflowTagIndex: import("vue").Ref<number>;
1629
+ value: any;
1630
+ inputRef: import("vue").Ref<HTMLElement>;
1631
+ handleRemoveTag: (val: string) => void;
1632
+ focus: () => void;
1633
+ handleInput: (e: any) => void;
1634
+ handleKeydown: (e: any) => void;
1635
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "remove" | "enter")[], string, {
1031
1636
  disabled: boolean;
1637
+ placeholder: string;
1638
+ selected: import("./type").ISelected[];
1639
+ tagTheme: string;
1640
+ filterable: boolean;
1641
+ allowCreate: boolean;
1642
+ collapseTags: boolean;
1032
1643
  }> & {
1033
1644
  beforeCreate?: (() => void) | (() => void)[];
1034
1645
  created?: (() => void) | (() => void)[];
@@ -1050,26 +1661,55 @@ declare const BkSelect: {
1050
1661
  $nextTick: typeof import("vue").nextTick;
1051
1662
  $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
1052
1663
  } & Readonly<import("vue").ExtractPropTypes<{
1053
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1054
- label: import("vue-types").VueTypeDef<string | number>;
1664
+ selected: {
1665
+ type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
1666
+ default: () => any[];
1667
+ };
1668
+ tagTheme: import("vue-types").VueTypeDef<string> & {
1669
+ default: string;
1670
+ };
1671
+ placeholder: import("vue-types").VueTypeValidableDef<string> & {
1672
+ default: string;
1673
+ } & {
1674
+ default: string;
1675
+ };
1676
+ filterable: import("vue-types").VueTypeValidableDef<boolean> & {
1677
+ default: boolean;
1678
+ } & {
1679
+ default: boolean;
1680
+ };
1681
+ allowCreate: import("vue-types").VueTypeValidableDef<boolean> & {
1682
+ default: boolean;
1683
+ } & {
1684
+ default: boolean;
1685
+ };
1055
1686
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1056
1687
  default: boolean;
1057
1688
  } & {
1058
1689
  default: boolean;
1059
1690
  };
1060
- }>> & import("vue").ShallowUnwrapRef<{
1061
- selected: import("vue").ComputedRef<boolean>;
1062
- multiple: import("vue").ComputedRef<boolean>;
1063
- handleOptionClick: () => void;
1064
- visible: import("vue").Ref<boolean>;
1065
- }> & {} & {} & import("vue").ComponentCustomProperties>>;
1066
- isDisabled: import("vue").ComputedRef<boolean>;
1067
- selectedLabel: import("vue").ComputedRef<(string | number)[]>;
1068
- isPopoverShow: import("vue").Ref<boolean>;
1069
- isHover: import("vue").Ref<boolean>;
1070
- popperWidth: import("vue").Ref<string | number>;
1691
+ modelValue: import("vue-types").VueTypeValidableDef<any>;
1692
+ collapseTags: import("vue-types").VueTypeValidableDef<boolean> & {
1693
+ default: boolean;
1694
+ } & {
1695
+ default: boolean;
1696
+ };
1697
+ }>> & {
1698
+ onEnter?: (...args: any[]) => any;
1699
+ "onUpdate:modelValue"?: (...args: any[]) => any;
1700
+ onRemove?: (...args: any[]) => any;
1701
+ } & import("vue").ShallowUnwrapRef<{
1702
+ select: import("./type").ISelectContext;
1703
+ overflowTagIndex: import("vue").Ref<number>;
1704
+ value: any;
1705
+ inputRef: import("vue").Ref<HTMLElement>;
1706
+ handleRemoveTag: (val: string) => void;
1707
+ focus: () => void;
1708
+ handleInput: (e: any) => void;
1709
+ handleKeydown: (e: any) => void;
1710
+ }> & {} & {} & import("vue").ComponentCustomProperties>;
1711
+ virtualRenderRef: import("vue").Ref<any>;
1071
1712
  popoverRef: import("vue").Ref<any>;
1072
- inputRef: import("vue").Ref<HTMLElement>;
1073
1713
  searchLoading: import("vue").Ref<boolean>;
1074
1714
  isOptionsEmpty: import("vue").ComputedRef<boolean>;
1075
1715
  isSearchEmpty: import("vue").ComputedRef<boolean>;
@@ -1078,196 +1718,172 @@ declare const BkSelect: {
1078
1718
  curContentText: import("vue").ComputedRef<string>;
1079
1719
  isGroup: import("vue").ComputedRef<boolean>;
1080
1720
  searchKey: import("vue").Ref<string>;
1081
- setHover: () => void;
1082
- cancelHover: () => void;
1083
- handleFocus: () => void;
1084
- handleInput: (e: any) => void;
1085
- handleTogglePopover: () => void;
1086
- handleClear: (e: Event) => void;
1087
- onPopoverFirstUpdate: import("@bkui-vue/shared").OnFirstUpdateFnType;
1088
- hidePopover: () => void;
1089
- showPopover: () => void;
1090
- handleToggleAll: () => void;
1091
- handleOptionSelected: (option: {
1092
- $: import("vue").ComponentInternalInstance;
1093
- $data: {};
1094
- $props: Partial<{
1095
- disabled: boolean;
1096
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1097
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1098
- label: import("vue-types").VueTypeDef<string | number>;
1099
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1100
- default: boolean;
1101
- } & {
1102
- default: boolean;
1103
- };
1104
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
1105
- $attrs: {
1106
- [x: string]: unknown;
1107
- };
1108
- $refs: {
1109
- [x: string]: unknown;
1721
+ isShowSelectAll: import("vue").ComputedRef<boolean>;
1722
+ virtualHeight: import("vue").ComputedRef<number>;
1723
+ filterList: import("vue").ComputedRef<unknown[]>;
1724
+ isCollapseTags: import("vue").ComputedRef<boolean>;
1725
+ popoverConfig: import("vue").ComputedRef<Partial<Readonly<import("vue").ExtractPropTypes<{
1726
+ onAfterHidden: FunctionConstructor;
1727
+ onAfterShow: FunctionConstructor;
1728
+ isShow: import("vue-types").VueTypeValidableDef<boolean> & {
1729
+ default: boolean;
1730
+ } & {
1731
+ default: boolean;
1110
1732
  };
1111
- $slots: Readonly<{
1112
- [name: string]: import("vue").Slot;
1113
- }>;
1114
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
1115
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
1116
- $emit: (event: string, ...args: any[]) => void;
1117
- $el: any;
1118
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1119
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1120
- label: import("vue-types").VueTypeDef<string | number>;
1121
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1122
- default: boolean;
1123
- } & {
1124
- default: boolean;
1125
- };
1126
- }>>, {
1127
- selected: import("vue").ComputedRef<boolean>;
1128
- multiple: import("vue").ComputedRef<boolean>;
1129
- handleOptionClick: () => void;
1130
- visible: import("vue").Ref<boolean>;
1131
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
1132
- disabled: boolean;
1133
- }> & {
1134
- beforeCreate?: (() => void) | (() => void)[];
1135
- created?: (() => void) | (() => void)[];
1136
- beforeMount?: (() => void) | (() => void)[];
1137
- mounted?: (() => void) | (() => void)[];
1138
- beforeUpdate?: (() => void) | (() => void)[];
1139
- updated?: (() => void) | (() => void)[];
1140
- activated?: (() => void) | (() => void)[];
1141
- deactivated?: (() => void) | (() => void)[];
1142
- beforeDestroy?: (() => void) | (() => void)[];
1143
- beforeUnmount?: (() => void) | (() => void)[];
1144
- destroyed?: (() => void) | (() => void)[];
1145
- unmounted?: (() => void) | (() => void)[];
1146
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1147
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1148
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
1733
+ always: import("vue-types").VueTypeValidableDef<boolean> & {
1734
+ default: boolean;
1735
+ } & {
1736
+ default: boolean;
1149
1737
  };
1150
- $forceUpdate: () => void;
1151
- $nextTick: typeof import("vue").nextTick;
1152
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
1153
- } & Readonly<import("vue").ExtractPropTypes<{
1154
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1155
- label: import("vue-types").VueTypeDef<string | number>;
1156
1738
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1157
1739
  default: boolean;
1158
1740
  } & {
1159
1741
  default: boolean;
1160
1742
  };
1161
- }>> & import("vue").ShallowUnwrapRef<{
1162
- selected: import("vue").ComputedRef<boolean>;
1163
- multiple: import("vue").ComputedRef<boolean>;
1164
- handleOptionClick: () => void;
1165
- visible: import("vue").Ref<boolean>;
1166
- }> & {} & {} & import("vue").ComponentCustomProperties) => void;
1167
- handleClickOutside: () => void;
1168
- currentPlaceholder: import("vue").Ref<string>;
1169
- selectedOptions: import("vue").Ref<Set<{
1170
- $: import("vue").ComponentInternalInstance;
1171
- $data: {};
1172
- $props: Partial<{
1173
- disabled: boolean;
1174
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1175
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1176
- label: import("vue-types").VueTypeDef<string | number>;
1177
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1178
- default: boolean;
1179
- } & {
1180
- default: boolean;
1181
- };
1182
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
1183
- $attrs: {
1184
- [x: string]: unknown;
1743
+ width: import("vue-types").VueTypeDef<string | number> & {
1744
+ default: string | number;
1185
1745
  };
1186
- $refs: {
1187
- [x: string]: unknown;
1746
+ height: import("vue-types").VueTypeDef<string | number> & {
1747
+ default: string | number;
1188
1748
  };
1189
- $slots: Readonly<{
1190
- [name: string]: import("vue").Slot;
1191
- }>;
1192
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
1193
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
1194
- $emit: (event: string, ...args: any[]) => void;
1195
- $el: any;
1196
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1197
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1198
- label: import("vue-types").VueTypeDef<string | number>;
1199
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1200
- default: boolean;
1201
- } & {
1202
- default: boolean;
1203
- };
1204
- }>>, {
1205
- selected: import("vue").ComputedRef<boolean>;
1206
- multiple: import("vue").ComputedRef<boolean>;
1207
- handleOptionClick: () => void;
1208
- visible: import("vue").Ref<boolean>;
1209
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
1210
- disabled: boolean;
1211
- }> & {
1212
- beforeCreate?: (() => void) | (() => void)[];
1213
- created?: (() => void) | (() => void)[];
1214
- beforeMount?: (() => void) | (() => void)[];
1215
- mounted?: (() => void) | (() => void)[];
1216
- beforeUpdate?: (() => void) | (() => void)[];
1217
- updated?: (() => void) | (() => void)[];
1218
- activated?: (() => void) | (() => void)[];
1219
- deactivated?: (() => void) | (() => void)[];
1220
- beforeDestroy?: (() => void) | (() => void)[];
1221
- beforeUnmount?: (() => void) | (() => void)[];
1222
- destroyed?: (() => void) | (() => void)[];
1223
- unmounted?: (() => void) | (() => void)[];
1224
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1225
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1226
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
1749
+ content: import("vue-types").VueTypeDef<string | number> & {
1750
+ default: string | number;
1227
1751
  };
1228
- $forceUpdate: () => void;
1229
- $nextTick: typeof import("vue").nextTick;
1230
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
1231
- } & Readonly<import("vue").ExtractPropTypes<{
1232
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1233
- label: import("vue-types").VueTypeDef<string | number>;
1234
- disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1752
+ placement: import("vue-types").VueTypeDef<string> & {
1753
+ default: string;
1754
+ };
1755
+ theme: import("vue-types").VueTypeValidableDef<string> & {
1756
+ default: string;
1757
+ } & {
1758
+ default: string;
1759
+ };
1760
+ trigger: import("vue-types").VueTypeValidableDef<string> & {
1761
+ default: string;
1762
+ } & {
1763
+ default: string;
1764
+ };
1765
+ arrow: import("vue-types").VueTypeValidableDef<boolean> & {
1235
1766
  default: boolean;
1236
1767
  } & {
1237
1768
  default: boolean;
1238
1769
  };
1239
- }>> & import("vue").ShallowUnwrapRef<{
1240
- selected: import("vue").ComputedRef<boolean>;
1241
- multiple: import("vue").ComputedRef<boolean>;
1242
- handleOptionClick: () => void;
1243
- visible: import("vue").Ref<boolean>;
1244
- }> & {} & {} & import("vue").ComponentCustomProperties>>;
1245
- currentSelectedLabel: import("vue").Ref<string>;
1246
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "toggle" | "clear" | "update:modelValue")[], "change" | "toggle" | "clear" | "update:modelValue", {
1770
+ padding: import("vue-types").VueTypeValidableDef<number> & {
1771
+ default: number;
1772
+ } & {
1773
+ default: number;
1774
+ };
1775
+ offset: import("vue-types").VueTypeValidableDef<number> & {
1776
+ default: number;
1777
+ } & {
1778
+ default: number;
1779
+ };
1780
+ boundary: import("vue-types").VueTypeDef<string | HTMLElement>;
1781
+ zIndex: import("vue-types").VueTypeValidableDef<number> & {
1782
+ default: number;
1783
+ } & {
1784
+ default: number;
1785
+ };
1786
+ disableTeleport: import("vue-types").VueTypeValidableDef<boolean> & {
1787
+ default: boolean;
1788
+ } & {
1789
+ default: boolean;
1790
+ };
1791
+ autoPlacement: import("vue-types").VueTypeValidableDef<boolean> & {
1792
+ default: boolean;
1793
+ } & {
1794
+ default: boolean;
1795
+ };
1796
+ autoVisibility: import("vue-types").VueTypeValidableDef<boolean> & {
1797
+ default: boolean;
1798
+ } & {
1799
+ default: boolean;
1800
+ };
1801
+ disableOutsideClick: import("vue-types").VueTypeValidableDef<boolean> & {
1802
+ default: boolean;
1803
+ } & {
1804
+ default: boolean;
1805
+ };
1806
+ disableTransform: import("vue-types").VueTypeValidableDef<boolean> & {
1807
+ default: boolean;
1808
+ } & {
1809
+ default: boolean;
1810
+ };
1811
+ reference: import("vue-types").VueTypeValidableDef<any> & {
1812
+ default: any;
1813
+ };
1814
+ modifiers: import("vue-types").VueTypeValidableDef<unknown[]> & {
1815
+ default: () => unknown[];
1816
+ } & {
1817
+ default: () => unknown[];
1818
+ };
1819
+ }>>>>;
1820
+ focusInput: () => void;
1821
+ setHover: () => void;
1822
+ cancelHover: () => void;
1823
+ handleFocus: () => void;
1824
+ handleBlur: () => void;
1825
+ handleTogglePopover: () => void;
1826
+ handleClear: (e: Event) => void;
1827
+ hidePopover: () => void;
1828
+ showPopover: () => void;
1829
+ handleToggleAll: () => void;
1830
+ handleOptionSelected: (option: import("./type").OptionInstanceType) => void;
1831
+ handleClickOutside: ({ event }: {
1832
+ event: any;
1833
+ }) => void;
1834
+ handleScroll: (e: any) => void;
1835
+ handleDeleteTag: (val: string) => void;
1836
+ handleInputChange: (value: any) => void;
1837
+ handleInputEnter: (val: string | number, e: Event) => void;
1838
+ handleKeydown: (e: any) => void;
1839
+ handleSelectedAllOptionMouseEnter: () => void;
1840
+ handlePopoverShow: () => void;
1841
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "blur" | "change" | "toggle" | "clear" | "update:modelValue" | "scroll-end")[], "focus" | "blur" | "change" | "toggle" | "clear" | "update:modelValue" | "scroll-end", {
1842
+ showOnInit: boolean;
1843
+ disabled: boolean;
1247
1844
  placeholder: string;
1845
+ list: unknown[];
1248
1846
  size: string;
1249
1847
  multiple: boolean;
1250
- disabled: boolean;
1251
1848
  loading: boolean;
1252
- showOnInit: boolean;
1253
1849
  clearable: boolean;
1254
1850
  behavior: string;
1255
- popoverMinWidth: number;
1851
+ withValidate: boolean;
1852
+ showSelectedIcon: boolean;
1853
+ tagTheme: string;
1256
1854
  filterable: boolean;
1855
+ allowCreate: boolean;
1856
+ collapseTags: boolean;
1857
+ popoverMinWidth: number;
1858
+ idKey: string;
1257
1859
  remoteMethod: (...args: any[]) => any;
1258
1860
  scrollHeight: number;
1861
+ popoverOptions: {
1862
+ [key: string]: any;
1863
+ };
1259
1864
  showSelectAll: boolean;
1260
1865
  multipleMode: string;
1261
- tagTheme: string;
1262
- collapseTags: boolean;
1866
+ autoHeight: boolean;
1263
1867
  noDataText: string;
1264
1868
  noMatchText: string;
1265
1869
  loadingText: string;
1870
+ searchPlaceholder: string;
1266
1871
  selectAllText: string;
1872
+ scrollLoading: boolean;
1873
+ customContent: boolean;
1874
+ displayKey: string;
1875
+ inputSearch: boolean;
1876
+ enableVirtualRender: boolean;
1877
+ allowEmptyValues: unknown[];
1878
+ autoFocus: boolean;
1267
1879
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & Readonly<{
1268
1880
  Option: import("vue").DefineComponent<{
1269
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1270
- label: import("vue-types").VueTypeDef<string | number>;
1881
+ value: import("vue-types").VueTypeValidableDef<any>;
1882
+ label: import("vue-types").VueTypeValidableDef<string> & {
1883
+ default: string;
1884
+ } & {
1885
+ default: string;
1886
+ };
1271
1887
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1272
1888
  default: boolean;
1273
1889
  } & {
@@ -1276,17 +1892,25 @@ declare const BkSelect: {
1276
1892
  }, {
1277
1893
  selected: import("vue").ComputedRef<boolean>;
1278
1894
  multiple: import("vue").ComputedRef<boolean>;
1895
+ isHover: import("vue").ComputedRef<boolean>;
1896
+ showSelectedIcon: import("vue").ComputedRef<boolean>;
1279
1897
  handleOptionClick: () => void;
1898
+ handleMouseEnter: () => void;
1280
1899
  visible: import("vue").Ref<boolean>;
1281
1900
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1282
- value: import("vue-types").VueTypeDef<string | number | boolean>;
1283
- label: import("vue-types").VueTypeDef<string | number>;
1901
+ value: import("vue-types").VueTypeValidableDef<any>;
1902
+ label: import("vue-types").VueTypeValidableDef<string> & {
1903
+ default: string;
1904
+ } & {
1905
+ default: string;
1906
+ };
1284
1907
  disabled: import("vue-types").VueTypeValidableDef<boolean> & {
1285
1908
  default: boolean;
1286
1909
  } & {
1287
1910
  default: boolean;
1288
1911
  };
1289
1912
  }>>, {
1913
+ label: string;
1290
1914
  disabled: boolean;
1291
1915
  }>;
1292
1916
  Group: import("vue").DefineComponent<{
@@ -1338,8 +1962,8 @@ declare const BkSelect: {
1338
1962
  };
1339
1963
  }>>, {
1340
1964
  label: string;
1341
- collapse: boolean;
1342
1965
  disabled: boolean;
1966
+ collapse: boolean;
1343
1967
  collapsible: boolean;
1344
1968
  }>;
1345
1969
  }>;