@solfacil/girassol 0.3.3 → 0.3.5
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/screens.d.ts +3 -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 +538 -370
- package/package.json +4 -4
- package/theme/solfacil/index.ts +2 -1
- package/theme/solfacil/screens.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,63 @@ export declare const components: {
|
|
|
1479
1633
|
disabled: {
|
|
1480
1634
|
type: import("vue").PropType<boolean>;
|
|
1481
1635
|
};
|
|
1636
|
+
required: {
|
|
1637
|
+
type: import("vue").PropType<boolean>;
|
|
1638
|
+
};
|
|
1639
|
+
size: {
|
|
1640
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1641
|
+
} & {
|
|
1642
|
+
default: string;
|
|
1643
|
+
};
|
|
1644
|
+
loading: {
|
|
1645
|
+
type: import("vue").PropType<boolean>;
|
|
1646
|
+
} & {
|
|
1647
|
+
default: boolean;
|
|
1648
|
+
};
|
|
1649
|
+
name: {
|
|
1650
|
+
type: import("vue").PropType<string>;
|
|
1651
|
+
required: true;
|
|
1652
|
+
};
|
|
1482
1653
|
error: {
|
|
1654
|
+
type: import("vue").PropType<string | null>;
|
|
1655
|
+
} & {
|
|
1656
|
+
default: null;
|
|
1657
|
+
};
|
|
1658
|
+
rules: {
|
|
1659
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1660
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1661
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1662
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1663
|
+
} | undefined>>;
|
|
1664
|
+
};
|
|
1665
|
+
selected: {
|
|
1666
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1667
|
+
};
|
|
1668
|
+
helperText: {
|
|
1669
|
+
type: import("vue").PropType<string>;
|
|
1670
|
+
};
|
|
1671
|
+
useField: {
|
|
1672
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1673
|
+
};
|
|
1674
|
+
opts: {
|
|
1675
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
1676
|
+
};
|
|
1677
|
+
placeholder: {
|
|
1483
1678
|
type: import("vue").PropType<string>;
|
|
1679
|
+
} & {
|
|
1680
|
+
default: string;
|
|
1484
1681
|
};
|
|
1485
1682
|
ariaLabel: {
|
|
1486
1683
|
type: import("vue").PropType<string>;
|
|
1487
1684
|
};
|
|
1488
|
-
|
|
1489
|
-
type: import("vue").PropType<
|
|
1685
|
+
options: {
|
|
1686
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
1687
|
+
required: true;
|
|
1688
|
+
} & {
|
|
1689
|
+
default: () => never[];
|
|
1490
1690
|
};
|
|
1491
|
-
|
|
1691
|
+
multiple: {
|
|
1492
1692
|
type: import("vue").PropType<boolean>;
|
|
1493
|
-
} & {
|
|
1494
|
-
default: boolean;
|
|
1495
1693
|
};
|
|
1496
1694
|
searchable: {
|
|
1497
1695
|
type: import("vue").PropType<boolean>;
|
|
@@ -1510,45 +1708,14 @@ export declare const components: {
|
|
|
1510
1708
|
};
|
|
1511
1709
|
searchPlaceholder: {
|
|
1512
1710
|
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
1711
|
} & {
|
|
1536
1712
|
default: string;
|
|
1537
1713
|
};
|
|
1538
|
-
multiple: {
|
|
1539
|
-
type: import("vue").PropType<boolean>;
|
|
1540
|
-
};
|
|
1541
1714
|
}>> & {
|
|
1715
|
+
"onUpdate:selected"?: ((value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => any) | undefined;
|
|
1542
1716
|
onSearch?: ((value: string) => any) | undefined;
|
|
1543
1717
|
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">;
|
|
1718
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "loading" | "error" | "placeholder" | "options" | "searchable" | "closeOnSelect" | "fetchOnSearch" | "searchPlaceholder">;
|
|
1552
1719
|
$attrs: {
|
|
1553
1720
|
[x: string]: unknown;
|
|
1554
1721
|
};
|
|
@@ -1560,13 +1727,7 @@ export declare const components: {
|
|
|
1560
1727
|
}>;
|
|
1561
1728
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1562
1729
|
$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);
|
|
1730
|
+
$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
1731
|
$el: any;
|
|
1571
1732
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1572
1733
|
label: {
|
|
@@ -1579,19 +1740,63 @@ export declare const components: {
|
|
|
1579
1740
|
disabled: {
|
|
1580
1741
|
type: import("vue").PropType<boolean>;
|
|
1581
1742
|
};
|
|
1743
|
+
required: {
|
|
1744
|
+
type: import("vue").PropType<boolean>;
|
|
1745
|
+
};
|
|
1746
|
+
size: {
|
|
1747
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1748
|
+
} & {
|
|
1749
|
+
default: string;
|
|
1750
|
+
};
|
|
1751
|
+
loading: {
|
|
1752
|
+
type: import("vue").PropType<boolean>;
|
|
1753
|
+
} & {
|
|
1754
|
+
default: boolean;
|
|
1755
|
+
};
|
|
1756
|
+
name: {
|
|
1757
|
+
type: import("vue").PropType<string>;
|
|
1758
|
+
required: true;
|
|
1759
|
+
};
|
|
1582
1760
|
error: {
|
|
1761
|
+
type: import("vue").PropType<string | null>;
|
|
1762
|
+
} & {
|
|
1763
|
+
default: null;
|
|
1764
|
+
};
|
|
1765
|
+
rules: {
|
|
1766
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1767
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1768
|
+
} | import("vue").Ref<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
|
+
} | undefined>>;
|
|
1771
|
+
};
|
|
1772
|
+
selected: {
|
|
1773
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1774
|
+
};
|
|
1775
|
+
helperText: {
|
|
1776
|
+
type: import("vue").PropType<string>;
|
|
1777
|
+
};
|
|
1778
|
+
useField: {
|
|
1779
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1780
|
+
};
|
|
1781
|
+
opts: {
|
|
1782
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
1783
|
+
};
|
|
1784
|
+
placeholder: {
|
|
1583
1785
|
type: import("vue").PropType<string>;
|
|
1786
|
+
} & {
|
|
1787
|
+
default: string;
|
|
1584
1788
|
};
|
|
1585
1789
|
ariaLabel: {
|
|
1586
1790
|
type: import("vue").PropType<string>;
|
|
1587
1791
|
};
|
|
1588
|
-
|
|
1589
|
-
type: import("vue").PropType<
|
|
1792
|
+
options: {
|
|
1793
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
1794
|
+
required: true;
|
|
1795
|
+
} & {
|
|
1796
|
+
default: () => never[];
|
|
1590
1797
|
};
|
|
1591
|
-
|
|
1798
|
+
multiple: {
|
|
1592
1799
|
type: import("vue").PropType<boolean>;
|
|
1593
|
-
} & {
|
|
1594
|
-
default: boolean;
|
|
1595
1800
|
};
|
|
1596
1801
|
searchable: {
|
|
1597
1802
|
type: import("vue").PropType<boolean>;
|
|
@@ -1610,66 +1815,29 @@ export declare const components: {
|
|
|
1610
1815
|
};
|
|
1611
1816
|
searchPlaceholder: {
|
|
1612
1817
|
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
1818
|
} & {
|
|
1636
1819
|
default: string;
|
|
1637
1820
|
};
|
|
1638
|
-
multiple: {
|
|
1639
|
-
type: import("vue").PropType<boolean>;
|
|
1640
|
-
};
|
|
1641
1821
|
}>> & {
|
|
1822
|
+
"onUpdate:selected"?: ((value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => any) | undefined;
|
|
1642
1823
|
onSearch?: ((value: string) => any) | undefined;
|
|
1643
1824
|
onCloseDropdown?: (() => any) | undefined;
|
|
1644
|
-
"onUpdate:selected"?: ((value: {
|
|
1645
|
-
name: string;
|
|
1646
|
-
value: string;
|
|
1647
|
-
} | {
|
|
1648
|
-
name: string;
|
|
1649
|
-
value: string;
|
|
1650
|
-
}[]) => any) | undefined;
|
|
1651
1825
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1652
1826
|
closeDropdown: () => void;
|
|
1653
1827
|
} & {
|
|
1654
1828
|
search: (value: string) => void;
|
|
1655
1829
|
} & {
|
|
1656
|
-
"update:selected": (value:
|
|
1657
|
-
name: string;
|
|
1658
|
-
value: string;
|
|
1659
|
-
} | {
|
|
1660
|
-
name: string;
|
|
1661
|
-
value: string;
|
|
1662
|
-
}[]) => void;
|
|
1830
|
+
"update:selected": (value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => void;
|
|
1663
1831
|
}, string, {
|
|
1832
|
+
size: import("./components/forms/select/types").Size;
|
|
1664
1833
|
loading: boolean;
|
|
1834
|
+
error: string | null;
|
|
1835
|
+
placeholder: string;
|
|
1836
|
+
options: import("./components/forms/select/types").Option[];
|
|
1665
1837
|
searchable: boolean;
|
|
1666
1838
|
closeOnSelect: boolean;
|
|
1667
1839
|
fetchOnSearch: boolean;
|
|
1668
|
-
|
|
1669
|
-
name: string;
|
|
1670
|
-
value: string;
|
|
1671
|
-
}[];
|
|
1672
|
-
placeholder: string;
|
|
1840
|
+
searchPlaceholder: string;
|
|
1673
1841
|
}> & {
|
|
1674
1842
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1675
1843
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1701,19 +1869,63 @@ export declare const components: {
|
|
|
1701
1869
|
disabled: {
|
|
1702
1870
|
type: import("vue").PropType<boolean>;
|
|
1703
1871
|
};
|
|
1872
|
+
required: {
|
|
1873
|
+
type: import("vue").PropType<boolean>;
|
|
1874
|
+
};
|
|
1875
|
+
size: {
|
|
1876
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1877
|
+
} & {
|
|
1878
|
+
default: string;
|
|
1879
|
+
};
|
|
1880
|
+
loading: {
|
|
1881
|
+
type: import("vue").PropType<boolean>;
|
|
1882
|
+
} & {
|
|
1883
|
+
default: boolean;
|
|
1884
|
+
};
|
|
1885
|
+
name: {
|
|
1886
|
+
type: import("vue").PropType<string>;
|
|
1887
|
+
required: true;
|
|
1888
|
+
};
|
|
1704
1889
|
error: {
|
|
1890
|
+
type: import("vue").PropType<string | null>;
|
|
1891
|
+
} & {
|
|
1892
|
+
default: null;
|
|
1893
|
+
};
|
|
1894
|
+
rules: {
|
|
1895
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1896
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1897
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1898
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1899
|
+
} | undefined>>;
|
|
1900
|
+
};
|
|
1901
|
+
selected: {
|
|
1902
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
1903
|
+
};
|
|
1904
|
+
helperText: {
|
|
1705
1905
|
type: import("vue").PropType<string>;
|
|
1706
1906
|
};
|
|
1907
|
+
useField: {
|
|
1908
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
1909
|
+
};
|
|
1910
|
+
opts: {
|
|
1911
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
1912
|
+
};
|
|
1913
|
+
placeholder: {
|
|
1914
|
+
type: import("vue").PropType<string>;
|
|
1915
|
+
} & {
|
|
1916
|
+
default: string;
|
|
1917
|
+
};
|
|
1707
1918
|
ariaLabel: {
|
|
1708
1919
|
type: import("vue").PropType<string>;
|
|
1709
1920
|
};
|
|
1710
|
-
|
|
1711
|
-
type: import("vue").PropType<
|
|
1921
|
+
options: {
|
|
1922
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
1923
|
+
required: true;
|
|
1924
|
+
} & {
|
|
1925
|
+
default: () => never[];
|
|
1712
1926
|
};
|
|
1713
|
-
|
|
1927
|
+
multiple: {
|
|
1714
1928
|
type: import("vue").PropType<boolean>;
|
|
1715
|
-
} & {
|
|
1716
|
-
default: boolean;
|
|
1717
1929
|
};
|
|
1718
1930
|
searchable: {
|
|
1719
1931
|
type: import("vue").PropType<boolean>;
|
|
@@ -1732,44 +1944,13 @@ export declare const components: {
|
|
|
1732
1944
|
};
|
|
1733
1945
|
searchPlaceholder: {
|
|
1734
1946
|
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
1947
|
} & {
|
|
1758
1948
|
default: string;
|
|
1759
1949
|
};
|
|
1760
|
-
multiple: {
|
|
1761
|
-
type: import("vue").PropType<boolean>;
|
|
1762
|
-
};
|
|
1763
1950
|
}>> & {
|
|
1951
|
+
"onUpdate:selected"?: ((value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => any) | undefined;
|
|
1764
1952
|
onSearch?: ((value: string) => any) | undefined;
|
|
1765
1953
|
onCloseDropdown?: (() => any) | undefined;
|
|
1766
|
-
"onUpdate:selected"?: ((value: {
|
|
1767
|
-
name: string;
|
|
1768
|
-
value: string;
|
|
1769
|
-
} | {
|
|
1770
|
-
name: string;
|
|
1771
|
-
value: string;
|
|
1772
|
-
}[]) => any) | undefined;
|
|
1773
1954
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
1774
1955
|
__isFragment?: undefined;
|
|
1775
1956
|
__isTeleport?: undefined;
|
|
@@ -1785,19 +1966,63 @@ export declare const components: {
|
|
|
1785
1966
|
disabled: {
|
|
1786
1967
|
type: import("vue").PropType<boolean>;
|
|
1787
1968
|
};
|
|
1969
|
+
required: {
|
|
1970
|
+
type: import("vue").PropType<boolean>;
|
|
1971
|
+
};
|
|
1972
|
+
size: {
|
|
1973
|
+
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
1974
|
+
} & {
|
|
1975
|
+
default: string;
|
|
1976
|
+
};
|
|
1977
|
+
loading: {
|
|
1978
|
+
type: import("vue").PropType<boolean>;
|
|
1979
|
+
} & {
|
|
1980
|
+
default: boolean;
|
|
1981
|
+
};
|
|
1982
|
+
name: {
|
|
1983
|
+
type: import("vue").PropType<string>;
|
|
1984
|
+
required: true;
|
|
1985
|
+
};
|
|
1788
1986
|
error: {
|
|
1987
|
+
type: import("vue").PropType<string | null>;
|
|
1988
|
+
} & {
|
|
1989
|
+
default: null;
|
|
1990
|
+
};
|
|
1991
|
+
rules: {
|
|
1992
|
+
type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1993
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1994
|
+
} | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction<unknown> | import("vee-validate").GenericValidateFunction<unknown>[] | {
|
|
1995
|
+
validate(value: unknown, options: Record<string, any>): Promise<unknown>;
|
|
1996
|
+
} | undefined>>;
|
|
1997
|
+
};
|
|
1998
|
+
selected: {
|
|
1999
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[]>;
|
|
2000
|
+
};
|
|
2001
|
+
helperText: {
|
|
2002
|
+
type: import("vue").PropType<string>;
|
|
2003
|
+
};
|
|
2004
|
+
useField: {
|
|
2005
|
+
type: import("vue").PropType<typeof import("vee-validate").useField>;
|
|
2006
|
+
};
|
|
2007
|
+
opts: {
|
|
2008
|
+
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/select/types").Option>>>;
|
|
2009
|
+
};
|
|
2010
|
+
placeholder: {
|
|
1789
2011
|
type: import("vue").PropType<string>;
|
|
2012
|
+
} & {
|
|
2013
|
+
default: string;
|
|
1790
2014
|
};
|
|
1791
2015
|
ariaLabel: {
|
|
1792
2016
|
type: import("vue").PropType<string>;
|
|
1793
2017
|
};
|
|
1794
|
-
|
|
1795
|
-
type: import("vue").PropType<
|
|
2018
|
+
options: {
|
|
2019
|
+
type: import("vue").PropType<import("./components/forms/select/types").Option[]>;
|
|
2020
|
+
required: true;
|
|
2021
|
+
} & {
|
|
2022
|
+
default: () => never[];
|
|
1796
2023
|
};
|
|
1797
|
-
|
|
2024
|
+
multiple: {
|
|
1798
2025
|
type: import("vue").PropType<boolean>;
|
|
1799
|
-
} & {
|
|
1800
|
-
default: boolean;
|
|
1801
2026
|
};
|
|
1802
2027
|
searchable: {
|
|
1803
2028
|
type: import("vue").PropType<boolean>;
|
|
@@ -1816,66 +2041,29 @@ export declare const components: {
|
|
|
1816
2041
|
};
|
|
1817
2042
|
searchPlaceholder: {
|
|
1818
2043
|
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
2044
|
} & {
|
|
1842
2045
|
default: string;
|
|
1843
2046
|
};
|
|
1844
|
-
multiple: {
|
|
1845
|
-
type: import("vue").PropType<boolean>;
|
|
1846
|
-
};
|
|
1847
2047
|
}>> & {
|
|
2048
|
+
"onUpdate:selected"?: ((value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => any) | undefined;
|
|
1848
2049
|
onSearch?: ((value: string) => any) | undefined;
|
|
1849
2050
|
onCloseDropdown?: (() => any) | undefined;
|
|
1850
|
-
"onUpdate:selected"?: ((value: {
|
|
1851
|
-
name: string;
|
|
1852
|
-
value: string;
|
|
1853
|
-
} | {
|
|
1854
|
-
name: string;
|
|
1855
|
-
value: string;
|
|
1856
|
-
}[]) => any) | undefined;
|
|
1857
2051
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1858
2052
|
closeDropdown: () => void;
|
|
1859
2053
|
} & {
|
|
1860
2054
|
search: (value: string) => void;
|
|
1861
2055
|
} & {
|
|
1862
|
-
"update:selected": (value:
|
|
1863
|
-
name: string;
|
|
1864
|
-
value: string;
|
|
1865
|
-
} | {
|
|
1866
|
-
name: string;
|
|
1867
|
-
value: string;
|
|
1868
|
-
}[]) => void;
|
|
2056
|
+
"update:selected": (value: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined) => void;
|
|
1869
2057
|
}, string, {
|
|
2058
|
+
size: import("./components/forms/select/types").Size;
|
|
1870
2059
|
loading: boolean;
|
|
2060
|
+
error: string | null;
|
|
2061
|
+
placeholder: string;
|
|
2062
|
+
options: import("./components/forms/select/types").Option[];
|
|
1871
2063
|
searchable: boolean;
|
|
1872
2064
|
closeOnSelect: boolean;
|
|
1873
2065
|
fetchOnSearch: boolean;
|
|
1874
|
-
|
|
1875
|
-
name: string;
|
|
1876
|
-
value: string;
|
|
1877
|
-
}[];
|
|
1878
|
-
placeholder: string;
|
|
2066
|
+
searchPlaceholder: string;
|
|
1879
2067
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1880
2068
|
$slots: {
|
|
1881
2069
|
label: (_: {
|
|
@@ -1889,30 +2077,10 @@ export declare const components: {
|
|
|
1889
2077
|
toggleDropdown: () => void;
|
|
1890
2078
|
};
|
|
1891
2079
|
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;
|
|
2080
|
+
select: (selected: import("./components/forms/select/types").Option) => void;
|
|
2081
|
+
selected: import("./components/forms/select/types").Option | import("./components/forms/select/types").Option[] | undefined;
|
|
1915
2082
|
}) => any;
|
|
2083
|
+
search: (_: {}) => any;
|
|
1916
2084
|
'no-data': (_: {}) => any;
|
|
1917
2085
|
};
|
|
1918
2086
|
});
|
|
@@ -1942,8 +2110,8 @@ export declare const components: {
|
|
|
1942
2110
|
default: boolean;
|
|
1943
2111
|
};
|
|
1944
2112
|
}>> & {
|
|
1945
|
-
"onUpdate:selected"?: (() => any) | undefined;
|
|
1946
2113
|
onClose?: (() => any) | undefined;
|
|
2114
|
+
"onUpdate:selected"?: (() => any) | undefined;
|
|
1947
2115
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "removable">;
|
|
1948
2116
|
$attrs: {
|
|
1949
2117
|
[x: string]: unknown;
|
|
@@ -1956,7 +2124,7 @@ export declare const components: {
|
|
|
1956
2124
|
}>;
|
|
1957
2125
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1958
2126
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1959
|
-
$emit: ((event: "
|
|
2127
|
+
$emit: ((event: "close") => void) & ((event: "update:selected") => void);
|
|
1960
2128
|
$el: any;
|
|
1961
2129
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1962
2130
|
label: {
|
|
@@ -1978,8 +2146,8 @@ export declare const components: {
|
|
|
1978
2146
|
default: boolean;
|
|
1979
2147
|
};
|
|
1980
2148
|
}>> & {
|
|
1981
|
-
"onUpdate:selected"?: (() => any) | undefined;
|
|
1982
2149
|
onClose?: (() => any) | undefined;
|
|
2150
|
+
"onUpdate:selected"?: (() => any) | undefined;
|
|
1983
2151
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1984
2152
|
close: () => void;
|
|
1985
2153
|
} & {
|
|
@@ -2026,8 +2194,8 @@ export declare const components: {
|
|
|
2026
2194
|
default: boolean;
|
|
2027
2195
|
};
|
|
2028
2196
|
}>> & {
|
|
2029
|
-
"onUpdate:selected"?: (() => any) | undefined;
|
|
2030
2197
|
onClose?: (() => any) | undefined;
|
|
2198
|
+
"onUpdate:selected"?: (() => any) | undefined;
|
|
2031
2199
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
2032
2200
|
__isFragment?: undefined;
|
|
2033
2201
|
__isTeleport?: undefined;
|
|
@@ -2052,8 +2220,8 @@ export declare const components: {
|
|
|
2052
2220
|
default: boolean;
|
|
2053
2221
|
};
|
|
2054
2222
|
}>> & {
|
|
2055
|
-
"onUpdate:selected"?: (() => any) | undefined;
|
|
2056
2223
|
onClose?: (() => any) | undefined;
|
|
2224
|
+
"onUpdate:selected"?: (() => any) | undefined;
|
|
2057
2225
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2058
2226
|
close: () => void;
|
|
2059
2227
|
} & {
|