fold-ng 0.11.0 → 0.11.1

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.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,22 @@ All notable changes to **fold-ng** are documented here. The format follows
8
8
 
9
9
  _Nothing yet._
10
10
 
11
+ ## [0.11.1] - 2026-08-14
12
+
13
+ ### Fixed
14
+
15
+ - **`FoldCustomIcons` is now exported, so a consumer can actually augment it.**
16
+ 0.11.0 shipped the interface **declared but not exported**: in the flattened
17
+ `.d.ts` it was module-local, so a consumer's `declare module "fold-ng" {
18
+ interface FoldCustomIcons { … } }` created a second, unrelated interface. It
19
+ compiled, it merged with nothing, and `icon="my-logo"` still failed — the
20
+ headline extensibility of 0.11.0 did not work from outside the repo. Caught by
21
+ the first real consumer, within the hour.
22
+
23
+ In-repo the gallery augments the **source file** path, which is why its own
24
+ `demo-sparkle` worked and the gap stayed invisible. `API-SURFACE.md` could not
25
+ catch it either: it snapshots _exported_ symbols, and this one wasn't.
26
+
11
27
  ## [0.11.0] - 2026-08-14
12
28
 
13
29
  ### Added
@@ -1549,7 +1565,8 @@ design-token stylesheet.
1549
1565
  `currentColor`; `prefers-reduced-motion` + `forced-colors` are respected;
1550
1566
  strings localise via inputs / providers (`provideFoldPanelLabels`).
1551
1567
 
1552
- [unreleased]: https://github.com/hugoheynard/fold-ng/compare/v0.11.0...HEAD
1568
+ [unreleased]: https://github.com/hugoheynard/fold-ng/compare/v0.11.1...HEAD
1569
+ [0.11.1]: https://github.com/hugoheynard/fold-ng/releases/tag/v0.11.1
1553
1570
  [0.11.0]: https://github.com/hugoheynard/fold-ng/releases/tag/v0.11.0
1554
1571
  [0.10.3]: https://github.com/hugoheynard/fold-ng/releases/tag/v0.10.3
1555
1572
  [0.10.2]: https://github.com/hugoheynard/fold-ng/releases/tag/v0.10.2