bkui-vue 0.0.2-beta.66 → 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.
- package/dist/index.cjs.js +35 -35
- package/dist/index.esm.js +3962 -3957
- package/dist/index.umd.js +36 -36
- package/lib/alert/alert.d.ts +5 -5
- package/lib/alert/index.d.ts +9 -9
- package/lib/checkbox/checkbox-group.d.ts +4 -4
- package/lib/checkbox/index.d.ts +4 -4
- package/lib/search-select/index.d.ts +6 -6
- package/lib/search-select/search-select.d.ts +4 -4
- package/lib/select/index.d.ts +38 -30
- package/lib/select/index.js +1 -1
- package/lib/select/option.d.ts +11 -0
- package/lib/select/select.d.ts +11 -12
- package/lib/select/selectTagInput.d.ts +5 -5
- package/lib/shared/index.js +1 -1
- package/lib/shared/vue-types.d.ts +3 -2
- package/lib/table/components/table-column.d.ts +1 -1
- package/lib/table/index.d.ts +1 -1
- package/lib/table/props.d.ts +1 -1
- package/lib/table-column/index.d.ts +3 -3
- package/lib/tag/index.d.ts +9 -9
- package/lib/tag/index.js +1 -1
- package/lib/tag/tag.d.ts +5 -5
- package/package.json +1 -1
package/lib/alert/alert.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
2
|
-
theme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
3
|
-
default: "info" | "success" | "warning" | "danger";
|
2
|
+
theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
3
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
4
4
|
};
|
5
5
|
size: import("vue-types").VueTypeValidableDef<string> & {
|
6
6
|
default: string;
|
@@ -29,8 +29,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
29
29
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
30
30
|
close: (event: Event) => Event;
|
31
31
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
32
|
-
theme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
33
|
-
default: "info" | "success" | "warning" | "danger";
|
32
|
+
theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
33
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
34
34
|
};
|
35
35
|
size: import("vue-types").VueTypeValidableDef<string> & {
|
36
36
|
default: string;
|
@@ -55,7 +55,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
55
55
|
onClose?: (event: Event) => any;
|
56
56
|
}, {
|
57
57
|
title: string;
|
58
|
-
theme: "info" | "success" | "warning" | "danger";
|
58
|
+
theme: "" | "info" | "success" | "warning" | "danger";
|
59
59
|
size: string;
|
60
60
|
closable: boolean;
|
61
61
|
closeText: string;
|
package/lib/alert/index.d.ts
CHANGED
@@ -4,7 +4,7 @@ declare const BkAlert: {
|
|
4
4
|
$data: {};
|
5
5
|
$props: {
|
6
6
|
title?: string;
|
7
|
-
theme?: "info" | "success" | "warning" | "danger";
|
7
|
+
theme?: "" | "info" | "success" | "warning" | "danger";
|
8
8
|
size?: string;
|
9
9
|
closable?: boolean;
|
10
10
|
closeText?: string;
|
@@ -69,8 +69,8 @@ declare const BkAlert: {
|
|
69
69
|
$emit: (event: "close", event: Event) => void;
|
70
70
|
$el: any;
|
71
71
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
72
|
-
theme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
73
|
-
default: "info" | "success" | "warning" | "danger";
|
72
|
+
theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
73
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
74
74
|
};
|
75
75
|
size: import("vue-types").VueTypeValidableDef<string> & {
|
76
76
|
default: string;
|
@@ -102,7 +102,7 @@ declare const BkAlert: {
|
|
102
102
|
close: (event: Event) => Event;
|
103
103
|
}, string, {
|
104
104
|
title: string;
|
105
|
-
theme: "info" | "success" | "warning" | "danger";
|
105
|
+
theme: "" | "info" | "success" | "warning" | "danger";
|
106
106
|
size: string;
|
107
107
|
closable: boolean;
|
108
108
|
closeText: string;
|
@@ -128,8 +128,8 @@ declare const BkAlert: {
|
|
128
128
|
$nextTick: typeof import("vue").nextTick;
|
129
129
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
130
130
|
} & Readonly<import("vue").ExtractPropTypes<{
|
131
|
-
theme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
132
|
-
default: "info" | "success" | "warning" | "danger";
|
131
|
+
theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
132
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
133
133
|
};
|
134
134
|
size: import("vue-types").VueTypeValidableDef<string> & {
|
135
135
|
default: string;
|
@@ -162,8 +162,8 @@ declare const BkAlert: {
|
|
162
162
|
__isTeleport?: never;
|
163
163
|
__isSuspense?: never;
|
164
164
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
165
|
-
theme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
166
|
-
default: "info" | "success" | "warning" | "danger";
|
165
|
+
theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
166
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
167
167
|
};
|
168
168
|
size: import("vue-types").VueTypeValidableDef<string> & {
|
169
169
|
default: string;
|
@@ -195,7 +195,7 @@ declare const BkAlert: {
|
|
195
195
|
close: (event: Event) => Event;
|
196
196
|
}, string, {
|
197
197
|
title: string;
|
198
|
-
theme: "info" | "success" | "warning" | "danger";
|
198
|
+
theme: "" | "info" | "success" | "warning" | "danger";
|
199
199
|
size: string;
|
200
200
|
closable: boolean;
|
201
201
|
closeText: string;
|
@@ -38,8 +38,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
38
38
|
}, {
|
39
39
|
resolveClassName: (cls: string) => string;
|
40
40
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
41
|
-
'update:modelValue': (value:
|
42
|
-
change: (value:
|
41
|
+
'update:modelValue': (value: any[]) => boolean;
|
42
|
+
change: (value: any[]) => boolean;
|
43
43
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
44
44
|
name: import("vue-types").VueTypeValidableDef<string> & {
|
45
45
|
default: string;
|
@@ -58,8 +58,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
58
58
|
default: boolean;
|
59
59
|
};
|
60
60
|
}>> & {
|
61
|
-
onChange?: (value:
|
62
|
-
"onUpdate:modelValue"?: (value:
|
61
|
+
onChange?: (value: any[]) => any;
|
62
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
63
63
|
}, {
|
64
64
|
name: string;
|
65
65
|
disabled: boolean;
|
package/lib/checkbox/index.d.ts
CHANGED
@@ -285,8 +285,8 @@ declare const BkCheckbox: {
|
|
285
285
|
}, {
|
286
286
|
resolveClassName: (cls: string) => string;
|
287
287
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
288
|
-
'update:modelValue': (value:
|
289
|
-
change: (value:
|
288
|
+
'update:modelValue': (value: any[]) => boolean;
|
289
|
+
change: (value: any[]) => boolean;
|
290
290
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
291
291
|
name: import("vue-types").VueTypeValidableDef<string> & {
|
292
292
|
default: string;
|
@@ -305,8 +305,8 @@ declare const BkCheckbox: {
|
|
305
305
|
default: boolean;
|
306
306
|
};
|
307
307
|
}>> & {
|
308
|
-
onChange?: (value:
|
309
|
-
"onUpdate:modelValue"?: (value:
|
308
|
+
onChange?: (value: any[]) => any;
|
309
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
310
310
|
}, {
|
311
311
|
name: string;
|
312
312
|
disabled: boolean;
|
@@ -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?:
|
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<
|
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:
|
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<
|
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<
|
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:
|
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<
|
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<
|
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<
|
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:
|
360
|
+
valueBehavior: "all" | "need-key";
|
361
361
|
shrink: boolean;
|
362
362
|
uniqueSelect: boolean;
|
363
363
|
}, {}>;
|
package/lib/select/index.d.ts
CHANGED
@@ -12,7 +12,7 @@ declare const BkSelect: {
|
|
12
12
|
showOnInit?: boolean;
|
13
13
|
placeholder?: string;
|
14
14
|
list?: any[];
|
15
|
-
tagTheme?: "info" | "success" | "warning" | "danger";
|
15
|
+
tagTheme?: "" | "info" | "success" | "warning" | "danger";
|
16
16
|
behavior?: "normal" | "simplicity";
|
17
17
|
selectedStyle?: "checkbox" | "check";
|
18
18
|
loading?: boolean;
|
@@ -166,8 +166,8 @@ declare const BkSelect: {
|
|
166
166
|
multipleMode: import("vue-types").VueTypeDef<string> & {
|
167
167
|
default: string;
|
168
168
|
};
|
169
|
-
tagTheme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
170
|
-
default: "info" | "success" | "warning" | "danger";
|
169
|
+
tagTheme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
170
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
171
171
|
};
|
172
172
|
behavior: import("vue-types").VueTypeDef<"normal" | "simplicity"> & {
|
173
173
|
default: "normal" | "simplicity";
|
@@ -428,7 +428,7 @@ declare const BkSelect: {
|
|
428
428
|
$props: {
|
429
429
|
disabled?: boolean;
|
430
430
|
placeholder?: string;
|
431
|
-
tagTheme?: "info" | "success" | "warning" | "danger";
|
431
|
+
tagTheme?: "" | "info" | "success" | "warning" | "danger";
|
432
432
|
selected?: import("./type").ISelected[];
|
433
433
|
filterable?: boolean;
|
434
434
|
allowCreate?: boolean;
|
@@ -501,8 +501,8 @@ declare const BkSelect: {
|
|
501
501
|
type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
|
502
502
|
default: () => any[];
|
503
503
|
};
|
504
|
-
tagTheme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
505
|
-
default: "info" | "success" | "warning" | "danger";
|
504
|
+
tagTheme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
505
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
506
506
|
};
|
507
507
|
placeholder: import("vue-types").VueTypeValidableDef<string> & {
|
508
508
|
default: string;
|
@@ -551,7 +551,7 @@ declare const BkSelect: {
|
|
551
551
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("keydown" | "update:modelValue" | "enter" | "remove")[], string, {
|
552
552
|
disabled: boolean;
|
553
553
|
placeholder: string;
|
554
|
-
tagTheme: "info" | "success" | "warning" | "danger";
|
554
|
+
tagTheme: "" | "info" | "success" | "warning" | "danger";
|
555
555
|
selected: import("./type").ISelected[];
|
556
556
|
filterable: boolean;
|
557
557
|
allowCreate: boolean;
|
@@ -581,8 +581,8 @@ declare const BkSelect: {
|
|
581
581
|
type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
|
582
582
|
default: () => any[];
|
583
583
|
};
|
584
|
-
tagTheme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
585
|
-
default: "info" | "success" | "warning" | "danger";
|
584
|
+
tagTheme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
585
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
586
586
|
};
|
587
587
|
placeholder: import("vue-types").VueTypeValidableDef<string> & {
|
588
588
|
default: string;
|
@@ -788,7 +788,6 @@ declare const BkSelect: {
|
|
788
788
|
handleScroll: (e: any) => void;
|
789
789
|
handleDeleteTag: (val: string) => void;
|
790
790
|
handleInputChange: (value: any) => void;
|
791
|
-
handleInputEnter: (val: string | number, e: Event) => void;
|
792
791
|
handleKeydown: (e: KeyboardEvent) => void;
|
793
792
|
handleSelectedAllOptionMouseEnter: () => void;
|
794
793
|
handlePopoverShow: () => void;
|
@@ -805,7 +804,7 @@ declare const BkSelect: {
|
|
805
804
|
showOnInit: boolean;
|
806
805
|
placeholder: string;
|
807
806
|
list: any[];
|
808
|
-
tagTheme: "info" | "success" | "warning" | "danger";
|
807
|
+
tagTheme: "" | "info" | "success" | "warning" | "danger";
|
809
808
|
behavior: "normal" | "simplicity";
|
810
809
|
selectedStyle: "checkbox" | "check";
|
811
810
|
loading: boolean;
|
@@ -911,8 +910,8 @@ declare const BkSelect: {
|
|
911
910
|
multipleMode: import("vue-types").VueTypeDef<string> & {
|
912
911
|
default: string;
|
913
912
|
};
|
914
|
-
tagTheme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
915
|
-
default: "info" | "success" | "warning" | "danger";
|
913
|
+
tagTheme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
914
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
916
915
|
};
|
917
916
|
behavior: import("vue-types").VueTypeDef<"normal" | "simplicity"> & {
|
918
917
|
default: "normal" | "simplicity";
|
@@ -1173,7 +1172,7 @@ declare const BkSelect: {
|
|
1173
1172
|
$props: {
|
1174
1173
|
disabled?: boolean;
|
1175
1174
|
placeholder?: string;
|
1176
|
-
tagTheme?: "info" | "success" | "warning" | "danger";
|
1175
|
+
tagTheme?: "" | "info" | "success" | "warning" | "danger";
|
1177
1176
|
selected?: import("./type").ISelected[];
|
1178
1177
|
filterable?: boolean;
|
1179
1178
|
allowCreate?: boolean;
|
@@ -1246,8 +1245,8 @@ declare const BkSelect: {
|
|
1246
1245
|
type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
|
1247
1246
|
default: () => any[];
|
1248
1247
|
};
|
1249
|
-
tagTheme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
1250
|
-
default: "info" | "success" | "warning" | "danger";
|
1248
|
+
tagTheme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
1249
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
1251
1250
|
};
|
1252
1251
|
placeholder: import("vue-types").VueTypeValidableDef<string> & {
|
1253
1252
|
default: string;
|
@@ -1296,7 +1295,7 @@ declare const BkSelect: {
|
|
1296
1295
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("keydown" | "update:modelValue" | "enter" | "remove")[], string, {
|
1297
1296
|
disabled: boolean;
|
1298
1297
|
placeholder: string;
|
1299
|
-
tagTheme: "info" | "success" | "warning" | "danger";
|
1298
|
+
tagTheme: "" | "info" | "success" | "warning" | "danger";
|
1300
1299
|
selected: import("./type").ISelected[];
|
1301
1300
|
filterable: boolean;
|
1302
1301
|
allowCreate: boolean;
|
@@ -1326,8 +1325,8 @@ declare const BkSelect: {
|
|
1326
1325
|
type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
|
1327
1326
|
default: () => any[];
|
1328
1327
|
};
|
1329
|
-
tagTheme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
1330
|
-
default: "info" | "success" | "warning" | "danger";
|
1328
|
+
tagTheme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
1329
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
1331
1330
|
};
|
1332
1331
|
placeholder: import("vue-types").VueTypeValidableDef<string> & {
|
1333
1332
|
default: string;
|
@@ -1533,7 +1532,6 @@ declare const BkSelect: {
|
|
1533
1532
|
handleScroll: (e: any) => void;
|
1534
1533
|
handleDeleteTag: (val: string) => void;
|
1535
1534
|
handleInputChange: (value: any) => void;
|
1536
|
-
handleInputEnter: (val: string | number, e: Event) => void;
|
1537
1535
|
handleKeydown: (e: KeyboardEvent) => void;
|
1538
1536
|
handleSelectedAllOptionMouseEnter: () => void;
|
1539
1537
|
handlePopoverShow: () => void;
|
@@ -1602,8 +1600,8 @@ declare const BkSelect: {
|
|
1602
1600
|
multipleMode: import("vue-types").VueTypeDef<string> & {
|
1603
1601
|
default: string;
|
1604
1602
|
};
|
1605
|
-
tagTheme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
1606
|
-
default: "info" | "success" | "warning" | "danger";
|
1603
|
+
tagTheme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
1604
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
1607
1605
|
};
|
1608
1606
|
behavior: import("vue-types").VueTypeDef<"normal" | "simplicity"> & {
|
1609
1607
|
default: "normal" | "simplicity";
|
@@ -1864,7 +1862,7 @@ declare const BkSelect: {
|
|
1864
1862
|
$props: {
|
1865
1863
|
disabled?: boolean;
|
1866
1864
|
placeholder?: string;
|
1867
|
-
tagTheme?: "info" | "success" | "warning" | "danger";
|
1865
|
+
tagTheme?: "" | "info" | "success" | "warning" | "danger";
|
1868
1866
|
selected?: import("./type").ISelected[];
|
1869
1867
|
filterable?: boolean;
|
1870
1868
|
allowCreate?: boolean;
|
@@ -1937,8 +1935,8 @@ declare const BkSelect: {
|
|
1937
1935
|
type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
|
1938
1936
|
default: () => any[];
|
1939
1937
|
};
|
1940
|
-
tagTheme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
1941
|
-
default: "info" | "success" | "warning" | "danger";
|
1938
|
+
tagTheme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
1939
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
1942
1940
|
};
|
1943
1941
|
placeholder: import("vue-types").VueTypeValidableDef<string> & {
|
1944
1942
|
default: string;
|
@@ -1987,7 +1985,7 @@ declare const BkSelect: {
|
|
1987
1985
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("keydown" | "update:modelValue" | "enter" | "remove")[], string, {
|
1988
1986
|
disabled: boolean;
|
1989
1987
|
placeholder: string;
|
1990
|
-
tagTheme: "info" | "success" | "warning" | "danger";
|
1988
|
+
tagTheme: "" | "info" | "success" | "warning" | "danger";
|
1991
1989
|
selected: import("./type").ISelected[];
|
1992
1990
|
filterable: boolean;
|
1993
1991
|
allowCreate: boolean;
|
@@ -2017,8 +2015,8 @@ declare const BkSelect: {
|
|
2017
2015
|
type: import("vue-types/dist/types").PropType<import("./type").ISelected[]>;
|
2018
2016
|
default: () => any[];
|
2019
2017
|
};
|
2020
|
-
tagTheme: import("vue-types").VueTypeDef<"info" | "success" | "warning" | "danger"> & {
|
2021
|
-
default: "info" | "success" | "warning" | "danger";
|
2018
|
+
tagTheme: import("vue-types").VueTypeDef<"" | "info" | "success" | "warning" | "danger"> & {
|
2019
|
+
default: "" | "info" | "success" | "warning" | "danger";
|
2022
2020
|
};
|
2023
2021
|
placeholder: import("vue-types").VueTypeValidableDef<string> & {
|
2024
2022
|
default: string;
|
@@ -2224,7 +2222,6 @@ declare const BkSelect: {
|
|
2224
2222
|
handleScroll: (e: any) => void;
|
2225
2223
|
handleDeleteTag: (val: string) => void;
|
2226
2224
|
handleInputChange: (value: any) => void;
|
2227
|
-
handleInputEnter: (val: string | number, e: Event) => void;
|
2228
2225
|
handleKeydown: (e: KeyboardEvent) => void;
|
2229
2226
|
handleSelectedAllOptionMouseEnter: () => void;
|
2230
2227
|
handlePopoverShow: () => void;
|
@@ -2241,7 +2238,7 @@ declare const BkSelect: {
|
|
2241
2238
|
showOnInit: boolean;
|
2242
2239
|
placeholder: string;
|
2243
2240
|
list: any[];
|
2244
|
-
tagTheme: "info" | "success" | "warning" | "danger";
|
2241
|
+
tagTheme: "" | "info" | "success" | "warning" | "danger";
|
2245
2242
|
behavior: "normal" | "simplicity";
|
2246
2243
|
selectedStyle: "checkbox" | "check";
|
2247
2244
|
loading: boolean;
|
@@ -2283,6 +2280,11 @@ declare const BkSelect: {
|
|
2283
2280
|
} & {
|
2284
2281
|
default: boolean;
|
2285
2282
|
};
|
2283
|
+
order: import("vue-types").VueTypeValidableDef<number> & {
|
2284
|
+
default: number;
|
2285
|
+
} & {
|
2286
|
+
default: number;
|
2287
|
+
};
|
2286
2288
|
}, {
|
2287
2289
|
selected: import("vue").ComputedRef<boolean>;
|
2288
2290
|
multiple: import("vue").ComputedRef<boolean>;
|
@@ -2306,8 +2308,14 @@ declare const BkSelect: {
|
|
2306
2308
|
} & {
|
2307
2309
|
default: boolean;
|
2308
2310
|
};
|
2311
|
+
order: import("vue-types").VueTypeValidableDef<number> & {
|
2312
|
+
default: number;
|
2313
|
+
} & {
|
2314
|
+
default: number;
|
2315
|
+
};
|
2309
2316
|
}>>, {
|
2310
2317
|
disabled: boolean;
|
2318
|
+
order: number;
|
2311
2319
|
}, {}>;
|
2312
2320
|
Group: import("vue").DefineComponent<{
|
2313
2321
|
label: import("vue-types").VueTypeValidableDef<string> & {
|