Skip to content

Commit 199595c

Browse files
committed
chore: release 0.94.0
1 parent 5560c90 commit 199595c

5 files changed

Lines changed: 30 additions & 5 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"0.93.1"}
1+
{".":"0.94.0"}

docs/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [0.94.0](https://github.com/graycoreio/daffodil/compare/v0.93.1...v0.94.0) (2026-07-17)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **design:** `@daffodil/design/list` now exposes the `DaffListItemComponent` `active` input as a signal rather than a plain property. Template bindings (`[active]="..."`) continue to work unchanged. Programmatic reads must invoke the signal: `listItem.active``listItem.active()`. `active` is now read-only and can no longer be assigned imperatively (`listItem.active = true` is no longer supported).
9+
* **design:** `@daffodil/design/image` now exposes the `DaffImageComponent` inputs `src`, `alt`, `width`, and `height` as signals rather than plain properties, and renames the `load` output to `loaded`. Input template bindings (`[src]`, `[alt]`, etc.) continue to work unchanged. Programmatic reads must invoke the signal: `image.src``image.src()`, `image.width``image.width()`, etc. Inputs are now read-only and can no longer be assigned imperatively (`image.src = '/image/test.jpg'` is no longer supported).
10+
* **design:** `@daffodil/design/form-field` now exposes all `DaffFormFieldComponent` inputs (`appearance` and `id`) as signals rather than plain properties. Template bindings continue to work, but any programmatic access must go through the signal API:
11+
12+
### Features
13+
14+
* **design:** add configurable menu position and scrollable overflow ([#4541](https://github.com/graycoreio/daffodil/issues/4541)) ([cf4f135](https://github.com/graycoreio/daffodil/commit/cf4f1354c73d7bfed4b3b11d153d2d296dccc5a3))
15+
* **design:** convert `@daffodil/design/accordion` to use signals ([#4586](https://github.com/graycoreio/daffodil/issues/4586)) ([9923025](https://github.com/graycoreio/daffodil/commit/99230255a485f3fed3646051ab492b6ac1b6ae28))
16+
* **design:** convert `@daffodil/design/card` to use signals ([#4587](https://github.com/graycoreio/daffodil/issues/4587)) ([b0b3f7c](https://github.com/graycoreio/daffodil/commit/b0b3f7ce240fc9706097b8f076340a9a20a2ab67))
17+
* **design:** convert `@daffodil/design/form-field` to use signals ([#4591](https://github.com/graycoreio/daffodil/issues/4591)) ([f993bf9](https://github.com/graycoreio/daffodil/commit/f993bf9abaf493d04aadc00d7ff8cd91132bbf22))
18+
* **design:** convert `@daffodil/design/form` to use signals ([#4588](https://github.com/graycoreio/daffodil/issues/4588)) ([ac4cb20](https://github.com/graycoreio/daffodil/commit/ac4cb20fcb84ef597f005d032dfc31906ff44620))
19+
* **design:** convert `@daffodil/design/image` to use signals ([#4597](https://github.com/graycoreio/daffodil/issues/4597)) ([8ae04ce](https://github.com/graycoreio/daffodil/commit/8ae04ce2ba79805e8f06c26049a8965563f84d84))
20+
* **design:** convert `@daffodil/design/list` to use signals ([#4598](https://github.com/graycoreio/daffodil/issues/4598)) ([56e3240](https://github.com/graycoreio/daffodil/commit/56e3240de1308c5341af96c800e908d4a943b2d0))
21+
22+
23+
### Bug Fixes
24+
25+
* **design:** break dependency cycle in DaffRovingTabIndexDirective ([#4594](https://github.com/graycoreio/daffodil/issues/4594)) ([840e653](https://github.com/graycoreio/daffodil/commit/840e653d7cc2f137fcf43e5f80523940c21ae11a))
26+
* **design:** isolate menu open state to activator ([#4550](https://github.com/graycoreio/daffodil/issues/4550)) ([5560c90](https://github.com/graycoreio/daffodil/commit/5560c90836285ab896015545abf27f5f3d4cf990))
27+
328
## [0.93.1](https://github.com/graycoreio/daffodil/compare/v0.93.0...v0.93.1) (2026-07-09)
429

530

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@daffodil/daffodil",
3-
"version": "0.93.1",
3+
"version": "0.94.0",
44
"license": "MIT",
55
"scripts": {
66
"build:dev": "nx run-many -t build",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '0.93.1'; // x-release-please-version
1+
export const version = '0.94.0'; // x-release-please-version

0 commit comments

Comments
 (0)