@signal9/era-ui 31.0.0 → 32.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.
- package/CHANGELOG.md +14 -0
- package/dist/ai/artifact/artifact.svelte +1 -1
- package/dist/ai/web-preview/web-preview.svelte +1 -1
- package/dist/ai/workflow/node.svelte +1 -1
- package/dist/docs/css-utilities.js +2 -2
- package/dist/era-ui.css +1 -1
- package/dist/generated-docs/llms-full.txt +61 -22
- package/dist/generated-docs/llms.txt +4 -1
- package/dist/generated-docs/manifest.json +41 -8
- package/dist/generated-docs/utilities.json +36 -6
- package/dist/generated-docs/utilities.md +57 -21
- package/dist/os/notification-center.svelte +1 -1
- package/dist/os/taskbar.svelte +1 -1
- package/dist/os/toast.svelte +1 -1
- package/dist/styles/index.css +42 -21
- package/dist/styles/motion.css +1 -1
- package/dist/styles/prose.css +1 -1
- package/dist/styles/surfaces/bevel.css +16 -19
- package/dist/styles/surfaces/contract.css +50 -0
- package/dist/styles/surfaces/flat.css +27 -0
- package/dist/styles/surfaces/glass.css +11 -8
- package/dist/ui/alert-dialog/alert-dialog-content.svelte +1 -1
- package/dist/ui/button/button.svelte +1 -0
- package/dist/ui/button/variants.d.ts +3 -3
- package/dist/ui/button/variants.js +3 -3
- package/dist/ui/card/card.svelte +4 -4
- package/dist/ui/card/card.svelte.d.ts +3 -3
- package/dist/ui/combobox/combobox-content.svelte +1 -1
- package/dist/ui/command/command-root.svelte +3 -3
- package/dist/ui/command-bar/command-bar.svelte +3 -3
- package/dist/ui/context-menu/context-menu-content.svelte +1 -4
- package/dist/ui/context-menu/context-menu-sub-content.svelte +1 -4
- package/dist/ui/date-picker/date-picker-content.svelte +1 -1
- package/dist/ui/date-range-picker/date-range-picker-content.svelte +1 -1
- package/dist/ui/dialog/dialog-content.svelte +1 -1
- package/dist/ui/dropdown-menu/dropdown-menu-content.svelte +1 -1
- package/dist/ui/dropdown-menu/dropdown-menu-sub-content.svelte +1 -4
- package/dist/ui/link-preview/link-preview-content.svelte +1 -1
- package/dist/ui/menubar/menubar-content.svelte +1 -1
- package/dist/ui/menubar/menubar-sub-content.svelte +1 -4
- package/dist/ui/meter/meter.svelte +1 -2
- package/dist/ui/nav/nav-item.svelte +1 -0
- package/dist/ui/pane/pane-root.svelte +1 -1
- package/dist/ui/popover/popover-content.svelte +1 -1
- package/dist/ui/provider/surfaces.d.ts +1 -1
- package/dist/ui/provider/surfaces.js +1 -1
- package/dist/ui/select/select-content.svelte +1 -1
- package/dist/ui/sheet/sheet-content.svelte +1 -1
- package/dist/ui/sheet/sheet-content.svelte.d.ts +1 -1
- package/dist/ui/switch/switch.svelte +1 -1
- package/dist/ui/toggle-group/toggle-group-item.svelte +1 -1
- package/dist/ui/toggle-group/toggle-group-item.svelte.d.ts +3 -3
- package/dist/ui/tooltip/tooltip-content.svelte +1 -1
- package/dist/ui/video-player/video-player.svelte +2 -2
- package/dist/utils/tw-merge-config.d.ts +3 -1
- package/dist/utils/tw-merge-config.js +2 -2
- package/package.json +2 -1
- package/skill/SKILL.md +9 -4
- package/dist/styles/surfaces/base.css +0 -257
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [32.0.0](https://github.com/sig-nine/era-ui/compare/v31.0.0...v32.0.0) (2026-08-21)
|
|
2
|
+
|
|
3
|
+
### ⚠ BREAKING CHANGES
|
|
4
|
+
|
|
5
|
+
* **surfaces:** glass-blur, --era-blur, and --era-saturate are removed. Floating chrome now uses material-popover, material-panel, or surface-backdrop; custom surfaces must implement the complete primitive contract, including backdrop and compact press tokens. surfaces/base.css is split into contract.css and flat.css.
|
|
6
|
+
|
|
7
|
+
### Performance Improvements
|
|
8
|
+
|
|
9
|
+
* **test:** cut the Playwright loop to thirty seconds ([a7cbd1f](https://github.com/sig-nine/era-ui/commit/a7cbd1fe8b94cdbf437db972a202893ae508eebb))
|
|
10
|
+
|
|
11
|
+
### Code Refactoring
|
|
12
|
+
|
|
13
|
+
* **surfaces:** make material roles structural ([3a9a0cb](https://github.com/sig-nine/era-ui/commit/3a9a0cb503c7a9ae9766867cdf6e4d95667d4ba2))
|
|
14
|
+
|
|
1
15
|
## [31.0.0](https://github.com/sig-nine/era-ui/compare/v30.8.0...v31.0.0) (2026-08-21)
|
|
2
16
|
|
|
3
17
|
### ⚠ BREAKING CHANGES
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</script>
|
|
11
11
|
|
|
12
12
|
<div
|
|
13
|
-
class={cn('flex min-h-0 flex-col overflow-hidden rounded-bar
|
|
13
|
+
class={cn('flex min-h-0 flex-col overflow-hidden rounded-bar material-panel', className)}
|
|
14
14
|
{...restProps}
|
|
15
15
|
>
|
|
16
16
|
{@render children?.()}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
let nonce = $state(0);
|
|
16
16
|
</script>
|
|
17
17
|
|
|
18
|
-
<div class={cn('flex min-h-0 flex-col overflow-hidden rounded-bar
|
|
18
|
+
<div class={cn('flex min-h-0 flex-col overflow-hidden rounded-bar material-panel', className)}>
|
|
19
19
|
<Bar size="control" topology="docked" class="shrink-0 gap-gutter rounded-none">
|
|
20
20
|
<Button icon size="chip" aria-label="Reload" onclick={() => (nonce += 1)}>
|
|
21
21
|
<RotateCw class="size-icon" />
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* Extracts era's Tailwind v4 `@utility` classes — era-link, era-text-trim,
|
|
3
|
-
* era-shimmer, scrollbar-none,
|
|
3
|
+
* era-shimmer, scrollbar-none, material-popover, … — from the stylesheet source.
|
|
4
4
|
*
|
|
5
5
|
* These are first-class API but they have no JS export and no .svelte file, so
|
|
6
6
|
* nothing else in the doc pipeline can see them: the component barrel misses
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* node build script can drive it — same split as component-source-scanners.ts.
|
|
19
19
|
*/
|
|
20
20
|
/** Files whose utilities are library API. Order fixes the doc's order. */
|
|
21
|
-
const FILE_ORDER = ['index.css'
|
|
21
|
+
const FILE_ORDER = ['index.css'];
|
|
22
22
|
/**
|
|
23
23
|
* `@theme` namespace → the utility prefixes it generates.
|
|
24
24
|
*
|