@solfacil/girassol 0.3.1 → 0.3.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/.vscode/settings.json +1 -0
- package/dist/components.d.ts +3 -5
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +3371 -1299
- package/dist/girassol.umd.js +14 -6
- package/dist/style.css +1 -1
- package/dist/theme/solfacil/index.d.ts +1 -0
- package/dist/theme/solfacil/utilities.d.ts +1 -0
- 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/checkbox/checkbox-group/CheckboxGroup.vue.d.ts +55 -16
- package/dist/types/components/forms/inputs/index.d.ts +4 -0
- package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +44 -0
- package/dist/types/components/forms/{input → inputs/input-core}/input.spec.d.ts +0 -0
- package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +58 -0
- package/dist/types/components/{dropdown/dropdown.spec.d.ts → forms/inputs/input-password/input-password.spec.d.ts} +0 -0
- package/dist/types/components/forms/{textarea/Textarea.vue.d.ts → inputs/input-text/InputText.vue.d.ts} +92 -52
- package/dist/types/components/forms/{textarea/textarea.spec.d.ts → inputs/input-text/input-text.spec.d.ts} +0 -0
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +70 -0
- package/dist/types/components/forms/{textfield/textfield-password.spec.d.ts → inputs/input-textarea/textarea.spec.d.ts} +0 -0
- package/dist/types/components/forms/inputs/types.d.ts +24 -0
- package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +11 -77
- package/dist/types/components/forms/radio/radio-group/RadioGroup.vue.d.ts +53 -14
- package/dist/types/components/forms/select/ListOption.vue.d.ts +4 -9
- package/dist/types/components/forms/select/Select.vue.d.ts +139 -184
- package/dist/types/components/forms/select/types.d.ts +23 -0
- package/dist/types/components/forms/switch/Switch.vue.d.ts +18 -102
- package/dist/types/components/informations/chip/Chip.vue.d.ts +5 -5
- package/dist/types/components/loader/CircleLoader.vue.d.ts +15 -68
- 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/composables/use-validate-field/index.d.ts +5 -0
- package/dist/types/composables/use-validate-field/types.d.ts +22 -0
- package/dist/types/index.d.ts +1183 -1730
- package/package.json +7 -5
- package/theme/solfacil/colors.ts +1 -1
- package/theme/solfacil/index.ts +2 -1
- package/theme/solfacil/utilities.ts +27 -0
- package/windi.config.ts +12 -11
- package/dist/README.md.d.ts +0 -2
- package/dist/cli/readme.md.d.ts +0 -2
- package/dist/theme/safelist.d.ts +0 -14
- package/dist/types/components/dropdown/Dropdown.vue.d.ts +0 -238
- package/dist/types/components/dropdown/index.d.ts +0 -2
- package/dist/types/components/forms/input/Input.vue.d.ts +0 -93
- package/dist/types/components/forms/input/index.d.ts +0 -2
- package/dist/types/components/forms/textarea/index.d.ts +0 -2
- package/dist/types/components/forms/textfield/Textfield.vue.d.ts +0 -129
- package/dist/types/components/forms/textfield/TextfieldPassword.vue.d.ts +0 -93
- package/dist/types/components/forms/textfield/index.d.ts +0 -3
- package/dist/types/components/forms/textfield/textfield.spec.d.ts +0 -1
|
@@ -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> = {
|
|
@@ -4,24 +4,34 @@ declare const _default: {
|
|
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
|
5
5
|
$data: {};
|
|
6
6
|
$props: Partial<{
|
|
7
|
+
error: string | null;
|
|
7
8
|
hideTitle: boolean;
|
|
8
9
|
direction: 'row' | 'column';
|
|
9
10
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
10
11
|
id: string;
|
|
11
12
|
title: string;
|
|
13
|
+
name: string;
|
|
12
14
|
hideTitle?: boolean | undefined;
|
|
13
|
-
|
|
14
|
-
error?: string | undefined;
|
|
15
|
+
helperText?: string | undefined;
|
|
16
|
+
error?: string | null | undefined;
|
|
15
17
|
radios: RadioType[];
|
|
16
|
-
modelValue
|
|
18
|
+
modelValue?: import("../types").RadioValue | undefined;
|
|
17
19
|
direction?: "row" | "column" | undefined;
|
|
20
|
+
useField?: typeof import("vee-validate").useField | undefined;
|
|
21
|
+
rules?: (string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
22
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
23
|
+
} | undefined) | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
24
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
25
|
+
} | undefined>;
|
|
26
|
+
opts?: Partial<import("vee-validate").FieldOptions<import("../types").RadioValue>> | undefined;
|
|
18
27
|
}>, {
|
|
28
|
+
error: null;
|
|
19
29
|
direction: string;
|
|
20
30
|
hideTitle: boolean;
|
|
21
31
|
}>>> & {
|
|
22
32
|
onChange?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
23
33
|
"onUpdate:modelValue"?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
24
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "hideTitle" | "direction">;
|
|
34
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "hideTitle" | "direction">;
|
|
25
35
|
$attrs: {
|
|
26
36
|
[x: string]: unknown;
|
|
27
37
|
};
|
|
@@ -33,18 +43,27 @@ declare const _default: {
|
|
|
33
43
|
}>;
|
|
34
44
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
35
45
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
36
|
-
$emit: ((event: "
|
|
46
|
+
$emit: ((event: "change", value: import("../types").RadioValue) => void) & ((event: "update:modelValue", value: import("../types").RadioValue) => void);
|
|
37
47
|
$el: any;
|
|
38
48
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
39
49
|
id: string;
|
|
40
50
|
title: string;
|
|
51
|
+
name: string;
|
|
41
52
|
hideTitle?: boolean | undefined;
|
|
42
|
-
|
|
43
|
-
error?: string | undefined;
|
|
53
|
+
helperText?: string | undefined;
|
|
54
|
+
error?: string | null | undefined;
|
|
44
55
|
radios: RadioType[];
|
|
45
|
-
modelValue
|
|
56
|
+
modelValue?: import("../types").RadioValue | undefined;
|
|
46
57
|
direction?: "row" | "column" | undefined;
|
|
58
|
+
useField?: typeof import("vee-validate").useField | undefined;
|
|
59
|
+
rules?: (string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
60
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
61
|
+
} | undefined) | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
62
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
63
|
+
} | undefined>;
|
|
64
|
+
opts?: Partial<import("vee-validate").FieldOptions<import("../types").RadioValue>> | undefined;
|
|
47
65
|
}>, {
|
|
66
|
+
error: null;
|
|
48
67
|
direction: string;
|
|
49
68
|
hideTitle: boolean;
|
|
50
69
|
}>>> & {
|
|
@@ -55,6 +74,7 @@ declare const _default: {
|
|
|
55
74
|
} & {
|
|
56
75
|
"update:modelValue": (value: import("../types").RadioValue) => void;
|
|
57
76
|
}, string, {
|
|
77
|
+
error: string | null;
|
|
58
78
|
hideTitle: boolean;
|
|
59
79
|
direction: 'row' | 'column';
|
|
60
80
|
}> & {
|
|
@@ -80,13 +100,22 @@ declare const _default: {
|
|
|
80
100
|
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
81
101
|
id: string;
|
|
82
102
|
title: string;
|
|
103
|
+
name: string;
|
|
83
104
|
hideTitle?: boolean | undefined;
|
|
84
|
-
|
|
85
|
-
error?: string | undefined;
|
|
105
|
+
helperText?: string | undefined;
|
|
106
|
+
error?: string | null | undefined;
|
|
86
107
|
radios: RadioType[];
|
|
87
|
-
modelValue
|
|
108
|
+
modelValue?: import("../types").RadioValue | undefined;
|
|
88
109
|
direction?: "row" | "column" | undefined;
|
|
110
|
+
useField?: typeof import("vee-validate").useField | undefined;
|
|
111
|
+
rules?: (string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
112
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
113
|
+
} | undefined) | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
114
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
115
|
+
} | undefined>;
|
|
116
|
+
opts?: Partial<import("vee-validate").FieldOptions<import("../types").RadioValue>> | undefined;
|
|
89
117
|
}>, {
|
|
118
|
+
error: null;
|
|
90
119
|
direction: string;
|
|
91
120
|
hideTitle: boolean;
|
|
92
121
|
}>>> & {
|
|
@@ -99,13 +128,22 @@ declare const _default: {
|
|
|
99
128
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
100
129
|
id: string;
|
|
101
130
|
title: string;
|
|
131
|
+
name: string;
|
|
102
132
|
hideTitle?: boolean | undefined;
|
|
103
|
-
|
|
104
|
-
error?: string | undefined;
|
|
133
|
+
helperText?: string | undefined;
|
|
134
|
+
error?: string | null | undefined;
|
|
105
135
|
radios: RadioType[];
|
|
106
|
-
modelValue
|
|
136
|
+
modelValue?: import("../types").RadioValue | undefined;
|
|
107
137
|
direction?: "row" | "column" | undefined;
|
|
138
|
+
useField?: typeof import("vee-validate").useField | undefined;
|
|
139
|
+
rules?: (string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
140
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
141
|
+
} | undefined) | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
142
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
143
|
+
} | undefined>;
|
|
144
|
+
opts?: Partial<import("vee-validate").FieldOptions<import("../types").RadioValue>> | undefined;
|
|
108
145
|
}>, {
|
|
146
|
+
error: null;
|
|
109
147
|
direction: string;
|
|
110
148
|
hideTitle: boolean;
|
|
111
149
|
}>>> & {
|
|
@@ -116,6 +154,7 @@ declare const _default: {
|
|
|
116
154
|
} & {
|
|
117
155
|
"update:modelValue": (value: import("../types").RadioValue) => void;
|
|
118
156
|
}, string, {
|
|
157
|
+
error: string | null;
|
|
119
158
|
hideTitle: boolean;
|
|
120
159
|
direction: 'row' | 'column';
|
|
121
160
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -4,6 +4,7 @@ declare const _default: {
|
|
|
4
4
|
$data: {};
|
|
5
5
|
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
id: string;
|
|
7
|
+
name: string;
|
|
7
8
|
options: {
|
|
8
9
|
name: string;
|
|
9
10
|
value: string;
|
|
@@ -37,6 +38,7 @@ declare const _default: {
|
|
|
37
38
|
$el: any;
|
|
38
39
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
39
40
|
id: string;
|
|
41
|
+
name: string;
|
|
40
42
|
options: {
|
|
41
43
|
name: string;
|
|
42
44
|
value: string;
|
|
@@ -80,6 +82,7 @@ declare const _default: {
|
|
|
80
82
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
81
83
|
} & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
82
84
|
id: string;
|
|
85
|
+
name: string;
|
|
83
86
|
options: {
|
|
84
87
|
name: string;
|
|
85
88
|
value: string;
|
|
@@ -102,6 +105,7 @@ declare const _default: {
|
|
|
102
105
|
__isSuspense?: undefined;
|
|
103
106
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
104
107
|
id: string;
|
|
108
|
+
name: string;
|
|
105
109
|
options: {
|
|
106
110
|
name: string;
|
|
107
111
|
value: string;
|
|
@@ -125,15 +129,6 @@ declare const _default: {
|
|
|
125
129
|
}) => void;
|
|
126
130
|
}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
127
131
|
$slots: {
|
|
128
|
-
'item-list': (_: {
|
|
129
|
-
text: string;
|
|
130
|
-
value: string;
|
|
131
|
-
option: {
|
|
132
|
-
name: string;
|
|
133
|
-
value: string;
|
|
134
|
-
};
|
|
135
|
-
isSelected: boolean;
|
|
136
|
-
}) => any;
|
|
137
132
|
'no-data': (_: {}) => any;
|
|
138
133
|
};
|
|
139
134
|
});
|