@solfacil/girassol 0.16.1 → 0.16.2
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/dist/girassol.es.js +2599 -2573
- package/dist/girassol.umd.js +5 -5
- package/dist/style.css +1 -1
- package/dist/types/components/list/List.vue.d.ts +12 -1
- package/dist/types/components/list/types.d.ts +1 -0
- package/dist/types/components/search/Search.vue.d.ts +34 -1
- package/dist/types/components/search/types.d.ts +3 -0
- package/dist/types/index.d.ts +94 -2
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ declare const _default: {
|
|
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
|
5
5
|
$data: {};
|
|
6
6
|
$props: Partial<{
|
|
7
|
+
loading: boolean;
|
|
7
8
|
ariaLabel: List['ariaLabel'];
|
|
8
9
|
fallbackValue: string;
|
|
9
10
|
dataIdentifier: import("./types").DataIdentifier;
|
|
@@ -18,7 +19,9 @@ declare const _default: {
|
|
|
18
19
|
dataIdentifier?: List['dataIdentifier'];
|
|
19
20
|
sortPositions?: import("./types").SortPositions | undefined;
|
|
20
21
|
fallbackValue?: List['fallbackValue'];
|
|
22
|
+
loading?: List['loading'];
|
|
21
23
|
}>, {
|
|
24
|
+
loading: boolean;
|
|
22
25
|
fallbackValue: string;
|
|
23
26
|
ariaLabel: string;
|
|
24
27
|
dataIdentifier: () => {
|
|
@@ -28,7 +31,7 @@ declare const _default: {
|
|
|
28
31
|
"onUpdate:selected"?: ((selected: Data | Data[]) => any) | undefined;
|
|
29
32
|
"onListitem:click"?: ((item: Data) => any) | undefined;
|
|
30
33
|
"onListitem:selected"?: ((item: Data) => any) | undefined;
|
|
31
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "ariaLabel" | "fallbackValue" | "dataIdentifier">;
|
|
34
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "ariaLabel" | "fallbackValue" | "dataIdentifier">;
|
|
32
35
|
$attrs: {
|
|
33
36
|
[x: string]: unknown;
|
|
34
37
|
};
|
|
@@ -53,7 +56,9 @@ declare const _default: {
|
|
|
53
56
|
dataIdentifier?: List['dataIdentifier'];
|
|
54
57
|
sortPositions?: import("./types").SortPositions | undefined;
|
|
55
58
|
fallbackValue?: List['fallbackValue'];
|
|
59
|
+
loading?: List['loading'];
|
|
56
60
|
}>, {
|
|
61
|
+
loading: boolean;
|
|
57
62
|
fallbackValue: string;
|
|
58
63
|
ariaLabel: string;
|
|
59
64
|
dataIdentifier: () => {
|
|
@@ -73,6 +78,7 @@ declare const _default: {
|
|
|
73
78
|
} & {
|
|
74
79
|
"update:selected": (selected: Data | Data[]) => void;
|
|
75
80
|
}, string, {
|
|
81
|
+
loading: boolean;
|
|
76
82
|
ariaLabel: List['ariaLabel'];
|
|
77
83
|
fallbackValue: string;
|
|
78
84
|
dataIdentifier: import("./types").DataIdentifier;
|
|
@@ -107,7 +113,9 @@ declare const _default: {
|
|
|
107
113
|
dataIdentifier?: List['dataIdentifier'];
|
|
108
114
|
sortPositions?: import("./types").SortPositions | undefined;
|
|
109
115
|
fallbackValue?: List['fallbackValue'];
|
|
116
|
+
loading?: List['loading'];
|
|
110
117
|
}>, {
|
|
118
|
+
loading: boolean;
|
|
111
119
|
fallbackValue: string;
|
|
112
120
|
ariaLabel: string;
|
|
113
121
|
dataIdentifier: () => {
|
|
@@ -135,7 +143,9 @@ declare const _default: {
|
|
|
135
143
|
dataIdentifier?: List['dataIdentifier'];
|
|
136
144
|
sortPositions?: import("./types").SortPositions | undefined;
|
|
137
145
|
fallbackValue?: List['fallbackValue'];
|
|
146
|
+
loading?: List['loading'];
|
|
138
147
|
}>, {
|
|
148
|
+
loading: boolean;
|
|
139
149
|
fallbackValue: string;
|
|
140
150
|
ariaLabel: string;
|
|
141
151
|
dataIdentifier: () => {
|
|
@@ -155,6 +165,7 @@ declare const _default: {
|
|
|
155
165
|
} & {
|
|
156
166
|
"update:selected": (selected: Data | Data[]) => void;
|
|
157
167
|
}, string, {
|
|
168
|
+
loading: boolean;
|
|
158
169
|
ariaLabel: List['ariaLabel'];
|
|
159
170
|
fallbackValue: string;
|
|
160
171
|
dataIdentifier: import("./types").DataIdentifier;
|
|
@@ -7,8 +7,11 @@ declare const _default: {
|
|
|
7
7
|
modelValue: string;
|
|
8
8
|
size: "small" | "medium";
|
|
9
9
|
placeholder: string;
|
|
10
|
+
loading: boolean;
|
|
10
11
|
variant: import("./types").Variants;
|
|
11
12
|
ariaLabel: Search['ariaLabel'];
|
|
13
|
+
buttonDisabled: boolean;
|
|
14
|
+
inputDisabled: boolean;
|
|
12
15
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
13
16
|
id: Search['id'];
|
|
14
17
|
size?: Search['size'];
|
|
@@ -16,8 +19,14 @@ declare const _default: {
|
|
|
16
19
|
modelValue?: Search['modelValue'];
|
|
17
20
|
placeholder?: Search['placeholder'];
|
|
18
21
|
ariaLabel: Search['ariaLabel'];
|
|
22
|
+
loading?: Search['loading'];
|
|
23
|
+
buttonDisabled?: Search['buttonDisabled'];
|
|
24
|
+
inputDisabled?: Search['inputDisabled'];
|
|
19
25
|
}>, {
|
|
20
26
|
modelValue: string;
|
|
27
|
+
loading: boolean;
|
|
28
|
+
inputDisabled: boolean;
|
|
29
|
+
buttonDisabled: boolean;
|
|
21
30
|
placeholder: string;
|
|
22
31
|
variant: string;
|
|
23
32
|
size: string;
|
|
@@ -25,7 +34,7 @@ declare const _default: {
|
|
|
25
34
|
}>>> & {
|
|
26
35
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
27
36
|
onSearch?: ((value: string) => any) | undefined;
|
|
28
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "size" | "placeholder" | "variant" | "ariaLabel">;
|
|
37
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "size" | "placeholder" | "loading" | "variant" | "ariaLabel" | "buttonDisabled" | "inputDisabled">;
|
|
29
38
|
$attrs: {
|
|
30
39
|
[x: string]: unknown;
|
|
31
40
|
};
|
|
@@ -46,8 +55,14 @@ declare const _default: {
|
|
|
46
55
|
modelValue?: Search['modelValue'];
|
|
47
56
|
placeholder?: Search['placeholder'];
|
|
48
57
|
ariaLabel: Search['ariaLabel'];
|
|
58
|
+
loading?: Search['loading'];
|
|
59
|
+
buttonDisabled?: Search['buttonDisabled'];
|
|
60
|
+
inputDisabled?: Search['inputDisabled'];
|
|
49
61
|
}>, {
|
|
50
62
|
modelValue: string;
|
|
63
|
+
loading: boolean;
|
|
64
|
+
inputDisabled: boolean;
|
|
65
|
+
buttonDisabled: boolean;
|
|
51
66
|
placeholder: string;
|
|
52
67
|
variant: string;
|
|
53
68
|
size: string;
|
|
@@ -63,8 +78,11 @@ declare const _default: {
|
|
|
63
78
|
modelValue: string;
|
|
64
79
|
size: "small" | "medium";
|
|
65
80
|
placeholder: string;
|
|
81
|
+
loading: boolean;
|
|
66
82
|
variant: import("./types").Variants;
|
|
67
83
|
ariaLabel: Search['ariaLabel'];
|
|
84
|
+
buttonDisabled: boolean;
|
|
85
|
+
inputDisabled: boolean;
|
|
68
86
|
}, {}, string> & {
|
|
69
87
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
70
88
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -92,8 +110,14 @@ declare const _default: {
|
|
|
92
110
|
modelValue?: Search['modelValue'];
|
|
93
111
|
placeholder?: Search['placeholder'];
|
|
94
112
|
ariaLabel: Search['ariaLabel'];
|
|
113
|
+
loading?: Search['loading'];
|
|
114
|
+
buttonDisabled?: Search['buttonDisabled'];
|
|
115
|
+
inputDisabled?: Search['inputDisabled'];
|
|
95
116
|
}>, {
|
|
96
117
|
modelValue: string;
|
|
118
|
+
loading: boolean;
|
|
119
|
+
inputDisabled: boolean;
|
|
120
|
+
buttonDisabled: boolean;
|
|
97
121
|
placeholder: string;
|
|
98
122
|
variant: string;
|
|
99
123
|
size: string;
|
|
@@ -112,8 +136,14 @@ declare const _default: {
|
|
|
112
136
|
modelValue?: Search['modelValue'];
|
|
113
137
|
placeholder?: Search['placeholder'];
|
|
114
138
|
ariaLabel: Search['ariaLabel'];
|
|
139
|
+
loading?: Search['loading'];
|
|
140
|
+
buttonDisabled?: Search['buttonDisabled'];
|
|
141
|
+
inputDisabled?: Search['inputDisabled'];
|
|
115
142
|
}>, {
|
|
116
143
|
modelValue: string;
|
|
144
|
+
loading: boolean;
|
|
145
|
+
inputDisabled: boolean;
|
|
146
|
+
buttonDisabled: boolean;
|
|
117
147
|
placeholder: string;
|
|
118
148
|
variant: string;
|
|
119
149
|
size: string;
|
|
@@ -129,8 +159,11 @@ declare const _default: {
|
|
|
129
159
|
modelValue: string;
|
|
130
160
|
size: "small" | "medium";
|
|
131
161
|
placeholder: string;
|
|
162
|
+
loading: boolean;
|
|
132
163
|
variant: import("./types").Variants;
|
|
133
164
|
ariaLabel: Search['ariaLabel'];
|
|
165
|
+
buttonDisabled: boolean;
|
|
166
|
+
inputDisabled: boolean;
|
|
134
167
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
135
168
|
export default _default;
|
|
136
169
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3575,6 +3575,7 @@ export declare const components: {
|
|
|
3575
3575
|
$: import("vue").ComponentInternalInstance;
|
|
3576
3576
|
$data: {};
|
|
3577
3577
|
$props: Partial<{
|
|
3578
|
+
loading: boolean;
|
|
3578
3579
|
ariaLabel: string;
|
|
3579
3580
|
fallbackValue: string;
|
|
3580
3581
|
dataIdentifier: import("./components/list/types").DataIdentifier;
|
|
@@ -3587,6 +3588,11 @@ export declare const components: {
|
|
|
3587
3588
|
type: import("vue").PropType<import("./components/list/types").Data[]>;
|
|
3588
3589
|
required: true;
|
|
3589
3590
|
};
|
|
3591
|
+
loading: {
|
|
3592
|
+
type: import("vue").PropType<boolean>;
|
|
3593
|
+
} & {
|
|
3594
|
+
default: boolean;
|
|
3595
|
+
};
|
|
3590
3596
|
selected: {
|
|
3591
3597
|
type: import("vue").PropType<import("./components/list/types").Selected>;
|
|
3592
3598
|
};
|
|
@@ -3624,7 +3630,7 @@ export declare const components: {
|
|
|
3624
3630
|
"onUpdate:selected"?: ((selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => any) | undefined;
|
|
3625
3631
|
"onListitem:click"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3626
3632
|
"onListitem:selected"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3627
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "ariaLabel" | "fallbackValue" | "dataIdentifier">;
|
|
3633
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "ariaLabel" | "fallbackValue" | "dataIdentifier">;
|
|
3628
3634
|
$attrs: {
|
|
3629
3635
|
[x: string]: unknown;
|
|
3630
3636
|
};
|
|
@@ -3647,6 +3653,11 @@ export declare const components: {
|
|
|
3647
3653
|
type: import("vue").PropType<import("./components/list/types").Data[]>;
|
|
3648
3654
|
required: true;
|
|
3649
3655
|
};
|
|
3656
|
+
loading: {
|
|
3657
|
+
type: import("vue").PropType<boolean>;
|
|
3658
|
+
} & {
|
|
3659
|
+
default: boolean;
|
|
3660
|
+
};
|
|
3650
3661
|
selected: {
|
|
3651
3662
|
type: import("vue").PropType<import("./components/list/types").Selected>;
|
|
3652
3663
|
};
|
|
@@ -3694,6 +3705,7 @@ export declare const components: {
|
|
|
3694
3705
|
} & {
|
|
3695
3706
|
"update:selected": (selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => void;
|
|
3696
3707
|
}, string, {
|
|
3708
|
+
loading: boolean;
|
|
3697
3709
|
ariaLabel: string;
|
|
3698
3710
|
fallbackValue: string;
|
|
3699
3711
|
dataIdentifier: import("./components/list/types").DataIdentifier;
|
|
@@ -3726,6 +3738,11 @@ export declare const components: {
|
|
|
3726
3738
|
type: import("vue").PropType<import("./components/list/types").Data[]>;
|
|
3727
3739
|
required: true;
|
|
3728
3740
|
};
|
|
3741
|
+
loading: {
|
|
3742
|
+
type: import("vue").PropType<boolean>;
|
|
3743
|
+
} & {
|
|
3744
|
+
default: boolean;
|
|
3745
|
+
};
|
|
3729
3746
|
selected: {
|
|
3730
3747
|
type: import("vue").PropType<import("./components/list/types").Selected>;
|
|
3731
3748
|
};
|
|
@@ -3779,6 +3796,11 @@ export declare const components: {
|
|
|
3779
3796
|
type: import("vue").PropType<import("./components/list/types").Data[]>;
|
|
3780
3797
|
required: true;
|
|
3781
3798
|
};
|
|
3799
|
+
loading: {
|
|
3800
|
+
type: import("vue").PropType<boolean>;
|
|
3801
|
+
} & {
|
|
3802
|
+
default: boolean;
|
|
3803
|
+
};
|
|
3782
3804
|
selected: {
|
|
3783
3805
|
type: import("vue").PropType<import("./components/list/types").Selected>;
|
|
3784
3806
|
};
|
|
@@ -3826,6 +3848,7 @@ export declare const components: {
|
|
|
3826
3848
|
} & {
|
|
3827
3849
|
"update:selected": (selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => void;
|
|
3828
3850
|
}, string, {
|
|
3851
|
+
loading: boolean;
|
|
3829
3852
|
ariaLabel: string;
|
|
3830
3853
|
fallbackValue: string;
|
|
3831
3854
|
dataIdentifier: import("./components/list/types").DataIdentifier;
|
|
@@ -5153,8 +5176,11 @@ export declare const components: {
|
|
|
5153
5176
|
modelValue: string;
|
|
5154
5177
|
size: "small" | "medium";
|
|
5155
5178
|
placeholder: string;
|
|
5179
|
+
loading: boolean;
|
|
5156
5180
|
variant: import("./components/search/types").Variants;
|
|
5157
5181
|
ariaLabel: string;
|
|
5182
|
+
buttonDisabled: boolean;
|
|
5183
|
+
inputDisabled: boolean;
|
|
5158
5184
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
5159
5185
|
id: {
|
|
5160
5186
|
type: import("vue").PropType<string>;
|
|
@@ -5175,6 +5201,11 @@ export declare const components: {
|
|
|
5175
5201
|
} & {
|
|
5176
5202
|
default: string;
|
|
5177
5203
|
};
|
|
5204
|
+
loading: {
|
|
5205
|
+
type: import("vue").PropType<boolean>;
|
|
5206
|
+
} & {
|
|
5207
|
+
default: boolean;
|
|
5208
|
+
};
|
|
5178
5209
|
variant: {
|
|
5179
5210
|
type: import("vue").PropType<import("./components/search/types").Variants>;
|
|
5180
5211
|
} & {
|
|
@@ -5186,10 +5217,20 @@ export declare const components: {
|
|
|
5186
5217
|
} & {
|
|
5187
5218
|
default: string;
|
|
5188
5219
|
};
|
|
5220
|
+
buttonDisabled: {
|
|
5221
|
+
type: import("vue").PropType<boolean>;
|
|
5222
|
+
} & {
|
|
5223
|
+
default: boolean;
|
|
5224
|
+
};
|
|
5225
|
+
inputDisabled: {
|
|
5226
|
+
type: import("vue").PropType<boolean>;
|
|
5227
|
+
} & {
|
|
5228
|
+
default: boolean;
|
|
5229
|
+
};
|
|
5189
5230
|
}>> & {
|
|
5190
5231
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5191
5232
|
onSearch?: ((value: string) => any) | undefined;
|
|
5192
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "size" | "placeholder" | "variant" | "ariaLabel">;
|
|
5233
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "size" | "placeholder" | "loading" | "variant" | "ariaLabel" | "buttonDisabled" | "inputDisabled">;
|
|
5193
5234
|
$attrs: {
|
|
5194
5235
|
[x: string]: unknown;
|
|
5195
5236
|
};
|
|
@@ -5223,6 +5264,11 @@ export declare const components: {
|
|
|
5223
5264
|
} & {
|
|
5224
5265
|
default: string;
|
|
5225
5266
|
};
|
|
5267
|
+
loading: {
|
|
5268
|
+
type: import("vue").PropType<boolean>;
|
|
5269
|
+
} & {
|
|
5270
|
+
default: boolean;
|
|
5271
|
+
};
|
|
5226
5272
|
variant: {
|
|
5227
5273
|
type: import("vue").PropType<import("./components/search/types").Variants>;
|
|
5228
5274
|
} & {
|
|
@@ -5234,6 +5280,16 @@ export declare const components: {
|
|
|
5234
5280
|
} & {
|
|
5235
5281
|
default: string;
|
|
5236
5282
|
};
|
|
5283
|
+
buttonDisabled: {
|
|
5284
|
+
type: import("vue").PropType<boolean>;
|
|
5285
|
+
} & {
|
|
5286
|
+
default: boolean;
|
|
5287
|
+
};
|
|
5288
|
+
inputDisabled: {
|
|
5289
|
+
type: import("vue").PropType<boolean>;
|
|
5290
|
+
} & {
|
|
5291
|
+
default: boolean;
|
|
5292
|
+
};
|
|
5237
5293
|
}>> & {
|
|
5238
5294
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5239
5295
|
onSearch?: ((value: string) => any) | undefined;
|
|
@@ -5245,8 +5301,11 @@ export declare const components: {
|
|
|
5245
5301
|
modelValue: string;
|
|
5246
5302
|
size: "small" | "medium";
|
|
5247
5303
|
placeholder: string;
|
|
5304
|
+
loading: boolean;
|
|
5248
5305
|
variant: import("./components/search/types").Variants;
|
|
5249
5306
|
ariaLabel: string;
|
|
5307
|
+
buttonDisabled: boolean;
|
|
5308
|
+
inputDisabled: boolean;
|
|
5250
5309
|
}, {}, string> & {
|
|
5251
5310
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
5252
5311
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -5287,6 +5346,11 @@ export declare const components: {
|
|
|
5287
5346
|
} & {
|
|
5288
5347
|
default: string;
|
|
5289
5348
|
};
|
|
5349
|
+
loading: {
|
|
5350
|
+
type: import("vue").PropType<boolean>;
|
|
5351
|
+
} & {
|
|
5352
|
+
default: boolean;
|
|
5353
|
+
};
|
|
5290
5354
|
variant: {
|
|
5291
5355
|
type: import("vue").PropType<import("./components/search/types").Variants>;
|
|
5292
5356
|
} & {
|
|
@@ -5298,6 +5362,16 @@ export declare const components: {
|
|
|
5298
5362
|
} & {
|
|
5299
5363
|
default: string;
|
|
5300
5364
|
};
|
|
5365
|
+
buttonDisabled: {
|
|
5366
|
+
type: import("vue").PropType<boolean>;
|
|
5367
|
+
} & {
|
|
5368
|
+
default: boolean;
|
|
5369
|
+
};
|
|
5370
|
+
inputDisabled: {
|
|
5371
|
+
type: import("vue").PropType<boolean>;
|
|
5372
|
+
} & {
|
|
5373
|
+
default: boolean;
|
|
5374
|
+
};
|
|
5301
5375
|
}>> & {
|
|
5302
5376
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5303
5377
|
onSearch?: ((value: string) => any) | undefined;
|
|
@@ -5325,6 +5399,11 @@ export declare const components: {
|
|
|
5325
5399
|
} & {
|
|
5326
5400
|
default: string;
|
|
5327
5401
|
};
|
|
5402
|
+
loading: {
|
|
5403
|
+
type: import("vue").PropType<boolean>;
|
|
5404
|
+
} & {
|
|
5405
|
+
default: boolean;
|
|
5406
|
+
};
|
|
5328
5407
|
variant: {
|
|
5329
5408
|
type: import("vue").PropType<import("./components/search/types").Variants>;
|
|
5330
5409
|
} & {
|
|
@@ -5336,6 +5415,16 @@ export declare const components: {
|
|
|
5336
5415
|
} & {
|
|
5337
5416
|
default: string;
|
|
5338
5417
|
};
|
|
5418
|
+
buttonDisabled: {
|
|
5419
|
+
type: import("vue").PropType<boolean>;
|
|
5420
|
+
} & {
|
|
5421
|
+
default: boolean;
|
|
5422
|
+
};
|
|
5423
|
+
inputDisabled: {
|
|
5424
|
+
type: import("vue").PropType<boolean>;
|
|
5425
|
+
} & {
|
|
5426
|
+
default: boolean;
|
|
5427
|
+
};
|
|
5339
5428
|
}>> & {
|
|
5340
5429
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5341
5430
|
onSearch?: ((value: string) => any) | undefined;
|
|
@@ -5347,8 +5436,11 @@ export declare const components: {
|
|
|
5347
5436
|
modelValue: string;
|
|
5348
5437
|
size: "small" | "medium";
|
|
5349
5438
|
placeholder: string;
|
|
5439
|
+
loading: boolean;
|
|
5350
5440
|
variant: import("./components/search/types").Variants;
|
|
5351
5441
|
ariaLabel: string;
|
|
5442
|
+
buttonDisabled: boolean;
|
|
5443
|
+
inputDisabled: boolean;
|
|
5352
5444
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
5353
5445
|
SolDatePicker: {
|
|
5354
5446
|
new (...args: any[]): {
|