@signal9/era-ui 34.4.1 → 34.6.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/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
|
@@ -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.6.0](https://github.com/sig-nine/era-ui/compare/v34.5.0...v34.6.0) (2026-08-28)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **docs:** add navi accent ([e874413](https://github.com/sig-nine/era-ui/commit/e874413180e8edf296fcab4a0d435e67a92cff6f))
|
|
8
|
+
|
|
9
|
+
## [34.5.0](https://github.com/sig-nine/era-ui/compare/v34.4.1...v34.5.0) (2026-08-28)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **ai:** add compact tool inspector ([1fe91ec](https://github.com/sig-nine/era-ui/commit/1fe91ec0eaaf121ad16bc75de4ebe893e222b988))
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **ai:** render inspector input details ([2400f80](https://github.com/sig-nine/era-ui/commit/2400f806ed9aabed901bc2625751096453f168b5))
|
|
18
|
+
* **notes:** focus editor from trailing surface ([d4de399](https://github.com/sig-nine/era-ui/commit/d4de399d03b1d85db55b99aed1d5ffe7e0d5fcea))
|
|
19
|
+
|
|
3
20
|
## [34.4.1](https://github.com/sig-nine/era-ui/compare/v34.4.0...v34.4.1) (2026-08-26)
|
|
4
21
|
|
|
5
22
|
### Bug Fixes
|
|
@@ -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.6.0 | 19 | [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) |
|