bkui-vue 0.0.1-beta.51 → 0.0.1-beta.54
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 +18 -18
- package/dist/index.esm.js +23 -28
- package/dist/index.umd.js +19 -19
- package/lib/alert/alert.d.ts +1 -1
- package/lib/alert/index.d.ts +4 -4
- package/lib/animate-number/animate-number.d.ts +1 -1
- package/lib/animate-number/index.d.ts +4 -4
- package/lib/backtop/backtop.d.ts +1 -1
- package/lib/backtop/index.d.ts +4 -4
- package/lib/badge/badge.d.ts +2 -2
- package/lib/badge/index.d.ts +7 -7
- package/lib/breadcrumb/breadcrumb.d.ts +1 -1
- package/lib/breadcrumb/index.d.ts +4 -4
- package/lib/button/button.d.ts +2 -2
- package/lib/button/index.d.ts +7 -7
- package/lib/code-diff/index.js +1 -1
- package/lib/date-picker/date-picker.d.ts +6 -6
- package/lib/date-picker/index.d.ts +17 -17
- package/lib/date-picker/props.d.ts +1 -1
- package/lib/dialog/dialog.d.ts +1 -1
- package/lib/dialog/index.d.ts +4 -4
- package/lib/directives/index.js +1 -1
- package/lib/directives/tooltips.d.ts +1 -1
- package/lib/dropdown/dropdown.d.ts +1 -1
- package/lib/dropdown/index.d.ts +4 -4
- package/lib/input/index.d.ts +3 -3
- package/lib/input/input.d.ts +1 -1
- package/lib/link/index.d.ts +7 -7
- package/lib/link/link.d.ts +2 -2
- package/lib/modal/index.d.ts +4 -4
- package/lib/modal/modal.d.ts +1 -1
- package/lib/popover/index.d.ts +4 -4
- package/lib/popover/popover.d.ts +1 -1
- 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 +3 -3
- package/lib/select/select.d.ts +1 -1
- package/lib/sideslider/index.d.ts +4 -4
- package/lib/sideslider/sideslider.d.ts +1 -1
- package/lib/slider/slider.d.ts +1 -1
- package/lib/switcher/index.d.ts +4 -4
- package/lib/switcher/switcher.d.ts +1 -1
- package/lib/tab/index.d.ts +8 -8
- package/lib/tab/tab-nav.d.ts +1 -1
- package/lib/tab/tab-panel.d.ts +1 -1
- package/lib/tab/tab.d.ts +2 -2
- package/lib/table/index.d.ts +4 -4
- package/lib/table/table.d.ts +1 -1
- package/package.json +5 -1
package/lib/alert/alert.d.ts
CHANGED
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: string;
|
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: string;
|
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: string;
|
175
|
+
size: string;
|
176
176
|
closable: boolean;
|
177
177
|
closeText: string;
|
178
178
|
showIcon: boolean;
|
@@ -3,8 +3,8 @@ declare const BkAnimateNumber: {
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
|
-
digits: number;
|
7
6
|
value: number;
|
7
|
+
digits: number;
|
8
8
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
9
9
|
value: import("vue-types").VueTypeValidableDef<number> & {
|
10
10
|
default: number;
|
@@ -16,7 +16,7 @@ declare const BkAnimateNumber: {
|
|
16
16
|
} & {
|
17
17
|
default: number;
|
18
18
|
};
|
19
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
19
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "digits">;
|
20
20
|
$attrs: {
|
21
21
|
[x: string]: unknown;
|
22
22
|
};
|
@@ -42,8 +42,8 @@ declare const BkAnimateNumber: {
|
|
42
42
|
default: number;
|
43
43
|
};
|
44
44
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
45
|
-
digits: number;
|
46
45
|
value: number;
|
46
|
+
digits: number;
|
47
47
|
}> & {
|
48
48
|
beforeCreate?: (() => void) | (() => void)[];
|
49
49
|
created?: (() => void) | (() => void)[];
|
@@ -91,7 +91,7 @@ declare const BkAnimateNumber: {
|
|
91
91
|
default: number;
|
92
92
|
};
|
93
93
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
94
|
-
digits: number;
|
95
94
|
value: number;
|
95
|
+
digits: number;
|
96
96
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
|
97
97
|
export default BkAnimateNumber;
|
package/lib/backtop/backtop.d.ts
CHANGED
package/lib/backtop/index.d.ts
CHANGED
@@ -3,8 +3,8 @@ declare const BkBacktop: {
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
|
-
right: number;
|
7
6
|
bottom: number;
|
7
|
+
right: number;
|
8
8
|
visibilityHeight: number;
|
9
9
|
target: string;
|
10
10
|
extCls: string;
|
@@ -34,7 +34,7 @@ declare const BkBacktop: {
|
|
34
34
|
} & {
|
35
35
|
default: string;
|
36
36
|
};
|
37
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
37
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "bottom" | "right" | "visibilityHeight" | "target" | "extCls">;
|
38
38
|
$attrs: {
|
39
39
|
[x: string]: unknown;
|
40
40
|
};
|
@@ -75,8 +75,8 @@ declare const BkBacktop: {
|
|
75
75
|
default: string;
|
76
76
|
};
|
77
77
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
78
|
-
right: number;
|
79
78
|
bottom: number;
|
79
|
+
right: number;
|
80
80
|
visibilityHeight: number;
|
81
81
|
target: string;
|
82
82
|
extCls: string;
|
@@ -157,8 +157,8 @@ declare const BkBacktop: {
|
|
157
157
|
default: string;
|
158
158
|
};
|
159
159
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
160
|
-
right: number;
|
161
160
|
bottom: number;
|
161
|
+
right: number;
|
162
162
|
visibilityHeight: number;
|
163
163
|
target: string;
|
164
164
|
extCls: string;
|
package/lib/badge/badge.d.ts
CHANGED
@@ -79,10 +79,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
79
79
|
default: boolean;
|
80
80
|
};
|
81
81
|
}>>, {
|
82
|
-
visible: boolean;
|
83
|
-
dot: boolean;
|
84
82
|
theme: string;
|
83
|
+
visible: boolean;
|
85
84
|
position: string;
|
85
|
+
dot: boolean;
|
86
86
|
count: number;
|
87
87
|
radius: string;
|
88
88
|
valLength: number;
|
package/lib/badge/index.d.ts
CHANGED
@@ -3,10 +3,10 @@ declare const BkBadge: {
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
|
-
visible: boolean;
|
7
|
-
dot: boolean;
|
8
6
|
theme: string;
|
7
|
+
visible: boolean;
|
9
8
|
position: string;
|
9
|
+
dot: boolean;
|
10
10
|
count: number;
|
11
11
|
radius: string;
|
12
12
|
valLength: number;
|
@@ -46,7 +46,7 @@ declare const BkBadge: {
|
|
46
46
|
} & {
|
47
47
|
default: boolean;
|
48
48
|
};
|
49
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
49
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "visible" | "position" | "dot" | "count" | "radius" | "valLength" | "overflowCount">;
|
50
50
|
$attrs: {
|
51
51
|
[x: string]: unknown;
|
52
52
|
};
|
@@ -98,10 +98,10 @@ declare const BkBadge: {
|
|
98
98
|
}>>, {
|
99
99
|
numberCount: import("vue").ComputedRef<string | number>;
|
100
100
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
101
|
-
visible: boolean;
|
102
|
-
dot: boolean;
|
103
101
|
theme: string;
|
102
|
+
visible: boolean;
|
104
103
|
position: string;
|
104
|
+
dot: boolean;
|
105
105
|
count: number;
|
106
106
|
radius: string;
|
107
107
|
valLength: number;
|
@@ -205,10 +205,10 @@ declare const BkBadge: {
|
|
205
205
|
}>>, {
|
206
206
|
numberCount: import("vue").ComputedRef<string | number>;
|
207
207
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
208
|
-
visible: boolean;
|
209
|
-
dot: boolean;
|
210
208
|
theme: string;
|
209
|
+
visible: boolean;
|
211
210
|
position: string;
|
211
|
+
dot: boolean;
|
212
212
|
count: number;
|
213
213
|
radius: string;
|
214
214
|
valLength: number;
|
@@ -4,9 +4,9 @@ declare const BkBreadcrumb: {
|
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
5
5
|
$data: {};
|
6
6
|
$props: Partial<{
|
7
|
-
separator: string;
|
8
7
|
replace: boolean;
|
9
8
|
extCls: string;
|
9
|
+
separator: string;
|
10
10
|
separatorClass: string;
|
11
11
|
backRouter: string | {
|
12
12
|
[key: string]: any;
|
@@ -33,7 +33,7 @@ declare const BkBreadcrumb: {
|
|
33
33
|
[key: string]: any;
|
34
34
|
});
|
35
35
|
};
|
36
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
36
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "replace" | "extCls" | "separator" | "separatorClass" | "backRouter">;
|
37
37
|
$attrs: {
|
38
38
|
[x: string]: unknown;
|
39
39
|
};
|
@@ -70,9 +70,9 @@ declare const BkBreadcrumb: {
|
|
70
70
|
});
|
71
71
|
};
|
72
72
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
73
|
-
separator: string;
|
74
73
|
replace: boolean;
|
75
74
|
extCls: string;
|
75
|
+
separator: string;
|
76
76
|
separatorClass: string;
|
77
77
|
backRouter: string | {
|
78
78
|
[key: string]: any;
|
@@ -146,9 +146,9 @@ declare const BkBreadcrumb: {
|
|
146
146
|
});
|
147
147
|
};
|
148
148
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
149
|
-
separator: string;
|
150
149
|
replace: boolean;
|
151
150
|
extCls: string;
|
151
|
+
separator: string;
|
152
152
|
separatorClass: string;
|
153
153
|
backRouter: string | {
|
154
154
|
[key: string]: any;
|
package/lib/button/button.d.ts
CHANGED
@@ -138,11 +138,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
138
138
|
}, {
|
139
139
|
title: string;
|
140
140
|
text: boolean;
|
141
|
+
theme: string;
|
141
142
|
size: string;
|
142
143
|
icon: string;
|
143
|
-
disabled: boolean;
|
144
|
-
theme: string;
|
145
144
|
outline: boolean;
|
145
|
+
disabled: boolean;
|
146
146
|
loading: boolean;
|
147
147
|
hoverTheme: string;
|
148
148
|
iconRight: string;
|
package/lib/button/index.d.ts
CHANGED
@@ -6,11 +6,11 @@ declare const BkButton: {
|
|
6
6
|
$props: Partial<{
|
7
7
|
title: string;
|
8
8
|
text: boolean;
|
9
|
+
theme: string;
|
9
10
|
size: string;
|
10
11
|
icon: string;
|
11
|
-
disabled: boolean;
|
12
|
-
theme: string;
|
13
12
|
outline: boolean;
|
13
|
+
disabled: boolean;
|
14
14
|
loading: boolean;
|
15
15
|
hoverTheme: string;
|
16
16
|
iconRight: string;
|
@@ -52,7 +52,7 @@ declare const BkButton: {
|
|
52
52
|
}>> & {
|
53
53
|
onClick?: (...args: any[]) => any;
|
54
54
|
onMouseover?: (...args: any[]) => any;
|
55
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "text" | "
|
55
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "text" | "theme" | "size" | "icon" | "outline" | "disabled" | "loading" | "hoverTheme" | "iconRight">;
|
56
56
|
$attrs: {
|
57
57
|
[x: string]: unknown;
|
58
58
|
};
|
@@ -107,11 +107,11 @@ declare const BkButton: {
|
|
107
107
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "mouseover")[], string, {
|
108
108
|
title: string;
|
109
109
|
text: boolean;
|
110
|
+
theme: string;
|
110
111
|
size: string;
|
111
112
|
icon: string;
|
112
|
-
disabled: boolean;
|
113
|
-
theme: string;
|
114
113
|
outline: boolean;
|
114
|
+
disabled: boolean;
|
115
115
|
loading: boolean;
|
116
116
|
hoverTheme: string;
|
117
117
|
iconRight: string;
|
@@ -218,11 +218,11 @@ declare const BkButton: {
|
|
218
218
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "mouseover")[], "click" | "mouseover", {
|
219
219
|
title: string;
|
220
220
|
text: boolean;
|
221
|
+
theme: string;
|
221
222
|
size: string;
|
222
223
|
icon: string;
|
223
|
-
disabled: boolean;
|
224
|
-
theme: string;
|
225
224
|
outline: boolean;
|
225
|
+
disabled: boolean;
|
226
226
|
loading: boolean;
|
227
227
|
hoverTheme: string;
|
228
228
|
iconRight: string;
|