@redis-ui/styles 12.7.0 → 12.9.0

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.
@@ -17,6 +17,32 @@ export type TableTheme = {
17
17
  color: string;
18
18
  };
19
19
  };
20
+ pagination: {
21
+ bar: {
22
+ borderColor: string;
23
+ borderSize: string;
24
+ textColor: string;
25
+ height: string;
26
+ gap: string;
27
+ padding: string;
28
+ fontSize: string;
29
+ };
30
+ navButton: {
31
+ color: string;
32
+ disabledColor: string;
33
+ width: string;
34
+ height: string;
35
+ padding: string;
36
+ };
37
+ select: {
38
+ height: string;
39
+ padding: string;
40
+ gap: string;
41
+ fontSize: string;
42
+ textColor: string;
43
+ };
44
+ };
45
+ /** @deprecated use pagination entry instead */
20
46
  components: {
21
47
  tablePagination: {
22
48
  paginationIconButton: {
@@ -1,4 +1,5 @@
1
1
  export type HeadingSize = 'XXL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
2
+ export type HeadingVariant = 'bold' | 'semiBold';
2
3
  export type BodySize = 'XL' | 'L' | 'M' | 'S' | 'XS';
3
4
  export type BodyVariant = 'regular' | 'semiBold' | 'italic';
4
5
  export type CodeSize = 'L' | 'M' | 'S';
@@ -13,6 +14,7 @@ export type TypoTheme = {
13
14
  fontWeight: string;
14
15
  margin?: string;
15
16
  }>;
17
+ fontWeight: Record<HeadingVariant, string>;
16
18
  };
17
19
  body: {
18
20
  fontFamily: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@redis-ui/styles",
3
3
  "license": "UNLICENSED",
4
- "version": "12.7.0",
4
+ "version": "12.9.0",
5
5
  "publishConfig": {
6
6
  "registry": "https://npm.pkg.github.com/"
7
7
  },