@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,145 +2,7 @@ import type { StoryObj } from '@storybook/vue3';
|
|
|
2
2
|
import * as ComponentsConst from './button';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
component: {
|
|
5
|
-
new (...args: any[]): {
|
|
6
|
-
$: import("vue").ComponentInternalInstance;
|
|
7
|
-
$data: {};
|
|
8
|
-
$props: Partial<{
|
|
9
|
-
size: import("../helpers").Size;
|
|
10
|
-
color: ComponentsConst.Color;
|
|
11
|
-
styling: ComponentsConst.Style;
|
|
12
|
-
}> & Omit<{
|
|
13
|
-
readonly size: import("../helpers").Size;
|
|
14
|
-
readonly color: ComponentsConst.Color;
|
|
15
|
-
readonly styling: ComponentsConst.Style;
|
|
16
|
-
readonly icon?: string | undefined;
|
|
17
|
-
readonly icon2?: string | undefined;
|
|
18
|
-
readonly title?: string | undefined;
|
|
19
|
-
readonly name?: string | undefined;
|
|
20
|
-
readonly href?: string | undefined;
|
|
21
|
-
readonly disabled?: boolean | undefined;
|
|
22
|
-
readonly isSubmit?: boolean | undefined;
|
|
23
|
-
readonly isActive?: boolean | undefined;
|
|
24
|
-
readonly isProgress?: boolean | undefined;
|
|
25
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
-
icon: {
|
|
27
|
-
type: import("vue").PropType<string>;
|
|
28
|
-
};
|
|
29
|
-
icon2: {
|
|
30
|
-
type: import("vue").PropType<string>;
|
|
31
|
-
};
|
|
32
|
-
title: {
|
|
33
|
-
type: import("vue").PropType<string>;
|
|
34
|
-
};
|
|
35
|
-
size: {
|
|
36
|
-
type: import("vue").PropType<import("../helpers").Size>;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
color: {
|
|
40
|
-
type: import("vue").PropType<ComponentsConst.Color>;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
styling: {
|
|
44
|
-
type: import("vue").PropType<ComponentsConst.Style>;
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
name: {
|
|
48
|
-
type: import("vue").PropType<string>;
|
|
49
|
-
};
|
|
50
|
-
href: {
|
|
51
|
-
type: import("vue").PropType<string>;
|
|
52
|
-
};
|
|
53
|
-
disabled: {
|
|
54
|
-
type: import("vue").PropType<boolean>;
|
|
55
|
-
};
|
|
56
|
-
isSubmit: {
|
|
57
|
-
type: import("vue").PropType<boolean>;
|
|
58
|
-
};
|
|
59
|
-
isActive: {
|
|
60
|
-
type: import("vue").PropType<boolean>;
|
|
61
|
-
};
|
|
62
|
-
isProgress: {
|
|
63
|
-
type: import("vue").PropType<boolean>;
|
|
64
|
-
};
|
|
65
|
-
}>>, "size" | "color" | "styling">;
|
|
66
|
-
$attrs: {
|
|
67
|
-
[x: string]: unknown;
|
|
68
|
-
};
|
|
69
|
-
$refs: {
|
|
70
|
-
[x: string]: unknown;
|
|
71
|
-
};
|
|
72
|
-
$slots: Readonly<{
|
|
73
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
74
|
-
}>;
|
|
75
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
76
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
77
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
78
|
-
$el: any;
|
|
79
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
80
|
-
icon: {
|
|
81
|
-
type: import("vue").PropType<string>;
|
|
82
|
-
};
|
|
83
|
-
icon2: {
|
|
84
|
-
type: import("vue").PropType<string>;
|
|
85
|
-
};
|
|
86
|
-
title: {
|
|
87
|
-
type: import("vue").PropType<string>;
|
|
88
|
-
};
|
|
89
|
-
size: {
|
|
90
|
-
type: import("vue").PropType<import("../helpers").Size>;
|
|
91
|
-
default: string;
|
|
92
|
-
};
|
|
93
|
-
color: {
|
|
94
|
-
type: import("vue").PropType<ComponentsConst.Color>;
|
|
95
|
-
default: string;
|
|
96
|
-
};
|
|
97
|
-
styling: {
|
|
98
|
-
type: import("vue").PropType<ComponentsConst.Style>;
|
|
99
|
-
default: string;
|
|
100
|
-
};
|
|
101
|
-
name: {
|
|
102
|
-
type: import("vue").PropType<string>;
|
|
103
|
-
};
|
|
104
|
-
href: {
|
|
105
|
-
type: import("vue").PropType<string>;
|
|
106
|
-
};
|
|
107
|
-
disabled: {
|
|
108
|
-
type: import("vue").PropType<boolean>;
|
|
109
|
-
};
|
|
110
|
-
isSubmit: {
|
|
111
|
-
type: import("vue").PropType<boolean>;
|
|
112
|
-
};
|
|
113
|
-
isActive: {
|
|
114
|
-
type: import("vue").PropType<boolean>;
|
|
115
|
-
};
|
|
116
|
-
isProgress: {
|
|
117
|
-
type: import("vue").PropType<boolean>;
|
|
118
|
-
};
|
|
119
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
120
|
-
size: import("../helpers").Size;
|
|
121
|
-
color: ComponentsConst.Color;
|
|
122
|
-
styling: ComponentsConst.Style;
|
|
123
|
-
}, {}, string, {}> & {
|
|
124
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
125
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
126
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
127
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
128
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
129
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
130
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
131
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
132
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
133
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
134
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
135
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
136
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
137
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
138
|
-
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;
|
|
139
|
-
};
|
|
140
|
-
$forceUpdate: () => void;
|
|
141
|
-
$nextTick: typeof import("vue").nextTick;
|
|
142
|
-
$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;
|
|
143
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
5
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
144
6
|
icon: {
|
|
145
7
|
type: import("vue").PropType<string>;
|
|
146
8
|
};
|
|
@@ -180,7 +42,102 @@ declare const meta: {
|
|
|
180
42
|
isProgress: {
|
|
181
43
|
type: import("vue").PropType<boolean>;
|
|
182
44
|
};
|
|
183
|
-
}
|
|
45
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
+
icon: {
|
|
47
|
+
type: import("vue").PropType<string>;
|
|
48
|
+
};
|
|
49
|
+
icon2: {
|
|
50
|
+
type: import("vue").PropType<string>;
|
|
51
|
+
};
|
|
52
|
+
title: {
|
|
53
|
+
type: import("vue").PropType<string>;
|
|
54
|
+
};
|
|
55
|
+
size: {
|
|
56
|
+
type: import("vue").PropType<import("../helpers").Size>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
color: {
|
|
60
|
+
type: import("vue").PropType<ComponentsConst.Color>;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
styling: {
|
|
64
|
+
type: import("vue").PropType<ComponentsConst.Style>;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
name: {
|
|
68
|
+
type: import("vue").PropType<string>;
|
|
69
|
+
};
|
|
70
|
+
href: {
|
|
71
|
+
type: import("vue").PropType<string>;
|
|
72
|
+
};
|
|
73
|
+
disabled: {
|
|
74
|
+
type: import("vue").PropType<boolean>;
|
|
75
|
+
};
|
|
76
|
+
isSubmit: {
|
|
77
|
+
type: import("vue").PropType<boolean>;
|
|
78
|
+
};
|
|
79
|
+
isActive: {
|
|
80
|
+
type: import("vue").PropType<boolean>;
|
|
81
|
+
};
|
|
82
|
+
isProgress: {
|
|
83
|
+
type: import("vue").PropType<boolean>;
|
|
84
|
+
};
|
|
85
|
+
}>>, {
|
|
86
|
+
size: import("../helpers").Size;
|
|
87
|
+
color: ComponentsConst.Color;
|
|
88
|
+
styling: ComponentsConst.Style;
|
|
89
|
+
}, true, {}, {}, {
|
|
90
|
+
P: {};
|
|
91
|
+
B: {};
|
|
92
|
+
D: {};
|
|
93
|
+
C: {};
|
|
94
|
+
M: {};
|
|
95
|
+
Defaults: {};
|
|
96
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
97
|
+
icon: {
|
|
98
|
+
type: import("vue").PropType<string>;
|
|
99
|
+
};
|
|
100
|
+
icon2: {
|
|
101
|
+
type: import("vue").PropType<string>;
|
|
102
|
+
};
|
|
103
|
+
title: {
|
|
104
|
+
type: import("vue").PropType<string>;
|
|
105
|
+
};
|
|
106
|
+
size: {
|
|
107
|
+
type: import("vue").PropType<import("../helpers").Size>;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
110
|
+
color: {
|
|
111
|
+
type: import("vue").PropType<ComponentsConst.Color>;
|
|
112
|
+
default: string;
|
|
113
|
+
};
|
|
114
|
+
styling: {
|
|
115
|
+
type: import("vue").PropType<ComponentsConst.Style>;
|
|
116
|
+
default: string;
|
|
117
|
+
};
|
|
118
|
+
name: {
|
|
119
|
+
type: import("vue").PropType<string>;
|
|
120
|
+
};
|
|
121
|
+
href: {
|
|
122
|
+
type: import("vue").PropType<string>;
|
|
123
|
+
};
|
|
124
|
+
disabled: {
|
|
125
|
+
type: import("vue").PropType<boolean>;
|
|
126
|
+
};
|
|
127
|
+
isSubmit: {
|
|
128
|
+
type: import("vue").PropType<boolean>;
|
|
129
|
+
};
|
|
130
|
+
isActive: {
|
|
131
|
+
type: import("vue").PropType<boolean>;
|
|
132
|
+
};
|
|
133
|
+
isProgress: {
|
|
134
|
+
type: import("vue").PropType<boolean>;
|
|
135
|
+
};
|
|
136
|
+
}>>, {}, {}, {}, {}, {
|
|
137
|
+
size: import("../helpers").Size;
|
|
138
|
+
color: ComponentsConst.Color;
|
|
139
|
+
styling: ComponentsConst.Style;
|
|
140
|
+
}>;
|
|
184
141
|
__isFragment?: undefined;
|
|
185
142
|
__isTeleport?: undefined;
|
|
186
143
|
__isSuspense?: undefined;
|
|
@@ -1,105 +1,7 @@
|
|
|
1
1
|
import type { StoryObj } from '@storybook/vue3';
|
|
2
2
|
declare const meta: {
|
|
3
3
|
component: {
|
|
4
|
-
new (...args: any[]): {
|
|
5
|
-
$: import("vue").ComponentInternalInstance;
|
|
6
|
-
$data: {};
|
|
7
|
-
$props: Partial<{}> & Omit<{
|
|
8
|
-
readonly modelValue: boolean | string[] | Set<string>;
|
|
9
|
-
readonly name?: string | undefined;
|
|
10
|
-
readonly disabled?: boolean | undefined;
|
|
11
|
-
readonly description?: string | undefined;
|
|
12
|
-
readonly value?: string | undefined;
|
|
13
|
-
readonly indeterminate?: boolean | undefined;
|
|
14
|
-
readonly isError?: boolean | undefined;
|
|
15
|
-
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
16
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
-
modelValue: {
|
|
18
|
-
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
name: {
|
|
22
|
-
type: import("vue").PropType<string>;
|
|
23
|
-
};
|
|
24
|
-
value: {
|
|
25
|
-
type: import("vue").PropType<string>;
|
|
26
|
-
};
|
|
27
|
-
description: {
|
|
28
|
-
type: import("vue").PropType<string>;
|
|
29
|
-
};
|
|
30
|
-
disabled: {
|
|
31
|
-
type: import("vue").PropType<boolean>;
|
|
32
|
-
};
|
|
33
|
-
indeterminate: {
|
|
34
|
-
type: import("vue").PropType<boolean>;
|
|
35
|
-
};
|
|
36
|
-
isError: {
|
|
37
|
-
type: import("vue").PropType<boolean>;
|
|
38
|
-
};
|
|
39
|
-
}>> & {
|
|
40
|
-
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
41
|
-
}, never>;
|
|
42
|
-
$attrs: {
|
|
43
|
-
[x: string]: unknown;
|
|
44
|
-
};
|
|
45
|
-
$refs: {
|
|
46
|
-
[x: string]: unknown;
|
|
47
|
-
};
|
|
48
|
-
$slots: Readonly<{
|
|
49
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
50
|
-
}>;
|
|
51
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
52
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
53
|
-
$emit: (event: "update:modelValue", value: boolean | string[] | Set<string>) => void;
|
|
54
|
-
$el: any;
|
|
55
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
56
|
-
modelValue: {
|
|
57
|
-
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
58
|
-
required: true;
|
|
59
|
-
};
|
|
60
|
-
name: {
|
|
61
|
-
type: import("vue").PropType<string>;
|
|
62
|
-
};
|
|
63
|
-
value: {
|
|
64
|
-
type: import("vue").PropType<string>;
|
|
65
|
-
};
|
|
66
|
-
description: {
|
|
67
|
-
type: import("vue").PropType<string>;
|
|
68
|
-
};
|
|
69
|
-
disabled: {
|
|
70
|
-
type: import("vue").PropType<boolean>;
|
|
71
|
-
};
|
|
72
|
-
indeterminate: {
|
|
73
|
-
type: import("vue").PropType<boolean>;
|
|
74
|
-
};
|
|
75
|
-
isError: {
|
|
76
|
-
type: import("vue").PropType<boolean>;
|
|
77
|
-
};
|
|
78
|
-
}>> & {
|
|
79
|
-
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
80
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
81
|
-
"update:modelValue": (value: boolean | string[] | Set<string>) => void;
|
|
82
|
-
}, string, {}, {}, string, {}> & {
|
|
83
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
84
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
85
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
86
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
87
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
88
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
89
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
90
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
91
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
92
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
93
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
94
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
95
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
96
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
97
|
-
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;
|
|
98
|
-
};
|
|
99
|
-
$forceUpdate: () => void;
|
|
100
|
-
$nextTick: typeof import("vue").nextTick;
|
|
101
|
-
$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;
|
|
102
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
103
5
|
modelValue: {
|
|
104
6
|
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
105
7
|
required: true;
|
|
@@ -124,7 +26,66 @@ declare const meta: {
|
|
|
124
26
|
};
|
|
125
27
|
}>> & {
|
|
126
28
|
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
127
|
-
}
|
|
29
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
+
"update:modelValue": (value: boolean | string[] | Set<string>) => void;
|
|
31
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
+
modelValue: {
|
|
33
|
+
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
name: {
|
|
37
|
+
type: import("vue").PropType<string>;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import("vue").PropType<string>;
|
|
41
|
+
};
|
|
42
|
+
description: {
|
|
43
|
+
type: import("vue").PropType<string>;
|
|
44
|
+
};
|
|
45
|
+
disabled: {
|
|
46
|
+
type: import("vue").PropType<boolean>;
|
|
47
|
+
};
|
|
48
|
+
indeterminate: {
|
|
49
|
+
type: import("vue").PropType<boolean>;
|
|
50
|
+
};
|
|
51
|
+
isError: {
|
|
52
|
+
type: import("vue").PropType<boolean>;
|
|
53
|
+
};
|
|
54
|
+
}>> & {
|
|
55
|
+
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
56
|
+
}, {}, true, {}, {}, {
|
|
57
|
+
P: {};
|
|
58
|
+
B: {};
|
|
59
|
+
D: {};
|
|
60
|
+
C: {};
|
|
61
|
+
M: {};
|
|
62
|
+
Defaults: {};
|
|
63
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
64
|
+
modelValue: {
|
|
65
|
+
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
name: {
|
|
69
|
+
type: import("vue").PropType<string>;
|
|
70
|
+
};
|
|
71
|
+
value: {
|
|
72
|
+
type: import("vue").PropType<string>;
|
|
73
|
+
};
|
|
74
|
+
description: {
|
|
75
|
+
type: import("vue").PropType<string>;
|
|
76
|
+
};
|
|
77
|
+
disabled: {
|
|
78
|
+
type: import("vue").PropType<boolean>;
|
|
79
|
+
};
|
|
80
|
+
indeterminate: {
|
|
81
|
+
type: import("vue").PropType<boolean>;
|
|
82
|
+
};
|
|
83
|
+
isError: {
|
|
84
|
+
type: import("vue").PropType<boolean>;
|
|
85
|
+
};
|
|
86
|
+
}>> & {
|
|
87
|
+
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
88
|
+
}, {}, {}, {}, {}, {}>;
|
|
128
89
|
__isFragment?: undefined;
|
|
129
90
|
__isTeleport?: undefined;
|
|
130
91
|
__isSuspense?: undefined;
|
|
@@ -8,68 +8,35 @@
|
|
|
8
8
|
*/
|
|
9
9
|
declare const meta: {
|
|
10
10
|
component: {
|
|
11
|
-
new (...args: any[]): {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
$props: Partial<{}> & Omit<{
|
|
15
|
-
readonly disabled?: boolean | undefined;
|
|
16
|
-
readonly description?: string | undefined;
|
|
17
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
-
description: {
|
|
19
|
-
type: import("vue").PropType<string>;
|
|
20
|
-
};
|
|
21
|
-
disabled: {
|
|
22
|
-
type: import("vue").PropType<boolean>;
|
|
23
|
-
};
|
|
24
|
-
}>>, never>;
|
|
25
|
-
$attrs: {
|
|
26
|
-
[x: string]: unknown;
|
|
11
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
description: {
|
|
13
|
+
type: import("vue").PropType<string>;
|
|
27
14
|
};
|
|
28
|
-
|
|
29
|
-
|
|
15
|
+
disabled: {
|
|
16
|
+
type: import("vue").PropType<boolean>;
|
|
30
17
|
};
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
$el: any;
|
|
38
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
-
description: {
|
|
40
|
-
type: import("vue").PropType<string>;
|
|
41
|
-
};
|
|
42
|
-
disabled: {
|
|
43
|
-
type: import("vue").PropType<boolean>;
|
|
44
|
-
};
|
|
45
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
46
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
48
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
49
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
50
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
51
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
52
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
53
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
54
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
55
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
56
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
57
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
58
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
59
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
60
|
-
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;
|
|
18
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
description: {
|
|
20
|
+
type: import("vue").PropType<string>;
|
|
21
|
+
};
|
|
22
|
+
disabled: {
|
|
23
|
+
type: import("vue").PropType<boolean>;
|
|
61
24
|
};
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
25
|
+
}>>, {}, true, {}, {}, {
|
|
26
|
+
P: {};
|
|
27
|
+
B: {};
|
|
28
|
+
D: {};
|
|
29
|
+
C: {};
|
|
30
|
+
M: {};
|
|
31
|
+
Defaults: {};
|
|
32
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
66
33
|
description: {
|
|
67
34
|
type: import("vue").PropType<string>;
|
|
68
35
|
};
|
|
69
36
|
disabled: {
|
|
70
37
|
type: import("vue").PropType<boolean>;
|
|
71
38
|
};
|
|
72
|
-
}
|
|
39
|
+
}>>, {}, {}, {}, {}, {}>;
|
|
73
40
|
__isFragment?: undefined;
|
|
74
41
|
__isTeleport?: undefined;
|
|
75
42
|
__isSuspense?: undefined;
|