@camunda/design-system 0.52.0 → 0.53.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.
- package/dist/carbon-compat/icon-button.d.ts +3 -1
- package/dist/carbon-compat/icon-button.d.ts.map +1 -1
- package/dist/carbon-compat/icon-button.js +34 -7
- package/dist/carbon-compat/icon-button.js.map +1 -1
- package/dist/src/components/ui/icon-button.d.ts +26 -0
- package/dist/src/components/ui/icon-button.d.ts.map +1 -0
- package/dist/src/components/ui/icon-button.js +39 -0
- package/dist/src/components/ui/icon-button.js.map +1 -0
- package/dist/src/components/ui/multi-step-dialog.d.ts +47 -0
- package/dist/src/components/ui/multi-step-dialog.d.ts.map +1 -0
- package/dist/src/components/ui/multi-step-dialog.js +201 -0
- package/dist/src/components/ui/multi-step-dialog.js.map +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +2 -0
- package/dist/src/index.js.map +1 -1
- package/dist/styles.css +20 -494
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda/design-system",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.53.0",
|
|
4
4
|
"description": "Camunda's AI-first design system. shadcn + Tailwind components, design tokens aligned to Camunda's identity, and AI tooling for component authoring + migration.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -53,7 +53,8 @@
|
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"build": "tsc -p tsconfig.app.json && tsc-alias -p tsconfig.app.json && npm run build:css && npm run build:fonts",
|
|
56
|
-
"build:css": "tailwindcss -i src/index.css -o dist/styles.css",
|
|
56
|
+
"build:css": "tailwindcss -i src/index.css -o dist/styles.css && npm run check:css",
|
|
57
|
+
"check:css": "test -f dist/styles.css || { echo 'ERROR: dist/styles.css not found — run npm run build:css first'; exit 1; }; if grep -n '«' dist/styles.css; then echo 'ERROR: dist/styles.css contains unresolved Tailwind placeholder tokens (see issue #580)'; exit 1; fi",
|
|
57
58
|
"build:fonts": "mkdir -p dist/files && cp node_modules/@fontsource/geist-sans/files/geist-sans-latin-400-normal.woff2 node_modules/@fontsource/geist-sans/files/geist-sans-latin-400-normal.woff node_modules/@fontsource/geist-sans/files/geist-sans-latin-500-normal.woff2 node_modules/@fontsource/geist-sans/files/geist-sans-latin-500-normal.woff node_modules/@fontsource/geist-sans/files/geist-sans-latin-600-normal.woff2 node_modules/@fontsource/geist-sans/files/geist-sans-latin-600-normal.woff node_modules/@fontsource/geist-sans/files/geist-sans-latin-700-normal.woff2 node_modules/@fontsource/geist-sans/files/geist-sans-latin-700-normal.woff dist/files/",
|
|
58
59
|
"dev": "tsc -p tsconfig.app.json --watch",
|
|
59
60
|
"clean": "rimraf dist/",
|