bkui-vue 0.0.2-beta.67 → 0.0.2-beta.68

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.
@@ -9,7 +9,7 @@ declare const BkSearchSelect: {
9
9
  clearable?: boolean;
10
10
  modelValue?: import("./utils").ISearchValue[];
11
11
  conditions?: import("./utils").ICommonItem[];
12
- valueBehavior?: import("./utils").ValueBehavior;
12
+ valueBehavior?: "all" | "need-key";
13
13
  shrink?: boolean;
14
14
  uniqueSelect?: boolean;
15
15
  class?: unknown;
@@ -112,7 +112,7 @@ declare const BkSearchSelect: {
112
112
  default: boolean;
113
113
  };
114
114
  valueBehavior: {
115
- type: import("vue").PropType<import("./utils").ValueBehavior>;
115
+ type: import("vue").PropType<"all" | "need-key">;
116
116
  default: import("./utils").ValueBehavior;
117
117
  validator(v: import("./utils").ValueBehavior): boolean;
118
118
  };
@@ -349,7 +349,7 @@ declare const BkSearchSelect: {
349
349
  clearable: boolean;
350
350
  modelValue: import("./utils").ISearchValue[];
351
351
  conditions: import("./utils").ICommonItem[];
352
- valueBehavior: import("./utils").ValueBehavior;
352
+ valueBehavior: "all" | "need-key";
353
353
  shrink: boolean;
354
354
  uniqueSelect: boolean;
355
355
  }, {}, string, {}> & {
@@ -409,7 +409,7 @@ declare const BkSearchSelect: {
409
409
  default: boolean;
410
410
  };
411
411
  valueBehavior: {
412
- type: import("vue").PropType<import("./utils").ValueBehavior>;
412
+ type: import("vue").PropType<"all" | "need-key">;
413
413
  default: import("./utils").ValueBehavior;
414
414
  validator(v: import("./utils").ValueBehavior): boolean;
415
415
  };
@@ -680,7 +680,7 @@ declare const BkSearchSelect: {
680
680
  default: boolean;
681
681
  };
682
682
  valueBehavior: {
683
- type: import("vue").PropType<import("./utils").ValueBehavior>;
683
+ type: import("vue").PropType<"all" | "need-key">;
684
684
  default: import("./utils").ValueBehavior;
685
685
  validator(v: import("./utils").ValueBehavior): boolean;
686
686
  };
@@ -917,7 +917,7 @@ declare const BkSearchSelect: {
917
917
  clearable: boolean;
918
918
  modelValue: import("./utils").ISearchValue[];
919
919
  conditions: import("./utils").ICommonItem[];
920
- valueBehavior: import("./utils").ValueBehavior;
920
+ valueBehavior: "all" | "need-key";
921
921
  shrink: boolean;
922
922
  uniqueSelect: boolean;
923
923
  }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
@@ -37,7 +37,7 @@ export declare const SearchSelectProps: {
37
37
  default: boolean;
38
38
  };
39
39
  valueBehavior: {
40
- type: PropType<ValueBehavior>;
40
+ type: PropType<"all" | "need-key">;
41
41
  default: ValueBehavior;
42
42
  validator(v: ValueBehavior): boolean;
43
43
  };
@@ -79,7 +79,7 @@ declare const _default: import("vue").DefineComponent<{
79
79
  default: boolean;
80
80
  };
81
81
  valueBehavior: {
82
- type: PropType<ValueBehavior>;
82
+ type: PropType<"all" | "need-key">;
83
83
  default: ValueBehavior;
84
84
  validator(v: ValueBehavior): boolean;
85
85
  };
@@ -343,7 +343,7 @@ declare const _default: import("vue").DefineComponent<{
343
343
  default: boolean;
344
344
  };
345
345
  valueBehavior: {
346
- type: PropType<ValueBehavior>;
346
+ type: PropType<"all" | "need-key">;
347
347
  default: ValueBehavior;
348
348
  validator(v: ValueBehavior): boolean;
349
349
  };
@@ -357,7 +357,7 @@ declare const _default: import("vue").DefineComponent<{
357
357
  clearable: boolean;
358
358
  modelValue: ISearchValue[];
359
359
  conditions: ICommonItem[];
360
- valueBehavior: ValueBehavior;
360
+ valueBehavior: "all" | "need-key";
361
361
  shrink: boolean;
362
362
  uniqueSelect: boolean;
363
363
  }, {}>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "0.0.2-beta.67",
3
+ "version": "0.0.2-beta.68",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",