@solfacil/girassol 0.3.3 → 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/dist/girassol.es.js +1880 -1799
- package/dist/girassol.umd.js +6 -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/forms/checkbox/checkbox-group/CheckboxGroup.vue.d.ts +55 -16
- package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +6 -6
- package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +17 -16
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +15 -8
- 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/informations/chip/Chip.vue.d.ts +5 -5
- package/dist/types/composables/use-validate-field/index.d.ts +2 -2
- package/dist/types/composables/use-validate-field/types.d.ts +18 -5
- package/dist/types/index.d.ts +542 -370
- package/package.json +4 -4
- package/theme/solfacil/index.ts +2 -1
- package/theme/solfacil/utilities.ts +27 -0
- package/windi.config.ts +1 -0
- package/dist/types/components/dropdown/Dropdown.vue.d.ts +0 -238
- package/dist/types/components/dropdown/dropdown.spec.d.ts +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -290,14 +290,6 @@ export declare const components: {
|
|
|
290
290
|
class: {
|
|
291
291
|
type: import("vue").PropType<string>;
|
|
292
292
|
};
|
|
293
|
-
modelValue: {
|
|
294
|
-
type: import("vue").PropType<string>;
|
|
295
|
-
};
|
|
296
|
-
error: {
|
|
297
|
-
type: import("vue").PropType<string | null>;
|
|
298
|
-
} & {
|
|
299
|
-
default: null;
|
|
300
|
-
};
|
|
301
293
|
size: {
|
|
302
294
|
type: import("vue").PropType<"sm" | "md">;
|
|
303
295
|
} & {
|
|
@@ -307,8 +299,10 @@ export declare const components: {
|
|
|
307
299
|
type: import("vue").PropType<string>;
|
|
308
300
|
required: true;
|
|
309
301
|
};
|
|
310
|
-
|
|
311
|
-
type: import("vue").PropType<string>;
|
|
302
|
+
error: {
|
|
303
|
+
type: import("vue").PropType<string | null>;
|
|
304
|
+
} & {
|
|
305
|
+
default: null;
|
|
312
306
|
};
|
|
313
307
|
rules: {
|
|
314
308
|
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
@@ -317,6 +311,9 @@ export declare const components: {
|
|
|
317
311
|
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
318
312
|
} | undefined>>;
|
|
319
313
|
};
|
|
314
|
+
modelValue: {
|
|
315
|
+
type: import("vue").PropType<string>;
|
|
316
|
+
};
|
|
320
317
|
helperText: {
|
|
321
318
|
type: import("vue").PropType<string>;
|
|
322
319
|
};
|
|
@@ -326,6 +323,9 @@ export declare const components: {
|
|
|
326
323
|
opts: {
|
|
327
324
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
328
325
|
};
|
|
326
|
+
placeholder: {
|
|
327
|
+
type: import("vue").PropType<string>;
|
|
328
|
+
};
|
|
329
329
|
resize: {
|
|
330
330
|
type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
331
331
|
} & {
|
|
@@ -347,14 +347,6 @@ export declare const components: {
|
|
|
347
347
|
class: {
|
|
348
348
|
type: import("vue").PropType<string>;
|
|
349
349
|
};
|
|
350
|
-
modelValue: {
|
|
351
|
-
type: import("vue").PropType<string>;
|
|
352
|
-
};
|
|
353
|
-
error: {
|
|
354
|
-
type: import("vue").PropType<string | null>;
|
|
355
|
-
} & {
|
|
356
|
-
default: null;
|
|
357
|
-
};
|
|
358
350
|
size: {
|
|
359
351
|
type: import("vue").PropType<"sm" | "md">;
|
|
360
352
|
} & {
|
|
@@ -364,8 +356,10 @@ export declare const components: {
|
|
|
364
356
|
type: import("vue").PropType<string>;
|
|
365
357
|
required: true;
|
|
366
358
|
};
|
|
367
|
-
|
|
368
|
-
type: import("vue").PropType<string>;
|
|
359
|
+
error: {
|
|
360
|
+
type: import("vue").PropType<string | null>;
|
|
361
|
+
} & {
|
|
362
|
+
default: null;
|
|
369
363
|
};
|
|
370
364
|
rules: {
|
|
371
365
|
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
@@ -374,6 +368,9 @@ export declare const components: {
|
|
|
374
368
|
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
375
369
|
} | undefined>>;
|
|
376
370
|
};
|
|
371
|
+
modelValue: {
|
|
372
|
+
type: import("vue").PropType<string>;
|
|
373
|
+
};
|
|
377
374
|
helperText: {
|
|
378
375
|
type: import("vue").PropType<string>;
|
|
379
376
|
};
|
|
@@ -383,6 +380,9 @@ export declare const components: {
|
|
|
383
380
|
opts: {
|
|
384
381
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
385
382
|
};
|
|
383
|
+
placeholder: {
|
|
384
|
+
type: import("vue").PropType<string>;
|
|
385
|
+
};
|
|
386
386
|
resize: {
|
|
387
387
|
type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
388
388
|
} & {
|
|
@@ -391,8 +391,8 @@ export declare const components: {
|
|
|
391
391
|
}>> & {
|
|
392
392
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
393
393
|
}, {
|
|
394
|
-
error: string | null;
|
|
395
394
|
size: "sm" | "md";
|
|
395
|
+
error: string | null;
|
|
396
396
|
resize: "none" | "both" | "horizontal" | "vertical";
|
|
397
397
|
}>;
|
|
398
398
|
SolInputText: {
|
|
@@ -400,8 +400,8 @@ export declare const components: {
|
|
|
400
400
|
$: import("vue").ComponentInternalInstance;
|
|
401
401
|
$data: {};
|
|
402
402
|
$props: Partial<{
|
|
403
|
-
error: string | null;
|
|
404
403
|
size: "sm" | "md";
|
|
404
|
+
error: string | null;
|
|
405
405
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
406
406
|
label: {
|
|
407
407
|
type: import("vue").PropType<string>;
|
|
@@ -422,14 +422,6 @@ export declare const components: {
|
|
|
422
422
|
class: {
|
|
423
423
|
type: import("vue").PropType<string>;
|
|
424
424
|
};
|
|
425
|
-
modelValue: {
|
|
426
|
-
type: import("vue").PropType<string>;
|
|
427
|
-
};
|
|
428
|
-
error: {
|
|
429
|
-
type: import("vue").PropType<string | null>;
|
|
430
|
-
} & {
|
|
431
|
-
default: null;
|
|
432
|
-
};
|
|
433
425
|
size: {
|
|
434
426
|
type: import("vue").PropType<"sm" | "md">;
|
|
435
427
|
} & {
|
|
@@ -439,8 +431,10 @@ export declare const components: {
|
|
|
439
431
|
type: import("vue").PropType<string>;
|
|
440
432
|
required: true;
|
|
441
433
|
};
|
|
442
|
-
|
|
443
|
-
type: import("vue").PropType<string>;
|
|
434
|
+
error: {
|
|
435
|
+
type: import("vue").PropType<string | null>;
|
|
436
|
+
} & {
|
|
437
|
+
default: null;
|
|
444
438
|
};
|
|
445
439
|
rules: {
|
|
446
440
|
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
@@ -449,9 +443,18 @@ export declare const components: {
|
|
|
449
443
|
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
450
444
|
} | undefined>>;
|
|
451
445
|
};
|
|
446
|
+
modelValue: {
|
|
447
|
+
type: import("vue").PropType<string>;
|
|
448
|
+
};
|
|
452
449
|
helperText: {
|
|
453
450
|
type: import("vue").PropType<string>;
|
|
454
451
|
};
|
|
452
|
+
useField: {
|
|
453
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
454
|
+
};
|
|
455
|
+
opts: {
|
|
456
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
457
|
+
};
|
|
455
458
|
successText: {
|
|
456
459
|
type: import("vue").PropType<string>;
|
|
457
460
|
};
|
|
@@ -464,15 +467,12 @@ export declare const components: {
|
|
|
464
467
|
isLoading: {
|
|
465
468
|
type: import("vue").PropType<boolean>;
|
|
466
469
|
};
|
|
467
|
-
|
|
468
|
-
type: import("vue").PropType<
|
|
469
|
-
};
|
|
470
|
-
opts: {
|
|
471
|
-
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
470
|
+
placeholder: {
|
|
471
|
+
type: import("vue").PropType<string>;
|
|
472
472
|
};
|
|
473
473
|
}>> & {
|
|
474
474
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
475
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
475
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "error">;
|
|
476
476
|
$attrs: {
|
|
477
477
|
[x: string]: unknown;
|
|
478
478
|
};
|
|
@@ -506,14 +506,6 @@ export declare const components: {
|
|
|
506
506
|
class: {
|
|
507
507
|
type: import("vue").PropType<string>;
|
|
508
508
|
};
|
|
509
|
-
modelValue: {
|
|
510
|
-
type: import("vue").PropType<string>;
|
|
511
|
-
};
|
|
512
|
-
error: {
|
|
513
|
-
type: import("vue").PropType<string | null>;
|
|
514
|
-
} & {
|
|
515
|
-
default: null;
|
|
516
|
-
};
|
|
517
509
|
size: {
|
|
518
510
|
type: import("vue").PropType<"sm" | "md">;
|
|
519
511
|
} & {
|
|
@@ -523,8 +515,10 @@ export declare const components: {
|
|
|
523
515
|
type: import("vue").PropType<string>;
|
|
524
516
|
required: true;
|
|
525
517
|
};
|
|
526
|
-
|
|
527
|
-
type: import("vue").PropType<string>;
|
|
518
|
+
error: {
|
|
519
|
+
type: import("vue").PropType<string | null>;
|
|
520
|
+
} & {
|
|
521
|
+
default: null;
|
|
528
522
|
};
|
|
529
523
|
rules: {
|
|
530
524
|
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
@@ -533,9 +527,18 @@ export declare const components: {
|
|
|
533
527
|
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
534
528
|
} | undefined>>;
|
|
535
529
|
};
|
|
530
|
+
modelValue: {
|
|
531
|
+
type: import("vue").PropType<string>;
|
|
532
|
+
};
|
|
536
533
|
helperText: {
|
|
537
534
|
type: import("vue").PropType<string>;
|
|
538
535
|
};
|
|
536
|
+
useField: {
|
|
537
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
538
|
+
};
|
|
539
|
+
opts: {
|
|
540
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
541
|
+
};
|
|
539
542
|
successText: {
|
|
540
543
|
type: import("vue").PropType<string>;
|
|
541
544
|
};
|
|
@@ -548,19 +551,16 @@ export declare const components: {
|
|
|
548
551
|
isLoading: {
|
|
549
552
|
type: import("vue").PropType<boolean>;
|
|
550
553
|
};
|
|
551
|
-
|
|
552
|
-
type: import("vue").PropType<
|
|
553
|
-
};
|
|
554
|
-
opts: {
|
|
555
|
-
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
554
|
+
placeholder: {
|
|
555
|
+
type: import("vue").PropType<string>;
|
|
556
556
|
};
|
|
557
557
|
}>> & {
|
|
558
558
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
559
559
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
560
560
|
"update:modelValue": (event: string) => void;
|
|
561
561
|
}, string, {
|
|
562
|
-
error: string | null;
|
|
563
562
|
size: "sm" | "md";
|
|
563
|
+
error: string | null;
|
|
564
564
|
}> & {
|
|
565
565
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
566
566
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -601,14 +601,6 @@ export declare const components: {
|
|
|
601
601
|
class: {
|
|
602
602
|
type: import("vue").PropType<string>;
|
|
603
603
|
};
|
|
604
|
-
modelValue: {
|
|
605
|
-
type: import("vue").PropType<string>;
|
|
606
|
-
};
|
|
607
|
-
error: {
|
|
608
|
-
type: import("vue").PropType<string | null>;
|
|
609
|
-
} & {
|
|
610
|
-
default: null;
|
|
611
|
-
};
|
|
612
604
|
size: {
|
|
613
605
|
type: import("vue").PropType<"sm" | "md">;
|
|
614
606
|
} & {
|
|
@@ -618,8 +610,10 @@ export declare const components: {
|
|
|
618
610
|
type: import("vue").PropType<string>;
|
|
619
611
|
required: true;
|
|
620
612
|
};
|
|
621
|
-
|
|
622
|
-
type: import("vue").PropType<string>;
|
|
613
|
+
error: {
|
|
614
|
+
type: import("vue").PropType<string | null>;
|
|
615
|
+
} & {
|
|
616
|
+
default: null;
|
|
623
617
|
};
|
|
624
618
|
rules: {
|
|
625
619
|
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
@@ -628,9 +622,18 @@ export declare const components: {
|
|
|
628
622
|
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
629
623
|
} | undefined>>;
|
|
630
624
|
};
|
|
625
|
+
modelValue: {
|
|
626
|
+
type: import("vue").PropType<string>;
|
|
627
|
+
};
|
|
631
628
|
helperText: {
|
|
632
629
|
type: import("vue").PropType<string>;
|
|
633
630
|
};
|
|
631
|
+
useField: {
|
|
632
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
633
|
+
};
|
|
634
|
+
opts: {
|
|
635
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
636
|
+
};
|
|
634
637
|
successText: {
|
|
635
638
|
type: import("vue").PropType<string>;
|
|
636
639
|
};
|
|
@@ -643,11 +646,8 @@ export declare const components: {
|
|
|
643
646
|
isLoading: {
|
|
644
647
|
type: import("vue").PropType<boolean>;
|
|
645
648
|
};
|
|
646
|
-
|
|
647
|
-
type: import("vue").PropType<
|
|
648
|
-
};
|
|
649
|
-
opts: {
|
|
650
|
-
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
649
|
+
placeholder: {
|
|
650
|
+
type: import("vue").PropType<string>;
|
|
651
651
|
};
|
|
652
652
|
}>> & {
|
|
653
653
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
@@ -675,14 +675,6 @@ export declare const components: {
|
|
|
675
675
|
class: {
|
|
676
676
|
type: import("vue").PropType<string>;
|
|
677
677
|
};
|
|
678
|
-
modelValue: {
|
|
679
|
-
type: import("vue").PropType<string>;
|
|
680
|
-
};
|
|
681
|
-
error: {
|
|
682
|
-
type: import("vue").PropType<string | null>;
|
|
683
|
-
} & {
|
|
684
|
-
default: null;
|
|
685
|
-
};
|
|
686
678
|
size: {
|
|
687
679
|
type: import("vue").PropType<"sm" | "md">;
|
|
688
680
|
} & {
|
|
@@ -692,8 +684,10 @@ export declare const components: {
|
|
|
692
684
|
type: import("vue").PropType<string>;
|
|
693
685
|
required: true;
|
|
694
686
|
};
|
|
695
|
-
|
|
696
|
-
type: import("vue").PropType<string>;
|
|
687
|
+
error: {
|
|
688
|
+
type: import("vue").PropType<string | null>;
|
|
689
|
+
} & {
|
|
690
|
+
default: null;
|
|
697
691
|
};
|
|
698
692
|
rules: {
|
|
699
693
|
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
@@ -702,9 +696,18 @@ export declare const components: {
|
|
|
702
696
|
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
703
697
|
} | undefined>>;
|
|
704
698
|
};
|
|
699
|
+
modelValue: {
|
|
700
|
+
type: import("vue").PropType<string>;
|
|
701
|
+
};
|
|
705
702
|
helperText: {
|
|
706
703
|
type: import("vue").PropType<string>;
|
|
707
704
|
};
|
|
705
|
+
useField: {
|
|
706
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
707
|
+
};
|
|
708
|
+
opts: {
|
|
709
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
710
|
+
};
|
|
708
711
|
successText: {
|
|
709
712
|
type: import("vue").PropType<string>;
|
|
710
713
|
};
|
|
@@ -717,19 +720,16 @@ export declare const components: {
|
|
|
717
720
|
isLoading: {
|
|
718
721
|
type: import("vue").PropType<boolean>;
|
|
719
722
|
};
|
|
720
|
-
|
|
721
|
-
type: import("vue").PropType<
|
|
722
|
-
};
|
|
723
|
-
opts: {
|
|
724
|
-
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
723
|
+
placeholder: {
|
|
724
|
+
type: import("vue").PropType<string>;
|
|
725
725
|
};
|
|
726
726
|
}>> & {
|
|
727
727
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
728
728
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
729
729
|
"update:modelValue": (event: string) => void;
|
|
730
730
|
}, string, {
|
|
731
|
-
error: string | null;
|
|
732
731
|
size: "sm" | "md";
|
|
732
|
+
error: string | null;
|
|
733
733
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
734
734
|
$slots: {
|
|
735
735
|
icon: (_: {}) => any;
|
|
@@ -751,12 +751,6 @@ export declare const components: {
|
|
|
751
751
|
} & {
|
|
752
752
|
default: boolean;
|
|
753
753
|
};
|
|
754
|
-
modelValue: {
|
|
755
|
-
type: import("vue").PropType<string>;
|
|
756
|
-
};
|
|
757
|
-
error: {
|
|
758
|
-
type: import("vue").PropType<string | null>;
|
|
759
|
-
};
|
|
760
754
|
size: {
|
|
761
755
|
type: import("vue").PropType<"sm" | "md">;
|
|
762
756
|
};
|
|
@@ -766,10 +760,8 @@ export declare const components: {
|
|
|
766
760
|
} & {
|
|
767
761
|
default: string;
|
|
768
762
|
};
|
|
769
|
-
|
|
770
|
-
type: import("vue").PropType<string>;
|
|
771
|
-
} & {
|
|
772
|
-
default: string;
|
|
763
|
+
error: {
|
|
764
|
+
type: import("vue").PropType<string | null>;
|
|
773
765
|
};
|
|
774
766
|
rules: {
|
|
775
767
|
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
@@ -778,6 +770,9 @@ export declare const components: {
|
|
|
778
770
|
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
779
771
|
} | undefined>>;
|
|
780
772
|
};
|
|
773
|
+
modelValue: {
|
|
774
|
+
type: import("vue").PropType<string>;
|
|
775
|
+
};
|
|
781
776
|
helperText: {
|
|
782
777
|
type: import("vue").PropType<string>;
|
|
783
778
|
};
|
|
@@ -787,6 +782,11 @@ export declare const components: {
|
|
|
787
782
|
opts: {
|
|
788
783
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
789
784
|
};
|
|
785
|
+
placeholder: {
|
|
786
|
+
type: import("vue").PropType<string>;
|
|
787
|
+
} & {
|
|
788
|
+
default: string;
|
|
789
|
+
};
|
|
790
790
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
791
791
|
label: {
|
|
792
792
|
type: import("vue").PropType<string>;
|
|
@@ -803,12 +803,6 @@ export declare const components: {
|
|
|
803
803
|
} & {
|
|
804
804
|
default: boolean;
|
|
805
805
|
};
|
|
806
|
-
modelValue: {
|
|
807
|
-
type: import("vue").PropType<string>;
|
|
808
|
-
};
|
|
809
|
-
error: {
|
|
810
|
-
type: import("vue").PropType<string | null>;
|
|
811
|
-
};
|
|
812
806
|
size: {
|
|
813
807
|
type: import("vue").PropType<"sm" | "md">;
|
|
814
808
|
};
|
|
@@ -818,10 +812,8 @@ export declare const components: {
|
|
|
818
812
|
} & {
|
|
819
813
|
default: string;
|
|
820
814
|
};
|
|
821
|
-
|
|
822
|
-
type: import("vue").PropType<string>;
|
|
823
|
-
} & {
|
|
824
|
-
default: string;
|
|
815
|
+
error: {
|
|
816
|
+
type: import("vue").PropType<string | null>;
|
|
825
817
|
};
|
|
826
818
|
rules: {
|
|
827
819
|
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
@@ -830,6 +822,9 @@ export declare const components: {
|
|
|
830
822
|
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
831
823
|
} | undefined>>;
|
|
832
824
|
};
|
|
825
|
+
modelValue: {
|
|
826
|
+
type: import("vue").PropType<string>;
|
|
827
|
+
};
|
|
833
828
|
helperText: {
|
|
834
829
|
type: import("vue").PropType<string>;
|
|
835
830
|
};
|
|
@@ -839,6 +834,11 @@ export declare const components: {
|
|
|
839
834
|
opts: {
|
|
840
835
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
|
|
841
836
|
};
|
|
837
|
+
placeholder: {
|
|
838
|
+
type: import("vue").PropType<string>;
|
|
839
|
+
} & {
|
|
840
|
+
default: string;
|
|
841
|
+
};
|
|
842
842
|
}>>, {
|
|
843
843
|
required: boolean;
|
|
844
844
|
name: string;
|
|
@@ -900,6 +900,7 @@ export declare const components: {
|
|
|
900
900
|
$: import("vue").ComponentInternalInstance;
|
|
901
901
|
$data: {};
|
|
902
902
|
$props: Partial<{
|
|
903
|
+
error: string | null;
|
|
903
904
|
hideTitle: boolean;
|
|
904
905
|
direction: "row" | "column";
|
|
905
906
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -911,19 +912,31 @@ export declare const components: {
|
|
|
911
912
|
type: import("vue").PropType<string>;
|
|
912
913
|
required: true;
|
|
913
914
|
};
|
|
914
|
-
|
|
915
|
-
type: import("vue").PropType<
|
|
915
|
+
name: {
|
|
916
|
+
type: import("vue").PropType<string>;
|
|
916
917
|
required: true;
|
|
917
918
|
};
|
|
918
919
|
error: {
|
|
919
|
-
type: import("vue").PropType<string>;
|
|
920
|
+
type: import("vue").PropType<string | null>;
|
|
921
|
+
} & {
|
|
922
|
+
default: null;
|
|
923
|
+
};
|
|
924
|
+
rules: {
|
|
925
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
926
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
927
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
928
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
929
|
+
} | undefined>>;
|
|
930
|
+
};
|
|
931
|
+
modelValue: {
|
|
932
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
920
933
|
};
|
|
921
934
|
hideTitle: {
|
|
922
935
|
type: import("vue").PropType<boolean>;
|
|
923
936
|
} & {
|
|
924
937
|
default: boolean;
|
|
925
938
|
};
|
|
926
|
-
|
|
939
|
+
helperText: {
|
|
927
940
|
type: import("vue").PropType<string>;
|
|
928
941
|
};
|
|
929
942
|
direction: {
|
|
@@ -931,6 +944,12 @@ export declare const components: {
|
|
|
931
944
|
} & {
|
|
932
945
|
default: string;
|
|
933
946
|
};
|
|
947
|
+
useField: {
|
|
948
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
949
|
+
};
|
|
950
|
+
opts: {
|
|
951
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/radio/types").RadioValue>>>;
|
|
952
|
+
};
|
|
934
953
|
radios: {
|
|
935
954
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
936
955
|
required: true;
|
|
@@ -938,7 +957,7 @@ export declare const components: {
|
|
|
938
957
|
}>> & {
|
|
939
958
|
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
940
959
|
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
941
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "hideTitle" | "direction">;
|
|
960
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "hideTitle" | "direction">;
|
|
942
961
|
$attrs: {
|
|
943
962
|
[x: string]: unknown;
|
|
944
963
|
};
|
|
@@ -950,7 +969,7 @@ export declare const components: {
|
|
|
950
969
|
}>;
|
|
951
970
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
952
971
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
953
|
-
$emit: ((event: "
|
|
972
|
+
$emit: ((event: "change", value: import("./components/forms/radio/types").RadioValue) => void) & ((event: "update:modelValue", value: import("./components/forms/radio/types").RadioValue) => void);
|
|
954
973
|
$el: any;
|
|
955
974
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
956
975
|
title: {
|
|
@@ -961,19 +980,31 @@ export declare const components: {
|
|
|
961
980
|
type: import("vue").PropType<string>;
|
|
962
981
|
required: true;
|
|
963
982
|
};
|
|
964
|
-
|
|
965
|
-
type: import("vue").PropType<
|
|
983
|
+
name: {
|
|
984
|
+
type: import("vue").PropType<string>;
|
|
966
985
|
required: true;
|
|
967
986
|
};
|
|
968
987
|
error: {
|
|
969
|
-
type: import("vue").PropType<string>;
|
|
988
|
+
type: import("vue").PropType<string | null>;
|
|
989
|
+
} & {
|
|
990
|
+
default: null;
|
|
991
|
+
};
|
|
992
|
+
rules: {
|
|
993
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
994
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
995
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
996
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
997
|
+
} | undefined>>;
|
|
998
|
+
};
|
|
999
|
+
modelValue: {
|
|
1000
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
970
1001
|
};
|
|
971
1002
|
hideTitle: {
|
|
972
1003
|
type: import("vue").PropType<boolean>;
|
|
973
1004
|
} & {
|
|
974
1005
|
default: boolean;
|
|
975
1006
|
};
|
|
976
|
-
|
|
1007
|
+
helperText: {
|
|
977
1008
|
type: import("vue").PropType<string>;
|
|
978
1009
|
};
|
|
979
1010
|
direction: {
|
|
@@ -981,10 +1012,16 @@ export declare const components: {
|
|
|
981
1012
|
} & {
|
|
982
1013
|
default: string;
|
|
983
1014
|
};
|
|
984
|
-
|
|
985
|
-
type: import("vue").PropType<import("
|
|
986
|
-
|
|
987
|
-
|
|
1015
|
+
useField: {
|
|
1016
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1017
|
+
};
|
|
1018
|
+
opts: {
|
|
1019
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/radio/types").RadioValue>>>;
|
|
1020
|
+
};
|
|
1021
|
+
radios: {
|
|
1022
|
+
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1023
|
+
required: true;
|
|
1024
|
+
};
|
|
988
1025
|
}>> & {
|
|
989
1026
|
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
990
1027
|
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
@@ -993,6 +1030,7 @@ export declare const components: {
|
|
|
993
1030
|
} & {
|
|
994
1031
|
"update:modelValue": (value: import("./components/forms/radio/types").RadioValue) => void;
|
|
995
1032
|
}, string, {
|
|
1033
|
+
error: string | null;
|
|
996
1034
|
hideTitle: boolean;
|
|
997
1035
|
direction: "row" | "column";
|
|
998
1036
|
}> & {
|
|
@@ -1024,19 +1062,31 @@ export declare const components: {
|
|
|
1024
1062
|
type: import("vue").PropType<string>;
|
|
1025
1063
|
required: true;
|
|
1026
1064
|
};
|
|
1027
|
-
|
|
1028
|
-
type: import("vue").PropType<
|
|
1065
|
+
name: {
|
|
1066
|
+
type: import("vue").PropType<string>;
|
|
1029
1067
|
required: true;
|
|
1030
1068
|
};
|
|
1031
1069
|
error: {
|
|
1032
|
-
type: import("vue").PropType<string>;
|
|
1070
|
+
type: import("vue").PropType<string | null>;
|
|
1071
|
+
} & {
|
|
1072
|
+
default: null;
|
|
1073
|
+
};
|
|
1074
|
+
rules: {
|
|
1075
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1076
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1077
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1078
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1079
|
+
} | undefined>>;
|
|
1080
|
+
};
|
|
1081
|
+
modelValue: {
|
|
1082
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1033
1083
|
};
|
|
1034
1084
|
hideTitle: {
|
|
1035
1085
|
type: import("vue").PropType<boolean>;
|
|
1036
1086
|
} & {
|
|
1037
1087
|
default: boolean;
|
|
1038
1088
|
};
|
|
1039
|
-
|
|
1089
|
+
helperText: {
|
|
1040
1090
|
type: import("vue").PropType<string>;
|
|
1041
1091
|
};
|
|
1042
1092
|
direction: {
|
|
@@ -1044,6 +1094,12 @@ export declare const components: {
|
|
|
1044
1094
|
} & {
|
|
1045
1095
|
default: string;
|
|
1046
1096
|
};
|
|
1097
|
+
useField: {
|
|
1098
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1099
|
+
};
|
|
1100
|
+
opts: {
|
|
1101
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/radio/types").RadioValue>>>;
|
|
1102
|
+
};
|
|
1047
1103
|
radios: {
|
|
1048
1104
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1049
1105
|
required: true;
|
|
@@ -1064,19 +1120,31 @@ export declare const components: {
|
|
|
1064
1120
|
type: import("vue").PropType<string>;
|
|
1065
1121
|
required: true;
|
|
1066
1122
|
};
|
|
1067
|
-
|
|
1068
|
-
type: import("vue").PropType<
|
|
1123
|
+
name: {
|
|
1124
|
+
type: import("vue").PropType<string>;
|
|
1069
1125
|
required: true;
|
|
1070
1126
|
};
|
|
1071
1127
|
error: {
|
|
1072
|
-
type: import("vue").PropType<string>;
|
|
1128
|
+
type: import("vue").PropType<string | null>;
|
|
1129
|
+
} & {
|
|
1130
|
+
default: null;
|
|
1131
|
+
};
|
|
1132
|
+
rules: {
|
|
1133
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1134
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1135
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1136
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1137
|
+
} | undefined>>;
|
|
1138
|
+
};
|
|
1139
|
+
modelValue: {
|
|
1140
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1073
1141
|
};
|
|
1074
1142
|
hideTitle: {
|
|
1075
1143
|
type: import("vue").PropType<boolean>;
|
|
1076
1144
|
} & {
|
|
1077
1145
|
default: boolean;
|
|
1078
1146
|
};
|
|
1079
|
-
|
|
1147
|
+
helperText: {
|
|
1080
1148
|
type: import("vue").PropType<string>;
|
|
1081
1149
|
};
|
|
1082
1150
|
direction: {
|
|
@@ -1084,6 +1152,12 @@ export declare const components: {
|
|
|
1084
1152
|
} & {
|
|
1085
1153
|
default: string;
|
|
1086
1154
|
};
|
|
1155
|
+
useField: {
|
|
1156
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1157
|
+
};
|
|
1158
|
+
opts: {
|
|
1159
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/radio/types").RadioValue>>>;
|
|
1160
|
+
};
|
|
1087
1161
|
radios: {
|
|
1088
1162
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1089
1163
|
required: true;
|
|
@@ -1096,6 +1170,7 @@ export declare const components: {
|
|
|
1096
1170
|
} & {
|
|
1097
1171
|
"update:modelValue": (value: import("./components/forms/radio/types").RadioValue) => void;
|
|
1098
1172
|
}, string, {
|
|
1173
|
+
error: string | null;
|
|
1099
1174
|
hideTitle: boolean;
|
|
1100
1175
|
direction: "row" | "column";
|
|
1101
1176
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -1171,6 +1246,7 @@ export declare const components: {
|
|
|
1171
1246
|
$: import("vue").ComponentInternalInstance;
|
|
1172
1247
|
$data: {};
|
|
1173
1248
|
$props: Partial<{
|
|
1249
|
+
error: string | null;
|
|
1174
1250
|
hideTitle: boolean;
|
|
1175
1251
|
direction: "row" | "column";
|
|
1176
1252
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1182,18 +1258,31 @@ export declare const components: {
|
|
|
1182
1258
|
type: import("vue").PropType<string>;
|
|
1183
1259
|
required: true;
|
|
1184
1260
|
};
|
|
1185
|
-
|
|
1186
|
-
type: import("vue").PropType<
|
|
1261
|
+
name: {
|
|
1262
|
+
type: import("vue").PropType<string>;
|
|
1263
|
+
required: true;
|
|
1187
1264
|
};
|
|
1188
1265
|
error: {
|
|
1189
|
-
type: import("vue").PropType<string>;
|
|
1266
|
+
type: import("vue").PropType<string | null>;
|
|
1267
|
+
} & {
|
|
1268
|
+
default: null;
|
|
1269
|
+
};
|
|
1270
|
+
rules: {
|
|
1271
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1272
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1273
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1274
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1275
|
+
} | undefined>>;
|
|
1276
|
+
};
|
|
1277
|
+
modelValue: {
|
|
1278
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1190
1279
|
};
|
|
1191
1280
|
hideTitle: {
|
|
1192
1281
|
type: import("vue").PropType<boolean>;
|
|
1193
1282
|
} & {
|
|
1194
1283
|
default: boolean;
|
|
1195
1284
|
};
|
|
1196
|
-
|
|
1285
|
+
helperText: {
|
|
1197
1286
|
type: import("vue").PropType<string>;
|
|
1198
1287
|
};
|
|
1199
1288
|
checkboxes: {
|
|
@@ -1205,10 +1294,16 @@ export declare const components: {
|
|
|
1205
1294
|
} & {
|
|
1206
1295
|
default: string;
|
|
1207
1296
|
};
|
|
1297
|
+
useField: {
|
|
1298
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1299
|
+
};
|
|
1300
|
+
opts: {
|
|
1301
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/checkbox/type").CheckboxValue>>>;
|
|
1302
|
+
};
|
|
1208
1303
|
}>> & {
|
|
1209
1304
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1210
|
-
"onUpdate:modelValue"?: ((
|
|
1211
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "hideTitle" | "direction">;
|
|
1305
|
+
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
1306
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "hideTitle" | "direction">;
|
|
1212
1307
|
$attrs: {
|
|
1213
1308
|
[x: string]: unknown;
|
|
1214
1309
|
};
|
|
@@ -1220,7 +1315,7 @@ export declare const components: {
|
|
|
1220
1315
|
}>;
|
|
1221
1316
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1222
1317
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1223
|
-
$emit: ((event: "
|
|
1318
|
+
$emit: ((event: "change", value: import("./components/forms/checkbox/type").CheckboxValue) => void) & ((event: "update:modelValue", v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => void);
|
|
1224
1319
|
$el: any;
|
|
1225
1320
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1226
1321
|
title: {
|
|
@@ -1231,18 +1326,31 @@ export declare const components: {
|
|
|
1231
1326
|
type: import("vue").PropType<string>;
|
|
1232
1327
|
required: true;
|
|
1233
1328
|
};
|
|
1234
|
-
|
|
1235
|
-
type: import("vue").PropType<
|
|
1329
|
+
name: {
|
|
1330
|
+
type: import("vue").PropType<string>;
|
|
1331
|
+
required: true;
|
|
1236
1332
|
};
|
|
1237
1333
|
error: {
|
|
1238
|
-
type: import("vue").PropType<string>;
|
|
1334
|
+
type: import("vue").PropType<string | null>;
|
|
1335
|
+
} & {
|
|
1336
|
+
default: null;
|
|
1337
|
+
};
|
|
1338
|
+
rules: {
|
|
1339
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1340
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1341
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1342
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1343
|
+
} | undefined>>;
|
|
1344
|
+
};
|
|
1345
|
+
modelValue: {
|
|
1346
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1239
1347
|
};
|
|
1240
1348
|
hideTitle: {
|
|
1241
1349
|
type: import("vue").PropType<boolean>;
|
|
1242
1350
|
} & {
|
|
1243
1351
|
default: boolean;
|
|
1244
1352
|
};
|
|
1245
|
-
|
|
1353
|
+
helperText: {
|
|
1246
1354
|
type: import("vue").PropType<string>;
|
|
1247
1355
|
};
|
|
1248
1356
|
checkboxes: {
|
|
@@ -1254,14 +1362,21 @@ export declare const components: {
|
|
|
1254
1362
|
} & {
|
|
1255
1363
|
default: string;
|
|
1256
1364
|
};
|
|
1365
|
+
useField: {
|
|
1366
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1367
|
+
};
|
|
1368
|
+
opts: {
|
|
1369
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/checkbox/type").CheckboxValue>>>;
|
|
1370
|
+
};
|
|
1257
1371
|
}>> & {
|
|
1258
1372
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1259
|
-
"onUpdate:modelValue"?: ((
|
|
1373
|
+
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
1260
1374
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1261
1375
|
change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1262
1376
|
} & {
|
|
1263
|
-
"update:modelValue": (
|
|
1377
|
+
"update:modelValue": (v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => void;
|
|
1264
1378
|
}, string, {
|
|
1379
|
+
error: string | null;
|
|
1265
1380
|
hideTitle: boolean;
|
|
1266
1381
|
direction: "row" | "column";
|
|
1267
1382
|
}> & {
|
|
@@ -1293,18 +1408,31 @@ export declare const components: {
|
|
|
1293
1408
|
type: import("vue").PropType<string>;
|
|
1294
1409
|
required: true;
|
|
1295
1410
|
};
|
|
1296
|
-
|
|
1297
|
-
type: import("vue").PropType<
|
|
1411
|
+
name: {
|
|
1412
|
+
type: import("vue").PropType<string>;
|
|
1413
|
+
required: true;
|
|
1298
1414
|
};
|
|
1299
1415
|
error: {
|
|
1300
|
-
type: import("vue").PropType<string>;
|
|
1416
|
+
type: import("vue").PropType<string | null>;
|
|
1417
|
+
} & {
|
|
1418
|
+
default: null;
|
|
1419
|
+
};
|
|
1420
|
+
rules: {
|
|
1421
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1422
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1423
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1424
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1425
|
+
} | undefined>>;
|
|
1426
|
+
};
|
|
1427
|
+
modelValue: {
|
|
1428
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1301
1429
|
};
|
|
1302
1430
|
hideTitle: {
|
|
1303
1431
|
type: import("vue").PropType<boolean>;
|
|
1304
1432
|
} & {
|
|
1305
1433
|
default: boolean;
|
|
1306
1434
|
};
|
|
1307
|
-
|
|
1435
|
+
helperText: {
|
|
1308
1436
|
type: import("vue").PropType<string>;
|
|
1309
1437
|
};
|
|
1310
1438
|
checkboxes: {
|
|
@@ -1316,9 +1444,15 @@ export declare const components: {
|
|
|
1316
1444
|
} & {
|
|
1317
1445
|
default: string;
|
|
1318
1446
|
};
|
|
1447
|
+
useField: {
|
|
1448
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1449
|
+
};
|
|
1450
|
+
opts: {
|
|
1451
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/checkbox/type").CheckboxValue>>>;
|
|
1452
|
+
};
|
|
1319
1453
|
}>> & {
|
|
1320
1454
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1321
|
-
"onUpdate:modelValue"?: ((
|
|
1455
|
+
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
1322
1456
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
1323
1457
|
__isFragment?: undefined;
|
|
1324
1458
|
__isTeleport?: undefined;
|
|
@@ -1332,18 +1466,31 @@ export declare const components: {
|
|
|
1332
1466
|
type: import("vue").PropType<string>;
|
|
1333
1467
|
required: true;
|
|
1334
1468
|
};
|
|
1335
|
-
|
|
1336
|
-
type: import("vue").PropType<
|
|
1469
|
+
name: {
|
|
1470
|
+
type: import("vue").PropType<string>;
|
|
1471
|
+
required: true;
|
|
1337
1472
|
};
|
|
1338
1473
|
error: {
|
|
1339
|
-
type: import("vue").PropType<string>;
|
|
1474
|
+
type: import("vue").PropType<string | null>;
|
|
1475
|
+
} & {
|
|
1476
|
+
default: null;
|
|
1477
|
+
};
|
|
1478
|
+
rules: {
|
|
1479
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1480
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1481
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1482
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1483
|
+
} | undefined>>;
|
|
1484
|
+
};
|
|
1485
|
+
modelValue: {
|
|
1486
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
|
|
1340
1487
|
};
|
|
1341
1488
|
hideTitle: {
|
|
1342
1489
|
type: import("vue").PropType<boolean>;
|
|
1343
1490
|
} & {
|
|
1344
1491
|
default: boolean;
|
|
1345
1492
|
};
|
|
1346
|
-
|
|
1493
|
+
helperText: {
|
|
1347
1494
|
type: import("vue").PropType<string>;
|
|
1348
1495
|
};
|
|
1349
1496
|
checkboxes: {
|
|
@@ -1355,14 +1502,21 @@ export declare const components: {
|
|
|
1355
1502
|
} & {
|
|
1356
1503
|
default: string;
|
|
1357
1504
|
};
|
|
1505
|
+
useField: {
|
|
1506
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1507
|
+
};
|
|
1508
|
+
opts: {
|
|
1509
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/checkbox/type").CheckboxValue>>>;
|
|
1510
|
+
};
|
|
1358
1511
|
}>> & {
|
|
1359
1512
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1360
|
-
"onUpdate:modelValue"?: ((
|
|
1513
|
+
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
1361
1514
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1362
1515
|
change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1363
1516
|
} & {
|
|
1364
|
-
"update:modelValue": (
|
|
1517
|
+
"update:modelValue": (v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => void;
|
|
1365
1518
|
}, string, {
|
|
1519
|
+
error: string | null;
|
|
1366
1520
|
hideTitle: boolean;
|
|
1367
1521
|
direction: "row" | "column";
|
|
1368
1522
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -1388,13 +1542,13 @@ export declare const components: {
|
|
|
1388
1542
|
class: {
|
|
1389
1543
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1390
1544
|
};
|
|
1391
|
-
value: {
|
|
1392
|
-
type: import("vue").PropType<string>;
|
|
1393
|
-
};
|
|
1394
1545
|
name: {
|
|
1395
1546
|
type: import("vue").PropType<string>;
|
|
1396
1547
|
required: true;
|
|
1397
1548
|
};
|
|
1549
|
+
value: {
|
|
1550
|
+
type: import("vue").PropType<string>;
|
|
1551
|
+
};
|
|
1398
1552
|
checked: {
|
|
1399
1553
|
type: import("vue").PropType<boolean>;
|
|
1400
1554
|
};
|
|
@@ -1425,13 +1579,13 @@ export declare const components: {
|
|
|
1425
1579
|
class: {
|
|
1426
1580
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1427
1581
|
};
|
|
1428
|
-
value: {
|
|
1429
|
-
type: import("vue").PropType<string>;
|
|
1430
|
-
};
|
|
1431
1582
|
name: {
|
|
1432
1583
|
type: import("vue").PropType<string>;
|
|
1433
1584
|
required: true;
|
|
1434
1585
|
};
|
|
1586
|
+
value: {
|
|
1587
|
+
type: import("vue").PropType<string>;
|
|
1588
|
+
};
|
|
1435
1589
|
checked: {
|
|
1436
1590
|
type: import("vue").PropType<boolean>;
|
|
1437
1591
|
};
|
|
@@ -1459,15 +1613,15 @@ export declare const components: {
|
|
|
1459
1613
|
$: import("vue").ComponentInternalInstance;
|
|
1460
1614
|
$data: {};
|
|
1461
1615
|
$props: Partial<{
|
|
1616
|
+
size: import("./components/forms/select/types").Size;
|
|
1462
1617
|
loading: boolean;
|
|
1618
|
+
error: string | null;
|
|
1619
|
+
placeholder: string;
|
|
1620
|
+
options: import("./components/forms/select/types").Option[];
|
|
1463
1621
|
searchable: boolean;
|
|
1464
1622
|
closeOnSelect: boolean;
|
|
1465
1623
|
fetchOnSearch: boolean;
|
|
1466
|
-
|
|
1467
|
-
name: string;
|
|
1468
|
-
value: string;
|
|
1469
|
-
}[];
|
|
1470
|
-
placeholder: string;
|
|
1624
|
+
searchPlaceholder: string;
|
|
1471
1625
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1472
1626
|
label: {
|
|
1473
1627
|
type: import("vue").PropType<string>;
|
|
@@ -1479,19 +1633,64 @@ export declare const components: {
|
|
|
1479
1633
|
disabled: {
|
|
1480
1634
|
type: import("vue").PropType<boolean>;
|
|
1481
1635
|
};
|
|
1636
|
+
required: {
|
|
1637
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1638
|
+
required: true;
|
|
1639
|
+
};
|
|
1640
|
+
size: {
|
|
1641
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1642
|
+
} & {
|
|
1643
|
+
default: string;
|
|
1644
|
+
};
|
|
1645
|
+
loading: {
|
|
1646
|
+
type: import("vue").PropType<boolean>;
|
|
1647
|
+
} & {
|
|
1648
|
+
default: boolean;
|
|
1649
|
+
};
|
|
1650
|
+
name: {
|
|
1651
|
+
type: import("vue").PropType<string>;
|
|
1652
|
+
required: true;
|
|
1653
|
+
};
|
|
1482
1654
|
error: {
|
|
1655
|
+
type: import("vue").PropType<string | null>;
|
|
1656
|
+
} & {
|
|
1657
|
+
default: null;
|
|
1658
|
+
};
|
|
1659
|
+
rules: {
|
|
1660
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1661
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1662
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1663
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1664
|
+
} | undefined>>;
|
|
1665
|
+
};
|
|
1666
|
+
selected: {
|
|
1667
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1668
|
+
};
|
|
1669
|
+
helperText: {
|
|
1670
|
+
type: import("vue").PropType<string>;
|
|
1671
|
+
};
|
|
1672
|
+
useField: {
|
|
1673
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1674
|
+
};
|
|
1675
|
+
opts: {
|
|
1676
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
1677
|
+
};
|
|
1678
|
+
placeholder: {
|
|
1483
1679
|
type: import("vue").PropType<string>;
|
|
1680
|
+
} & {
|
|
1681
|
+
default: string;
|
|
1484
1682
|
};
|
|
1485
1683
|
ariaLabel: {
|
|
1486
1684
|
type: import("vue").PropType<string>;
|
|
1487
1685
|
};
|
|
1488
|
-
|
|
1489
|
-
type: import("vue").PropType<
|
|
1686
|
+
options: {
|
|
1687
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
1688
|
+
required: true;
|
|
1689
|
+
} & {
|
|
1690
|
+
default: () => never[];
|
|
1490
1691
|
};
|
|
1491
|
-
|
|
1692
|
+
multiple: {
|
|
1492
1693
|
type: import("vue").PropType<boolean>;
|
|
1493
|
-
} & {
|
|
1494
|
-
default: boolean;
|
|
1495
1694
|
};
|
|
1496
1695
|
searchable: {
|
|
1497
1696
|
type: import("vue").PropType<boolean>;
|
|
@@ -1510,45 +1709,14 @@ export declare const components: {
|
|
|
1510
1709
|
};
|
|
1511
1710
|
searchPlaceholder: {
|
|
1512
1711
|
type: import("vue").PropType<string>;
|
|
1513
|
-
};
|
|
1514
|
-
selected: {
|
|
1515
|
-
type: import("vue").PropType<{
|
|
1516
|
-
name: string;
|
|
1517
|
-
value: string;
|
|
1518
|
-
} | {
|
|
1519
|
-
name: string;
|
|
1520
|
-
value: string;
|
|
1521
|
-
}[]>;
|
|
1522
|
-
};
|
|
1523
|
-
options: {
|
|
1524
|
-
type: import("vue").PropType<{
|
|
1525
|
-
name: string;
|
|
1526
|
-
value: string;
|
|
1527
|
-
}[]>;
|
|
1528
|
-
required: true;
|
|
1529
|
-
} & {
|
|
1530
|
-
default: () => never[];
|
|
1531
|
-
};
|
|
1532
|
-
placeholder: {
|
|
1533
|
-
type: import("vue").PropType<string>;
|
|
1534
|
-
required: true;
|
|
1535
1712
|
} & {
|
|
1536
1713
|
default: string;
|
|
1537
1714
|
};
|
|
1538
|
-
multiple: {
|
|
1539
|
-
type: import("vue").PropType<boolean>;
|
|
1540
|
-
};
|
|
1541
1715
|
}>> & {
|
|
1716
|
+
"onUpdate:selected"?: ((value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => any) | undefined;
|
|
1542
1717
|
onSearch?: ((value: string) => any) | undefined;
|
|
1543
1718
|
onCloseDropdown?: (() => any) | undefined;
|
|
1544
|
-
|
|
1545
|
-
name: string;
|
|
1546
|
-
value: string;
|
|
1547
|
-
} | {
|
|
1548
|
-
name: string;
|
|
1549
|
-
value: string;
|
|
1550
|
-
}[]) => any) | undefined;
|
|
1551
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "searchable" | "closeOnSelect" | "fetchOnSearch" | "options" | "placeholder">;
|
|
1719
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "loading" | "error" | "placeholder" | "options" | "searchable" | "closeOnSelect" | "fetchOnSearch" | "searchPlaceholder">;
|
|
1552
1720
|
$attrs: {
|
|
1553
1721
|
[x: string]: unknown;
|
|
1554
1722
|
};
|
|
@@ -1560,13 +1728,7 @@ export declare const components: {
|
|
|
1560
1728
|
}>;
|
|
1561
1729
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1562
1730
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1563
|
-
$emit: ((event: "search", value: string) => void) & ((event: "
|
|
1564
|
-
name: string;
|
|
1565
|
-
value: string;
|
|
1566
|
-
} | {
|
|
1567
|
-
name: string;
|
|
1568
|
-
value: string;
|
|
1569
|
-
}[]) => void);
|
|
1731
|
+
$emit: ((event: "search", value: string) => void) & ((event: "update:selected", value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => void) & ((event: "closeDropdown") => void);
|
|
1570
1732
|
$el: any;
|
|
1571
1733
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1572
1734
|
label: {
|
|
@@ -1579,19 +1741,64 @@ export declare const components: {
|
|
|
1579
1741
|
disabled: {
|
|
1580
1742
|
type: import("vue").PropType<boolean>;
|
|
1581
1743
|
};
|
|
1744
|
+
required: {
|
|
1745
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1746
|
+
required: true;
|
|
1747
|
+
};
|
|
1748
|
+
size: {
|
|
1749
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1750
|
+
} & {
|
|
1751
|
+
default: string;
|
|
1752
|
+
};
|
|
1753
|
+
loading: {
|
|
1754
|
+
type: import("vue").PropType<boolean>;
|
|
1755
|
+
} & {
|
|
1756
|
+
default: boolean;
|
|
1757
|
+
};
|
|
1758
|
+
name: {
|
|
1759
|
+
type: import("vue").PropType<string>;
|
|
1760
|
+
required: true;
|
|
1761
|
+
};
|
|
1582
1762
|
error: {
|
|
1763
|
+
type: import("vue").PropType<string | null>;
|
|
1764
|
+
} & {
|
|
1765
|
+
default: null;
|
|
1766
|
+
};
|
|
1767
|
+
rules: {
|
|
1768
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1769
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1770
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1771
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1772
|
+
} | undefined>>;
|
|
1773
|
+
};
|
|
1774
|
+
selected: {
|
|
1775
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1776
|
+
};
|
|
1777
|
+
helperText: {
|
|
1778
|
+
type: import("vue").PropType<string>;
|
|
1779
|
+
};
|
|
1780
|
+
useField: {
|
|
1781
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1782
|
+
};
|
|
1783
|
+
opts: {
|
|
1784
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
1785
|
+
};
|
|
1786
|
+
placeholder: {
|
|
1583
1787
|
type: import("vue").PropType<string>;
|
|
1788
|
+
} & {
|
|
1789
|
+
default: string;
|
|
1584
1790
|
};
|
|
1585
1791
|
ariaLabel: {
|
|
1586
1792
|
type: import("vue").PropType<string>;
|
|
1587
1793
|
};
|
|
1588
|
-
|
|
1589
|
-
type: import("vue").PropType<
|
|
1794
|
+
options: {
|
|
1795
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
1796
|
+
required: true;
|
|
1797
|
+
} & {
|
|
1798
|
+
default: () => never[];
|
|
1590
1799
|
};
|
|
1591
|
-
|
|
1800
|
+
multiple: {
|
|
1592
1801
|
type: import("vue").PropType<boolean>;
|
|
1593
|
-
} & {
|
|
1594
|
-
default: boolean;
|
|
1595
1802
|
};
|
|
1596
1803
|
searchable: {
|
|
1597
1804
|
type: import("vue").PropType<boolean>;
|
|
@@ -1610,66 +1817,29 @@ export declare const components: {
|
|
|
1610
1817
|
};
|
|
1611
1818
|
searchPlaceholder: {
|
|
1612
1819
|
type: import("vue").PropType<string>;
|
|
1613
|
-
};
|
|
1614
|
-
selected: {
|
|
1615
|
-
type: import("vue").PropType<{
|
|
1616
|
-
name: string;
|
|
1617
|
-
value: string;
|
|
1618
|
-
} | {
|
|
1619
|
-
name: string;
|
|
1620
|
-
value: string;
|
|
1621
|
-
}[]>;
|
|
1622
|
-
};
|
|
1623
|
-
options: {
|
|
1624
|
-
type: import("vue").PropType<{
|
|
1625
|
-
name: string;
|
|
1626
|
-
value: string;
|
|
1627
|
-
}[]>;
|
|
1628
|
-
required: true;
|
|
1629
|
-
} & {
|
|
1630
|
-
default: () => never[];
|
|
1631
|
-
};
|
|
1632
|
-
placeholder: {
|
|
1633
|
-
type: import("vue").PropType<string>;
|
|
1634
|
-
required: true;
|
|
1635
1820
|
} & {
|
|
1636
1821
|
default: string;
|
|
1637
1822
|
};
|
|
1638
|
-
multiple: {
|
|
1639
|
-
type: import("vue").PropType<boolean>;
|
|
1640
|
-
};
|
|
1641
1823
|
}>> & {
|
|
1824
|
+
"onUpdate:selected"?: ((value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => any) | undefined;
|
|
1642
1825
|
onSearch?: ((value: string) => any) | undefined;
|
|
1643
1826
|
onCloseDropdown?: (() => any) | undefined;
|
|
1644
|
-
"onUpdate:selected"?: ((value: {
|
|
1645
|
-
name: string;
|
|
1646
|
-
value: string;
|
|
1647
|
-
} | {
|
|
1648
|
-
name: string;
|
|
1649
|
-
value: string;
|
|
1650
|
-
}[]) => any) | undefined;
|
|
1651
1827
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1652
1828
|
closeDropdown: () => void;
|
|
1653
1829
|
} & {
|
|
1654
1830
|
search: (value: string) => void;
|
|
1655
1831
|
} & {
|
|
1656
|
-
"update:selected": (value:
|
|
1657
|
-
name: string;
|
|
1658
|
-
value: string;
|
|
1659
|
-
} | {
|
|
1660
|
-
name: string;
|
|
1661
|
-
value: string;
|
|
1662
|
-
}[]) => void;
|
|
1832
|
+
"update:selected": (value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => void;
|
|
1663
1833
|
}, string, {
|
|
1834
|
+
size: import("./components/forms/select/types").Size;
|
|
1664
1835
|
loading: boolean;
|
|
1836
|
+
error: string | null;
|
|
1837
|
+
placeholder: string;
|
|
1838
|
+
options: import("./components/forms/select/types").Option[];
|
|
1665
1839
|
searchable: boolean;
|
|
1666
1840
|
closeOnSelect: boolean;
|
|
1667
1841
|
fetchOnSearch: boolean;
|
|
1668
|
-
|
|
1669
|
-
name: string;
|
|
1670
|
-
value: string;
|
|
1671
|
-
}[];
|
|
1672
|
-
placeholder: string;
|
|
1842
|
+
searchPlaceholder: string;
|
|
1673
1843
|
}> & {
|
|
1674
1844
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1675
1845
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1701,19 +1871,64 @@ export declare const components: {
|
|
|
1701
1871
|
disabled: {
|
|
1702
1872
|
type: import("vue").PropType<boolean>;
|
|
1703
1873
|
};
|
|
1874
|
+
required: {
|
|
1875
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1876
|
+
required: true;
|
|
1877
|
+
};
|
|
1878
|
+
size: {
|
|
1879
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1880
|
+
} & {
|
|
1881
|
+
default: string;
|
|
1882
|
+
};
|
|
1883
|
+
loading: {
|
|
1884
|
+
type: import("vue").PropType<boolean>;
|
|
1885
|
+
} & {
|
|
1886
|
+
default: boolean;
|
|
1887
|
+
};
|
|
1888
|
+
name: {
|
|
1889
|
+
type: import("vue").PropType<string>;
|
|
1890
|
+
required: true;
|
|
1891
|
+
};
|
|
1704
1892
|
error: {
|
|
1893
|
+
type: import("vue").PropType<string | null>;
|
|
1894
|
+
} & {
|
|
1895
|
+
default: null;
|
|
1896
|
+
};
|
|
1897
|
+
rules: {
|
|
1898
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1899
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1900
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1901
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1902
|
+
} | undefined>>;
|
|
1903
|
+
};
|
|
1904
|
+
selected: {
|
|
1905
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1906
|
+
};
|
|
1907
|
+
helperText: {
|
|
1705
1908
|
type: import("vue").PropType<string>;
|
|
1706
1909
|
};
|
|
1910
|
+
useField: {
|
|
1911
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1912
|
+
};
|
|
1913
|
+
opts: {
|
|
1914
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
1915
|
+
};
|
|
1916
|
+
placeholder: {
|
|
1917
|
+
type: import("vue").PropType<string>;
|
|
1918
|
+
} & {
|
|
1919
|
+
default: string;
|
|
1920
|
+
};
|
|
1707
1921
|
ariaLabel: {
|
|
1708
1922
|
type: import("vue").PropType<string>;
|
|
1709
1923
|
};
|
|
1710
|
-
|
|
1711
|
-
type: import("vue").PropType<
|
|
1924
|
+
options: {
|
|
1925
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
1926
|
+
required: true;
|
|
1927
|
+
} & {
|
|
1928
|
+
default: () => never[];
|
|
1712
1929
|
};
|
|
1713
|
-
|
|
1930
|
+
multiple: {
|
|
1714
1931
|
type: import("vue").PropType<boolean>;
|
|
1715
|
-
} & {
|
|
1716
|
-
default: boolean;
|
|
1717
1932
|
};
|
|
1718
1933
|
searchable: {
|
|
1719
1934
|
type: import("vue").PropType<boolean>;
|
|
@@ -1732,44 +1947,13 @@ export declare const components: {
|
|
|
1732
1947
|
};
|
|
1733
1948
|
searchPlaceholder: {
|
|
1734
1949
|
type: import("vue").PropType<string>;
|
|
1735
|
-
};
|
|
1736
|
-
selected: {
|
|
1737
|
-
type: import("vue").PropType<{
|
|
1738
|
-
name: string;
|
|
1739
|
-
value: string;
|
|
1740
|
-
} | {
|
|
1741
|
-
name: string;
|
|
1742
|
-
value: string;
|
|
1743
|
-
}[]>;
|
|
1744
|
-
};
|
|
1745
|
-
options: {
|
|
1746
|
-
type: import("vue").PropType<{
|
|
1747
|
-
name: string;
|
|
1748
|
-
value: string;
|
|
1749
|
-
}[]>;
|
|
1750
|
-
required: true;
|
|
1751
|
-
} & {
|
|
1752
|
-
default: () => never[];
|
|
1753
|
-
};
|
|
1754
|
-
placeholder: {
|
|
1755
|
-
type: import("vue").PropType<string>;
|
|
1756
|
-
required: true;
|
|
1757
1950
|
} & {
|
|
1758
1951
|
default: string;
|
|
1759
1952
|
};
|
|
1760
|
-
multiple: {
|
|
1761
|
-
type: import("vue").PropType<boolean>;
|
|
1762
|
-
};
|
|
1763
1953
|
}>> & {
|
|
1954
|
+
"onUpdate:selected"?: ((value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => any) | undefined;
|
|
1764
1955
|
onSearch?: ((value: string) => any) | undefined;
|
|
1765
1956
|
onCloseDropdown?: (() => any) | undefined;
|
|
1766
|
-
"onUpdate:selected"?: ((value: {
|
|
1767
|
-
name: string;
|
|
1768
|
-
value: string;
|
|
1769
|
-
} | {
|
|
1770
|
-
name: string;
|
|
1771
|
-
value: string;
|
|
1772
|
-
}[]) => any) | undefined;
|
|
1773
1957
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
1774
1958
|
__isFragment?: undefined;
|
|
1775
1959
|
__isTeleport?: undefined;
|
|
@@ -1785,19 +1969,64 @@ export declare const components: {
|
|
|
1785
1969
|
disabled: {
|
|
1786
1970
|
type: import("vue").PropType<boolean>;
|
|
1787
1971
|
};
|
|
1972
|
+
required: {
|
|
1973
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1974
|
+
required: true;
|
|
1975
|
+
};
|
|
1976
|
+
size: {
|
|
1977
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1978
|
+
} & {
|
|
1979
|
+
default: string;
|
|
1980
|
+
};
|
|
1981
|
+
loading: {
|
|
1982
|
+
type: import("vue").PropType<boolean>;
|
|
1983
|
+
} & {
|
|
1984
|
+
default: boolean;
|
|
1985
|
+
};
|
|
1986
|
+
name: {
|
|
1987
|
+
type: import("vue").PropType<string>;
|
|
1988
|
+
required: true;
|
|
1989
|
+
};
|
|
1788
1990
|
error: {
|
|
1991
|
+
type: import("vue").PropType<string | null>;
|
|
1992
|
+
} & {
|
|
1993
|
+
default: null;
|
|
1994
|
+
};
|
|
1995
|
+
rules: {
|
|
1996
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1997
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1998
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1999
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
2000
|
+
} | undefined>>;
|
|
2001
|
+
};
|
|
2002
|
+
selected: {
|
|
2003
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
2004
|
+
};
|
|
2005
|
+
helperText: {
|
|
2006
|
+
type: import("vue").PropType<string>;
|
|
2007
|
+
};
|
|
2008
|
+
useField: {
|
|
2009
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
2010
|
+
};
|
|
2011
|
+
opts: {
|
|
2012
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
2013
|
+
};
|
|
2014
|
+
placeholder: {
|
|
1789
2015
|
type: import("vue").PropType<string>;
|
|
2016
|
+
} & {
|
|
2017
|
+
default: string;
|
|
1790
2018
|
};
|
|
1791
2019
|
ariaLabel: {
|
|
1792
2020
|
type: import("vue").PropType<string>;
|
|
1793
2021
|
};
|
|
1794
|
-
|
|
1795
|
-
type: import("vue").PropType<
|
|
2022
|
+
options: {
|
|
2023
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
2024
|
+
required: true;
|
|
2025
|
+
} & {
|
|
2026
|
+
default: () => never[];
|
|
1796
2027
|
};
|
|
1797
|
-
|
|
2028
|
+
multiple: {
|
|
1798
2029
|
type: import("vue").PropType<boolean>;
|
|
1799
|
-
} & {
|
|
1800
|
-
default: boolean;
|
|
1801
2030
|
};
|
|
1802
2031
|
searchable: {
|
|
1803
2032
|
type: import("vue").PropType<boolean>;
|
|
@@ -1816,66 +2045,29 @@ export declare const components: {
|
|
|
1816
2045
|
};
|
|
1817
2046
|
searchPlaceholder: {
|
|
1818
2047
|
type: import("vue").PropType<string>;
|
|
1819
|
-
};
|
|
1820
|
-
selected: {
|
|
1821
|
-
type: import("vue").PropType<{
|
|
1822
|
-
name: string;
|
|
1823
|
-
value: string;
|
|
1824
|
-
} | {
|
|
1825
|
-
name: string;
|
|
1826
|
-
value: string;
|
|
1827
|
-
}[]>;
|
|
1828
|
-
};
|
|
1829
|
-
options: {
|
|
1830
|
-
type: import("vue").PropType<{
|
|
1831
|
-
name: string;
|
|
1832
|
-
value: string;
|
|
1833
|
-
}[]>;
|
|
1834
|
-
required: true;
|
|
1835
|
-
} & {
|
|
1836
|
-
default: () => never[];
|
|
1837
|
-
};
|
|
1838
|
-
placeholder: {
|
|
1839
|
-
type: import("vue").PropType<string>;
|
|
1840
|
-
required: true;
|
|
1841
2048
|
} & {
|
|
1842
2049
|
default: string;
|
|
1843
2050
|
};
|
|
1844
|
-
multiple: {
|
|
1845
|
-
type: import("vue").PropType<boolean>;
|
|
1846
|
-
};
|
|
1847
2051
|
}>> & {
|
|
2052
|
+
"onUpdate:selected"?: ((value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => any) | undefined;
|
|
1848
2053
|
onSearch?: ((value: string) => any) | undefined;
|
|
1849
2054
|
onCloseDropdown?: (() => any) | undefined;
|
|
1850
|
-
"onUpdate:selected"?: ((value: {
|
|
1851
|
-
name: string;
|
|
1852
|
-
value: string;
|
|
1853
|
-
} | {
|
|
1854
|
-
name: string;
|
|
1855
|
-
value: string;
|
|
1856
|
-
}[]) => any) | undefined;
|
|
1857
2055
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1858
2056
|
closeDropdown: () => void;
|
|
1859
2057
|
} & {
|
|
1860
2058
|
search: (value: string) => void;
|
|
1861
2059
|
} & {
|
|
1862
|
-
"update:selected": (value:
|
|
1863
|
-
name: string;
|
|
1864
|
-
value: string;
|
|
1865
|
-
} | {
|
|
1866
|
-
name: string;
|
|
1867
|
-
value: string;
|
|
1868
|
-
}[]) => void;
|
|
2060
|
+
"update:selected": (value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => void;
|
|
1869
2061
|
}, string, {
|
|
2062
|
+
size: import("./components/forms/select/types").Size;
|
|
1870
2063
|
loading: boolean;
|
|
2064
|
+
error: string | null;
|
|
2065
|
+
placeholder: string;
|
|
2066
|
+
options: import("./components/forms/select/types").Option[];
|
|
1871
2067
|
searchable: boolean;
|
|
1872
2068
|
closeOnSelect: boolean;
|
|
1873
2069
|
fetchOnSearch: boolean;
|
|
1874
|
-
|
|
1875
|
-
name: string;
|
|
1876
|
-
value: string;
|
|
1877
|
-
}[];
|
|
1878
|
-
placeholder: string;
|
|
2070
|
+
searchPlaceholder: string;
|
|
1879
2071
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1880
2072
|
$slots: {
|
|
1881
2073
|
label: (_: {
|
|
@@ -1889,30 +2081,10 @@ export declare const components: {
|
|
|
1889
2081
|
toggleDropdown: () => void;
|
|
1890
2082
|
};
|
|
1891
2083
|
isOpen: boolean;
|
|
1892
|
-
select: (selected:
|
|
1893
|
-
|
|
1894
|
-
value: string;
|
|
1895
|
-
}) => void;
|
|
1896
|
-
selected: {
|
|
1897
|
-
name: string;
|
|
1898
|
-
value: string;
|
|
1899
|
-
} | {
|
|
1900
|
-
name: string;
|
|
1901
|
-
value: string;
|
|
1902
|
-
}[] | undefined;
|
|
1903
|
-
}) => any;
|
|
1904
|
-
search: (_: {
|
|
1905
|
-
filter: string;
|
|
1906
|
-
}) => any;
|
|
1907
|
-
default: (_: {
|
|
1908
|
-
text: string;
|
|
1909
|
-
value: string;
|
|
1910
|
-
option: {
|
|
1911
|
-
name: string;
|
|
1912
|
-
value: string;
|
|
1913
|
-
};
|
|
1914
|
-
isSelected: boolean;
|
|
2084
|
+
select: (selected: import("./components/forms/select/types").Option) => void;
|
|
2085
|
+
selected: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined;
|
|
1915
2086
|
}) => any;
|
|
2087
|
+
search: (_: {}) => any;
|
|
1916
2088
|
'no-data': (_: {}) => any;
|
|
1917
2089
|
};
|
|
1918
2090
|
});
|
|
@@ -1942,8 +2114,8 @@ export declare const components: {
|
|
|
1942
2114
|
default: boolean;
|
|
1943
2115
|
};
|
|
1944
2116
|
}>> & {
|
|
1945
|
-
"onUpdate:selected"?: (() => any) | undefined;
|
|
1946
2117
|
onClose?: (() => any) | undefined;
|
|
2118
|
+
"onUpdate:selected"?: (() => any) | undefined;
|
|
1947
2119
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "removable">;
|
|
1948
2120
|
$attrs: {
|
|
1949
2121
|
[x: string]: unknown;
|
|
@@ -1956,7 +2128,7 @@ export declare const components: {
|
|
|
1956
2128
|
}>;
|
|
1957
2129
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1958
2130
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1959
|
-
$emit: ((event: "
|
|
2131
|
+
$emit: ((event: "close") => void) & ((event: "update:selected") => void);
|
|
1960
2132
|
$el: any;
|
|
1961
2133
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1962
2134
|
label: {
|
|
@@ -1978,8 +2150,8 @@ export declare const components: {
|
|
|
1978
2150
|
default: boolean;
|
|
1979
2151
|
};
|
|
1980
2152
|
}>> & {
|
|
1981
|
-
"onUpdate:selected"?: (() => any) | undefined;
|
|
1982
2153
|
onClose?: (() => any) | undefined;
|
|
2154
|
+
"onUpdate:selected"?: (() => any) | undefined;
|
|
1983
2155
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1984
2156
|
close: () => void;
|
|
1985
2157
|
} & {
|
|
@@ -2026,8 +2198,8 @@ export declare const components: {
|
|
|
2026
2198
|
default: boolean;
|
|
2027
2199
|
};
|
|
2028
2200
|
}>> & {
|
|
2029
|
-
"onUpdate:selected"?: (() => any) | undefined;
|
|
2030
2201
|
onClose?: (() => any) | undefined;
|
|
2202
|
+
"onUpdate:selected"?: (() => any) | undefined;
|
|
2031
2203
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
2032
2204
|
__isFragment?: undefined;
|
|
2033
2205
|
__isTeleport?: undefined;
|
|
@@ -2052,8 +2224,8 @@ export declare const components: {
|
|
|
2052
2224
|
default: boolean;
|
|
2053
2225
|
};
|
|
2054
2226
|
}>> & {
|
|
2055
|
-
"onUpdate:selected"?: (() => any) | undefined;
|
|
2056
2227
|
onClose?: (() => any) | undefined;
|
|
2228
|
+
"onUpdate:selected"?: (() => any) | undefined;
|
|
2057
2229
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2058
2230
|
close: () => void;
|
|
2059
2231
|
} & {
|