@m4l/styles 7.1.3 → 7.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/index.js +14 -14
  2. package/package.json +1 -1
  3. package/theme/index.d.ts +1 -1
  4. package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.js +3 -3
  5. package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.js +2 -2
  6. package/theme/overrides/M4LExtendedComponents/M4LButton.js +13 -13
  7. package/theme/overrides/M4LExtendedComponents/M4LCheckBox.js +1 -1
  8. package/theme/overrides/M4LExtendedComponents/M4LFormatter.js +1 -1
  9. package/theme/overrides/M4LExtendedComponents/M4LIconButton.js +13 -13
  10. package/theme/overrides/M4LExtendedComponents/M4LImageButton.js +1 -1
  11. package/theme/overrides/M4LExtendedComponents/M4LNavLink.js +1 -1
  12. package/theme/overrides/M4LExtendedComponents/M4LPeriod.js +1 -1
  13. package/theme/overrides/M4LExtendedComponents/M4LPopover.js +1 -1
  14. package/theme/overrides/M4LExtendedComponents/M4LSideBar.js +6 -6
  15. package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.js +2 -2
  16. package/theme/overrides/M4LExtendedComponents/M4LTab.js +1 -1
  17. package/theme/overrides/M4LExtendedComponents/M4LTabs.js +1 -1
  18. package/theme/overrides/M4LExtendedComponents/M4LoadingButton.js +14 -14
  19. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.js +3 -3
  20. package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.js +1 -1
  21. package/theme/overrides/M4LRHFComponents/M4LRHFDateTime.js +3 -3
  22. package/theme/overrides/M4LRHFComponents/M4LRHFTextField.js +3 -3
  23. package/theme/overrides/MUIComponents/Paper.js +6 -6
  24. package/theme/palette/baseOpacityColors.js +2 -2
  25. package/theme/palette/defaultColors.d.ts +2 -2
  26. package/theme/palette/defaultColors.js +24 -13
  27. package/theme/palette/presetColors.js +119 -59
  28. package/theme/palette/semanticColors.js +161 -117
  29. package/theme/palette/tagsPalette.d.ts +13 -0
  30. package/theme/sizes/pointerQr.js +14 -14
  31. package/theme/sizes/presetSizes.js +18 -1
  32. package/theme/typography.d.ts +5 -2
  33. package/theme/typography.js +1 -1
  34. package/types/augmentations.d.ts +3 -1
  35. package/types/types.d.ts +13 -3
  36. package/utils/getPaletteByPreset.d.ts +36 -12
  37. package/utils/getPaletteByPreset.js +3 -3
@@ -1,154 +1,198 @@
1
- import { B as a } from "./baseColors.js";
2
- import { B as i } from "./baseOpacityColors.js";
3
- const t = {
1
+ import { B as t } from "./baseColors.js";
2
+ import { B as a } from "./baseOpacityColors.js";
3
+ const i = {
4
4
  info: {
5
- main: a.crayonBlue[50],
6
- lighter: a.crayonBlue[70],
7
- light: a.crayonBlue[60],
8
- dark: a.crayonBlue[40],
9
- darker: a.crayonBlue[20],
10
- contrastText: a.marbleLight[30],
11
- toneOpacityLight: a.crayonBlue.toneOpacity10,
12
- toneOpacityDark: a.crayonBlue.toneOpacity20,
13
- opacityLight: i.crayon[10],
14
- opacityDark: i.crayon[20]
5
+ main: t.crayonBlue[50],
6
+ lighter: t.crayonBlue[70],
7
+ light: t.crayonBlue[60],
8
+ dark: t.crayonBlue[40],
9
+ darker: t.crayonBlue[20],
10
+ contrastText: t.marbleLight[30],
11
+ // Tone colors
12
+ toneOpacityLight: t.crayonBlue.toneOpacity10,
13
+ toneOpacityDark: t.crayonBlue.toneOpacity20,
14
+ // opacity backgrounds light
15
+ opacityHoverLight: a.crayon[10],
16
+ opacityFocusLight: a.crayon[20],
17
+ opacityActiveLight: a.crayon[30],
18
+ // opacity backgrounds Dark
19
+ opacityHoverDark: a.crayon[20],
20
+ opacityFocusDark: a.crayon[30],
21
+ opacityActiveDark: a.crayon[40]
15
22
  },
16
23
  warning: {
17
- main: a.middleYellow[50],
18
- lighter: a.middleYellow[90],
19
- light: a.middleYellow[70],
20
- dark: a.middleYellow[30],
21
- darker: a.middleYellow[20],
22
- contrastText: a.onyx[20],
23
- toneOpacityLight: a.middleYellow.toneOpacity10,
24
- toneOpacityDark: a.middleYellow.toneOpacity20,
25
- opacityLight: i.middle[10],
26
- opacityDark: i.middle[20]
24
+ main: t.middleYellow[50],
25
+ lighter: t.middleYellow[90],
26
+ light: t.middleYellow[70],
27
+ dark: t.middleYellow[30],
28
+ darker: t.middleYellow[20],
29
+ contrastText: t.onyx[20],
30
+ // Tone colors
31
+ toneOpacityLight: t.middleYellow.toneOpacity10,
32
+ toneOpacityDark: t.middleYellow.toneOpacity20,
33
+ // opacity backgrounds light
34
+ opacityHoverLight: a.middle[10],
35
+ opacityFocusLight: a.middle[20],
36
+ opacityActiveLight: a.middle[30],
37
+ // opacity backgrounds Dark
38
+ opacityHoverDark: a.middle[20],
39
+ opacityFocusDark: a.middle[30],
40
+ opacityActiveDark: a.middle[40]
27
41
  },
28
42
  error: {
29
- main: a.flameRed[50],
30
- lighter: a.flameRed[70],
31
- light: a.flameRed[60],
32
- dark: a.flameRed[40],
33
- darker: a.flameRed[20],
34
- contrastText: a.marbleLight[30],
35
- toneOpacityLight: a.flameRed.toneOpacity10,
36
- toneOpacityDark: a.flameRed.toneOpacity20,
37
- opacityLight: i.flame[10],
38
- opacityDark: i.flame[20]
43
+ main: t.flameRed[50],
44
+ lighter: t.flameRed[70],
45
+ light: t.flameRed[60],
46
+ dark: t.flameRed[40],
47
+ darker: t.flameRed[20],
48
+ contrastText: t.marbleLight[30],
49
+ // Tone colors
50
+ toneOpacityLight: t.flameRed.toneOpacity10,
51
+ toneOpacityDark: t.flameRed.toneOpacity20,
52
+ // opacity backgrounds light
53
+ opacityHoverLight: a.flame[10],
54
+ opacityFocusLight: a.flame[20],
55
+ opacityActiveLight: a.flame[30],
56
+ // opacity backgrounds Dark
57
+ opacityHoverDark: a.flame[20],
58
+ opacityFocusDark: a.flame[30],
59
+ opacityActiveDark: a.flame[40]
39
60
  },
40
61
  success: {
41
- main: a.acidGreen[50],
42
- lighter: a.acidGreen[70],
43
- light: a.acidGreen[60],
44
- dark: a.acidGreen[30],
45
- darker: a.acidGreen[20],
46
- contrastText: a.marbleLight[20],
47
- toneOpacityLight: a.acidGreen.toneOpacity10,
48
- toneOpacityDark: a.acidGreen.toneOpacity20,
49
- opacityLight: i.acid[10],
50
- opacityDark: i.acid[20]
62
+ main: t.acidGreen[50],
63
+ lighter: t.acidGreen[70],
64
+ light: t.acidGreen[60],
65
+ dark: t.acidGreen[30],
66
+ darker: t.acidGreen[20],
67
+ contrastText: t.marbleLight[20],
68
+ // Tone colors
69
+ toneOpacityLight: t.acidGreen.toneOpacity10,
70
+ toneOpacityDark: t.acidGreen.toneOpacity20,
71
+ // opacity backgrounds light
72
+ opacityHoverLight: a.acid[10],
73
+ opacityFocusLight: a.acid[20],
74
+ opacityActiveLight: a.acid[30],
75
+ // opacity backgrounds Dark
76
+ opacityHoverDark: a.acid[20],
77
+ opacityFocusDark: a.acid[30],
78
+ opacityActiveDark: a.acid[40]
51
79
  }
52
80
  }, o = {
53
81
  info: {
54
- main: t.info.main,
55
- focusActive: t.info.lighter,
56
- hover: t.info.light,
57
- opacity: t.info.opacityLight,
58
- toneOpacity: t.info.toneOpacityLight,
59
- contrastText: t.info.contrastText,
60
- hoverOpacity: t.info.opacityLight,
82
+ main: i.info.main,
83
+ active: i.info.lighter,
84
+ hover: i.info.light,
85
+ opacity: i.info.opacityHoverLight,
86
+ toneOpacity: i.info.toneOpacityLight,
87
+ contrastText: i.info.contrastText,
88
+ hoverOpacity: i.info.opacityHoverLight,
89
+ focusOpacity: i.info.opacityFocusLight,
90
+ activeOpacity: i.info.opacityActiveLight,
61
91
  //Por compatibilidad con MUI
62
- light: t.info.light,
63
- dark: t.info.dark
92
+ light: i.info.light,
93
+ dark: i.info.dark
64
94
  },
65
95
  success: {
66
- main: t.success.main,
67
- focusActive: t.success.lighter,
68
- hover: t.success.light,
69
- opacity: t.success.opacityLight,
70
- toneOpacity: t.success.toneOpacityLight,
71
- contrastText: t.success.contrastText,
72
- hoverOpacity: t.success.opacityLight,
96
+ main: i.success.main,
97
+ active: i.success.lighter,
98
+ hover: i.success.light,
99
+ opacity: i.success.opacityHoverLight,
100
+ toneOpacity: i.success.toneOpacityLight,
101
+ contrastText: i.success.contrastText,
102
+ hoverOpacity: i.success.opacityHoverLight,
103
+ focusOpacity: i.success.opacityFocusLight,
104
+ activeOpacity: i.success.opacityActiveLight,
73
105
  //Por compatibilidad con MUI
74
- light: t.success.light,
75
- dark: t.success.dark
106
+ light: i.success.light,
107
+ dark: i.success.dark
76
108
  },
77
109
  warning: {
78
- main: t.warning.main,
79
- focusActive: t.warning.lighter,
80
- hover: t.warning.light,
81
- opacity: t.warning.opacityLight,
82
- toneOpacity: t.warning.toneOpacityLight,
83
- contrastText: t.warning.contrastText,
84
- hoverOpacity: t.warning.opacityLight,
110
+ main: i.warning.main,
111
+ active: i.warning.lighter,
112
+ hover: i.warning.light,
113
+ opacity: i.warning.opacityHoverLight,
114
+ toneOpacity: i.warning.toneOpacityLight,
115
+ contrastText: i.warning.contrastText,
116
+ hoverOpacity: i.warning.opacityHoverLight,
117
+ focusOpacity: i.warning.opacityFocusLight,
118
+ activeOpacity: i.warning.opacityActiveLight,
85
119
  //Por compatibilidad con MUI
86
- light: t.warning.light,
87
- dark: t.warning.dark
120
+ light: i.warning.light,
121
+ dark: i.warning.dark
88
122
  },
89
123
  error: {
90
- main: t.error.main,
91
- focusActive: t.error.lighter,
92
- hover: t.error.light,
93
- opacity: t.error.opacityLight,
94
- toneOpacity: t.error.toneOpacityLight,
95
- contrastText: t.error.contrastText,
96
- hoverOpacity: t.error.opacityLight,
124
+ main: i.error.main,
125
+ active: i.error.lighter,
126
+ hover: i.error.light,
127
+ opacity: i.error.opacityHoverLight,
128
+ toneOpacity: i.error.toneOpacityLight,
129
+ contrastText: i.error.contrastText,
130
+ hoverOpacity: i.error.opacityHoverLight,
131
+ focusOpacity: i.error.opacityFocusLight,
132
+ activeOpacity: i.error.opacityActiveLight,
97
133
  //Por compatibilidad con MUI
98
- light: t.error.light,
99
- dark: t.error.dark
134
+ light: i.error.light,
135
+ dark: i.error.dark
100
136
  }
101
- }, c = {
137
+ }, e = {
102
138
  info: {
103
- main: t.info.main,
104
- focusActive: t.info.darker,
105
- hover: t.info.dark,
106
- opacity: t.info.opacityDark,
107
- toneOpacity: t.info.toneOpacityDark,
108
- contrastText: t.info.contrastText,
109
- hoverOpacity: t.info.opacityDark,
139
+ main: i.info.main,
140
+ active: i.info.darker,
141
+ hover: i.info.dark,
142
+ opacity: i.info.opacityHoverDark,
143
+ toneOpacity: i.info.toneOpacityDark,
144
+ contrastText: i.info.contrastText,
145
+ hoverOpacity: i.info.opacityHoverDark,
146
+ focusOpacity: i.info.opacityFocusDark,
147
+ activeOpacity: i.info.opacityActiveDark,
110
148
  //Por compatibilidad con MUI
111
- light: t.info.light,
112
- dark: t.info.dark
149
+ light: i.info.light,
150
+ dark: i.info.dark
113
151
  },
114
152
  success: {
115
- main: t.success.main,
116
- focusActive: t.success.darker,
117
- hover: t.success.dark,
118
- opacity: t.success.opacityDark,
119
- toneOpacity: t.success.toneOpacityDark,
120
- contrastText: t.success.contrastText,
121
- hoverOpacity: t.success.opacityDark,
153
+ main: i.success.main,
154
+ active: i.success.darker,
155
+ hover: i.success.dark,
156
+ opacity: i.success.opacityHoverDark,
157
+ toneOpacity: i.success.toneOpacityDark,
158
+ contrastText: i.success.contrastText,
159
+ hoverOpacity: i.success.opacityHoverDark,
160
+ focusOpacity: i.success.opacityFocusDark,
161
+ activeOpacity: i.success.opacityActiveDark,
122
162
  //Por compatibilidad con MUI
123
- light: t.success.light,
124
- dark: t.success.dark
163
+ light: i.success.light,
164
+ dark: i.success.dark
125
165
  },
126
166
  warning: {
127
- main: t.warning.main,
128
- focusActive: t.warning.darker,
129
- hover: t.warning.dark,
130
- opacity: t.warning.opacityDark,
131
- toneOpacity: t.warning.toneOpacityDark,
132
- contrastText: t.warning.contrastText,
133
- hoverOpacity: t.warning.opacityDark,
167
+ main: i.warning.main,
168
+ active: i.warning.darker,
169
+ hover: i.warning.dark,
170
+ opacity: i.warning.opacityHoverDark,
171
+ toneOpacity: i.warning.toneOpacityDark,
172
+ contrastText: i.warning.contrastText,
173
+ hoverOpacity: i.warning.opacityHoverDark,
174
+ focusOpacity: i.warning.opacityFocusDark,
175
+ activeOpacity: i.warning.opacityActiveDark,
134
176
  //Por compatibilidad con MUI
135
- light: t.warning.light,
136
- dark: t.warning.dark
177
+ light: i.warning.light,
178
+ dark: i.warning.dark
137
179
  },
138
180
  error: {
139
- main: t.error.main,
140
- focusActive: t.error.darker,
141
- hover: t.error.dark,
142
- opacity: t.error.opacityDark,
143
- toneOpacity: t.error.toneOpacityDark,
144
- contrastText: t.error.contrastText,
145
- hoverOpacity: t.error.opacityDark,
181
+ main: i.error.main,
182
+ active: i.error.darker,
183
+ hover: i.error.dark,
184
+ opacity: i.error.opacityHoverDark,
185
+ toneOpacity: i.error.toneOpacityDark,
186
+ contrastText: i.error.contrastText,
187
+ hoverOpacity: i.error.opacityHoverDark,
188
+ focusOpacity: i.error.opacityFocusDark,
189
+ activeOpacity: i.error.opacityActiveDark,
146
190
  //Por compatibilidad con MUI
147
- light: t.error.light,
148
- dark: t.error.dark
191
+ light: i.error.light,
192
+ dark: i.error.dark
149
193
  }
150
194
  };
151
195
  export {
152
196
  o as S,
153
- c as a
197
+ e as a
154
198
  };
@@ -0,0 +1,13 @@
1
+ export interface TagColor {
2
+ contrastText: string;
3
+ backgroundColor: string;
4
+ }
5
+ export type TagColorOptions = 'default' | 'warning' | 'warningOpacity' | 'error' | 'errorOpacity' | 'success' | 'successOpacity' | 'info' | 'infoOpacity';
6
+ /**
7
+ * Lista de colores definidos para pintar los tags en modo light
8
+ */
9
+ export declare const BASE_TAG_OBJECT_COLORS_LIGHT: Record<TagColorOptions, TagColor>;
10
+ /**
11
+ * Lista de colores definidos para pintar los tags en modo light
12
+ */
13
+ export declare const BASE_TAG_OBJECT_COLORS_DARK: Record<TagColorOptions, TagColor>;
@@ -1,5 +1,5 @@
1
- import { P as a } from "./presetSizes.js";
2
- const n = {
1
+ import { P as a, a as e } from "./presetSizes.js";
2
+ const i = {
3
3
  small: {
4
4
  base: a.base.small,
5
5
  action: a.action.small,
@@ -15,24 +15,24 @@ const n = {
15
15
  action: a.action.large,
16
16
  container: a.container.large
17
17
  }
18
- }, i = {
18
+ }, o = {
19
19
  small: {
20
- base: a.base.small,
21
- action: a.action.small,
22
- container: a.container.small
20
+ base: e.base.small,
21
+ action: e.action.small,
22
+ container: e.container.small
23
23
  },
24
24
  medium: {
25
- base: a.base.medium,
26
- action: a.action.medium,
27
- container: a.container.medium
25
+ base: e.base.medium,
26
+ action: e.action.medium,
27
+ container: e.container.medium
28
28
  },
29
29
  large: {
30
- base: a.base.large,
31
- action: a.action.large,
32
- container: a.container.large
30
+ base: e.base.large,
31
+ action: e.action.large,
32
+ container: e.container.large
33
33
  }
34
34
  };
35
35
  export {
36
- n as P,
37
- i as a
36
+ i as P,
37
+ o as a
38
38
  };
@@ -1,5 +1,21 @@
1
1
  import { B as s } from "./baseSizes.js";
2
2
  const m = {
3
+ base: {
4
+ small: s.sp5,
5
+ medium: s.sp6,
6
+ large: s.sp7
7
+ },
8
+ action: {
9
+ small: s.sp7,
10
+ medium: s.sp8,
11
+ large: s.sp9
12
+ },
13
+ container: {
14
+ small: s.sp9,
15
+ medium: s.sp10,
16
+ large: s.sp11
17
+ }
18
+ }, p = {
3
19
  base: {
4
20
  small: s["sp3-5"],
5
21
  medium: s.sp4,
@@ -17,5 +33,6 @@ const m = {
17
33
  }
18
34
  };
19
35
  export {
20
- m as P
36
+ p as P,
37
+ m as a
21
38
  };
@@ -4,7 +4,10 @@ export type FontProps = {
4
4
  lineHeight: string;
5
5
  letterSpacing: string;
6
6
  };
7
- export type M4LTypographyVariants = 'h1' | 'h3' | 'h5' | 'subtitle' | 'subtitleDens' | 'paragraph' | 'paragraphDens' | 'body' | 'bodyDens' | 'action';
7
+ /**
8
+ * Listas de variantes de tipografía disponibles para la aplicación web.
9
+ */
10
+ export type M4LTypographyVariants = 'h1' | 'h2' | 'h3' | 'h5' | 'subtitle' | 'subtitleDens' | 'paragraph' | 'paragraphDens' | 'body' | 'bodyDens';
8
11
  export interface TypographyVariants {
9
12
  subtitle: FontProps;
10
13
  subtitleDens: FontProps;
@@ -15,7 +18,7 @@ export interface TypographyVariants {
15
18
  action: FontProps;
16
19
  }
17
20
  export declare const typography: {
18
- readonly fontFamily: "Segoe UI, Poppins, sans-serif";
21
+ readonly fontFamily: "Inter, Segoe UI, Poppins, sans-serif";
19
22
  readonly fontWeightRegular: 400;
20
23
  readonly fontWeightMedium: 600;
21
24
  readonly fontWeightBold: 700;
@@ -1,6 +1,6 @@
1
1
  import { createTheme as i } from "@mui/material";
2
2
  import { a as e, p as t } from "../utils/getFontValue.js";
3
- const n = "Segoe UI, Poppins, sans-serif", g = i(), l = {
3
+ const n = "Inter, Segoe UI, Poppins, sans-serif", g = i(), l = {
4
4
  ...g.typography,
5
5
  fontFamily: n,
6
6
  fontWeightRegular: 400,
@@ -23,10 +23,12 @@ declare module '@mui/material/styles' {
23
23
  // dark: string; *** Por compatibilidad con MUI
24
24
  // contrastText: string; ***
25
25
 
26
- focusActive: string;
26
+ active: string;
27
27
  focusVisible: string;
28
28
  hover: string;
29
29
  hoverOpacity: string;
30
+ activeOpacity: string;
31
+ focusOpacity: string;
30
32
  opacity: string;
31
33
  toneOpacity: string;
32
34
  }
package/types/types.d.ts CHANGED
@@ -51,10 +51,20 @@ export interface PresetColor {
51
51
  lighter: string;
52
52
  toneOpacityLight: string;
53
53
  /**
54
- * Permite definir fondos de componentes en estados hover y focus dependiendo de la necesidad.
54
+ * Permite definir fondos de componentes en estados hover dependiendo del modo de la aplicación web.
55
55
  */
56
- opacityLight: string;
57
- opacityDark: string;
56
+ opacityHoverLight: string;
57
+ opacityHoverDark: string;
58
+ /**
59
+ * Permite definir fondos de componentes en estados focus dependiendo del modo de la aplicación web.
60
+ */
61
+ opacityFocusLight: string;
62
+ opacityFocusDark: string;
63
+ /**
64
+ * Permite definir fondos de componentes en estados active dependiendo del modo de la aplicación web.
65
+ */
66
+ opacityActiveLight: string;
67
+ opacityActiveDark: string;
58
68
  dark: string;
59
69
  darker: string;
60
70
  toneOpacityDark: string;
@@ -15,10 +15,12 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
15
15
  readonly main: string;
16
16
  readonly dark: string;
17
17
  readonly contrastText: string;
18
- readonly focusActive: string;
18
+ readonly active: string;
19
19
  readonly focusVisible: string;
20
20
  readonly hover: string;
21
21
  readonly hoverOpacity: string;
22
+ readonly activeOpacity: string;
23
+ readonly focusOpacity: string;
22
24
  readonly opacity: string;
23
25
  readonly toneOpacity: string;
24
26
  };
@@ -28,9 +30,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
28
30
  readonly light: string;
29
31
  readonly dark: string;
30
32
  readonly main: string;
31
- readonly focusActive: string;
33
+ readonly active: string;
32
34
  readonly hover: string;
33
35
  readonly hoverOpacity: string;
36
+ readonly activeOpacity: string;
37
+ readonly focusOpacity: string;
34
38
  readonly opacity: string;
35
39
  readonly toneOpacity: string;
36
40
  };
@@ -70,9 +74,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
70
74
  readonly dark: string;
71
75
  readonly main: string;
72
76
  readonly contrastText: string;
73
- readonly focusActive: string;
77
+ readonly active: string;
74
78
  readonly hover: string;
75
79
  readonly hoverOpacity: string;
80
+ readonly activeOpacity: string;
81
+ readonly focusOpacity: string;
76
82
  readonly opacity: string;
77
83
  readonly toneOpacity: string;
78
84
  };
@@ -82,9 +88,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
82
88
  readonly dark: string;
83
89
  readonly main: string;
84
90
  readonly contrastText: string;
85
- readonly focusActive: string;
91
+ readonly active: string;
86
92
  readonly hover: string;
87
93
  readonly hoverOpacity: string;
94
+ readonly activeOpacity: string;
95
+ readonly focusOpacity: string;
88
96
  readonly opacity: string;
89
97
  readonly toneOpacity: string;
90
98
  };
@@ -94,9 +102,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
94
102
  readonly dark: string;
95
103
  readonly main: string;
96
104
  readonly contrastText: string;
97
- readonly focusActive: string;
105
+ readonly active: string;
98
106
  readonly hover: string;
99
107
  readonly hoverOpacity: string;
108
+ readonly activeOpacity: string;
109
+ readonly focusOpacity: string;
100
110
  readonly opacity: string;
101
111
  readonly toneOpacity: string;
102
112
  };
@@ -106,9 +116,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
106
116
  readonly dark: string;
107
117
  readonly main: string;
108
118
  readonly contrastText: string;
109
- readonly focusActive: string;
119
+ readonly active: string;
110
120
  readonly hover: string;
111
121
  readonly hoverOpacity: string;
122
+ readonly activeOpacity: string;
123
+ readonly focusOpacity: string;
112
124
  readonly opacity: string;
113
125
  readonly toneOpacity: string;
114
126
  };
@@ -121,10 +133,12 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
121
133
  readonly main: string;
122
134
  readonly dark: string;
123
135
  readonly contrastText: string;
124
- readonly focusActive: string;
136
+ readonly active: string;
125
137
  readonly focusVisible: string;
126
138
  readonly hover: string;
127
139
  readonly hoverOpacity: string;
140
+ readonly activeOpacity: string;
141
+ readonly focusOpacity: string;
128
142
  readonly opacity: string;
129
143
  readonly toneOpacity: string;
130
144
  };
@@ -134,9 +148,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
134
148
  readonly light: string;
135
149
  readonly dark: string;
136
150
  readonly main: string;
137
- readonly focusActive: string;
151
+ readonly active: string;
138
152
  readonly hover: string;
139
153
  readonly hoverOpacity: string;
154
+ readonly activeOpacity: string;
155
+ readonly focusOpacity: string;
140
156
  readonly opacity: string;
141
157
  readonly toneOpacity: string;
142
158
  };
@@ -176,9 +192,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
176
192
  readonly dark: string;
177
193
  readonly main: string;
178
194
  readonly contrastText: string;
179
- readonly focusActive: string;
195
+ readonly active: string;
180
196
  readonly hover: string;
181
197
  readonly hoverOpacity: string;
198
+ readonly activeOpacity: string;
199
+ readonly focusOpacity: string;
182
200
  readonly opacity: string;
183
201
  readonly toneOpacity: string;
184
202
  };
@@ -188,9 +206,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
188
206
  readonly dark: string;
189
207
  readonly main: string;
190
208
  readonly contrastText: string;
191
- readonly focusActive: string;
209
+ readonly active: string;
192
210
  readonly hover: string;
193
211
  readonly hoverOpacity: string;
212
+ readonly activeOpacity: string;
213
+ readonly focusOpacity: string;
194
214
  readonly opacity: string;
195
215
  readonly toneOpacity: string;
196
216
  };
@@ -200,9 +220,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
200
220
  readonly dark: string;
201
221
  readonly main: string;
202
222
  readonly contrastText: string;
203
- readonly focusActive: string;
223
+ readonly active: string;
204
224
  readonly hover: string;
205
225
  readonly hoverOpacity: string;
226
+ readonly activeOpacity: string;
227
+ readonly focusOpacity: string;
206
228
  readonly opacity: string;
207
229
  readonly toneOpacity: string;
208
230
  };
@@ -212,9 +234,11 @@ export declare const getPaletteByPreset: (themeUserColor: ThemeUserColor) => {
212
234
  readonly dark: string;
213
235
  readonly main: string;
214
236
  readonly contrastText: string;
215
- readonly focusActive: string;
237
+ readonly active: string;
216
238
  readonly hover: string;
217
239
  readonly hoverOpacity: string;
240
+ readonly activeOpacity: string;
241
+ readonly focusOpacity: string;
218
242
  readonly opacity: string;
219
243
  readonly toneOpacity: string;
220
244
  };
@@ -4,7 +4,7 @@ import { C as c } from "../theme/palette/commonColors.js";
4
4
  import { G as d } from "../theme/palette/greyPalette.js";
5
5
  import { S as s, a } from "../theme/palette/semanticColors.js";
6
6
  import { B as o } from "../theme/palette/baseOpacityColors.js";
7
- import { D as f, a as u } from "../theme/palette/defaultColors.js";
7
+ import { B as f, a as u } from "../theme/palette/defaultColors.js";
8
8
  const t = {
9
9
  light: {
10
10
  scrollBar: "#5663763D",
@@ -14,7 +14,7 @@ const t = {
14
14
  scrollBar: "#5663765D",
15
15
  gridHover: "#282E2E"
16
16
  }
17
- }, C = (l) => {
17
+ }, p = (l) => {
18
18
  const i = m?.[l], e = b?.[l];
19
19
  return {
20
20
  light: {
@@ -141,5 +141,5 @@ const t = {
141
141
  };
142
142
  };
143
143
  export {
144
- C as g
144
+ p as g
145
145
  };