@adia-ai/web-modules 0.3.1 → 0.3.3
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 +28 -0
- package/chat/chat-shell/chat-shell.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,34 @@ Built from `@adia-ai/web-components` primitives.
|
|
|
11
11
|
|
|
12
12
|
_No pending changes._
|
|
13
13
|
|
|
14
|
+
## [0.3.3] - 2026-05-07
|
|
15
|
+
|
|
16
|
+
**Lockstep cut.** All 9 published `@adia-ai/*` packages now share version `0.3.3`, governed by [`docs/specs/package-architecture.md` § 15](../../../docs/specs/package-architecture.md#15-versioning-policy).
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- `version`: `0.3.2` → `0.3.3`.
|
|
21
|
+
- `dependencies["@adia-ai/...]`: `^0.3.0` (patch-cut asymmetry — caret already covers 0.3.x; ranges unchanged).
|
|
22
|
+
|
|
23
|
+
### No source changes
|
|
24
|
+
|
|
25
|
+
`@adia-ai/web-modules` source is byte-identical to `0.3.2`. The cut is a version bump + ride-along on the lockstep policy.
|
|
26
|
+
|
|
27
|
+
## [0.3.2] - 2026-05-06
|
|
28
|
+
|
|
29
|
+
**9-package lockstep patch cut to v0.3.2.** All lockstep members share
|
|
30
|
+
one version per [`docs/specs/package-architecture.md` § 15](../../../docs/specs/package-architecture.md#15-versioning-policy).
|
|
31
|
+
Internal `@adia-ai/*` dep ranges unchanged at `^0.3.0`.
|
|
32
|
+
|
|
33
|
+
### No source changes
|
|
34
|
+
|
|
35
|
+
This package's source is byte-identical to v0.3.1. The cut bumps
|
|
36
|
+
version only.
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
|
|
40
|
+
- `version`: `0.3.1` → `0.3.2`.
|
|
41
|
+
|
|
14
42
|
## [0.3.1] - 2026-05-06
|
|
15
43
|
|
|
16
44
|
**9-package lockstep patch cut.** All 9 published `@adia-ai/*` packages bump 0.3.0 → 0.3.1 per [`docs/specs/package-architecture.md` § 15](../../docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.3.0` (covers `0.3.1` under semver — patch-cut asymmetry).
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { UIElement } from '../../../web-components/core/element.js';
|
|
2
2
|
import { renderMarkdown } from '../../../web-components/core/markdown.js';
|
|
3
3
|
import { streamChat } from '../../../llm/index.js';
|
|
4
|
+
import '/packages/web-components/components/code/code.js';
|
|
4
5
|
|
|
5
6
|
function escapeHTML(s) {
|
|
6
7
|
return s.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/web-modules",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "AdiaUI composite custom elements \u2014 shell, chat, editor, runtime clusters built from @adia-ai/web-components primitives. Subpath exports per cluster.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|