@frontify/fondue 13.6.1 → 13.6.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.
Files changed (43) hide show
  1. package/dist/components/DatePicker/DatePicker.es.js.map +1 -1
  2. package/dist/components/Tree/Tree.es.js.map +1 -1
  3. package/dist/components/Tree/TreeItem/useMultiselectTreeItem.es.js.map +1 -1
  4. package/dist/components/Tree/helpers/projection.es.js.map +1 -1
  5. package/dist/components/Tree/types.es.js.map +1 -1
  6. package/dist/index.cjs.js +1 -1
  7. package/dist/index.cjs.js.map +1 -1
  8. package/dist/index.umd.js +1 -1
  9. package/dist/index.umd.js.map +1 -1
  10. package/dist/packages/charts/style.css.d.ts +1 -0
  11. package/dist/packages/components/style.css +1 -1
  12. package/dist/packages/components/style.css.d.ts +1 -0
  13. package/dist/packages/locales/de-CH.js +7 -3
  14. package/dist/packages/locales/de-CH.js.map +1 -1
  15. package/dist/packages/locales/de-DE.js +7 -3
  16. package/dist/packages/locales/de-DE.js.map +1 -1
  17. package/dist/packages/locales/en-US.d.ts +4 -0
  18. package/dist/packages/locales/en-US.js +7 -3
  19. package/dist/packages/locales/en-US.js.map +1 -1
  20. package/dist/packages/locales/es-ES.js +7 -3
  21. package/dist/packages/locales/es-ES.js.map +1 -1
  22. package/dist/packages/locales/fr-CH.js +5 -1
  23. package/dist/packages/locales/fr-CH.js.map +1 -1
  24. package/dist/packages/locales/fr-FR.js +5 -1
  25. package/dist/packages/locales/fr-FR.js.map +1 -1
  26. package/dist/packages/locales/it-CH.js +7 -3
  27. package/dist/packages/locales/it-CH.js.map +1 -1
  28. package/dist/packages/locales/it-IT.js +7 -3
  29. package/dist/packages/locales/it-IT.js.map +1 -1
  30. package/dist/packages/locales/nl-NL.js +5 -1
  31. package/dist/packages/locales/nl-NL.js.map +1 -1
  32. package/dist/packages/locales/pl-PL.js +7 -3
  33. package/dist/packages/locales/pl-PL.js.map +1 -1
  34. package/dist/packages/locales/pt-PT.js +7 -3
  35. package/dist/packages/locales/pt-PT.js.map +1 -1
  36. package/dist/packages/rte/style.css +1 -1
  37. package/dist/packages/rte/style.css.d.ts +1 -0
  38. package/dist/packages/tokens/css/base.css.d.ts +1 -0
  39. package/dist/packages/tokens/legacy/deprecatedBaseTokens.css.d.ts +1 -0
  40. package/dist/packages/tokens/themes/themes.module.css.d.ts +1 -2
  41. package/dist/style.css.d.ts +1 -0
  42. package/dist/tools/sdk-cli/index.js +2 -2
  43. package/package.json +43 -19
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -1,2 +1 @@
1
- declare const styles: {base: string;dark: string; light: string;};
2
- export default styles;
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -17,7 +17,7 @@ const TOOL_DIR = dirname(fileURLToPath(import.meta.url));
17
17
  const SKILL_SOURCE_DIR = resolve(TOOL_DIR, "adapters", "claude-skill", "skill");
18
18
  const SKILL_NAME = "fondue";
19
19
  const CONSUMER_PACKAGE = "@frontify/fondue";
20
- const FONDUE_VERSION = "13.6.1";
20
+ const FONDUE_VERSION = "13.6.2";
21
21
  const scopeOf = (options) => options.user ? "user" : "project";
22
22
  const projectRoot = () => {
23
23
  let dir = process.cwd();
@@ -195,7 +195,7 @@ Example: fondue adapter ${verb} ${ADAPTERS[0]?.name ?? "<name>"}`
195
195
  }
196
196
  return fail(`Unknown adapter "${name}". Available: ${adapterNames()}.`);
197
197
  };
198
- const program = new Command().name("fondue").description("CLI for Frontify Fondue.").version("13.6.1");
198
+ const program = new Command().name("fondue").description("CLI for Frontify Fondue.").version("13.6.2");
199
199
  const adapter = program.command("adapter").description("Install and manage Fondue SDK adapters (Claude Code skill, MCP, REST, …).");
200
200
  adapter.command("install [name]").aliases(["add", "update"]).description(
201
201
  "Install an adapter, or refresh an existing install in place. Run `adapter list` to see what `<name>` accepts."
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@frontify/fondue",
3
3
  "type": "module",
4
- "version": "13.6.1",
4
+ "version": "13.6.2",
5
5
  "description": "Design system of Frontify",
6
6
  "author": "Frontify Developers <developers@frontify.com>",
7
7
  "homepage": "https://github.com/Frontify/fondue",
@@ -29,7 +29,10 @@
29
29
  "require": "./dist/packages/components/fondue-components.umd.cjs",
30
30
  "import": "./dist/packages/components/fondue-components.js"
31
31
  },
32
- "./components/styles": "./dist/packages/components/style.css",
32
+ "./components/styles": {
33
+ "types": "./dist/packages/components/style.css.d.ts",
34
+ "default": "./dist/packages/components/style.css"
35
+ },
33
36
  "./components/locales": {
34
37
  "types": "./dist/packages/locales/index.d.ts",
35
38
  "import": "./dist/packages/locales/index.js"
@@ -53,22 +56,37 @@
53
56
  "require": "./dist/packages/rte/fondue-rte.umd.cjs",
54
57
  "import": "./dist/packages/rte/fondue-rte.js"
55
58
  },
56
- "./rte/styles": "./dist/packages/rte/style.css",
59
+ "./rte/styles": {
60
+ "types": "./dist/packages/rte/style.css.d.ts",
61
+ "default": "./dist/packages/rte/style.css"
62
+ },
57
63
  "./sdk": {
58
64
  "types": "./dist/packages/sdk/sdk.d.ts",
59
65
  "import": "./dist/packages/sdk/fondue-sdk.js"
60
66
  },
61
- "./charts/styles": "./dist/packages/charts/style.css",
67
+ "./charts/styles": {
68
+ "types": "./dist/packages/charts/style.css.d.ts",
69
+ "default": "./dist/packages/charts/style.css"
70
+ },
62
71
  ".": {
63
72
  "types": "./dist/index.d.ts",
64
73
  "require": "./dist/index.umd.js",
65
74
  "import": "./dist/index.es.js"
66
75
  },
67
- "./styles": "./dist/style.css",
68
- "./tokens/base": "./dist/packages/tokens/css/base.css",
76
+ "./styles": {
77
+ "types": "./dist/style.css.d.ts",
78
+ "default": "./dist/style.css"
79
+ },
80
+ "./tokens/base": {
81
+ "types": "./dist/packages/tokens/css/base.css.d.ts",
82
+ "default": "./dist/packages/tokens/css/base.css"
83
+ },
69
84
  "./tokens/tailwind": "./dist/packages/tokens/tailwind/tailwind.config.js",
70
85
  "./legacyTokens/tailwind": "./dist/legacyTokens.tailwind.config.js",
71
- "./legacyTokens/base": "./dist/packages/tokens/css/deprecatedBaseTokens.css",
86
+ "./legacyTokens/base": {
87
+ "types": "./dist/packages/tokens/css/deprecatedBaseTokens.css.d.ts",
88
+ "default": "./dist/packages/tokens/css/deprecatedBaseTokens.css"
89
+ },
72
90
  "./legacyTokens/tools/replaceLegacyTokens": "./dist/packages/tokens/legacy/tools/replaceLegacyTokens.ts",
73
91
  "./dist/*": "./dist/*"
74
92
  },
@@ -138,17 +156,19 @@
138
156
  "react-is": "^18.3.1",
139
157
  "react-popper": "^2.3.0",
140
158
  "react-textarea-autosize": "^8.5.9",
141
- "@frontify/fondue-charts": "^7.1.0",
142
- "@frontify/fondue-components": "^30.6.1",
143
- "@frontify/fondue-icons": "^0.26.2",
144
- "@frontify/fondue-rte": "^0.1.4",
159
+ "@frontify/fondue-charts": "^7.1.1",
145
160
  "@frontify/fondue-sdk": "^0.1.1",
146
- "@frontify/fondue-tokens": "^5.0.2"
161
+ "@frontify/fondue-tokens": "^5.0.3",
162
+ "@frontify/fondue-icons": "^0.26.3",
163
+ "@frontify/fondue-components": "^30.7.0",
164
+ "@frontify/fondue-rte": "^0.1.5"
147
165
  },
148
166
  "devDependencies": {
149
167
  "@babel/core": "^7.29.0",
150
168
  "@etchteam/storybook-addon-status": "^8.1.0",
151
- "@frontify/eslint-config-react": "^1.0.16",
169
+ "@frontify/oxfmt-config": "^0.0.2",
170
+ "@frontify/oxlint-config-basic": "^0.0.2",
171
+ "@frontify/oxlint-config-react": "^0.0.2",
152
172
  "@storybook/addon-a11y": "^10.3.6",
153
173
  "@storybook/addon-docs": "^10.3.6",
154
174
  "@storybook/addon-links": "^10.3.6",
@@ -161,18 +181,20 @@
161
181
  "@types/react-datepicker": "^6.2.0",
162
182
  "@types/react-dom": "^18.3.7",
163
183
  "@types/react-is": "^18.3.1",
184
+ "@typescript/native-preview": "7.0.0-dev.20260421.2",
164
185
  "@vitejs/plugin-react": "^5.1.2",
165
186
  "autoprefixer": "^10.5.0",
166
187
  "chalk": "^5.6.2",
167
188
  "cross-env": "^10.1.0",
168
- "eslint": "^10.3.0",
169
189
  "eslint-plugin-tailwindcss": "^3.18.2",
170
190
  "fast-glob": "^3.3.3",
171
191
  "knip": "^5.82.1",
192
+ "oxfmt": "^0.52.0",
193
+ "oxlint": "^1.67.0",
194
+ "oxlint-tsgolint": "^0.23.0",
172
195
  "postcss": "^8.5.14",
173
196
  "postcss-cli": "^11.0.1",
174
197
  "postcss-import": "^16.1.1",
175
- "prettier": "^3.8.3",
176
198
  "react": "^18.3.1",
177
199
  "react-dom": "^18.3.1",
178
200
  "rimraf": "^6.1.3",
@@ -185,7 +207,7 @@
185
207
  "vite-plugin-dts": "^4.5.4",
186
208
  "vite-plugin-static-copy": "^3.1.5",
187
209
  "vite-tsconfig-paths": "^5.1.4",
188
- "@frontify/fondue-icons": "^0.26.2"
210
+ "@frontify/fondue-icons": "^0.26.3"
189
211
  },
190
212
  "scripts": {
191
213
  "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",
@@ -203,9 +225,11 @@
203
225
  "dev": "cross-env NODE_ENV=development pnpm dev:library",
204
226
  "dev:library": "vite build --emptyOutDir false --watch",
205
227
  "clean": "rimraf dist",
206
- "lint": "eslint .",
207
- "lint:fix": "eslint --fix .",
208
- "typecheck": "tsc --noEmit",
228
+ "format": "oxfmt",
229
+ "format:check": "oxfmt --check",
230
+ "lint": "oxlint",
231
+ "lint:fix": "oxlint --fix",
232
+ "typecheck": "tsgo --noEmit",
209
233
  "storybook": "storybook dev -p 6009",
210
234
  "ci": "pnpm install --frozen-lockfile",
211
235
  "knip": "knip",