@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.
Files changed (51) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/chat/chat-composer/chat-composer.a2ui.json +1 -0
  3. package/chat/chat-composer/chat-composer.d.ts +47 -0
  4. package/chat/chat-empty/chat-empty.a2ui.json +1 -0
  5. package/chat/chat-header/chat-header.a2ui.json +1 -0
  6. package/chat/chat-shell/chat-shell.a2ui.json +3 -0
  7. package/chat/chat-shell/chat-shell.d.ts +86 -0
  8. package/chat/chat-shell/chat-shell.yaml +4 -0
  9. package/chat/chat-sidebar/chat-sidebar.a2ui.json +1 -0
  10. package/chat/chat-sidebar/chat-sidebar.d.ts +70 -0
  11. package/chat/chat-status/chat-status.a2ui.json +1 -0
  12. package/chat/chat-thread/chat-thread.a2ui.json +7 -0
  13. package/chat/chat-thread/chat-thread.d.ts +38 -0
  14. package/chat/chat-thread/chat-thread.yaml +58 -49
  15. package/editor/editor-canvas/editor-canvas.a2ui.json +1 -0
  16. package/editor/editor-canvas/editor-canvas.d.ts +40 -0
  17. package/editor/editor-canvas-empty/editor-canvas-empty.a2ui.json +1 -0
  18. package/editor/editor-shell/editor-shell.a2ui.json +1 -0
  19. package/editor/editor-shell/editor-shell.d.ts +21 -0
  20. package/editor/editor-sidebar/editor-sidebar.a2ui.json +1 -0
  21. package/editor/editor-sidebar/editor-sidebar.d.ts +53 -0
  22. package/editor/editor-statusbar/editor-statusbar.a2ui.json +1 -0
  23. package/editor/editor-toolbar/editor-toolbar.a2ui.json +1 -0
  24. package/editor/editor-toolbar/editor-toolbar.d.ts +39 -0
  25. package/package.json +1 -1
  26. package/runtime/a2ui-root/a2ui-root.a2ui.json +1 -0
  27. package/runtime/a2ui-root/a2ui-root.d.ts +47 -0
  28. package/runtime/gen-root/gen-root.a2ui.json +5 -0
  29. package/runtime/gen-root/gen-root.d.ts +23 -0
  30. package/runtime/gen-root/gen-root.yaml +6 -0
  31. package/shell/admin-command/admin-command.a2ui.json +1 -0
  32. package/shell/admin-command/admin-command.d.ts +50 -0
  33. package/shell/admin-content/admin-content.a2ui.json +1 -0
  34. package/shell/admin-page/admin-page.a2ui.json +1 -0
  35. package/shell/admin-page-body/admin-page-body.a2ui.json +1 -0
  36. package/shell/admin-page-header/admin-page-header.a2ui.json +1 -0
  37. package/shell/admin-scroll/admin-scroll.a2ui.json +1 -0
  38. package/shell/admin-shell/admin-shell.a2ui.json +1 -0
  39. package/shell/admin-shell/admin-shell.d.ts +49 -0
  40. package/shell/admin-sidebar/admin-sidebar.a2ui.json +1 -0
  41. package/shell/admin-sidebar/admin-sidebar.d.ts +68 -0
  42. package/shell/admin-statusbar/admin-statusbar.a2ui.json +1 -0
  43. package/shell/admin-topbar/admin-topbar.a2ui.json +1 -0
  44. package/simple/simple-content/simple-content.a2ui.json +1 -0
  45. package/simple/simple-hero/simple-hero.a2ui.json +1 -0
  46. package/simple/simple-shell/simple-shell.a2ui.json +1 -0
  47. package/simple/simple-shell/simple-shell.d.ts +29 -0
  48. package/theme/theme-panel/theme-panel.a2ui.json +9 -0
  49. package/theme/theme-panel/theme-panel.d.ts +77 -0
  50. package/theme/theme-panel/theme-panel.html +2 -0
  51. 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: |