@topvisor/ui 0.9.2 → 0.9.3
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-d67bd339.amd.js +234 -0
- package/.chunks/datepicker-d67bd339.amd.js.map +1 -0
- package/.chunks/forms-9284b6d9.amd.js +3 -0
- package/.chunks/forms-9284b6d9.amd.js.map +1 -0
- package/.chunks/forms-9516aa6c.es.js +1000 -0
- package/.chunks/forms-9516aa6c.es.js.map +1 -0
- package/.chunks/{popup-b2fe3094.es.js → popup-3054fcc1.es.js} +423 -422
- package/.chunks/popup-3054fcc1.es.js.map +1 -0
- package/.chunks/popup-c85f28bf.amd.js +378 -0
- package/.chunks/popup-c85f28bf.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/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
|
@@ -1,74 +1,39 @@
|
|
|
1
1
|
declare const meta: {
|
|
2
2
|
component: {
|
|
3
|
-
new (...args: any[]): {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
$props: Partial<{}> & Omit<{
|
|
7
|
-
readonly icon?: string | undefined;
|
|
8
|
-
readonly name?: string | undefined;
|
|
9
|
-
readonly href?: string | undefined;
|
|
10
|
-
readonly disabled?: boolean | undefined;
|
|
11
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
-
name: {
|
|
13
|
-
type: import("vue").PropType<string>;
|
|
14
|
-
};
|
|
15
|
-
href: {
|
|
16
|
-
type: import("vue").PropType<string>;
|
|
17
|
-
};
|
|
18
|
-
icon: {
|
|
19
|
-
type: import("vue").PropType<string>;
|
|
20
|
-
};
|
|
21
|
-
disabled: {
|
|
22
|
-
type: import("vue").PropType<boolean>;
|
|
23
|
-
};
|
|
24
|
-
}>>, never>;
|
|
25
|
-
$attrs: {
|
|
26
|
-
[x: string]: unknown;
|
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
name: {
|
|
5
|
+
type: import("vue").PropType<string>;
|
|
27
6
|
};
|
|
28
|
-
|
|
29
|
-
|
|
7
|
+
href: {
|
|
8
|
+
type: import("vue").PropType<string>;
|
|
30
9
|
};
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
type: import("vue").PropType<string>;
|
|
41
|
-
};
|
|
42
|
-
href: {
|
|
43
|
-
type: import("vue").PropType<string>;
|
|
44
|
-
};
|
|
45
|
-
icon: {
|
|
46
|
-
type: import("vue").PropType<string>;
|
|
47
|
-
};
|
|
48
|
-
disabled: {
|
|
49
|
-
type: import("vue").PropType<boolean>;
|
|
50
|
-
};
|
|
51
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
52
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
53
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
54
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
55
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
56
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
57
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
58
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
59
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
60
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
61
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
62
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
63
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
64
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
65
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
66
|
-
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;
|
|
10
|
+
icon: {
|
|
11
|
+
type: import("vue").PropType<string>;
|
|
12
|
+
};
|
|
13
|
+
disabled: {
|
|
14
|
+
type: import("vue").PropType<boolean>;
|
|
15
|
+
};
|
|
16
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
name: {
|
|
18
|
+
type: import("vue").PropType<string>;
|
|
67
19
|
};
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
20
|
+
href: {
|
|
21
|
+
type: import("vue").PropType<string>;
|
|
22
|
+
};
|
|
23
|
+
icon: {
|
|
24
|
+
type: import("vue").PropType<string>;
|
|
25
|
+
};
|
|
26
|
+
disabled: {
|
|
27
|
+
type: import("vue").PropType<boolean>;
|
|
28
|
+
};
|
|
29
|
+
}>>, {}, true, {}, {}, {
|
|
30
|
+
P: {};
|
|
31
|
+
B: {};
|
|
32
|
+
D: {};
|
|
33
|
+
C: {};
|
|
34
|
+
M: {};
|
|
35
|
+
Defaults: {};
|
|
36
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
72
37
|
name: {
|
|
73
38
|
type: import("vue").PropType<string>;
|
|
74
39
|
};
|
|
@@ -81,7 +46,7 @@ declare const meta: {
|
|
|
81
46
|
disabled: {
|
|
82
47
|
type: import("vue").PropType<boolean>;
|
|
83
48
|
};
|
|
84
|
-
}
|
|
49
|
+
}>>, {}, {}, {}, {}, {}>;
|
|
85
50
|
__isFragment?: undefined;
|
|
86
51
|
__isTeleport?: undefined;
|
|
87
52
|
__isSuspense?: undefined;
|
|
@@ -116,90 +81,26 @@ export declare const MenuItem: {
|
|
|
116
81
|
render: (args: any) => {
|
|
117
82
|
components: {
|
|
118
83
|
TabsView: {
|
|
119
|
-
new (...args: any[]): {
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
isShortable: boolean;
|
|
124
|
-
}> & Omit<{
|
|
125
|
-
readonly modelValue: string;
|
|
126
|
-
readonly isShortable: boolean;
|
|
127
|
-
readonly showMenuInPopup?: boolean | undefined;
|
|
128
|
-
readonly keyForSaveState?: string | undefined;
|
|
129
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
130
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
131
|
-
modelValue: {
|
|
132
|
-
type: import("vue").PropType<string>;
|
|
133
|
-
required: true;
|
|
134
|
-
};
|
|
135
|
-
showMenuInPopup: {
|
|
136
|
-
type: import("vue").PropType<boolean>;
|
|
137
|
-
};
|
|
138
|
-
isShortable: {
|
|
139
|
-
type: import("vue").PropType<boolean>;
|
|
140
|
-
default: boolean;
|
|
141
|
-
};
|
|
142
|
-
keyForSaveState: {
|
|
143
|
-
type: import("vue").PropType<string>;
|
|
144
|
-
};
|
|
145
|
-
}>> & {
|
|
146
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
147
|
-
}, "isShortable">;
|
|
148
|
-
$attrs: {
|
|
149
|
-
[x: string]: unknown;
|
|
84
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
85
|
+
modelValue: {
|
|
86
|
+
type: import("vue").PropType<string>;
|
|
87
|
+
required: true;
|
|
150
88
|
};
|
|
151
|
-
|
|
152
|
-
|
|
89
|
+
showMenuInPopup: {
|
|
90
|
+
type: import("vue").PropType<boolean>;
|
|
91
|
+
};
|
|
92
|
+
isShortable: {
|
|
93
|
+
type: import("vue").PropType<boolean>;
|
|
94
|
+
default: boolean;
|
|
153
95
|
};
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
}>;
|
|
157
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
158
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
159
|
-
$emit: (event: "update:modelValue", value: string) => void;
|
|
160
|
-
$el: any;
|
|
161
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
162
|
-
modelValue: {
|
|
163
|
-
type: import("vue").PropType<string>;
|
|
164
|
-
required: true;
|
|
165
|
-
};
|
|
166
|
-
showMenuInPopup: {
|
|
167
|
-
type: import("vue").PropType<boolean>;
|
|
168
|
-
};
|
|
169
|
-
isShortable: {
|
|
170
|
-
type: import("vue").PropType<boolean>;
|
|
171
|
-
default: boolean;
|
|
172
|
-
};
|
|
173
|
-
keyForSaveState: {
|
|
174
|
-
type: import("vue").PropType<string>;
|
|
175
|
-
};
|
|
176
|
-
}>> & {
|
|
177
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
178
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
179
|
-
"update:modelValue": (value: string) => void;
|
|
180
|
-
}, string, {
|
|
181
|
-
isShortable: boolean;
|
|
182
|
-
}, {}, string, {}> & {
|
|
183
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
184
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
185
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
186
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
187
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
188
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
189
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
190
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
191
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
192
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
193
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
194
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
195
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
196
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
197
|
-
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;
|
|
96
|
+
keyForSaveState: {
|
|
97
|
+
type: import("vue").PropType<string>;
|
|
198
98
|
};
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
99
|
+
}>> & {
|
|
100
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
101
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
102
|
+
"update:modelValue": (value: string) => void;
|
|
103
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
203
104
|
modelValue: {
|
|
204
105
|
type: import("vue").PropType<string>;
|
|
205
106
|
required: true;
|
|
@@ -216,7 +117,35 @@ export declare const MenuItem: {
|
|
|
216
117
|
};
|
|
217
118
|
}>> & {
|
|
218
119
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
219
|
-
}
|
|
120
|
+
}, {
|
|
121
|
+
isShortable: boolean;
|
|
122
|
+
}, true, {}, {}, {
|
|
123
|
+
P: {};
|
|
124
|
+
B: {};
|
|
125
|
+
D: {};
|
|
126
|
+
C: {};
|
|
127
|
+
M: {};
|
|
128
|
+
Defaults: {};
|
|
129
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
130
|
+
modelValue: {
|
|
131
|
+
type: import("vue").PropType<string>;
|
|
132
|
+
required: true;
|
|
133
|
+
};
|
|
134
|
+
showMenuInPopup: {
|
|
135
|
+
type: import("vue").PropType<boolean>;
|
|
136
|
+
};
|
|
137
|
+
isShortable: {
|
|
138
|
+
type: import("vue").PropType<boolean>;
|
|
139
|
+
default: boolean;
|
|
140
|
+
};
|
|
141
|
+
keyForSaveState: {
|
|
142
|
+
type: import("vue").PropType<string>;
|
|
143
|
+
};
|
|
144
|
+
}>> & {
|
|
145
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
146
|
+
}, {}, {}, {}, {}, {
|
|
147
|
+
isShortable: boolean;
|
|
148
|
+
}>;
|
|
220
149
|
__isFragment?: undefined;
|
|
221
150
|
__isTeleport?: undefined;
|
|
222
151
|
__isSuspense?: undefined;
|
|
@@ -248,75 +177,40 @@ export declare const MenuItem: {
|
|
|
248
177
|
};
|
|
249
178
|
});
|
|
250
179
|
TabsViewMenuItem: {
|
|
251
|
-
new (...args: any[]): {
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
name: {
|
|
261
|
-
type: import("vue").PropType<string>;
|
|
262
|
-
};
|
|
263
|
-
href: {
|
|
264
|
-
type: import("vue").PropType<string>;
|
|
265
|
-
};
|
|
266
|
-
icon: {
|
|
267
|
-
type: import("vue").PropType<string>;
|
|
268
|
-
};
|
|
269
|
-
disabled: {
|
|
270
|
-
type: import("vue").PropType<boolean>;
|
|
271
|
-
};
|
|
272
|
-
}>>, never>;
|
|
273
|
-
$attrs: {
|
|
274
|
-
[x: string]: unknown;
|
|
180
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
181
|
+
name: {
|
|
182
|
+
type: import("vue").PropType<string>;
|
|
183
|
+
};
|
|
184
|
+
href: {
|
|
185
|
+
type: import("vue").PropType<string>;
|
|
186
|
+
};
|
|
187
|
+
icon: {
|
|
188
|
+
type: import("vue").PropType<string>;
|
|
275
189
|
};
|
|
276
|
-
|
|
277
|
-
|
|
190
|
+
disabled: {
|
|
191
|
+
type: import("vue").PropType<boolean>;
|
|
278
192
|
};
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
type: import("vue").PropType<string>;
|
|
292
|
-
};
|
|
293
|
-
icon: {
|
|
294
|
-
type: import("vue").PropType<string>;
|
|
295
|
-
};
|
|
296
|
-
disabled: {
|
|
297
|
-
type: import("vue").PropType<boolean>;
|
|
298
|
-
};
|
|
299
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
300
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
301
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
302
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
303
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
304
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
305
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
306
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
307
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
308
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
309
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
310
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
311
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
312
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
313
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
314
|
-
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;
|
|
193
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
194
|
+
name: {
|
|
195
|
+
type: import("vue").PropType<string>;
|
|
196
|
+
};
|
|
197
|
+
href: {
|
|
198
|
+
type: import("vue").PropType<string>;
|
|
199
|
+
};
|
|
200
|
+
icon: {
|
|
201
|
+
type: import("vue").PropType<string>;
|
|
202
|
+
};
|
|
203
|
+
disabled: {
|
|
204
|
+
type: import("vue").PropType<boolean>;
|
|
315
205
|
};
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
206
|
+
}>>, {}, true, {}, {}, {
|
|
207
|
+
P: {};
|
|
208
|
+
B: {};
|
|
209
|
+
D: {};
|
|
210
|
+
C: {};
|
|
211
|
+
M: {};
|
|
212
|
+
Defaults: {};
|
|
213
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
320
214
|
name: {
|
|
321
215
|
type: import("vue").PropType<string>;
|
|
322
216
|
};
|
|
@@ -329,7 +223,7 @@ export declare const MenuItem: {
|
|
|
329
223
|
disabled: {
|
|
330
224
|
type: import("vue").PropType<boolean>;
|
|
331
225
|
};
|
|
332
|
-
}
|
|
226
|
+
}>>, {}, {}, {}, {}, {}>;
|
|
333
227
|
__isFragment?: undefined;
|
|
334
228
|
__isTeleport?: undefined;
|
|
335
229
|
__isSuspense?: undefined;
|