@solfacil/girassol 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/dist/components.d.ts +2 -3
  2. package/dist/components.json +1 -1
  3. package/dist/girassol.es.js +2990 -973
  4. package/dist/girassol.umd.js +10 -6
  5. package/dist/style.css +1 -1
  6. package/dist/types/components/forms/inputs/index.d.ts +3 -0
  7. package/dist/types/components/forms/{input → inputs/input-core}/Input.vue.d.ts +47 -23
  8. package/dist/types/components/forms/{input → inputs/input-core}/input.spec.d.ts +0 -0
  9. package/dist/types/components/forms/{textfield/TextfieldPassword.vue.d.ts → inputs/input-password/InputPassword.vue.d.ts} +76 -23
  10. package/dist/types/components/forms/{textfield/textfield-password.spec.d.ts → inputs/input-password/input-password.spec.d.ts} +0 -0
  11. package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +181 -0
  12. package/dist/types/components/forms/{textfield/textfield.spec.d.ts → inputs/input-text/input-text.spec.d.ts} +0 -0
  13. package/dist/types/components/forms/inputs/types.d.ts +24 -0
  14. package/dist/types/components/loader/CircleLoader.vue.d.ts +19 -8
  15. package/dist/types/composables/use-validate-field/index.d.ts +5 -0
  16. package/dist/types/composables/use-validate-field/types.d.ts +9 -0
  17. package/dist/types/index.d.ts +404 -207
  18. package/package.json +3 -2
  19. package/theme/solfacil/colors.ts +1 -1
  20. package/windi.config.ts +11 -11
  21. package/dist/theme/safelist.d.ts +0 -14
  22. package/dist/types/components/forms/input/index.d.ts +0 -2
  23. package/dist/types/components/forms/textfield/Textfield.vue.d.ts +0 -129
  24. package/dist/types/components/forms/textfield/index.d.ts +0 -3
@@ -1,7 +1,6 @@
1
1
  import type { App } from 'vue';
2
2
  import { SolButton, SolButtonDestructive } from './components/forms/button';
3
- import { SolInput } from './components/forms/input';
4
- import { SolTextfield, SolTextfieldPassword } from './components/forms/textfield';
3
+ import { SolInputText, SolInputTextPassword } from './components/forms/inputs';
5
4
  import { SolTextarea } from './components/forms/textarea';
6
5
  import { SolRadio, SolRadioGroup } from './components/forms/radio';
7
6
  import { SolCheckbox, SolCheckboxGroup } from './components/forms/checkbox';
@@ -40,14 +39,14 @@ export declare const components: {
40
39
  disabled: {
41
40
  type: import("vue").PropType<boolean>;
42
41
  };
43
- loading: {
44
- type: import("vue").PropType<boolean>;
45
- };
46
42
  size: {
47
43
  type: import("vue").PropType<"small" | "large" | "medium">;
48
44
  } & {
49
45
  default: string;
50
46
  };
47
+ loading: {
48
+ type: import("vue").PropType<boolean>;
49
+ };
51
50
  variant: {
52
51
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
53
52
  } & {
@@ -80,14 +79,14 @@ export declare const components: {
80
79
  disabled: {
81
80
  type: import("vue").PropType<boolean>;
82
81
  };
83
- loading: {
84
- type: import("vue").PropType<boolean>;
85
- };
86
82
  size: {
87
83
  type: import("vue").PropType<"small" | "large" | "medium">;
88
84
  } & {
89
85
  default: string;
90
86
  };
87
+ loading: {
88
+ type: import("vue").PropType<boolean>;
89
+ };
91
90
  variant: {
92
91
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
93
92
  } & {
@@ -130,14 +129,14 @@ export declare const components: {
130
129
  disabled: {
131
130
  type: import("vue").PropType<boolean>;
132
131
  };
133
- loading: {
134
- type: import("vue").PropType<boolean>;
135
- };
136
132
  size: {
137
133
  type: import("vue").PropType<"small" | "large" | "medium">;
138
134
  } & {
139
135
  default: string;
140
136
  };
137
+ loading: {
138
+ type: import("vue").PropType<boolean>;
139
+ };
141
140
  variant: {
142
141
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
143
142
  } & {
@@ -160,14 +159,14 @@ export declare const components: {
160
159
  disabled: {
161
160
  type: import("vue").PropType<boolean>;
162
161
  };
163
- loading: {
164
- type: import("vue").PropType<boolean>;
165
- };
166
162
  size: {
167
163
  type: import("vue").PropType<"small" | "large" | "medium">;
168
164
  } & {
169
165
  default: string;
170
166
  };
167
+ loading: {
168
+ type: import("vue").PropType<boolean>;
169
+ };
171
170
  variant: {
172
171
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
173
172
  } & {
@@ -279,129 +278,6 @@ export declare const components: {
279
278
  default: (_: {}) => any;
280
279
  };
281
280
  });
282
- SolInput: {
283
- new (...args: any[]): {
284
- $: import("vue").ComponentInternalInstance;
285
- $data: {};
286
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
287
- id: {
288
- type: import("vue").PropType<string>;
289
- required: true;
290
- };
291
- modelValue: {
292
- type: import("vue").PropType<string | number>;
293
- required: true;
294
- };
295
- invert: {
296
- type: import("vue").PropType<boolean>;
297
- };
298
- error: {
299
- type: import("vue").PropType<boolean>;
300
- };
301
- }>> & {
302
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
303
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
304
- $attrs: {
305
- [x: string]: unknown;
306
- };
307
- $refs: {
308
- [x: string]: unknown;
309
- };
310
- $slots: Readonly<{
311
- [name: string]: import("vue").Slot | undefined;
312
- }>;
313
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
314
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
315
- $emit: (event: "update:modelValue", event: string) => void;
316
- $el: any;
317
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
318
- id: {
319
- type: import("vue").PropType<string>;
320
- required: true;
321
- };
322
- modelValue: {
323
- type: import("vue").PropType<string | number>;
324
- required: true;
325
- };
326
- invert: {
327
- type: import("vue").PropType<boolean>;
328
- };
329
- error: {
330
- type: import("vue").PropType<boolean>;
331
- };
332
- }>> & {
333
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
334
- }, {
335
- input: import("vue").Ref<string>;
336
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
337
- "update:modelValue": (event: string) => void;
338
- }, string, {}> & {
339
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
340
- created?: ((() => void) | (() => void)[]) | undefined;
341
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
342
- mounted?: ((() => void) | (() => void)[]) | undefined;
343
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
344
- updated?: ((() => void) | (() => void)[]) | undefined;
345
- activated?: ((() => void) | (() => void)[]) | undefined;
346
- deactivated?: ((() => void) | (() => void)[]) | undefined;
347
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
348
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
349
- destroyed?: ((() => void) | (() => void)[]) | undefined;
350
- unmounted?: ((() => void) | (() => void)[]) | undefined;
351
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
352
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
353
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
354
- };
355
- $forceUpdate: () => void;
356
- $nextTick: typeof import("vue").nextTick;
357
- $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
358
- } & Readonly<import("vue").ExtractPropTypes<{
359
- id: {
360
- type: import("vue").PropType<string>;
361
- required: true;
362
- };
363
- modelValue: {
364
- type: import("vue").PropType<string | number>;
365
- required: true;
366
- };
367
- invert: {
368
- type: import("vue").PropType<boolean>;
369
- };
370
- error: {
371
- type: import("vue").PropType<boolean>;
372
- };
373
- }>> & {
374
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
375
- } & import("vue").ShallowUnwrapRef<{
376
- input: import("vue").Ref<string>;
377
- }> & {} & import("vue").ComponentCustomProperties;
378
- __isFragment?: undefined;
379
- __isTeleport?: undefined;
380
- __isSuspense?: undefined;
381
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
382
- id: {
383
- type: import("vue").PropType<string>;
384
- required: true;
385
- };
386
- modelValue: {
387
- type: import("vue").PropType<string | number>;
388
- required: true;
389
- };
390
- invert: {
391
- type: import("vue").PropType<boolean>;
392
- };
393
- error: {
394
- type: import("vue").PropType<boolean>;
395
- };
396
- }>> & {
397
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
398
- }, {
399
- input: import("vue").Ref<string>;
400
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
401
- "update:modelValue": (event: string) => void;
402
- }, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
403
- $slots: {};
404
- });
405
281
  SolTextarea: {
406
282
  new (...args: any[]): {
407
283
  $: import("vue").ComponentInternalInstance;
@@ -428,15 +304,15 @@ export declare const components: {
428
304
  } & {
429
305
  default: string;
430
306
  };
431
- invert: {
432
- type: import("vue").PropType<boolean>;
433
- };
434
307
  error: {
435
308
  type: import("vue").PropType<string>;
436
309
  };
437
310
  hint: {
438
311
  type: import("vue").PropType<string>;
439
312
  };
313
+ invert: {
314
+ type: import("vue").PropType<boolean>;
315
+ };
440
316
  resize: {
441
317
  type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
442
318
  } & {
@@ -476,15 +352,15 @@ export declare const components: {
476
352
  } & {
477
353
  default: string;
478
354
  };
479
- invert: {
480
- type: import("vue").PropType<boolean>;
481
- };
482
355
  error: {
483
356
  type: import("vue").PropType<string>;
484
357
  };
485
358
  hint: {
486
359
  type: import("vue").PropType<string>;
487
360
  };
361
+ invert: {
362
+ type: import("vue").PropType<boolean>;
363
+ };
488
364
  resize: {
489
365
  type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
490
366
  } & {
@@ -536,15 +412,15 @@ export declare const components: {
536
412
  } & {
537
413
  default: string;
538
414
  };
539
- invert: {
540
- type: import("vue").PropType<boolean>;
541
- };
542
415
  error: {
543
416
  type: import("vue").PropType<string>;
544
417
  };
545
418
  hint: {
546
419
  type: import("vue").PropType<string>;
547
420
  };
421
+ invert: {
422
+ type: import("vue").PropType<boolean>;
423
+ };
548
424
  resize: {
549
425
  type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
550
426
  } & {
@@ -574,15 +450,15 @@ export declare const components: {
574
450
  } & {
575
451
  default: string;
576
452
  };
577
- invert: {
578
- type: import("vue").PropType<boolean>;
579
- };
580
453
  error: {
581
454
  type: import("vue").PropType<string>;
582
455
  };
583
456
  hint: {
584
457
  type: import("vue").PropType<string>;
585
458
  };
459
+ invert: {
460
+ type: import("vue").PropType<boolean>;
461
+ };
586
462
  resize: {
587
463
  type: import("vue").PropType<"none" | "both" | "horizontal" | "vertical">;
588
464
  } & {
@@ -602,18 +478,19 @@ export declare const components: {
602
478
  default: (_: {}) => any;
603
479
  };
604
480
  });
605
- SolTextfield: {
481
+ SolInputText: {
606
482
  new (...args: any[]): {
607
483
  $: import("vue").ComponentInternalInstance;
608
484
  $data: {};
609
485
  $props: Partial<{
610
- label: string;
611
- modelValue: string | number;
486
+ error: string | null;
487
+ size: "sm" | "md";
612
488
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
613
489
  label: {
614
490
  type: import("vue").PropType<string>;
615
- } & {
616
- default: string;
491
+ };
492
+ required: {
493
+ type: import("vue").PropType<boolean>;
617
494
  };
618
495
  class: {
619
496
  type: import("vue").PropType<string>;
@@ -622,23 +499,61 @@ export declare const components: {
622
499
  type: import("vue").PropType<string>;
623
500
  required: true;
624
501
  };
502
+ disabled: {
503
+ type: import("vue").PropType<boolean>;
504
+ };
625
505
  modelValue: {
626
- type: import("vue").PropType<string | number>;
506
+ type: import("vue").PropType<string>;
507
+ };
508
+ error: {
509
+ type: import("vue").PropType<string | null>;
510
+ } & {
511
+ default: null;
512
+ };
513
+ size: {
514
+ type: import("vue").PropType<"sm" | "md">;
627
515
  } & {
628
516
  default: string;
629
517
  };
630
- invert: {
631
- type: import("vue").PropType<boolean>;
518
+ name: {
519
+ type: import("vue").PropType<string>;
520
+ required: true;
632
521
  };
633
- error: {
522
+ placeholder: {
634
523
  type: import("vue").PropType<string>;
635
524
  };
636
- hint: {
525
+ rules: {
526
+ type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
527
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
528
+ } | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
529
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
530
+ } | undefined>>;
531
+ };
532
+ helperText: {
533
+ type: import("vue").PropType<string>;
534
+ };
535
+ successText: {
536
+ type: import("vue").PropType<string>;
537
+ };
538
+ loadingText: {
637
539
  type: import("vue").PropType<string>;
638
540
  };
541
+ isSuccess: {
542
+ type: import("vue").PropType<boolean>;
543
+ };
544
+ isLoading: {
545
+ type: import("vue").PropType<boolean>;
546
+ };
547
+ useField: {
548
+ type: import("vue").PropType<typeof import("vee-validate").useField>;
549
+ };
550
+ opts: {
551
+ type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
552
+ };
639
553
  }>> & {
640
- "onUpdate:modelValue"?: ((event: string | number) => any) | undefined;
641
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "modelValue">;
554
+ onInput?: ((event: string) => any) | undefined;
555
+ "onUpdate:modelValue"?: ((event: string) => any) | undefined;
556
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "size">;
642
557
  $attrs: {
643
558
  [x: string]: unknown;
644
559
  };
@@ -650,13 +565,14 @@ export declare const components: {
650
565
  }>;
651
566
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
652
567
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
653
- $emit: (event: "update:modelValue", event: string | number) => void;
568
+ $emit: ((event: "input", event: string) => void) & ((event: "update:modelValue", event: string) => void);
654
569
  $el: any;
655
570
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
656
571
  label: {
657
572
  type: import("vue").PropType<string>;
658
- } & {
659
- default: string;
573
+ };
574
+ required: {
575
+ type: import("vue").PropType<boolean>;
660
576
  };
661
577
  class: {
662
578
  type: import("vue").PropType<string>;
@@ -665,27 +581,67 @@ export declare const components: {
665
581
  type: import("vue").PropType<string>;
666
582
  required: true;
667
583
  };
584
+ disabled: {
585
+ type: import("vue").PropType<boolean>;
586
+ };
668
587
  modelValue: {
669
- type: import("vue").PropType<string | number>;
588
+ type: import("vue").PropType<string>;
589
+ };
590
+ error: {
591
+ type: import("vue").PropType<string | null>;
592
+ } & {
593
+ default: null;
594
+ };
595
+ size: {
596
+ type: import("vue").PropType<"sm" | "md">;
670
597
  } & {
671
598
  default: string;
672
599
  };
673
- invert: {
674
- type: import("vue").PropType<boolean>;
600
+ name: {
601
+ type: import("vue").PropType<string>;
602
+ required: true;
675
603
  };
676
- error: {
604
+ placeholder: {
677
605
  type: import("vue").PropType<string>;
678
606
  };
679
- hint: {
607
+ rules: {
608
+ type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
609
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
610
+ } | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
611
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
612
+ } | undefined>>;
613
+ };
614
+ helperText: {
615
+ type: import("vue").PropType<string>;
616
+ };
617
+ successText: {
618
+ type: import("vue").PropType<string>;
619
+ };
620
+ loadingText: {
680
621
  type: import("vue").PropType<string>;
681
622
  };
623
+ isSuccess: {
624
+ type: import("vue").PropType<boolean>;
625
+ };
626
+ isLoading: {
627
+ type: import("vue").PropType<boolean>;
628
+ };
629
+ useField: {
630
+ type: import("vue").PropType<typeof import("vee-validate").useField>;
631
+ };
632
+ opts: {
633
+ type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
634
+ };
682
635
  }>> & {
683
- "onUpdate:modelValue"?: ((event: string | number) => any) | undefined;
636
+ onInput?: ((event: string) => any) | undefined;
637
+ "onUpdate:modelValue"?: ((event: string) => any) | undefined;
684
638
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
685
- "update:modelValue": (event: string | number) => void;
639
+ input: (event: string) => void;
640
+ } & {
641
+ "update:modelValue": (event: string) => void;
686
642
  }, string, {
687
- label: string;
688
- modelValue: string | number;
643
+ error: string | null;
644
+ size: "sm" | "md";
689
645
  }> & {
690
646
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
691
647
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -709,8 +665,9 @@ export declare const components: {
709
665
  } & Readonly<import("vue").ExtractPropTypes<{
710
666
  label: {
711
667
  type: import("vue").PropType<string>;
712
- } & {
713
- default: string;
668
+ };
669
+ required: {
670
+ type: import("vue").PropType<boolean>;
714
671
  };
715
672
  class: {
716
673
  type: import("vue").PropType<string>;
@@ -719,22 +676,60 @@ export declare const components: {
719
676
  type: import("vue").PropType<string>;
720
677
  required: true;
721
678
  };
679
+ disabled: {
680
+ type: import("vue").PropType<boolean>;
681
+ };
722
682
  modelValue: {
723
- type: import("vue").PropType<string | number>;
683
+ type: import("vue").PropType<string>;
684
+ };
685
+ error: {
686
+ type: import("vue").PropType<string | null>;
687
+ } & {
688
+ default: null;
689
+ };
690
+ size: {
691
+ type: import("vue").PropType<"sm" | "md">;
724
692
  } & {
725
693
  default: string;
726
694
  };
727
- invert: {
728
- type: import("vue").PropType<boolean>;
695
+ name: {
696
+ type: import("vue").PropType<string>;
697
+ required: true;
729
698
  };
730
- error: {
699
+ placeholder: {
731
700
  type: import("vue").PropType<string>;
732
701
  };
733
- hint: {
702
+ rules: {
703
+ type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
704
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
705
+ } | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
706
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
707
+ } | undefined>>;
708
+ };
709
+ helperText: {
710
+ type: import("vue").PropType<string>;
711
+ };
712
+ successText: {
713
+ type: import("vue").PropType<string>;
714
+ };
715
+ loadingText: {
734
716
  type: import("vue").PropType<string>;
735
717
  };
718
+ isSuccess: {
719
+ type: import("vue").PropType<boolean>;
720
+ };
721
+ isLoading: {
722
+ type: import("vue").PropType<boolean>;
723
+ };
724
+ useField: {
725
+ type: import("vue").PropType<typeof import("vee-validate").useField>;
726
+ };
727
+ opts: {
728
+ type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
729
+ };
736
730
  }>> & {
737
- "onUpdate:modelValue"?: ((event: string | number) => any) | undefined;
731
+ onInput?: ((event: string) => any) | undefined;
732
+ "onUpdate:modelValue"?: ((event: string) => any) | undefined;
738
733
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
739
734
  __isFragment?: undefined;
740
735
  __isTeleport?: undefined;
@@ -742,8 +737,9 @@ export declare const components: {
742
737
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
743
738
  label: {
744
739
  type: import("vue").PropType<string>;
745
- } & {
746
- default: string;
740
+ };
741
+ required: {
742
+ type: import("vue").PropType<boolean>;
747
743
  };
748
744
  class: {
749
745
  type: import("vue").PropType<string>;
@@ -752,54 +748,133 @@ export declare const components: {
752
748
  type: import("vue").PropType<string>;
753
749
  required: true;
754
750
  };
751
+ disabled: {
752
+ type: import("vue").PropType<boolean>;
753
+ };
755
754
  modelValue: {
756
- type: import("vue").PropType<string | number>;
755
+ type: import("vue").PropType<string>;
756
+ };
757
+ error: {
758
+ type: import("vue").PropType<string | null>;
759
+ } & {
760
+ default: null;
761
+ };
762
+ size: {
763
+ type: import("vue").PropType<"sm" | "md">;
757
764
  } & {
758
765
  default: string;
759
766
  };
760
- invert: {
761
- type: import("vue").PropType<boolean>;
767
+ name: {
768
+ type: import("vue").PropType<string>;
769
+ required: true;
762
770
  };
763
- error: {
771
+ placeholder: {
764
772
  type: import("vue").PropType<string>;
765
773
  };
766
- hint: {
774
+ rules: {
775
+ type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
776
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
777
+ } | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
778
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
779
+ } | undefined>>;
780
+ };
781
+ helperText: {
767
782
  type: import("vue").PropType<string>;
768
783
  };
784
+ successText: {
785
+ type: import("vue").PropType<string>;
786
+ };
787
+ loadingText: {
788
+ type: import("vue").PropType<string>;
789
+ };
790
+ isSuccess: {
791
+ type: import("vue").PropType<boolean>;
792
+ };
793
+ isLoading: {
794
+ type: import("vue").PropType<boolean>;
795
+ };
796
+ useField: {
797
+ type: import("vue").PropType<typeof import("vee-validate").useField>;
798
+ };
799
+ opts: {
800
+ type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
801
+ };
769
802
  }>> & {
770
- "onUpdate:modelValue"?: ((event: string | number) => any) | undefined;
803
+ onInput?: ((event: string) => any) | undefined;
804
+ "onUpdate:modelValue"?: ((event: string) => any) | undefined;
771
805
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
772
- "update:modelValue": (event: string | number) => void;
806
+ input: (event: string) => void;
807
+ } & {
808
+ "update:modelValue": (event: string) => void;
773
809
  }, string, {
774
- label: string;
775
- modelValue: string | number;
810
+ error: string | null;
811
+ size: "sm" | "md";
776
812
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
777
813
  $slots: {
778
- label: (_: {}) => any;
779
- default: (_: {}) => any;
780
814
  icon: (_: {}) => any;
781
815
  };
782
816
  });
783
- SolTextfieldPassword: {
817
+ SolInputTextPassword: {
784
818
  new (...args: any[]): {
785
819
  $: import("vue").ComponentInternalInstance;
786
820
  $data: {};
787
821
  $props: Partial<{
788
- label: string;
789
- id: string;
822
+ required: boolean;
823
+ name: string;
824
+ placeholder: string;
790
825
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
791
826
  label: {
792
827
  type: import("vue").PropType<string>;
828
+ };
829
+ required: {
830
+ type: import("vue").PropType<boolean>;
793
831
  } & {
794
- default: string;
832
+ default: boolean;
795
833
  };
796
834
  id: {
797
835
  type: import("vue").PropType<string>;
798
836
  required: true;
837
+ };
838
+ disabled: {
839
+ type: import("vue").PropType<boolean>;
840
+ };
841
+ modelValue: {
842
+ type: import("vue").PropType<string>;
843
+ };
844
+ error: {
845
+ type: import("vue").PropType<string | null>;
846
+ };
847
+ size: {
848
+ type: import("vue").PropType<"sm" | "md">;
849
+ };
850
+ name: {
851
+ type: import("vue").PropType<string>;
852
+ required: true;
853
+ } & {
854
+ default: string;
855
+ };
856
+ placeholder: {
857
+ type: import("vue").PropType<string>;
799
858
  } & {
800
859
  default: string;
801
860
  };
802
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "id">;
861
+ rules: {
862
+ type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
863
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
864
+ } | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
865
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
866
+ } | undefined>>;
867
+ };
868
+ helperText: {
869
+ type: import("vue").PropType<string>;
870
+ };
871
+ useField: {
872
+ type: import("vue").PropType<typeof import("vee-validate").useField>;
873
+ };
874
+ opts: {
875
+ type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
876
+ };
877
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "name" | "placeholder">;
803
878
  $attrs: {
804
879
  [x: string]: unknown;
805
880
  };
@@ -816,18 +891,59 @@ export declare const components: {
816
891
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
817
892
  label: {
818
893
  type: import("vue").PropType<string>;
894
+ };
895
+ required: {
896
+ type: import("vue").PropType<boolean>;
819
897
  } & {
820
- default: string;
898
+ default: boolean;
821
899
  };
822
900
  id: {
823
901
  type: import("vue").PropType<string>;
824
902
  required: true;
903
+ };
904
+ disabled: {
905
+ type: import("vue").PropType<boolean>;
906
+ };
907
+ modelValue: {
908
+ type: import("vue").PropType<string>;
909
+ };
910
+ error: {
911
+ type: import("vue").PropType<string | null>;
912
+ };
913
+ size: {
914
+ type: import("vue").PropType<"sm" | "md">;
915
+ };
916
+ name: {
917
+ type: import("vue").PropType<string>;
918
+ required: true;
825
919
  } & {
826
920
  default: string;
827
921
  };
922
+ placeholder: {
923
+ type: import("vue").PropType<string>;
924
+ } & {
925
+ default: string;
926
+ };
927
+ rules: {
928
+ type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
929
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
930
+ } | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
931
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
932
+ } | undefined>>;
933
+ };
934
+ helperText: {
935
+ type: import("vue").PropType<string>;
936
+ };
937
+ useField: {
938
+ type: import("vue").PropType<typeof import("vee-validate").useField>;
939
+ };
940
+ opts: {
941
+ type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
942
+ };
828
943
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
829
- label: string;
830
- id: string;
944
+ required: boolean;
945
+ name: string;
946
+ placeholder: string;
831
947
  }> & {
832
948
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
833
949
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -851,15 +967,55 @@ export declare const components: {
851
967
  } & Readonly<import("vue").ExtractPropTypes<{
852
968
  label: {
853
969
  type: import("vue").PropType<string>;
970
+ };
971
+ required: {
972
+ type: import("vue").PropType<boolean>;
854
973
  } & {
855
- default: string;
974
+ default: boolean;
856
975
  };
857
976
  id: {
858
977
  type: import("vue").PropType<string>;
859
978
  required: true;
979
+ };
980
+ disabled: {
981
+ type: import("vue").PropType<boolean>;
982
+ };
983
+ modelValue: {
984
+ type: import("vue").PropType<string>;
985
+ };
986
+ error: {
987
+ type: import("vue").PropType<string | null>;
988
+ };
989
+ size: {
990
+ type: import("vue").PropType<"sm" | "md">;
991
+ };
992
+ name: {
993
+ type: import("vue").PropType<string>;
994
+ required: true;
995
+ } & {
996
+ default: string;
997
+ };
998
+ placeholder: {
999
+ type: import("vue").PropType<string>;
860
1000
  } & {
861
1001
  default: string;
862
1002
  };
1003
+ rules: {
1004
+ type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
1005
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
1006
+ } | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
1007
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
1008
+ } | undefined>>;
1009
+ };
1010
+ helperText: {
1011
+ type: import("vue").PropType<string>;
1012
+ };
1013
+ useField: {
1014
+ type: import("vue").PropType<typeof import("vee-validate").useField>;
1015
+ };
1016
+ opts: {
1017
+ type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
1018
+ };
863
1019
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
864
1020
  __isFragment?: undefined;
865
1021
  __isTeleport?: undefined;
@@ -867,18 +1023,59 @@ export declare const components: {
867
1023
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
868
1024
  label: {
869
1025
  type: import("vue").PropType<string>;
1026
+ };
1027
+ required: {
1028
+ type: import("vue").PropType<boolean>;
870
1029
  } & {
871
- default: string;
1030
+ default: boolean;
872
1031
  };
873
1032
  id: {
874
1033
  type: import("vue").PropType<string>;
875
1034
  required: true;
1035
+ };
1036
+ disabled: {
1037
+ type: import("vue").PropType<boolean>;
1038
+ };
1039
+ modelValue: {
1040
+ type: import("vue").PropType<string>;
1041
+ };
1042
+ error: {
1043
+ type: import("vue").PropType<string | null>;
1044
+ };
1045
+ size: {
1046
+ type: import("vue").PropType<"sm" | "md">;
1047
+ };
1048
+ name: {
1049
+ type: import("vue").PropType<string>;
1050
+ required: true;
876
1051
  } & {
877
1052
  default: string;
878
1053
  };
1054
+ placeholder: {
1055
+ type: import("vue").PropType<string>;
1056
+ } & {
1057
+ default: string;
1058
+ };
1059
+ rules: {
1060
+ type: import("vue").PropType<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
1061
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
1062
+ } | import("vue").Ref<string | Record<string, unknown> | import("vee-validate").GenericValidateFunction | import("vee-validate").GenericValidateFunction[] | {
1063
+ validate(value: unknown, options: Record<string, any>): Promise<unknown>;
1064
+ } | undefined>>;
1065
+ };
1066
+ helperText: {
1067
+ type: import("vue").PropType<string>;
1068
+ };
1069
+ useField: {
1070
+ type: import("vue").PropType<typeof import("vee-validate").useField>;
1071
+ };
1072
+ opts: {
1073
+ type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<string>>>;
1074
+ };
879
1075
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
880
- label: string;
881
- id: string;
1076
+ required: boolean;
1077
+ name: string;
1078
+ placeholder: string;
882
1079
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
883
1080
  $slots: {};
884
1081
  });
@@ -3275,4 +3472,4 @@ export declare const components: {
3275
3472
  });
3276
3473
  };
3277
3474
  export declare function install(App: App): void;
3278
- export { SolButton, SolButtonDestructive, SolInput, SolTextarea, SolTextfield, SolTextfieldPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolDropdown, SolSelect, SolChip, SolAccordion, SolMenu, SolMenuItemLink, SolMenuNavigationLinks, };
3475
+ export { SolButton, SolButtonDestructive, SolTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolDropdown, SolSelect, SolChip, SolAccordion, SolMenu, SolMenuItemLink, SolMenuNavigationLinks, };