@adia-ai/web-modules 0.4.6 → 0.4.8
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 +32 -0
- package/chat/chat-composer/chat-composer.a2ui.json +1 -0
- package/chat/chat-composer/chat-composer.d.ts +47 -0
- package/chat/chat-empty/chat-empty.a2ui.json +1 -0
- package/chat/chat-header/chat-header.a2ui.json +1 -0
- package/chat/chat-shell/chat-shell.a2ui.json +3 -0
- package/chat/chat-shell/chat-shell.d.ts +86 -0
- package/chat/chat-shell/chat-shell.yaml +4 -0
- package/chat/chat-sidebar/chat-sidebar.a2ui.json +1 -0
- package/chat/chat-sidebar/chat-sidebar.d.ts +70 -0
- package/chat/chat-status/chat-status.a2ui.json +1 -0
- package/chat/chat-thread/chat-thread.a2ui.json +7 -0
- package/chat/chat-thread/chat-thread.d.ts +38 -0
- package/chat/chat-thread/chat-thread.yaml +58 -49
- package/editor/editor-canvas/editor-canvas.a2ui.json +1 -0
- package/editor/editor-canvas/editor-canvas.d.ts +40 -0
- package/editor/editor-canvas-empty/editor-canvas-empty.a2ui.json +1 -0
- package/editor/editor-shell/editor-shell.a2ui.json +1 -0
- package/editor/editor-shell/editor-shell.d.ts +21 -0
- package/editor/editor-sidebar/editor-sidebar.a2ui.json +1 -0
- package/editor/editor-sidebar/editor-sidebar.d.ts +53 -0
- package/editor/editor-statusbar/editor-statusbar.a2ui.json +1 -0
- package/editor/editor-toolbar/editor-toolbar.a2ui.json +1 -0
- package/editor/editor-toolbar/editor-toolbar.d.ts +39 -0
- package/package.json +1 -1
- package/runtime/a2ui-root/a2ui-root.a2ui.json +1 -0
- package/runtime/a2ui-root/a2ui-root.d.ts +47 -0
- package/runtime/gen-root/gen-root.a2ui.json +5 -0
- package/runtime/gen-root/gen-root.d.ts +23 -0
- package/runtime/gen-root/gen-root.yaml +6 -0
- package/shell/admin-command/admin-command.a2ui.json +1 -0
- package/shell/admin-command/admin-command.d.ts +50 -0
- package/shell/admin-content/admin-content.a2ui.json +1 -0
- package/shell/admin-page/admin-page.a2ui.json +1 -0
- package/shell/admin-page-body/admin-page-body.a2ui.json +1 -0
- package/shell/admin-page-header/admin-page-header.a2ui.json +1 -0
- package/shell/admin-scroll/admin-scroll.a2ui.json +1 -0
- package/shell/admin-shell/admin-shell.a2ui.json +1 -0
- package/shell/admin-shell/admin-shell.d.ts +49 -0
- package/shell/admin-sidebar/admin-sidebar.a2ui.json +1 -0
- package/shell/admin-sidebar/admin-sidebar.d.ts +68 -0
- package/shell/admin-statusbar/admin-statusbar.a2ui.json +1 -0
- package/shell/admin-topbar/admin-topbar.a2ui.json +1 -0
- package/simple/simple-content/simple-content.a2ui.json +1 -0
- package/simple/simple-hero/simple-hero.a2ui.json +1 -0
- package/simple/simple-shell/simple-shell.a2ui.json +1 -0
- package/simple/simple-shell/simple-shell.d.ts +29 -0
- package/theme/theme-panel/theme-panel.a2ui.json +9 -0
- package/theme/theme-panel/theme-panel.d.ts +77 -0
- package/theme/theme-panel/theme-panel.html +2 -0
- package/theme/theme-panel/theme-panel.yaml +10 -0
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
<link rel="stylesheet" href="../../../web-components/components/code/code.css">
|
|
24
24
|
<link rel="stylesheet" href="../../../web-components/components/tag/tag.css">
|
|
25
25
|
|
|
26
|
+
<link rel="stylesheet" href="../segment/segment.css">
|
|
26
27
|
<!-- Module CSS -->
|
|
27
28
|
<link rel="stylesheet" href="./theme-panel.css">
|
|
28
29
|
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
<script type="module" src="../../../web-components/components/code/code.js"></script>
|
|
39
40
|
<script type="module" src="../../../web-components/components/tag/tag.js"></script>
|
|
40
41
|
|
|
42
|
+
<script type="module" src="../segment/segment.js"></script>
|
|
41
43
|
<!-- Module JS -->
|
|
42
44
|
<script type="module" src="./theme-panel.js"></script>
|
|
43
45
|
|
|
@@ -20,6 +20,16 @@ description: |
|
|
|
20
20
|
Promoted from the duplicated <div id="theme-panel"> block in site/ and
|
|
21
21
|
playgrounds/admin-shell/ — see docs/specs/theme-panel-module.md.
|
|
22
22
|
|
|
23
|
+
# Per ADR-0027 — primitives that programmatically create other primitives
|
|
24
|
+
# do NOT auto-import them. Consumer (or demo shell) must explicitly import.
|
|
25
|
+
composes:
|
|
26
|
+
- segmented-ui
|
|
27
|
+
- segment-ui
|
|
28
|
+
- text-ui
|
|
29
|
+
- button-ui
|
|
30
|
+
- divider-ui
|
|
31
|
+
- field-ui
|
|
32
|
+
- slider-ui
|
|
23
33
|
props:
|
|
24
34
|
themes:
|
|
25
35
|
description: |
|