@solfacil/girassol 0.3.2 → 0.3.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/.vscode/settings.json +1 -0
- package/dist/components.d.ts +1 -2
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +1638 -1664
- package/dist/girassol.umd.js +10 -6
- package/dist/style.css +1 -1
- package/dist/types/components/accordion/Accordion.vue.d.ts +2 -2
- package/dist/types/components/forms/button/button/Button.vue.d.ts +2 -2
- package/dist/types/components/forms/button/button-destructive/ButtonDestructive.vue.d.ts +2 -2
- package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +12 -80
- package/dist/types/components/forms/inputs/index.d.ts +2 -1
- package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +17 -90
- package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +21 -109
- package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +7 -10
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +63 -0
- package/dist/types/components/forms/{textarea → inputs/input-textarea}/textarea.spec.d.ts +0 -0
- package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +11 -77
- package/dist/types/components/forms/switch/Switch.vue.d.ts +18 -102
- package/dist/types/components/loader/CircleLoader.vue.d.ts +10 -74
- package/dist/types/components/menus/menu/Menu.vue.d.ts +2 -2
- package/dist/types/components/menus/menu-navigation-links/MenuNavigationLinks.vue.d.ts +2 -2
- package/dist/types/composables/use-mask/index.d.ts +18 -0
- package/dist/types/composables/use-toast/Toast.vue.d.ts +2 -2
- package/dist/types/index.d.ts +565 -1481
- package/package.json +2 -1
- package/dist/README.md.d.ts +0 -2
- package/dist/cli/readme.md.d.ts +0 -2
- package/dist/types/components/dropdown/index.d.ts +0 -2
- package/dist/types/components/forms/textarea/Textarea.vue.d.ts +0 -139
- package/dist/types/components/forms/textarea/index.d.ts +0 -2
|
@@ -1,110 +1,6 @@
|
|
|
1
1
|
import type { InputText as InputType } from '../types';
|
|
2
2
|
import type { ParentValidation } from '@/composables/use-validate-field/types';
|
|
3
|
-
declare const _default: {
|
|
4
|
-
new (...args: any[]): {
|
|
5
|
-
$: import("vue").ComponentInternalInstance;
|
|
6
|
-
$data: {};
|
|
7
|
-
$props: Partial<{
|
|
8
|
-
required: boolean;
|
|
9
|
-
name: InputType['name'];
|
|
10
|
-
placeholder: string;
|
|
11
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
-
id: InputType['id'];
|
|
13
|
-
label?: InputType['label'];
|
|
14
|
-
name: InputType['name'];
|
|
15
|
-
placeholder?: string | undefined;
|
|
16
|
-
helperText?: InputType['helperText'];
|
|
17
|
-
required?: InputType['required'];
|
|
18
|
-
disabled?: InputType['disabled'];
|
|
19
|
-
size?: InputType['size'];
|
|
20
|
-
error?: string | null | undefined;
|
|
21
|
-
modelValue?: string | undefined;
|
|
22
|
-
useField?: ParentValidation['useFieldParent'];
|
|
23
|
-
rules?: ParentValidation['rules'];
|
|
24
|
-
opts?: ParentValidation['opts'];
|
|
25
|
-
}>, {
|
|
26
|
-
name: string;
|
|
27
|
-
required: boolean;
|
|
28
|
-
placeholder: string;
|
|
29
|
-
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "name" | "placeholder">;
|
|
30
|
-
$attrs: {
|
|
31
|
-
[x: string]: unknown;
|
|
32
|
-
};
|
|
33
|
-
$refs: {
|
|
34
|
-
[x: string]: unknown;
|
|
35
|
-
};
|
|
36
|
-
$slots: Readonly<{
|
|
37
|
-
[name: string]: import("vue").Slot | undefined;
|
|
38
|
-
}>;
|
|
39
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
40
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
41
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
42
|
-
$el: any;
|
|
43
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
44
|
-
id: InputType['id'];
|
|
45
|
-
label?: InputType['label'];
|
|
46
|
-
name: InputType['name'];
|
|
47
|
-
placeholder?: string | undefined;
|
|
48
|
-
helperText?: InputType['helperText'];
|
|
49
|
-
required?: InputType['required'];
|
|
50
|
-
disabled?: InputType['disabled'];
|
|
51
|
-
size?: InputType['size'];
|
|
52
|
-
error?: string | null | undefined;
|
|
53
|
-
modelValue?: string | undefined;
|
|
54
|
-
useField?: ParentValidation['useFieldParent'];
|
|
55
|
-
rules?: ParentValidation['rules'];
|
|
56
|
-
opts?: ParentValidation['opts'];
|
|
57
|
-
}>, {
|
|
58
|
-
name: string;
|
|
59
|
-
required: boolean;
|
|
60
|
-
placeholder: string;
|
|
61
|
-
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
62
|
-
required: boolean;
|
|
63
|
-
name: InputType['name'];
|
|
64
|
-
placeholder: string;
|
|
65
|
-
}> & {
|
|
66
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
74
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
75
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
76
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
77
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
78
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
79
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
80
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
81
|
-
};
|
|
82
|
-
$forceUpdate: () => void;
|
|
83
|
-
$nextTick: typeof import("vue").nextTick;
|
|
84
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
85
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
86
|
-
id: InputType['id'];
|
|
87
|
-
label?: InputType['label'];
|
|
88
|
-
name: InputType['name'];
|
|
89
|
-
placeholder?: string | undefined;
|
|
90
|
-
helperText?: InputType['helperText'];
|
|
91
|
-
required?: InputType['required'];
|
|
92
|
-
disabled?: InputType['disabled'];
|
|
93
|
-
size?: InputType['size'];
|
|
94
|
-
error?: string | null | undefined;
|
|
95
|
-
modelValue?: string | undefined;
|
|
96
|
-
useField?: ParentValidation['useFieldParent'];
|
|
97
|
-
rules?: ParentValidation['rules'];
|
|
98
|
-
opts?: ParentValidation['opts'];
|
|
99
|
-
}>, {
|
|
100
|
-
name: string;
|
|
101
|
-
required: boolean;
|
|
102
|
-
placeholder: string;
|
|
103
|
-
}>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
104
|
-
__isFragment?: undefined;
|
|
105
|
-
__isTeleport?: undefined;
|
|
106
|
-
__isSuspense?: undefined;
|
|
107
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
108
4
|
id: InputType['id'];
|
|
109
5
|
label?: InputType['label'];
|
|
110
6
|
name: InputType['name'];
|
|
@@ -122,13 +18,29 @@ declare const _default: {
|
|
|
122
18
|
name: string;
|
|
123
19
|
required: boolean;
|
|
124
20
|
placeholder: string;
|
|
125
|
-
}
|
|
21
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
22
|
+
id: InputType['id'];
|
|
23
|
+
label?: InputType['label'];
|
|
24
|
+
name: InputType['name'];
|
|
25
|
+
placeholder?: string | undefined;
|
|
26
|
+
helperText?: InputType['helperText'];
|
|
27
|
+
required?: InputType['required'];
|
|
28
|
+
disabled?: InputType['disabled'];
|
|
29
|
+
size?: InputType['size'];
|
|
30
|
+
error?: string | null | undefined;
|
|
31
|
+
modelValue?: string | undefined;
|
|
32
|
+
useField?: ParentValidation['useFieldParent'];
|
|
33
|
+
rules?: ParentValidation['rules'];
|
|
34
|
+
opts?: ParentValidation['opts'];
|
|
35
|
+
}>, {
|
|
36
|
+
name: string;
|
|
37
|
+
required: boolean;
|
|
38
|
+
placeholder: string;
|
|
39
|
+
}>>>, {
|
|
126
40
|
required: boolean;
|
|
127
41
|
name: InputType['name'];
|
|
128
42
|
placeholder: string;
|
|
129
|
-
}
|
|
130
|
-
$slots: {};
|
|
131
|
-
});
|
|
43
|
+
}>;
|
|
132
44
|
export default _default;
|
|
133
45
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
134
46
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import type { ParentValidation } from '@composables/use-validate-field/types';
|
|
2
1
|
import type { InputText } from '../types';
|
|
2
|
+
import type { ParentValidation } from '../../../../composables/use-validate-field/types';
|
|
3
|
+
import type { Mask } from '../../../../composables/use-mask';
|
|
3
4
|
declare const _default: {
|
|
4
5
|
new (...args: any[]): {
|
|
5
6
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -12,6 +13,7 @@ declare const _default: {
|
|
|
12
13
|
name: InputText['name'];
|
|
13
14
|
class?: InputText['class'];
|
|
14
15
|
label?: InputText['label'];
|
|
16
|
+
mask?: Mask | undefined;
|
|
15
17
|
helperText?: InputText['helperText'];
|
|
16
18
|
successText?: InputText['successText'];
|
|
17
19
|
loadingText?: InputText['loadingText'];
|
|
@@ -30,7 +32,6 @@ declare const _default: {
|
|
|
30
32
|
size: string;
|
|
31
33
|
error: null;
|
|
32
34
|
}>>> & {
|
|
33
|
-
onInput?: ((event: string) => any) | undefined;
|
|
34
35
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
35
36
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "size">;
|
|
36
37
|
$attrs: {
|
|
@@ -44,13 +45,14 @@ declare const _default: {
|
|
|
44
45
|
}>;
|
|
45
46
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
46
47
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
47
|
-
$emit: (
|
|
48
|
+
$emit: (event: "update:modelValue", event: string) => void;
|
|
48
49
|
$el: any;
|
|
49
50
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
50
51
|
id: InputText['id'];
|
|
51
52
|
name: InputText['name'];
|
|
52
53
|
class?: InputText['class'];
|
|
53
54
|
label?: InputText['label'];
|
|
55
|
+
mask?: Mask | undefined;
|
|
54
56
|
helperText?: InputText['helperText'];
|
|
55
57
|
successText?: InputText['successText'];
|
|
56
58
|
loadingText?: InputText['loadingText'];
|
|
@@ -69,11 +71,8 @@ declare const _default: {
|
|
|
69
71
|
size: string;
|
|
70
72
|
error: null;
|
|
71
73
|
}>>> & {
|
|
72
|
-
onInput?: ((event: string) => any) | undefined;
|
|
73
74
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
74
75
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
75
|
-
input: (event: string) => void;
|
|
76
|
-
} & {
|
|
77
76
|
"update:modelValue": (event: string) => void;
|
|
78
77
|
}, string, {
|
|
79
78
|
error: string | null;
|
|
@@ -103,6 +102,7 @@ declare const _default: {
|
|
|
103
102
|
name: InputText['name'];
|
|
104
103
|
class?: InputText['class'];
|
|
105
104
|
label?: InputText['label'];
|
|
105
|
+
mask?: Mask | undefined;
|
|
106
106
|
helperText?: InputText['helperText'];
|
|
107
107
|
successText?: InputText['successText'];
|
|
108
108
|
loadingText?: InputText['loadingText'];
|
|
@@ -121,7 +121,6 @@ declare const _default: {
|
|
|
121
121
|
size: string;
|
|
122
122
|
error: null;
|
|
123
123
|
}>>> & {
|
|
124
|
-
onInput?: ((event: string) => any) | undefined;
|
|
125
124
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
126
125
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
127
126
|
__isFragment?: undefined;
|
|
@@ -132,6 +131,7 @@ declare const _default: {
|
|
|
132
131
|
name: InputText['name'];
|
|
133
132
|
class?: InputText['class'];
|
|
134
133
|
label?: InputText['label'];
|
|
134
|
+
mask?: Mask | undefined;
|
|
135
135
|
helperText?: InputText['helperText'];
|
|
136
136
|
successText?: InputText['successText'];
|
|
137
137
|
loadingText?: InputText['loadingText'];
|
|
@@ -150,11 +150,8 @@ declare const _default: {
|
|
|
150
150
|
size: string;
|
|
151
151
|
error: null;
|
|
152
152
|
}>>> & {
|
|
153
|
-
onInput?: ((event: string) => any) | undefined;
|
|
154
153
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
155
154
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
156
|
-
input: (event: string) => void;
|
|
157
|
-
} & {
|
|
158
155
|
"update:modelValue": (event: string) => void;
|
|
159
156
|
}, string, {
|
|
160
157
|
error: string | null;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import type { ParentValidation } from '../../../../composables/use-validate-field/types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
id: string;
|
|
4
|
+
class?: string | undefined;
|
|
5
|
+
name: string;
|
|
6
|
+
label?: string | undefined;
|
|
7
|
+
required?: boolean | undefined;
|
|
8
|
+
helperText?: string | undefined;
|
|
9
|
+
resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
|
|
10
|
+
size?: "sm" | "md" | undefined;
|
|
11
|
+
error?: string | null | undefined;
|
|
12
|
+
placeholder?: string | undefined;
|
|
13
|
+
modelValue?: string | undefined;
|
|
14
|
+
useField?: ParentValidation['useFieldParent'];
|
|
15
|
+
rules?: ParentValidation['rules'];
|
|
16
|
+
opts?: ParentValidation['opts'];
|
|
17
|
+
}>, {
|
|
18
|
+
size: string;
|
|
19
|
+
resize: string;
|
|
20
|
+
error: null;
|
|
21
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
"update:modelValue": (event: string) => void;
|
|
23
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
24
|
+
id: string;
|
|
25
|
+
class?: string | undefined;
|
|
26
|
+
name: string;
|
|
27
|
+
label?: string | undefined;
|
|
28
|
+
required?: boolean | undefined;
|
|
29
|
+
helperText?: string | undefined;
|
|
30
|
+
resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
|
|
31
|
+
size?: "sm" | "md" | undefined;
|
|
32
|
+
error?: string | null | undefined;
|
|
33
|
+
placeholder?: string | undefined;
|
|
34
|
+
modelValue?: string | undefined;
|
|
35
|
+
useField?: ParentValidation['useFieldParent'];
|
|
36
|
+
rules?: ParentValidation['rules'];
|
|
37
|
+
opts?: ParentValidation['opts'];
|
|
38
|
+
}>, {
|
|
39
|
+
size: string;
|
|
40
|
+
resize: string;
|
|
41
|
+
error: null;
|
|
42
|
+
}>>> & {
|
|
43
|
+
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
44
|
+
}, {
|
|
45
|
+
error: string | null;
|
|
46
|
+
size: 'sm' | 'md';
|
|
47
|
+
resize: 'both' | 'horizontal' | 'vertical' | 'none';
|
|
48
|
+
}>;
|
|
49
|
+
export default _default;
|
|
50
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
51
|
+
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
52
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
53
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
54
|
+
} : {
|
|
55
|
+
type: import('vue').PropType<T[K]>;
|
|
56
|
+
required: true;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
declare type __VLS_WithDefaults<P, D> = {
|
|
60
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
61
|
+
default: D[K];
|
|
62
|
+
} : P[K];
|
|
63
|
+
};
|
|
File without changes
|
|
@@ -1,76 +1,14 @@
|
|
|
1
1
|
import type { Radio } from '../types';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class?: Radio['class'];
|
|
13
|
-
}>>> & {
|
|
14
|
-
onChange?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
15
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
16
|
-
$attrs: {
|
|
17
|
-
[x: string]: unknown;
|
|
18
|
-
};
|
|
19
|
-
$refs: {
|
|
20
|
-
[x: string]: unknown;
|
|
21
|
-
};
|
|
22
|
-
$slots: Readonly<{
|
|
23
|
-
[name: string]: import("vue").Slot | undefined;
|
|
24
|
-
}>;
|
|
25
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
26
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
27
|
-
$emit: (event: "change", value: import("../types").RadioValue) => void;
|
|
28
|
-
$el: any;
|
|
29
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
30
|
-
id: Radio['id'];
|
|
31
|
-
name: Radio['name'];
|
|
32
|
-
value: Radio['value'];
|
|
33
|
-
label: Radio['label'];
|
|
34
|
-
checked?: Radio['checked'];
|
|
35
|
-
class?: Radio['class'];
|
|
36
|
-
}>>> & {
|
|
37
|
-
onChange?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
38
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
39
|
-
change: (value: import("../types").RadioValue) => void;
|
|
40
|
-
}, string, {}> & {
|
|
41
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
42
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
43
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
44
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
45
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
46
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
48
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
49
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
50
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
51
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
52
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
53
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
54
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
55
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
56
|
-
};
|
|
57
|
-
$forceUpdate: () => void;
|
|
58
|
-
$nextTick: typeof import("vue").nextTick;
|
|
59
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
60
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
61
|
-
id: Radio['id'];
|
|
62
|
-
name: Radio['name'];
|
|
63
|
-
value: Radio['value'];
|
|
64
|
-
label: Radio['label'];
|
|
65
|
-
checked?: Radio['checked'];
|
|
66
|
-
class?: Radio['class'];
|
|
67
|
-
}>>> & {
|
|
68
|
-
onChange?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
69
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
70
|
-
__isFragment?: undefined;
|
|
71
|
-
__isTeleport?: undefined;
|
|
72
|
-
__isSuspense?: undefined;
|
|
73
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
id: Radio['id'];
|
|
4
|
+
name: Radio['name'];
|
|
5
|
+
value: Radio['value'];
|
|
6
|
+
label: Radio['label'];
|
|
7
|
+
checked?: Radio['checked'];
|
|
8
|
+
class?: Radio['class'];
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
change: (value: import("../types").RadioValue) => void;
|
|
11
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
74
12
|
id: Radio['id'];
|
|
75
13
|
name: Radio['name'];
|
|
76
14
|
value: Radio['value'];
|
|
@@ -79,11 +17,7 @@ declare const _default: {
|
|
|
79
17
|
class?: Radio['class'];
|
|
80
18
|
}>>> & {
|
|
81
19
|
onChange?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
82
|
-
}, {}
|
|
83
|
-
change: (value: import("../types").RadioValue) => void;
|
|
84
|
-
}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
85
|
-
$slots: {};
|
|
86
|
-
});
|
|
20
|
+
}, {}>;
|
|
87
21
|
export default _default;
|
|
88
22
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
89
23
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,99 +1,19 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
stretchLabel?: boolean | undefined;
|
|
18
|
-
}>, {
|
|
19
|
-
textDirection: string;
|
|
20
|
-
stretchLabel: boolean;
|
|
21
|
-
}>>> & {
|
|
22
|
-
onChange?: ((value: string | boolean) => any) | undefined;
|
|
23
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "textDirection" | "stretchLabel">;
|
|
24
|
-
$attrs: {
|
|
25
|
-
[x: string]: unknown;
|
|
26
|
-
};
|
|
27
|
-
$refs: {
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
30
|
-
$slots: Readonly<{
|
|
31
|
-
[name: string]: import("vue").Slot | undefined;
|
|
32
|
-
}>;
|
|
33
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
34
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
35
|
-
$emit: (event: "change", value: string | boolean) => void;
|
|
36
|
-
$el: any;
|
|
37
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
38
|
-
id: string;
|
|
39
|
-
name: string;
|
|
40
|
-
value?: string | undefined;
|
|
41
|
-
label: string;
|
|
42
|
-
checked?: boolean | undefined;
|
|
43
|
-
class?: string | Record<string, boolean> | undefined;
|
|
44
|
-
textDirection?: "left" | "right" | undefined;
|
|
45
|
-
hideLabel?: boolean | undefined;
|
|
46
|
-
stretchLabel?: boolean | undefined;
|
|
47
|
-
}>, {
|
|
48
|
-
textDirection: string;
|
|
49
|
-
stretchLabel: boolean;
|
|
50
|
-
}>>> & {
|
|
51
|
-
onChange?: ((value: string | boolean) => any) | undefined;
|
|
52
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
53
|
-
change: (value: string | boolean) => void;
|
|
54
|
-
}, string, {
|
|
55
|
-
textDirection: 'left' | 'right';
|
|
56
|
-
stretchLabel: boolean;
|
|
57
|
-
}> & {
|
|
58
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
59
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
60
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
61
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
62
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
63
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
64
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
71
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
72
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
73
|
-
};
|
|
74
|
-
$forceUpdate: () => void;
|
|
75
|
-
$nextTick: typeof import("vue").nextTick;
|
|
76
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
77
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
78
|
-
id: string;
|
|
79
|
-
name: string;
|
|
80
|
-
value?: string | undefined;
|
|
81
|
-
label: string;
|
|
82
|
-
checked?: boolean | undefined;
|
|
83
|
-
class?: string | Record<string, boolean> | undefined;
|
|
84
|
-
textDirection?: "left" | "right" | undefined;
|
|
85
|
-
hideLabel?: boolean | undefined;
|
|
86
|
-
stretchLabel?: boolean | undefined;
|
|
87
|
-
}>, {
|
|
88
|
-
textDirection: string;
|
|
89
|
-
stretchLabel: boolean;
|
|
90
|
-
}>>> & {
|
|
91
|
-
onChange?: ((value: string | boolean) => any) | undefined;
|
|
92
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
93
|
-
__isFragment?: undefined;
|
|
94
|
-
__isTeleport?: undefined;
|
|
95
|
-
__isSuspense?: undefined;
|
|
96
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
value?: string | undefined;
|
|
5
|
+
label: string;
|
|
6
|
+
checked?: boolean | undefined;
|
|
7
|
+
class?: string | Record<string, boolean> | undefined;
|
|
8
|
+
textDirection?: "left" | "right" | undefined;
|
|
9
|
+
hideLabel?: boolean | undefined;
|
|
10
|
+
stretchLabel?: boolean | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
textDirection: string;
|
|
13
|
+
stretchLabel: boolean;
|
|
14
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
change: (value: string | boolean) => void;
|
|
16
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
97
17
|
id: string;
|
|
98
18
|
name: string;
|
|
99
19
|
value?: string | undefined;
|
|
@@ -108,14 +28,10 @@ declare const _default: {
|
|
|
108
28
|
stretchLabel: boolean;
|
|
109
29
|
}>>> & {
|
|
110
30
|
onChange?: ((value: string | boolean) => any) | undefined;
|
|
111
|
-
}, {
|
|
112
|
-
change: (value: string | boolean) => void;
|
|
113
|
-
}, string, {
|
|
31
|
+
}, {
|
|
114
32
|
textDirection: 'left' | 'right';
|
|
115
33
|
stretchLabel: boolean;
|
|
116
|
-
}
|
|
117
|
-
$slots: {};
|
|
118
|
-
});
|
|
34
|
+
}>;
|
|
119
35
|
export default _default;
|
|
120
36
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
121
37
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,85 +1,21 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
new (...args: any[]): {
|
|
3
|
-
$: import("vue").ComponentInternalInstance;
|
|
4
|
-
$data: {};
|
|
5
|
-
$props: Partial<{
|
|
6
|
-
title: string;
|
|
7
|
-
size: 'sm' | 'md' | 'lg';
|
|
8
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
-
size: 'sm' | 'md' | 'lg';
|
|
10
|
-
dark?: boolean | undefined;
|
|
11
|
-
title?: string | undefined;
|
|
12
|
-
}>, {
|
|
13
|
-
size: string;
|
|
14
|
-
title: string;
|
|
15
|
-
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "size">;
|
|
16
|
-
$attrs: {
|
|
17
|
-
[x: string]: unknown;
|
|
18
|
-
};
|
|
19
|
-
$refs: {
|
|
20
|
-
[x: string]: unknown;
|
|
21
|
-
};
|
|
22
|
-
$slots: Readonly<{
|
|
23
|
-
[name: string]: import("vue").Slot | undefined;
|
|
24
|
-
}>;
|
|
25
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
26
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
27
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
28
|
-
$el: any;
|
|
29
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
30
|
-
size: 'sm' | 'md' | 'lg';
|
|
31
|
-
dark?: boolean | undefined;
|
|
32
|
-
title?: string | undefined;
|
|
33
|
-
}>, {
|
|
34
|
-
size: string;
|
|
35
|
-
title: string;
|
|
36
|
-
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
37
|
-
title: string;
|
|
38
|
-
size: 'sm' | 'md' | 'lg';
|
|
39
|
-
}> & {
|
|
40
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
41
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
42
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
43
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
44
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
45
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
46
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
48
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
49
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
50
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
51
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
52
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
53
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
54
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
55
|
-
};
|
|
56
|
-
$forceUpdate: () => void;
|
|
57
|
-
$nextTick: typeof import("vue").nextTick;
|
|
58
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
59
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
60
|
-
size: 'sm' | 'md' | 'lg';
|
|
61
|
-
dark?: boolean | undefined;
|
|
62
|
-
title?: string | undefined;
|
|
63
|
-
}>, {
|
|
64
|
-
size: string;
|
|
65
|
-
title: string;
|
|
66
|
-
}>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
67
|
-
__isFragment?: undefined;
|
|
68
|
-
__isTeleport?: undefined;
|
|
69
|
-
__isSuspense?: undefined;
|
|
70
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
71
2
|
size: 'sm' | 'md' | 'lg';
|
|
72
3
|
dark?: boolean | undefined;
|
|
73
4
|
title?: string | undefined;
|
|
74
5
|
}>, {
|
|
75
6
|
size: string;
|
|
76
7
|
title: string;
|
|
77
|
-
}
|
|
8
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
size: 'sm' | 'md' | 'lg';
|
|
10
|
+
dark?: boolean | undefined;
|
|
11
|
+
title?: string | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
size: string;
|
|
14
|
+
title: string;
|
|
15
|
+
}>>>, {
|
|
78
16
|
title: string;
|
|
79
17
|
size: 'sm' | 'md' | 'lg';
|
|
80
|
-
}
|
|
81
|
-
$slots: {};
|
|
82
|
-
});
|
|
18
|
+
}>;
|
|
83
19
|
export default _default;
|
|
84
20
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
85
21
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -33,7 +33,7 @@ declare const _default: {
|
|
|
33
33
|
}>, {
|
|
34
34
|
label: string;
|
|
35
35
|
position: string;
|
|
36
|
-
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
36
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
37
37
|
label: string;
|
|
38
38
|
position: ("bottom" | "top") | ("left" | "right");
|
|
39
39
|
}> & {
|
|
@@ -74,7 +74,7 @@ declare const _default: {
|
|
|
74
74
|
}>, {
|
|
75
75
|
label: string;
|
|
76
76
|
position: string;
|
|
77
|
-
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
77
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
78
78
|
label: string;
|
|
79
79
|
position: ("bottom" | "top") | ("left" | "right");
|
|
80
80
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|