@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,89 +1,25 @@
|
|
|
1
1
|
declare const meta: {
|
|
2
2
|
component: {
|
|
3
|
-
new (...args: any[]): {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
isShortable: boolean;
|
|
8
|
-
}> & Omit<{
|
|
9
|
-
readonly modelValue: string;
|
|
10
|
-
readonly isShortable: boolean;
|
|
11
|
-
readonly showMenuInPopup?: boolean | undefined;
|
|
12
|
-
readonly keyForSaveState?: string | undefined;
|
|
13
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
14
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
modelValue: {
|
|
16
|
-
type: import("vue").PropType<string>;
|
|
17
|
-
required: true;
|
|
18
|
-
};
|
|
19
|
-
showMenuInPopup: {
|
|
20
|
-
type: import("vue").PropType<boolean>;
|
|
21
|
-
};
|
|
22
|
-
isShortable: {
|
|
23
|
-
type: import("vue").PropType<boolean>;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
keyForSaveState: {
|
|
27
|
-
type: import("vue").PropType<string>;
|
|
28
|
-
};
|
|
29
|
-
}>> & {
|
|
30
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
31
|
-
}, "isShortable">;
|
|
32
|
-
$attrs: {
|
|
33
|
-
[x: string]: unknown;
|
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: import("vue").PropType<string>;
|
|
6
|
+
required: true;
|
|
34
7
|
};
|
|
35
|
-
|
|
36
|
-
|
|
8
|
+
showMenuInPopup: {
|
|
9
|
+
type: import("vue").PropType<boolean>;
|
|
37
10
|
};
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
$el: any;
|
|
45
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
-
modelValue: {
|
|
47
|
-
type: import("vue").PropType<string>;
|
|
48
|
-
required: true;
|
|
49
|
-
};
|
|
50
|
-
showMenuInPopup: {
|
|
51
|
-
type: import("vue").PropType<boolean>;
|
|
52
|
-
};
|
|
53
|
-
isShortable: {
|
|
54
|
-
type: import("vue").PropType<boolean>;
|
|
55
|
-
default: boolean;
|
|
56
|
-
};
|
|
57
|
-
keyForSaveState: {
|
|
58
|
-
type: import("vue").PropType<string>;
|
|
59
|
-
};
|
|
60
|
-
}>> & {
|
|
61
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
62
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
63
|
-
"update:modelValue": (value: string) => void;
|
|
64
|
-
}, string, {
|
|
65
|
-
isShortable: boolean;
|
|
66
|
-
}, {}, string, {}> & {
|
|
67
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
74
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
75
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
76
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
77
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
78
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
79
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
80
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
81
|
-
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;
|
|
11
|
+
isShortable: {
|
|
12
|
+
type: import("vue").PropType<boolean>;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
keyForSaveState: {
|
|
16
|
+
type: import("vue").PropType<string>;
|
|
82
17
|
};
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
18
|
+
}>> & {
|
|
19
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
20
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
"update:modelValue": (value: string) => void;
|
|
22
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
87
23
|
modelValue: {
|
|
88
24
|
type: import("vue").PropType<string>;
|
|
89
25
|
required: true;
|
|
@@ -100,7 +36,35 @@ declare const meta: {
|
|
|
100
36
|
};
|
|
101
37
|
}>> & {
|
|
102
38
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
103
|
-
}
|
|
39
|
+
}, {
|
|
40
|
+
isShortable: boolean;
|
|
41
|
+
}, true, {}, {}, {
|
|
42
|
+
P: {};
|
|
43
|
+
B: {};
|
|
44
|
+
D: {};
|
|
45
|
+
C: {};
|
|
46
|
+
M: {};
|
|
47
|
+
Defaults: {};
|
|
48
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
49
|
+
modelValue: {
|
|
50
|
+
type: import("vue").PropType<string>;
|
|
51
|
+
required: true;
|
|
52
|
+
};
|
|
53
|
+
showMenuInPopup: {
|
|
54
|
+
type: import("vue").PropType<boolean>;
|
|
55
|
+
};
|
|
56
|
+
isShortable: {
|
|
57
|
+
type: import("vue").PropType<boolean>;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
keyForSaveState: {
|
|
61
|
+
type: import("vue").PropType<string>;
|
|
62
|
+
};
|
|
63
|
+
}>> & {
|
|
64
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
65
|
+
}, {}, {}, {}, {}, {
|
|
66
|
+
isShortable: boolean;
|
|
67
|
+
}>;
|
|
104
68
|
__isFragment?: undefined;
|
|
105
69
|
__isTeleport?: undefined;
|
|
106
70
|
__isSuspense?: undefined;
|
|
@@ -150,90 +114,52 @@ export declare const Overview: {
|
|
|
150
114
|
render: (args: any) => {
|
|
151
115
|
components: {
|
|
152
116
|
TabsView: {
|
|
153
|
-
new (...args: any[]): {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
}>> & {
|
|
180
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
181
|
-
}, "isShortable">;
|
|
182
|
-
$attrs: {
|
|
183
|
-
[x: string]: unknown;
|
|
117
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
118
|
+
modelValue: {
|
|
119
|
+
type: import("vue").PropType<string>;
|
|
120
|
+
required: true;
|
|
121
|
+
};
|
|
122
|
+
showMenuInPopup: {
|
|
123
|
+
type: import("vue").PropType<boolean>;
|
|
124
|
+
};
|
|
125
|
+
isShortable: {
|
|
126
|
+
type: import("vue").PropType<boolean>;
|
|
127
|
+
default: boolean;
|
|
128
|
+
};
|
|
129
|
+
keyForSaveState: {
|
|
130
|
+
type: import("vue").PropType<string>;
|
|
131
|
+
};
|
|
132
|
+
}>> & {
|
|
133
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
134
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
135
|
+
"update:modelValue": (value: string) => void;
|
|
136
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
137
|
+
modelValue: {
|
|
138
|
+
type: import("vue").PropType<string>;
|
|
139
|
+
required: true;
|
|
140
|
+
};
|
|
141
|
+
showMenuInPopup: {
|
|
142
|
+
type: import("vue").PropType<boolean>;
|
|
184
143
|
};
|
|
185
|
-
|
|
186
|
-
|
|
144
|
+
isShortable: {
|
|
145
|
+
type: import("vue").PropType<boolean>;
|
|
146
|
+
default: boolean;
|
|
187
147
|
};
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
}>;
|
|
191
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
192
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
193
|
-
$emit: (event: "update:modelValue", value: string) => void;
|
|
194
|
-
$el: any;
|
|
195
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
196
|
-
modelValue: {
|
|
197
|
-
type: import("vue").PropType<string>;
|
|
198
|
-
required: true;
|
|
199
|
-
};
|
|
200
|
-
showMenuInPopup: {
|
|
201
|
-
type: import("vue").PropType<boolean>;
|
|
202
|
-
};
|
|
203
|
-
isShortable: {
|
|
204
|
-
type: import("vue").PropType<boolean>;
|
|
205
|
-
default: boolean;
|
|
206
|
-
};
|
|
207
|
-
keyForSaveState: {
|
|
208
|
-
type: import("vue").PropType<string>;
|
|
209
|
-
};
|
|
210
|
-
}>> & {
|
|
211
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
212
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
213
|
-
"update:modelValue": (value: string) => void;
|
|
214
|
-
}, string, {
|
|
215
|
-
isShortable: boolean;
|
|
216
|
-
}, {}, string, {}> & {
|
|
217
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
218
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
219
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
220
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
221
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
222
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
223
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
224
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
225
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
226
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
227
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
228
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
229
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
230
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
231
|
-
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;
|
|
148
|
+
keyForSaveState: {
|
|
149
|
+
type: import("vue").PropType<string>;
|
|
232
150
|
};
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
151
|
+
}>> & {
|
|
152
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
153
|
+
}, {
|
|
154
|
+
isShortable: boolean;
|
|
155
|
+
}, true, {}, {}, {
|
|
156
|
+
P: {};
|
|
157
|
+
B: {};
|
|
158
|
+
D: {};
|
|
159
|
+
C: {};
|
|
160
|
+
M: {};
|
|
161
|
+
Defaults: {};
|
|
162
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
237
163
|
modelValue: {
|
|
238
164
|
type: import("vue").PropType<string>;
|
|
239
165
|
required: true;
|
|
@@ -250,7 +176,9 @@ export declare const Overview: {
|
|
|
250
176
|
};
|
|
251
177
|
}>> & {
|
|
252
178
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
253
|
-
}
|
|
179
|
+
}, {}, {}, {}, {}, {
|
|
180
|
+
isShortable: boolean;
|
|
181
|
+
}>;
|
|
254
182
|
__isFragment?: undefined;
|
|
255
183
|
__isTeleport?: undefined;
|
|
256
184
|
__isSuspense?: undefined;
|
|
@@ -282,75 +210,40 @@ export declare const Overview: {
|
|
|
282
210
|
};
|
|
283
211
|
});
|
|
284
212
|
TabsViewMenuItem: {
|
|
285
|
-
new (...args: any[]): {
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
type: import("vue").PropType<boolean>;
|
|
305
|
-
};
|
|
306
|
-
}>>, never>;
|
|
307
|
-
$attrs: {
|
|
308
|
-
[x: string]: unknown;
|
|
213
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
214
|
+
name: {
|
|
215
|
+
type: import("vue").PropType<string>;
|
|
216
|
+
};
|
|
217
|
+
href: {
|
|
218
|
+
type: import("vue").PropType<string>;
|
|
219
|
+
};
|
|
220
|
+
icon: {
|
|
221
|
+
type: import("vue").PropType<string>;
|
|
222
|
+
};
|
|
223
|
+
disabled: {
|
|
224
|
+
type: import("vue").PropType<boolean>;
|
|
225
|
+
};
|
|
226
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
227
|
+
name: {
|
|
228
|
+
type: import("vue").PropType<string>;
|
|
229
|
+
};
|
|
230
|
+
href: {
|
|
231
|
+
type: import("vue").PropType<string>;
|
|
309
232
|
};
|
|
310
|
-
|
|
311
|
-
|
|
233
|
+
icon: {
|
|
234
|
+
type: import("vue").PropType<string>;
|
|
312
235
|
};
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
}>;
|
|
316
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
317
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
318
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
319
|
-
$el: any;
|
|
320
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
321
|
-
name: {
|
|
322
|
-
type: import("vue").PropType<string>;
|
|
323
|
-
};
|
|
324
|
-
href: {
|
|
325
|
-
type: import("vue").PropType<string>;
|
|
326
|
-
};
|
|
327
|
-
icon: {
|
|
328
|
-
type: import("vue").PropType<string>;
|
|
329
|
-
};
|
|
330
|
-
disabled: {
|
|
331
|
-
type: import("vue").PropType<boolean>;
|
|
332
|
-
};
|
|
333
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
334
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
335
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
336
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
337
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
338
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
339
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
340
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
341
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
342
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
343
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
344
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
345
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
346
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
347
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
348
|
-
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;
|
|
236
|
+
disabled: {
|
|
237
|
+
type: import("vue").PropType<boolean>;
|
|
349
238
|
};
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
239
|
+
}>>, {}, true, {}, {}, {
|
|
240
|
+
P: {};
|
|
241
|
+
B: {};
|
|
242
|
+
D: {};
|
|
243
|
+
C: {};
|
|
244
|
+
M: {};
|
|
245
|
+
Defaults: {};
|
|
246
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
354
247
|
name: {
|
|
355
248
|
type: import("vue").PropType<string>;
|
|
356
249
|
};
|
|
@@ -363,7 +256,7 @@ export declare const Overview: {
|
|
|
363
256
|
disabled: {
|
|
364
257
|
type: import("vue").PropType<boolean>;
|
|
365
258
|
};
|
|
366
|
-
}
|
|
259
|
+
}>>, {}, {}, {}, {}, {}>;
|
|
367
260
|
__isFragment?: undefined;
|
|
368
261
|
__isTeleport?: undefined;
|
|
369
262
|
__isSuspense?: undefined;
|
|
@@ -386,58 +279,26 @@ export declare const Overview: {
|
|
|
386
279
|
};
|
|
387
280
|
});
|
|
388
281
|
TabsViewMenuTitle: {
|
|
389
|
-
new (...args: any[]): {
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
$props: Partial<{}> & Omit<{
|
|
393
|
-
readonly isSubtitle?: boolean | undefined;
|
|
394
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
395
|
-
isSubtitle: {
|
|
396
|
-
type: import("vue").PropType<boolean>;
|
|
397
|
-
};
|
|
398
|
-
}>>, never>;
|
|
399
|
-
$attrs: {
|
|
400
|
-
[x: string]: unknown;
|
|
401
|
-
};
|
|
402
|
-
$refs: {
|
|
403
|
-
[x: string]: unknown;
|
|
282
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
283
|
+
isSubtitle: {
|
|
284
|
+
type: import("vue").PropType<boolean>;
|
|
404
285
|
};
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
409
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
410
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
411
|
-
$el: any;
|
|
412
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
413
|
-
isSubtitle: {
|
|
414
|
-
type: import("vue").PropType<boolean>;
|
|
415
|
-
};
|
|
416
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
417
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
418
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
419
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
420
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
421
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
422
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
423
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
424
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
425
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
426
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
427
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
428
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
429
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
430
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
431
|
-
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;
|
|
286
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
287
|
+
isSubtitle: {
|
|
288
|
+
type: import("vue").PropType<boolean>;
|
|
432
289
|
};
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
290
|
+
}>>, {}, true, {}, {}, {
|
|
291
|
+
P: {};
|
|
292
|
+
B: {};
|
|
293
|
+
D: {};
|
|
294
|
+
C: {};
|
|
295
|
+
M: {};
|
|
296
|
+
Defaults: {};
|
|
297
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
437
298
|
isSubtitle: {
|
|
438
299
|
type: import("vue").PropType<boolean>;
|
|
439
300
|
};
|
|
440
|
-
}
|
|
301
|
+
}>>, {}, {}, {}, {}, {}>;
|
|
441
302
|
__isFragment?: undefined;
|
|
442
303
|
__isTeleport?: undefined;
|
|
443
304
|
__isSuspense?: undefined;
|
|
@@ -451,61 +312,29 @@ export declare const Overview: {
|
|
|
451
312
|
};
|
|
452
313
|
});
|
|
453
314
|
TabsViewContent: {
|
|
454
|
-
new (...args: any[]): {
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
readonly name: string;
|
|
459
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
460
|
-
name: {
|
|
461
|
-
type: import("vue").PropType<string>;
|
|
462
|
-
required: true;
|
|
463
|
-
};
|
|
464
|
-
}>>, never>;
|
|
465
|
-
$attrs: {
|
|
466
|
-
[x: string]: unknown;
|
|
467
|
-
};
|
|
468
|
-
$refs: {
|
|
469
|
-
[x: string]: unknown;
|
|
315
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
316
|
+
name: {
|
|
317
|
+
type: import("vue").PropType<string>;
|
|
318
|
+
required: true;
|
|
470
319
|
};
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
476
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
477
|
-
$el: any;
|
|
478
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
479
|
-
name: {
|
|
480
|
-
type: import("vue").PropType<string>;
|
|
481
|
-
required: true;
|
|
482
|
-
};
|
|
483
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
484
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
485
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
486
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
487
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
488
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
489
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
490
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
491
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
492
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
493
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
494
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
495
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
496
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
497
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
498
|
-
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;
|
|
320
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
321
|
+
name: {
|
|
322
|
+
type: import("vue").PropType<string>;
|
|
323
|
+
required: true;
|
|
499
324
|
};
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
325
|
+
}>>, {}, true, {}, {}, {
|
|
326
|
+
P: {};
|
|
327
|
+
B: {};
|
|
328
|
+
D: {};
|
|
329
|
+
C: {};
|
|
330
|
+
M: {};
|
|
331
|
+
Defaults: {};
|
|
332
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
504
333
|
name: {
|
|
505
334
|
type: import("vue").PropType<string>;
|
|
506
335
|
required: true;
|
|
507
336
|
};
|
|
508
|
-
}
|
|
337
|
+
}>>, {}, {}, {}, {}, {}>;
|
|
509
338
|
__isFragment?: undefined;
|
|
510
339
|
__isTeleport?: undefined;
|
|
511
340
|
__isSuspense?: undefined;
|
package/src/core/core/page.d.ts
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
1
|
declare class Page {
|
|
2
|
-
/**
|
|
3
|
-
* Вставить css стили на страницу с автоматическим определением media
|
|
4
|
-
* @param fileNames - список ссылок на css файлы
|
|
5
|
-
* @param props - атрибуты <link>
|
|
6
|
-
*/
|
|
7
|
-
static addCss(fileNames: Array<String>, props?: any): void;
|
|
8
|
-
static _addCss(fileNames: Array<String>, props: any): void;
|
|
9
2
|
}
|
|
10
3
|
export default Page;
|
package/tabs/tabs.amd.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
define(["require","exports","vue","../.chunks/forms-
|
|
1
|
+
define(["require","exports","vue","../.chunks/forms-9284b6d9.amd"],function(l,s,t,n){"use strict";l(["../utils/css.amd"],({insertToPage:o})=>{const e=["../assets/tabs.css"].map(a=>l.toUrl(a));o(e)});const c={class:t.normalizeClass({"top-tabs":!0})},d={key:0,class:"top-tabs_header"},b={class:"top-tabs_contents"},p=t.defineComponent({__name:"tabs",props:{id:{}},setup(o){return(e,a)=>(t.openBlock(),t.createElementBlock("div",c,[t.renderSlot(e.$slots,"buttons"),e.$slots.header?(t.openBlock(),t.createElementBlock("div",d,[t.renderSlot(e.$slots,"header")])):t.createCommentVNode("",!0),t.createElementVNode("div",b,[t.renderSlot(e.$slots,"contents")])]))}}),r={$style:{"top-tabs":"top-tabs","top-tabs_header":"top-tabs_header","top-tabs_contents":"top-tabs_contents","top-tabs_tabInput":"top-tabs_tabInput","top-tabs_content":"top-tabs_content"}},_=n._export_sfc(p,[["__cssModules",r]]),i=["id","name","value","checked","disabled"],m=["for"],$=t.defineComponent({__name:"tab",props:{tabsId:{},name:{},title:{},active:{type:Boolean},disabled:{type:Boolean}},setup(o){return(e,a)=>(t.openBlock(),t.createElementBlock(t.Fragment,null,[t.createElementVNode("input",{type:"radio",class:"top-tabs_tabInput top-unvisible",id:e.tabsId+e.name,name:e.tabsId,value:e.name,checked:e.active,disabled:e.disabled},null,8,i),t.createElementVNode("label",{class:t.normalizeClass({"top-tabs_tabLabel":!0,"top-forms-focusable":!0,"top-disabled":e.disabled}),for:e.tabsId+e.name},[t.renderSlot(e.$slots,"default")],10,m)],64))}}),u={$style:{"top-tabs_tabLabel":"top-tabs_tabLabel","top-tabs_tabInput":"top-tabs_tabInput","top-disabled":"top-disabled"}},f=n._export_sfc($,[["__cssModules",u]]),h=["data-tabs-name"],y=t.defineComponent({__name:"content",props:{name:{}},setup(o){return(e,a)=>(t.openBlock(),t.createElementBlock("div",{class:t.normalizeClass({"top-tabs_content":!0}),"data-tabs-name":e.name},[t.renderSlot(e.$slots,"default")],8,h))}}),k={$style:{"top-tabs_content":"top-tabs_content"}},B=n._export_sfc(y,[["__cssModules",k]]);s.Tabs=_,s.TabsContent=B,s.TabsTab=f,Object.defineProperty(s,Symbol.toStringTag,{value:"Module"})});
|
|
2
2
|
//# sourceMappingURL=tabs.amd.js.map
|