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