@adia-ai/web-modules 0.6.37 → 0.6.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 +23 -0
- package/dist/everything.min.js +152 -136
- package/package.json +1 -1
- package/shell/admin-shell/css/admin-shell.entity-item.css +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/web-modules",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.39",
|
|
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": {
|
|
@@ -23,13 +23,16 @@
|
|
|
23
23
|
|
|
24
24
|
admin-entity-item {
|
|
25
25
|
/* ── tunable tokens ──
|
|
26
|
-
Gap + horizontal padding match <select-ui>'s trigger
|
|
27
|
-
<nav-item-ui>'s row (shared convention: --a-space-1
|
|
28
|
-
slots, --a-ui-px on each inline edge
|
|
29
|
-
|
|
26
|
+
Gap + horizontal padding + ICON SIZE match <select-ui>'s trigger
|
|
27
|
+
row and <nav-item-ui>'s row (shared convention: --a-space-1
|
|
28
|
+
between slots, --a-ui-px on each inline edge, icon sized as
|
|
29
|
+
row-height minus a-space-2 so the icon visually matches the
|
|
30
|
+
<nav-item-ui slot="icon"> beneath in the same sidebar column).
|
|
31
|
+
Consumers can opt out by setting --entity-item-px: 0 on a
|
|
32
|
+
per-use basis. */
|
|
30
33
|
--entity-item-gap: var(--a-space-1);
|
|
31
34
|
--entity-item-px: var(--a-ui-px);
|
|
32
|
-
--entity-item-icon-size:
|
|
35
|
+
--entity-item-icon-size: calc(var(--a-size) - var(--a-space-2));
|
|
33
36
|
--entity-item-icon-color: var(--a-fg-muted);
|
|
34
37
|
--entity-item-avatar-size: 1.5rem;
|
|
35
38
|
|