@gearbox-protocol/permissionless-ui 1.9.0 → 1.9.2

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.
package/dist/globals.css CHANGED
@@ -63,9 +63,9 @@
63
63
  --muted-foreground: 240 2% 75%;
64
64
  --accent: 330 100% 59%;
65
65
  --accent-foreground: 0 0% 100%;
66
- --destructive: 0 100% 65%;
66
+ --destructive: 3 93% 63%;
67
+ --success: 128 49% 49%;
67
68
  --destructive-foreground: 0 0% 100%;
68
- --success: 137, 100%, 79%;
69
69
  --warning: 44 100% 69%;
70
70
  --liquidation: 274 67% 58%;
71
71
  --input: 225 6% 19%;
@@ -8,6 +8,7 @@ declare const gridTableVariants: (props?: ({
8
8
  interface GridTableProps extends Omit<GridProps, "cols">, VariantProps<typeof gridTableVariants> {
9
9
  cols?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | string;
10
10
  children?: React.ReactNode;
11
+ className?: string;
11
12
  }
12
13
  /**
13
14
  * GridTable — table-like layout component using CSS Grid.
@@ -91,6 +92,7 @@ declare const GridTableBody: React.ForwardRefExoticComponent<React.HTMLAttribute
91
92
  declare const GridTableFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
92
93
  interface GridTableRowProps extends GridProps {
93
94
  children?: React.ReactNode;
95
+ className?: string;
94
96
  }
95
97
  /**
96
98
  * GridTableRow — row component of a GridTable.
@@ -112,6 +114,7 @@ declare const gridTableHeadVariants: (props?: ({
112
114
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
113
115
  interface GridTableHeadProps extends ColProps, VariantProps<typeof gridTableHeadVariants> {
114
116
  children?: React.ReactNode;
117
+ className?: string;
115
118
  }
116
119
  /**
117
120
  * GridTableHead — header cell component of a GridTable.
@@ -133,6 +136,7 @@ declare const gridTableCellVariants: (props?: ({
133
136
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
134
137
  interface GridTableCellProps extends ColProps, VariantProps<typeof gridTableCellVariants> {
135
138
  children?: React.ReactNode;
139
+ className?: string;
136
140
  }
137
141
  /**
138
142
  * GridTableCell — data cell component of a GridTable.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/permissionless-ui",
3
- "version": "1.9.0",
3
+ "version": "1.9.2",
4
4
  "description": "Internal UI components",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/index.js",