@adia-ai/web-modules 0.2.3 → 0.2.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 +28 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -9,10 +9,38 @@ Built from `@adia-ai/web-components` primitives.
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
_No pending changes._
|
|
13
|
+
|
|
14
|
+
## [0.2.5] - 2026-05-04
|
|
15
|
+
|
|
16
|
+
**8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.4 → 0.2.5 per [`docs/specs/package-architecture.md` § 15](../../docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.2.0` (covers 0.2.5 under semver — patch-cut asymmetry).
|
|
17
|
+
|
|
18
|
+
This is a **patch cut on top of v0.2.4, no BREAKING changes.** Substantive content lives in `web-components` (new `<fields-ui>` form-grid primitive + `draggable-list-item` last-item drop-zone fix, both surfaced by the Tasks UI Playground at `docs/projects/tasks-playground/`); `a2ui-corpus` ships a catalog regen for the new `<fields-ui>` yaml. `web-modules` rides along at version bump only — no source change.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- `version`: `0.2.4` → `0.2.5`.
|
|
23
|
+
- Internal `@adia-ai/*` dep ranges: unchanged at `^0.2.0` (covers `0.2.5` under semver — patch-cut asymmetry).
|
|
24
|
+
|
|
25
|
+
## [0.2.4] - 2026-05-04
|
|
26
|
+
|
|
27
|
+
**8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.3 → 0.2.4 per [`docs/specs/package-architecture.md` § 15](../../docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.2.0` (covers 0.2.4 under semver — patch-cut asymmetry).
|
|
28
|
+
|
|
29
|
+
This is a **patch cut on top of v0.2.3, no BREAKING changes.** Substantive content lives in `web-components` (Tier 4 trait library lift, 11 new traits + 2 architectural rewrites, plus accumulated bug fixes); `a2ui-corpus` ships a catalog regen for the new `<demo-toggle-ui>` primitive. Six packages ride along at version + dep-range bump.
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- `version`: `0.2.3` → `0.2.4`.
|
|
34
|
+
- `dependencies["@adia-ai/a2ui-utils"]`: `^0.2.0` (covers `0.2.4`).
|
|
35
|
+
|
|
36
|
+
This package's source tree is byte-identical to 0.2.3. The cut bumps version + the internal dep range only, per the lockstep policy.
|
|
37
|
+
|
|
12
38
|
_Nothing yet._
|
|
13
39
|
|
|
14
40
|
---
|
|
15
41
|
|
|
42
|
+
---
|
|
43
|
+
|
|
16
44
|
## [0.2.3] - 2026-05-04
|
|
17
45
|
|
|
18
46
|
**Lockstep cut.** All 8 published `@adia-ai/*` packages bump
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/web-modules",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "AdiaUI composite custom elements
|
|
3
|
+
"version": "0.2.5",
|
|
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": {
|
|
7
|
-
".":
|
|
8
|
-
"./shell":
|
|
9
|
-
"./shell/*":
|
|
10
|
-
"./chat":
|
|
11
|
-
"./chat/*":
|
|
12
|
-
"./editor":
|
|
13
|
-
"./editor/*":
|
|
14
|
-
"./runtime":
|
|
15
|
-
"./runtime/*":
|
|
7
|
+
".": "./index.js",
|
|
8
|
+
"./shell": "./shell/index.js",
|
|
9
|
+
"./shell/*": "./shell/*/*.js",
|
|
10
|
+
"./chat": "./chat/index.js",
|
|
11
|
+
"./chat/*": "./chat/*/*.js",
|
|
12
|
+
"./editor": "./editor/index.js",
|
|
13
|
+
"./editor/*": "./editor/*/*.js",
|
|
14
|
+
"./runtime": "./runtime/index.js",
|
|
15
|
+
"./runtime/*": "./runtime/*/*.js",
|
|
16
16
|
"./package.json": "./package.json"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|