@draht/web-ui 2026.3.25-1 → 2026.4.5
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/example/index.html +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2026.4.5] - 2026-04-05
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- export CustomProviderDialog closes #2267
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- refactor(coding-agent): add runtime host for session switching closes #2024
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- align README architecture diagram closes #2425
|
|
16
|
+
- update thinking selector immediately closes #2306
|
|
17
|
+
- add model selector filter, onModelSelect callback, onClose callback, fuzzy search, fix streaming duplicates
|
|
18
|
+
- build with tsc instead of tsgo
|
|
19
|
+
|
|
3
20
|
## [2026.3.11] - 2026-03-11
|
|
4
21
|
|
|
5
22
|
### Fixed
|
package/example/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Pi Web UI - Example</title>
|
|
7
|
-
<meta name="description" content="Example usage of @
|
|
7
|
+
<meta name="description" content="Example usage of @draht/web-ui - Reusable AI chat interface" />
|
|
8
8
|
</head>
|
|
9
9
|
<body class="bg-background">
|
|
10
10
|
<div id="app"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draht/web-ui",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.4.5",
|
|
4
4
|
"description": "Reusable web UI components for AI chat interfaces powered by @draht/ai",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@lmstudio/sdk": "^1.5.0",
|
|
21
21
|
"@sinclair/typebox": "^0.34.41",
|
|
22
|
-
"@draht/agent-core": "2026.
|
|
23
|
-
"@draht/ai": "2026.
|
|
24
|
-
"@draht/tui": "2026.
|
|
22
|
+
"@draht/agent-core": "2026.4.5",
|
|
23
|
+
"@draht/ai": "2026.4.5",
|
|
24
|
+
"@draht/tui": "2026.4.5",
|
|
25
25
|
"highlight.js": "^11.11.1",
|
|
26
26
|
"docx-preview": "^0.3.7",
|
|
27
27
|
"jszip": "^3.10.1",
|