x-next 0.0.0-alpha.46 → 0.0.0-alpha.48
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/components/button/Button.d.ts +4 -4
- package/dist/components/button/index.d.ts +6 -6
- package/dist/components/button/props.d.ts +4 -4
- package/dist/components/drawer/index.d.ts +12 -12
- package/dist/components/drawer/src/Drawer.vue.d.ts +6 -6
- package/dist/components/popconfirm/src/popup.vue.d.ts +6 -6
- package/dist/components/tag/Tag.vue.d.ts +1 -1
- package/dist/components/tag/index.d.ts +2 -2
- package/dist/icons/default/close.d.ts +50 -0
- package/dist/icons/index.d.ts +2 -1
- package/dist/index.es.js +553 -542
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -20,11 +20,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
20
20
|
};
|
21
21
|
type: {
|
22
22
|
type: import('vue').PropType<import('./props').ButtonType>;
|
23
|
-
default:
|
23
|
+
default: string;
|
24
24
|
};
|
25
25
|
status: {
|
26
26
|
type: import('vue').PropType<import('./props').ButtonStatus>;
|
27
|
-
default:
|
27
|
+
default: string;
|
28
28
|
};
|
29
29
|
plain: {
|
30
30
|
type: BooleanConstructor;
|
@@ -60,11 +60,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
60
60
|
};
|
61
61
|
type: {
|
62
62
|
type: import('vue').PropType<import('./props').ButtonType>;
|
63
|
-
default:
|
63
|
+
default: string;
|
64
64
|
};
|
65
65
|
status: {
|
66
66
|
type: import('vue').PropType<import('./props').ButtonStatus>;
|
67
|
-
default:
|
67
|
+
default: string;
|
68
68
|
};
|
69
69
|
plain: {
|
70
70
|
type: BooleanConstructor;
|
@@ -21,11 +21,11 @@ export declare const XButton: {
|
|
21
21
|
};
|
22
22
|
type: {
|
23
23
|
type: import('vue').PropType<import('./props').ButtonType>;
|
24
|
-
default:
|
24
|
+
default: string;
|
25
25
|
};
|
26
26
|
status: {
|
27
27
|
type: import('vue').PropType<import('./props').ButtonStatus>;
|
28
|
-
default:
|
28
|
+
default: string;
|
29
29
|
};
|
30
30
|
plain: {
|
31
31
|
type: BooleanConstructor;
|
@@ -83,11 +83,11 @@ export declare const XButton: {
|
|
83
83
|
};
|
84
84
|
type: {
|
85
85
|
type: import('vue').PropType<import('./props').ButtonType>;
|
86
|
-
default:
|
86
|
+
default: string;
|
87
87
|
};
|
88
88
|
status: {
|
89
89
|
type: import('vue').PropType<import('./props').ButtonStatus>;
|
90
|
-
default:
|
90
|
+
default: string;
|
91
91
|
};
|
92
92
|
plain: {
|
93
93
|
type: BooleanConstructor;
|
@@ -142,11 +142,11 @@ export declare const XButton: {
|
|
142
142
|
};
|
143
143
|
type: {
|
144
144
|
type: import('vue').PropType<import('./props').ButtonType>;
|
145
|
-
default:
|
145
|
+
default: string;
|
146
146
|
};
|
147
147
|
status: {
|
148
148
|
type: import('vue').PropType<import('./props').ButtonStatus>;
|
149
|
-
default:
|
149
|
+
default: string;
|
150
150
|
};
|
151
151
|
plain: {
|
152
152
|
type: BooleanConstructor;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
export type ButtonSize = 'mini' | 'small' | 'medium' | 'large' | 'huge';
|
2
|
-
export type ButtonStatus = 'success' | 'warning' | 'strong' | 'danger' | 'info';
|
3
|
-
export type ButtonType = 'primary' | '
|
2
|
+
export type ButtonStatus = 'default' | 'success' | 'warning' | 'strong' | 'danger' | 'info';
|
3
|
+
export type ButtonType = 'primary' | 'default' | 'dashed' | 'outline' | 'text';
|
4
4
|
export type ButtonShape = 'round' | 'circle' | 'square';
|
5
5
|
export declare const buttonProps: {
|
6
6
|
disabled: BooleanConstructor;
|
@@ -24,11 +24,11 @@ export declare const buttonProps: {
|
|
24
24
|
};
|
25
25
|
type: {
|
26
26
|
type: import('vue').PropType<ButtonType>;
|
27
|
-
default:
|
27
|
+
default: string;
|
28
28
|
};
|
29
29
|
status: {
|
30
30
|
type: import('vue').PropType<ButtonStatus>;
|
31
|
-
default:
|
31
|
+
default: string;
|
32
32
|
};
|
33
33
|
plain: {
|
34
34
|
type: BooleanConstructor;
|
@@ -141,11 +141,11 @@ export declare const XDrawer: {
|
|
141
141
|
};
|
142
142
|
type: {
|
143
143
|
type: import('vue').PropType<import('../button/props').ButtonType>;
|
144
|
-
default:
|
144
|
+
default: string;
|
145
145
|
};
|
146
146
|
status: {
|
147
147
|
type: import('vue').PropType<import('../button/props').ButtonStatus>;
|
148
|
-
default:
|
148
|
+
default: string;
|
149
149
|
};
|
150
150
|
plain: {
|
151
151
|
type: BooleanConstructor;
|
@@ -203,11 +203,11 @@ export declare const XDrawer: {
|
|
203
203
|
};
|
204
204
|
type: {
|
205
205
|
type: import('vue').PropType<import('../button/props').ButtonType>;
|
206
|
-
default:
|
206
|
+
default: string;
|
207
207
|
};
|
208
208
|
status: {
|
209
209
|
type: import('vue').PropType<import('../button/props').ButtonStatus>;
|
210
|
-
default:
|
210
|
+
default: string;
|
211
211
|
};
|
212
212
|
plain: {
|
213
213
|
type: BooleanConstructor;
|
@@ -262,11 +262,11 @@ export declare const XDrawer: {
|
|
262
262
|
};
|
263
263
|
type: {
|
264
264
|
type: import('vue').PropType<import('../button/props').ButtonType>;
|
265
|
-
default:
|
265
|
+
default: string;
|
266
266
|
};
|
267
267
|
status: {
|
268
268
|
type: import('vue').PropType<import('../button/props').ButtonStatus>;
|
269
|
-
default:
|
269
|
+
default: string;
|
270
270
|
};
|
271
271
|
plain: {
|
272
272
|
type: BooleanConstructor;
|
@@ -940,11 +940,11 @@ export declare const XDrawer: {
|
|
940
940
|
};
|
941
941
|
type: {
|
942
942
|
type: import('vue').PropType<import('../button/props').ButtonType>;
|
943
|
-
default:
|
943
|
+
default: string;
|
944
944
|
};
|
945
945
|
status: {
|
946
946
|
type: import('vue').PropType<import('../button/props').ButtonStatus>;
|
947
|
-
default:
|
947
|
+
default: string;
|
948
948
|
};
|
949
949
|
plain: {
|
950
950
|
type: BooleanConstructor;
|
@@ -1002,11 +1002,11 @@ export declare const XDrawer: {
|
|
1002
1002
|
};
|
1003
1003
|
type: {
|
1004
1004
|
type: import('vue').PropType<import('../button/props').ButtonType>;
|
1005
|
-
default:
|
1005
|
+
default: string;
|
1006
1006
|
};
|
1007
1007
|
status: {
|
1008
1008
|
type: import('vue').PropType<import('../button/props').ButtonStatus>;
|
1009
|
-
default:
|
1009
|
+
default: string;
|
1010
1010
|
};
|
1011
1011
|
plain: {
|
1012
1012
|
type: BooleanConstructor;
|
@@ -1061,11 +1061,11 @@ export declare const XDrawer: {
|
|
1061
1061
|
};
|
1062
1062
|
type: {
|
1063
1063
|
type: import('vue').PropType<import('../button/props').ButtonType>;
|
1064
|
-
default:
|
1064
|
+
default: string;
|
1065
1065
|
};
|
1066
1066
|
status: {
|
1067
1067
|
type: import('vue').PropType<import('../button/props').ButtonStatus>;
|
1068
|
-
default:
|
1068
|
+
default: string;
|
1069
1069
|
};
|
1070
1070
|
plain: {
|
1071
1071
|
type: BooleanConstructor;
|
@@ -212,11 +212,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
212
212
|
};
|
213
213
|
type: {
|
214
214
|
type: import('vue').PropType<import('../../button/props').ButtonType>;
|
215
|
-
default:
|
215
|
+
default: string;
|
216
216
|
};
|
217
217
|
status: {
|
218
218
|
type: import('vue').PropType<import('../../button/props').ButtonStatus>;
|
219
|
-
default:
|
219
|
+
default: string;
|
220
220
|
};
|
221
221
|
plain: {
|
222
222
|
type: BooleanConstructor;
|
@@ -274,11 +274,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
274
274
|
};
|
275
275
|
type: {
|
276
276
|
type: import('vue').PropType<import('../../button/props').ButtonType>;
|
277
|
-
default:
|
277
|
+
default: string;
|
278
278
|
};
|
279
279
|
status: {
|
280
280
|
type: import('vue').PropType<import('../../button/props').ButtonStatus>;
|
281
|
-
default:
|
281
|
+
default: string;
|
282
282
|
};
|
283
283
|
plain: {
|
284
284
|
type: BooleanConstructor;
|
@@ -333,11 +333,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
333
333
|
};
|
334
334
|
type: {
|
335
335
|
type: import('vue').PropType<import('../../button/props').ButtonType>;
|
336
|
-
default:
|
336
|
+
default: string;
|
337
337
|
};
|
338
338
|
status: {
|
339
339
|
type: import('vue').PropType<import('../../button/props').ButtonStatus>;
|
340
|
-
default:
|
340
|
+
default: string;
|
341
341
|
};
|
342
342
|
plain: {
|
343
343
|
type: BooleanConstructor;
|
@@ -197,11 +197,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
197
197
|
};
|
198
198
|
type: {
|
199
199
|
type: import('vue').PropType<import('../../button/props').ButtonType>;
|
200
|
-
default:
|
200
|
+
default: string;
|
201
201
|
};
|
202
202
|
status: {
|
203
203
|
type: import('vue').PropType<import('../../button/props').ButtonStatus>;
|
204
|
-
default:
|
204
|
+
default: string;
|
205
205
|
};
|
206
206
|
plain: {
|
207
207
|
type: BooleanConstructor;
|
@@ -259,11 +259,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
259
259
|
};
|
260
260
|
type: {
|
261
261
|
type: import('vue').PropType<import('../../button/props').ButtonType>;
|
262
|
-
default:
|
262
|
+
default: string;
|
263
263
|
};
|
264
264
|
status: {
|
265
265
|
type: import('vue').PropType<import('../../button/props').ButtonStatus>;
|
266
|
-
default:
|
266
|
+
default: string;
|
267
267
|
};
|
268
268
|
plain: {
|
269
269
|
type: BooleanConstructor;
|
@@ -318,11 +318,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
318
318
|
};
|
319
319
|
type: {
|
320
320
|
type: import('vue').PropType<import('../../button/props').ButtonType>;
|
321
|
-
default:
|
321
|
+
default: string;
|
322
322
|
};
|
323
323
|
status: {
|
324
324
|
type: import('vue').PropType<import('../../button/props').ButtonStatus>;
|
325
|
-
default:
|
325
|
+
default: string;
|
326
326
|
};
|
327
327
|
plain: {
|
328
328
|
type: BooleanConstructor;
|
@@ -273,7 +273,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
273
273
|
size: "mini" | "small" | "medium" | "large" | "huge";
|
274
274
|
disabled: boolean;
|
275
275
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
276
|
-
|
276
|
+
Close: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
277
277
|
size: {
|
278
278
|
type: (NumberConstructor | StringConstructor)[];
|
279
279
|
default: undefined;
|
@@ -115,7 +115,7 @@ export declare const XTag: {
|
|
115
115
|
size: "mini" | "small" | "medium" | "large" | "huge";
|
116
116
|
disabled: boolean;
|
117
117
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
118
|
-
|
118
|
+
Close: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
119
119
|
size: {
|
120
120
|
type: (NumberConstructor | StringConstructor)[];
|
121
121
|
default: undefined;
|
@@ -415,7 +415,7 @@ export declare const XTag: {
|
|
415
415
|
size: "mini" | "small" | "medium" | "large" | "huge";
|
416
416
|
disabled: boolean;
|
417
417
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
418
|
-
|
418
|
+
Close: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
419
419
|
size: {
|
420
420
|
type: (NumberConstructor | StringConstructor)[];
|
421
421
|
default: undefined;
|
@@ -0,0 +1,50 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
2
|
+
size: {
|
3
|
+
type: (NumberConstructor | StringConstructor)[];
|
4
|
+
default: undefined;
|
5
|
+
};
|
6
|
+
rotate: {
|
7
|
+
type: NumberConstructor;
|
8
|
+
default: undefined;
|
9
|
+
};
|
10
|
+
spin: {
|
11
|
+
type: BooleanConstructor;
|
12
|
+
default: boolean;
|
13
|
+
};
|
14
|
+
color: {
|
15
|
+
type: StringConstructor;
|
16
|
+
default: undefined;
|
17
|
+
};
|
18
|
+
fillColor: {
|
19
|
+
type: ArrayConstructor;
|
20
|
+
default: undefined;
|
21
|
+
};
|
22
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
23
|
+
size: {
|
24
|
+
type: (NumberConstructor | StringConstructor)[];
|
25
|
+
default: undefined;
|
26
|
+
};
|
27
|
+
rotate: {
|
28
|
+
type: NumberConstructor;
|
29
|
+
default: undefined;
|
30
|
+
};
|
31
|
+
spin: {
|
32
|
+
type: BooleanConstructor;
|
33
|
+
default: boolean;
|
34
|
+
};
|
35
|
+
color: {
|
36
|
+
type: StringConstructor;
|
37
|
+
default: undefined;
|
38
|
+
};
|
39
|
+
fillColor: {
|
40
|
+
type: ArrayConstructor;
|
41
|
+
default: undefined;
|
42
|
+
};
|
43
|
+
}>> & Readonly<{}>, {
|
44
|
+
size: string | number;
|
45
|
+
rotate: number;
|
46
|
+
spin: boolean;
|
47
|
+
color: string;
|
48
|
+
fillColor: unknown[];
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
50
|
+
export default _default;
|
package/dist/icons/index.d.ts
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
import { default as CloseCircleFill } from './default/close-circle-fill';
|
2
|
+
import { default as Close } from './default/close';
|
2
3
|
import { default as CheckCircleFill } from './default/check-circle-fill';
|
3
4
|
import { default as ExclamationCircleFill } from './default/exclamation-circle-fill';
|
4
5
|
import { default as InfoCircleFill } from './default/info-circle-fill';
|
5
6
|
import { default as MinusCircleFill } from './default/minus-circle-fill';
|
6
7
|
import { default as LogoSimple } from './default/logo-simple.tsx';
|
7
8
|
import { default as AnimationLoading } from './animation/animation-loading';
|
8
|
-
export { CloseCircleFill, CheckCircleFill, ExclamationCircleFill, InfoCircleFill, MinusCircleFill, AnimationLoading, LogoSimple, };
|
9
|
+
export { CloseCircleFill, Close, CheckCircleFill, ExclamationCircleFill, InfoCircleFill, MinusCircleFill, AnimationLoading, LogoSimple, };
|