@adia-ai/web-modules 0.5.20 → 0.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 +10 -0
- package/chat/index.d.ts +4 -0
- package/package.json +66 -16
- package/runtime/index.d.ts +4 -0
- package/shell/index.d.ts +4 -0
- package/simple/index.d.ts +4 -0
- package/theme/index.d.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@ Built from `@adia-ai/web-components` primitives.
|
|
|
10
10
|
|
|
11
11
|
_No pending changes._
|
|
12
12
|
|
|
13
|
+
## [0.6.0] - 2026-05-18
|
|
14
|
+
|
|
15
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.6.0 — see root CHANGELOG)._
|
|
16
|
+
|
|
17
|
+
**MINOR-line internal-dep range update:** internal `@adia-ai/*` dependency ranges move from `^0.5.0` to `^0.6.0` per AdiaUI lockstep policy.
|
|
18
|
+
|
|
19
|
+
## [0.5.21] - 2026-05-18
|
|
20
|
+
|
|
21
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.21 — see root CHANGELOG)._
|
|
22
|
+
|
|
13
23
|
## [0.5.20] - 2026-05-18
|
|
14
24
|
|
|
15
25
|
### Added — §350 (v0.5.20) — NEW `<editor-canvas-toolbar>` module
|
package/chat/index.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,44 +1,94 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/web-modules",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "AdiaUI composite custom elements — 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
|
-
|
|
9
|
-
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./index.d.ts",
|
|
9
|
+
"import": "./index.js",
|
|
10
|
+
"default": "./index.js"
|
|
11
|
+
},
|
|
12
|
+
"./shell": {
|
|
13
|
+
"types": "./shell/index.d.ts",
|
|
14
|
+
"import": "./shell/index.js",
|
|
15
|
+
"default": "./shell/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./shell/*": {
|
|
18
|
+
"types": "./shell/*/*.d.ts",
|
|
19
|
+
"import": "./shell/*/*.js",
|
|
20
|
+
"default": "./shell/*/*.js"
|
|
21
|
+
},
|
|
10
22
|
"./shell/*.css": "./shell/*/*.css",
|
|
11
23
|
"./shell/*/*.css": "./shell/*/*.css",
|
|
12
24
|
"./shell/*/css/*.css": "./shell/*/css/*.css",
|
|
13
|
-
"./chat":
|
|
14
|
-
|
|
25
|
+
"./chat": {
|
|
26
|
+
"types": "./chat/index.d.ts",
|
|
27
|
+
"import": "./chat/index.js",
|
|
28
|
+
"default": "./chat/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./chat/*": {
|
|
31
|
+
"types": "./chat/*/*.d.ts",
|
|
32
|
+
"import": "./chat/*/*.js",
|
|
33
|
+
"default": "./chat/*/*.js"
|
|
34
|
+
},
|
|
15
35
|
"./chat/*.css": "./chat/*/*.css",
|
|
16
36
|
"./chat/*/*.css": "./chat/*/*.css",
|
|
17
37
|
"./chat/*/css/*.css": "./chat/*/css/*.css",
|
|
18
38
|
"./editor": {
|
|
19
39
|
"types": "./editor/index.d.ts",
|
|
40
|
+
"import": "./editor/index.js",
|
|
20
41
|
"default": "./editor/index.js"
|
|
21
42
|
},
|
|
22
43
|
"./editor/utils": {
|
|
23
44
|
"types": "./editor/utils.d.ts",
|
|
45
|
+
"import": "./editor/utils.js",
|
|
24
46
|
"default": "./editor/utils.js"
|
|
25
47
|
},
|
|
26
|
-
"./editor/*":
|
|
48
|
+
"./editor/*": {
|
|
49
|
+
"types": "./editor/*/*.d.ts",
|
|
50
|
+
"import": "./editor/*/*.js",
|
|
51
|
+
"default": "./editor/*/*.js"
|
|
52
|
+
},
|
|
27
53
|
"./editor/*.css": "./editor/*/*.css",
|
|
28
54
|
"./editor/*/*.css": "./editor/*/*.css",
|
|
29
55
|
"./editor/*/css/*.css": "./editor/*/css/*.css",
|
|
30
|
-
"./simple":
|
|
31
|
-
|
|
56
|
+
"./simple": {
|
|
57
|
+
"types": "./simple/index.d.ts",
|
|
58
|
+
"import": "./simple/index.js",
|
|
59
|
+
"default": "./simple/index.js"
|
|
60
|
+
},
|
|
61
|
+
"./simple/*": {
|
|
62
|
+
"types": "./simple/*/*.d.ts",
|
|
63
|
+
"import": "./simple/*/*.js",
|
|
64
|
+
"default": "./simple/*/*.js"
|
|
65
|
+
},
|
|
32
66
|
"./simple/*.css": "./simple/*/*.css",
|
|
33
67
|
"./simple/*/*.css": "./simple/*/*.css",
|
|
34
68
|
"./simple/*/css/*.css": "./simple/*/css/*.css",
|
|
35
|
-
"./runtime":
|
|
36
|
-
|
|
69
|
+
"./runtime": {
|
|
70
|
+
"types": "./runtime/index.d.ts",
|
|
71
|
+
"import": "./runtime/index.js",
|
|
72
|
+
"default": "./runtime/index.js"
|
|
73
|
+
},
|
|
74
|
+
"./runtime/*": {
|
|
75
|
+
"types": "./runtime/*/*.d.ts",
|
|
76
|
+
"import": "./runtime/*/*.js",
|
|
77
|
+
"default": "./runtime/*/*.js"
|
|
78
|
+
},
|
|
37
79
|
"./runtime/*.css": "./runtime/*/*.css",
|
|
38
80
|
"./runtime/*/*.css": "./runtime/*/*.css",
|
|
39
81
|
"./runtime/*/css/*.css": "./runtime/*/css/*.css",
|
|
40
|
-
"./theme":
|
|
41
|
-
|
|
82
|
+
"./theme": {
|
|
83
|
+
"types": "./theme/index.d.ts",
|
|
84
|
+
"import": "./theme/index.js",
|
|
85
|
+
"default": "./theme/index.js"
|
|
86
|
+
},
|
|
87
|
+
"./theme/*": {
|
|
88
|
+
"types": "./theme/*/*.d.ts",
|
|
89
|
+
"import": "./theme/*/*.js",
|
|
90
|
+
"default": "./theme/*/*.js"
|
|
91
|
+
},
|
|
42
92
|
"./theme/*.css": "./theme/*/*.css",
|
|
43
93
|
"./theme/*/*.css": "./theme/*/*.css",
|
|
44
94
|
"./theme/*/css/*.css": "./theme/*/css/*.css",
|
|
@@ -65,9 +115,9 @@
|
|
|
65
115
|
"./theme/**/*.js"
|
|
66
116
|
],
|
|
67
117
|
"peerDependencies": {
|
|
68
|
-
"@adia-ai/web-components": "^0.
|
|
69
|
-
"@adia-ai/a2ui-runtime": "^0.
|
|
70
|
-
"@adia-ai/llm": "^0.
|
|
118
|
+
"@adia-ai/web-components": "^0.6.0",
|
|
119
|
+
"@adia-ai/a2ui-runtime": "^0.6.0",
|
|
120
|
+
"@adia-ai/llm": "^0.6.0"
|
|
71
121
|
},
|
|
72
122
|
"publishConfig": {
|
|
73
123
|
"access": "public",
|
package/shell/index.d.ts
ADDED
package/theme/index.d.ts
ADDED