@vacano/ui 1.12.1 → 1.13.0

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.
Files changed (40) hide show
  1. package/README.md +6 -5
  2. package/dist/ToggleGroup-DCWH4ngK.cjs +1283 -0
  3. package/dist/ToggleGroup-DCWH4ngK.cjs.map +1 -0
  4. package/dist/ToggleGroup-DYePk1bM.js +3935 -0
  5. package/dist/ToggleGroup-DYePk1bM.js.map +1 -0
  6. package/dist/{X-BIgkmQPR.cjs → X-CI1qRJDP.cjs} +4 -4
  7. package/dist/X-CI1qRJDP.cjs.map +1 -0
  8. package/dist/{X-Dyq6IJZW.js → X-Cm-i8Bh7.js} +195 -219
  9. package/dist/X-Cm-i8Bh7.js.map +1 -0
  10. package/dist/form.cjs +2 -0
  11. package/dist/form.cjs.map +1 -0
  12. package/dist/form.d.ts +540 -0
  13. package/dist/form.js +428 -0
  14. package/dist/form.js.map +1 -0
  15. package/dist/icons.cjs +1 -1
  16. package/dist/icons.cjs.map +1 -1
  17. package/dist/icons.js +1253 -1230
  18. package/dist/icons.js.map +1 -1
  19. package/dist/index-Abn5L42P.js +42 -0
  20. package/dist/index-Abn5L42P.js.map +1 -0
  21. package/dist/index-GSZAZ6Cz.cjs +2 -0
  22. package/dist/index-GSZAZ6Cz.cjs.map +1 -0
  23. package/dist/index.cjs +235 -1393
  24. package/dist/index.cjs.map +1 -1
  25. package/dist/index.d.ts +126 -43
  26. package/dist/index.js +1324 -4875
  27. package/dist/index.js.map +1 -1
  28. package/dist/{media-CWK1OED-.js → keyboard-D00e_brg.js} +63 -66
  29. package/dist/keyboard-D00e_brg.js.map +1 -0
  30. package/dist/{media-BuwIclXE.cjs → keyboard-D8zOi0jU.cjs} +3 -3
  31. package/dist/keyboard-D8zOi0jU.cjs.map +1 -0
  32. package/dist/lib.cjs +1 -1
  33. package/dist/lib.d.ts +38 -0
  34. package/dist/lib.js +15 -13
  35. package/dist/lib.js.map +1 -1
  36. package/package.json +25 -3
  37. package/dist/X-BIgkmQPR.cjs.map +0 -1
  38. package/dist/X-Dyq6IJZW.js.map +0 -1
  39. package/dist/media-BuwIclXE.cjs.map +0 -1
  40. package/dist/media-CWK1OED-.js.map +0 -1
package/dist/form.d.ts ADDED
@@ -0,0 +1,540 @@
1
+ import { ChangeEventHandler } from 'react';
2
+ import { Control } from 'react-hook-form';
3
+ import { FieldPath } from 'react-hook-form';
4
+ import { FieldValues } from 'react-hook-form';
5
+ import { InputHTMLAttributes } from 'react';
6
+ import { JSX } from '@emotion/react/jsx-runtime';
7
+ import { ReactNode } from 'react';
8
+ import { Ref } from 'react';
9
+ import { TextareaHTMLAttributes } from 'react';
10
+
11
+ declare type AutocompleteClassNames = {
12
+ input?: string;
13
+ label?: string;
14
+ dropdown?: string;
15
+ item?: string;
16
+ };
17
+
18
+ declare type AutocompleteProps = VacanoComponentProps<HTMLInputElement, AutocompleteClassNames> & Omit<InputHTMLAttributes<HTMLInputElement>, 'className' | 'size' | 'onChange' | 'value'> & {
19
+ value?: AutocompleteValue;
20
+ onChange?: (value: AutocompleteValue) => void;
21
+ onSearch: (query: string) => Promise<AutocompleteSuggestion[]>;
22
+ debounceMs?: number;
23
+ minChars?: number;
24
+ fullWidth?: boolean;
25
+ label?: string;
26
+ size?: VacanoComponentSize;
27
+ variant?: AutocompleteVariant;
28
+ noResultsMessage?: string;
29
+ message?: string;
30
+ };
31
+
32
+ declare type AutocompleteSuggestion = {
33
+ id: string;
34
+ value: string;
35
+ image_url: string | null;
36
+ };
37
+
38
+ declare type AutocompleteValue = {
39
+ value: string;
40
+ image_url: string | null;
41
+ };
42
+
43
+ declare type AutocompleteVariant = 'normal' | 'error';
44
+
45
+ declare type CheckboxCardClassNames = {
46
+ checkbox?: string;
47
+ content?: string;
48
+ label?: string;
49
+ description?: string;
50
+ };
51
+
52
+ declare type CheckboxCardProps = VacanoComponentProps<HTMLInputElement, CheckboxCardClassNames> & Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'checked' | 'onChange' | 'className'> & {
53
+ checked: boolean;
54
+ onChange: ChangeEventHandler<HTMLInputElement>;
55
+ label: string;
56
+ description?: string;
57
+ fullWidth?: boolean;
58
+ variant?: CheckboxCardVariant;
59
+ };
60
+
61
+ declare type CheckboxCardVariant = 'normal' | 'error';
62
+
63
+ declare type CheckboxClassNames = {
64
+ input?: string;
65
+ box?: string;
66
+ icon?: string;
67
+ label?: string;
68
+ };
69
+
70
+ declare type CheckboxGroupClassNames = {
71
+ label?: string;
72
+ options?: string;
73
+ checkbox?: string;
74
+ };
75
+
76
+ declare type CheckboxGroupOption = {
77
+ label: string;
78
+ value: string;
79
+ };
80
+
81
+ declare type CheckboxGroupProps = VacanoComponentProps<HTMLDivElement, CheckboxGroupClassNames> & {
82
+ options: CheckboxGroupOption[];
83
+ value: string[];
84
+ onChange: (values: string[]) => void;
85
+ label?: string;
86
+ disabled?: boolean;
87
+ variant?: CheckboxVariant;
88
+ };
89
+
90
+ declare type CheckboxProps = VacanoComponentProps<HTMLInputElement, CheckboxClassNames> & Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'checked' | 'onChange' | 'className'> & {
91
+ checked: boolean;
92
+ onChange: ChangeEventHandler<HTMLInputElement>;
93
+ indeterminate?: boolean;
94
+ label?: ReactNode;
95
+ variant?: CheckboxVariant;
96
+ };
97
+
98
+ declare type CheckboxVariant = 'normal' | 'error';
99
+
100
+ declare type DatePickerClassNames = {
101
+ trigger?: string;
102
+ calendar?: string;
103
+ header?: string;
104
+ grid?: string;
105
+ cell?: string;
106
+ };
107
+
108
+ declare type DatePickerMode = 'date' | 'month' | 'year';
109
+
110
+ declare type DatePickerProps = VacanoComponentProps<HTMLDivElement, DatePickerClassNames> & {
111
+ /** Selected date value */
112
+ value?: Date | null;
113
+ /** Callback when date changes */
114
+ onChange?: (date: Date | null) => void;
115
+ /** Selection mode */
116
+ mode?: DatePickerMode;
117
+ /** Display format using Go-style date formatting (e.g., "02.01.2006", "January 2006") */
118
+ displayFormat?: string;
119
+ /** Placeholder text when no date selected */
120
+ placeholder?: string;
121
+ /** Locale for month/weekday names (e.g., "en-US", "ru", "de") */
122
+ locale?: string;
123
+ /** First day of week: 0 = Sunday, 1 = Monday */
124
+ weekStartsOn?: 0 | 1;
125
+ /** Minimum selectable date */
126
+ minDate?: Date;
127
+ /** Maximum selectable date */
128
+ maxDate?: Date;
129
+ /** Input size variant */
130
+ size?: VacanoComponentSize;
131
+ /** Input style variant */
132
+ variant?: DatePickerVariant;
133
+ /** Whether the picker is disabled */
134
+ disabled?: boolean;
135
+ /** Full width mode */
136
+ fullWidth?: boolean;
137
+ /** Label text */
138
+ label?: string;
139
+ /** Portal render node for dropdown (for overflow hidden containers) */
140
+ portalRenderNode?: HTMLElement | null;
141
+ /** Controlled open state */
142
+ open?: boolean;
143
+ /** Callback when dropdown opens */
144
+ onOpen?: () => void;
145
+ /** Callback when dropdown closes */
146
+ onClose?: () => void;
147
+ /** Message text below the picker */
148
+ message?: string;
149
+ };
150
+
151
+ declare type DatePickerVariant = 'normal' | 'error';
152
+
153
+ export declare const FormAutocomplete: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormAutocompleteProps<T>) => JSX.Element;
154
+
155
+ export declare type FormAutocompleteProps<T extends FieldValues> = Omit<AutocompleteProps, 'value' | 'onChange'> & {
156
+ name: FieldPath<T>;
157
+ control: Control<T>;
158
+ };
159
+
160
+ export declare const FormCheckbox: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormCheckboxProps<T>) => JSX.Element;
161
+
162
+ export declare const FormCheckboxCard: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormCheckboxCardProps<T>) => JSX.Element;
163
+
164
+ export declare type FormCheckboxCardProps<T extends FieldValues> = Omit<CheckboxCardProps, 'checked' | 'onChange'> & {
165
+ name: FieldPath<T>;
166
+ control: Control<T>;
167
+ };
168
+
169
+ export declare const FormCheckboxGroup: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormCheckboxGroupProps<T>) => JSX.Element;
170
+
171
+ export declare type FormCheckboxGroupProps<T extends FieldValues> = Omit<CheckboxGroupProps, 'value' | 'onChange'> & {
172
+ name: FieldPath<T>;
173
+ control: Control<T>;
174
+ };
175
+
176
+ export declare type FormCheckboxProps<T extends FieldValues> = Omit<CheckboxProps, 'checked' | 'onChange'> & {
177
+ name: FieldPath<T>;
178
+ control: Control<T>;
179
+ };
180
+
181
+ export declare const FormDatePicker: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormDatePickerProps<T>) => JSX.Element;
182
+
183
+ export declare type FormDatePickerProps<T extends FieldValues> = Omit<DatePickerProps, 'value' | 'onChange'> & {
184
+ name: FieldPath<T>;
185
+ control: Control<T>;
186
+ };
187
+
188
+ export declare const FormInput: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormInputProps<T>) => JSX.Element;
189
+
190
+ export declare type FormInputProps<T extends FieldValues> = InputProps & {
191
+ name: FieldPath<T>;
192
+ control: Control<T>;
193
+ };
194
+
195
+ export declare const FormMultiSelect: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormMultiSelectProps<T>) => JSX.Element;
196
+
197
+ export declare type FormMultiSelectProps<T extends FieldValues> = Omit<MultiSelectProps, 'value' | 'onChange'> & {
198
+ name: FieldPath<T>;
199
+ control: Control<T>;
200
+ };
201
+
202
+ export declare const FormOtpCode: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormOtpCodeProps<T>) => JSX.Element;
203
+
204
+ export declare type FormOtpCodeProps<T extends FieldValues> = Omit<OtpCodeProps, 'value' | 'onChange'> & {
205
+ name: FieldPath<T>;
206
+ control: Control<T>;
207
+ };
208
+
209
+ export declare const FormRadio: <T extends FieldValues = FieldValues>({ control, name, value, ...props }: FormRadioProps<T>) => JSX.Element;
210
+
211
+ export declare const FormRadioCard: <T extends FieldValues = FieldValues>({ control, name, value, ...props }: FormRadioCardProps<T>) => JSX.Element;
212
+
213
+ export declare type FormRadioCardProps<T extends FieldValues> = Omit<RadioCardProps, 'checked' | 'onChange'> & {
214
+ name: FieldPath<T>;
215
+ control: Control<T>;
216
+ };
217
+
218
+ export declare const FormRadioGroup: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormRadioGroupProps<T>) => JSX.Element;
219
+
220
+ export declare type FormRadioGroupProps<T extends FieldValues> = Omit<RadioGroupProps, 'value' | 'onChange'> & {
221
+ name: FieldPath<T>;
222
+ control: Control<T>;
223
+ };
224
+
225
+ export declare type FormRadioProps<T extends FieldValues> = Omit<RadioProps, 'checked' | 'onChange'> & {
226
+ name: FieldPath<T>;
227
+ control: Control<T>;
228
+ };
229
+
230
+ export declare const FormSelect: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormSelectProps<T>) => JSX.Element;
231
+
232
+ export declare type FormSelectProps<T extends FieldValues> = Omit<SelectProps, 'value' | 'onChange'> & {
233
+ name: FieldPath<T>;
234
+ control: Control<T>;
235
+ };
236
+
237
+ export declare const FormTags: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormTagsProps<T>) => JSX.Element;
238
+
239
+ export declare type FormTagsProps<T extends FieldValues> = Omit<TagsProps, 'value' | 'onChange'> & {
240
+ name: FieldPath<T>;
241
+ control: Control<T>;
242
+ };
243
+
244
+ export declare const FormTextarea: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormTextareaProps<T>) => JSX.Element;
245
+
246
+ export declare type FormTextareaProps<T extends FieldValues> = TextareaProps & {
247
+ name: FieldPath<T>;
248
+ control: Control<T>;
249
+ };
250
+
251
+ export declare const FormToggle: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormToggleProps<T>) => JSX.Element;
252
+
253
+ export declare const FormToggleCard: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormToggleCardProps<T>) => JSX.Element;
254
+
255
+ export declare type FormToggleCardProps<T extends FieldValues> = Omit<ToggleCardProps, 'checked' | 'onChange'> & {
256
+ name: FieldPath<T>;
257
+ control: Control<T>;
258
+ };
259
+
260
+ export declare const FormToggleGroup: <T extends FieldValues = FieldValues>({ control, name, ...props }: FormToggleGroupProps<T>) => JSX.Element;
261
+
262
+ export declare type FormToggleGroupProps<T extends FieldValues> = Omit<ToggleGroupProps, 'value' | 'onChange'> & {
263
+ name: FieldPath<T>;
264
+ control: Control<T>;
265
+ };
266
+
267
+ export declare type FormToggleProps<T extends FieldValues> = Omit<ToggleProps, 'checked' | 'onChange'> & {
268
+ name: FieldPath<T>;
269
+ control: Control<T>;
270
+ };
271
+
272
+ declare type InputClassNames = {
273
+ input?: string;
274
+ label?: string;
275
+ };
276
+
277
+ declare type InputProps = VacanoComponentProps<HTMLInputElement, InputClassNames> & Omit<InputHTMLAttributes<HTMLInputElement>, 'className' | 'size'> & {
278
+ fullWidth?: boolean;
279
+ label?: string;
280
+ size?: VacanoComponentSize;
281
+ variant?: InputVariant;
282
+ message?: string;
283
+ prefix?: ReactNode;
284
+ };
285
+
286
+ declare type InputVariant = 'normal' | 'error';
287
+
288
+ declare type MultiSelectClassNames = {
289
+ trigger?: string;
290
+ chips?: string;
291
+ chip?: string;
292
+ placeholder?: string;
293
+ modal?: string;
294
+ search?: string;
295
+ options?: string;
296
+ option?: string;
297
+ empty?: string;
298
+ };
299
+
300
+ declare type MultiSelectOption = {
301
+ value: string;
302
+ label: string;
303
+ disabled?: boolean;
304
+ };
305
+
306
+ declare type MultiSelectProps = VacanoComponentProps<HTMLDivElement, MultiSelectClassNames> & {
307
+ value: string[];
308
+ options: MultiSelectOption[];
309
+ onChange: (value: string[]) => void;
310
+ label?: string;
311
+ placeholder?: string;
312
+ variant?: MultiSelectVariant;
313
+ disabled?: boolean;
314
+ maxVisible?: number;
315
+ emptyMessage?: ReactNode;
316
+ searchPlaceholder?: string;
317
+ modalTitle?: string;
318
+ message?: string;
319
+ };
320
+
321
+ declare type MultiSelectVariant = 'normal' | 'error';
322
+
323
+ declare type OtpCodeClassNames = {
324
+ container?: string;
325
+ input?: string;
326
+ label?: string;
327
+ };
328
+
329
+ declare type OtpCodeProps = VacanoComponentProps<HTMLDivElement, OtpCodeClassNames> & {
330
+ autoFocus?: boolean;
331
+ disabled?: boolean;
332
+ label?: string;
333
+ length?: number;
334
+ onChange?: (value: string) => void;
335
+ size?: VacanoComponentSize;
336
+ value?: string;
337
+ variant?: OtpCodeVariant;
338
+ message?: string;
339
+ };
340
+
341
+ declare type OtpCodeVariant = 'normal' | 'error';
342
+
343
+ declare type RadioCardClassNames = {
344
+ radio?: string;
345
+ content?: string;
346
+ label?: string;
347
+ description?: string;
348
+ };
349
+
350
+ declare type RadioCardProps = VacanoComponentProps<HTMLInputElement, RadioCardClassNames> & Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'checked' | 'onChange' | 'className'> & {
351
+ checked: boolean;
352
+ onChange: ChangeEventHandler<HTMLInputElement>;
353
+ label: string;
354
+ description?: string;
355
+ fullWidth?: boolean;
356
+ variant?: RadioCardVariant;
357
+ };
358
+
359
+ declare type RadioCardVariant = 'normal' | 'error';
360
+
361
+ declare type RadioClassNames = {
362
+ input?: string;
363
+ box?: string;
364
+ dot?: string;
365
+ label?: string;
366
+ };
367
+
368
+ declare type RadioGroupClassNames = {
369
+ label?: string;
370
+ options?: string;
371
+ radio?: string;
372
+ };
373
+
374
+ declare type RadioGroupOption<T extends string = string> = {
375
+ label: string;
376
+ value: T;
377
+ };
378
+
379
+ declare type RadioGroupProps<T extends string = string> = VacanoComponentProps<HTMLDivElement, RadioGroupClassNames> & {
380
+ options: RadioGroupOption<T>[];
381
+ value: T | null;
382
+ onChange: (value: T) => void;
383
+ label?: string;
384
+ name?: string;
385
+ disabled?: boolean;
386
+ variant?: RadioVariant;
387
+ };
388
+
389
+ declare type RadioProps = VacanoComponentProps<HTMLInputElement, RadioClassNames> & Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'checked' | 'onChange' | 'className'> & {
390
+ checked: boolean;
391
+ onChange: ChangeEventHandler<HTMLInputElement>;
392
+ label?: ReactNode;
393
+ variant?: RadioVariant;
394
+ };
395
+
396
+ declare type RadioVariant = 'normal' | 'error';
397
+
398
+ declare type SelectClassNames = {
399
+ label?: string;
400
+ trigger?: string;
401
+ dropdown?: string;
402
+ option?: string;
403
+ };
404
+
405
+ declare type SelectOption = {
406
+ value: string;
407
+ label: string;
408
+ disabled?: boolean;
409
+ };
410
+
411
+ declare type SelectProps = VacanoComponentProps<HTMLDivElement, SelectClassNames> & {
412
+ value: string;
413
+ options: SelectOption[];
414
+ onChange?: (value: string) => void;
415
+ label?: string;
416
+ placeholder?: string;
417
+ variant?: SelectVariant;
418
+ size?: VacanoComponentSize;
419
+ disabled?: boolean;
420
+ fullWidth?: boolean;
421
+ message?: string;
422
+ portalRenderNode?: HTMLElement | null;
423
+ };
424
+
425
+ declare type SelectVariant = 'normal' | 'error';
426
+
427
+ declare type TagsClassNames = {
428
+ trigger?: string;
429
+ chip?: string;
430
+ input?: string;
431
+ dropdown?: string;
432
+ option?: string;
433
+ empty?: string;
434
+ };
435
+
436
+ declare type TagsCreateKey = 'Tab' | 'Enter';
437
+
438
+ declare type TagsOption = {
439
+ value: string;
440
+ label: string;
441
+ };
442
+
443
+ declare type TagsProps = VacanoComponentProps<HTMLDivElement, TagsClassNames> & {
444
+ value: string[];
445
+ onChange: (value: string[]) => void;
446
+ options?: TagsOption[];
447
+ label?: string;
448
+ placeholder?: string;
449
+ variant?: TagsVariant;
450
+ disabled?: boolean;
451
+ freeSolo?: boolean;
452
+ createKey?: TagsCreateKey;
453
+ emptyMessage?: ReactNode;
454
+ portalRenderNode?: HTMLElement | null;
455
+ message?: string;
456
+ };
457
+
458
+ declare type TagsVariant = 'normal' | 'error';
459
+
460
+ declare type TextareaClassNames = {
461
+ textarea?: string;
462
+ label?: string;
463
+ };
464
+
465
+ declare type TextareaProps = VacanoComponentProps<HTMLTextAreaElement, TextareaClassNames> & Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'className'> & {
466
+ fullWidth?: boolean;
467
+ label?: string;
468
+ variant?: TextareaVariant;
469
+ message?: string;
470
+ count?: number;
471
+ };
472
+
473
+ declare type TextareaVariant = 'normal' | 'error';
474
+
475
+ declare type ToggleCardClassNames = {
476
+ toggle?: string;
477
+ content?: string;
478
+ label?: string;
479
+ description?: string;
480
+ };
481
+
482
+ declare type ToggleCardProps = VacanoComponentProps<HTMLInputElement, ToggleCardClassNames> & Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'checked' | 'onChange' | 'className'> & {
483
+ checked: boolean;
484
+ onChange: ChangeEventHandler<HTMLInputElement>;
485
+ label: string;
486
+ description?: string;
487
+ fullWidth?: boolean;
488
+ variant?: ToggleCardVariant;
489
+ };
490
+
491
+ declare type ToggleCardVariant = 'normal' | 'error';
492
+
493
+ declare type ToggleClassNames = {
494
+ input?: string;
495
+ track?: string;
496
+ thumb?: string;
497
+ label?: string;
498
+ };
499
+
500
+ declare type ToggleGroupClassNames = {
501
+ label?: string;
502
+ options?: string;
503
+ toggle?: string;
504
+ };
505
+
506
+ declare type ToggleGroupOption = {
507
+ label: string;
508
+ value: string;
509
+ };
510
+
511
+ declare type ToggleGroupProps = VacanoComponentProps<HTMLDivElement, ToggleGroupClassNames> & {
512
+ options: ToggleGroupOption[];
513
+ value: string[];
514
+ onChange: (values: string[]) => void;
515
+ label?: string;
516
+ disabled?: boolean;
517
+ variant?: ToggleVariant;
518
+ };
519
+
520
+ declare type ToggleProps = VacanoComponentProps<HTMLInputElement, ToggleClassNames> & Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'checked' | 'onChange' | 'className'> & {
521
+ checked: boolean;
522
+ onChange: ChangeEventHandler<HTMLInputElement>;
523
+ label?: ReactNode;
524
+ variant?: ToggleVariant;
525
+ };
526
+
527
+ declare type ToggleVariant = 'normal' | 'error';
528
+
529
+ declare type VacanoComponentClassNames<T> = T;
530
+
531
+ declare type VacanoComponentProps<E extends HTMLElement | null, T extends Record<string, string> = Record<string, never>> = {
532
+ 'data-test-id'?: string;
533
+ className?: string;
534
+ classnames?: VacanoComponentClassNames<T>;
535
+ ref?: Ref<E>;
536
+ };
537
+
538
+ declare type VacanoComponentSize = 'compact' | 'default';
539
+
540
+ export { }