@trafilea/afrodita-components 5.0.0-beta.204 → 5.0.0-beta.205

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.
@@ -22,6 +22,7 @@ declare type Theme = {
22
22
  };
23
23
  declare type ThemeBreakpoints = {
24
24
  mobile: number;
25
+ tablet?: number;
25
26
  desktop: number;
26
27
  };
27
28
  declare type ThemeBasicPallete = {
@@ -29,7 +30,7 @@ declare type ThemeBasicPallete = {
29
30
  contrast: string;
30
31
  };
31
32
  declare type ThemeColorPallete = ThemeBasicPallete & {
32
- soft: ThemeBasicPallete;
33
+ soft?: ThemeBasicPallete;
33
34
  };
34
35
  declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
35
36
  20: ThemeColorPallete;
@@ -41,6 +42,7 @@ declare type ThemeColors = {
41
42
  pallete: {
42
43
  primary: ThemeColorPrimaryPallete;
43
44
  secondary: ThemeColorPrimaryPallete;
45
+ tertiary?: ThemeColorPrimaryPallete;
44
46
  } & Partial<Record<string, ThemeColorPallete>>;
45
47
  shades: {
46
48
  black: ThemeBasicPallete;
@@ -79,6 +81,7 @@ declare type ThemeColors = {
79
81
  color: string;
80
82
  disabled: string;
81
83
  highlight: string;
84
+ shadow?: string;
82
85
  };
83
86
  background: {
84
87
  color: string;
@@ -385,6 +388,7 @@ declare type ThemeComponent = {
385
388
  fontWeight: number;
386
389
  lineHeight: string;
387
390
  padding: string;
391
+ optionPadding: string;
388
392
  color: string;
389
393
  fill: string;
390
394
  options: {
@@ -514,6 +514,7 @@ var revel = {
514
514
  fontWeight: 600,
515
515
  lineHeight: '1.125rem',
516
516
  padding: '0.5rem 0.75rem 0.5rem 1rem',
517
+ optionPadding: '0.75rem 1rem 0.625rem 0.75rem',
517
518
  color: '--colors-shades-700-color',
518
519
  fill: '--colors-shades-700-color',
519
520
  options: {
@@ -22,6 +22,7 @@ declare type Theme = {
22
22
  };
23
23
  declare type ThemeBreakpoints = {
24
24
  mobile: number;
25
+ tablet?: number;
25
26
  desktop: number;
26
27
  };
27
28
  declare type ThemeBasicPallete = {
@@ -29,7 +30,7 @@ declare type ThemeBasicPallete = {
29
30
  contrast: string;
30
31
  };
31
32
  declare type ThemeColorPallete = ThemeBasicPallete & {
32
- soft: ThemeBasicPallete;
33
+ soft?: ThemeBasicPallete;
33
34
  };
34
35
  declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
35
36
  20: ThemeColorPallete;
@@ -41,6 +42,7 @@ declare type ThemeColors = {
41
42
  pallete: {
42
43
  primary: ThemeColorPrimaryPallete;
43
44
  secondary: ThemeColorPrimaryPallete;
45
+ tertiary?: ThemeColorPrimaryPallete;
44
46
  } & Partial<Record<string, ThemeColorPallete>>;
45
47
  shades: {
46
48
  black: ThemeBasicPallete;
@@ -79,6 +81,7 @@ declare type ThemeColors = {
79
81
  color: string;
80
82
  disabled: string;
81
83
  highlight: string;
84
+ shadow?: string;
82
85
  };
83
86
  background: {
84
87
  color: string;
@@ -385,6 +388,7 @@ declare type ThemeComponent = {
385
388
  fontWeight: number;
386
389
  lineHeight: string;
387
390
  padding: string;
391
+ optionPadding: string;
388
392
  color: string;
389
393
  fill: string;
390
394
  options: {
@@ -514,6 +514,7 @@ var shapermint = {
514
514
  fontWeight: 600,
515
515
  lineHeight: '1.125rem',
516
516
  padding: '0.5rem 0.75rem 0.5rem 1rem',
517
+ optionPadding: '0.75rem 1rem 0.625rem 0.75rem',
517
518
  color: '--colors-shades-700-color',
518
519
  fill: '--colors-shades-700-color',
519
520
  options: {
@@ -22,6 +22,7 @@ declare type Theme = {
22
22
  };
23
23
  declare type ThemeBreakpoints = {
24
24
  mobile: number;
25
+ tablet?: number;
25
26
  desktop: number;
26
27
  };
27
28
  declare type ThemeBasicPallete = {
@@ -29,7 +30,7 @@ declare type ThemeBasicPallete = {
29
30
  contrast: string;
30
31
  };
31
32
  declare type ThemeColorPallete = ThemeBasicPallete & {
32
- soft: ThemeBasicPallete;
33
+ soft?: ThemeBasicPallete;
33
34
  };
34
35
  declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
35
36
  20: ThemeColorPallete;
@@ -41,6 +42,7 @@ declare type ThemeColors = {
41
42
  pallete: {
42
43
  primary: ThemeColorPrimaryPallete;
43
44
  secondary: ThemeColorPrimaryPallete;
45
+ tertiary?: ThemeColorPrimaryPallete;
44
46
  } & Partial<Record<string, ThemeColorPallete>>;
45
47
  shades: {
46
48
  black: ThemeBasicPallete;
@@ -79,6 +81,7 @@ declare type ThemeColors = {
79
81
  color: string;
80
82
  disabled: string;
81
83
  highlight: string;
84
+ shadow?: string;
82
85
  };
83
86
  background: {
84
87
  color: string;
@@ -385,6 +388,7 @@ declare type ThemeComponent = {
385
388
  fontWeight: number;
386
389
  lineHeight: string;
387
390
  padding: string;
391
+ optionPadding: string;
388
392
  color: string;
389
393
  fill: string;
390
394
  options: {
@@ -587,6 +587,7 @@ var truekind = {
587
587
  fontWeight: 600,
588
588
  lineHeight: '1.125rem',
589
589
  padding: '0.5rem 0.75rem 0.5rem 1rem',
590
+ optionPadding: '0.75rem 1rem 0.625rem 0.75rem',
590
591
  color: '#292929',
591
592
  fill: '#292929',
592
593
  options: {