bkui-vue 0.0.1-beta.390 → 0.0.1-beta.391
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 +22 -22
- package/dist/index.esm.js +0 -1
- package/dist/index.umd.js +23 -23
- package/lib/badge/badge.d.ts +1 -1
- package/lib/badge/index.d.ts +4 -4
- package/lib/breadcrumb/breadcrumb-item.d.ts +1 -1
- package/lib/breadcrumb/breadcrumb.d.ts +1 -1
- package/lib/breadcrumb/index.d.ts +5 -5
- package/lib/cascader/cascader.d.ts +3 -3
- package/lib/cascader/index.d.ts +10 -10
- package/lib/color-picker/color-picker.d.ts +1 -1
- package/lib/color-picker/index.d.ts +4 -4
- package/lib/container/container.d.ts +1 -1
- package/lib/container/index.d.ts +4 -4
- package/lib/date-picker/date-picker.d.ts +2 -2
- package/lib/date-picker/index.d.ts +7 -7
- package/lib/date-picker/panel/time-range.d.ts +3 -3
- package/lib/date-picker/panel/time.d.ts +3 -3
- package/lib/date-picker/time-picker.d.ts +3 -3
- package/lib/dialog/dialog.d.ts +2 -2
- package/lib/dialog/index.d.ts +7 -7
- package/lib/directives/index.d.ts +1 -0
- package/lib/directives/index.js +13 -6
- package/lib/dropdown/dropdown.d.ts +2 -2
- package/lib/dropdown/index.d.ts +7 -7
- package/lib/fixed-navbar/fixed-navbar.d.ts +1 -1
- package/lib/fixed-navbar/index.d.ts +4 -4
- package/lib/form/form-item.d.ts +1 -1
- package/lib/form/index.d.ts +1 -1
- package/lib/input/index.d.ts +4 -4
- package/lib/input/input.d.ts +1 -1
- package/lib/link/index.d.ts +4 -4
- package/lib/link/link.d.ts +1 -1
- package/lib/loading/index.d.ts +4 -4
- package/lib/loading/loading.d.ts +1 -1
- package/lib/modal/index.d.ts +4 -4
- package/lib/modal/modal.d.ts +1 -1
- package/lib/notify/notifyConstructor.d.ts +1 -1
- package/lib/pagination/index.d.ts +4 -4
- package/lib/pagination/pagination.d.ts +1 -1
- package/lib/popover/index.d.ts +10 -10
- package/lib/popover/popover.d.ts +3 -3
- package/lib/process/index.d.ts +4 -4
- package/lib/process/process.d.ts +1 -1
- package/lib/progress/index.d.ts +7 -7
- package/lib/progress/progress.d.ts +2 -2
- package/lib/select/index.d.ts +10 -10
- package/lib/select/select.d.ts +3 -3
- package/lib/sideslider/index.d.ts +4 -4
- package/lib/sideslider/sideslider.d.ts +1 -1
- package/lib/slider/index.d.ts +7 -7
- package/lib/slider/slider.d.ts +2 -2
- package/lib/switcher/index.d.ts +4 -4
- package/lib/switcher/switcher.d.ts +1 -1
- package/lib/tab/index.d.ts +4 -4
- package/lib/tab/tab.d.ts +1 -1
- package/lib/tag-input/index.d.ts +7 -7
- package/lib/tag-input/tag-input.d.ts +2 -2
- package/lib/time-picker/index.d.ts +10 -10
- package/lib/timeline/index.d.ts +4 -4
- package/lib/timeline/timeline.d.ts +1 -1
- package/lib/upload/index.d.ts +7 -7
- package/lib/upload/upload-list.d.ts +1 -1
- package/lib/upload/upload-trigger.d.ts +1 -1
- package/lib/upload/upload.d.ts +2 -2
- package/package.json +1 -1
@@ -3,8 +3,8 @@ declare const BkFixedNavbar: {
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
|
-
extCls: string;
|
7
6
|
position: string;
|
7
|
+
extCls: string;
|
8
8
|
modelValue: boolean;
|
9
9
|
navItems: unknown[];
|
10
10
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
@@ -29,7 +29,7 @@ declare const BkFixedNavbar: {
|
|
29
29
|
}>> & {
|
30
30
|
onClick?: (...args: any[]) => any;
|
31
31
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
32
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
32
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "position" | "extCls" | "modelValue" | "navItems">;
|
33
33
|
$attrs: {
|
34
34
|
[x: string]: unknown;
|
35
35
|
};
|
@@ -66,8 +66,8 @@ declare const BkFixedNavbar: {
|
|
66
66
|
onClick?: (...args: any[]) => any;
|
67
67
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
68
68
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:modelValue")[], string, {
|
69
|
-
extCls: string;
|
70
69
|
position: string;
|
70
|
+
extCls: string;
|
71
71
|
modelValue: boolean;
|
72
72
|
navItems: unknown[];
|
73
73
|
}> & {
|
@@ -139,8 +139,8 @@ declare const BkFixedNavbar: {
|
|
139
139
|
onClick?: (...args: any[]) => any;
|
140
140
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
141
141
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:modelValue")[], "click" | "update:modelValue", {
|
142
|
-
extCls: string;
|
143
142
|
position: string;
|
143
|
+
extCls: string;
|
144
144
|
modelValue: boolean;
|
145
145
|
navItems: unknown[];
|
146
146
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
|
package/lib/form/form-item.d.ts
CHANGED
package/lib/form/index.d.ts
CHANGED
package/lib/input/index.d.ts
CHANGED
@@ -6,9 +6,9 @@ declare const BkInput: {
|
|
6
6
|
behavior: "simplicity" | "normal";
|
7
7
|
type: string;
|
8
8
|
disabled: boolean;
|
9
|
+
step: number;
|
9
10
|
placeholder: string;
|
10
11
|
prefix: string;
|
11
|
-
step: number;
|
12
12
|
max: number;
|
13
13
|
min: number;
|
14
14
|
maxlength: number;
|
@@ -121,7 +121,7 @@ declare const BkInput: {
|
|
121
121
|
onEnter?: (_value: any, _evt?: Event | KeyboardEvent) => any;
|
122
122
|
"onUpdate:modelValue"?: (_value: any, _evt?: Event | KeyboardEvent) => any;
|
123
123
|
onClear?: () => any;
|
124
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "behavior" | "type" | "disabled" | "
|
124
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "behavior" | "type" | "disabled" | "step" | "placeholder" | "prefix" | "max" | "min" | "maxlength" | "clearable" | "readonly" | "prefixIcon" | "suffixIcon" | "suffix" | "showWordLimit" | "showControl" | "showClearOnlyHover" | "precision" | "rows" | "selectReadonly" | "withValidate">;
|
125
125
|
$attrs: {
|
126
126
|
[x: string]: unknown;
|
127
127
|
};
|
@@ -251,9 +251,9 @@ declare const BkInput: {
|
|
251
251
|
behavior: "simplicity" | "normal";
|
252
252
|
type: string;
|
253
253
|
disabled: boolean;
|
254
|
+
step: number;
|
254
255
|
placeholder: string;
|
255
256
|
prefix: string;
|
256
|
-
step: number;
|
257
257
|
max: number;
|
258
258
|
min: number;
|
259
259
|
maxlength: number;
|
@@ -506,9 +506,9 @@ declare const BkInput: {
|
|
506
506
|
behavior: "simplicity" | "normal";
|
507
507
|
type: string;
|
508
508
|
disabled: boolean;
|
509
|
+
step: number;
|
509
510
|
placeholder: string;
|
510
511
|
prefix: string;
|
511
|
-
step: number;
|
512
512
|
max: number;
|
513
513
|
min: number;
|
514
514
|
maxlength: number;
|
package/lib/input/input.d.ts
CHANGED
@@ -315,9 +315,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
315
315
|
behavior: "simplicity" | "normal";
|
316
316
|
type: string;
|
317
317
|
disabled: boolean;
|
318
|
+
step: number;
|
318
319
|
placeholder: string;
|
319
320
|
prefix: string;
|
320
|
-
step: number;
|
321
321
|
max: number;
|
322
322
|
min: number;
|
323
323
|
maxlength: number;
|
package/lib/link/index.d.ts
CHANGED
@@ -4,8 +4,8 @@ declare const BkLink: {
|
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
6
|
target: string;
|
7
|
-
theme: "success" | "warning" | "danger" | "default" | "primary";
|
8
7
|
disabled: boolean;
|
8
|
+
theme: "success" | "warning" | "danger" | "default" | "primary";
|
9
9
|
underline: boolean;
|
10
10
|
href: string;
|
11
11
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
@@ -34,7 +34,7 @@ declare const BkLink: {
|
|
34
34
|
};
|
35
35
|
}>> & {
|
36
36
|
onClick?: (...args: any[]) => any;
|
37
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "target" | "
|
37
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "target" | "disabled" | "theme" | "underline" | "href">;
|
38
38
|
$attrs: {
|
39
39
|
[x: string]: unknown;
|
40
40
|
};
|
@@ -78,8 +78,8 @@ declare const BkLink: {
|
|
78
78
|
handleClick: (event: Event) => boolean;
|
79
79
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], string, {
|
80
80
|
target: string;
|
81
|
-
theme: "success" | "warning" | "danger" | "default" | "primary";
|
82
81
|
disabled: boolean;
|
82
|
+
theme: "success" | "warning" | "danger" | "default" | "primary";
|
83
83
|
underline: boolean;
|
84
84
|
href: string;
|
85
85
|
}> & {
|
@@ -164,8 +164,8 @@ declare const BkLink: {
|
|
164
164
|
handleClick: (event: Event) => boolean;
|
165
165
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", {
|
166
166
|
target: string;
|
167
|
-
theme: "success" | "warning" | "danger" | "default" | "primary";
|
168
167
|
disabled: boolean;
|
168
|
+
theme: "success" | "warning" | "danger" | "default" | "primary";
|
169
169
|
underline: boolean;
|
170
170
|
href: string;
|
171
171
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
|
package/lib/link/link.d.ts
CHANGED
@@ -52,8 +52,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
52
52
|
onClick?: (...args: any[]) => any;
|
53
53
|
}, {
|
54
54
|
target: string;
|
55
|
-
theme: "success" | "warning" | "danger" | "default" | "primary";
|
56
55
|
disabled: boolean;
|
56
|
+
theme: "success" | "warning" | "danger" | "default" | "primary";
|
57
57
|
underline: boolean;
|
58
58
|
href: string;
|
59
59
|
}>;
|
package/lib/loading/index.d.ts
CHANGED
@@ -8,8 +8,8 @@ declare const BkLoading: {
|
|
8
8
|
zIndex: number;
|
9
9
|
mode: "default" | "spin";
|
10
10
|
color: string;
|
11
|
-
inline: boolean;
|
12
11
|
size: "" | "small" | "large" | "mini";
|
12
|
+
inline: boolean;
|
13
13
|
opacity: number;
|
14
14
|
loading: boolean;
|
15
15
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
@@ -57,7 +57,7 @@ declare const BkLoading: {
|
|
57
57
|
} & {
|
58
58
|
default: number;
|
59
59
|
};
|
60
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "zIndex" | "mode" | "color" | "
|
60
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "zIndex" | "mode" | "color" | "size" | "inline" | "opacity" | "loading">;
|
61
61
|
$attrs: {
|
62
62
|
[x: string]: unknown;
|
63
63
|
};
|
@@ -121,8 +121,8 @@ declare const BkLoading: {
|
|
121
121
|
zIndex: number;
|
122
122
|
mode: "default" | "spin";
|
123
123
|
color: string;
|
124
|
-
inline: boolean;
|
125
124
|
size: "" | "small" | "large" | "mini";
|
125
|
+
inline: boolean;
|
126
126
|
opacity: number;
|
127
127
|
loading: boolean;
|
128
128
|
}> & {
|
@@ -244,8 +244,8 @@ declare const BkLoading: {
|
|
244
244
|
zIndex: number;
|
245
245
|
mode: "default" | "spin";
|
246
246
|
color: string;
|
247
|
-
inline: boolean;
|
248
247
|
size: "" | "small" | "large" | "mini";
|
248
|
+
inline: boolean;
|
249
249
|
opacity: number;
|
250
250
|
loading: boolean;
|
251
251
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & Readonly<{
|
package/lib/loading/loading.d.ts
CHANGED
@@ -152,8 +152,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
152
152
|
zIndex: number;
|
153
153
|
mode: "default" | "spin";
|
154
154
|
color: string;
|
155
|
-
inline: boolean;
|
156
155
|
size: "" | "small" | "large" | "mini";
|
156
|
+
inline: boolean;
|
157
157
|
opacity: number;
|
158
158
|
loading: boolean;
|
159
159
|
}>;
|
package/lib/modal/index.d.ts
CHANGED
@@ -12,11 +12,11 @@ declare const BkModal: {
|
|
12
12
|
zIndex: string | number;
|
13
13
|
showMask: boolean;
|
14
14
|
direction: string;
|
15
|
-
extCls: string | unknown[];
|
16
15
|
width: string | number;
|
17
16
|
height: string | number;
|
18
17
|
maxHeight: string;
|
19
18
|
isShow: boolean;
|
19
|
+
extCls: string | unknown[];
|
20
20
|
draggable: boolean;
|
21
21
|
transfer: boolean;
|
22
22
|
quickClose: boolean;
|
@@ -117,7 +117,7 @@ declare const BkModal: {
|
|
117
117
|
"onQuick-close"?: (...args: any[]) => any;
|
118
118
|
onQuickClose?: (...args: any[]) => any;
|
119
119
|
onShown?: (...args: any[]) => any;
|
120
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "direction" | "
|
120
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "direction" | "width" | "height" | "maxHeight" | "isShow" | "extCls" | "draggable" | "transfer" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType">;
|
121
121
|
$attrs: {
|
122
122
|
[x: string]: unknown;
|
123
123
|
};
|
@@ -239,11 +239,11 @@ declare const BkModal: {
|
|
239
239
|
zIndex: string | number;
|
240
240
|
showMask: boolean;
|
241
241
|
direction: string;
|
242
|
-
extCls: string | unknown[];
|
243
242
|
width: string | number;
|
244
243
|
height: string | number;
|
245
244
|
maxHeight: string;
|
246
245
|
isShow: boolean;
|
246
|
+
extCls: string | unknown[];
|
247
247
|
draggable: boolean;
|
248
248
|
transfer: boolean;
|
249
249
|
quickClose: boolean;
|
@@ -486,11 +486,11 @@ declare const BkModal: {
|
|
486
486
|
zIndex: string | number;
|
487
487
|
showMask: boolean;
|
488
488
|
direction: string;
|
489
|
-
extCls: string | unknown[];
|
490
489
|
width: string | number;
|
491
490
|
height: string | number;
|
492
491
|
maxHeight: string;
|
493
492
|
isShow: boolean;
|
493
|
+
extCls: string | unknown[];
|
494
494
|
draggable: boolean;
|
495
495
|
transfer: boolean;
|
496
496
|
quickClose: boolean;
|
package/lib/modal/modal.d.ts
CHANGED
@@ -192,11 +192,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
192
192
|
zIndex: string | number;
|
193
193
|
showMask: boolean;
|
194
194
|
direction: string;
|
195
|
-
extCls: string | unknown[];
|
196
195
|
width: string | number;
|
197
196
|
height: string | number;
|
198
197
|
maxHeight: string;
|
199
198
|
isShow: boolean;
|
199
|
+
extCls: string | unknown[];
|
200
200
|
draggable: boolean;
|
201
201
|
transfer: boolean;
|
202
202
|
quickClose: boolean;
|
@@ -119,8 +119,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
119
119
|
title: string;
|
120
120
|
id: string;
|
121
121
|
theme: "error" | "success" | "warning" | "primary";
|
122
|
-
extCls: string;
|
123
122
|
position: string;
|
123
|
+
extCls: string;
|
124
124
|
onClose: (...args: any[]) => any;
|
125
125
|
message: any;
|
126
126
|
offsetX: number;
|
@@ -7,8 +7,8 @@ declare const BkPagination: {
|
|
7
7
|
align: string;
|
8
8
|
type: string;
|
9
9
|
disabled: boolean;
|
10
|
-
location: string;
|
11
10
|
layout: string[];
|
11
|
+
location: string;
|
12
12
|
count: number;
|
13
13
|
modelValue: number;
|
14
14
|
beforeChange: (...args: any[]) => any;
|
@@ -86,7 +86,7 @@ declare const BkPagination: {
|
|
86
86
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
87
87
|
"onUpdate:limit"?: (...args: any[]) => any;
|
88
88
|
onLimitChange?: (...args: any[]) => any;
|
89
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "small" | "align" | "type" | "disabled" | "
|
89
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "small" | "align" | "type" | "disabled" | "layout" | "location" | "count" | "modelValue" | "beforeChange" | "prevText" | "nextText" | "limit" | "limitList" | "showLimit" | "showTotalCount">;
|
90
90
|
$attrs: {
|
91
91
|
[x: string]: unknown;
|
92
92
|
};
|
@@ -188,8 +188,8 @@ declare const BkPagination: {
|
|
188
188
|
align: string;
|
189
189
|
type: string;
|
190
190
|
disabled: boolean;
|
191
|
-
location: string;
|
192
191
|
layout: string[];
|
192
|
+
location: string;
|
193
193
|
count: number;
|
194
194
|
modelValue: number;
|
195
195
|
beforeChange: (...args: any[]) => any;
|
@@ -394,8 +394,8 @@ declare const BkPagination: {
|
|
394
394
|
align: string;
|
395
395
|
type: string;
|
396
396
|
disabled: boolean;
|
397
|
-
location: string;
|
398
397
|
layout: string[];
|
398
|
+
location: string;
|
399
399
|
count: number;
|
400
400
|
modelValue: number;
|
401
401
|
beforeChange: (...args: any[]) => any;
|
@@ -215,8 +215,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
215
215
|
align: string;
|
216
216
|
type: string;
|
217
217
|
disabled: boolean;
|
218
|
-
location: string;
|
219
218
|
layout: string[];
|
219
|
+
location: string;
|
220
220
|
count: number;
|
221
221
|
modelValue: number;
|
222
222
|
beforeChange: (...args: any[]) => any;
|
package/lib/popover/index.d.ts
CHANGED
@@ -13,14 +13,14 @@ declare const BkPopover: {
|
|
13
13
|
zIndex: number;
|
14
14
|
content: string | number;
|
15
15
|
trigger: "hover" | "click" | "manual";
|
16
|
-
arrow: boolean;
|
17
|
-
theme: string;
|
18
|
-
disabled: boolean;
|
19
16
|
width: string | number;
|
20
17
|
height: string | number;
|
21
18
|
maxHeight: string | number;
|
19
|
+
arrow: boolean;
|
22
20
|
isShow: boolean;
|
23
21
|
always: boolean;
|
22
|
+
disabled: boolean;
|
23
|
+
theme: string;
|
24
24
|
renderType: "auto" | "shown";
|
25
25
|
padding: number;
|
26
26
|
disableTeleport: boolean;
|
@@ -146,7 +146,7 @@ declare const BkPopover: {
|
|
146
146
|
onContentMouseenter?: (...args: any[]) => any;
|
147
147
|
onContentMouseleave?: (...args: any[]) => any;
|
148
148
|
onStopHide?: (...args: any[]) => any;
|
149
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "modifiers" | "offset" | "zIndex" | "content" | "trigger" | "
|
149
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "modifiers" | "offset" | "zIndex" | "content" | "trigger" | "width" | "height" | "maxHeight" | "arrow" | "isShow" | "always" | "disabled" | "theme" | "renderType" | "padding" | "disableTeleport" | "autoPlacement" | "autoVisibility" | "disableOutsideClick" | "disableTransform" | "reference" | "popoverDelay">;
|
150
150
|
$attrs: {
|
151
151
|
[x: string]: unknown;
|
152
152
|
};
|
@@ -309,14 +309,14 @@ declare const BkPopover: {
|
|
309
309
|
zIndex: number;
|
310
310
|
content: string | number;
|
311
311
|
trigger: "hover" | "click" | "manual";
|
312
|
-
arrow: boolean;
|
313
|
-
theme: string;
|
314
|
-
disabled: boolean;
|
315
312
|
width: string | number;
|
316
313
|
height: string | number;
|
317
314
|
maxHeight: string | number;
|
315
|
+
arrow: boolean;
|
318
316
|
isShow: boolean;
|
319
317
|
always: boolean;
|
318
|
+
disabled: boolean;
|
319
|
+
theme: string;
|
320
320
|
renderType: "auto" | "shown";
|
321
321
|
padding: number;
|
322
322
|
disableTeleport: boolean;
|
@@ -630,14 +630,14 @@ declare const BkPopover: {
|
|
630
630
|
zIndex: number;
|
631
631
|
content: string | number;
|
632
632
|
trigger: "hover" | "click" | "manual";
|
633
|
-
arrow: boolean;
|
634
|
-
theme: string;
|
635
|
-
disabled: boolean;
|
636
633
|
width: string | number;
|
637
634
|
height: string | number;
|
638
635
|
maxHeight: string | number;
|
636
|
+
arrow: boolean;
|
639
637
|
isShow: boolean;
|
640
638
|
always: boolean;
|
639
|
+
disabled: boolean;
|
640
|
+
theme: string;
|
641
641
|
renderType: "auto" | "shown";
|
642
642
|
padding: number;
|
643
643
|
disableTeleport: boolean;
|
package/lib/popover/popover.d.ts
CHANGED
@@ -256,14 +256,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
256
256
|
zIndex: number;
|
257
257
|
content: string | number;
|
258
258
|
trigger: "hover" | "click" | "manual";
|
259
|
-
arrow: boolean;
|
260
|
-
theme: string;
|
261
|
-
disabled: boolean;
|
262
259
|
width: string | number;
|
263
260
|
height: string | number;
|
264
261
|
maxHeight: string | number;
|
262
|
+
arrow: boolean;
|
265
263
|
isShow: boolean;
|
266
264
|
always: boolean;
|
265
|
+
disabled: boolean;
|
266
|
+
theme: string;
|
267
267
|
renderType: "auto" | "shown";
|
268
268
|
padding: number;
|
269
269
|
disableTeleport: boolean;
|
package/lib/process/index.d.ts
CHANGED
@@ -3,8 +3,8 @@ declare const BkProcess: {
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
|
-
extCls: string;
|
7
6
|
list: unknown[];
|
7
|
+
extCls: string;
|
8
8
|
displayKey: string;
|
9
9
|
controllable: boolean;
|
10
10
|
showSteps: boolean;
|
@@ -41,7 +41,7 @@ declare const BkProcess: {
|
|
41
41
|
}>> & {
|
42
42
|
onClick?: (...args: any[]) => any;
|
43
43
|
"onUpdate:curProcess"?: (...args: any[]) => any;
|
44
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
44
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "list" | "extCls" | "displayKey" | "controllable" | "showSteps" | "curProcess">;
|
45
45
|
$attrs: {
|
46
46
|
[x: string]: unknown;
|
47
47
|
};
|
@@ -92,8 +92,8 @@ declare const BkProcess: {
|
|
92
92
|
paddingBottom: import("vue").Ref<number>;
|
93
93
|
jumpTo: (index: any) => Promise<void>;
|
94
94
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:curProcess")[], string, {
|
95
|
-
extCls: string;
|
96
95
|
list: unknown[];
|
96
|
+
extCls: string;
|
97
97
|
displayKey: string;
|
98
98
|
controllable: boolean;
|
99
99
|
showSteps: boolean;
|
@@ -195,8 +195,8 @@ declare const BkProcess: {
|
|
195
195
|
paddingBottom: import("vue").Ref<number>;
|
196
196
|
jumpTo: (index: any) => Promise<void>;
|
197
197
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:curProcess")[], "click" | "update:curProcess", {
|
198
|
-
extCls: string;
|
199
198
|
list: unknown[];
|
199
|
+
extCls: string;
|
200
200
|
displayKey: string;
|
201
201
|
controllable: boolean;
|
202
202
|
showSteps: boolean;
|
package/lib/process/process.d.ts
CHANGED
@@ -121,8 +121,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
121
121
|
onClick?: (...args: any[]) => any;
|
122
122
|
"onUpdate:curProcess"?: (...args: any[]) => any;
|
123
123
|
}, {
|
124
|
-
extCls: string;
|
125
124
|
list: unknown[];
|
125
|
+
extCls: string;
|
126
126
|
displayKey: string;
|
127
127
|
controllable: boolean;
|
128
128
|
showSteps: boolean;
|
package/lib/progress/index.d.ts
CHANGED
@@ -5,10 +5,10 @@ declare const BkProgress: {
|
|
5
5
|
$props: Partial<{
|
6
6
|
fixed: number;
|
7
7
|
type: string;
|
8
|
-
theme: "success" | "warning" | "danger" | "primary";
|
9
|
-
extCls: string;
|
10
8
|
width: number;
|
9
|
+
theme: "success" | "warning" | "danger" | "primary";
|
11
10
|
color: string;
|
11
|
+
extCls: string;
|
12
12
|
strokeLinecap: string;
|
13
13
|
strokeWidth: number;
|
14
14
|
format: (...args: any[]) => any;
|
@@ -91,7 +91,7 @@ declare const BkProgress: {
|
|
91
91
|
[key: string]: any;
|
92
92
|
};
|
93
93
|
};
|
94
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "fixed" | "type" | "
|
94
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "fixed" | "type" | "width" | "theme" | "color" | "extCls" | "strokeLinecap" | "strokeWidth" | "format" | "percent" | "bgColor" | "titleStyle" | "showText" | "textInside">;
|
95
95
|
$attrs: {
|
96
96
|
[x: string]: unknown;
|
97
97
|
};
|
@@ -185,10 +185,10 @@ declare const BkProgress: {
|
|
185
185
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
186
186
|
fixed: number;
|
187
187
|
type: string;
|
188
|
-
theme: "success" | "warning" | "danger" | "primary";
|
189
|
-
extCls: string;
|
190
188
|
width: number;
|
189
|
+
theme: "success" | "warning" | "danger" | "primary";
|
191
190
|
color: string;
|
191
|
+
extCls: string;
|
192
192
|
strokeLinecap: string;
|
193
193
|
strokeWidth: number;
|
194
194
|
format: (...args: any[]) => any;
|
@@ -380,10 +380,10 @@ declare const BkProgress: {
|
|
380
380
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
381
381
|
fixed: number;
|
382
382
|
type: string;
|
383
|
-
theme: "success" | "warning" | "danger" | "primary";
|
384
|
-
extCls: string;
|
385
383
|
width: number;
|
384
|
+
theme: "success" | "warning" | "danger" | "primary";
|
386
385
|
color: string;
|
386
|
+
extCls: string;
|
387
387
|
strokeLinecap: string;
|
388
388
|
strokeWidth: number;
|
389
389
|
format: (...args: any[]) => any;
|
@@ -153,10 +153,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
153
153
|
}>>, {
|
154
154
|
fixed: number;
|
155
155
|
type: string;
|
156
|
-
theme: "success" | "warning" | "danger" | "primary";
|
157
|
-
extCls: string;
|
158
156
|
width: number;
|
157
|
+
theme: "success" | "warning" | "danger" | "primary";
|
159
158
|
color: string;
|
159
|
+
extCls: string;
|
160
160
|
strokeLinecap: string;
|
161
161
|
strokeWidth: number;
|
162
162
|
format: (...args: any[]) => any;
|
package/lib/select/index.d.ts
CHANGED
@@ -7,12 +7,12 @@ declare const BkSelect: {
|
|
7
7
|
$props: Partial<{
|
8
8
|
tagTheme: "success" | "info" | "warning" | "danger";
|
9
9
|
behavior: "simplicity" | "normal";
|
10
|
-
showOnInit: boolean;
|
11
10
|
disabled: boolean;
|
12
|
-
placeholder: string;
|
13
|
-
list: unknown[];
|
14
11
|
size: "small" | "default" | "large";
|
15
12
|
multiple: boolean;
|
13
|
+
list: unknown[];
|
14
|
+
showOnInit: boolean;
|
15
|
+
placeholder: string;
|
16
16
|
loading: boolean;
|
17
17
|
clearable: boolean;
|
18
18
|
withValidate: boolean;
|
@@ -229,7 +229,7 @@ declare const BkSelect: {
|
|
229
229
|
onClear?: (...args: any[]) => any;
|
230
230
|
onToggle?: (...args: any[]) => any;
|
231
231
|
"onScroll-end"?: (...args: any[]) => any;
|
232
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "tagTheme" | "behavior" | "
|
232
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "tagTheme" | "behavior" | "disabled" | "size" | "multiple" | "list" | "showOnInit" | "placeholder" | "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" | "keepSearchValue">;
|
233
233
|
$attrs: {
|
234
234
|
[x: string]: unknown;
|
235
235
|
};
|
@@ -779,12 +779,12 @@ declare const BkSelect: {
|
|
779
779
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "blur" | "change" | "toggle" | "clear" | "update:modelValue" | "scroll-end")[], string, {
|
780
780
|
tagTheme: "success" | "info" | "warning" | "danger";
|
781
781
|
behavior: "simplicity" | "normal";
|
782
|
-
showOnInit: boolean;
|
783
782
|
disabled: boolean;
|
784
|
-
placeholder: string;
|
785
|
-
list: unknown[];
|
786
783
|
size: "small" | "default" | "large";
|
787
784
|
multiple: boolean;
|
785
|
+
list: unknown[];
|
786
|
+
showOnInit: boolean;
|
787
|
+
placeholder: string;
|
788
788
|
loading: boolean;
|
789
789
|
clearable: boolean;
|
790
790
|
withValidate: boolean;
|
@@ -1908,12 +1908,12 @@ declare const BkSelect: {
|
|
1908
1908
|
}, 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", {
|
1909
1909
|
tagTheme: "success" | "info" | "warning" | "danger";
|
1910
1910
|
behavior: "simplicity" | "normal";
|
1911
|
-
showOnInit: boolean;
|
1912
1911
|
disabled: boolean;
|
1913
|
-
placeholder: string;
|
1914
|
-
list: unknown[];
|
1915
1912
|
size: "small" | "default" | "large";
|
1916
1913
|
multiple: boolean;
|
1914
|
+
list: unknown[];
|
1915
|
+
showOnInit: boolean;
|
1916
|
+
placeholder: string;
|
1917
1917
|
loading: boolean;
|
1918
1918
|
clearable: boolean;
|
1919
1919
|
withValidate: boolean;
|
package/lib/select/select.d.ts
CHANGED
@@ -713,12 +713,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
713
713
|
}, {
|
714
714
|
tagTheme: "success" | "info" | "warning" | "danger";
|
715
715
|
behavior: "simplicity" | "normal";
|
716
|
-
showOnInit: boolean;
|
717
716
|
disabled: boolean;
|
718
|
-
placeholder: string;
|
719
|
-
list: unknown[];
|
720
717
|
size: "small" | "default" | "large";
|
721
718
|
multiple: boolean;
|
719
|
+
list: unknown[];
|
720
|
+
showOnInit: boolean;
|
721
|
+
placeholder: string;
|
722
722
|
loading: boolean;
|
723
723
|
clearable: boolean;
|
724
724
|
withValidate: boolean;
|