@frontify/fondue 13.7.1 → 13.7.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.
@@ -6,12 +6,6 @@
6
6
  --border-radius-xx-large: 1rem;
7
7
  --border-width-default: 1px;
8
8
  --border-width-large: 2px;
9
- --breakpoint-2xl: 1536px;
10
- --breakpoint-lg: 1024px;
11
- --breakpoint-md: 768px;
12
- --breakpoint-sm: 600px;
13
- --breakpoint-xl: 1280px;
14
- --breakpoint-xs: 390px;
15
9
  --color-error-00: rgba(255, 255, 255, 1);
16
10
  --color-error-05: rgba(254, 236, 235, 1);
17
11
  --color-error-10: rgba(253, 219, 218, 1);
@@ -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.7.1";
20
+ const FONDUE_VERSION = "13.7.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.7.1");
198
+ const program = new Command().name("fondue").description("CLI for Frontify Fondue.").version("13.7.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.7.1",
4
+ "version": "13.7.2",
5
5
  "description": "Design system of Frontify",
6
6
  "author": "Frontify Developers <developers@frontify.com>",
7
7
  "homepage": "https://github.com/Frontify/fondue",
@@ -156,12 +156,12 @@
156
156
  "react-is": "^18.3.1",
157
157
  "react-popper": "^2.3.0",
158
158
  "react-textarea-autosize": "^8.5.9",
159
- "@frontify/fondue-components": "^30.9.1",
160
- "@frontify/fondue-rte": "^0.1.6",
159
+ "@frontify/fondue-charts": "^8.0.0",
160
+ "@frontify/fondue-rte": "^0.1.7",
161
161
  "@frontify/fondue-sdk": "^0.1.3",
162
- "@frontify/fondue-charts": "^7.1.1",
163
- "@frontify/fondue-icons": "^0.26.3",
164
- "@frontify/fondue-tokens": "^5.0.5"
162
+ "@frontify/fondue-icons": "^0.27.0",
163
+ "@frontify/fondue-components": "^31.0.0",
164
+ "@frontify/fondue-tokens": "^5.1.0"
165
165
  },
166
166
  "devDependencies": {
167
167
  "@babel/core": "^7.29.0",
@@ -207,7 +207,7 @@
207
207
  "vite-plugin-dts": "^4.5.4",
208
208
  "vite-plugin-static-copy": "^3.1.5",
209
209
  "vite-tsconfig-paths": "^5.1.4",
210
- "@frontify/fondue-icons": "^0.26.3"
210
+ "@frontify/fondue-icons": "^0.27.0"
211
211
  },
212
212
  "scripts": {
213
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",