From 7c67210064f3e694f92dc630040ca6a9752c5526 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 09:50:21 +0000 Subject: [PATCH] chore: release packages --- .changeset/card-action-data-attributes.md | 9 ------ .changeset/card-banner-image-padding.md | 11 ------- .changeset/card-banner-tone.md | 11 ------- .changeset/card-root-classname.md | 9 ------ .changeset/smooth-crabs-float.md | 5 --- packages/components/CHANGELOG.md | 37 +++++++++++++++++++++++ packages/components/package.json | 2 +- packages/fondue/CHANGELOG.md | 9 ++++++ packages/fondue/package.json | 2 +- 9 files changed, 48 insertions(+), 47 deletions(-) delete mode 100644 .changeset/card-action-data-attributes.md delete mode 100644 .changeset/card-banner-image-padding.md delete mode 100644 .changeset/card-banner-tone.md delete mode 100644 .changeset/card-root-classname.md delete mode 100644 .changeset/smooth-crabs-float.md diff --git a/.changeset/card-action-data-attributes.md b/.changeset/card-action-data-attributes.md deleted file mode 100644 index 413df0657c..0000000000 --- a/.changeset/card-action-data-attributes.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@frontify/fondue-components": minor ---- - -feat(Card.Action): forward arbitrary `data-*` attributes - -`Card.Action` now spreads unknown props (notably `data-*` attributes, e.g. an -analytics or onboarding-tour selector) onto the rendered element, so consumers -no longer need an extra wrapper to carry them. diff --git a/.changeset/card-banner-image-padding.md b/.changeset/card-banner-image-padding.md deleted file mode 100644 index f169f66c85..0000000000 --- a/.changeset/card-banner-image-padding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@frontify/fondue-components": minor ---- - -feat(Card.BannerImage): add a `padding` prop - -`Card.BannerImage` now accepts `padding="none" | "small" | "medium" | "large"` -(none by default; small 12px, medium 24px, large 32px). Padding is applied -inside the banner and pairs best with `fit="contain"`, giving previews such as -logos or icons breathing room without dropping out of the component. Backward -compatible — existing images default to `none`. diff --git a/.changeset/card-banner-tone.md b/.changeset/card-banner-tone.md deleted file mode 100644 index c706af6700..0000000000 --- a/.changeset/card-banner-tone.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@frontify/fondue-components": minor ---- - -feat(Card.Banner): add a `tone` prop - -`Card.Banner` now accepts `tone="dim" | "inverted"`. `inverted` renders the dark -drop-target state (near-black background, white icon), while `dim` pins the -background and opts out of the implicit hover/active background shift that -otherwise applies when a `Card.BannerIcon` is nested. Leaving `tone` unset -preserves the previous behavior, so existing consumers are unaffected. diff --git a/.changeset/card-root-classname.md b/.changeset/card-root-classname.md deleted file mode 100644 index 0a71eaacc3..0000000000 --- a/.changeset/card-root-classname.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@frontify/fondue-components": minor ---- - -feat(Card.Root): forward `className` - -`Card.Root` now forwards a `className` onto its root element, merged after the -internal styles. This enables layout hooks such as Tailwind's `group` (e.g. to -drive `group-hover:` styles on descendants) without an extra wrapper element. diff --git a/.changeset/smooth-crabs-float.md b/.changeset/smooth-crabs-float.md deleted file mode 100644 index ff6b6a6827..0000000000 --- a/.changeset/smooth-crabs-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@frontify/fondue": patch ---- - -chore: bump patch version diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 1f015f5cc5..4fc95df162 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -1,5 +1,42 @@ # @frontify/fondue-components +## 30.8.0 + +### Minor Changes + +- [#2769](https://github.com/Frontify/fondue/pull/2769) [`a75f700`](https://github.com/Frontify/fondue/commit/a75f70073774d8814c31423cf7c83356959e7159) Thanks [@mnoleto](https://github.com/mnoleto)! - feat(Card.Action): forward arbitrary `data-*` attributes + + `Card.Action` now spreads unknown props (notably `data-*` attributes, e.g. an + analytics or onboarding-tour selector) onto the rendered element, so consumers + no longer need an extra wrapper to carry them. + +- [#2769](https://github.com/Frontify/fondue/pull/2769) [`a75f700`](https://github.com/Frontify/fondue/commit/a75f70073774d8814c31423cf7c83356959e7159) Thanks [@mnoleto](https://github.com/mnoleto)! - feat(Card.BannerImage): add a `padding` prop + + `Card.BannerImage` now accepts `padding="none" | "small" | "medium" | "large"` + (none by default; small 12px, medium 24px, large 32px). Padding is applied + inside the banner and pairs best with `fit="contain"`, giving previews such as + logos or icons breathing room without dropping out of the component. Backward + compatible — existing images default to `none`. + +- [#2769](https://github.com/Frontify/fondue/pull/2769) [`a75f700`](https://github.com/Frontify/fondue/commit/a75f70073774d8814c31423cf7c83356959e7159) Thanks [@mnoleto](https://github.com/mnoleto)! - feat(Card.Banner): add a `tone` prop + + `Card.Banner` now accepts `tone="dim" | "inverted"`. `inverted` renders the dark + drop-target state (near-black background, white icon), while `dim` pins the + background and opts out of the implicit hover/active background shift that + otherwise applies when a `Card.BannerIcon` is nested. Leaving `tone` unset + preserves the previous behavior, so existing consumers are unaffected. + +- [#2769](https://github.com/Frontify/fondue/pull/2769) [`a75f700`](https://github.com/Frontify/fondue/commit/a75f70073774d8814c31423cf7c83356959e7159) Thanks [@mnoleto](https://github.com/mnoleto)! - feat(Card.Root): forward `className` + + `Card.Root` now forwards a `className` onto its root element, merged after the + internal styles. This enables layout hooks such as Tailwind's `group` (e.g. to + drive `group-hover:` styles on descendants) without an extra wrapper element. + +### Patch Changes + +- Updated dependencies []: + - @frontify/fondue-tokens@5.0.4 + ## 30.7.1 ### Patch Changes diff --git a/packages/components/package.json b/packages/components/package.json index 984d1cbda7..dd43f1150c 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@frontify/fondue-components", - "version": "30.7.1", + "version": "30.8.0", "homepage": "https://github.com/Frontify/fondue", "bugs": { "url": "https://github.com/frontify/fondue/issues" diff --git a/packages/fondue/CHANGELOG.md b/packages/fondue/CHANGELOG.md index 090cafefda..b37c16358e 100644 --- a/packages/fondue/CHANGELOG.md +++ b/packages/fondue/CHANGELOG.md @@ -1,5 +1,14 @@ # @frontify/fondue +## 13.6.5 + +### Patch Changes + +- [`de40e53`](https://github.com/Frontify/fondue/commit/de40e5334b69b0af8d4e6665ea4e5691defe6f4b) Thanks [@syeo66](https://github.com/syeo66)! - chore: bump patch version + +- Updated dependencies [[`a75f700`](https://github.com/Frontify/fondue/commit/a75f70073774d8814c31423cf7c83356959e7159), [`a75f700`](https://github.com/Frontify/fondue/commit/a75f70073774d8814c31423cf7c83356959e7159), [`a75f700`](https://github.com/Frontify/fondue/commit/a75f70073774d8814c31423cf7c83356959e7159), [`a75f700`](https://github.com/Frontify/fondue/commit/a75f70073774d8814c31423cf7c83356959e7159)]: + - @frontify/fondue-components@30.8.0 + ## 13.6.4 ### Patch Changes diff --git a/packages/fondue/package.json b/packages/fondue/package.json index 1c2fef1727..e9308c1dba 100644 --- a/packages/fondue/package.json +++ b/packages/fondue/package.json @@ -1,7 +1,7 @@ { "name": "@frontify/fondue", "type": "module", - "version": "13.6.4", + "version": "13.6.5", "description": "Design system of Frontify", "author": "Frontify Developers ", "homepage": "https://github.com/Frontify/fondue",