@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,150 +2,7 @@ import type { StoryObj } from '@storybook/vue3';
|
|
|
2
2
|
import * as ComponentsConst from './input';
|
|
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
|
-
captionType: ComponentsConst.CaptionType;
|
|
11
|
-
}> & Omit<{
|
|
12
|
-
readonly size: import("../helpers").Size;
|
|
13
|
-
readonly modelValue: string;
|
|
14
|
-
readonly captionType: ComponentsConst.CaptionType;
|
|
15
|
-
readonly icon?: string | undefined;
|
|
16
|
-
readonly icon2?: string | undefined;
|
|
17
|
-
readonly title?: string | undefined;
|
|
18
|
-
readonly name?: string | undefined;
|
|
19
|
-
readonly disabled?: boolean | undefined;
|
|
20
|
-
readonly isError?: boolean | undefined;
|
|
21
|
-
readonly readonly?: boolean | undefined;
|
|
22
|
-
readonly addCleaner?: boolean | undefined;
|
|
23
|
-
readonly modificator?: string | undefined;
|
|
24
|
-
"onUpdate:modelValue"?: ((value: string) => any) | 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
|
-
name: {
|
|
40
|
-
type: import("vue").PropType<string>;
|
|
41
|
-
};
|
|
42
|
-
disabled: {
|
|
43
|
-
type: import("vue").PropType<boolean>;
|
|
44
|
-
};
|
|
45
|
-
modelValue: {
|
|
46
|
-
type: import("vue").PropType<string>;
|
|
47
|
-
required: true;
|
|
48
|
-
};
|
|
49
|
-
isError: {
|
|
50
|
-
type: import("vue").PropType<boolean>;
|
|
51
|
-
};
|
|
52
|
-
readonly: {
|
|
53
|
-
type: import("vue").PropType<boolean>;
|
|
54
|
-
};
|
|
55
|
-
captionType: {
|
|
56
|
-
type: import("vue").PropType<ComponentsConst.CaptionType>;
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
|
-
addCleaner: {
|
|
60
|
-
type: import("vue").PropType<boolean>;
|
|
61
|
-
};
|
|
62
|
-
modificator: {
|
|
63
|
-
type: import("vue").PropType<string>;
|
|
64
|
-
};
|
|
65
|
-
}>> & {
|
|
66
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
67
|
-
}, "size" | "captionType">;
|
|
68
|
-
$attrs: {
|
|
69
|
-
[x: string]: unknown;
|
|
70
|
-
};
|
|
71
|
-
$refs: {
|
|
72
|
-
[x: string]: unknown;
|
|
73
|
-
};
|
|
74
|
-
$slots: Readonly<{
|
|
75
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
76
|
-
}>;
|
|
77
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
78
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
79
|
-
$emit: (event: "update:modelValue", value: string) => void;
|
|
80
|
-
$el: any;
|
|
81
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
82
|
-
icon: {
|
|
83
|
-
type: import("vue").PropType<string>;
|
|
84
|
-
};
|
|
85
|
-
icon2: {
|
|
86
|
-
type: import("vue").PropType<string>;
|
|
87
|
-
};
|
|
88
|
-
title: {
|
|
89
|
-
type: import("vue").PropType<string>;
|
|
90
|
-
};
|
|
91
|
-
size: {
|
|
92
|
-
type: import("vue").PropType<import("../helpers").Size>;
|
|
93
|
-
default: string;
|
|
94
|
-
};
|
|
95
|
-
name: {
|
|
96
|
-
type: import("vue").PropType<string>;
|
|
97
|
-
};
|
|
98
|
-
disabled: {
|
|
99
|
-
type: import("vue").PropType<boolean>;
|
|
100
|
-
};
|
|
101
|
-
modelValue: {
|
|
102
|
-
type: import("vue").PropType<string>;
|
|
103
|
-
required: true;
|
|
104
|
-
};
|
|
105
|
-
isError: {
|
|
106
|
-
type: import("vue").PropType<boolean>;
|
|
107
|
-
};
|
|
108
|
-
readonly: {
|
|
109
|
-
type: import("vue").PropType<boolean>;
|
|
110
|
-
};
|
|
111
|
-
captionType: {
|
|
112
|
-
type: import("vue").PropType<ComponentsConst.CaptionType>;
|
|
113
|
-
default: string;
|
|
114
|
-
};
|
|
115
|
-
addCleaner: {
|
|
116
|
-
type: import("vue").PropType<boolean>;
|
|
117
|
-
};
|
|
118
|
-
modificator: {
|
|
119
|
-
type: import("vue").PropType<string>;
|
|
120
|
-
};
|
|
121
|
-
}>> & {
|
|
122
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
123
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
124
|
-
"update:modelValue": (value: string) => void;
|
|
125
|
-
}, string, {
|
|
126
|
-
size: import("../helpers").Size;
|
|
127
|
-
captionType: ComponentsConst.CaptionType;
|
|
128
|
-
}, {}, string, {}> & {
|
|
129
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
130
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
131
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
132
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
133
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
134
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
135
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
136
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
137
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
138
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
139
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
140
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
141
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
142
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
143
|
-
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;
|
|
144
|
-
};
|
|
145
|
-
$forceUpdate: () => void;
|
|
146
|
-
$nextTick: typeof import("vue").nextTick;
|
|
147
|
-
$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;
|
|
148
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
5
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
149
6
|
icon: {
|
|
150
7
|
type: import("vue").PropType<string>;
|
|
151
8
|
};
|
|
@@ -187,7 +44,106 @@ declare const meta: {
|
|
|
187
44
|
};
|
|
188
45
|
}>> & {
|
|
189
46
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
190
|
-
}
|
|
47
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
48
|
+
"update:modelValue": (value: string) => void;
|
|
49
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
icon: {
|
|
51
|
+
type: import("vue").PropType<string>;
|
|
52
|
+
};
|
|
53
|
+
icon2: {
|
|
54
|
+
type: import("vue").PropType<string>;
|
|
55
|
+
};
|
|
56
|
+
title: {
|
|
57
|
+
type: import("vue").PropType<string>;
|
|
58
|
+
};
|
|
59
|
+
size: {
|
|
60
|
+
type: import("vue").PropType<import("../helpers").Size>;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
name: {
|
|
64
|
+
type: import("vue").PropType<string>;
|
|
65
|
+
};
|
|
66
|
+
disabled: {
|
|
67
|
+
type: import("vue").PropType<boolean>;
|
|
68
|
+
};
|
|
69
|
+
modelValue: {
|
|
70
|
+
type: import("vue").PropType<string>;
|
|
71
|
+
required: true;
|
|
72
|
+
};
|
|
73
|
+
isError: {
|
|
74
|
+
type: import("vue").PropType<boolean>;
|
|
75
|
+
};
|
|
76
|
+
readonly: {
|
|
77
|
+
type: import("vue").PropType<boolean>;
|
|
78
|
+
};
|
|
79
|
+
captionType: {
|
|
80
|
+
type: import("vue").PropType<ComponentsConst.CaptionType>;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
addCleaner: {
|
|
84
|
+
type: import("vue").PropType<boolean>;
|
|
85
|
+
};
|
|
86
|
+
modificator: {
|
|
87
|
+
type: import("vue").PropType<string>;
|
|
88
|
+
};
|
|
89
|
+
}>> & {
|
|
90
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
91
|
+
}, {
|
|
92
|
+
size: import("../helpers").Size;
|
|
93
|
+
captionType: ComponentsConst.CaptionType;
|
|
94
|
+
}, true, {}, {}, {
|
|
95
|
+
P: {};
|
|
96
|
+
B: {};
|
|
97
|
+
D: {};
|
|
98
|
+
C: {};
|
|
99
|
+
M: {};
|
|
100
|
+
Defaults: {};
|
|
101
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
102
|
+
icon: {
|
|
103
|
+
type: import("vue").PropType<string>;
|
|
104
|
+
};
|
|
105
|
+
icon2: {
|
|
106
|
+
type: import("vue").PropType<string>;
|
|
107
|
+
};
|
|
108
|
+
title: {
|
|
109
|
+
type: import("vue").PropType<string>;
|
|
110
|
+
};
|
|
111
|
+
size: {
|
|
112
|
+
type: import("vue").PropType<import("../helpers").Size>;
|
|
113
|
+
default: string;
|
|
114
|
+
};
|
|
115
|
+
name: {
|
|
116
|
+
type: import("vue").PropType<string>;
|
|
117
|
+
};
|
|
118
|
+
disabled: {
|
|
119
|
+
type: import("vue").PropType<boolean>;
|
|
120
|
+
};
|
|
121
|
+
modelValue: {
|
|
122
|
+
type: import("vue").PropType<string>;
|
|
123
|
+
required: true;
|
|
124
|
+
};
|
|
125
|
+
isError: {
|
|
126
|
+
type: import("vue").PropType<boolean>;
|
|
127
|
+
};
|
|
128
|
+
readonly: {
|
|
129
|
+
type: import("vue").PropType<boolean>;
|
|
130
|
+
};
|
|
131
|
+
captionType: {
|
|
132
|
+
type: import("vue").PropType<ComponentsConst.CaptionType>;
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
135
|
+
addCleaner: {
|
|
136
|
+
type: import("vue").PropType<boolean>;
|
|
137
|
+
};
|
|
138
|
+
modificator: {
|
|
139
|
+
type: import("vue").PropType<string>;
|
|
140
|
+
};
|
|
141
|
+
}>> & {
|
|
142
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
143
|
+
}, {}, {}, {}, {}, {
|
|
144
|
+
size: import("../helpers").Size;
|
|
145
|
+
captionType: ComponentsConst.CaptionType;
|
|
146
|
+
}>;
|
|
191
147
|
__isFragment?: undefined;
|
|
192
148
|
__isTeleport?: undefined;
|
|
193
149
|
__isSuspense?: undefined;
|
|
@@ -6,44 +6,14 @@ import type { StoryObj } from '@storybook/vue3';
|
|
|
6
6
|
*/
|
|
7
7
|
declare const meta: {
|
|
8
8
|
component: {
|
|
9
|
-
new (...args: any[]): {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
[x: string]: unknown;
|
|
18
|
-
};
|
|
19
|
-
$slots: Readonly<{
|
|
20
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
21
|
-
}>;
|
|
22
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
23
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
24
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
25
|
-
$el: any;
|
|
26
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
27
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
28
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
29
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
30
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
31
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
32
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
33
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
34
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
35
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
36
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
37
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
38
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
39
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
40
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
41
|
-
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;
|
|
42
|
-
};
|
|
43
|
-
$forceUpdate: () => void;
|
|
44
|
-
$nextTick: typeof import("vue").nextTick;
|
|
45
|
-
$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;
|
|
46
|
-
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
9
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
10
|
+
P: {};
|
|
11
|
+
B: {};
|
|
12
|
+
D: {};
|
|
13
|
+
C: {};
|
|
14
|
+
M: {};
|
|
15
|
+
Defaults: {};
|
|
16
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
|
|
47
17
|
__isFragment?: undefined;
|
|
48
18
|
__isTeleport?: undefined;
|
|
49
19
|
__isSuspense?: undefined;
|
|
@@ -108,44 +78,14 @@ export declare const Playground: {
|
|
|
108
78
|
}) => {
|
|
109
79
|
components: {
|
|
110
80
|
InputRange: {
|
|
111
|
-
new (...args: any[]): {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
};
|
|
118
|
-
|
|
119
|
-
[x: string]: unknown;
|
|
120
|
-
};
|
|
121
|
-
$slots: Readonly<{
|
|
122
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
123
|
-
}>;
|
|
124
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
125
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
126
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
127
|
-
$el: any;
|
|
128
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
129
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
130
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
131
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
132
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
133
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
134
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
135
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
136
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
137
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
138
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
139
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
140
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
141
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
142
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
143
|
-
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;
|
|
144
|
-
};
|
|
145
|
-
$forceUpdate: () => void;
|
|
146
|
-
$nextTick: typeof import("vue").nextTick;
|
|
147
|
-
$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;
|
|
148
|
-
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
81
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
82
|
+
P: {};
|
|
83
|
+
B: {};
|
|
84
|
+
D: {};
|
|
85
|
+
C: {};
|
|
86
|
+
M: {};
|
|
87
|
+
Defaults: {};
|
|
88
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
|
|
149
89
|
__isFragment?: undefined;
|
|
150
90
|
__isTeleport?: undefined;
|
|
151
91
|
__isSuspense?: undefined;
|
|
@@ -156,150 +96,7 @@ export declare const Playground: {
|
|
|
156
96
|
};
|
|
157
97
|
});
|
|
158
98
|
Input: {
|
|
159
|
-
new (...args: any[]): {
|
|
160
|
-
$: import("vue").ComponentInternalInstance;
|
|
161
|
-
$data: {};
|
|
162
|
-
$props: Partial<{
|
|
163
|
-
size: import("../helpers").Size;
|
|
164
|
-
captionType: import("../input/input").CaptionType;
|
|
165
|
-
}> & Omit<{
|
|
166
|
-
readonly size: import("../helpers").Size;
|
|
167
|
-
readonly modelValue: string;
|
|
168
|
-
readonly captionType: import("../input/input").CaptionType;
|
|
169
|
-
readonly icon?: string | undefined;
|
|
170
|
-
readonly icon2?: string | undefined;
|
|
171
|
-
readonly title?: string | undefined;
|
|
172
|
-
readonly name?: string | undefined;
|
|
173
|
-
readonly disabled?: boolean | undefined;
|
|
174
|
-
readonly isError?: boolean | undefined;
|
|
175
|
-
readonly readonly?: boolean | undefined;
|
|
176
|
-
readonly addCleaner?: boolean | undefined;
|
|
177
|
-
readonly modificator?: string | undefined;
|
|
178
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
179
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
180
|
-
icon: {
|
|
181
|
-
type: import("vue").PropType<string>;
|
|
182
|
-
};
|
|
183
|
-
icon2: {
|
|
184
|
-
type: import("vue").PropType<string>;
|
|
185
|
-
};
|
|
186
|
-
title: {
|
|
187
|
-
type: import("vue").PropType<string>;
|
|
188
|
-
};
|
|
189
|
-
size: {
|
|
190
|
-
type: import("vue").PropType<import("../helpers").Size>;
|
|
191
|
-
default: string;
|
|
192
|
-
};
|
|
193
|
-
name: {
|
|
194
|
-
type: import("vue").PropType<string>;
|
|
195
|
-
};
|
|
196
|
-
disabled: {
|
|
197
|
-
type: import("vue").PropType<boolean>;
|
|
198
|
-
};
|
|
199
|
-
modelValue: {
|
|
200
|
-
type: import("vue").PropType<string>;
|
|
201
|
-
required: true;
|
|
202
|
-
};
|
|
203
|
-
isError: {
|
|
204
|
-
type: import("vue").PropType<boolean>;
|
|
205
|
-
};
|
|
206
|
-
readonly: {
|
|
207
|
-
type: import("vue").PropType<boolean>;
|
|
208
|
-
};
|
|
209
|
-
captionType: {
|
|
210
|
-
type: import("vue").PropType<import("../input/input").CaptionType>;
|
|
211
|
-
default: string;
|
|
212
|
-
};
|
|
213
|
-
addCleaner: {
|
|
214
|
-
type: import("vue").PropType<boolean>;
|
|
215
|
-
};
|
|
216
|
-
modificator: {
|
|
217
|
-
type: import("vue").PropType<string>;
|
|
218
|
-
};
|
|
219
|
-
}>> & {
|
|
220
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
221
|
-
}, "size" | "captionType">;
|
|
222
|
-
$attrs: {
|
|
223
|
-
[x: string]: unknown;
|
|
224
|
-
};
|
|
225
|
-
$refs: {
|
|
226
|
-
[x: string]: unknown;
|
|
227
|
-
};
|
|
228
|
-
$slots: Readonly<{
|
|
229
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
230
|
-
}>;
|
|
231
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
232
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
233
|
-
$emit: (event: "update:modelValue", value: string) => void;
|
|
234
|
-
$el: any;
|
|
235
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
236
|
-
icon: {
|
|
237
|
-
type: import("vue").PropType<string>;
|
|
238
|
-
};
|
|
239
|
-
icon2: {
|
|
240
|
-
type: import("vue").PropType<string>;
|
|
241
|
-
};
|
|
242
|
-
title: {
|
|
243
|
-
type: import("vue").PropType<string>;
|
|
244
|
-
};
|
|
245
|
-
size: {
|
|
246
|
-
type: import("vue").PropType<import("../helpers").Size>;
|
|
247
|
-
default: string;
|
|
248
|
-
};
|
|
249
|
-
name: {
|
|
250
|
-
type: import("vue").PropType<string>;
|
|
251
|
-
};
|
|
252
|
-
disabled: {
|
|
253
|
-
type: import("vue").PropType<boolean>;
|
|
254
|
-
};
|
|
255
|
-
modelValue: {
|
|
256
|
-
type: import("vue").PropType<string>;
|
|
257
|
-
required: true;
|
|
258
|
-
};
|
|
259
|
-
isError: {
|
|
260
|
-
type: import("vue").PropType<boolean>;
|
|
261
|
-
};
|
|
262
|
-
readonly: {
|
|
263
|
-
type: import("vue").PropType<boolean>;
|
|
264
|
-
};
|
|
265
|
-
captionType: {
|
|
266
|
-
type: import("vue").PropType<import("../input/input").CaptionType>;
|
|
267
|
-
default: string;
|
|
268
|
-
};
|
|
269
|
-
addCleaner: {
|
|
270
|
-
type: import("vue").PropType<boolean>;
|
|
271
|
-
};
|
|
272
|
-
modificator: {
|
|
273
|
-
type: import("vue").PropType<string>;
|
|
274
|
-
};
|
|
275
|
-
}>> & {
|
|
276
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
277
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
278
|
-
"update:modelValue": (value: string) => void;
|
|
279
|
-
}, string, {
|
|
280
|
-
size: import("../helpers").Size;
|
|
281
|
-
captionType: import("../input/input").CaptionType;
|
|
282
|
-
}, {}, string, {}> & {
|
|
283
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
284
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
285
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
286
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
287
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
288
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
289
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
290
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
291
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
292
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
293
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
294
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
295
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
296
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
297
|
-
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;
|
|
298
|
-
};
|
|
299
|
-
$forceUpdate: () => void;
|
|
300
|
-
$nextTick: typeof import("vue").nextTick;
|
|
301
|
-
$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;
|
|
302
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
99
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
303
100
|
icon: {
|
|
304
101
|
type: import("vue").PropType<string>;
|
|
305
102
|
};
|
|
@@ -341,7 +138,106 @@ export declare const Playground: {
|
|
|
341
138
|
};
|
|
342
139
|
}>> & {
|
|
343
140
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
344
|
-
}
|
|
141
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
142
|
+
"update:modelValue": (value: string) => void;
|
|
143
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
144
|
+
icon: {
|
|
145
|
+
type: import("vue").PropType<string>;
|
|
146
|
+
};
|
|
147
|
+
icon2: {
|
|
148
|
+
type: import("vue").PropType<string>;
|
|
149
|
+
};
|
|
150
|
+
title: {
|
|
151
|
+
type: import("vue").PropType<string>;
|
|
152
|
+
};
|
|
153
|
+
size: {
|
|
154
|
+
type: import("vue").PropType<import("../helpers").Size>;
|
|
155
|
+
default: string;
|
|
156
|
+
};
|
|
157
|
+
name: {
|
|
158
|
+
type: import("vue").PropType<string>;
|
|
159
|
+
};
|
|
160
|
+
disabled: {
|
|
161
|
+
type: import("vue").PropType<boolean>;
|
|
162
|
+
};
|
|
163
|
+
modelValue: {
|
|
164
|
+
type: import("vue").PropType<string>;
|
|
165
|
+
required: true;
|
|
166
|
+
};
|
|
167
|
+
isError: {
|
|
168
|
+
type: import("vue").PropType<boolean>;
|
|
169
|
+
};
|
|
170
|
+
readonly: {
|
|
171
|
+
type: import("vue").PropType<boolean>;
|
|
172
|
+
};
|
|
173
|
+
captionType: {
|
|
174
|
+
type: import("vue").PropType<import("../input/input").CaptionType>;
|
|
175
|
+
default: string;
|
|
176
|
+
};
|
|
177
|
+
addCleaner: {
|
|
178
|
+
type: import("vue").PropType<boolean>;
|
|
179
|
+
};
|
|
180
|
+
modificator: {
|
|
181
|
+
type: import("vue").PropType<string>;
|
|
182
|
+
};
|
|
183
|
+
}>> & {
|
|
184
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
185
|
+
}, {
|
|
186
|
+
size: import("../helpers").Size;
|
|
187
|
+
captionType: import("../input/input").CaptionType;
|
|
188
|
+
}, true, {}, {}, {
|
|
189
|
+
P: {};
|
|
190
|
+
B: {};
|
|
191
|
+
D: {};
|
|
192
|
+
C: {};
|
|
193
|
+
M: {};
|
|
194
|
+
Defaults: {};
|
|
195
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
196
|
+
icon: {
|
|
197
|
+
type: import("vue").PropType<string>;
|
|
198
|
+
};
|
|
199
|
+
icon2: {
|
|
200
|
+
type: import("vue").PropType<string>;
|
|
201
|
+
};
|
|
202
|
+
title: {
|
|
203
|
+
type: import("vue").PropType<string>;
|
|
204
|
+
};
|
|
205
|
+
size: {
|
|
206
|
+
type: import("vue").PropType<import("../helpers").Size>;
|
|
207
|
+
default: string;
|
|
208
|
+
};
|
|
209
|
+
name: {
|
|
210
|
+
type: import("vue").PropType<string>;
|
|
211
|
+
};
|
|
212
|
+
disabled: {
|
|
213
|
+
type: import("vue").PropType<boolean>;
|
|
214
|
+
};
|
|
215
|
+
modelValue: {
|
|
216
|
+
type: import("vue").PropType<string>;
|
|
217
|
+
required: true;
|
|
218
|
+
};
|
|
219
|
+
isError: {
|
|
220
|
+
type: import("vue").PropType<boolean>;
|
|
221
|
+
};
|
|
222
|
+
readonly: {
|
|
223
|
+
type: import("vue").PropType<boolean>;
|
|
224
|
+
};
|
|
225
|
+
captionType: {
|
|
226
|
+
type: import("vue").PropType<import("../input/input").CaptionType>;
|
|
227
|
+
default: string;
|
|
228
|
+
};
|
|
229
|
+
addCleaner: {
|
|
230
|
+
type: import("vue").PropType<boolean>;
|
|
231
|
+
};
|
|
232
|
+
modificator: {
|
|
233
|
+
type: import("vue").PropType<string>;
|
|
234
|
+
};
|
|
235
|
+
}>> & {
|
|
236
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
237
|
+
}, {}, {}, {}, {}, {
|
|
238
|
+
size: import("../helpers").Size;
|
|
239
|
+
captionType: import("../input/input").CaptionType;
|
|
240
|
+
}>;
|
|
345
241
|
__isFragment?: undefined;
|
|
346
242
|
__isTeleport?: undefined;
|
|
347
243
|
__isSuspense?: undefined;
|