@frontify/fondue 13.5.1 → 13.6.1
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/packages/charts/style.css +1 -1
- package/dist/packages/components/style.css +1 -1
- package/dist/packages/rte/style.css +1 -1
- package/dist/packages/sdk/fondue-sdk.js +1 -0
- package/dist/packages/sdk/sdk.d.ts +1 -0
- package/dist/packages/tokens/manifest.json +2747 -0
- package/dist/tools/sdk-cli/adapters/claude-skill/skill/SKILL.md +207 -0
- package/dist/tools/sdk-cli/adapters/claude-skill/skill/reference.md +235 -0
- package/dist/tools/sdk-cli/index.js +224 -0
- package/package.json +16 -9
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontify/fondue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.6.1",
|
|
5
5
|
"description": "Design system of Frontify",
|
|
6
6
|
"author": "Frontify Developers <developers@frontify.com>",
|
|
7
7
|
"homepage": "https://github.com/Frontify/fondue",
|
|
@@ -54,6 +54,10 @@
|
|
|
54
54
|
"import": "./dist/packages/rte/fondue-rte.js"
|
|
55
55
|
},
|
|
56
56
|
"./rte/styles": "./dist/packages/rte/style.css",
|
|
57
|
+
"./sdk": {
|
|
58
|
+
"types": "./dist/packages/sdk/sdk.d.ts",
|
|
59
|
+
"import": "./dist/packages/sdk/fondue-sdk.js"
|
|
60
|
+
},
|
|
57
61
|
"./charts/styles": "./dist/packages/charts/style.css",
|
|
58
62
|
".": {
|
|
59
63
|
"types": "./dist/index.d.ts",
|
|
@@ -75,7 +79,8 @@
|
|
|
75
79
|
"types": "dist/index.d.ts",
|
|
76
80
|
"bin": {
|
|
77
81
|
"codemod": "./dist/tools/codemod/index.js",
|
|
78
|
-
"internal": "./dist/tools/internal/index.js"
|
|
82
|
+
"internal": "./dist/tools/internal/index.js",
|
|
83
|
+
"fondue": "./dist/tools/sdk-cli/index.js"
|
|
79
84
|
},
|
|
80
85
|
"files": [
|
|
81
86
|
"dist",
|
|
@@ -133,11 +138,12 @@
|
|
|
133
138
|
"react-is": "^18.3.1",
|
|
134
139
|
"react-popper": "^2.3.0",
|
|
135
140
|
"react-textarea-autosize": "^8.5.9",
|
|
136
|
-
"@frontify/fondue-
|
|
141
|
+
"@frontify/fondue-charts": "^7.1.0",
|
|
142
|
+
"@frontify/fondue-components": "^30.6.1",
|
|
143
|
+
"@frontify/fondue-icons": "^0.26.2",
|
|
137
144
|
"@frontify/fondue-rte": "^0.1.4",
|
|
138
|
-
"@frontify/fondue-
|
|
139
|
-
"@frontify/fondue-tokens": "^5.0.
|
|
140
|
-
"@frontify/fondue-icons": "^0.26.1"
|
|
145
|
+
"@frontify/fondue-sdk": "^0.1.1",
|
|
146
|
+
"@frontify/fondue-tokens": "^5.0.2"
|
|
141
147
|
},
|
|
142
148
|
"devDependencies": {
|
|
143
149
|
"@babel/core": "^7.29.0",
|
|
@@ -179,10 +185,10 @@
|
|
|
179
185
|
"vite-plugin-dts": "^4.5.4",
|
|
180
186
|
"vite-plugin-static-copy": "^3.1.5",
|
|
181
187
|
"vite-tsconfig-paths": "^5.1.4",
|
|
182
|
-
"@frontify/fondue-icons": "^0.26.
|
|
188
|
+
"@frontify/fondue-icons": "^0.26.2"
|
|
183
189
|
},
|
|
184
190
|
"scripts": {
|
|
185
|
-
"build": "pnpm clean && pnpm build:library && pnpm build:styles-with-tw && pnpm build:package:components && pnpm build:package:locales && pnpm build:package:icons && pnpm build:package:charts && pnpm build:package:tokens && pnpm build:package:rte && pnpm build:tools",
|
|
191
|
+
"build": "pnpm clean && pnpm build:library && pnpm build:styles-with-tw && pnpm build:package:components && pnpm build:package:locales && pnpm build:package:icons && pnpm build:package:charts && pnpm build:package:tokens && pnpm build:package:rte && pnpm build:package:sdk && pnpm build:tools",
|
|
186
192
|
"build:library": "vite build",
|
|
187
193
|
"build:styles-with-tw": "postcss ./src/components/**/*.css --config src/components/postcss.config.cjs -o dist/styles-without-tailwind.css",
|
|
188
194
|
"build:storybook": "storybook build",
|
|
@@ -192,7 +198,8 @@
|
|
|
192
198
|
"build:package:charts": "vite build -c charts.vite.config.ts",
|
|
193
199
|
"build:package:tokens": "vite build -c tokens.vite.config.ts",
|
|
194
200
|
"build:package:rte": "vite build -c rte.vite.config.ts",
|
|
195
|
-
"build:
|
|
201
|
+
"build:package:sdk": "vite build -c sdk.vite.config.ts",
|
|
202
|
+
"build:tools": "tsx scripts/detectDeprecatedExports/detectDeprecatedExports.ts tools/constants/fondueExports.json && vite build -c codemod.vite.config.ts && vite build -c internal-tools.vite.config.ts && vite build -c sdk-cli.vite.config.ts",
|
|
196
203
|
"dev": "cross-env NODE_ENV=development pnpm dev:library",
|
|
197
204
|
"dev:library": "vite build --emptyOutDir false --watch",
|
|
198
205
|
"clean": "rimraf dist",
|