@cognicatch/react 1.1.0 → 1.1.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/README.md +76 -129
- package/dist/cognicatch-react.css +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +17 -7
- package/dist/index.js +390 -253
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cognicatch/react",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "GenUI Error Boundaries and AI Recovery UIs for React",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
38
|
+
"@radix-ui/react-dismissable-layer": "^1.1.0",
|
|
39
|
+
"@radix-ui/react-focus-scope": "^1.1.0",
|
|
40
|
+
"@radix-ui/react-portal": "^1.1.0",
|
|
41
|
+
"@radix-ui/react-presence": "^1.1.0",
|
|
38
42
|
"@radix-ui/react-slot": "^1.2.4",
|
|
39
43
|
"class-variance-authority": "^0.7.1",
|
|
40
44
|
"clsx": "^2.1.1",
|
|
@@ -76,8 +80,9 @@
|
|
|
76
80
|
"build": "vite build -c vite.config.build.ts",
|
|
77
81
|
"preview": "vite preview",
|
|
78
82
|
"test": "vitest run",
|
|
79
|
-
"format": "biome format",
|
|
80
|
-
"lint": "biome lint",
|
|
81
|
-
"check": "biome check"
|
|
83
|
+
"format": "biome format --write",
|
|
84
|
+
"lint": "biome lint --write",
|
|
85
|
+
"check": "biome check",
|
|
86
|
+
"check:fix": "biome check --write --unsafe"
|
|
82
87
|
}
|
|
83
88
|
}
|