bkui-vue 1.0.3-beta.54 → 1.0.3-beta.55

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.
@@ -97,8 +97,9 @@ declare const BkSearchSelect: {
97
97
  };
98
98
  documentArrowEvent: (e: KeyboardEvent) => void;
99
99
  handleClickOutside: (e: MouseEvent) => void;
100
- handleInputFocus: (e: FocusEvent) => void;
100
+ handleInputFocus: () => void;
101
101
  handleInputChange: (event: Event) => void;
102
+ handleInputPaste: (event: ClipboardEvent) => void;
102
103
  handleLogicalChange: (logical: import("./utils").SearchLogical) => void;
103
104
  handleInputKeyup: (event: KeyboardEvent) => void;
104
105
  handleSelectItem: (item: import("./utils").ICommonItem, type?: import("./utils").SearchItemType) => Promise<void>;
@@ -169,6 +170,7 @@ declare const BkSearchSelect: {
169
170
  }[];
170
171
  condition: string;
171
172
  logical: import("./utils").SearchLogical;
173
+ nameRenderkey: string;
172
174
  searchItem: {
173
175
  id: string;
174
176
  name: string;
@@ -238,6 +240,9 @@ declare const BkSearchSelect: {
238
240
  readonly showLogical: boolean;
239
241
  isSpecialType: () => boolean;
240
242
  addValue: (item: import("./utils").ICommonItem) => void;
243
+ str2Values: (str: string) => import("./utils").ICommonItem[];
244
+ addValues: (str: string, mergeValues?: boolean) => void;
245
+ getValue: (str: string) => import("./utils").ICommonItem;
241
246
  toValue: () => import("./utils").ISearchValue;
242
247
  toValueKey: () => string;
243
248
  isInValueList: (item: import("./utils").ICommonItem) => boolean;
@@ -425,8 +430,9 @@ declare const BkSearchSelect: {
425
430
  };
426
431
  documentArrowEvent: (e: KeyboardEvent) => void;
427
432
  handleClickOutside: (e: MouseEvent) => void;
428
- handleInputFocus: (e: FocusEvent) => void;
433
+ handleInputFocus: () => void;
429
434
  handleInputChange: (event: Event) => void;
435
+ handleInputPaste: (event: ClipboardEvent) => void;
430
436
  handleLogicalChange: (logical: import("./utils").SearchLogical) => void;
431
437
  handleInputKeyup: (event: KeyboardEvent) => void;
432
438
  handleSelectItem: (item: import("./utils").ICommonItem, type?: import("./utils").SearchItemType) => Promise<void>;
@@ -497,6 +503,7 @@ declare const BkSearchSelect: {
497
503
  }[];
498
504
  condition: string;
499
505
  logical: import("./utils").SearchLogical;
506
+ nameRenderkey: string;
500
507
  searchItem: {
501
508
  id: string;
502
509
  name: string;
@@ -566,6 +573,9 @@ declare const BkSearchSelect: {
566
573
  readonly showLogical: boolean;
567
574
  isSpecialType: () => boolean;
568
575
  addValue: (item: import("./utils").ICommonItem) => void;
576
+ str2Values: (str: string) => import("./utils").ICommonItem[];
577
+ addValues: (str: string, mergeValues?: boolean) => void;
578
+ getValue: (str: string) => import("./utils").ICommonItem;
569
579
  toValue: () => import("./utils").ISearchValue;
570
580
  toValueKey: () => string;
571
581
  isInValueList: (item: import("./utils").ICommonItem) => boolean;
@@ -706,8 +716,9 @@ declare const BkSearchSelect: {
706
716
  };
707
717
  documentArrowEvent: (e: KeyboardEvent) => void;
708
718
  handleClickOutside: (e: MouseEvent) => void;
709
- handleInputFocus: (e: FocusEvent) => void;
719
+ handleInputFocus: () => void;
710
720
  handleInputChange: (event: Event) => void;
721
+ handleInputPaste: (event: ClipboardEvent) => void;
711
722
  handleLogicalChange: (logical: import("./utils").SearchLogical) => void;
712
723
  handleInputKeyup: (event: KeyboardEvent) => void;
713
724
  handleSelectItem: (item: import("./utils").ICommonItem, type?: import("./utils").SearchItemType) => Promise<void>;
@@ -778,6 +789,7 @@ declare const BkSearchSelect: {
778
789
  }[];
779
790
  condition: string;
780
791
  logical: import("./utils").SearchLogical;
792
+ nameRenderkey: string;
781
793
  searchItem: {
782
794
  id: string;
783
795
  name: string;
@@ -847,6 +859,9 @@ declare const BkSearchSelect: {
847
859
  readonly showLogical: boolean;
848
860
  isSpecialType: () => boolean;
849
861
  addValue: (item: import("./utils").ICommonItem) => void;
862
+ str2Values: (str: string) => import("./utils").ICommonItem[];
863
+ addValues: (str: string, mergeValues?: boolean) => void;
864
+ getValue: (str: string) => import("./utils").ICommonItem;
850
865
  toValue: () => import("./utils").ISearchValue;
851
866
  toValueKey: () => string;
852
867
  isInValueList: (item: import("./utils").ICommonItem) => boolean;