@adia-ai/web-components 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.
Files changed (73) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/components/accordion/accordion-item.a2ui.json +3 -0
  3. package/components/accordion/accordion-item.yaml +5 -0
  4. package/components/action-list/action-item.a2ui.json +5 -1
  5. package/components/action-list/action-item.yaml +7 -0
  6. package/components/card/card.a2ui.json +17 -1
  7. package/components/card/card.yaml +24 -1
  8. package/components/date-range-picker/date-range-picker.css +4 -4
  9. package/components/datetime-picker/datetime-picker.css +3 -3
  10. package/components/demo-toggle/demo-toggle.css +11 -11
  11. package/components/empty-state/empty-state.a2ui.json +9 -0
  12. package/components/empty-state/empty-state.yaml +15 -0
  13. package/components/feed/feed-item.a2ui.json +5 -0
  14. package/components/feed/feed-item.yaml +10 -0
  15. package/components/feed/feed.css +2 -2
  16. package/components/field/field.a2ui.json +6 -0
  17. package/components/field/field.css +18 -18
  18. package/components/field/field.yaml +10 -0
  19. package/components/heatmap/heatmap.css +1 -1
  20. package/components/index.js +3 -0
  21. package/components/inline-edit/inline-edit.a2ui.json +159 -0
  22. package/components/inline-edit/inline-edit.class.js +184 -0
  23. package/components/inline-edit/inline-edit.css +62 -0
  24. package/components/inline-edit/inline-edit.d.ts +52 -0
  25. package/components/inline-edit/inline-edit.js +12 -0
  26. package/components/inline-edit/inline-edit.yaml +125 -0
  27. package/components/inline-message/inline-message.css +1 -1
  28. package/components/list/list-item.a2ui.json +11 -1
  29. package/components/list/list-item.yaml +19 -0
  30. package/components/list/list.css +36 -6
  31. package/components/list-window/list-window.css +4 -4
  32. package/components/mark/mark.a2ui.json +109 -0
  33. package/components/mark/mark.class.js +22 -0
  34. package/components/mark/mark.css +39 -0
  35. package/components/mark/mark.d.ts +27 -0
  36. package/components/mark/mark.js +12 -0
  37. package/components/mark/mark.yaml +87 -0
  38. package/components/modal/modal.a2ui.json +9 -0
  39. package/components/modal/modal.css +8 -8
  40. package/components/modal/modal.yaml +14 -0
  41. package/components/nav-group/nav-group.a2ui.json +3 -0
  42. package/components/nav-group/nav-group.yaml +5 -0
  43. package/components/nav-item/nav-item.a2ui.json +3 -0
  44. package/components/nav-item/nav-item.yaml +5 -0
  45. package/components/option-card/option-card.css +9 -9
  46. package/components/segmented/segmented.class.js +10 -2
  47. package/components/select/select.a2ui.json +3 -0
  48. package/components/select/select.css +5 -5
  49. package/components/select/select.yaml +5 -0
  50. package/components/slider/slider.a2ui.json +6 -0
  51. package/components/slider/slider.yaml +10 -0
  52. package/components/stat/stat.css +18 -14
  53. package/components/stepper/stepper-item.a2ui.json +3 -0
  54. package/components/stepper/stepper-item.yaml +5 -0
  55. package/components/timeline/timeline-item.a2ui.json +8 -1
  56. package/components/timeline/timeline-item.yaml +12 -0
  57. package/components/timeline/timeline.css +19 -19
  58. package/components/tour/tour-step.a2ui.json +92 -0
  59. package/components/tour/tour-step.yaml +84 -0
  60. package/components/tour/tour.a2ui.json +172 -0
  61. package/components/tour/tour.class.js +309 -0
  62. package/components/tour/tour.css +135 -0
  63. package/components/tour/tour.d.ts +78 -0
  64. package/components/tour/tour.js +13 -0
  65. package/components/tour/tour.yaml +161 -0
  66. package/components/tree/tree-item.a2ui.json +5 -1
  67. package/components/tree/tree-item.yaml +7 -0
  68. package/components/tree/tree.a2ui.json +3 -0
  69. package/components/tree/tree.yaml +5 -0
  70. package/dist/web-components.min.css +1 -1
  71. package/dist/web-components.min.js +88 -74
  72. package/package.json +1 -1
  73. package/styles/components.css +3 -0
@@ -64,7 +64,11 @@
64
64
  "Nav",
65
65
  "Accordion"
66
66
  ],
67
- "slots": {},
67
+ "slots": {
68
+ "icon": {
69
+ "description": "Override the leading [icon] glyph with a custom slotted element (custom icon-ui, folder open/closed glyph, file-type marker). Mutually exclusive with the [icon] attribute — slot child wins."
70
+ }
71
+ },
68
72
  "states": [],
69
73
  "status": "stable",
70
74
  "synonyms": {
@@ -41,6 +41,13 @@ props:
41
41
  Added in §184 (v0.5.5, FEEDBACK-08 §1).
42
42
  type: string
43
43
 
44
+ slots:
45
+ icon:
46
+ description: >-
47
+ Override the leading [icon] glyph with a custom slotted element (custom
48
+ icon-ui, folder open/closed glyph, file-type marker). Mutually exclusive
49
+ with the [icon] attribute — slot child wins.
50
+
44
51
  a2ui:
45
52
  rules:
46
53
  - >-
@@ -79,6 +79,9 @@
79
79
  "slots": {
80
80
  "default (tree-item-ui children)": {
81
81
  "description": "Child content region for the `default (tree-item-ui children)` slot."
82
+ },
83
+ "icon": {
84
+ "description": "Override slot for the per-node icon glyph. Tree-item's `[icon]` attr stamps a default Phosphor icon; the slot lets consumers fill custom icons (folder open/closed, file-type glyphs, branded markers)."
82
85
  }
83
86
  },
84
87
  "states": [
@@ -43,6 +43,11 @@ events:
43
43
  slots:
44
44
  default (tree-item-ui children):
45
45
  description: "Child content region for the `default (tree-item-ui children)` slot."
46
+ icon:
47
+ description: >-
48
+ Override slot for the per-node icon glyph. Tree-item's `[icon]` attr
49
+ stamps a default Phosphor icon; the slot lets consumers fill custom
50
+ icons (folder open/closed, file-type glyphs, branded markers).
46
51
  states:
47
52
  - name: idle
48
53
  description: Default, ready for interaction.