@adia-ai/web-modules 0.8.37 → 0.8.39
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 +15 -0
- package/README.md +1 -1
- package/chat/README.md +1 -1
- package/chat/chat-shell/chat-shell.js +2 -2
- package/chat/chat-surfaces/chat-surfaces.js +1 -1
- package/dist/chat/chat-shell.min.js +1 -1
- package/dist/everything.min.js +126 -104
- package/package.json +6 -6
- package/shell/embed-shell/embed-shell.a2ui.json +1 -1
- package/shell/embed-shell/embed-shell.js +2 -2
- package/shell/embed-shell/embed-shell.yaml +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/web-modules",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.39",
|
|
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": {
|
|
@@ -389,11 +389,11 @@
|
|
|
389
389
|
"./simple/**/*.js"
|
|
390
390
|
],
|
|
391
391
|
"peerDependencies": {
|
|
392
|
-
"@adia-ai/web-components": "0.8.
|
|
393
|
-
"@adia-ai/a2ui": "0.8.
|
|
394
|
-
"@adia-ai/llm": "0.8.
|
|
395
|
-
"@adia-ai/agent": "0.8.
|
|
396
|
-
"@adia-ai/persona": "0.8.
|
|
392
|
+
"@adia-ai/web-components": "0.8.39",
|
|
393
|
+
"@adia-ai/a2ui": "0.8.39",
|
|
394
|
+
"@adia-ai/llm": "0.8.39",
|
|
395
|
+
"@adia-ai/agent": "0.8.39",
|
|
396
|
+
"@adia-ai/persona": "0.8.39"
|
|
397
397
|
},
|
|
398
398
|
"publishConfig": {
|
|
399
399
|
"access": "public",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
* <y panel="chat">…</y> ← a secondary surface (any number)
|
|
13
13
|
* <z panel="settings">…</z>
|
|
14
14
|
* </embed-shell>
|
|
15
|
-
* …anywhere inside: <button opens="chat"> ← trigger (delegated)
|
|
16
|
-
* <button close> ← dismiss the open panel
|
|
15
|
+
* …anywhere inside: <button-ui opens="chat"> ← trigger (delegated; any element carrying [opens])
|
|
16
|
+
* <button-ui close> ← dismiss the open panel
|
|
17
17
|
*
|
|
18
18
|
* State (reflected, ADR-0023):
|
|
19
19
|
* embed-shell[panel="chat"] ← which panel is open ('' / absent = none)
|