@solfacil/girassol 0.2.7 → 0.2.10

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.
@@ -9,7 +9,9 @@ declare const _default: {
9
9
  link?: LinkData['link'];
10
10
  active?: LinkData['active'];
11
11
  external?: LinkData['external'];
12
- }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
12
+ }>>> & {
13
+ onClicked?: (() => any) | undefined;
14
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
13
15
  $attrs: {
14
16
  [x: string]: unknown;
15
17
  };
@@ -21,7 +23,7 @@ declare const _default: {
21
23
  }>;
22
24
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
23
25
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
24
- $emit: (event: string, ...args: any[]) => void;
26
+ $emit: (event: "clicked") => void;
25
27
  $el: any;
26
28
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
27
29
  id: string;
@@ -29,7 +31,11 @@ declare const _default: {
29
31
  link?: LinkData['link'];
30
32
  active?: LinkData['active'];
31
33
  external?: LinkData['external'];
32
- }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & {
34
+ }>>> & {
35
+ onClicked?: (() => any) | undefined;
36
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
37
+ clicked: () => void;
38
+ }, string, {}> & {
33
39
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
34
40
  created?: ((() => void) | (() => void)[]) | undefined;
35
41
  beforeMount?: ((() => void) | (() => void)[]) | undefined;
@@ -55,7 +61,9 @@ declare const _default: {
55
61
  link?: LinkData['link'];
56
62
  active?: LinkData['active'];
57
63
  external?: LinkData['external'];
58
- }>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
64
+ }>>> & {
65
+ onClicked?: (() => any) | undefined;
66
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
59
67
  __isFragment?: undefined;
60
68
  __isTeleport?: undefined;
61
69
  __isSuspense?: undefined;
@@ -65,7 +73,11 @@ declare const _default: {
65
73
  link?: LinkData['link'];
66
74
  active?: LinkData['active'];
67
75
  external?: LinkData['external'];
68
- }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
76
+ }>>> & {
77
+ onClicked?: (() => any) | undefined;
78
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
79
+ clicked: () => void;
80
+ }, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
69
81
  $slots: {
70
82
  default: (_: {
71
83
  id: string;
@@ -24,14 +24,19 @@ export declare const components: {
24
24
  $: import("vue").ComponentInternalInstance;
25
25
  $data: {};
26
26
  $props: Partial<{
27
- size: "small" | "large" | "medium";
28
27
  onColor: boolean;
28
+ size: "small" | "large" | "medium";
29
29
  variant: "primary" | "secondary" | "tertiary";
30
30
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
31
31
  id: {
32
32
  type: import("vue").PropType<string>;
33
33
  required: true;
34
34
  };
35
+ onColor: {
36
+ type: import("vue").PropType<boolean>;
37
+ } & {
38
+ default: boolean;
39
+ };
35
40
  disabled: {
36
41
  type: import("vue").PropType<boolean>;
37
42
  };
@@ -43,17 +48,12 @@ export declare const components: {
43
48
  } & {
44
49
  default: string;
45
50
  };
46
- onColor: {
47
- type: import("vue").PropType<boolean>;
48
- } & {
49
- default: boolean;
50
- };
51
51
  variant: {
52
52
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
53
53
  } & {
54
54
  default: string;
55
55
  };
56
- }>> & 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">;
57
57
  $attrs: {
58
58
  [x: string]: unknown;
59
59
  };
@@ -72,6 +72,11 @@ export declare const components: {
72
72
  type: import("vue").PropType<string>;
73
73
  required: true;
74
74
  };
75
+ onColor: {
76
+ type: import("vue").PropType<boolean>;
77
+ } & {
78
+ default: boolean;
79
+ };
75
80
  disabled: {
76
81
  type: import("vue").PropType<boolean>;
77
82
  };
@@ -83,19 +88,14 @@ export declare const components: {
83
88
  } & {
84
89
  default: string;
85
90
  };
86
- onColor: {
87
- type: import("vue").PropType<boolean>;
88
- } & {
89
- default: boolean;
90
- };
91
91
  variant: {
92
92
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
93
93
  } & {
94
94
  default: string;
95
95
  };
96
96
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
97
- size: "small" | "large" | "medium";
98
97
  onColor: boolean;
98
+ size: "small" | "large" | "medium";
99
99
  variant: "primary" | "secondary" | "tertiary";
100
100
  }> & {
101
101
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -122,6 +122,11 @@ export declare const components: {
122
122
  type: import("vue").PropType<string>;
123
123
  required: true;
124
124
  };
125
+ onColor: {
126
+ type: import("vue").PropType<boolean>;
127
+ } & {
128
+ default: boolean;
129
+ };
125
130
  disabled: {
126
131
  type: import("vue").PropType<boolean>;
127
132
  };
@@ -133,11 +138,6 @@ export declare const components: {
133
138
  } & {
134
139
  default: string;
135
140
  };
136
- onColor: {
137
- type: import("vue").PropType<boolean>;
138
- } & {
139
- default: boolean;
140
- };
141
141
  variant: {
142
142
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
143
143
  } & {
@@ -152,6 +152,11 @@ export declare const components: {
152
152
  type: import("vue").PropType<string>;
153
153
  required: true;
154
154
  };
155
+ onColor: {
156
+ type: import("vue").PropType<boolean>;
157
+ } & {
158
+ default: boolean;
159
+ };
155
160
  disabled: {
156
161
  type: import("vue").PropType<boolean>;
157
162
  };
@@ -163,19 +168,14 @@ export declare const components: {
163
168
  } & {
164
169
  default: string;
165
170
  };
166
- onColor: {
167
- type: import("vue").PropType<boolean>;
168
- } & {
169
- default: boolean;
170
- };
171
171
  variant: {
172
172
  type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
173
173
  } & {
174
174
  default: string;
175
175
  };
176
176
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
177
- size: "small" | "large" | "medium";
178
177
  onColor: boolean;
178
+ size: "small" | "large" | "medium";
179
179
  variant: "primary" | "secondary" | "tertiary";
180
180
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
181
181
  $slots: {
@@ -420,9 +420,6 @@ export declare const components: {
420
420
  type: import("vue").PropType<string>;
421
421
  required: true;
422
422
  };
423
- invert: {
424
- type: import("vue").PropType<boolean>;
425
- };
426
423
  class: {
427
424
  type: import("vue").PropType<string>;
428
425
  };
@@ -431,6 +428,9 @@ export declare const components: {
431
428
  } & {
432
429
  default: string;
433
430
  };
431
+ invert: {
432
+ type: import("vue").PropType<boolean>;
433
+ };
434
434
  error: {
435
435
  type: import("vue").PropType<string>;
436
436
  };
@@ -468,9 +468,6 @@ export declare const components: {
468
468
  type: import("vue").PropType<string>;
469
469
  required: true;
470
470
  };
471
- invert: {
472
- type: import("vue").PropType<boolean>;
473
- };
474
471
  class: {
475
472
  type: import("vue").PropType<string>;
476
473
  };
@@ -479,6 +476,9 @@ export declare const components: {
479
476
  } & {
480
477
  default: string;
481
478
  };
479
+ invert: {
480
+ type: import("vue").PropType<boolean>;
481
+ };
482
482
  error: {
483
483
  type: import("vue").PropType<string>;
484
484
  };
@@ -528,9 +528,6 @@ export declare const components: {
528
528
  type: import("vue").PropType<string>;
529
529
  required: true;
530
530
  };
531
- invert: {
532
- type: import("vue").PropType<boolean>;
533
- };
534
531
  class: {
535
532
  type: import("vue").PropType<string>;
536
533
  };
@@ -539,6 +536,9 @@ export declare const components: {
539
536
  } & {
540
537
  default: string;
541
538
  };
539
+ invert: {
540
+ type: import("vue").PropType<boolean>;
541
+ };
542
542
  error: {
543
543
  type: import("vue").PropType<string>;
544
544
  };
@@ -566,9 +566,6 @@ export declare const components: {
566
566
  type: import("vue").PropType<string>;
567
567
  required: true;
568
568
  };
569
- invert: {
570
- type: import("vue").PropType<boolean>;
571
- };
572
569
  class: {
573
570
  type: import("vue").PropType<string>;
574
571
  };
@@ -577,6 +574,9 @@ export declare const components: {
577
574
  } & {
578
575
  default: string;
579
576
  };
577
+ invert: {
578
+ type: import("vue").PropType<boolean>;
579
+ };
580
580
  error: {
581
581
  type: import("vue").PropType<string>;
582
582
  };
@@ -619,9 +619,6 @@ export declare const components: {
619
619
  type: import("vue").PropType<string>;
620
620
  required: true;
621
621
  };
622
- invert: {
623
- type: import("vue").PropType<boolean>;
624
- };
625
622
  class: {
626
623
  type: import("vue").PropType<string>;
627
624
  };
@@ -630,6 +627,9 @@ export declare const components: {
630
627
  } & {
631
628
  default: string;
632
629
  };
630
+ invert: {
631
+ type: import("vue").PropType<boolean>;
632
+ };
633
633
  error: {
634
634
  type: import("vue").PropType<string>;
635
635
  };
@@ -662,9 +662,6 @@ export declare const components: {
662
662
  type: import("vue").PropType<string>;
663
663
  required: true;
664
664
  };
665
- invert: {
666
- type: import("vue").PropType<boolean>;
667
- };
668
665
  class: {
669
666
  type: import("vue").PropType<string>;
670
667
  };
@@ -673,6 +670,9 @@ export declare const components: {
673
670
  } & {
674
671
  default: string;
675
672
  };
673
+ invert: {
674
+ type: import("vue").PropType<boolean>;
675
+ };
676
676
  error: {
677
677
  type: import("vue").PropType<string>;
678
678
  };
@@ -716,9 +716,6 @@ export declare const components: {
716
716
  type: import("vue").PropType<string>;
717
717
  required: true;
718
718
  };
719
- invert: {
720
- type: import("vue").PropType<boolean>;
721
- };
722
719
  class: {
723
720
  type: import("vue").PropType<string>;
724
721
  };
@@ -727,6 +724,9 @@ export declare const components: {
727
724
  } & {
728
725
  default: string;
729
726
  };
727
+ invert: {
728
+ type: import("vue").PropType<boolean>;
729
+ };
730
730
  error: {
731
731
  type: import("vue").PropType<string>;
732
732
  };
@@ -749,9 +749,6 @@ export declare const components: {
749
749
  type: import("vue").PropType<string>;
750
750
  required: true;
751
751
  };
752
- invert: {
753
- type: import("vue").PropType<boolean>;
754
- };
755
752
  class: {
756
753
  type: import("vue").PropType<string>;
757
754
  };
@@ -760,6 +757,9 @@ export declare const components: {
760
757
  } & {
761
758
  default: string;
762
759
  };
760
+ invert: {
761
+ type: import("vue").PropType<boolean>;
762
+ };
763
763
  error: {
764
764
  type: import("vue").PropType<string>;
765
765
  };
@@ -2755,7 +2755,7 @@ export declare const components: {
2755
2755
  type: import("vue").PropType<string>;
2756
2756
  required: true;
2757
2757
  };
2758
- invert: {
2758
+ onColor: {
2759
2759
  type: import("vue").PropType<boolean>;
2760
2760
  };
2761
2761
  disabled: {
@@ -2785,7 +2785,7 @@ export declare const components: {
2785
2785
  type: import("vue").PropType<string>;
2786
2786
  required: true;
2787
2787
  };
2788
- invert: {
2788
+ onColor: {
2789
2789
  type: import("vue").PropType<boolean>;
2790
2790
  };
2791
2791
  disabled: {
@@ -2823,7 +2823,7 @@ export declare const components: {
2823
2823
  type: import("vue").PropType<string>;
2824
2824
  required: true;
2825
2825
  };
2826
- invert: {
2826
+ onColor: {
2827
2827
  type: import("vue").PropType<boolean>;
2828
2828
  };
2829
2829
  disabled: {
@@ -2843,7 +2843,7 @@ export declare const components: {
2843
2843
  type: import("vue").PropType<string>;
2844
2844
  required: true;
2845
2845
  };
2846
- invert: {
2846
+ onColor: {
2847
2847
  type: import("vue").PropType<boolean>;
2848
2848
  };
2849
2849
  disabled: {
@@ -2853,6 +2853,7 @@ export declare const components: {
2853
2853
  title: string;
2854
2854
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2855
2855
  $slots: {
2856
+ icon: (_: {}) => any;
2856
2857
  title: (_: {}) => any;
2857
2858
  default: (_: {}) => any;
2858
2859
  };
@@ -2879,9 +2880,7 @@ export declare const components: {
2879
2880
  } & {
2880
2881
  default: string;
2881
2882
  };
2882
- }>> & {
2883
- onChange?: ((value: string) => any) | undefined;
2884
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "position">;
2883
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "position">;
2885
2884
  $attrs: {
2886
2885
  [x: string]: unknown;
2887
2886
  };
@@ -2893,7 +2892,7 @@ export declare const components: {
2893
2892
  }>;
2894
2893
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2895
2894
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2896
- $emit: (event: "change", value: string) => void;
2895
+ $emit: (event: string, ...args: any[]) => void;
2897
2896
  $el: any;
2898
2897
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2899
2898
  label: {
@@ -2910,11 +2909,7 @@ export declare const components: {
2910
2909
  } & {
2911
2910
  default: string;
2912
2911
  };
2913
- }>> & {
2914
- onChange?: ((value: string) => any) | undefined;
2915
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2916
- change: (value: string) => void;
2917
- }, string, {
2912
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
2918
2913
  label: string;
2919
2914
  position: ("bottom" | "top") | ("right" | "left");
2920
2915
  }> & {
@@ -2952,9 +2947,7 @@ export declare const components: {
2952
2947
  } & {
2953
2948
  default: string;
2954
2949
  };
2955
- }>> & {
2956
- onChange?: ((value: string) => any) | undefined;
2957
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
2950
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
2958
2951
  __isFragment?: undefined;
2959
2952
  __isTeleport?: undefined;
2960
2953
  __isSuspense?: undefined;
@@ -2973,11 +2966,7 @@ export declare const components: {
2973
2966
  } & {
2974
2967
  default: string;
2975
2968
  };
2976
- }>> & {
2977
- onChange?: ((value: string) => any) | undefined;
2978
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2979
- change: (value: string) => void;
2980
- }, string, {
2969
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
2981
2970
  label: string;
2982
2971
  position: ("bottom" | "top") | ("right" | "left");
2983
2972
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -2985,7 +2974,9 @@ export declare const components: {
2985
2974
  label: (_: {
2986
2975
  isOpen: boolean;
2987
2976
  }) => any;
2988
- default: (_: {}) => any;
2977
+ default: (_: {
2978
+ close: () => void;
2979
+ }) => any;
2989
2980
  };
2990
2981
  });
2991
2982
  SolMenuItemLink: {
@@ -3009,7 +3000,9 @@ export declare const components: {
3009
3000
  external: {
3010
3001
  type: import("vue").PropType<boolean>;
3011
3002
  };
3012
- }>> & 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>;
3013
3006
  $attrs: {
3014
3007
  [x: string]: unknown;
3015
3008
  };
@@ -3021,7 +3014,7 @@ export declare const components: {
3021
3014
  }>;
3022
3015
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
3023
3016
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
3024
- $emit: (event: string, ...args: any[]) => void;
3017
+ $emit: (event: "clicked") => void;
3025
3018
  $el: any;
3026
3019
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3027
3020
  id: {
@@ -3040,7 +3033,11 @@ export declare const components: {
3040
3033
  external: {
3041
3034
  type: import("vue").PropType<boolean>;
3042
3035
  };
3043
- }>>, {}, 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, {}> & {
3044
3041
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
3045
3042
  created?: ((() => void) | (() => void)[]) | undefined;
3046
3043
  beforeMount?: ((() => void) | (() => void)[]) | undefined;
@@ -3077,7 +3074,9 @@ export declare const components: {
3077
3074
  external: {
3078
3075
  type: import("vue").PropType<boolean>;
3079
3076
  };
3080
- }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
3077
+ }>> & {
3078
+ onClicked?: (() => any) | undefined;
3079
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
3081
3080
  __isFragment?: undefined;
3082
3081
  __isTeleport?: undefined;
3083
3082
  __isSuspense?: undefined;
@@ -3098,7 +3097,11 @@ export declare const components: {
3098
3097
  external: {
3099
3098
  type: import("vue").PropType<boolean>;
3100
3099
  };
3101
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
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 () => {
3102
3105
  $slots: {
3103
3106
  default: (_: {
3104
3107
  id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.2.7",
4
+ "version": "0.2.10",
5
5
  "authors": [
6
6
  {
7
7
  "name": "Kevin Martin",
package/public/main.css CHANGED
@@ -1,41 +1,41 @@
1
+ /* latin-ext */
1
2
  @font-face {
2
- font-family: "Lato";
3
- src: url("./fonts/lato/Lato-Regular.ttf");
3
+ font-family: 'Lato';
4
+ font-style: normal;
4
5
  font-weight: 400;
6
+ font-display: swap;
7
+ src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
8
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
5
9
  }
6
-
7
- @font-face {
8
- font-family: "Lato";
9
- src: url("./fonts/lato/Lato-Bold.ttf");
10
- font-weight: bold;
11
- }
12
-
10
+ /* latin */
13
11
  @font-face {
14
- font-family: "Lato";
15
- src: url("./fonts/lato/Lato-Medium.ttf");
16
- font-weight: 500;
17
- }
18
-
19
-
20
- @font-face {
21
- font-family: "Rubik";
22
- src: url("./fonts/rubik/Rubik-Regular.ttf");
12
+ font-family: 'Lato';
13
+ font-style: normal;
23
14
  font-weight: 400;
15
+ font-display: swap;
16
+ src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
17
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
24
18
  }
25
-
19
+ /* latin-ext */
26
20
  @font-face {
27
- font-family: "Rubik";
28
- src: url("./fonts/rubik/Rubik-Bold.ttf");
29
- font-weight: bold;
21
+ font-family: 'Lato';
22
+ font-style: normal;
23
+ font-weight: 700;
24
+ font-display: swap;
25
+ src: url(https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format('woff2');
26
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
30
27
  }
31
-
28
+ /* latin */
32
29
  @font-face {
33
- font-family: "Rubik";
34
- src: url("./fonts/rubik/Rubik-Medium.ttf");
35
- font-weight: 500;
30
+ font-family: 'Lato';
31
+ font-style: normal;
32
+ font-weight: 700;
33
+ font-display: swap;
34
+ src: url(https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
35
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
36
36
  }
37
37
 
38
38
  @font-face {
39
- font-family: "Roboto Slab";
40
- src: url("./fonts/roboto-slab/RobotoSlab.ttf");
41
- }
39
+ font-family: 'Grotesk';
40
+ src: url('https://cdn.solfacil.com.br/commons/fonts/PPRightGrotesk-WideMedium.woff2')
41
+ }
@@ -2,7 +2,7 @@ export default {
2
2
  fontFamily: {
3
3
  sans: ['"Lato"', 'sans-serif'],
4
4
  base: ['"Lato"', 'sans-serif'],
5
- highlight: ['"Rubik"'],
5
+ highlight: ['"Grotesk"', 'sans-serif'],
6
6
  },
7
7
 
8
8
  fontSize: {
@@ -38,7 +38,6 @@ export default {
38
38
 
39
39
  fontWeight: {
40
40
  regular: 400,
41
- medium: 500,
42
41
  bold: 700,
43
42
  },
44
43
 
@@ -8,7 +8,7 @@ export const componentTypos = plugin(({ addUtilities, theme }) => {
8
8
  fontFamily: wrapperThemeType('fontFamily.highlight'),
9
9
  color: wrapperThemeType('colors.neutral.low.dark'),
10
10
  lineHeight: wrapperThemeType('lineHeight.xs'),
11
- fontWeight: wrapperThemeType('fontWeight.medium'),
11
+ fontWeight: wrapperThemeType('fontWeight.regular'),
12
12
  }
13
13
  const display = {
14
14
  '.fonts-display-large': {
@@ -42,7 +42,7 @@ export const componentTypos = plugin(({ addUtilities, theme }) => {
42
42
  fontFamily: wrapperThemeType('fontFamily.highlight'),
43
43
  lineHeight: wrapperThemeType('lineHeight.xs'),
44
44
  color: wrapperThemeType('colors.neutral.low.dark'),
45
- fontWeight: wrapperThemeType('fontWeight.medium'),
45
+ fontWeight: wrapperThemeType('fontWeight.regular'),
46
46
 
47
47
  }
48
48
  const heading = {
@@ -129,7 +129,7 @@ export const componentTypos = plugin(({ addUtilities, theme }) => {
129
129
  fontWeight: wrapperThemeType('fontWeight.regular'),
130
130
  },
131
131
 
132
- '.fonts-body-larger-bold': {
132
+ '.fonts-body-large-bold': {
133
133
  ...bodyCommons,
134
134
  fontSize: wrapperThemeType('fontSize.2xs'),
135
135
  fontWeight: wrapperThemeType('fontWeight.bold'),
@@ -214,11 +214,7 @@ export const outlinesForFocus = plugin(({ addUtilities }) => {
214
214
  '.outline-focused': {
215
215
  outline: '2px solid #8250DF',
216
216
  outlineOffset: '2px',
217
- },
218
-
219
- '.outline-focused-invert': {
220
- outline: '2px solid #ffffff',
221
- outlineOffset: '0px',
217
+ outlineStyle: 'auto',
222
218
  },
223
219
  })
224
220
  })
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file