@solfacil/girassol 0.2.6 → 0.2.9

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 (41) hide show
  1. package/README.md +1 -1
  2. package/dist/components.d.ts +1 -0
  3. package/dist/components.json +1 -1
  4. package/dist/girassol.es.js +988 -894
  5. package/dist/girassol.umd.js +4 -4
  6. package/dist/main.css +29 -29
  7. package/dist/style.css +1 -1
  8. package/dist/theme/solfacil/screens.d.ts +0 -1
  9. package/dist/theme/solfacil/typography.d.ts +0 -1
  10. package/dist/types/components/accordion/Accordion.vue.d.ts +5 -4
  11. package/dist/types/components/forms/button/Button.vue.d.ts +4 -4
  12. package/dist/types/components/informations/chip/Chip.vue.d.ts +1 -1
  13. package/dist/types/components/{menu → menus/menu}/Menu.vue.d.ts +18 -26
  14. package/dist/types/components/{menu → menus/menu}/index.d.ts +0 -0
  15. package/dist/types/components/{menu → menus/menu}/menu.spec.d.ts +0 -0
  16. package/dist/types/components/menus/menu-item/menu-item-link/MenuItemLink.vue.d.ts +100 -0
  17. package/dist/types/components/{menu-item → menus/menu-item/menu-item-link}/index.d.ts +0 -0
  18. package/dist/types/components/menus/menu-item/menu-item-link/types.d.ts +6 -0
  19. package/dist/types/components/{menu-item/MenuItemLink.vue.d.ts → menus/menu-navigation-links/MenuNavigationLinks.vue.d.ts} +12 -16
  20. package/dist/types/components/menus/menu-navigation-links/index.d.ts +2 -0
  21. package/dist/types/index.d.ts +212 -102
  22. package/package.json +11 -11
  23. package/public/main.css +29 -29
  24. package/theme/solfacil/screens.ts +1 -1
  25. package/theme/solfacil/typography.ts +1 -2
  26. package/theme/solfacil/utilities.ts +15 -8
  27. package/vite.config.ts +2 -1
  28. package/dist/fonts/lato/Lato-Bold.ttf +0 -0
  29. package/dist/fonts/lato/Lato-Medium.ttf +0 -0
  30. package/dist/fonts/lato/Lato-Regular.ttf +0 -0
  31. package/dist/fonts/roboto-slab/RobotoSlab.ttf +0 -0
  32. package/dist/fonts/rubik/Rubik-Bold.ttf +0 -0
  33. package/dist/fonts/rubik/Rubik-Medium.ttf +0 -0
  34. package/dist/fonts/rubik/Rubik-Regular.ttf +0 -0
  35. package/public/fonts/lato/Lato-Bold.ttf +0 -0
  36. package/public/fonts/lato/Lato-Medium.ttf +0 -0
  37. package/public/fonts/lato/Lato-Regular.ttf +0 -0
  38. package/public/fonts/roboto-slab/RobotoSlab.ttf +0 -0
  39. package/public/fonts/rubik/Rubik-Bold.ttf +0 -0
  40. package/public/fonts/rubik/Rubik-Medium.ttf +0 -0
  41. package/public/fonts/rubik/Rubik-Regular.ttf +0 -0
@@ -10,8 +10,9 @@ import { SolDropdown } from './components/dropdown/';
10
10
  import { SolSelect } from './components/forms/select';
11
11
  import { SolChip } from './components/informations/chip';
12
12
  import { SolAccordion } from './components/accordion/';
13
- import { SolMenu } from './components/menu/';
14
- import { SolMenuItemLink } from './components/menu-item';
13
+ import { SolMenu } from './components/menus/menu';
14
+ import { SolMenuItemLink } from './components/menus/menu-item/menu-item-link/';
15
+ import { SolMenuNavigationLinks } from './components/menus/menu-navigation-links';
15
16
  import 'virtual:windi-base.css';
16
17
  import 'virtual:windi-components.css';
17
18
  import 'virtual:windi-utilities.css';
@@ -23,14 +24,19 @@ export declare const components: {
23
24
  $: import("vue").ComponentInternalInstance;
24
25
  $data: {};
25
26
  $props: Partial<{
26
- size: "small" | "large" | "medium";
27
27
  onColor: boolean;
28
+ size: "small" | "large" | "medium";
28
29
  variant: "primary" | "secondary" | "tertiary";
29
30
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
30
31
  id: {
31
32
  type: import("vue").PropType<string>;
32
33
  required: true;
33
34
  };
35
+ onColor: {
36
+ type: import("vue").PropType<boolean>;
37
+ } & {
38
+ default: boolean;
39
+ };
34
40
  disabled: {
35
41
  type: import("vue").PropType<boolean>;
36
42
  };
@@ -42,17 +48,12 @@ export declare const components: {
42
48
  } & {
43
49
  default: string;
44
50
  };
45
- onColor: {
46
- type: import("vue").PropType<boolean>;
47
- } & {
48
- default: boolean;
49
- };
50
51
  variant: {
51
52
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
52
53
  } & {
53
54
  default: string;
54
55
  };
55
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "onColor" | "variant">;
56
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "onColor" | "size" | "variant">;
56
57
  $attrs: {
57
58
  [x: string]: unknown;
58
59
  };
@@ -71,6 +72,11 @@ export declare const components: {
71
72
  type: import("vue").PropType<string>;
72
73
  required: true;
73
74
  };
75
+ onColor: {
76
+ type: import("vue").PropType<boolean>;
77
+ } & {
78
+ default: boolean;
79
+ };
74
80
  disabled: {
75
81
  type: import("vue").PropType<boolean>;
76
82
  };
@@ -82,19 +88,14 @@ export declare const components: {
82
88
  } & {
83
89
  default: string;
84
90
  };
85
- onColor: {
86
- type: import("vue").PropType<boolean>;
87
- } & {
88
- default: boolean;
89
- };
90
91
  variant: {
91
92
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
92
93
  } & {
93
94
  default: string;
94
95
  };
95
96
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
96
- size: "small" | "large" | "medium";
97
97
  onColor: boolean;
98
+ size: "small" | "large" | "medium";
98
99
  variant: "primary" | "secondary" | "tertiary";
99
100
  }> & {
100
101
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -121,6 +122,11 @@ export declare const components: {
121
122
  type: import("vue").PropType<string>;
122
123
  required: true;
123
124
  };
125
+ onColor: {
126
+ type: import("vue").PropType<boolean>;
127
+ } & {
128
+ default: boolean;
129
+ };
124
130
  disabled: {
125
131
  type: import("vue").PropType<boolean>;
126
132
  };
@@ -132,11 +138,6 @@ export declare const components: {
132
138
  } & {
133
139
  default: string;
134
140
  };
135
- onColor: {
136
- type: import("vue").PropType<boolean>;
137
- } & {
138
- default: boolean;
139
- };
140
141
  variant: {
141
142
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
142
143
  } & {
@@ -151,6 +152,11 @@ export declare const components: {
151
152
  type: import("vue").PropType<string>;
152
153
  required: true;
153
154
  };
155
+ onColor: {
156
+ type: import("vue").PropType<boolean>;
157
+ } & {
158
+ default: boolean;
159
+ };
154
160
  disabled: {
155
161
  type: import("vue").PropType<boolean>;
156
162
  };
@@ -162,19 +168,14 @@ export declare const components: {
162
168
  } & {
163
169
  default: string;
164
170
  };
165
- onColor: {
166
- type: import("vue").PropType<boolean>;
167
- } & {
168
- default: boolean;
169
- };
170
171
  variant: {
171
172
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
172
173
  } & {
173
174
  default: string;
174
175
  };
175
176
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
176
- size: "small" | "large" | "medium";
177
177
  onColor: boolean;
178
+ size: "small" | "large" | "medium";
178
179
  variant: "primary" | "secondary" | "tertiary";
179
180
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
180
181
  $slots: {
@@ -415,21 +416,21 @@ export declare const components: {
415
416
  } & {
416
417
  default: string;
417
418
  };
418
- class: {
419
- type: import("vue").PropType<string>;
420
- };
421
419
  id: {
422
420
  type: import("vue").PropType<string>;
423
421
  required: true;
424
422
  };
425
- invert: {
426
- type: import("vue").PropType<boolean>;
423
+ class: {
424
+ type: import("vue").PropType<string>;
427
425
  };
428
426
  modelValue: {
429
427
  type: import("vue").PropType<string>;
430
428
  } & {
431
429
  default: string;
432
430
  };
431
+ invert: {
432
+ type: import("vue").PropType<boolean>;
433
+ };
433
434
  error: {
434
435
  type: import("vue").PropType<string>;
435
436
  };
@@ -463,21 +464,21 @@ export declare const components: {
463
464
  } & {
464
465
  default: string;
465
466
  };
466
- class: {
467
- type: import("vue").PropType<string>;
468
- };
469
467
  id: {
470
468
  type: import("vue").PropType<string>;
471
469
  required: true;
472
470
  };
473
- invert: {
474
- type: import("vue").PropType<boolean>;
471
+ class: {
472
+ type: import("vue").PropType<string>;
475
473
  };
476
474
  modelValue: {
477
475
  type: import("vue").PropType<string>;
478
476
  } & {
479
477
  default: string;
480
478
  };
479
+ invert: {
480
+ type: import("vue").PropType<boolean>;
481
+ };
481
482
  error: {
482
483
  type: import("vue").PropType<string>;
483
484
  };
@@ -523,21 +524,21 @@ export declare const components: {
523
524
  } & {
524
525
  default: string;
525
526
  };
526
- class: {
527
- type: import("vue").PropType<string>;
528
- };
529
527
  id: {
530
528
  type: import("vue").PropType<string>;
531
529
  required: true;
532
530
  };
533
- invert: {
534
- type: import("vue").PropType<boolean>;
531
+ class: {
532
+ type: import("vue").PropType<string>;
535
533
  };
536
534
  modelValue: {
537
535
  type: import("vue").PropType<string>;
538
536
  } & {
539
537
  default: string;
540
538
  };
539
+ invert: {
540
+ type: import("vue").PropType<boolean>;
541
+ };
541
542
  error: {
542
543
  type: import("vue").PropType<string>;
543
544
  };
@@ -561,21 +562,21 @@ export declare const components: {
561
562
  } & {
562
563
  default: string;
563
564
  };
564
- class: {
565
- type: import("vue").PropType<string>;
566
- };
567
565
  id: {
568
566
  type: import("vue").PropType<string>;
569
567
  required: true;
570
568
  };
571
- invert: {
572
- type: import("vue").PropType<boolean>;
569
+ class: {
570
+ type: import("vue").PropType<string>;
573
571
  };
574
572
  modelValue: {
575
573
  type: import("vue").PropType<string>;
576
574
  } & {
577
575
  default: string;
578
576
  };
577
+ invert: {
578
+ type: import("vue").PropType<boolean>;
579
+ };
579
580
  error: {
580
581
  type: import("vue").PropType<string>;
581
582
  };
@@ -614,21 +615,21 @@ export declare const components: {
614
615
  } & {
615
616
  default: string;
616
617
  };
617
- class: {
618
- type: import("vue").PropType<string>;
619
- };
620
618
  id: {
621
619
  type: import("vue").PropType<string>;
622
620
  required: true;
623
621
  };
624
- invert: {
625
- type: import("vue").PropType<boolean>;
622
+ class: {
623
+ type: import("vue").PropType<string>;
626
624
  };
627
625
  modelValue: {
628
626
  type: import("vue").PropType<string | number>;
629
627
  } & {
630
628
  default: string;
631
629
  };
630
+ invert: {
631
+ type: import("vue").PropType<boolean>;
632
+ };
632
633
  error: {
633
634
  type: import("vue").PropType<string>;
634
635
  };
@@ -657,21 +658,21 @@ export declare const components: {
657
658
  } & {
658
659
  default: string;
659
660
  };
660
- class: {
661
- type: import("vue").PropType<string>;
662
- };
663
661
  id: {
664
662
  type: import("vue").PropType<string>;
665
663
  required: true;
666
664
  };
667
- invert: {
668
- type: import("vue").PropType<boolean>;
665
+ class: {
666
+ type: import("vue").PropType<string>;
669
667
  };
670
668
  modelValue: {
671
669
  type: import("vue").PropType<string | number>;
672
670
  } & {
673
671
  default: string;
674
672
  };
673
+ invert: {
674
+ type: import("vue").PropType<boolean>;
675
+ };
675
676
  error: {
676
677
  type: import("vue").PropType<string>;
677
678
  };
@@ -711,21 +712,21 @@ export declare const components: {
711
712
  } & {
712
713
  default: string;
713
714
  };
714
- class: {
715
- type: import("vue").PropType<string>;
716
- };
717
715
  id: {
718
716
  type: import("vue").PropType<string>;
719
717
  required: true;
720
718
  };
721
- invert: {
722
- type: import("vue").PropType<boolean>;
719
+ class: {
720
+ type: import("vue").PropType<string>;
723
721
  };
724
722
  modelValue: {
725
723
  type: import("vue").PropType<string | number>;
726
724
  } & {
727
725
  default: string;
728
726
  };
727
+ invert: {
728
+ type: import("vue").PropType<boolean>;
729
+ };
729
730
  error: {
730
731
  type: import("vue").PropType<string>;
731
732
  };
@@ -744,21 +745,21 @@ export declare const components: {
744
745
  } & {
745
746
  default: string;
746
747
  };
747
- class: {
748
- type: import("vue").PropType<string>;
749
- };
750
748
  id: {
751
749
  type: import("vue").PropType<string>;
752
750
  required: true;
753
751
  };
754
- invert: {
755
- type: import("vue").PropType<boolean>;
752
+ class: {
753
+ type: import("vue").PropType<string>;
756
754
  };
757
755
  modelValue: {
758
756
  type: import("vue").PropType<string | number>;
759
757
  } & {
760
758
  default: string;
761
759
  };
760
+ invert: {
761
+ type: import("vue").PropType<boolean>;
762
+ };
762
763
  error: {
763
764
  type: import("vue").PropType<string>;
764
765
  };
@@ -2629,7 +2630,7 @@ export declare const components: {
2629
2630
  }>;
2630
2631
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2631
2632
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2632
- $emit: ((event: "close") => void) & ((event: "update:selected") => void);
2633
+ $emit: ((event: "update:selected") => void) & ((event: "close") => void);
2633
2634
  $el: any;
2634
2635
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2635
2636
  label: {
@@ -2754,7 +2755,7 @@ export declare const components: {
2754
2755
  type: import("vue").PropType<string>;
2755
2756
  required: true;
2756
2757
  };
2757
- invert: {
2758
+ onColor: {
2758
2759
  type: import("vue").PropType<boolean>;
2759
2760
  };
2760
2761
  disabled: {
@@ -2784,7 +2785,7 @@ export declare const components: {
2784
2785
  type: import("vue").PropType<string>;
2785
2786
  required: true;
2786
2787
  };
2787
- invert: {
2788
+ onColor: {
2788
2789
  type: import("vue").PropType<boolean>;
2789
2790
  };
2790
2791
  disabled: {
@@ -2822,7 +2823,7 @@ export declare const components: {
2822
2823
  type: import("vue").PropType<string>;
2823
2824
  required: true;
2824
2825
  };
2825
- invert: {
2826
+ onColor: {
2826
2827
  type: import("vue").PropType<boolean>;
2827
2828
  };
2828
2829
  disabled: {
@@ -2842,7 +2843,7 @@ export declare const components: {
2842
2843
  type: import("vue").PropType<string>;
2843
2844
  required: true;
2844
2845
  };
2845
- invert: {
2846
+ onColor: {
2846
2847
  type: import("vue").PropType<boolean>;
2847
2848
  };
2848
2849
  disabled: {
@@ -2852,6 +2853,7 @@ export declare const components: {
2852
2853
  title: string;
2853
2854
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2854
2855
  $slots: {
2856
+ icon: (_: {}) => any;
2855
2857
  title: (_: {}) => any;
2856
2858
  default: (_: {}) => any;
2857
2859
  };
@@ -2862,7 +2864,7 @@ export declare const components: {
2862
2864
  $data: {};
2863
2865
  $props: Partial<{
2864
2866
  label: string;
2865
- position: ("top" | "bottom") | ("right" | "left");
2867
+ position: ("bottom" | "top") | ("right" | "left");
2866
2868
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2867
2869
  label: {
2868
2870
  type: import("vue").PropType<string>;
@@ -2874,13 +2876,11 @@ export declare const components: {
2874
2876
  required: true;
2875
2877
  };
2876
2878
  position: {
2877
- type: import("vue").PropType<("top" | "bottom") | ("right" | "left")>;
2879
+ type: import("vue").PropType<("bottom" | "top") | ("right" | "left")>;
2878
2880
  } & {
2879
2881
  default: string;
2880
2882
  };
2881
- }>> & {
2882
- onChange?: ((value: string) => any) | undefined;
2883
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "position">;
2883
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "position">;
2884
2884
  $attrs: {
2885
2885
  [x: string]: unknown;
2886
2886
  };
@@ -2892,7 +2892,7 @@ export declare const components: {
2892
2892
  }>;
2893
2893
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2894
2894
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2895
- $emit: (event: "change", value: string) => void;
2895
+ $emit: (event: string, ...args: any[]) => void;
2896
2896
  $el: any;
2897
2897
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2898
2898
  label: {
@@ -2905,17 +2905,13 @@ export declare const components: {
2905
2905
  required: true;
2906
2906
  };
2907
2907
  position: {
2908
- type: import("vue").PropType<("top" | "bottom") | ("right" | "left")>;
2908
+ type: import("vue").PropType<("bottom" | "top") | ("right" | "left")>;
2909
2909
  } & {
2910
2910
  default: string;
2911
2911
  };
2912
- }>> & {
2913
- onChange?: ((value: string) => any) | undefined;
2914
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2915
- change: (value: string) => void;
2916
- }, string, {
2912
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
2917
2913
  label: string;
2918
- position: ("top" | "bottom") | ("right" | "left");
2914
+ position: ("bottom" | "top") | ("right" | "left");
2919
2915
  }> & {
2920
2916
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2921
2917
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -2947,13 +2943,11 @@ export declare const components: {
2947
2943
  required: true;
2948
2944
  };
2949
2945
  position: {
2950
- type: import("vue").PropType<("top" | "bottom") | ("right" | "left")>;
2946
+ type: import("vue").PropType<("bottom" | "top") | ("right" | "left")>;
2951
2947
  } & {
2952
2948
  default: string;
2953
2949
  };
2954
- }>> & {
2955
- onChange?: ((value: string) => any) | undefined;
2956
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
2950
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
2957
2951
  __isFragment?: undefined;
2958
2952
  __isTeleport?: undefined;
2959
2953
  __isSuspense?: undefined;
@@ -2968,21 +2962,21 @@ export declare const components: {
2968
2962
  required: true;
2969
2963
  };
2970
2964
  position: {
2971
- type: import("vue").PropType<("top" | "bottom") | ("right" | "left")>;
2965
+ type: import("vue").PropType<("bottom" | "top") | ("right" | "left")>;
2972
2966
  } & {
2973
2967
  default: string;
2974
2968
  };
2975
- }>> & {
2976
- onChange?: ((value: string) => any) | undefined;
2977
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2978
- change: (value: string) => void;
2979
- }, string, {
2969
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
2980
2970
  label: string;
2981
- position: ("top" | "bottom") | ("right" | "left");
2971
+ position: ("bottom" | "top") | ("right" | "left");
2982
2972
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2983
2973
  $slots: {
2984
- label: (_: {}) => any;
2985
- default: (_: {}) => any;
2974
+ label: (_: {
2975
+ isOpen: boolean;
2976
+ }) => any;
2977
+ default: (_: {
2978
+ close: () => void;
2979
+ }) => any;
2986
2980
  };
2987
2981
  });
2988
2982
  SolMenuItemLink: {
@@ -3006,7 +3000,9 @@ export declare const components: {
3006
3000
  external: {
3007
3001
  type: import("vue").PropType<boolean>;
3008
3002
  };
3009
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
3003
+ }>> & {
3004
+ onClicked?: (() => any) | undefined;
3005
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
3010
3006
  $attrs: {
3011
3007
  [x: string]: unknown;
3012
3008
  };
@@ -3018,7 +3014,7 @@ export declare const components: {
3018
3014
  }>;
3019
3015
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
3020
3016
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
3021
- $emit: (event: string, ...args: any[]) => void;
3017
+ $emit: (event: "clicked") => void;
3022
3018
  $el: any;
3023
3019
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3024
3020
  id: {
@@ -3037,7 +3033,11 @@ export declare const components: {
3037
3033
  external: {
3038
3034
  type: import("vue").PropType<boolean>;
3039
3035
  };
3040
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & {
3036
+ }>> & {
3037
+ onClicked?: (() => any) | undefined;
3038
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3039
+ clicked: () => void;
3040
+ }, string, {}> & {
3041
3041
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
3042
3042
  created?: ((() => void) | (() => void)[]) | undefined;
3043
3043
  beforeMount?: ((() => void) | (() => void)[]) | undefined;
@@ -3074,7 +3074,9 @@ export declare const components: {
3074
3074
  external: {
3075
3075
  type: import("vue").PropType<boolean>;
3076
3076
  };
3077
- }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
3077
+ }>> & {
3078
+ onClicked?: (() => any) | undefined;
3079
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
3078
3080
  __isFragment?: undefined;
3079
3081
  __isTeleport?: undefined;
3080
3082
  __isSuspense?: undefined;
@@ -3095,8 +3097,116 @@ export declare const components: {
3095
3097
  external: {
3096
3098
  type: import("vue").PropType<boolean>;
3097
3099
  };
3100
+ }>> & {
3101
+ onClicked?: (() => any) | undefined;
3102
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3103
+ clicked: () => void;
3104
+ }, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3105
+ $slots: {
3106
+ default: (_: {
3107
+ id: string;
3108
+ active: boolean | undefined;
3109
+ link: string | undefined;
3110
+ text: string | undefined;
3111
+ external: boolean | undefined;
3112
+ }) => any;
3113
+ };
3114
+ });
3115
+ SolMenuNavigationLinks: {
3116
+ new (...args: any[]): {
3117
+ $: import("vue").ComponentInternalInstance;
3118
+ $data: {};
3119
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
3120
+ id: {
3121
+ type: import("vue").PropType<string>;
3122
+ required: true;
3123
+ };
3124
+ label: {
3125
+ type: import("vue").PropType<string>;
3126
+ };
3127
+ linkItems: {
3128
+ type: import("vue").PropType<import("./components/menus/menu-item/menu-item-link/types").LinkData[]>;
3129
+ required: true;
3130
+ };
3131
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
3132
+ $attrs: {
3133
+ [x: string]: unknown;
3134
+ };
3135
+ $refs: {
3136
+ [x: string]: unknown;
3137
+ };
3138
+ $slots: Readonly<{
3139
+ [name: string]: import("vue").Slot | undefined;
3140
+ }>;
3141
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
3142
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
3143
+ $emit: (event: string, ...args: any[]) => void;
3144
+ $el: any;
3145
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3146
+ id: {
3147
+ type: import("vue").PropType<string>;
3148
+ required: true;
3149
+ };
3150
+ label: {
3151
+ type: import("vue").PropType<string>;
3152
+ };
3153
+ linkItems: {
3154
+ type: import("vue").PropType<import("./components/menus/menu-item/menu-item-link/types").LinkData[]>;
3155
+ required: true;
3156
+ };
3157
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & {
3158
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
3159
+ created?: ((() => void) | (() => void)[]) | undefined;
3160
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
3161
+ mounted?: ((() => void) | (() => void)[]) | undefined;
3162
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
3163
+ updated?: ((() => void) | (() => void)[]) | undefined;
3164
+ activated?: ((() => void) | (() => void)[]) | undefined;
3165
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
3166
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
3167
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
3168
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
3169
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
3170
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
3171
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
3172
+ 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;
3173
+ };
3174
+ $forceUpdate: () => void;
3175
+ $nextTick: typeof import("vue").nextTick;
3176
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
3177
+ } & Readonly<import("vue").ExtractPropTypes<{
3178
+ id: {
3179
+ type: import("vue").PropType<string>;
3180
+ required: true;
3181
+ };
3182
+ label: {
3183
+ type: import("vue").PropType<string>;
3184
+ };
3185
+ linkItems: {
3186
+ type: import("vue").PropType<import("./components/menus/menu-item/menu-item-link/types").LinkData[]>;
3187
+ required: true;
3188
+ };
3189
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
3190
+ __isFragment?: undefined;
3191
+ __isTeleport?: undefined;
3192
+ __isSuspense?: undefined;
3193
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3194
+ id: {
3195
+ type: import("vue").PropType<string>;
3196
+ required: true;
3197
+ };
3198
+ label: {
3199
+ type: import("vue").PropType<string>;
3200
+ };
3201
+ linkItems: {
3202
+ type: import("vue").PropType<import("./components/menus/menu-item/menu-item-link/types").LinkData[]>;
3203
+ required: true;
3204
+ };
3098
3205
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3099
3206
  $slots: {
3207
+ label: (_: {
3208
+ isOpen: boolean;
3209
+ }) => any;
3100
3210
  default: (_: {
3101
3211
  id: string;
3102
3212
  active: boolean | undefined;
@@ -3108,4 +3218,4 @@ export declare const components: {
3108
3218
  });
3109
3219
  };
3110
3220
  export declare function install(App: App): void;
3111
- export { SolButton, SolButtonDestructive, SolInput, SolTextarea, SolTextfield, SolTextfieldPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolDropdown, SolSelect, SolChip, SolAccordion, SolMenu, SolMenuItemLink, };
3221
+ export { SolButton, SolButtonDestructive, SolInput, SolTextarea, SolTextfield, SolTextfieldPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolDropdown, SolSelect, SolChip, SolAccordion, SolMenu, SolMenuItemLink, SolMenuNavigationLinks, };