bkui-vue 2.0.1-beta.71 → 2.0.1-beta.72.fix.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist/index.cjs.js +42 -42
  2. package/dist/index.esm.js +12902 -13006
  3. package/dist/index.umd.js +42 -42
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/cascader/index.js +5 -7
  7. package/lib/color-picker/color-picker.d.ts +0 -16
  8. package/lib/color-picker/index.d.ts +0 -23
  9. package/lib/color-picker/index.js +1 -8
  10. package/lib/dialog/dialog.d.ts +6 -6
  11. package/lib/dialog/index.d.ts +12 -12
  12. package/lib/dialog/index.js +1 -3
  13. package/lib/dialog/props.d.ts +3 -3
  14. package/lib/index.js +1 -1
  15. package/lib/input/index.js +521 -42
  16. package/lib/input/input.css +1 -23
  17. package/lib/input/input.less +1 -30
  18. package/lib/input/input.variable.css +1 -23
  19. package/lib/modal/index.js +21 -54
  20. package/lib/plugin-popover/index.js +1 -2
  21. package/lib/popover/index.js +1 -2
  22. package/lib/resize-layout/index.js +0 -4
  23. package/lib/search-select/index.d.ts +6 -60
  24. package/lib/search-select/index.js +89 -201
  25. package/lib/search-select/input.d.ts +2 -12
  26. package/lib/search-select/menu.d.ts +0 -12
  27. package/lib/search-select/search-select.css +1 -0
  28. package/lib/search-select/search-select.d.ts +4 -18
  29. package/lib/search-select/search-select.less +1 -1
  30. package/lib/search-select/search-select.variable.css +1 -0
  31. package/lib/search-select/selected.d.ts +0 -23
  32. package/lib/select/common.d.ts +1 -1
  33. package/lib/select/index.d.ts +0 -6
  34. package/lib/select/index.js +12 -35
  35. package/lib/select/select.d.ts +0 -2
  36. package/lib/select/selectTagInput.d.ts +0 -1
  37. package/lib/select/type.d.ts +2 -2
  38. package/lib/tab/index.d.ts +0 -22
  39. package/lib/tab/index.js +10 -32
  40. package/lib/tab/props.d.ts +0 -10
  41. package/lib/tab/tab-nav.d.ts +2 -12
  42. package/lib/tab/tab-panel.d.ts +0 -22
  43. package/lib/tab/tab.css +0 -64
  44. package/lib/tab/tab.less +4 -91
  45. package/lib/tab/tab.variable.css +0 -64
  46. package/lib/table/hooks/use-settings.d.ts +0 -2
  47. package/lib/table/index.js +10 -69
  48. package/lib/table/props.d.ts +4 -5
  49. package/lib/table/table.css +0 -7
  50. package/lib/table/table.less +0 -15
  51. package/lib/table/table.variable.css +0 -7
  52. package/lib/table/utils.d.ts +0 -1
  53. package/lib/table-column/index.js +1 -1
  54. package/lib/tag-input/index.js +1 -3
  55. package/lib/upload/index.js +9 -31
  56. package/package.json +1 -1
@@ -220,10 +220,7 @@
220
220
  color: var(--light-gray);
221
221
  }
222
222
  .bk-textarea.resizable {
223
- resize: vertical;
224
- }
225
- .bk-textarea.resizable > textarea {
226
- flex: 1;
223
+ resize: both;
227
224
  }
228
225
  .bk-textarea ::-webkit-scrollbar {
229
226
  -webkit-appearance: none;
@@ -289,25 +286,6 @@
289
286
  outline: 0;
290
287
  box-shadow: 0px 0px 3px 0px var(--input-shadow-color);
291
288
  }
292
- .bk-textarea--suffix-icon {
293
- color: var(--gray-color);
294
- padding-right: var(--input-horizontal-padding);
295
- font-size: var(--font-size-medium);
296
- margin: 0;
297
- margin-left: auto;
298
- text-align: right;
299
- flex-shrink: 0;
300
- cursor: pointer;
301
- }
302
- .bk-textarea--suffix-icon:hover {
303
- color: #313238;
304
- }
305
- .bk-textarea--suffix-icon.show-clear-only-hover {
306
- display: none;
307
- }
308
- .bk-textarea:hover:not(.is-disabled) .show-clear-only-hover {
309
- display: flex;
310
- }
311
289
  .bk-input {
312
290
  display: inline-flex;
313
291
  align-items: stretch;
@@ -62,10 +62,7 @@
62
62
  .placeholder();
63
63
 
64
64
  &.resizable {
65
- resize: vertical;
66
- >textarea {
67
- flex: 1;
68
- }
65
+ resize: both;
69
66
  }
70
67
 
71
68
  ::-webkit-scrollbar {
@@ -112,32 +109,6 @@
112
109
  &.is-focused:not(.is-readonly) {
113
110
  .active();
114
111
  }
115
-
116
- &--suffix-icon {
117
- color: @gray-color;
118
- padding-right: @input-horizontal-padding;
119
- font-size: @font-size-medium;
120
- margin: 0;
121
- margin-left: auto;
122
- text-align: right;
123
- flex-shrink: 0;
124
- cursor: pointer;
125
-
126
- &:hover {
127
- color: #313238;
128
- }
129
-
130
- &.show-clear-only-hover {
131
- display: none;
132
- }
133
- }
134
-
135
- &:hover:not(.is-disabled) {
136
-
137
- .show-clear-only-hover {
138
- display: flex;
139
- }
140
- }
141
112
  }
142
113
 
143
114
  .@{bk-prefix}-input {
@@ -610,10 +610,7 @@
610
610
  color: var(--light-gray);
611
611
  }
612
612
  .bk-textarea.resizable {
613
- resize: vertical;
614
- }
615
- .bk-textarea.resizable > textarea {
616
- flex: 1;
613
+ resize: both;
617
614
  }
618
615
  .bk-textarea ::-webkit-scrollbar {
619
616
  -webkit-appearance: none;
@@ -679,25 +676,6 @@
679
676
  outline: 0;
680
677
  box-shadow: 0px 0px 3px 0px var(--input-shadow-color);
681
678
  }
682
- .bk-textarea--suffix-icon {
683
- color: var(--gray-color);
684
- padding-right: var(--input-horizontal-padding);
685
- font-size: var(--font-size-medium);
686
- margin: 0;
687
- margin-left: auto;
688
- text-align: right;
689
- flex-shrink: 0;
690
- cursor: pointer;
691
- }
692
- .bk-textarea--suffix-icon:hover {
693
- color: #313238;
694
- }
695
- .bk-textarea--suffix-icon.show-clear-only-hover {
696
- display: none;
697
- }
698
- .bk-textarea:hover:not(.is-disabled) .show-clear-only-hover {
699
- display: flex;
700
- }
701
679
  .bk-input {
702
680
  display: inline-flex;
703
681
  align-items: stretch;
@@ -88,7 +88,7 @@ function _defineProperty(obj, key, value) {
88
88
  ;// CONCATENATED MODULE: external "vue"
89
89
  var external_vue_x = y => { var x = {}; __webpack_require__.d(x, y); return x; }
90
90
  var external_vue_y = x => () => x
91
- const external_vue_namespaceObject = external_vue_x({ ["Teleport"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.Teleport, ["Transition"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.Transition, ["computed"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.computed, ["createVNode"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.createVNode, ["defineComponent"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.defineComponent, ["isVNode"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.isVNode, ["mergeProps"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps, ["nextTick"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.nextTick, ["onBeforeUnmount"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.onBeforeUnmount, ["onMounted"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.onMounted, ["ref"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.ref, ["useAttrs"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.useAttrs, ["useSlots"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.useSlots, ["vShow"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.vShow, ["watch"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.watch, ["withDirectives"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.withDirectives });
91
+ const external_vue_namespaceObject = external_vue_x({ ["Teleport"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.Teleport, ["Transition"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.Transition, ["computed"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.computed, ["createVNode"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.createVNode, ["defineComponent"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.defineComponent, ["mergeProps"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps, ["nextTick"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.nextTick, ["onBeforeUnmount"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.onBeforeUnmount, ["onMounted"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.onMounted, ["ref"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.ref, ["useAttrs"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.useAttrs, ["useSlots"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.useSlots, ["vShow"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.vShow, ["watch"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.watch, ["withDirectives"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.withDirectives });
92
92
  ;// CONCATENATED MODULE: external "../config-provider"
93
93
  var config_provider_x = y => { var x = {}; __webpack_require__.d(x, y); return x; }
94
94
  var config_provider_y = x => () => x
@@ -361,9 +361,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
361
361
 
362
362
 
363
363
 
364
- function _isSlot(s) {
365
- return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !(0,external_vue_namespaceObject.isVNode)(s);
366
- }
367
364
  /* harmony default export */ const modal = ((0,external_vue_namespaceObject.defineComponent)({
368
365
  name: 'Modal',
369
366
  props: _objectSpread({}, propsMixin),
@@ -390,15 +387,6 @@ function _isSlot(s) {
390
387
  top: props.top
391
388
  };
392
389
  });
393
- var teleportTo = (0,external_vue_namespaceObject.computed)(function () {
394
- if (props.transfer) {
395
- if (typeof props.transfer === 'boolean') {
396
- return 'body';
397
- }
398
- return props.transfer;
399
- }
400
- return '';
401
- });
402
390
  (0,external_vue_namespaceObject.watch)(function () {
403
391
  return props.isShow;
404
392
  }, function () {
@@ -497,48 +485,27 @@ function _isSlot(s) {
497
485
  "onClick": handleClose
498
486
  }, [(_slots$close = slots.close) === null || _slots$close === void 0 ? void 0 : _slots$close.call(slots)])]);
499
487
  };
500
- var renderModalContent = function renderModalContent() {
501
- return (0,external_vue_namespaceObject.createVNode)("div", (0,external_vue_namespaceObject.mergeProps)({
502
- "ref": rootRef
503
- }, attrs, {
504
- "class": [resolveClassName('modal'), props.extCls || '']
505
- }), [renderMask(), (0,external_vue_namespaceObject.createVNode)(external_vue_namespaceObject.Transition, {
506
- "name": "modal-".concat(props.animateType)
507
- }, {
508
- "default": function _default() {
509
- return [(0,external_vue_namespaceObject.withDirectives)((0,external_vue_namespaceObject.createVNode)("div", {
510
- "style": modalWrapperStyles.value,
511
- "class": resolveClassName('modal-wrapper')
512
- }, [renderContent()]), [[external_vue_namespaceObject.vShow, localShow.value]])];
513
- }
514
- })]);
515
- };
516
- // 判断传入的是不是css选择器或者HTMLElement
517
- var isValidTeleport = function isValidTeleport(selector) {
518
- try {
519
- if (typeof selector === 'boolean') {
520
- return selector;
521
- }
522
- if (typeof selector === 'string') {
523
- return document.querySelector(selector) !== null;
524
- }
525
- return selector instanceof HTMLElement;
526
- } catch (err) {
527
- return false;
488
+ return (0,external_vue_namespaceObject.createVNode)(external_vue_namespaceObject.Teleport, {
489
+ "disabled": !props.transfer,
490
+ "to": "body"
491
+ }, {
492
+ "default": function _default() {
493
+ return [(0,external_vue_namespaceObject.createVNode)("div", (0,external_vue_namespaceObject.mergeProps)({
494
+ "ref": rootRef
495
+ }, attrs, {
496
+ "class": [resolveClassName('modal'), props.extCls || '']
497
+ }), [renderMask(), (0,external_vue_namespaceObject.createVNode)(external_vue_namespaceObject.Transition, {
498
+ "name": "modal-".concat(props.animateType)
499
+ }, {
500
+ "default": function _default() {
501
+ return [(0,external_vue_namespaceObject.withDirectives)((0,external_vue_namespaceObject.createVNode)("div", {
502
+ "style": modalWrapperStyles.value,
503
+ "class": resolveClassName('modal-wrapper')
504
+ }, [renderContent()]), [[external_vue_namespaceObject.vShow, localShow.value]])];
505
+ }
506
+ })])];
528
507
  }
529
- };
530
- if (teleportTo.value === 'body' || isValidTeleport(props.transfer)) {
531
- var _slot;
532
- return (0,external_vue_namespaceObject.createVNode)(external_vue_namespaceObject.Teleport, {
533
- "disabled": !props.transfer,
534
- "to": teleportTo.value
535
- }, _isSlot(_slot = renderModalContent()) ? _slot : {
536
- "default": function _default() {
537
- return [_slot];
538
- }
539
- });
540
- }
541
- return renderModalContent();
508
+ });
542
509
  };
543
510
  }
544
511
  }));
@@ -3141,8 +3141,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
3141
3141
  emitPopContentMouseEnter(e);
3142
3142
  };
3143
3143
  var handlePopContentMouseLeave = function handlePopContentMouseLeave(e) {
3144
- // 处理底部触发mouseleave事件,popShowTimerId有值代表处于hover状态
3145
- if (isMouseenter && !popShowTimerId) {
3144
+ if (isMouseenter) {
3146
3145
  hidePopover();
3147
3146
  isMouseenter = false;
3148
3147
  emitPopContentMouseLeave(e);
@@ -3144,8 +3144,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
3144
3144
  emitPopContentMouseEnter(e);
3145
3145
  };
3146
3146
  var handlePopContentMouseLeave = function handlePopContentMouseLeave(e) {
3147
- // 处理底部触发mouseleave事件,popShowTimerId有值代表处于hover状态
3148
- if (isMouseenter && !popShowTimerId) {
3147
+ if (isMouseenter) {
3149
3148
  hidePopover();
3150
3149
  isMouseenter = false;
3151
3150
  emitPopContentMouseLeave(e);
@@ -175,10 +175,6 @@ const icon_namespaceObject = icon_x({ ["AngleLeft"]: () => __WEBPACK_EXTERNAL_MO
175
175
  // 转换类型
176
176
  var parseInitialDivide = (0,external_vue_namespaceObject.computed)(function () {
177
177
  var divide = initialDivide.value;
178
- // 如果min不是默认值,且initialDivide不是number类型,min优先级提升
179
- if (min.value !== 3 && typeof divide !== 'number') {
180
- return "".concat(min.value, "px");
181
- }
182
178
  if (typeof divide === 'number') {
183
179
  divide = divide <= min.value ? "".concat(min.value, "px") : "".concat(divide, "px");
184
180
  }
@@ -55,10 +55,6 @@ declare const BkSearchSelect: {
55
55
  type: import("vue").PropType<import("./utils").SearchInputMode>;
56
56
  default: import("./utils").SearchInputMode;
57
57
  };
58
- maxHeight: {
59
- type: NumberConstructor;
60
- default: () => number;
61
- };
62
58
  getMenuList: import("vue").PropType<import("./utils").GetMenuListFunc>;
63
59
  validateValues: import("vue").PropType<import("./utils").ValidateValuesFunc>;
64
60
  valueBehavior: import("vue").PropType<import("./utils").ValueBehavior>;
@@ -142,10 +138,6 @@ declare const BkSearchSelect: {
142
138
  type: import("vue").PropType<import("./utils").SearchInputMode>;
143
139
  default: import("./utils").SearchInputMode;
144
140
  };
145
- maxHeight: {
146
- type: NumberConstructor;
147
- default: () => number;
148
- };
149
141
  getMenuList: import("vue").PropType<import("./utils").GetMenuListFunc>;
150
142
  validateValues: import("vue").PropType<import("./utils").ValidateValuesFunc>;
151
143
  valueBehavior: import("vue").PropType<import("./utils").ValueBehavior>;
@@ -155,7 +147,6 @@ declare const BkSearchSelect: {
155
147
  onAdd?: (...args: any[]) => any;
156
148
  onSelectKey?: (...args: any[]) => any;
157
149
  }, {
158
- maxHeight: number;
159
150
  mode: import("./utils").SearchInputMode;
160
151
  conditions: import("./utils").ICommonItem[];
161
152
  showInputBefore: boolean;
@@ -187,10 +178,6 @@ declare const BkSearchSelect: {
187
178
  type: import("vue").PropType<import("./utils").SearchInputMode>;
188
179
  default: import("./utils").SearchInputMode;
189
180
  };
190
- maxHeight: {
191
- type: NumberConstructor;
192
- default: () => number;
193
- };
194
181
  getMenuList: import("vue").PropType<import("./utils").GetMenuListFunc>;
195
182
  validateValues: import("vue").PropType<import("./utils").ValidateValuesFunc>;
196
183
  valueBehavior: import("vue").PropType<import("./utils").ValueBehavior>;
@@ -257,7 +244,6 @@ declare const BkSearchSelect: {
257
244
  logical: string;
258
245
  }>;
259
246
  }, {}, {}, {}, {
260
- maxHeight: number;
261
247
  mode: import("./utils").SearchInputMode;
262
248
  conditions: import("./utils").ICommonItem[];
263
249
  showInputBefore: boolean;
@@ -437,15 +423,9 @@ declare const BkSearchSelect: {
437
423
  uniqueSelect: boolean;
438
424
  }, true, {}, import("vue").SlotsType<{
439
425
  menu: import("./utils").MenuSlotParams;
440
- prepend: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
441
- [key: string]: any;
442
- }>;
443
- append: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
444
- [key: string]: any;
445
- }>;
446
- validate: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
447
- [key: string]: any;
448
- }>;
426
+ prepend: void;
427
+ append: void;
428
+ validate: void;
449
429
  }>, {
450
430
  P: {};
451
431
  B: {};
@@ -509,10 +489,6 @@ declare const BkSearchSelect: {
509
489
  type: import("vue").PropType<import("./utils").SearchInputMode>;
510
490
  default: import("./utils").SearchInputMode;
511
491
  };
512
- maxHeight: {
513
- type: NumberConstructor;
514
- default: () => number;
515
- };
516
492
  getMenuList: import("vue").PropType<import("./utils").GetMenuListFunc>;
517
493
  validateValues: import("vue").PropType<import("./utils").ValidateValuesFunc>;
518
494
  valueBehavior: import("vue").PropType<import("./utils").ValueBehavior>;
@@ -596,10 +572,6 @@ declare const BkSearchSelect: {
596
572
  type: import("vue").PropType<import("./utils").SearchInputMode>;
597
573
  default: import("./utils").SearchInputMode;
598
574
  };
599
- maxHeight: {
600
- type: NumberConstructor;
601
- default: () => number;
602
- };
603
575
  getMenuList: import("vue").PropType<import("./utils").GetMenuListFunc>;
604
576
  validateValues: import("vue").PropType<import("./utils").ValidateValuesFunc>;
605
577
  valueBehavior: import("vue").PropType<import("./utils").ValueBehavior>;
@@ -609,7 +581,6 @@ declare const BkSearchSelect: {
609
581
  onAdd?: (...args: any[]) => any;
610
582
  onSelectKey?: (...args: any[]) => any;
611
583
  }, {
612
- maxHeight: number;
613
584
  mode: import("./utils").SearchInputMode;
614
585
  conditions: import("./utils").ICommonItem[];
615
586
  showInputBefore: boolean;
@@ -641,10 +612,6 @@ declare const BkSearchSelect: {
641
612
  type: import("vue").PropType<import("./utils").SearchInputMode>;
642
613
  default: import("./utils").SearchInputMode;
643
614
  };
644
- maxHeight: {
645
- type: NumberConstructor;
646
- default: () => number;
647
- };
648
615
  getMenuList: import("vue").PropType<import("./utils").GetMenuListFunc>;
649
616
  validateValues: import("vue").PropType<import("./utils").ValidateValuesFunc>;
650
617
  valueBehavior: import("vue").PropType<import("./utils").ValueBehavior>;
@@ -711,7 +678,6 @@ declare const BkSearchSelect: {
711
678
  logical: string;
712
679
  }>;
713
680
  }, {}, {}, {}, {
714
- maxHeight: number;
715
681
  mode: import("./utils").SearchInputMode;
716
682
  conditions: import("./utils").ICommonItem[];
717
683
  showInputBefore: boolean;
@@ -912,10 +878,6 @@ declare const BkSearchSelect: {
912
878
  type: import("vue").PropType<import("./utils").SearchInputMode>;
913
879
  default: import("./utils").SearchInputMode;
914
880
  };
915
- maxHeight: {
916
- type: NumberConstructor;
917
- default: () => number;
918
- };
919
881
  getMenuList: import("vue").PropType<import("./utils").GetMenuListFunc>;
920
882
  validateValues: import("vue").PropType<import("./utils").ValidateValuesFunc>;
921
883
  valueBehavior: import("vue").PropType<import("./utils").ValueBehavior>;
@@ -999,10 +961,6 @@ declare const BkSearchSelect: {
999
961
  type: import("vue").PropType<import("./utils").SearchInputMode>;
1000
962
  default: import("./utils").SearchInputMode;
1001
963
  };
1002
- maxHeight: {
1003
- type: NumberConstructor;
1004
- default: () => number;
1005
- };
1006
964
  getMenuList: import("vue").PropType<import("./utils").GetMenuListFunc>;
1007
965
  validateValues: import("vue").PropType<import("./utils").ValidateValuesFunc>;
1008
966
  valueBehavior: import("vue").PropType<import("./utils").ValueBehavior>;
@@ -1012,7 +970,6 @@ declare const BkSearchSelect: {
1012
970
  onAdd?: (...args: any[]) => any;
1013
971
  onSelectKey?: (...args: any[]) => any;
1014
972
  }, {
1015
- maxHeight: number;
1016
973
  mode: import("./utils").SearchInputMode;
1017
974
  conditions: import("./utils").ICommonItem[];
1018
975
  showInputBefore: boolean;
@@ -1044,10 +1001,6 @@ declare const BkSearchSelect: {
1044
1001
  type: import("vue").PropType<import("./utils").SearchInputMode>;
1045
1002
  default: import("./utils").SearchInputMode;
1046
1003
  };
1047
- maxHeight: {
1048
- type: NumberConstructor;
1049
- default: () => number;
1050
- };
1051
1004
  getMenuList: import("vue").PropType<import("./utils").GetMenuListFunc>;
1052
1005
  validateValues: import("vue").PropType<import("./utils").ValidateValuesFunc>;
1053
1006
  valueBehavior: import("vue").PropType<import("./utils").ValueBehavior>;
@@ -1114,7 +1067,6 @@ declare const BkSearchSelect: {
1114
1067
  logical: string;
1115
1068
  }>;
1116
1069
  }, {}, {}, {}, {
1117
- maxHeight: number;
1118
1070
  mode: import("./utils").SearchInputMode;
1119
1071
  conditions: import("./utils").ICommonItem[];
1120
1072
  showInputBefore: boolean;
@@ -1257,15 +1209,9 @@ declare const BkSearchSelect: {
1257
1209
  uniqueSelect: boolean;
1258
1210
  }, {}, string, import("vue").SlotsType<{
1259
1211
  menu: import("./utils").MenuSlotParams;
1260
- prepend: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1261
- [key: string]: any;
1262
- }>;
1263
- append: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1264
- [key: string]: any;
1265
- }>;
1266
- validate: () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1267
- [key: string]: any;
1268
- }>;
1212
+ prepend: void;
1213
+ append: void;
1214
+ validate: void;
1269
1215
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
1270
1216
  export default BkSearchSelect;
1271
1217
  export { BkSearchSelect };