@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,100 +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: string | object;
|
|
9
|
-
readonly value: string | object;
|
|
10
|
-
readonly name?: string | undefined;
|
|
11
|
-
readonly disabled?: boolean | undefined;
|
|
12
|
-
readonly description?: string | undefined;
|
|
13
|
-
readonly isError?: boolean | undefined;
|
|
14
|
-
"onUpdate:modelValue"?: ((value: string | object) => any) | undefined;
|
|
15
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
modelValue: {
|
|
17
|
-
type: import("vue").PropType<string | object>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
value: {
|
|
21
|
-
type: import("vue").PropType<string | object>;
|
|
22
|
-
required: true;
|
|
23
|
-
};
|
|
24
|
-
name: {
|
|
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
|
-
isError: {
|
|
34
|
-
type: import("vue").PropType<boolean>;
|
|
35
|
-
};
|
|
36
|
-
}>> & {
|
|
37
|
-
"onUpdate:modelValue"?: ((value: string | object) => any) | undefined;
|
|
38
|
-
}, never>;
|
|
39
|
-
$attrs: {
|
|
40
|
-
[x: string]: unknown;
|
|
41
|
-
};
|
|
42
|
-
$refs: {
|
|
43
|
-
[x: string]: unknown;
|
|
44
|
-
};
|
|
45
|
-
$slots: Readonly<{
|
|
46
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
47
|
-
}>;
|
|
48
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
49
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
50
|
-
$emit: (event: "update:modelValue", value: string | object) => void;
|
|
51
|
-
$el: any;
|
|
52
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
-
modelValue: {
|
|
54
|
-
type: import("vue").PropType<string | object>;
|
|
55
|
-
required: true;
|
|
56
|
-
};
|
|
57
|
-
value: {
|
|
58
|
-
type: import("vue").PropType<string | object>;
|
|
59
|
-
required: true;
|
|
60
|
-
};
|
|
61
|
-
name: {
|
|
62
|
-
type: import("vue").PropType<string>;
|
|
63
|
-
};
|
|
64
|
-
description: {
|
|
65
|
-
type: import("vue").PropType<string>;
|
|
66
|
-
};
|
|
67
|
-
disabled: {
|
|
68
|
-
type: import("vue").PropType<boolean>;
|
|
69
|
-
};
|
|
70
|
-
isError: {
|
|
71
|
-
type: import("vue").PropType<boolean>;
|
|
72
|
-
};
|
|
73
|
-
}>> & {
|
|
74
|
-
"onUpdate:modelValue"?: ((value: string | object) => any) | undefined;
|
|
75
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
76
|
-
"update:modelValue": (value: string | object) => void;
|
|
77
|
-
}, string, {}, {}, string, {}> & {
|
|
78
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
79
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
80
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
81
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
82
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
83
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
84
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
85
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
86
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
87
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
88
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
89
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
90
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
91
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
92
|
-
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;
|
|
93
|
-
};
|
|
94
|
-
$forceUpdate: () => void;
|
|
95
|
-
$nextTick: typeof import("vue").nextTick;
|
|
96
|
-
$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;
|
|
97
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
98
5
|
modelValue: {
|
|
99
6
|
type: import("vue").PropType<string | object>;
|
|
100
7
|
required: true;
|
|
@@ -117,7 +24,62 @@ declare const meta: {
|
|
|
117
24
|
};
|
|
118
25
|
}>> & {
|
|
119
26
|
"onUpdate:modelValue"?: ((value: string | object) => any) | undefined;
|
|
120
|
-
}
|
|
27
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
|
+
"update:modelValue": (value: string | object) => void;
|
|
29
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
modelValue: {
|
|
31
|
+
type: import("vue").PropType<string | object>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
value: {
|
|
35
|
+
type: import("vue").PropType<string | object>;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
name: {
|
|
39
|
+
type: import("vue").PropType<string>;
|
|
40
|
+
};
|
|
41
|
+
description: {
|
|
42
|
+
type: import("vue").PropType<string>;
|
|
43
|
+
};
|
|
44
|
+
disabled: {
|
|
45
|
+
type: import("vue").PropType<boolean>;
|
|
46
|
+
};
|
|
47
|
+
isError: {
|
|
48
|
+
type: import("vue").PropType<boolean>;
|
|
49
|
+
};
|
|
50
|
+
}>> & {
|
|
51
|
+
"onUpdate:modelValue"?: ((value: string | object) => any) | undefined;
|
|
52
|
+
}, {}, true, {}, {}, {
|
|
53
|
+
P: {};
|
|
54
|
+
B: {};
|
|
55
|
+
D: {};
|
|
56
|
+
C: {};
|
|
57
|
+
M: {};
|
|
58
|
+
Defaults: {};
|
|
59
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
60
|
+
modelValue: {
|
|
61
|
+
type: import("vue").PropType<string | object>;
|
|
62
|
+
required: true;
|
|
63
|
+
};
|
|
64
|
+
value: {
|
|
65
|
+
type: import("vue").PropType<string | object>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
name: {
|
|
69
|
+
type: import("vue").PropType<string>;
|
|
70
|
+
};
|
|
71
|
+
description: {
|
|
72
|
+
type: import("vue").PropType<string>;
|
|
73
|
+
};
|
|
74
|
+
disabled: {
|
|
75
|
+
type: import("vue").PropType<boolean>;
|
|
76
|
+
};
|
|
77
|
+
isError: {
|
|
78
|
+
type: import("vue").PropType<boolean>;
|
|
79
|
+
};
|
|
80
|
+
}>> & {
|
|
81
|
+
"onUpdate:modelValue"?: ((value: string | object) => any) | undefined;
|
|
82
|
+
}, {}, {}, {}, {}, {}>;
|
|
121
83
|
__isFragment?: undefined;
|
|
122
84
|
__isTeleport?: undefined;
|
|
123
85
|
__isSuspense?: undefined;
|
|
@@ -1,98 +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 isError?: boolean | undefined;
|
|
14
|
-
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
15
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
modelValue: {
|
|
17
|
-
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
name: {
|
|
21
|
-
type: import("vue").PropType<string>;
|
|
22
|
-
};
|
|
23
|
-
value: {
|
|
24
|
-
type: import("vue").PropType<string>;
|
|
25
|
-
};
|
|
26
|
-
description: {
|
|
27
|
-
type: import("vue").PropType<string>;
|
|
28
|
-
};
|
|
29
|
-
disabled: {
|
|
30
|
-
type: import("vue").PropType<boolean>;
|
|
31
|
-
};
|
|
32
|
-
isError: {
|
|
33
|
-
type: import("vue").PropType<boolean>;
|
|
34
|
-
};
|
|
35
|
-
}>> & {
|
|
36
|
-
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
37
|
-
}, never>;
|
|
38
|
-
$attrs: {
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
41
|
-
$refs: {
|
|
42
|
-
[x: string]: unknown;
|
|
43
|
-
};
|
|
44
|
-
$slots: Readonly<{
|
|
45
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
46
|
-
}>;
|
|
47
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
48
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
49
|
-
$emit: (event: "update:modelValue", value: boolean | string[] | Set<string>) => void;
|
|
50
|
-
$el: any;
|
|
51
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
52
|
-
modelValue: {
|
|
53
|
-
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
54
|
-
required: true;
|
|
55
|
-
};
|
|
56
|
-
name: {
|
|
57
|
-
type: import("vue").PropType<string>;
|
|
58
|
-
};
|
|
59
|
-
value: {
|
|
60
|
-
type: import("vue").PropType<string>;
|
|
61
|
-
};
|
|
62
|
-
description: {
|
|
63
|
-
type: import("vue").PropType<string>;
|
|
64
|
-
};
|
|
65
|
-
disabled: {
|
|
66
|
-
type: import("vue").PropType<boolean>;
|
|
67
|
-
};
|
|
68
|
-
isError: {
|
|
69
|
-
type: import("vue").PropType<boolean>;
|
|
70
|
-
};
|
|
71
|
-
}>> & {
|
|
72
|
-
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
73
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
74
|
-
"update:modelValue": (value: boolean | string[] | Set<string>) => void;
|
|
75
|
-
}, string, {}, {}, string, {}> & {
|
|
76
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
77
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
78
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
79
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
80
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
81
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
82
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
83
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
84
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
85
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
86
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
87
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
88
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
89
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
90
|
-
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;
|
|
91
|
-
};
|
|
92
|
-
$forceUpdate: () => void;
|
|
93
|
-
$nextTick: typeof import("vue").nextTick;
|
|
94
|
-
$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;
|
|
95
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
96
5
|
modelValue: {
|
|
97
6
|
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
98
7
|
required: true;
|
|
@@ -114,7 +23,60 @@ declare const meta: {
|
|
|
114
23
|
};
|
|
115
24
|
}>> & {
|
|
116
25
|
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
117
|
-
}
|
|
26
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
|
+
"update:modelValue": (value: boolean | string[] | Set<string>) => void;
|
|
28
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
modelValue: {
|
|
30
|
+
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
name: {
|
|
34
|
+
type: import("vue").PropType<string>;
|
|
35
|
+
};
|
|
36
|
+
value: {
|
|
37
|
+
type: import("vue").PropType<string>;
|
|
38
|
+
};
|
|
39
|
+
description: {
|
|
40
|
+
type: import("vue").PropType<string>;
|
|
41
|
+
};
|
|
42
|
+
disabled: {
|
|
43
|
+
type: import("vue").PropType<boolean>;
|
|
44
|
+
};
|
|
45
|
+
isError: {
|
|
46
|
+
type: import("vue").PropType<boolean>;
|
|
47
|
+
};
|
|
48
|
+
}>> & {
|
|
49
|
+
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
50
|
+
}, {}, true, {}, {}, {
|
|
51
|
+
P: {};
|
|
52
|
+
B: {};
|
|
53
|
+
D: {};
|
|
54
|
+
C: {};
|
|
55
|
+
M: {};
|
|
56
|
+
Defaults: {};
|
|
57
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
58
|
+
modelValue: {
|
|
59
|
+
type: import("vue").PropType<boolean | string[] | Set<string>>;
|
|
60
|
+
required: true;
|
|
61
|
+
};
|
|
62
|
+
name: {
|
|
63
|
+
type: import("vue").PropType<string>;
|
|
64
|
+
};
|
|
65
|
+
value: {
|
|
66
|
+
type: import("vue").PropType<string>;
|
|
67
|
+
};
|
|
68
|
+
description: {
|
|
69
|
+
type: import("vue").PropType<string>;
|
|
70
|
+
};
|
|
71
|
+
disabled: {
|
|
72
|
+
type: import("vue").PropType<boolean>;
|
|
73
|
+
};
|
|
74
|
+
isError: {
|
|
75
|
+
type: import("vue").PropType<boolean>;
|
|
76
|
+
};
|
|
77
|
+
}>> & {
|
|
78
|
+
"onUpdate:modelValue"?: ((value: boolean | string[] | Set<string>) => any) | undefined;
|
|
79
|
+
}, {}, {}, {}, {}, {}>;
|
|
118
80
|
__isFragment?: undefined;
|
|
119
81
|
__isTeleport?: undefined;
|
|
120
82
|
__isSuspense?: undefined;
|
|
@@ -10,77 +10,42 @@ import type { StoryObj } from '@storybook/vue3';
|
|
|
10
10
|
*/
|
|
11
11
|
declare const meta: {
|
|
12
12
|
component: {
|
|
13
|
-
new (...args: any[]): {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
readonly modelValue: string;
|
|
18
|
-
readonly button?: import("../../forms/button/button").Props | undefined;
|
|
19
|
-
readonly input?: Omit<import("../../forms/input/input").Props, "modelValue"> | undefined;
|
|
20
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
21
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
-
modelValue: {
|
|
23
|
-
type: import("vue").PropType<string>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
input: {
|
|
27
|
-
type: import("vue").PropType<Omit<import("../../forms/input/input").Props, "modelValue">>;
|
|
28
|
-
};
|
|
29
|
-
button: {
|
|
30
|
-
type: import("vue").PropType<import("../../forms/button/button").Props>;
|
|
31
|
-
};
|
|
32
|
-
}>> & {
|
|
33
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
34
|
-
}, never>;
|
|
35
|
-
$attrs: {
|
|
36
|
-
[x: string]: unknown;
|
|
13
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
modelValue: {
|
|
15
|
+
type: import("vue").PropType<string>;
|
|
16
|
+
required: true;
|
|
37
17
|
};
|
|
38
|
-
|
|
39
|
-
|
|
18
|
+
input: {
|
|
19
|
+
type: import("vue").PropType<Omit<import("../../forms/input/input").Props, "modelValue">>;
|
|
40
20
|
};
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
45
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
46
|
-
$emit: (event: "update:modelValue", value: string) => void;
|
|
47
|
-
$el: any;
|
|
48
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
49
|
-
modelValue: {
|
|
50
|
-
type: import("vue").PropType<string>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
input: {
|
|
54
|
-
type: import("vue").PropType<Omit<import("../../forms/input/input").Props, "modelValue">>;
|
|
55
|
-
};
|
|
56
|
-
button: {
|
|
57
|
-
type: import("vue").PropType<import("../../forms/button/button").Props>;
|
|
58
|
-
};
|
|
59
|
-
}>> & {
|
|
60
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
61
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
62
|
-
"update:modelValue": (value: string) => void;
|
|
63
|
-
}, string, {}, {}, string, {}> & {
|
|
64
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
74
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
75
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
76
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
77
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
78
|
-
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;
|
|
21
|
+
button: {
|
|
22
|
+
type: import("vue").PropType<import("../../forms/button/button").Props>;
|
|
79
23
|
};
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
24
|
+
}>> & {
|
|
25
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
26
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
|
+
"update:modelValue": (value: string) => void;
|
|
28
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
modelValue: {
|
|
30
|
+
type: import("vue").PropType<string>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
input: {
|
|
34
|
+
type: import("vue").PropType<Omit<import("../../forms/input/input").Props, "modelValue">>;
|
|
35
|
+
};
|
|
36
|
+
button: {
|
|
37
|
+
type: import("vue").PropType<import("../../forms/button/button").Props>;
|
|
38
|
+
};
|
|
39
|
+
}>> & {
|
|
40
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
41
|
+
}, {}, true, {}, {}, {
|
|
42
|
+
P: {};
|
|
43
|
+
B: {};
|
|
44
|
+
D: {};
|
|
45
|
+
C: {};
|
|
46
|
+
M: {};
|
|
47
|
+
Defaults: {};
|
|
48
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
84
49
|
modelValue: {
|
|
85
50
|
type: import("vue").PropType<string>;
|
|
86
51
|
required: true;
|
|
@@ -93,7 +58,7 @@ declare const meta: {
|
|
|
93
58
|
};
|
|
94
59
|
}>> & {
|
|
95
60
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
96
|
-
}
|
|
61
|
+
}, {}, {}, {}, {}, {}>;
|
|
97
62
|
__isFragment?: undefined;
|
|
98
63
|
__isTeleport?: undefined;
|
|
99
64
|
__isSuspense?: undefined;
|