x-next 0.0.0-alpha.2 → 0.0.0-alpha.3
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +15 -84
- package/package.json +34 -48
- package/{dist/types → x-next}/_hooks/use-overflow.d.ts +1 -1
- package/{dist/types → x-next}/_hooks/use-popup-manager.d.ts +1 -1
- package/{dist/types → x-next}/_utils/dom.d.ts +1 -1
- package/{dist/types → x-next}/_utils/icon.d.ts +7 -7
- package/{dist/types → x-next}/_utils/is.d.ts +3 -6
- package/{dist/types → x-next}/_utils/keyboard.d.ts +1 -1
- package/{dist/types → x-next}/_utils/vue-eco.d.ts +7 -11
- package/x-next/componets/button/index.vue.d.ts +162 -0
- package/{dist/types → x-next}/componets/button/props.d.ts +4 -4
- package/{dist/types → x-next}/componets/dialog/index.vue.d.ts +27 -27
- package/{dist/types → x-next}/componets/dialog/props.d.ts +2 -2
- package/{dist/types → x-next}/componets/dialog/use-props.d.ts +1 -1
- package/{dist/types → x-next}/componets/dialog/use.d.ts +1 -1
- package/x-next/componets/dialog/warp.d.ts +2 -0
- package/x-next/componets/message/index.vue.d.ts +387 -0
- package/{dist/types → x-next}/componets/message/props.d.ts +1 -1
- package/{dist/types → x-next}/componets/message/warp.d.ts +1 -1
- package/{dist/types → x-next}/componets/message-box/index.d.ts +1 -1
- package/{dist/types → x-next}/componets/message-box/props.d.ts +1 -1
- package/x-next/componets/message-box/warp.d.ts +2 -0
- package/{dist/types → x-next}/componets/notification/index.vue.d.ts +26 -26
- package/{dist/types → x-next}/componets/notification/props.d.ts +2 -2
- package/{dist/types → x-next}/componets/notification/warp.d.ts +1 -1
- package/{dist/types → x-next}/componets/space/index.d.ts +9 -9
- package/{dist/types → x-next}/componets/trend-chart/components/trend-chart-curve.d.ts +17 -17
- package/{dist/types → x-next}/componets/trend-chart/components/trend-chart-grid.d.ts +7 -7
- package/{dist/types → x-next}/componets/trend-chart/components/trend-chart-labels.d.ts +7 -7
- package/{dist/types → x-next}/componets/trend-chart/components/trend-chart.d.ts +47 -47
- package/{dist/types → x-next}/componets/trend-chart/helpers/genPoints.d.ts +1 -1
- package/x-next/componets/trend-chart/index.d.ts +2 -0
- package/{dist/types → x-next}/componets/trend-chart/props.d.ts +2 -2
- package/{dist/types → x-next}/icons/animation/animation-loading.vue.d.ts +9 -9
- package/{dist/types → x-next}/icons/default/check-circle-fill.vue.d.ts +9 -9
- package/{dist/types → x-next}/icons/default/close-circle-fill.vue.d.ts +9 -9
- package/{dist/types → x-next}/icons/default/exclamation-circle-fill.vue.d.ts +9 -9
- package/{dist/types → x-next}/icons/default/info-circle-fill.vue.d.ts +9 -9
- package/{dist/types → x-next}/icons/default/minus-circle-fill.vue.d.ts +9 -9
- package/x-next/icons/index.d.ts +7 -0
- package/x-next/style.css +1 -0
- package/x-next/ui.d.ts +5 -0
- package/x-next/ui.js +1357 -0
- package/x-next/ui.umd.cjs +1 -0
- package/LICENSE +0 -21
- package/dist/favicon.ico +0 -0
- package/dist/types/componets/button/index.vue.d.ts +0 -107
- package/dist/types/componets/dialog/warp.d.ts +0 -2
- package/dist/types/componets/message/index.vue.d.ts +0 -116
- package/dist/types/componets/message-box/warp.d.ts +0 -2
- package/dist/types/componets/tag-cloud/index.d.ts +0 -0
- package/dist/types/componets/trend-chart/index.d.ts +0 -2
- package/dist/types/icons/index.d.ts +0 -7
- package/dist/types/ui.d.ts +0 -5
- package/dist/ui.cjs.js +0 -2
- package/dist/ui.es.js +0 -1395
- package/dist/ui.umd.js +0 -3
- /package/{dist/types → x-next}/_props/css.d.ts +0 -0
- /package/{dist/types → x-next}/_props/global.d.ts +0 -0
- /package/{dist/types → x-next}/_utils/config.d.ts +0 -0
- /package/{dist/types → x-next}/_utils/convert-case.d.ts +0 -0
- /package/{dist/types → x-next}/_utils/helpers.d.ts +0 -0
- /package/{dist/types → x-next}/_utils/number.d.ts +0 -0
- /package/{dist → x-next/componets/tag-cloud}/index.d.ts +0 -0
- /package/{dist/types → x-next}/componets/trend-chart/helpers/genPath.d.ts +0 -0
- /package/{dist/types → x-next}/componets/trend-chart/helpers/getPadding.d.ts +0 -0
- /package/{dist/types → x-next}/componets/trend-chart/helpers/validatePadding.d.ts +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
declare const
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
2
2
|
renderTo: {
|
3
|
-
type: import(
|
3
|
+
type: import('vue').PropType<string | HTMLElement>;
|
4
4
|
default: string;
|
5
5
|
};
|
6
6
|
disabled: {
|
@@ -12,7 +12,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
12
12
|
default: boolean;
|
13
13
|
};
|
14
14
|
top: {
|
15
|
-
type: (
|
15
|
+
type: (StringConstructor | NumberConstructor)[];
|
16
16
|
default: string;
|
17
17
|
};
|
18
18
|
center: {
|
@@ -20,19 +20,19 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
20
20
|
default: boolean;
|
21
21
|
};
|
22
22
|
width: {
|
23
|
-
type: (
|
23
|
+
type: (StringConstructor | NumberConstructor)[];
|
24
24
|
default: number;
|
25
25
|
};
|
26
26
|
height: {
|
27
|
-
type: (
|
27
|
+
type: (StringConstructor | NumberConstructor)[];
|
28
28
|
default: number;
|
29
29
|
};
|
30
30
|
minWidth: {
|
31
|
-
type: (
|
31
|
+
type: (StringConstructor | NumberConstructor)[];
|
32
32
|
default: number;
|
33
33
|
};
|
34
34
|
minHeight: {
|
35
|
-
type: (
|
35
|
+
type: (StringConstructor | NumberConstructor)[];
|
36
36
|
default: number;
|
37
37
|
};
|
38
38
|
title: {
|
@@ -79,7 +79,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
79
79
|
default: boolean;
|
80
80
|
};
|
81
81
|
}>, {
|
82
|
-
cls: import(
|
82
|
+
cls: import('vue').ComputedRef<(string | false | undefined)[]>;
|
83
83
|
ns: string;
|
84
84
|
cn: {
|
85
85
|
block: string;
|
@@ -94,14 +94,14 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
94
94
|
is: (className: string) => string;
|
95
95
|
};
|
96
96
|
messageBoxNs: string;
|
97
|
-
containerStyle: import(
|
98
|
-
dialogStyle: import(
|
99
|
-
dialogRef: import(
|
100
|
-
teleportContainer: import(
|
101
|
-
teleportDisabled: import(
|
102
|
-
modelVisible: import(
|
103
|
-
mergeVisible: import(
|
104
|
-
interceptClose: (action:
|
97
|
+
containerStyle: import('vue').ComputedRef<import('vue').CSSProperties>;
|
98
|
+
dialogStyle: import('vue').ComputedRef<import('vue').CSSProperties>;
|
99
|
+
dialogRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
100
|
+
teleportContainer: import('vue').ComputedRef<HTMLElement | undefined>;
|
101
|
+
teleportDisabled: import('vue').ComputedRef<boolean>;
|
102
|
+
modelVisible: import('vue').ComputedRef<boolean>;
|
103
|
+
mergeVisible: import('vue').ComputedRef<boolean>;
|
104
|
+
interceptClose: (action: "cancel" | "ok", e?: Event) => void;
|
105
105
|
afterLeave: () => void;
|
106
106
|
afterEnter: () => void;
|
107
107
|
handleMaskClick: () => void;
|
@@ -111,9 +111,9 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
111
111
|
ok: boolean;
|
112
112
|
cancel: boolean;
|
113
113
|
};
|
114
|
-
}, {}, {}, {}, import(
|
114
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("close" | "open" | "closed" | "opened" | "update:modelValue")[], "close" | "open" | "closed" | "opened" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
115
115
|
renderTo: {
|
116
|
-
type: import(
|
116
|
+
type: import('vue').PropType<string | HTMLElement>;
|
117
117
|
default: string;
|
118
118
|
};
|
119
119
|
disabled: {
|
@@ -125,7 +125,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
125
125
|
default: boolean;
|
126
126
|
};
|
127
127
|
top: {
|
128
|
-
type: (
|
128
|
+
type: (StringConstructor | NumberConstructor)[];
|
129
129
|
default: string;
|
130
130
|
};
|
131
131
|
center: {
|
@@ -133,19 +133,19 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
133
133
|
default: boolean;
|
134
134
|
};
|
135
135
|
width: {
|
136
|
-
type: (
|
136
|
+
type: (StringConstructor | NumberConstructor)[];
|
137
137
|
default: number;
|
138
138
|
};
|
139
139
|
height: {
|
140
|
-
type: (
|
140
|
+
type: (StringConstructor | NumberConstructor)[];
|
141
141
|
default: number;
|
142
142
|
};
|
143
143
|
minWidth: {
|
144
|
-
type: (
|
144
|
+
type: (StringConstructor | NumberConstructor)[];
|
145
145
|
default: number;
|
146
146
|
};
|
147
147
|
minHeight: {
|
148
|
-
type: (
|
148
|
+
type: (StringConstructor | NumberConstructor)[];
|
149
149
|
default: number;
|
150
150
|
};
|
151
151
|
title: {
|
@@ -192,8 +192,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
192
192
|
default: boolean;
|
193
193
|
};
|
194
194
|
}>> & Readonly<{
|
195
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
196
195
|
onClose?: ((...args: any[]) => any) | undefined;
|
196
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
197
197
|
onClosed?: ((...args: any[]) => any) | undefined;
|
198
198
|
onOpened?: ((...args: any[]) => any) | undefined;
|
199
199
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
@@ -204,9 +204,9 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
204
204
|
top: string | number;
|
205
205
|
width: string | number;
|
206
206
|
mask: boolean;
|
207
|
+
title: string;
|
207
208
|
center: boolean;
|
208
209
|
disabled: boolean;
|
209
|
-
title: string;
|
210
210
|
renderTo: string | HTMLElement;
|
211
211
|
modelValue: boolean;
|
212
212
|
destroyOnClosed: boolean;
|
@@ -217,5 +217,5 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
217
217
|
popupClass: string;
|
218
218
|
showClose: boolean;
|
219
219
|
showHeaderBottomLine: boolean;
|
220
|
-
}, {}, {}, {}, string, import(
|
221
|
-
export default
|
220
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
221
|
+
export default _default;
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import
|
1
|
+
import { ExtractPropTypes } from 'vue';
|
2
2
|
export declare const dialogProps: {
|
3
3
|
renderTo: {
|
4
|
-
type: import(
|
4
|
+
type: import('vue').PropType<string | HTMLElement>;
|
5
5
|
default: string;
|
6
6
|
};
|
7
7
|
disabled: {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import
|
1
|
+
import { RenderFunction, VNode } from 'vue';
|
2
2
|
export type DialogBeforeAction = () => boolean | Promise<boolean>;
|
3
3
|
export type DialogContent = string | number | VNode | RenderFunction;
|
4
4
|
export interface DialogOptions {
|
@@ -0,0 +1,387 @@
|
|
1
|
+
import { PropType } from 'vue';
|
2
|
+
import { IMessageType, IMessage } from './props';
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
4
|
+
id: {
|
5
|
+
type: StringConstructor;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
message: {
|
9
|
+
type: PropType<IMessage>;
|
10
|
+
default: string;
|
11
|
+
};
|
12
|
+
type: {
|
13
|
+
type: PropType<IMessageType>;
|
14
|
+
default: string;
|
15
|
+
};
|
16
|
+
duration: {
|
17
|
+
type: NumberConstructor;
|
18
|
+
default: number;
|
19
|
+
};
|
20
|
+
center: {
|
21
|
+
type: BooleanConstructor;
|
22
|
+
default: boolean;
|
23
|
+
};
|
24
|
+
onClose: {
|
25
|
+
type: PropType<() => void>;
|
26
|
+
default: () => void;
|
27
|
+
};
|
28
|
+
offset: {
|
29
|
+
type: NumberConstructor;
|
30
|
+
default: number;
|
31
|
+
};
|
32
|
+
zIndex: {
|
33
|
+
type: NumberConstructor;
|
34
|
+
default: number;
|
35
|
+
};
|
36
|
+
showClose: {
|
37
|
+
type: BooleanConstructor;
|
38
|
+
default: boolean;
|
39
|
+
};
|
40
|
+
useHTML: BooleanConstructor;
|
41
|
+
popupClass: {
|
42
|
+
type: StringConstructor;
|
43
|
+
default: undefined;
|
44
|
+
};
|
45
|
+
}>, {
|
46
|
+
cn: {
|
47
|
+
block: string;
|
48
|
+
element: (className: string) => string;
|
49
|
+
modifier: (className: string) => string;
|
50
|
+
is: (className: string) => string;
|
51
|
+
};
|
52
|
+
cls: import('vue').ComputedRef<(string | false | undefined)[]>;
|
53
|
+
styles: import('vue').ComputedRef<{
|
54
|
+
top: string;
|
55
|
+
zIndex: number;
|
56
|
+
}>;
|
57
|
+
visible: import('vue').Ref<boolean, boolean>;
|
58
|
+
handleClose: () => void;
|
59
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "destroy"[], "destroy", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
60
|
+
id: {
|
61
|
+
type: StringConstructor;
|
62
|
+
default: string;
|
63
|
+
};
|
64
|
+
message: {
|
65
|
+
type: PropType<IMessage>;
|
66
|
+
default: string;
|
67
|
+
};
|
68
|
+
type: {
|
69
|
+
type: PropType<IMessageType>;
|
70
|
+
default: string;
|
71
|
+
};
|
72
|
+
duration: {
|
73
|
+
type: NumberConstructor;
|
74
|
+
default: number;
|
75
|
+
};
|
76
|
+
center: {
|
77
|
+
type: BooleanConstructor;
|
78
|
+
default: boolean;
|
79
|
+
};
|
80
|
+
onClose: {
|
81
|
+
type: PropType<() => void>;
|
82
|
+
default: () => void;
|
83
|
+
};
|
84
|
+
offset: {
|
85
|
+
type: NumberConstructor;
|
86
|
+
default: number;
|
87
|
+
};
|
88
|
+
zIndex: {
|
89
|
+
type: NumberConstructor;
|
90
|
+
default: number;
|
91
|
+
};
|
92
|
+
showClose: {
|
93
|
+
type: BooleanConstructor;
|
94
|
+
default: boolean;
|
95
|
+
};
|
96
|
+
useHTML: BooleanConstructor;
|
97
|
+
popupClass: {
|
98
|
+
type: StringConstructor;
|
99
|
+
default: undefined;
|
100
|
+
};
|
101
|
+
}>> & Readonly<{
|
102
|
+
onDestroy?: ((...args: any[]) => any) | undefined;
|
103
|
+
}>, {
|
104
|
+
message: IMessage;
|
105
|
+
zIndex: number;
|
106
|
+
offset: number;
|
107
|
+
center: boolean;
|
108
|
+
popupClass: string;
|
109
|
+
showClose: boolean;
|
110
|
+
type: "error" | "strong" | "success" | "warning" | "info";
|
111
|
+
onClose: () => void;
|
112
|
+
useHTML: boolean;
|
113
|
+
id: string;
|
114
|
+
duration: number;
|
115
|
+
}, {}, {
|
116
|
+
CloseCircleFill: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
117
|
+
size: {
|
118
|
+
type: (StringConstructor | NumberConstructor)[];
|
119
|
+
default: undefined;
|
120
|
+
};
|
121
|
+
rotate: {
|
122
|
+
type: NumberConstructor;
|
123
|
+
default: undefined;
|
124
|
+
};
|
125
|
+
spin: {
|
126
|
+
type: BooleanConstructor;
|
127
|
+
default: boolean;
|
128
|
+
};
|
129
|
+
color: {
|
130
|
+
type: StringConstructor;
|
131
|
+
default: undefined;
|
132
|
+
};
|
133
|
+
fillColor: {
|
134
|
+
type: ArrayConstructor;
|
135
|
+
default: undefined;
|
136
|
+
};
|
137
|
+
}>, {
|
138
|
+
cls: import('vue').ComputedRef<(string | {
|
139
|
+
"x-icon-loading": boolean;
|
140
|
+
})[]>;
|
141
|
+
styles: import('vue').ComputedRef<import('vue').CSSProperties>;
|
142
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
143
|
+
size: {
|
144
|
+
type: (StringConstructor | NumberConstructor)[];
|
145
|
+
default: undefined;
|
146
|
+
};
|
147
|
+
rotate: {
|
148
|
+
type: NumberConstructor;
|
149
|
+
default: undefined;
|
150
|
+
};
|
151
|
+
spin: {
|
152
|
+
type: BooleanConstructor;
|
153
|
+
default: boolean;
|
154
|
+
};
|
155
|
+
color: {
|
156
|
+
type: StringConstructor;
|
157
|
+
default: undefined;
|
158
|
+
};
|
159
|
+
fillColor: {
|
160
|
+
type: ArrayConstructor;
|
161
|
+
default: undefined;
|
162
|
+
};
|
163
|
+
}>> & Readonly<{}>, {
|
164
|
+
size: string | number;
|
165
|
+
color: string;
|
166
|
+
rotate: number;
|
167
|
+
spin: boolean;
|
168
|
+
fillColor: unknown[];
|
169
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
170
|
+
CheckCircleFill: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
171
|
+
size: {
|
172
|
+
type: (StringConstructor | NumberConstructor)[];
|
173
|
+
default: undefined;
|
174
|
+
};
|
175
|
+
rotate: {
|
176
|
+
type: NumberConstructor;
|
177
|
+
default: undefined;
|
178
|
+
};
|
179
|
+
spin: {
|
180
|
+
type: BooleanConstructor;
|
181
|
+
default: boolean;
|
182
|
+
};
|
183
|
+
color: {
|
184
|
+
type: StringConstructor;
|
185
|
+
default: undefined;
|
186
|
+
};
|
187
|
+
fillColor: {
|
188
|
+
type: ArrayConstructor;
|
189
|
+
default: undefined;
|
190
|
+
};
|
191
|
+
}>, {
|
192
|
+
cls: import('vue').ComputedRef<(string | {
|
193
|
+
"x-icon-loading": boolean;
|
194
|
+
})[]>;
|
195
|
+
styles: import('vue').ComputedRef<import('vue').CSSProperties>;
|
196
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
197
|
+
size: {
|
198
|
+
type: (StringConstructor | NumberConstructor)[];
|
199
|
+
default: undefined;
|
200
|
+
};
|
201
|
+
rotate: {
|
202
|
+
type: NumberConstructor;
|
203
|
+
default: undefined;
|
204
|
+
};
|
205
|
+
spin: {
|
206
|
+
type: BooleanConstructor;
|
207
|
+
default: boolean;
|
208
|
+
};
|
209
|
+
color: {
|
210
|
+
type: StringConstructor;
|
211
|
+
default: undefined;
|
212
|
+
};
|
213
|
+
fillColor: {
|
214
|
+
type: ArrayConstructor;
|
215
|
+
default: undefined;
|
216
|
+
};
|
217
|
+
}>> & Readonly<{}>, {
|
218
|
+
size: string | number;
|
219
|
+
color: string;
|
220
|
+
rotate: number;
|
221
|
+
spin: boolean;
|
222
|
+
fillColor: unknown[];
|
223
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
224
|
+
ExclamationCircleFill: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
225
|
+
size: {
|
226
|
+
type: (StringConstructor | NumberConstructor)[];
|
227
|
+
default: undefined;
|
228
|
+
};
|
229
|
+
rotate: {
|
230
|
+
type: NumberConstructor;
|
231
|
+
default: undefined;
|
232
|
+
};
|
233
|
+
spin: {
|
234
|
+
type: BooleanConstructor;
|
235
|
+
default: boolean;
|
236
|
+
};
|
237
|
+
color: {
|
238
|
+
type: StringConstructor;
|
239
|
+
default: undefined;
|
240
|
+
};
|
241
|
+
fillColor: {
|
242
|
+
type: ArrayConstructor;
|
243
|
+
default: undefined;
|
244
|
+
};
|
245
|
+
}>, {
|
246
|
+
cls: import('vue').ComputedRef<(string | {
|
247
|
+
"x-icon-loading": boolean;
|
248
|
+
})[]>;
|
249
|
+
styles: import('vue').ComputedRef<import('vue').CSSProperties>;
|
250
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
251
|
+
size: {
|
252
|
+
type: (StringConstructor | NumberConstructor)[];
|
253
|
+
default: undefined;
|
254
|
+
};
|
255
|
+
rotate: {
|
256
|
+
type: NumberConstructor;
|
257
|
+
default: undefined;
|
258
|
+
};
|
259
|
+
spin: {
|
260
|
+
type: BooleanConstructor;
|
261
|
+
default: boolean;
|
262
|
+
};
|
263
|
+
color: {
|
264
|
+
type: StringConstructor;
|
265
|
+
default: undefined;
|
266
|
+
};
|
267
|
+
fillColor: {
|
268
|
+
type: ArrayConstructor;
|
269
|
+
default: undefined;
|
270
|
+
};
|
271
|
+
}>> & Readonly<{}>, {
|
272
|
+
size: string | number;
|
273
|
+
color: string;
|
274
|
+
rotate: number;
|
275
|
+
spin: boolean;
|
276
|
+
fillColor: unknown[];
|
277
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
278
|
+
InfoCircleFill: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
279
|
+
size: {
|
280
|
+
type: (StringConstructor | NumberConstructor)[];
|
281
|
+
default: undefined;
|
282
|
+
};
|
283
|
+
rotate: {
|
284
|
+
type: NumberConstructor;
|
285
|
+
default: undefined;
|
286
|
+
};
|
287
|
+
spin: {
|
288
|
+
type: BooleanConstructor;
|
289
|
+
default: boolean;
|
290
|
+
};
|
291
|
+
color: {
|
292
|
+
type: StringConstructor;
|
293
|
+
default: undefined;
|
294
|
+
};
|
295
|
+
fillColor: {
|
296
|
+
type: ArrayConstructor;
|
297
|
+
default: undefined;
|
298
|
+
};
|
299
|
+
}>, {
|
300
|
+
cls: import('vue').ComputedRef<(string | {
|
301
|
+
"x-icon-loading": boolean;
|
302
|
+
})[]>;
|
303
|
+
styles: import('vue').ComputedRef<import('vue').CSSProperties>;
|
304
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
305
|
+
size: {
|
306
|
+
type: (StringConstructor | NumberConstructor)[];
|
307
|
+
default: undefined;
|
308
|
+
};
|
309
|
+
rotate: {
|
310
|
+
type: NumberConstructor;
|
311
|
+
default: undefined;
|
312
|
+
};
|
313
|
+
spin: {
|
314
|
+
type: BooleanConstructor;
|
315
|
+
default: boolean;
|
316
|
+
};
|
317
|
+
color: {
|
318
|
+
type: StringConstructor;
|
319
|
+
default: undefined;
|
320
|
+
};
|
321
|
+
fillColor: {
|
322
|
+
type: ArrayConstructor;
|
323
|
+
default: undefined;
|
324
|
+
};
|
325
|
+
}>> & Readonly<{}>, {
|
326
|
+
size: string | number;
|
327
|
+
color: string;
|
328
|
+
rotate: number;
|
329
|
+
spin: boolean;
|
330
|
+
fillColor: unknown[];
|
331
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
332
|
+
MinusCircleFill: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
333
|
+
size: {
|
334
|
+
type: (StringConstructor | NumberConstructor)[];
|
335
|
+
default: undefined;
|
336
|
+
};
|
337
|
+
rotate: {
|
338
|
+
type: NumberConstructor;
|
339
|
+
default: undefined;
|
340
|
+
};
|
341
|
+
spin: {
|
342
|
+
type: BooleanConstructor;
|
343
|
+
default: boolean;
|
344
|
+
};
|
345
|
+
color: {
|
346
|
+
type: StringConstructor;
|
347
|
+
default: undefined;
|
348
|
+
};
|
349
|
+
fillColor: {
|
350
|
+
type: ArrayConstructor;
|
351
|
+
default: undefined;
|
352
|
+
};
|
353
|
+
}>, {
|
354
|
+
cls: import('vue').ComputedRef<(string | {
|
355
|
+
"x-icon-loading": boolean;
|
356
|
+
})[]>;
|
357
|
+
styles: import('vue').ComputedRef<import('vue').CSSProperties>;
|
358
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
359
|
+
size: {
|
360
|
+
type: (StringConstructor | NumberConstructor)[];
|
361
|
+
default: undefined;
|
362
|
+
};
|
363
|
+
rotate: {
|
364
|
+
type: NumberConstructor;
|
365
|
+
default: undefined;
|
366
|
+
};
|
367
|
+
spin: {
|
368
|
+
type: BooleanConstructor;
|
369
|
+
default: boolean;
|
370
|
+
};
|
371
|
+
color: {
|
372
|
+
type: StringConstructor;
|
373
|
+
default: undefined;
|
374
|
+
};
|
375
|
+
fillColor: {
|
376
|
+
type: ArrayConstructor;
|
377
|
+
default: undefined;
|
378
|
+
};
|
379
|
+
}>> & Readonly<{}>, {
|
380
|
+
size: string | number;
|
381
|
+
color: string;
|
382
|
+
rotate: number;
|
383
|
+
spin: boolean;
|
384
|
+
fillColor: unknown[];
|
385
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
386
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
387
|
+
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import
|
1
|
+
import { RenderFunction, VNode } from 'vue';
|
2
2
|
export declare const messageTypes: readonly ["success", "warning", "error", "strong", "info"];
|
3
3
|
export type IMessageType = (typeof messageTypes)[number];
|
4
4
|
export type IMessage = string | number | VNode | RenderFunction;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import
|
1
|
+
import { RenderFunction, VNode } from 'vue';
|
2
2
|
export declare const messageBoxStaticMethods: readonly ["info", "success", "warning", "strong", "error"];
|
3
3
|
export type MessageBoxStaticMethod = (typeof messageBoxStaticMethods)[number];
|
4
4
|
export type MessageBoxBeforeAction = () => boolean | Promise<boolean>;
|