@signal9/era-ui 34.4.0 → 34.5.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 +17 -0
- package/dist/ai/context/conversation-capacity.svelte +89 -0
- package/dist/ai/context/conversation-capacity.svelte.d.ts +15 -0
- package/dist/ai/context/index.d.ts +1 -0
- package/dist/ai/context/index.js +1 -0
- package/dist/ai/index.d.ts +1 -0
- package/dist/ai/index.js +1 -0
- package/dist/ai/model-selector/index.d.ts +7 -0
- package/dist/ai/model-selector/index.js +7 -0
- package/dist/ai/model-selector/model-selector.svelte +28 -0
- package/dist/ai/model-selector/model-selector.svelte.d.ts +4 -0
- package/dist/ai/run-status/run-status.svelte +45 -1
- package/dist/ai/run-status/run-status.svelte.d.ts +1 -1
- package/dist/ai/tool/index.d.ts +1 -0
- package/dist/ai/tool/index.js +1 -0
- package/dist/ai/tool/tool-header.svelte +8 -1
- package/dist/ai/tool/tool-header.svelte.d.ts +2 -0
- package/dist/ai/tool/tool-inspector.svelte +236 -0
- package/dist/ai/tool/tool-inspector.svelte.d.ts +61 -0
- package/dist/ai/tool/tool.svelte +25 -7
- package/dist/ai/tool/tool.svelte.d.ts +1 -0
- package/dist/era-ui.css +1 -1
- package/dist/styles/prose.css +1 -0
- package/dist/styles/surfaces/bevel.css +5 -5
- package/dist/ui/step/step-root.svelte +4 -1
- package/package.json +1 -1
- package/skills/era-ui/references/releases/34.md +17 -0
- package/skills/era-ui/references/releases/index.md +1 -1
|
@@ -135,13 +135,13 @@
|
|
|
135
135
|
--era-menu-highlight-shadow: none;
|
|
136
136
|
--era-fill: var(--era-highlight);
|
|
137
137
|
/* The BOX never moves on press, so releasing doesn't pop the button up.
|
|
138
|
-
* Its CONTENT travels into the bottom-right socket along
|
|
139
|
-
*
|
|
140
|
-
*
|
|
138
|
+
* Its CONTENT travels into the bottom-right socket along one shallow vector
|
|
139
|
+
* for every keycap. That makes material, not face color or control size,
|
|
140
|
+
* define the physical press. */
|
|
141
141
|
--era-press-sink-x: 0.5px;
|
|
142
142
|
--era-press-sink-y: 1px;
|
|
143
|
-
--era-press-sink-compact-x: 0.
|
|
144
|
-
--era-press-sink-compact-y:
|
|
143
|
+
--era-press-sink-compact-x: 0.5px;
|
|
144
|
+
--era-press-sink-compact-y: 1px;
|
|
145
145
|
/* Floating panels wear a 2-layer chisel frame; row highlights inset past
|
|
146
146
|
* it with a concentric radius (square under data-corners="square", as
|
|
147
147
|
* the era had it — Win95 drew its selection bar inside the border). */
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
ref = $bindable(null),
|
|
8
8
|
open = $bindable(false),
|
|
9
9
|
status = 'done',
|
|
10
|
+
children,
|
|
10
11
|
class: className,
|
|
11
12
|
...restProps
|
|
12
13
|
}: Collapsible.RootProps & {
|
|
@@ -28,4 +29,6 @@
|
|
|
28
29
|
data-status={status}
|
|
29
30
|
class={cn('group/step flex w-full min-w-0 flex-col', className)}
|
|
30
31
|
{...restProps}
|
|
31
|
-
|
|
32
|
+
>
|
|
33
|
+
{@render children?.()}
|
|
34
|
+
</Collapsible.Root>
|
package/package.json
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Era UI v34 release history
|
|
2
2
|
|
|
3
|
+
## [34.5.0](https://github.com/sig-nine/era-ui/compare/v34.4.1...v34.5.0) (2026-08-28)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **ai:** add compact tool inspector ([1fe91ec](https://github.com/sig-nine/era-ui/commit/1fe91ec0eaaf121ad16bc75de4ebe893e222b988))
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **ai:** render inspector input details ([2400f80](https://github.com/sig-nine/era-ui/commit/2400f806ed9aabed901bc2625751096453f168b5))
|
|
12
|
+
* **notes:** focus editor from trailing surface ([d4de399](https://github.com/sig-nine/era-ui/commit/d4de399d03b1d85db55b99aed1d5ffe7e0d5fcea))
|
|
13
|
+
|
|
14
|
+
## [34.4.1](https://github.com/sig-nine/era-ui/compare/v34.4.0...v34.4.1) (2026-08-26)
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **bevel:** unify compact keycap travel ([7ca2e28](https://github.com/sig-nine/era-ui/commit/7ca2e2874a6bbe6e6f6a0aff811462bdab40aad6))
|
|
19
|
+
|
|
3
20
|
## [34.4.0](https://github.com/sig-nine/era-ui/compare/v34.3.0...v34.4.0) (2026-08-25)
|
|
4
21
|
|
|
5
22
|
### Features
|
|
@@ -5,7 +5,7 @@ Load only the major versions crossed by an upgrade; use the package-root `CHANGE
|
|
|
5
5
|
|
|
6
6
|
| Major | Range | Releases | History |
|
|
7
7
|
| ---: | --- | ---: | --- |
|
|
8
|
-
| 34 | 34.0.0–34.
|
|
8
|
+
| 34 | 34.0.0–34.5.0 | 18 | [Read](./34.md) |
|
|
9
9
|
| 33 | 33.0.0–33.0.1 | 2 | [Read](./33.md) |
|
|
10
10
|
| 32 | 32.0.0–32.0.1 | 2 | [Read](./32.md) |
|
|
11
11
|
| 31 | 31.0.0–31.0.0 | 1 | [Read](./31.md) |
|