x-next 0.0.0-alpha.57 → 0.0.0-alpha.59
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/_utils/types.d.ts +2 -0
- package/dist/components/form-checkbox/Checkbox.d.ts +148 -0
- package/dist/components/form-checkbox/CheckboxGroup.d.ts +122 -0
- package/dist/components/form-checkbox/context.d.ts +10 -0
- package/dist/components/form-checkbox/icon-check.d.ts +2 -0
- package/dist/components/form-checkbox/index.d.ts +309 -0
- package/dist/components/form-checkbox/interface.d.ts +23 -0
- package/dist/components/form-switch/Switch.vue.d.ts +326 -0
- package/dist/components/form-switch/index.d.ts +375 -0
- package/dist/components/image/Image.vue.d.ts +1 -1
- package/dist/components/image/index.d.ts +3 -3
- package/dist/components/index.d.ts +4 -1
- package/dist/components/network/Network.vue.d.ts +3 -3
- package/dist/components/network/index.d.ts +6 -6
- package/dist/components/steps/Step.vue.d.ts +181 -0
- package/dist/components/steps/Steps.vue.d.ts +187 -0
- package/dist/components/steps/context.d.ts +17 -0
- package/dist/components/steps/index.d.ts +499 -0
- package/dist/components/steps/interface.d.ts +8 -0
- package/dist/components/tag/Tag.vue.d.ts +2 -2
- package/dist/components/tag/index.d.ts +6 -6
- package/dist/index.es.js +5071 -4211
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
- package/volar.d.ts +5 -0
- /package/dist/components/{input → form-input}/Input.d.ts +0 -0
- /package/dist/components/{input → form-input}/InputGroup.vue.d.ts +0 -0
- /package/dist/components/{input → form-input}/InputPassword.vue.d.ts +0 -0
- /package/dist/components/{input → form-input}/InputSearch.d.ts +0 -0
- /package/dist/components/{input → form-input}/index.d.ts +0 -0
@@ -0,0 +1,499 @@
|
|
1
|
+
export declare const Steps: {
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
3
|
+
type: {
|
4
|
+
type: import('vue').PropType<import('./interface.ts').StepsType>;
|
5
|
+
default: string;
|
6
|
+
};
|
7
|
+
direction: {
|
8
|
+
type: import('vue').PropType<import('../../_utils/constant.ts').Direction>;
|
9
|
+
default: string;
|
10
|
+
};
|
11
|
+
labelPlacement: {
|
12
|
+
type: import('vue').PropType<import('../../_utils/constant.ts').Direction>;
|
13
|
+
default: string;
|
14
|
+
};
|
15
|
+
current: {
|
16
|
+
type: NumberConstructor;
|
17
|
+
default: undefined;
|
18
|
+
};
|
19
|
+
defaultCurrent: {
|
20
|
+
type: NumberConstructor;
|
21
|
+
default: number;
|
22
|
+
};
|
23
|
+
status: {
|
24
|
+
type: import('vue').PropType<import('./interface.ts').StepStatus>;
|
25
|
+
default: string;
|
26
|
+
};
|
27
|
+
lineLess: {
|
28
|
+
type: BooleanConstructor;
|
29
|
+
default: boolean;
|
30
|
+
};
|
31
|
+
small: {
|
32
|
+
type: BooleanConstructor;
|
33
|
+
default: boolean;
|
34
|
+
};
|
35
|
+
changeable: {
|
36
|
+
type: BooleanConstructor;
|
37
|
+
default: boolean;
|
38
|
+
};
|
39
|
+
}>> & Readonly<{
|
40
|
+
onChange?: ((step: number, ev: Event) => any) | undefined;
|
41
|
+
"onUpdate:current"?: ((step: number) => any) | undefined;
|
42
|
+
}>, {
|
43
|
+
cls: import('vue').ComputedRef<(string | {
|
44
|
+
[x: string]: boolean;
|
45
|
+
})[]>;
|
46
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
47
|
+
'update:current': (step: number) => true;
|
48
|
+
change: (step: number, ev: Event) => true;
|
49
|
+
}, import('vue').PublicProps, {
|
50
|
+
small: boolean;
|
51
|
+
type: "default" | "dot" | "arrow" | "navigation";
|
52
|
+
status: "error" | "wait" | "process" | "finish";
|
53
|
+
direction: "horizontal" | "vertical";
|
54
|
+
current: number;
|
55
|
+
defaultCurrent: number;
|
56
|
+
labelPlacement: "horizontal" | "vertical";
|
57
|
+
lineLess: boolean;
|
58
|
+
changeable: boolean;
|
59
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
60
|
+
P: {};
|
61
|
+
B: {};
|
62
|
+
D: {};
|
63
|
+
C: {};
|
64
|
+
M: {};
|
65
|
+
Defaults: {};
|
66
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
67
|
+
type: {
|
68
|
+
type: import('vue').PropType<import('./interface.ts').StepsType>;
|
69
|
+
default: string;
|
70
|
+
};
|
71
|
+
direction: {
|
72
|
+
type: import('vue').PropType<import('../../_utils/constant.ts').Direction>;
|
73
|
+
default: string;
|
74
|
+
};
|
75
|
+
labelPlacement: {
|
76
|
+
type: import('vue').PropType<import('../../_utils/constant.ts').Direction>;
|
77
|
+
default: string;
|
78
|
+
};
|
79
|
+
current: {
|
80
|
+
type: NumberConstructor;
|
81
|
+
default: undefined;
|
82
|
+
};
|
83
|
+
defaultCurrent: {
|
84
|
+
type: NumberConstructor;
|
85
|
+
default: number;
|
86
|
+
};
|
87
|
+
status: {
|
88
|
+
type: import('vue').PropType<import('./interface.ts').StepStatus>;
|
89
|
+
default: string;
|
90
|
+
};
|
91
|
+
lineLess: {
|
92
|
+
type: BooleanConstructor;
|
93
|
+
default: boolean;
|
94
|
+
};
|
95
|
+
small: {
|
96
|
+
type: BooleanConstructor;
|
97
|
+
default: boolean;
|
98
|
+
};
|
99
|
+
changeable: {
|
100
|
+
type: BooleanConstructor;
|
101
|
+
default: boolean;
|
102
|
+
};
|
103
|
+
}>> & Readonly<{
|
104
|
+
onChange?: ((step: number, ev: Event) => any) | undefined;
|
105
|
+
"onUpdate:current"?: ((step: number) => any) | undefined;
|
106
|
+
}>, {
|
107
|
+
cls: import('vue').ComputedRef<(string | {
|
108
|
+
[x: string]: boolean;
|
109
|
+
})[]>;
|
110
|
+
}, {}, {}, {}, {
|
111
|
+
small: boolean;
|
112
|
+
type: "default" | "dot" | "arrow" | "navigation";
|
113
|
+
status: "error" | "wait" | "process" | "finish";
|
114
|
+
direction: "horizontal" | "vertical";
|
115
|
+
current: number;
|
116
|
+
defaultCurrent: number;
|
117
|
+
labelPlacement: "horizontal" | "vertical";
|
118
|
+
lineLess: boolean;
|
119
|
+
changeable: boolean;
|
120
|
+
}>;
|
121
|
+
__isFragment?: never;
|
122
|
+
__isTeleport?: never;
|
123
|
+
__isSuspense?: never;
|
124
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
125
|
+
type: {
|
126
|
+
type: import('vue').PropType<import('./interface.ts').StepsType>;
|
127
|
+
default: string;
|
128
|
+
};
|
129
|
+
direction: {
|
130
|
+
type: import('vue').PropType<import('../../_utils/constant.ts').Direction>;
|
131
|
+
default: string;
|
132
|
+
};
|
133
|
+
labelPlacement: {
|
134
|
+
type: import('vue').PropType<import('../../_utils/constant.ts').Direction>;
|
135
|
+
default: string;
|
136
|
+
};
|
137
|
+
current: {
|
138
|
+
type: NumberConstructor;
|
139
|
+
default: undefined;
|
140
|
+
};
|
141
|
+
defaultCurrent: {
|
142
|
+
type: NumberConstructor;
|
143
|
+
default: number;
|
144
|
+
};
|
145
|
+
status: {
|
146
|
+
type: import('vue').PropType<import('./interface.ts').StepStatus>;
|
147
|
+
default: string;
|
148
|
+
};
|
149
|
+
lineLess: {
|
150
|
+
type: BooleanConstructor;
|
151
|
+
default: boolean;
|
152
|
+
};
|
153
|
+
small: {
|
154
|
+
type: BooleanConstructor;
|
155
|
+
default: boolean;
|
156
|
+
};
|
157
|
+
changeable: {
|
158
|
+
type: BooleanConstructor;
|
159
|
+
default: boolean;
|
160
|
+
};
|
161
|
+
}>> & Readonly<{
|
162
|
+
onChange?: ((step: number, ev: Event) => any) | undefined;
|
163
|
+
"onUpdate:current"?: ((step: number) => any) | undefined;
|
164
|
+
}>, {
|
165
|
+
cls: import('vue').ComputedRef<(string | {
|
166
|
+
[x: string]: boolean;
|
167
|
+
})[]>;
|
168
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
169
|
+
'update:current': (step: number) => true;
|
170
|
+
change: (step: number, ev: Event) => true;
|
171
|
+
}, string, {
|
172
|
+
small: boolean;
|
173
|
+
type: "default" | "dot" | "arrow" | "navigation";
|
174
|
+
status: "error" | "wait" | "process" | "finish";
|
175
|
+
direction: "horizontal" | "vertical";
|
176
|
+
current: number;
|
177
|
+
defaultCurrent: number;
|
178
|
+
labelPlacement: "horizontal" | "vertical";
|
179
|
+
lineLess: boolean;
|
180
|
+
changeable: boolean;
|
181
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
182
|
+
install(app: import('vue').App): void;
|
183
|
+
};
|
184
|
+
export declare const Step: {
|
185
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
186
|
+
title: StringConstructor;
|
187
|
+
description: StringConstructor;
|
188
|
+
status: {
|
189
|
+
type: import('vue').PropType<import('./interface.ts').StepStatus>;
|
190
|
+
};
|
191
|
+
disabled: {
|
192
|
+
type: BooleanConstructor;
|
193
|
+
default: boolean;
|
194
|
+
};
|
195
|
+
}>> & Readonly<{}>, {
|
196
|
+
className: {
|
197
|
+
block: string;
|
198
|
+
element: (className: string) => string;
|
199
|
+
modifier: (className: string) => string;
|
200
|
+
is: (className: string) => string;
|
201
|
+
};
|
202
|
+
iconClassName: {
|
203
|
+
block: string;
|
204
|
+
element: (className: string) => string;
|
205
|
+
modifier: (className: string) => string;
|
206
|
+
is: (className: string) => string;
|
207
|
+
};
|
208
|
+
cls: import('vue').ComputedRef<(string | {
|
209
|
+
[x: string]: boolean;
|
210
|
+
})[]>;
|
211
|
+
itemRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
212
|
+
showTail: import('vue').ComputedRef<boolean>;
|
213
|
+
stepNumber: import('vue').ComputedRef<number>;
|
214
|
+
computedStatus: import('vue').ComputedRef<"error" | "wait" | "process" | "finish">;
|
215
|
+
type: import('vue').ComputedRef<"default" | "dot" | "arrow" | "navigation">;
|
216
|
+
handleClick: (ev: Event) => void;
|
217
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
218
|
+
disabled: boolean;
|
219
|
+
}, true, {}, {}, {
|
220
|
+
IconCheck: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
221
|
+
size: {
|
222
|
+
type: (NumberConstructor | StringConstructor)[];
|
223
|
+
default: undefined;
|
224
|
+
};
|
225
|
+
rotate: {
|
226
|
+
type: NumberConstructor;
|
227
|
+
default: undefined;
|
228
|
+
};
|
229
|
+
spin: {
|
230
|
+
type: BooleanConstructor;
|
231
|
+
default: boolean;
|
232
|
+
};
|
233
|
+
color: {
|
234
|
+
type: StringConstructor;
|
235
|
+
default: undefined;
|
236
|
+
};
|
237
|
+
fillColor: {
|
238
|
+
type: ArrayConstructor;
|
239
|
+
default: undefined;
|
240
|
+
};
|
241
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
242
|
+
size: {
|
243
|
+
type: (NumberConstructor | StringConstructor)[];
|
244
|
+
default: undefined;
|
245
|
+
};
|
246
|
+
rotate: {
|
247
|
+
type: NumberConstructor;
|
248
|
+
default: undefined;
|
249
|
+
};
|
250
|
+
spin: {
|
251
|
+
type: BooleanConstructor;
|
252
|
+
default: boolean;
|
253
|
+
};
|
254
|
+
color: {
|
255
|
+
type: StringConstructor;
|
256
|
+
default: undefined;
|
257
|
+
};
|
258
|
+
fillColor: {
|
259
|
+
type: ArrayConstructor;
|
260
|
+
default: undefined;
|
261
|
+
};
|
262
|
+
}>> & Readonly<{}>, {
|
263
|
+
size: string | number;
|
264
|
+
rotate: number;
|
265
|
+
spin: boolean;
|
266
|
+
color: string;
|
267
|
+
fillColor: unknown[];
|
268
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
269
|
+
IconClose: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
270
|
+
size: {
|
271
|
+
type: (NumberConstructor | StringConstructor)[];
|
272
|
+
default: undefined;
|
273
|
+
};
|
274
|
+
rotate: {
|
275
|
+
type: NumberConstructor;
|
276
|
+
default: undefined;
|
277
|
+
};
|
278
|
+
spin: {
|
279
|
+
type: BooleanConstructor;
|
280
|
+
default: boolean;
|
281
|
+
};
|
282
|
+
color: {
|
283
|
+
type: StringConstructor;
|
284
|
+
default: undefined;
|
285
|
+
};
|
286
|
+
fillColor: {
|
287
|
+
type: ArrayConstructor;
|
288
|
+
default: undefined;
|
289
|
+
};
|
290
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
291
|
+
size: {
|
292
|
+
type: (NumberConstructor | StringConstructor)[];
|
293
|
+
default: undefined;
|
294
|
+
};
|
295
|
+
rotate: {
|
296
|
+
type: NumberConstructor;
|
297
|
+
default: undefined;
|
298
|
+
};
|
299
|
+
spin: {
|
300
|
+
type: BooleanConstructor;
|
301
|
+
default: boolean;
|
302
|
+
};
|
303
|
+
color: {
|
304
|
+
type: StringConstructor;
|
305
|
+
default: undefined;
|
306
|
+
};
|
307
|
+
fillColor: {
|
308
|
+
type: ArrayConstructor;
|
309
|
+
default: undefined;
|
310
|
+
};
|
311
|
+
}>> & Readonly<{}>, {
|
312
|
+
size: string | number;
|
313
|
+
rotate: number;
|
314
|
+
spin: boolean;
|
315
|
+
color: string;
|
316
|
+
fillColor: unknown[];
|
317
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
318
|
+
} & import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
319
|
+
P: {};
|
320
|
+
B: {};
|
321
|
+
D: {};
|
322
|
+
C: {};
|
323
|
+
M: {};
|
324
|
+
Defaults: {};
|
325
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
326
|
+
title: StringConstructor;
|
327
|
+
description: StringConstructor;
|
328
|
+
status: {
|
329
|
+
type: import('vue').PropType<import('./interface.ts').StepStatus>;
|
330
|
+
};
|
331
|
+
disabled: {
|
332
|
+
type: BooleanConstructor;
|
333
|
+
default: boolean;
|
334
|
+
};
|
335
|
+
}>> & Readonly<{}>, {
|
336
|
+
className: {
|
337
|
+
block: string;
|
338
|
+
element: (className: string) => string;
|
339
|
+
modifier: (className: string) => string;
|
340
|
+
is: (className: string) => string;
|
341
|
+
};
|
342
|
+
iconClassName: {
|
343
|
+
block: string;
|
344
|
+
element: (className: string) => string;
|
345
|
+
modifier: (className: string) => string;
|
346
|
+
is: (className: string) => string;
|
347
|
+
};
|
348
|
+
cls: import('vue').ComputedRef<(string | {
|
349
|
+
[x: string]: boolean;
|
350
|
+
})[]>;
|
351
|
+
itemRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
352
|
+
showTail: import('vue').ComputedRef<boolean>;
|
353
|
+
stepNumber: import('vue').ComputedRef<number>;
|
354
|
+
computedStatus: import('vue').ComputedRef<"error" | "wait" | "process" | "finish">;
|
355
|
+
type: import('vue').ComputedRef<"default" | "dot" | "arrow" | "navigation">;
|
356
|
+
handleClick: (ev: Event) => void;
|
357
|
+
}, {}, {}, {}, {
|
358
|
+
disabled: boolean;
|
359
|
+
}>;
|
360
|
+
__isFragment?: never;
|
361
|
+
__isTeleport?: never;
|
362
|
+
__isSuspense?: never;
|
363
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
364
|
+
title: StringConstructor;
|
365
|
+
description: StringConstructor;
|
366
|
+
status: {
|
367
|
+
type: import('vue').PropType<import('./interface.ts').StepStatus>;
|
368
|
+
};
|
369
|
+
disabled: {
|
370
|
+
type: BooleanConstructor;
|
371
|
+
default: boolean;
|
372
|
+
};
|
373
|
+
}>> & Readonly<{}>, {
|
374
|
+
className: {
|
375
|
+
block: string;
|
376
|
+
element: (className: string) => string;
|
377
|
+
modifier: (className: string) => string;
|
378
|
+
is: (className: string) => string;
|
379
|
+
};
|
380
|
+
iconClassName: {
|
381
|
+
block: string;
|
382
|
+
element: (className: string) => string;
|
383
|
+
modifier: (className: string) => string;
|
384
|
+
is: (className: string) => string;
|
385
|
+
};
|
386
|
+
cls: import('vue').ComputedRef<(string | {
|
387
|
+
[x: string]: boolean;
|
388
|
+
})[]>;
|
389
|
+
itemRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
390
|
+
showTail: import('vue').ComputedRef<boolean>;
|
391
|
+
stepNumber: import('vue').ComputedRef<number>;
|
392
|
+
computedStatus: import('vue').ComputedRef<"error" | "wait" | "process" | "finish">;
|
393
|
+
type: import('vue').ComputedRef<"default" | "dot" | "arrow" | "navigation">;
|
394
|
+
handleClick: (ev: Event) => void;
|
395
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
396
|
+
disabled: boolean;
|
397
|
+
}, {}, string, {}, {
|
398
|
+
IconCheck: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
399
|
+
size: {
|
400
|
+
type: (NumberConstructor | StringConstructor)[];
|
401
|
+
default: undefined;
|
402
|
+
};
|
403
|
+
rotate: {
|
404
|
+
type: NumberConstructor;
|
405
|
+
default: undefined;
|
406
|
+
};
|
407
|
+
spin: {
|
408
|
+
type: BooleanConstructor;
|
409
|
+
default: boolean;
|
410
|
+
};
|
411
|
+
color: {
|
412
|
+
type: StringConstructor;
|
413
|
+
default: undefined;
|
414
|
+
};
|
415
|
+
fillColor: {
|
416
|
+
type: ArrayConstructor;
|
417
|
+
default: undefined;
|
418
|
+
};
|
419
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
420
|
+
size: {
|
421
|
+
type: (NumberConstructor | StringConstructor)[];
|
422
|
+
default: undefined;
|
423
|
+
};
|
424
|
+
rotate: {
|
425
|
+
type: NumberConstructor;
|
426
|
+
default: undefined;
|
427
|
+
};
|
428
|
+
spin: {
|
429
|
+
type: BooleanConstructor;
|
430
|
+
default: boolean;
|
431
|
+
};
|
432
|
+
color: {
|
433
|
+
type: StringConstructor;
|
434
|
+
default: undefined;
|
435
|
+
};
|
436
|
+
fillColor: {
|
437
|
+
type: ArrayConstructor;
|
438
|
+
default: undefined;
|
439
|
+
};
|
440
|
+
}>> & Readonly<{}>, {
|
441
|
+
size: string | number;
|
442
|
+
rotate: number;
|
443
|
+
spin: boolean;
|
444
|
+
color: string;
|
445
|
+
fillColor: unknown[];
|
446
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
447
|
+
IconClose: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
448
|
+
size: {
|
449
|
+
type: (NumberConstructor | StringConstructor)[];
|
450
|
+
default: undefined;
|
451
|
+
};
|
452
|
+
rotate: {
|
453
|
+
type: NumberConstructor;
|
454
|
+
default: undefined;
|
455
|
+
};
|
456
|
+
spin: {
|
457
|
+
type: BooleanConstructor;
|
458
|
+
default: boolean;
|
459
|
+
};
|
460
|
+
color: {
|
461
|
+
type: StringConstructor;
|
462
|
+
default: undefined;
|
463
|
+
};
|
464
|
+
fillColor: {
|
465
|
+
type: ArrayConstructor;
|
466
|
+
default: undefined;
|
467
|
+
};
|
468
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
469
|
+
size: {
|
470
|
+
type: (NumberConstructor | StringConstructor)[];
|
471
|
+
default: undefined;
|
472
|
+
};
|
473
|
+
rotate: {
|
474
|
+
type: NumberConstructor;
|
475
|
+
default: undefined;
|
476
|
+
};
|
477
|
+
spin: {
|
478
|
+
type: BooleanConstructor;
|
479
|
+
default: boolean;
|
480
|
+
};
|
481
|
+
color: {
|
482
|
+
type: StringConstructor;
|
483
|
+
default: undefined;
|
484
|
+
};
|
485
|
+
fillColor: {
|
486
|
+
type: ArrayConstructor;
|
487
|
+
default: undefined;
|
488
|
+
};
|
489
|
+
}>> & Readonly<{}>, {
|
490
|
+
size: string | number;
|
491
|
+
rotate: number;
|
492
|
+
spin: boolean;
|
493
|
+
color: string;
|
494
|
+
fillColor: unknown[];
|
495
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
496
|
+
} & import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
497
|
+
install(app: import('vue').App): void;
|
498
|
+
};
|
499
|
+
export { Steps as default };
|
@@ -0,0 +1,8 @@
|
|
1
|
+
export declare const STEPS_TYPES: readonly ["default", "arrow", "dot", "navigation"];
|
2
|
+
export type StepsType = typeof STEPS_TYPES[number];
|
3
|
+
export declare const STEP_STATUSES: readonly ["wait", "process", "finish", "error"];
|
4
|
+
export type StepStatus = typeof STEP_STATUSES[number];
|
5
|
+
export interface StepData {
|
6
|
+
step: number;
|
7
|
+
status: StepStatus;
|
8
|
+
}
|
@@ -231,12 +231,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
231
231
|
loading: boolean;
|
232
232
|
visible: boolean;
|
233
233
|
nowrap: boolean;
|
234
|
+
defaultChecked: boolean;
|
235
|
+
checked: boolean;
|
234
236
|
defaultVisible: boolean;
|
235
237
|
closable: boolean;
|
236
238
|
bordered: boolean;
|
237
239
|
selectable: boolean;
|
238
|
-
checked: boolean;
|
239
|
-
defaultChecked: boolean;
|
240
240
|
}, {}, {
|
241
241
|
IconHover: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
242
242
|
prefix: {
|
@@ -73,12 +73,12 @@ export declare const Tag: {
|
|
73
73
|
loading: boolean;
|
74
74
|
visible: boolean;
|
75
75
|
nowrap: boolean;
|
76
|
+
defaultChecked: boolean;
|
77
|
+
checked: boolean;
|
76
78
|
defaultVisible: boolean;
|
77
79
|
closable: boolean;
|
78
80
|
bordered: boolean;
|
79
81
|
selectable: boolean;
|
80
|
-
checked: boolean;
|
81
|
-
defaultChecked: boolean;
|
82
82
|
}, true, {}, {}, {
|
83
83
|
IconHover: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
84
84
|
prefix: {
|
@@ -289,12 +289,12 @@ export declare const Tag: {
|
|
289
289
|
loading: boolean;
|
290
290
|
visible: boolean;
|
291
291
|
nowrap: boolean;
|
292
|
+
defaultChecked: boolean;
|
293
|
+
checked: boolean;
|
292
294
|
defaultVisible: boolean;
|
293
295
|
closable: boolean;
|
294
296
|
bordered: boolean;
|
295
297
|
selectable: boolean;
|
296
|
-
checked: boolean;
|
297
|
-
defaultChecked: boolean;
|
298
298
|
}>;
|
299
299
|
__isFragment?: never;
|
300
300
|
__isTeleport?: never;
|
@@ -373,12 +373,12 @@ export declare const Tag: {
|
|
373
373
|
loading: boolean;
|
374
374
|
visible: boolean;
|
375
375
|
nowrap: boolean;
|
376
|
+
defaultChecked: boolean;
|
377
|
+
checked: boolean;
|
376
378
|
defaultVisible: boolean;
|
377
379
|
closable: boolean;
|
378
380
|
bordered: boolean;
|
379
381
|
selectable: boolean;
|
380
|
-
checked: boolean;
|
381
|
-
defaultChecked: boolean;
|
382
382
|
}, {}, string, {}, {
|
383
383
|
IconHover: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
384
384
|
prefix: {
|