bkui-vue 0.0.1-beta.380 → 0.0.1-beta.382
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 +15 -15
- package/dist/index.esm.js +108 -107
- package/dist/index.umd.js +15 -15
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/alert/alert.d.ts +1 -1
- package/lib/alert/index.d.ts +4 -4
- package/lib/badge/badge.css +2 -3
- package/lib/badge/badge.d.ts +2 -2
- package/lib/badge/badge.less +2 -3
- package/lib/badge/badge.variable.css +2 -3
- package/lib/badge/index.d.ts +7 -7
- package/lib/breadcrumb/breadcrumb-item.d.ts +1 -1
- package/lib/breadcrumb/index.d.ts +1 -1
- package/lib/button/button.d.ts +1 -1
- package/lib/button/index.d.ts +4 -4
- package/lib/card/card.d.ts +1 -1
- package/lib/card/index.d.ts +4 -4
- package/lib/cascader/cascader-panel.d.ts +1 -1
- package/lib/cascader/cascader.d.ts +2 -2
- package/lib/cascader/index.d.ts +8 -8
- package/lib/checkbox/checkbox.d.ts +1 -1
- package/lib/checkbox/index.d.ts +4 -4
- package/lib/color-picker/color-picker.d.ts +1 -1
- package/lib/color-picker/index.d.ts +4 -4
- package/lib/date-picker/date-picker.d.ts +1 -1
- package/lib/date-picker/index.d.ts +4 -4
- package/lib/date-picker/panel/time-range.d.ts +2 -2
- package/lib/date-picker/panel/time.d.ts +2 -2
- package/lib/date-picker/time-picker.d.ts +2 -2
- package/lib/dialog/dialog.d.ts +2 -2
- package/lib/dialog/index.d.ts +7 -7
- package/lib/directives/index.d.ts +1 -1
- package/lib/directives/index.js +1 -1
- package/lib/divider/divider.d.ts +1 -1
- package/lib/divider/index.d.ts +4 -4
- package/lib/dropdown/dropdown.d.ts +1 -1
- package/lib/dropdown/index.d.ts +4 -4
- 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/menu/index.d.ts +4 -4
- package/lib/menu/menu.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 +16 -16
- package/lib/popover/popover.d.ts +5 -5
- 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/resize-layout/index.d.ts +4 -4
- package/lib/resize-layout/resize-layout.d.ts +1 -1
- package/lib/select/index.d.ts +8 -8
- package/lib/select/index.js +1 -1
- package/lib/select/optionGroup.d.ts +1 -1
- package/lib/select/select.d.ts +2 -2
- 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/tab/index.d.ts +1 -1
- package/lib/tab/tab-panel.d.ts +1 -1
- package/lib/table/index.d.ts +15 -15
- package/lib/table/plugins/head-filter.d.ts +1 -1
- package/lib/table/props.d.ts +2 -2
- package/lib/table/table.d.ts +6 -6
- 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 +7 -7
- 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
package/lib/alert/alert.d.ts
CHANGED
@@ -53,8 +53,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
53
53
|
onClose?: (...args: any[]) => any;
|
54
54
|
}, {
|
55
55
|
title: string;
|
56
|
-
size: string;
|
57
56
|
theme: "success" | "info" | "warning" | "danger";
|
57
|
+
size: string;
|
58
58
|
closable: boolean;
|
59
59
|
closeText: string;
|
60
60
|
showIcon: boolean;
|
package/lib/alert/index.d.ts
CHANGED
@@ -4,8 +4,8 @@ declare const BkAlert: {
|
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
6
|
title: string;
|
7
|
-
size: string;
|
8
7
|
theme: "success" | "info" | "warning" | "danger";
|
8
|
+
size: string;
|
9
9
|
closable: boolean;
|
10
10
|
closeText: string;
|
11
11
|
showIcon: boolean;
|
@@ -34,7 +34,7 @@ declare const BkAlert: {
|
|
34
34
|
};
|
35
35
|
}>> & {
|
36
36
|
onClose?: (...args: any[]) => any;
|
37
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "
|
37
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "theme" | "size" | "closable" | "closeText" | "showIcon">;
|
38
38
|
$attrs: {
|
39
39
|
[x: string]: unknown;
|
40
40
|
};
|
@@ -80,8 +80,8 @@ declare const BkAlert: {
|
|
80
80
|
handleClose: () => void;
|
81
81
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {
|
82
82
|
title: string;
|
83
|
-
size: string;
|
84
83
|
theme: "success" | "info" | "warning" | "danger";
|
84
|
+
size: string;
|
85
85
|
closable: boolean;
|
86
86
|
closeText: string;
|
87
87
|
showIcon: boolean;
|
@@ -171,8 +171,8 @@ declare const BkAlert: {
|
|
171
171
|
handleClose: () => void;
|
172
172
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", {
|
173
173
|
title: string;
|
174
|
-
size: string;
|
175
174
|
theme: "success" | "info" | "warning" | "danger";
|
175
|
+
size: string;
|
176
176
|
closable: boolean;
|
177
177
|
closeText: string;
|
178
178
|
showIcon: boolean;
|
package/lib/badge/badge.css
CHANGED
@@ -27,9 +27,8 @@
|
|
27
27
|
transform: translate(50%, -50%) scale(0, 0);
|
28
28
|
}
|
29
29
|
.bk-badge-main .bk-badge.pinned.right {
|
30
|
-
top:
|
31
|
-
right:
|
32
|
-
transform: translate(100%, -50%) scale(1, 1);
|
30
|
+
top: 4px;
|
31
|
+
right: 4px;
|
33
32
|
}
|
34
33
|
.bk-badge-main .bk-badge.pinned.right.fade-center-enter,
|
35
34
|
.bk-badge-main .bk-badge.pinned.right.fade-center-leave-active {
|
package/lib/badge/badge.d.ts
CHANGED
@@ -99,11 +99,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
99
99
|
onHover?: (...args: any[]) => any;
|
100
100
|
onLeave?: (...args: any[]) => any;
|
101
101
|
}, {
|
102
|
+
theme: string;
|
102
103
|
visible: boolean;
|
104
|
+
position: string;
|
103
105
|
dot: boolean;
|
104
|
-
theme: string;
|
105
106
|
extCls: string;
|
106
|
-
position: string;
|
107
107
|
count: string | number;
|
108
108
|
radius: string;
|
109
109
|
valLength: number;
|
package/lib/badge/badge.less
CHANGED
@@ -147,9 +147,8 @@
|
|
147
147
|
transform: translate(50%, -50%) scale(0, 0);
|
148
148
|
}
|
149
149
|
.bk-badge-main .bk-badge.pinned.right {
|
150
|
-
top:
|
151
|
-
right:
|
152
|
-
transform: translate(100%, -50%) scale(1, 1);
|
150
|
+
top: 4px;
|
151
|
+
right: 4px;
|
153
152
|
}
|
154
153
|
.bk-badge-main .bk-badge.pinned.right.fade-center-enter,
|
155
154
|
.bk-badge-main .bk-badge.pinned.right.fade-center-leave-active {
|
package/lib/badge/index.d.ts
CHANGED
@@ -3,11 +3,11 @@ declare const BkBadge: {
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
|
+
theme: string;
|
6
7
|
visible: boolean;
|
8
|
+
position: string;
|
7
9
|
dot: boolean;
|
8
|
-
theme: string;
|
9
10
|
extCls: string;
|
10
|
-
position: string;
|
11
11
|
count: string | number;
|
12
12
|
radius: string;
|
13
13
|
valLength: number;
|
@@ -55,7 +55,7 @@ declare const BkBadge: {
|
|
55
55
|
}>> & {
|
56
56
|
onHover?: (...args: any[]) => any;
|
57
57
|
onLeave?: (...args: any[]) => any;
|
58
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
58
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "visible" | "position" | "dot" | "extCls" | "count" | "radius" | "valLength" | "overflowCount">;
|
59
59
|
$attrs: {
|
60
60
|
[x: string]: unknown;
|
61
61
|
};
|
@@ -120,11 +120,11 @@ declare const BkBadge: {
|
|
120
120
|
borderRadius: string;
|
121
121
|
}>;
|
122
122
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("hover" | "leave")[], string, {
|
123
|
+
theme: string;
|
123
124
|
visible: boolean;
|
125
|
+
position: string;
|
124
126
|
dot: boolean;
|
125
|
-
theme: string;
|
126
127
|
extCls: string;
|
127
|
-
position: string;
|
128
128
|
count: string | number;
|
129
129
|
radius: string;
|
130
130
|
valLength: number;
|
@@ -254,11 +254,11 @@ declare const BkBadge: {
|
|
254
254
|
borderRadius: string;
|
255
255
|
}>;
|
256
256
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("hover" | "leave")[], "hover" | "leave", {
|
257
|
+
theme: string;
|
257
258
|
visible: boolean;
|
259
|
+
position: string;
|
258
260
|
dot: boolean;
|
259
|
-
theme: string;
|
260
261
|
extCls: string;
|
261
|
-
position: string;
|
262
262
|
count: string | number;
|
263
263
|
radius: string;
|
264
264
|
valLength: number;
|
@@ -184,10 +184,10 @@ declare const BkBreadcrumb: {
|
|
184
184
|
};
|
185
185
|
}>>, {
|
186
186
|
replace: boolean;
|
187
|
-
extCls: string;
|
188
187
|
to: string | {
|
189
188
|
[key: string]: any;
|
190
189
|
};
|
190
|
+
extCls: string;
|
191
191
|
}>;
|
192
192
|
}>;
|
193
193
|
export { BkBreadcrumb, BreadcrumbItem as BkBreadcrumbItem, };
|
package/lib/button/button.d.ts
CHANGED
@@ -150,9 +150,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
150
150
|
}, {
|
151
151
|
title: string;
|
152
152
|
text: boolean;
|
153
|
+
disabled: boolean;
|
153
154
|
size: "" | "small" | "large";
|
154
155
|
icon: string;
|
155
|
-
disabled: boolean;
|
156
156
|
outline: boolean;
|
157
157
|
loading: boolean;
|
158
158
|
iconRight: string;
|
package/lib/button/index.d.ts
CHANGED
@@ -6,9 +6,9 @@ declare const BkButton: {
|
|
6
6
|
$props: Partial<{
|
7
7
|
title: string;
|
8
8
|
text: boolean;
|
9
|
+
disabled: boolean;
|
9
10
|
size: "" | "small" | "large";
|
10
11
|
icon: string;
|
11
|
-
disabled: boolean;
|
12
12
|
outline: boolean;
|
13
13
|
loading: boolean;
|
14
14
|
iconRight: string;
|
@@ -57,7 +57,7 @@ declare const BkButton: {
|
|
57
57
|
}>> & {
|
58
58
|
onClick?: (...args: any[]) => any;
|
59
59
|
onMouseover?: (...args: any[]) => any;
|
60
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "text" | "
|
60
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "text" | "disabled" | "size" | "icon" | "outline" | "loading" | "iconRight" | "loadingMode" | "selected" | "nativeType">;
|
61
61
|
$attrs: {
|
62
62
|
[x: string]: unknown;
|
63
63
|
};
|
@@ -116,9 +116,9 @@ declare const BkButton: {
|
|
116
116
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "mouseover")[], string, {
|
117
117
|
title: string;
|
118
118
|
text: boolean;
|
119
|
+
disabled: boolean;
|
119
120
|
size: "" | "small" | "large";
|
120
121
|
icon: string;
|
121
|
-
disabled: boolean;
|
122
122
|
outline: boolean;
|
123
123
|
loading: boolean;
|
124
124
|
iconRight: string;
|
@@ -236,9 +236,9 @@ declare const BkButton: {
|
|
236
236
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "mouseover")[], "click" | "mouseover", {
|
237
237
|
title: string;
|
238
238
|
text: boolean;
|
239
|
+
disabled: boolean;
|
239
240
|
size: "" | "small" | "large";
|
240
241
|
icon: string;
|
241
|
-
disabled: boolean;
|
242
242
|
outline: boolean;
|
243
243
|
loading: boolean;
|
244
244
|
iconRight: string;
|
package/lib/card/card.d.ts
CHANGED
@@ -98,8 +98,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
98
98
|
onEdit?: (...args: any[]) => any;
|
99
99
|
}, {
|
100
100
|
title: string;
|
101
|
-
border: boolean;
|
102
101
|
position: string;
|
102
|
+
border: boolean;
|
103
103
|
showHeader: boolean;
|
104
104
|
showFooter: boolean;
|
105
105
|
collapseStatus: boolean;
|
package/lib/card/index.d.ts
CHANGED
@@ -4,8 +4,8 @@ declare const BkCard: {
|
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
6
|
title: string;
|
7
|
-
border: boolean;
|
8
7
|
position: string;
|
8
|
+
border: boolean;
|
9
9
|
showHeader: boolean;
|
10
10
|
showFooter: boolean;
|
11
11
|
collapseStatus: boolean;
|
@@ -59,7 +59,7 @@ declare const BkCard: {
|
|
59
59
|
}>> & {
|
60
60
|
"onUpdate:collapseStatus"?: (...args: any[]) => any;
|
61
61
|
onEdit?: (...args: any[]) => any;
|
62
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "
|
62
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "position" | "border" | "showHeader" | "showFooter" | "collapseStatus" | "disableHeaderStyle" | "isEdit" | "isCollapse">;
|
63
63
|
$attrs: {
|
64
64
|
[x: string]: unknown;
|
65
65
|
};
|
@@ -129,8 +129,8 @@ declare const BkCard: {
|
|
129
129
|
clickEdit: () => void;
|
130
130
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:collapseStatus" | "edit")[], string, {
|
131
131
|
title: string;
|
132
|
-
border: boolean;
|
133
132
|
position: string;
|
133
|
+
border: boolean;
|
134
134
|
showHeader: boolean;
|
135
135
|
showFooter: boolean;
|
136
136
|
collapseStatus: boolean;
|
@@ -271,8 +271,8 @@ declare const BkCard: {
|
|
271
271
|
clickEdit: () => void;
|
272
272
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:collapseStatus" | "edit")[], "update:collapseStatus" | "edit", {
|
273
273
|
title: string;
|
274
|
-
border: boolean;
|
275
274
|
position: string;
|
275
|
+
border: boolean;
|
276
276
|
showHeader: boolean;
|
277
277
|
showFooter: boolean;
|
278
278
|
collapseStatus: boolean;
|
@@ -88,9 +88,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
88
88
|
}>> & {
|
89
89
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
90
90
|
}, {
|
91
|
-
separator: string;
|
92
91
|
width: string | number;
|
93
92
|
height: string | number;
|
93
|
+
separator: string;
|
94
94
|
store: {
|
95
95
|
[key: string]: any;
|
96
96
|
};
|
@@ -281,12 +281,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
281
281
|
onToggle?: (...args: any[]) => any;
|
282
282
|
}, {
|
283
283
|
trigger: string;
|
284
|
+
disabled: boolean;
|
284
285
|
separator: string;
|
285
286
|
multiple: boolean;
|
286
|
-
|
287
|
+
list: unknown[];
|
287
288
|
extCls: string;
|
288
289
|
placeholder: string;
|
289
|
-
list: unknown[];
|
290
290
|
clearable: boolean;
|
291
291
|
checkAnyLevel: boolean;
|
292
292
|
filterable: boolean;
|
package/lib/cascader/index.d.ts
CHANGED
@@ -5,12 +5,12 @@ declare const BkCascader: {
|
|
5
5
|
$data: {};
|
6
6
|
$props: Partial<{
|
7
7
|
trigger: string;
|
8
|
+
disabled: boolean;
|
8
9
|
separator: string;
|
9
10
|
multiple: boolean;
|
10
|
-
|
11
|
+
list: unknown[];
|
11
12
|
extCls: string;
|
12
13
|
placeholder: string;
|
13
|
-
list: unknown[];
|
14
14
|
clearable: boolean;
|
15
15
|
checkAnyLevel: boolean;
|
16
16
|
filterable: boolean;
|
@@ -119,7 +119,7 @@ declare const BkCascader: {
|
|
119
119
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
120
120
|
onClear?: (...args: any[]) => any;
|
121
121
|
onToggle?: (...args: any[]) => any;
|
122
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "trigger" | "
|
122
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "trigger" | "disabled" | "separator" | "multiple" | "list" | "extCls" | "placeholder" | "clearable" | "checkAnyLevel" | "filterable" | "idKey" | "nameKey" | "childrenKey" | "isRemote" | "remoteMethod" | "showCompleteName" | "limitOneLine" | "scrollHeight" | "scrollWidth">;
|
123
123
|
$attrs: {
|
124
124
|
[x: string]: unknown;
|
125
125
|
};
|
@@ -324,12 +324,12 @@ declare const BkCascader: {
|
|
324
324
|
};
|
325
325
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "toggle" | "clear" | "update:modelValue")[], string, {
|
326
326
|
trigger: string;
|
327
|
+
disabled: boolean;
|
327
328
|
separator: string;
|
328
329
|
multiple: boolean;
|
329
|
-
|
330
|
+
list: unknown[];
|
330
331
|
extCls: string;
|
331
332
|
placeholder: string;
|
332
|
-
list: unknown[];
|
333
333
|
clearable: boolean;
|
334
334
|
checkAnyLevel: boolean;
|
335
335
|
filterable: boolean;
|
@@ -746,12 +746,12 @@ declare const BkCascader: {
|
|
746
746
|
};
|
747
747
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "toggle" | "clear" | "update:modelValue")[], "change" | "toggle" | "clear" | "update:modelValue", {
|
748
748
|
trigger: string;
|
749
|
+
disabled: boolean;
|
749
750
|
separator: string;
|
750
751
|
multiple: boolean;
|
751
|
-
|
752
|
+
list: unknown[];
|
752
753
|
extCls: string;
|
753
754
|
placeholder: string;
|
754
|
-
list: unknown[];
|
755
755
|
clearable: boolean;
|
756
756
|
checkAnyLevel: boolean;
|
757
757
|
filterable: boolean;
|
@@ -854,9 +854,9 @@ declare const BkCascader: {
|
|
854
854
|
}>> & {
|
855
855
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
856
856
|
}, {
|
857
|
-
separator: string;
|
858
857
|
width: string | number;
|
859
858
|
height: string | number;
|
859
|
+
separator: string;
|
860
860
|
store: {
|
861
861
|
[key: string]: any;
|
862
862
|
};
|
@@ -114,8 +114,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
114
114
|
onChange?: (...args: any[]) => any;
|
115
115
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
116
116
|
}, {
|
117
|
-
size: "small" | "default" | "large";
|
118
117
|
disabled: boolean;
|
118
|
+
size: "small" | "default" | "large";
|
119
119
|
trueLabel: string | number | boolean;
|
120
120
|
falseLabel: string | number | boolean;
|
121
121
|
checked: boolean;
|
package/lib/checkbox/index.d.ts
CHANGED
@@ -5,8 +5,8 @@ declare const BkCheckbox: {
|
|
5
5
|
$: import("vue").ComponentInternalInstance;
|
6
6
|
$data: {};
|
7
7
|
$props: Partial<{
|
8
|
-
size: "small" | "default" | "large";
|
9
8
|
disabled: boolean;
|
9
|
+
size: "small" | "default" | "large";
|
10
10
|
trueLabel: string | number | boolean;
|
11
11
|
falseLabel: string | number | boolean;
|
12
12
|
checked: boolean;
|
@@ -49,7 +49,7 @@ declare const BkCheckbox: {
|
|
49
49
|
}>> & {
|
50
50
|
onChange?: (...args: any[]) => any;
|
51
51
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
52
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
52
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "size" | "trueLabel" | "falseLabel" | "checked" | "indeterminate" | "beforeChange" | "immediateEmitChange">;
|
53
53
|
$attrs: {
|
54
54
|
[x: string]: unknown;
|
55
55
|
};
|
@@ -110,8 +110,8 @@ declare const BkCheckbox: {
|
|
110
110
|
handleChange: (event: Event) => void;
|
111
111
|
size: "small" | "default" | "large";
|
112
112
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], string, {
|
113
|
-
size: "small" | "default" | "large";
|
114
113
|
disabled: boolean;
|
114
|
+
size: "small" | "default" | "large";
|
115
115
|
trueLabel: string | number | boolean;
|
116
116
|
falseLabel: string | number | boolean;
|
117
117
|
checked: boolean;
|
@@ -235,8 +235,8 @@ declare const BkCheckbox: {
|
|
235
235
|
handleChange: (event: Event) => void;
|
236
236
|
size: "small" | "default" | "large";
|
237
237
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", {
|
238
|
-
size: "small" | "default" | "large";
|
239
238
|
disabled: boolean;
|
239
|
+
size: "small" | "default" | "large";
|
240
240
|
trueLabel: string | number | boolean;
|
241
241
|
falseLabel: string | number | boolean;
|
242
242
|
checked: boolean;
|
@@ -131,8 +131,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
131
131
|
onChange?: (...args: any[]) => any;
|
132
132
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
133
133
|
}, {
|
134
|
-
size: "" | "small" | "large";
|
135
134
|
disabled: boolean;
|
135
|
+
size: "" | "small" | "large";
|
136
136
|
extCls: string;
|
137
137
|
transfer: boolean;
|
138
138
|
readonly: boolean;
|
@@ -3,8 +3,8 @@ declare const BkColorPicker: {
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
|
-
size: "" | "small" | "large";
|
7
6
|
disabled: boolean;
|
7
|
+
size: "" | "small" | "large";
|
8
8
|
extCls: string;
|
9
9
|
transfer: boolean;
|
10
10
|
readonly: boolean;
|
@@ -57,7 +57,7 @@ declare const BkColorPicker: {
|
|
57
57
|
}>> & {
|
58
58
|
onChange?: (...args: any[]) => any;
|
59
59
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
60
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
60
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "size" | "extCls" | "transfer" | "readonly" | "modelValue" | "withValidate" | "recommend" | "showValue">;
|
61
61
|
$attrs: {
|
62
62
|
[x: string]: unknown;
|
63
63
|
};
|
@@ -117,8 +117,8 @@ declare const BkColorPicker: {
|
|
117
117
|
onChange?: (...args: any[]) => any;
|
118
118
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
119
119
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], string, {
|
120
|
-
size: "" | "small" | "large";
|
121
120
|
disabled: boolean;
|
121
|
+
size: "" | "small" | "large";
|
122
122
|
extCls: string;
|
123
123
|
transfer: boolean;
|
124
124
|
readonly: boolean;
|
@@ -241,8 +241,8 @@ declare const BkColorPicker: {
|
|
241
241
|
onChange?: (...args: any[]) => any;
|
242
242
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
243
243
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", {
|
244
|
-
size: "" | "small" | "large";
|
245
244
|
disabled: boolean;
|
245
|
+
size: "" | "small" | "large";
|
246
246
|
extCls: string;
|
247
247
|
transfer: boolean;
|
248
248
|
readonly: boolean;
|
@@ -297,10 +297,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
297
297
|
options: Record<string, any>;
|
298
298
|
behavior: "simplicity" | "normal";
|
299
299
|
type: import("./interface").PickerTypeType;
|
300
|
+
disabled: boolean;
|
300
301
|
fontSize: "normal" | "large" | "medium";
|
301
302
|
open: boolean;
|
302
303
|
multiple: boolean;
|
303
|
-
disabled: boolean;
|
304
304
|
placeholder: string;
|
305
305
|
transfer: boolean;
|
306
306
|
clearable: boolean;
|
@@ -8,10 +8,10 @@ declare const BkDatePicker: {
|
|
8
8
|
options: Record<string, any>;
|
9
9
|
behavior: "simplicity" | "normal";
|
10
10
|
type: import("./interface").PickerTypeType;
|
11
|
+
disabled: boolean;
|
11
12
|
fontSize: "normal" | "large" | "medium";
|
12
13
|
open: boolean;
|
13
14
|
multiple: boolean;
|
14
|
-
disabled: boolean;
|
15
15
|
placeholder: string;
|
16
16
|
transfer: boolean;
|
17
17
|
clearable: boolean;
|
@@ -155,7 +155,7 @@ declare const BkDatePicker: {
|
|
155
155
|
"onPick-success"?: (...args: any[]) => any;
|
156
156
|
"onOpen-change"?: (...args: any[]) => any;
|
157
157
|
"onShortcut-change"?: (...args: any[]) => any;
|
158
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "options" | "behavior" | "type" | "
|
158
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "options" | "behavior" | "type" | "disabled" | "fontSize" | "open" | "multiple" | "placeholder" | "transfer" | "clearable" | "readonly" | "withValidate" | "extPopoverCls" | "editable" | "timePickerOptions" | "splitPanels" | "appendToBody" | "shortcuts" | "shortcutClose" | "upToNow" | "useShortcutText" | "shortcutSelectedIndex" | "headerSlotCls" | "footerSlotCls" | "allowCrossDay">;
|
159
159
|
$attrs: {
|
160
160
|
[x: string]: unknown;
|
161
161
|
};
|
@@ -350,10 +350,10 @@ declare const BkDatePicker: {
|
|
350
350
|
options: Record<string, any>;
|
351
351
|
behavior: "simplicity" | "normal";
|
352
352
|
type: import("./interface").PickerTypeType;
|
353
|
+
disabled: boolean;
|
353
354
|
fontSize: "normal" | "large" | "medium";
|
354
355
|
open: boolean;
|
355
356
|
multiple: boolean;
|
356
|
-
disabled: boolean;
|
357
357
|
placeholder: string;
|
358
358
|
transfer: boolean;
|
359
359
|
clearable: boolean;
|
@@ -753,10 +753,10 @@ declare const BkDatePicker: {
|
|
753
753
|
options: Record<string, any>;
|
754
754
|
behavior: "simplicity" | "normal";
|
755
755
|
type: import("./interface").PickerTypeType;
|
756
|
+
disabled: boolean;
|
756
757
|
fontSize: "normal" | "large" | "medium";
|
757
758
|
open: boolean;
|
758
759
|
multiple: boolean;
|
759
|
-
disabled: boolean;
|
760
760
|
placeholder: string;
|
761
761
|
transfer: boolean;
|
762
762
|
clearable: boolean;
|
@@ -455,11 +455,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
455
455
|
options: Record<string, any>;
|
456
456
|
behavior: "simplicity" | "normal";
|
457
457
|
type: import("../interface").PickerTypeType;
|
458
|
+
width: number;
|
459
|
+
disabled: boolean;
|
458
460
|
fontSize: "normal" | "large" | "medium";
|
459
461
|
open: boolean;
|
460
462
|
multiple: boolean;
|
461
|
-
disabled: boolean;
|
462
|
-
width: number;
|
463
463
|
placeholder: string;
|
464
464
|
transfer: boolean;
|
465
465
|
clearable: boolean;
|
@@ -413,11 +413,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
413
413
|
confirm: boolean;
|
414
414
|
behavior: "simplicity" | "normal";
|
415
415
|
type: import("../interface").PickerTypeType;
|
416
|
+
width: number;
|
417
|
+
disabled: boolean;
|
416
418
|
fontSize: "normal" | "large" | "medium";
|
417
419
|
open: boolean;
|
418
420
|
multiple: boolean;
|
419
|
-
disabled: boolean;
|
420
|
-
width: number;
|
421
421
|
placeholder: string;
|
422
422
|
transfer: boolean;
|
423
423
|
clearable: boolean;
|
@@ -349,11 +349,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
349
349
|
options: Record<string, any>;
|
350
350
|
behavior: "simplicity" | "normal";
|
351
351
|
type: import("./interface").PickerTypeType;
|
352
|
+
width: number;
|
353
|
+
disabled: boolean;
|
352
354
|
fontSize: "normal" | "large" | "medium";
|
353
355
|
open: boolean;
|
354
356
|
multiple: boolean;
|
355
|
-
disabled: boolean;
|
356
|
-
width: number;
|
357
357
|
placeholder: string;
|
358
358
|
transfer: boolean;
|
359
359
|
clearable: boolean;
|
package/lib/dialog/dialog.d.ts
CHANGED
@@ -284,12 +284,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
284
284
|
zIndex: string | number;
|
285
285
|
showMask: boolean;
|
286
286
|
direction: string;
|
287
|
-
theme: "success" | "warning" | "danger" | "primary";
|
288
|
-
extCls: string | unknown[];
|
289
287
|
width: string | number;
|
290
288
|
height: string | number;
|
291
289
|
maxHeight: string;
|
292
290
|
isShow: boolean;
|
291
|
+
theme: "success" | "warning" | "danger" | "primary";
|
292
|
+
extCls: string | unknown[];
|
293
293
|
draggable: boolean;
|
294
294
|
transfer: boolean;
|
295
295
|
quickClose: boolean;
|
package/lib/dialog/index.d.ts
CHANGED
@@ -8,12 +8,12 @@ declare const BkDialog: {
|
|
8
8
|
zIndex: string | number;
|
9
9
|
showMask: boolean;
|
10
10
|
direction: string;
|
11
|
-
theme: "success" | "warning" | "danger" | "primary";
|
12
|
-
extCls: string | unknown[];
|
13
11
|
width: string | number;
|
14
12
|
height: string | number;
|
15
13
|
maxHeight: string;
|
16
14
|
isShow: boolean;
|
15
|
+
theme: "success" | "warning" | "danger" | "primary";
|
16
|
+
extCls: string | unknown[];
|
17
17
|
draggable: boolean;
|
18
18
|
transfer: boolean;
|
19
19
|
quickClose: boolean;
|
@@ -166,7 +166,7 @@ declare const BkDialog: {
|
|
166
166
|
onClosed?: (...args: any[]) => any;
|
167
167
|
"onUpdate:isShow"?: (...args: any[]) => any;
|
168
168
|
"onValue-change"?: (...args: any[]) => any;
|
169
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "direction" | "
|
169
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "direction" | "width" | "height" | "maxHeight" | "isShow" | "theme" | "extCls" | "draggable" | "transfer" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType" | "confirmText" | "cancelText" | "prevText" | "nextText" | "current" | "totalStep" | "headerAlign" | "footerAlign" | "isLoading">;
|
170
170
|
$attrs: {
|
171
171
|
[x: string]: unknown;
|
172
172
|
};
|
@@ -338,12 +338,12 @@ declare const BkDialog: {
|
|
338
338
|
zIndex: string | number;
|
339
339
|
showMask: boolean;
|
340
340
|
direction: string;
|
341
|
-
theme: "success" | "warning" | "danger" | "primary";
|
342
|
-
extCls: string | unknown[];
|
343
341
|
width: string | number;
|
344
342
|
height: string | number;
|
345
343
|
maxHeight: string;
|
346
344
|
isShow: boolean;
|
345
|
+
theme: "success" | "warning" | "danger" | "primary";
|
346
|
+
extCls: string | unknown[];
|
347
347
|
draggable: boolean;
|
348
348
|
transfer: boolean;
|
349
349
|
quickClose: boolean;
|
@@ -695,12 +695,12 @@ declare const BkDialog: {
|
|
695
695
|
zIndex: string | number;
|
696
696
|
showMask: boolean;
|
697
697
|
direction: string;
|
698
|
-
theme: "success" | "warning" | "danger" | "primary";
|
699
|
-
extCls: string | unknown[];
|
700
698
|
width: string | number;
|
701
699
|
height: string | number;
|
702
700
|
maxHeight: string;
|
703
701
|
isShow: boolean;
|
702
|
+
theme: "success" | "warning" | "danger" | "primary";
|
703
|
+
extCls: string | unknown[];
|
704
704
|
draggable: boolean;
|
705
705
|
transfer: boolean;
|
706
706
|
quickClose: boolean;
|