@cerberus-design/data-grid 1.0.0-rc.5 → 1.0.0-rc.6

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.
@@ -0,0 +1,23 @@
1
+ {
2
+ "schemaVersion": "1.9.0",
3
+ "styles": {
4
+ "atomic": [
5
+ "width]___[value:1/2",
6
+ "position]___[value:relative",
7
+ "display]___[value:flex",
8
+ "alignItems]___[value:center",
9
+ "justifyContent]___[value:flex-start",
10
+ "gap]___[value:xs",
11
+ "flexDirection]___[value:row",
12
+ "marginBlockEnd]___[value:xs",
13
+ "textStyle]___[value:label-md",
14
+ "width]___[value:initial",
15
+ "height]___[value:2rem",
16
+ "paddingInline]___[value:md",
17
+ "srOnly]___[value:true",
18
+ "gap]___[value:8px",
19
+ "color]___[value:page.text.100"
20
+ ],
21
+ "recipes": {}
22
+ }
23
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cerberus-design/data-grid",
3
- "version": "1.0.0-rc.5",
3
+ "version": "1.0.0-rc.6",
4
4
  "description": "The Cerberus Design React DataGrid component.",
5
5
  "keywords": [
6
6
  "data grid",
@@ -27,10 +27,11 @@
27
27
  "access": "public"
28
28
  },
29
29
  "dependencies": {
30
- "@cerberus-design/signals": "1.0.0-rc.5",
31
- "@cerberus-design/react": "1.0.0-rc.5"
30
+ "@cerberus-design/react": "1.0.0-rc.6",
31
+ "@cerberus-design/signals": "1.0.0-rc.6"
32
32
  },
33
33
  "devDependencies": {
34
+ "@pandacss/dev": "^1.9.0",
34
35
  "@types/react": "^19.2.14",
35
36
  "@types/react-dom": "^19.2.3",
36
37
  "@vitejs/plugin-react": "^5.1.2",
@@ -42,12 +43,14 @@
42
43
  "styled-system": "0.0.0"
43
44
  },
44
45
  "peerDependencies": {
46
+ "@pandacss/dev": "^1.9.0",
45
47
  "react": "*",
46
48
  "react-dom": "*"
47
49
  },
48
50
  "browserslist": "> 0.25%, not dead",
49
51
  "scripts": {
50
- "build": "vite build",
52
+ "generate:info": "pnpm panda ship --outfile dist/panda.buildinfo.json",
53
+ "build": "vite build && pnpm generate:info",
51
54
  "clean": "rm -rf ./dist",
52
55
  "lint:ts": "tsc --project tsconfig.lint.json --noEmit"
53
56
  },