@codapet/design-system 0.8.2 → 0.8.4
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/AGENTS.md +21 -1
- package/dist/index.d.mts +32 -3
- package/dist/index.mjs +75 -28
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +2 -0
- package/package.json +4 -1
package/dist/styles.css
CHANGED
|
@@ -133,6 +133,7 @@
|
|
|
133
133
|
--color-error-surface-dark: var(--error-surface-dark);
|
|
134
134
|
--color-error-surface-light: var(--error-surface-light);
|
|
135
135
|
--color-error-surface-default: var(--error-surface-default);
|
|
136
|
+
--color-error-destructive: var(--error-destructive);
|
|
136
137
|
|
|
137
138
|
/* Semantic tokens for dark mode compatibility */
|
|
138
139
|
--color-foreground-secondary: var(--foreground-secondary);
|
|
@@ -256,6 +257,7 @@
|
|
|
256
257
|
--error-stroke-light: oklch(0.8834 0.0616 18.39);
|
|
257
258
|
--error-stroke-default: oklch(0.6834 0.2106 19.85);
|
|
258
259
|
--error-surface-subtle: oklch(0.9903 0.003 17.21);
|
|
260
|
+
--error-destructive: oklch(0.578272 0.198353 25.169);
|
|
259
261
|
|
|
260
262
|
/* Semantic tokens */
|
|
261
263
|
--foreground-secondary: oklch(0.37 0.013 285.8);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codapet/design-system",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "./dist/index.mjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -20,6 +20,9 @@
|
|
|
20
20
|
"dist/**",
|
|
21
21
|
"AGENTS.md"
|
|
22
22
|
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=24"
|
|
25
|
+
},
|
|
23
26
|
"scripts": {
|
|
24
27
|
"dev": "npm run build:css && next dev --turbopack",
|
|
25
28
|
"build": "next build --turbopack",
|