@topvisor/ui 0.9.2 → 0.9.4
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/.chunks/datepicker-78c2af5a.es.js +275 -0
- package/.chunks/datepicker-78c2af5a.es.js.map +1 -0
- package/.chunks/datepicker-cc0011e1.amd.js +234 -0
- package/.chunks/datepicker-cc0011e1.amd.js.map +1 -0
- package/.chunks/forms-9516aa6c.es.js +1000 -0
- package/.chunks/forms-9516aa6c.es.js.map +1 -0
- package/.chunks/forms-9972aba2.amd.js +3 -0
- package/.chunks/forms-9972aba2.amd.js.map +1 -0
- package/.chunks/{popup-b2fe3094.es.js → popup-70a8c892.es.js} +423 -422
- package/.chunks/popup-70a8c892.es.js.map +1 -0
- package/.chunks/popup-d96418da.amd.js +378 -0
- package/.chunks/popup-d96418da.amd.js.map +1 -0
- package/README.md +80 -80
- package/assets/forms.css +1 -1
- package/assets/tabsView.css +1 -1
- package/core/core.amd.js +1 -1
- package/core/core.js +1 -1
- package/forms/forms.amd.js +1 -1
- package/forms/forms.js +1 -1
- package/forms/helpers.amd.js.map +1 -1
- package/forms/helpers.js.map +1 -1
- package/formsExt/formsExt.amd.js +1 -1
- package/formsExt/formsExt.amd.js.map +1 -1
- package/formsExt/formsExt.js +83 -84
- package/formsExt/formsExt.js.map +1 -1
- package/icomoon/demo-files/demo.css +161 -161
- package/icomoon/demo-files/demo.js +30 -30
- package/icomoon/demo.html +2945 -2945
- package/icomoon/fonts/Topvisor-2.svg +232 -232
- package/icomoon/style.css +647 -647
- package/package.json +22 -19
- package/popup/popup.amd.js +1 -1
- package/popup/popup.amd.js.map +1 -1
- package/popup/popup.js +52 -52
- package/popup/popup.js.map +1 -1
- package/popup/worker.amd.js +1 -1
- package/popup/worker.amd.js.map +1 -1
- package/popup/worker.js +3 -2
- package/popup/worker.js.map +1 -1
- package/require/css.amd.js +12 -0
- package/src/components/forms/button/button.stories.d.ts +97 -140
- package/src/components/forms/checkbox/checkbox.stories.d.ts +61 -100
- package/src/components/forms/controlLabel/controlLabel.stories.d.ts +20 -53
- package/src/components/forms/input/input.stories.d.ts +101 -145
- package/src/components/forms/inputRange/inputRange.stories.d.ts +117 -221
- package/src/components/forms/radio/radio.stories.d.ts +57 -95
- package/src/components/forms/switcher/switcher.stories.d.ts +55 -93
- package/src/components/formsExt/editInput/editInput.stories.d.ts +34 -69
- package/src/components/popup/popup/popup.stories.d.ts +242 -363
- package/src/components/tabs/tabs/tabs.stories.d.ts +195 -370
- package/src/components/tabsView/tabsView/_MenuItem.stories.d.ts +110 -216
- package/src/components/tabsView/tabsView/_MenuTitle.stories.d.ts +76 -176
- package/src/components/tabsView/tabsView/tabsView.stories.d.ts +156 -327
- package/src/core/core/page.d.ts +0 -7
- package/src/core/utils/css.d.ts +5 -0
- package/tabs/tabs.amd.js +1 -1
- package/tabs/tabs.js +37 -38
- package/tabs/tabs.js.map +1 -1
- package/tabsView/tabsView.amd.js +1 -1
- package/tabsView/tabsView.amd.js.map +1 -1
- package/tabsView/tabsView.js +94 -90
- package/tabsView/tabsView.js.map +1 -1
- package/utils/css.amd.js +2 -0
- package/utils/css.amd.js.map +1 -0
- package/utils/css.d.ts +1 -0
- package/utils/css.js +35 -0
- package/utils/css.js.map +1 -0
- package/utils/date.amd.js +1 -1
- package/utils/date.js +1 -1
- package/utils/device.amd.js +1 -1
- package/utils/device.js +1 -1
- package/utils/dom.amd.js +1 -1
- package/utils/dom.amd.js.map +1 -1
- package/utils/dom.js +61 -3
- package/utils/dom.js.map +1 -1
- package/.chunks/datepicker-32bc8bd9.es.js +0 -275
- package/.chunks/datepicker-32bc8bd9.es.js.map +0 -1
- package/.chunks/datepicker-8a42d8a6.amd.js +0 -234
- package/.chunks/datepicker-8a42d8a6.amd.js.map +0 -1
- package/.chunks/forms-30d68077.amd.js +0 -3
- package/.chunks/forms-30d68077.amd.js.map +0 -1
- package/.chunks/forms-64632f73.es.js +0 -1091
- package/.chunks/forms-64632f73.es.js.map +0 -1
- package/.chunks/popup-14ca85cf.amd.js +0 -378
- package/.chunks/popup-14ca85cf.amd.js.map +0 -1
- package/.chunks/popup-b2fe3094.es.js.map +0 -1
|
@@ -2,118 +2,74 @@ import type { StoryObj } from '@storybook/vue3';
|
|
|
2
2
|
import * as ComponentsConst from './popup';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
component: {
|
|
5
|
-
new (...args: any[]): {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
$props: Partial<{
|
|
9
|
-
id: string;
|
|
10
|
-
pos: ComponentsConst.Pos;
|
|
11
|
-
notch: boolean;
|
|
12
|
-
posBy: ComponentsConst.PosBy;
|
|
13
|
-
}> & Omit<{
|
|
14
|
-
readonly id: string;
|
|
15
|
-
readonly pos: ComponentsConst.Pos;
|
|
16
|
-
readonly notch: boolean;
|
|
17
|
-
readonly posBy: ComponentsConst.PosBy;
|
|
18
|
-
readonly class?: string | undefined;
|
|
19
|
-
readonly openByHover?: boolean | undefined;
|
|
20
|
-
onClose?: (() => any) | undefined;
|
|
21
|
-
onOpen?: (() => any) | undefined;
|
|
22
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
-
class: {
|
|
24
|
-
type: import("vue").PropType<string>;
|
|
25
|
-
};
|
|
26
|
-
id: {
|
|
27
|
-
type: import("vue").PropType<string>;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
pos: {
|
|
31
|
-
type: import("vue").PropType<ComponentsConst.Pos>;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
notch: {
|
|
35
|
-
type: import("vue").PropType<boolean>;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
openByHover: {
|
|
39
|
-
type: import("vue").PropType<boolean>;
|
|
40
|
-
};
|
|
41
|
-
posBy: {
|
|
42
|
-
type: import("vue").PropType<ComponentsConst.PosBy>;
|
|
43
|
-
default: string;
|
|
44
|
-
};
|
|
45
|
-
}>> & {
|
|
46
|
-
onClose?: (() => any) | undefined;
|
|
47
|
-
onOpen?: (() => any) | undefined;
|
|
48
|
-
}, "id" | "pos" | "notch" | "posBy">;
|
|
49
|
-
$attrs: {
|
|
50
|
-
[x: string]: unknown;
|
|
5
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
class: {
|
|
7
|
+
type: import("vue").PropType<string>;
|
|
51
8
|
};
|
|
52
|
-
|
|
53
|
-
|
|
9
|
+
id: {
|
|
10
|
+
type: import("vue").PropType<string>;
|
|
11
|
+
default: string;
|
|
54
12
|
};
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
type: import("vue").PropType<boolean>;
|
|
80
|
-
};
|
|
81
|
-
posBy: {
|
|
82
|
-
type: import("vue").PropType<ComponentsConst.PosBy>;
|
|
83
|
-
default: string;
|
|
84
|
-
};
|
|
85
|
-
}>> & {
|
|
86
|
-
onClose?: (() => any) | undefined;
|
|
87
|
-
onOpen?: (() => any) | undefined;
|
|
88
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
89
|
-
open: () => void;
|
|
90
|
-
close: () => void;
|
|
91
|
-
}, string, {
|
|
92
|
-
id: string;
|
|
93
|
-
pos: ComponentsConst.Pos;
|
|
94
|
-
notch: boolean;
|
|
95
|
-
posBy: ComponentsConst.PosBy;
|
|
96
|
-
}, {}, string, {}> & {
|
|
97
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
98
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
99
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
100
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
101
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
102
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
103
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
104
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
105
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
106
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
107
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
108
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
109
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
110
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
111
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
13
|
+
pos: {
|
|
14
|
+
type: import("vue").PropType<ComponentsConst.Pos>;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
notch: {
|
|
18
|
+
type: import("vue").PropType<boolean>;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
openByHover: {
|
|
22
|
+
type: import("vue").PropType<boolean>;
|
|
23
|
+
};
|
|
24
|
+
posBy: {
|
|
25
|
+
type: import("vue").PropType<ComponentsConst.PosBy>;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
}>> & {
|
|
29
|
+
onClose?: (() => any) | undefined;
|
|
30
|
+
onOpen?: (() => any) | undefined;
|
|
31
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
32
|
+
open: () => void;
|
|
33
|
+
close: () => void;
|
|
34
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
+
class: {
|
|
36
|
+
type: import("vue").PropType<string>;
|
|
112
37
|
};
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
38
|
+
id: {
|
|
39
|
+
type: import("vue").PropType<string>;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
pos: {
|
|
43
|
+
type: import("vue").PropType<ComponentsConst.Pos>;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
notch: {
|
|
47
|
+
type: import("vue").PropType<boolean>;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
50
|
+
openByHover: {
|
|
51
|
+
type: import("vue").PropType<boolean>;
|
|
52
|
+
};
|
|
53
|
+
posBy: {
|
|
54
|
+
type: import("vue").PropType<ComponentsConst.PosBy>;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
}>> & {
|
|
58
|
+
onClose?: (() => any) | undefined;
|
|
59
|
+
onOpen?: (() => any) | undefined;
|
|
60
|
+
}, {
|
|
61
|
+
id: string;
|
|
62
|
+
pos: ComponentsConst.Pos;
|
|
63
|
+
notch: boolean;
|
|
64
|
+
posBy: ComponentsConst.PosBy;
|
|
65
|
+
}, true, {}, {}, {
|
|
66
|
+
P: {};
|
|
67
|
+
B: {};
|
|
68
|
+
D: {};
|
|
69
|
+
C: {};
|
|
70
|
+
M: {};
|
|
71
|
+
Defaults: {};
|
|
72
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
117
73
|
class: {
|
|
118
74
|
type: import("vue").PropType<string>;
|
|
119
75
|
};
|
|
@@ -139,7 +95,12 @@ declare const meta: {
|
|
|
139
95
|
}>> & {
|
|
140
96
|
onClose?: (() => any) | undefined;
|
|
141
97
|
onOpen?: (() => any) | undefined;
|
|
142
|
-
}
|
|
98
|
+
}, {}, {}, {}, {}, {
|
|
99
|
+
id: string;
|
|
100
|
+
pos: ComponentsConst.Pos;
|
|
101
|
+
notch: boolean;
|
|
102
|
+
posBy: ComponentsConst.PosBy;
|
|
103
|
+
}>;
|
|
143
104
|
__isFragment?: undefined;
|
|
144
105
|
__isTeleport?: undefined;
|
|
145
106
|
__isSuspense?: undefined;
|
|
@@ -258,118 +219,74 @@ export declare const Playground: {
|
|
|
258
219
|
}) => {
|
|
259
220
|
components: {
|
|
260
221
|
Popup: {
|
|
261
|
-
new (...args: any[]): {
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
};
|
|
330
|
-
notch: {
|
|
331
|
-
type: import("vue").PropType<boolean>;
|
|
332
|
-
default: boolean;
|
|
333
|
-
};
|
|
334
|
-
openByHover: {
|
|
335
|
-
type: import("vue").PropType<boolean>;
|
|
336
|
-
};
|
|
337
|
-
posBy: {
|
|
338
|
-
type: import("vue").PropType<ComponentsConst.PosBy>;
|
|
339
|
-
default: string;
|
|
340
|
-
};
|
|
341
|
-
}>> & {
|
|
342
|
-
onClose?: (() => any) | undefined;
|
|
343
|
-
onOpen?: (() => any) | undefined;
|
|
344
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
345
|
-
open: () => void;
|
|
346
|
-
close: () => void;
|
|
347
|
-
}, string, {
|
|
348
|
-
id: string;
|
|
349
|
-
pos: ComponentsConst.Pos;
|
|
350
|
-
notch: boolean;
|
|
351
|
-
posBy: ComponentsConst.PosBy;
|
|
352
|
-
}, {}, string, {}> & {
|
|
353
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
354
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
355
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
356
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
357
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
358
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
359
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
360
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
361
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
362
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
363
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
364
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
365
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
366
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
367
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
368
|
-
};
|
|
369
|
-
$forceUpdate: () => void;
|
|
370
|
-
$nextTick: typeof import("vue").nextTick;
|
|
371
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
372
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
222
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
223
|
+
class: {
|
|
224
|
+
type: import("vue").PropType<string>;
|
|
225
|
+
};
|
|
226
|
+
id: {
|
|
227
|
+
type: import("vue").PropType<string>;
|
|
228
|
+
default: string;
|
|
229
|
+
};
|
|
230
|
+
pos: {
|
|
231
|
+
type: import("vue").PropType<ComponentsConst.Pos>;
|
|
232
|
+
default: string;
|
|
233
|
+
};
|
|
234
|
+
notch: {
|
|
235
|
+
type: import("vue").PropType<boolean>;
|
|
236
|
+
default: boolean;
|
|
237
|
+
};
|
|
238
|
+
openByHover: {
|
|
239
|
+
type: import("vue").PropType<boolean>;
|
|
240
|
+
};
|
|
241
|
+
posBy: {
|
|
242
|
+
type: import("vue").PropType<ComponentsConst.PosBy>;
|
|
243
|
+
default: string;
|
|
244
|
+
};
|
|
245
|
+
}>> & {
|
|
246
|
+
onClose?: (() => any) | undefined;
|
|
247
|
+
onOpen?: (() => any) | undefined;
|
|
248
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
249
|
+
open: () => void;
|
|
250
|
+
close: () => void;
|
|
251
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
252
|
+
class: {
|
|
253
|
+
type: import("vue").PropType<string>;
|
|
254
|
+
};
|
|
255
|
+
id: {
|
|
256
|
+
type: import("vue").PropType<string>;
|
|
257
|
+
default: string;
|
|
258
|
+
};
|
|
259
|
+
pos: {
|
|
260
|
+
type: import("vue").PropType<ComponentsConst.Pos>;
|
|
261
|
+
default: string;
|
|
262
|
+
};
|
|
263
|
+
notch: {
|
|
264
|
+
type: import("vue").PropType<boolean>;
|
|
265
|
+
default: boolean;
|
|
266
|
+
};
|
|
267
|
+
openByHover: {
|
|
268
|
+
type: import("vue").PropType<boolean>;
|
|
269
|
+
};
|
|
270
|
+
posBy: {
|
|
271
|
+
type: import("vue").PropType<ComponentsConst.PosBy>;
|
|
272
|
+
default: string;
|
|
273
|
+
};
|
|
274
|
+
}>> & {
|
|
275
|
+
onClose?: (() => any) | undefined;
|
|
276
|
+
onOpen?: (() => any) | undefined;
|
|
277
|
+
}, {
|
|
278
|
+
id: string;
|
|
279
|
+
pos: ComponentsConst.Pos;
|
|
280
|
+
notch: boolean;
|
|
281
|
+
posBy: ComponentsConst.PosBy;
|
|
282
|
+
}, true, {}, {}, {
|
|
283
|
+
P: {};
|
|
284
|
+
B: {};
|
|
285
|
+
D: {};
|
|
286
|
+
C: {};
|
|
287
|
+
M: {};
|
|
288
|
+
Defaults: {};
|
|
289
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
373
290
|
class: {
|
|
374
291
|
type: import("vue").PropType<string>;
|
|
375
292
|
};
|
|
@@ -395,7 +312,12 @@ export declare const Playground: {
|
|
|
395
312
|
}>> & {
|
|
396
313
|
onClose?: (() => any) | undefined;
|
|
397
314
|
onOpen?: (() => any) | undefined;
|
|
398
|
-
}
|
|
315
|
+
}, {}, {}, {}, {}, {
|
|
316
|
+
id: string;
|
|
317
|
+
pos: ComponentsConst.Pos;
|
|
318
|
+
notch: boolean;
|
|
319
|
+
posBy: ComponentsConst.PosBy;
|
|
320
|
+
}>;
|
|
399
321
|
__isFragment?: undefined;
|
|
400
322
|
__isTeleport?: undefined;
|
|
401
323
|
__isSuspense?: undefined;
|
|
@@ -443,145 +365,98 @@ export declare const Playground: {
|
|
|
443
365
|
};
|
|
444
366
|
});
|
|
445
367
|
Button: {
|
|
446
|
-
new (...args: any[]): {
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
styling: {
|
|
539
|
-
type: import("vue").PropType<import("../../forms/button/button").Style>;
|
|
540
|
-
default: string;
|
|
541
|
-
};
|
|
542
|
-
name: {
|
|
543
|
-
type: import("vue").PropType<string>;
|
|
544
|
-
};
|
|
545
|
-
href: {
|
|
546
|
-
type: import("vue").PropType<string>;
|
|
547
|
-
};
|
|
548
|
-
disabled: {
|
|
549
|
-
type: import("vue").PropType<boolean>;
|
|
550
|
-
};
|
|
551
|
-
isSubmit: {
|
|
552
|
-
type: import("vue").PropType<boolean>;
|
|
553
|
-
};
|
|
554
|
-
isActive: {
|
|
555
|
-
type: import("vue").PropType<boolean>;
|
|
556
|
-
};
|
|
557
|
-
isProgress: {
|
|
558
|
-
type: import("vue").PropType<boolean>;
|
|
559
|
-
};
|
|
560
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
561
|
-
size: import("../../forms/helpers").Size;
|
|
562
|
-
color: import("../../forms/button/button").Color;
|
|
563
|
-
styling: import("../../forms/button/button").Style;
|
|
564
|
-
}, {}, string, {}> & {
|
|
565
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
566
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
567
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
568
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
569
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
570
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
571
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
572
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
573
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
574
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
575
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
576
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
577
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
578
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
579
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
580
|
-
};
|
|
581
|
-
$forceUpdate: () => void;
|
|
582
|
-
$nextTick: typeof import("vue").nextTick;
|
|
583
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
584
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
368
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
369
|
+
icon: {
|
|
370
|
+
type: import("vue").PropType<string>;
|
|
371
|
+
};
|
|
372
|
+
icon2: {
|
|
373
|
+
type: import("vue").PropType<string>;
|
|
374
|
+
};
|
|
375
|
+
title: {
|
|
376
|
+
type: import("vue").PropType<string>;
|
|
377
|
+
};
|
|
378
|
+
size: {
|
|
379
|
+
type: import("vue").PropType<import("../../forms/helpers").Size>;
|
|
380
|
+
default: string;
|
|
381
|
+
};
|
|
382
|
+
color: {
|
|
383
|
+
type: import("vue").PropType<import("../../forms/button/button").Color>;
|
|
384
|
+
default: string;
|
|
385
|
+
};
|
|
386
|
+
styling: {
|
|
387
|
+
type: import("vue").PropType<import("../../forms/button/button").Style>;
|
|
388
|
+
default: string;
|
|
389
|
+
};
|
|
390
|
+
name: {
|
|
391
|
+
type: import("vue").PropType<string>;
|
|
392
|
+
};
|
|
393
|
+
href: {
|
|
394
|
+
type: import("vue").PropType<string>;
|
|
395
|
+
};
|
|
396
|
+
disabled: {
|
|
397
|
+
type: import("vue").PropType<boolean>;
|
|
398
|
+
};
|
|
399
|
+
isSubmit: {
|
|
400
|
+
type: import("vue").PropType<boolean>;
|
|
401
|
+
};
|
|
402
|
+
isActive: {
|
|
403
|
+
type: import("vue").PropType<boolean>;
|
|
404
|
+
};
|
|
405
|
+
isProgress: {
|
|
406
|
+
type: import("vue").PropType<boolean>;
|
|
407
|
+
};
|
|
408
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
409
|
+
icon: {
|
|
410
|
+
type: import("vue").PropType<string>;
|
|
411
|
+
};
|
|
412
|
+
icon2: {
|
|
413
|
+
type: import("vue").PropType<string>;
|
|
414
|
+
};
|
|
415
|
+
title: {
|
|
416
|
+
type: import("vue").PropType<string>;
|
|
417
|
+
};
|
|
418
|
+
size: {
|
|
419
|
+
type: import("vue").PropType<import("../../forms/helpers").Size>;
|
|
420
|
+
default: string;
|
|
421
|
+
};
|
|
422
|
+
color: {
|
|
423
|
+
type: import("vue").PropType<import("../../forms/button/button").Color>;
|
|
424
|
+
default: string;
|
|
425
|
+
};
|
|
426
|
+
styling: {
|
|
427
|
+
type: import("vue").PropType<import("../../forms/button/button").Style>;
|
|
428
|
+
default: string;
|
|
429
|
+
};
|
|
430
|
+
name: {
|
|
431
|
+
type: import("vue").PropType<string>;
|
|
432
|
+
};
|
|
433
|
+
href: {
|
|
434
|
+
type: import("vue").PropType<string>;
|
|
435
|
+
};
|
|
436
|
+
disabled: {
|
|
437
|
+
type: import("vue").PropType<boolean>;
|
|
438
|
+
};
|
|
439
|
+
isSubmit: {
|
|
440
|
+
type: import("vue").PropType<boolean>;
|
|
441
|
+
};
|
|
442
|
+
isActive: {
|
|
443
|
+
type: import("vue").PropType<boolean>;
|
|
444
|
+
};
|
|
445
|
+
isProgress: {
|
|
446
|
+
type: import("vue").PropType<boolean>;
|
|
447
|
+
};
|
|
448
|
+
}>>, {
|
|
449
|
+
size: import("../../forms/helpers").Size;
|
|
450
|
+
color: import("../../forms/button/button").Color;
|
|
451
|
+
styling: import("../../forms/button/button").Style;
|
|
452
|
+
}, true, {}, {}, {
|
|
453
|
+
P: {};
|
|
454
|
+
B: {};
|
|
455
|
+
D: {};
|
|
456
|
+
C: {};
|
|
457
|
+
M: {};
|
|
458
|
+
Defaults: {};
|
|
459
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
585
460
|
icon: {
|
|
586
461
|
type: import("vue").PropType<string>;
|
|
587
462
|
};
|
|
@@ -621,7 +496,11 @@ export declare const Playground: {
|
|
|
621
496
|
isProgress: {
|
|
622
497
|
type: import("vue").PropType<boolean>;
|
|
623
498
|
};
|
|
624
|
-
}
|
|
499
|
+
}>>, {}, {}, {}, {}, {
|
|
500
|
+
size: import("../../forms/helpers").Size;
|
|
501
|
+
color: import("../../forms/button/button").Color;
|
|
502
|
+
styling: import("../../forms/button/button").Style;
|
|
503
|
+
}>;
|
|
625
504
|
__isFragment?: undefined;
|
|
626
505
|
__isTeleport?: undefined;
|
|
627
506
|
__isSuspense?: undefined;
|