Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/card-action-data-attributes.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/card-banner-image-padding.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/card-banner-tone.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/card-root-classname.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-crabs-float.md

This file was deleted.

37 changes: 37 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
9 changes: 9 additions & 0 deletions packages/fondue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/fondue/package.json
Original file line number Diff line number Diff line change
@@ -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 <developers@frontify.com>",
"homepage": "https://github.com/Frontify/fondue",
Expand Down
Loading