@signal9/era-ui 26.1.1 → 28.0.0

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.
Files changed (34) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/dist/docs/consumer-import.d.ts +28 -0
  3. package/dist/docs/consumer-import.js +28 -0
  4. package/dist/era-ui.css +1 -1
  5. package/dist/generated-docs/accordion.md +1 -1
  6. package/dist/generated-docs/alert-dialog.md +11 -1
  7. package/dist/generated-docs/combobox.md +1 -1
  8. package/dist/generated-docs/context-menu.md +13 -3
  9. package/dist/generated-docs/date-picker.md +1 -1
  10. package/dist/generated-docs/date-range-picker.md +1 -1
  11. package/dist/generated-docs/dialog.md +11 -1
  12. package/dist/generated-docs/dropdown-menu.md +14 -4
  13. package/dist/generated-docs/link-preview.md +11 -1
  14. package/dist/generated-docs/llms-full.txt +246 -25
  15. package/dist/generated-docs/llms.txt +2 -2
  16. package/dist/generated-docs/manifest.json +72 -18
  17. package/dist/generated-docs/menubar.md +4 -3
  18. package/dist/generated-docs/meter.md +6 -0
  19. package/dist/generated-docs/nav.md +61 -0
  20. package/dist/generated-docs/select.md +2 -2
  21. package/dist/generated-docs/step.md +2 -2
  22. package/dist/generated-docs/timeline.md +32 -0
  23. package/dist/generated-docs/todo.md +3 -0
  24. package/dist/generated-docs/toggle-group.md +1 -0
  25. package/dist/generated-docs/tooltip.md +11 -1
  26. package/dist/generated-docs/tree.md +36 -0
  27. package/dist/generated-docs/utilities.json +5 -1
  28. package/dist/generated-docs/utilities.md +3 -2
  29. package/dist/ui/nav/nav-item.svelte +39 -23
  30. package/dist/ui/nav/nav-item.svelte.d.ts +41 -25
  31. package/package.json +6 -5
  32. package/skill/SKILL.md +13 -4
  33. package/dist/docs/llms-txt.d.ts +0 -2
  34. package/dist/docs/llms-txt.js +0 -100
package/CHANGELOG.md CHANGED
@@ -1,3 +1,32 @@
1
+ ## [28.0.0](https://github.com/sig-nine/era-ui/compare/v27.0.0...v28.0.0) (2026-08-15)
2
+
3
+ ### ⚠ BREAKING CHANGES
4
+
5
+ * **nav:** Nav.Item variant="link" no longer bolds the current item.
6
+ Consumers relying on the weight cue should expect the 2px underline to carry
7
+ it. variant="filled" is untouched.
8
+
9
+ Claude-Session: https://claude.ai/code/session_011FjvULDrmxd61z2xUnYs6Z
10
+
11
+ ### Bug Fixes
12
+
13
+ * **nav:** the link variant's current item is thicker, not bolder ([459e797](https://github.com/sig-nine/era-ui/commit/459e797d6e9a4e2d65bf176cc80d9a176d4fd2e7))
14
+
15
+ ## [27.0.0](https://github.com/sig-nine/era-ui/compare/v26.1.1...v27.0.0) (2026-08-14)
16
+
17
+ ### ⚠ BREAKING CHANGES
18
+
19
+ * **docs:** @signal9/era-ui/docs/llms-txt is removed. It resolved through
20
+ the ./* wildcard rather than by design, and returned stale content — the
21
+ served /llms.txt and /llms-full.txt are unaffected.
22
+
23
+ Claude-Session: https://claude.ai/code/session_011FjvULDrmxd61z2xUnYs6Z
24
+
25
+ ### Bug Fixes
26
+
27
+ * **docs:** delete the llms.txt builder nothing has called since it was copied ([6986b0d](https://github.com/sig-nine/era-ui/commit/6986b0d0d79839901d7a04b1bf4997d03f2e5b9d))
28
+ * **docs:** the registry parser dropped two components and misattributed a third ([374ec4b](https://github.com/sig-nine/era-ui/commit/374ec4b69d68e6061bfcddadc7d61d46a662ccd5))
29
+
1
30
  ## [26.1.1](https://github.com/sig-nine/era-ui/compare/v26.1.0...v26.1.1) (2026-08-14)
2
31
 
3
32
  ### Bug Fixes
@@ -25,6 +25,34 @@
25
25
  * specifiers the rest of src/lib/docs uses.
26
26
  */
27
27
  export declare const PACKAGE = "@signal9/era-ui";
28
+ /**
29
+ * The install command WITH the pin, because npm's default fights era's cadence.
30
+ *
31
+ * `npm install @signal9/era-ui` writes a caret range. A caret still holds the
32
+ * major — `^26.1.0` resolves `<27.0.0` — so it is not the open subscription to
33
+ * the next breaking release it gets mistaken for. The real exposure is smaller
34
+ * and sharper than that, and it is worse:
35
+ *
36
+ * 1. era's majors are not annual. Measured at 26.1.1: 132 releases in the
37
+ * preceding 30 days, 24 of them major. The protection a caret buys is
38
+ * about a day and a quarter of era time.
39
+ * 2. Inside that window the minors and patches MOVE PIXELS. `fix(command): a
40
+ * row carries its OWN tier's radius` is a patch, and it changes what every
41
+ * command palette row looks like. For a library whose output is geometry
42
+ * there is no such thing as a rendering-neutral patch, so semver's promise
43
+ * — "patches are safe to float" — does not describe what era ships.
44
+ *
45
+ * So era's advice is to pin exact. This is that advice as the command that
46
+ * PRODUCES the pin, rather than as a sentence printed next to a command that
47
+ * does not: a reader who copies the snippet is pinned, whereas a reader given a
48
+ * bare `npm install` and a note about `--save-exact` is pinned only if they
49
+ * copied the prose too.
50
+ *
51
+ * Found by signalnine.org, which shipped a caret it never meant to and caught it
52
+ * reading its own diff. Every other pin in that repo was exact and deliberate —
53
+ * the docs had simply never said so, and the default quietly answered instead.
54
+ */
55
+ export declare const INSTALL = "npm install --save-exact @signal9/era-ui";
28
56
  /** How a component is re-exported by the internal barrel. */
29
57
  export type ImportKind = 'named' | 'namespace';
30
58
  /** The import statement, in the spelling that actually resolves. */
@@ -25,6 +25,34 @@
25
25
  * specifiers the rest of src/lib/docs uses.
26
26
  */
27
27
  export const PACKAGE = '@signal9/era-ui';
28
+ /**
29
+ * The install command WITH the pin, because npm's default fights era's cadence.
30
+ *
31
+ * `npm install @signal9/era-ui` writes a caret range. A caret still holds the
32
+ * major — `^26.1.0` resolves `<27.0.0` — so it is not the open subscription to
33
+ * the next breaking release it gets mistaken for. The real exposure is smaller
34
+ * and sharper than that, and it is worse:
35
+ *
36
+ * 1. era's majors are not annual. Measured at 26.1.1: 132 releases in the
37
+ * preceding 30 days, 24 of them major. The protection a caret buys is
38
+ * about a day and a quarter of era time.
39
+ * 2. Inside that window the minors and patches MOVE PIXELS. `fix(command): a
40
+ * row carries its OWN tier's radius` is a patch, and it changes what every
41
+ * command palette row looks like. For a library whose output is geometry
42
+ * there is no such thing as a rendering-neutral patch, so semver's promise
43
+ * — "patches are safe to float" — does not describe what era ships.
44
+ *
45
+ * So era's advice is to pin exact. This is that advice as the command that
46
+ * PRODUCES the pin, rather than as a sentence printed next to a command that
47
+ * does not: a reader who copies the snippet is pinned, whereas a reader given a
48
+ * bare `npm install` and a note about `--save-exact` is pinned only if they
49
+ * copied the prose too.
50
+ *
51
+ * Found by signalnine.org, which shipped a caret it never meant to and caught it
52
+ * reading its own diff. Every other pin in that repo was exact and deliberate —
53
+ * the docs had simply never said so, and the default quietly answered instead.
54
+ */
55
+ export const INSTALL = `npm install --save-exact ${PACKAGE}`;
28
56
  /** The import statement, in the spelling that actually resolves. */
29
57
  export function importLine(kind, alias, slug) {
30
58
  const spec = `"${PACKAGE}/${slug}"`;