@adia-ai/web-components 0.0.1
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/README.md +195 -0
- package/a2ui/dockables/action.js +152 -0
- package/a2ui/dockables/base.js +30 -0
- package/a2ui/dockables/controller.js +97 -0
- package/a2ui/dockables/data-source.js +103 -0
- package/a2ui/dockables/index.js +6 -0
- package/a2ui/dockables/lifecycle.js +84 -0
- package/a2ui/dockables/provider.js +59 -0
- package/a2ui/index.js +19 -0
- package/a2ui/manifest-runtime.js +226 -0
- package/a2ui/registry.js +200 -0
- package/a2ui/renderer.js +361 -0
- package/a2ui/root.js +152 -0
- package/a2ui/stream.js +243 -0
- package/a2ui/surface-manifest.js +294 -0
- package/a2ui/surface.js +222 -0
- package/a2ui/wire-factory.js +134 -0
- package/a2ui/wiring-engine.js +209 -0
- package/a2ui/wiring-registry.js +342 -0
- package/components/accordion/accordion.a2ui.json +129 -0
- package/components/accordion/accordion.css +133 -0
- package/components/accordion/accordion.js +125 -0
- package/components/accordion/accordion.yaml +527 -0
- package/components/action-list/action-list.a2ui.json +64 -0
- package/components/action-list/action-list.css +115 -0
- package/components/action-list/action-list.js +149 -0
- package/components/action-list/action-list.yaml +56 -0
- package/components/agent-artifact/agent-artifact.a2ui.json +99 -0
- package/components/agent-artifact/agent-artifact.css +94 -0
- package/components/agent-artifact/agent-artifact.js +169 -0
- package/components/agent-artifact/agent-artifact.yaml +71 -0
- package/components/agent-feedback-bar/agent-feedback-bar.a2ui.json +91 -0
- package/components/agent-feedback-bar/agent-feedback-bar.css +33 -0
- package/components/agent-feedback-bar/agent-feedback-bar.js +152 -0
- package/components/agent-feedback-bar/agent-feedback-bar.yaml +65 -0
- package/components/agent-questions/agent-questions.a2ui.json +89 -0
- package/components/agent-questions/agent-questions.css +146 -0
- package/components/agent-questions/agent-questions.js +189 -0
- package/components/agent-questions/agent-questions.yaml +63 -0
- package/components/agent-reasoning/agent-reasoning.a2ui.json +100 -0
- package/components/agent-reasoning/agent-reasoning.css +273 -0
- package/components/agent-reasoning/agent-reasoning.js +469 -0
- package/components/agent-reasoning/agent-reasoning.yaml +70 -0
- package/components/agent-suggestions/agent-suggestions.a2ui.json +87 -0
- package/components/agent-suggestions/agent-suggestions.css +18 -0
- package/components/agent-suggestions/agent-suggestions.js +87 -0
- package/components/agent-suggestions/agent-suggestions.yaml +59 -0
- package/components/agent-trace/agent-trace.a2ui.json +78 -0
- package/components/agent-trace/agent-trace.css +275 -0
- package/components/agent-trace/agent-trace.js +216 -0
- package/components/agent-trace/agent-trace.yaml +53 -0
- package/components/alert/alert.a2ui.json +211 -0
- package/components/alert/alert.css +88 -0
- package/components/alert/alert.js +96 -0
- package/components/alert/alert.yaml +205 -0
- package/components/avatar/avatar.a2ui.json +215 -0
- package/components/avatar/avatar.css +159 -0
- package/components/avatar/avatar.js +157 -0
- package/components/avatar/avatar.yaml +559 -0
- package/components/badge/badge.a2ui.json +169 -0
- package/components/badge/badge.css +78 -0
- package/components/badge/badge.js +53 -0
- package/components/badge/badge.yaml +612 -0
- package/components/block/block.a2ui.json +135 -0
- package/components/block/block.css +29 -0
- package/components/block/block.js +23 -0
- package/components/block/block.yaml +115 -0
- package/components/breadcrumb/breadcrumb.a2ui.json +86 -0
- package/components/breadcrumb/breadcrumb.css +78 -0
- package/components/breadcrumb/breadcrumb.js +44 -0
- package/components/breadcrumb/breadcrumb.yaml +84 -0
- package/components/button/button.a2ui.json +172 -0
- package/components/button/button.css +168 -0
- package/components/button/button.js +60 -0
- package/components/button/button.yaml +120 -0
- package/components/calendar-picker/calendar-picker.a2ui.json +139 -0
- package/components/calendar-picker/calendar-picker.css +321 -0
- package/components/calendar-picker/calendar-picker.js +324 -0
- package/components/calendar-picker/calendar-picker.yaml +243 -0
- package/components/canvas/canvas.a2ui.json +75 -0
- package/components/canvas/canvas.css +52 -0
- package/components/canvas/canvas.js +179 -0
- package/components/canvas/canvas.yaml +62 -0
- package/components/card/card.a2ui.json +276 -0
- package/components/card/card.css +362 -0
- package/components/card/card.js +58 -0
- package/components/card/card.yaml +527 -0
- package/components/chart/chart.a2ui.json +298 -0
- package/components/chart/chart.css +512 -0
- package/components/chart/chart.js +1075 -0
- package/components/chart/chart.yaml +540 -0
- package/components/chat/chat-input.css +141 -0
- package/components/chat/chat-input.js +242 -0
- package/components/chat/chat.a2ui.json +181 -0
- package/components/chat/chat.css +193 -0
- package/components/chat/chat.js +155 -0
- package/components/chat/chat.yaml +230 -0
- package/components/check/check.a2ui.json +134 -0
- package/components/check/check.css +126 -0
- package/components/check/check.js +58 -0
- package/components/check/check.yaml +109 -0
- package/components/code/code.a2ui.json +153 -0
- package/components/code/code.css +133 -0
- package/components/code/code.js +114 -0
- package/components/code/code.yaml +163 -0
- package/components/col/col.a2ui.json +104 -0
- package/components/col/col.css +36 -0
- package/components/col/col.js +19 -0
- package/components/col/col.yaml +364 -0
- package/components/color-picker/color-picker.a2ui.json +100 -0
- package/components/color-picker/color-picker.css +182 -0
- package/components/color-picker/color-picker.js +537 -0
- package/components/color-picker/color-picker.yaml +105 -0
- package/components/command/command.a2ui.json +221 -0
- package/components/command/command.css +251 -0
- package/components/command/command.js +284 -0
- package/components/command/command.yaml +186 -0
- package/components/description-list/description-list.a2ui.json +89 -0
- package/components/description-list/description-list.css +70 -0
- package/components/description-list/description-list.js +75 -0
- package/components/description-list/description-list.yaml +59 -0
- package/components/divider/divider.a2ui.json +126 -0
- package/components/divider/divider.css +102 -0
- package/components/divider/divider.js +47 -0
- package/components/divider/divider.yaml +366 -0
- package/components/drawer/drawer.a2ui.json +199 -0
- package/components/drawer/drawer.css +342 -0
- package/components/drawer/drawer.js +263 -0
- package/components/drawer/drawer.yaml +366 -0
- package/components/embed/embed.a2ui.json +150 -0
- package/components/embed/embed.css +28 -0
- package/components/embed/embed.js +63 -0
- package/components/embed/embed.yaml +224 -0
- package/components/empty-state/empty-state.a2ui.json +133 -0
- package/components/empty-state/empty-state.css +58 -0
- package/components/empty-state/empty-state.js +87 -0
- package/components/empty-state/empty-state.yaml +314 -0
- package/components/footer/footer.a2ui.json +79 -0
- package/components/footer/footer.yaml +239 -0
- package/components/grid/grid.a2ui.json +171 -0
- package/components/grid/grid.css +37 -0
- package/components/grid/grid.js +21 -0
- package/components/grid/grid.yaml +577 -0
- package/components/header/header.a2ui.json +76 -0
- package/components/header/header.yaml +336 -0
- package/components/heatmap/heatmap.a2ui.json +150 -0
- package/components/heatmap/heatmap.css +146 -0
- package/components/heatmap/heatmap.js +246 -0
- package/components/heatmap/heatmap.yaml +131 -0
- package/components/icon/icon.a2ui.json +79 -0
- package/components/icon/icon.css +20 -0
- package/components/icon/icon.js +26 -0
- package/components/icon/icon.yaml +233 -0
- package/components/image/image.a2ui.json +261 -0
- package/components/image/image.css +76 -0
- package/components/image/image.js +102 -0
- package/components/image/image.yaml +477 -0
- package/components/index.js +85 -0
- package/components/input/input.a2ui.json +284 -0
- package/components/input/input.css +162 -0
- package/components/input/input.js +148 -0
- package/components/input/input.yaml +496 -0
- package/components/inspector/inspector.a2ui.json +67 -0
- package/components/inspector/inspector.css +31 -0
- package/components/inspector/inspector.js +133 -0
- package/components/inspector/inspector.yaml +58 -0
- package/components/kbd/kbd.a2ui.json +96 -0
- package/components/kbd/kbd.css +62 -0
- package/components/kbd/kbd.js +24 -0
- package/components/kbd/kbd.yaml +213 -0
- package/components/list/list.a2ui.json +145 -0
- package/components/list/list.css +103 -0
- package/components/list/list.js +236 -0
- package/components/list/list.yaml +122 -0
- package/components/menu/menu.a2ui.json +146 -0
- package/components/menu/menu.css +146 -0
- package/components/menu/menu.js +296 -0
- package/components/menu/menu.yaml +123 -0
- package/components/modal/modal.a2ui.json +136 -0
- package/components/modal/modal.css +153 -0
- package/components/modal/modal.js +181 -0
- package/components/modal/modal.yaml +114 -0
- package/components/noodles/noodles.a2ui.json +145 -0
- package/components/noodles/noodles.css +118 -0
- package/components/noodles/noodles.js +470 -0
- package/components/noodles/noodles.yaml +123 -0
- package/components/otp-input/otp-input.a2ui.json +104 -0
- package/components/otp-input/otp-input.css +78 -0
- package/components/otp-input/otp-input.js +170 -0
- package/components/otp-input/otp-input.yaml +218 -0
- package/components/pagination/pagination.a2ui.json +122 -0
- package/components/pagination/pagination.css +162 -0
- package/components/pagination/pagination.js +185 -0
- package/components/pagination/pagination.yaml +165 -0
- package/components/pane/pane.a2ui.json +94 -0
- package/components/pane/pane.css +166 -0
- package/components/pane/pane.js +140 -0
- package/components/pane/pane.yaml +197 -0
- package/components/pipeline-status/pipeline-status.a2ui.json +90 -0
- package/components/pipeline-status/pipeline-status.css +162 -0
- package/components/pipeline-status/pipeline-status.js +176 -0
- package/components/pipeline-status/pipeline-status.yaml +99 -0
- package/components/popover/popover.a2ui.json +181 -0
- package/components/popover/popover.css +57 -0
- package/components/popover/popover.js +170 -0
- package/components/popover/popover.yaml +257 -0
- package/components/progress/progress.a2ui.json +199 -0
- package/components/progress/progress.css +88 -0
- package/components/progress/progress.js +64 -0
- package/components/progress/progress.yaml +342 -0
- package/components/progress-row/progress-row.a2ui.json +100 -0
- package/components/progress-row/progress-row.css +57 -0
- package/components/progress-row/progress-row.js +92 -0
- package/components/progress-row/progress-row.yaml +87 -0
- package/components/radio/radio.a2ui.json +232 -0
- package/components/radio/radio.css +102 -0
- package/components/radio/radio.js +73 -0
- package/components/radio/radio.yaml +248 -0
- package/components/range/range.a2ui.json +151 -0
- package/components/range/range.css +148 -0
- package/components/range/range.js +177 -0
- package/components/range/range.yaml +188 -0
- package/components/rating/rating.a2ui.json +105 -0
- package/components/rating/rating.css +92 -0
- package/components/rating/rating.js +138 -0
- package/components/rating/rating.yaml +74 -0
- package/components/richtext/richtext.a2ui.json +82 -0
- package/components/richtext/richtext.css +225 -0
- package/components/richtext/richtext.js +74 -0
- package/components/richtext/richtext.yaml +89 -0
- package/components/row/row.a2ui.json +102 -0
- package/components/row/row.css +51 -0
- package/components/row/row.js +39 -0
- package/components/row/row.yaml +358 -0
- package/components/search/search.a2ui.json +186 -0
- package/components/search/search.css +28 -0
- package/components/search/search.js +124 -0
- package/components/search/search.yaml +154 -0
- package/components/section/section.a2ui.json +78 -0
- package/components/section/section.yaml +338 -0
- package/components/segment/segment.a2ui.json +100 -0
- package/components/segment/segment.css +81 -0
- package/components/segment/segment.js +32 -0
- package/components/segment/segment.yaml +216 -0
- package/components/segmented/segmented.a2ui.json +106 -0
- package/components/segmented/segmented.css +67 -0
- package/components/segmented/segmented.js +149 -0
- package/components/segmented/segmented.yaml +91 -0
- package/components/select/select.a2ui.json +203 -0
- package/components/select/select.css +277 -0
- package/components/select/select.js +388 -0
- package/components/select/select.yaml +375 -0
- package/components/skeleton/skeleton.a2ui.json +120 -0
- package/components/skeleton/skeleton.css +47 -0
- package/components/skeleton/skeleton.js +43 -0
- package/components/skeleton/skeleton.yaml +153 -0
- package/components/slider/slider.a2ui.json +162 -0
- package/components/slider/slider.css +137 -0
- package/components/slider/slider.js +162 -0
- package/components/slider/slider.yaml +299 -0
- package/components/stack/stack.a2ui.json +62 -0
- package/components/stack/stack.css +28 -0
- package/components/stack/stack.js +18 -0
- package/components/stack/stack.yaml +54 -0
- package/components/stat/stat.a2ui.json +246 -0
- package/components/stat/stat.css +101 -0
- package/components/stat/stat.js +91 -0
- package/components/stat/stat.yaml +206 -0
- package/components/stepper/stepper.a2ui.json +77 -0
- package/components/stepper/stepper.css +243 -0
- package/components/stepper/stepper.js +118 -0
- package/components/stepper/stepper.yaml +73 -0
- package/components/stream/stream.a2ui.json +98 -0
- package/components/stream/stream.css +37 -0
- package/components/stream/stream.js +99 -0
- package/components/stream/stream.yaml +87 -0
- package/components/swiper/swiper.a2ui.json +140 -0
- package/components/swiper/swiper.css +267 -0
- package/components/swiper/swiper.js +285 -0
- package/components/swiper/swiper.yaml +268 -0
- package/components/switch/switch.a2ui.json +134 -0
- package/components/switch/switch.css +104 -0
- package/components/switch/switch.js +53 -0
- package/components/switch/switch.yaml +322 -0
- package/components/table/cell-types.js +296 -0
- package/components/table/table.a2ui.json +458 -0
- package/components/table/table.css +531 -0
- package/components/table/table.js +1392 -0
- package/components/table/table.yaml +528 -0
- package/components/tabs/tab.js +34 -0
- package/components/tabs/tabs.a2ui.json +174 -0
- package/components/tabs/tabs.css +162 -0
- package/components/tabs/tabs.js +226 -0
- package/components/tabs/tabs.yaml +255 -0
- package/components/tag/tag.a2ui.json +148 -0
- package/components/tag/tag.css +118 -0
- package/components/tag/tag.js +88 -0
- package/components/tag/tag.yaml +125 -0
- package/components/text/text.a2ui.json +99 -0
- package/components/text/text.css +65 -0
- package/components/text/text.js +35 -0
- package/components/text/text.yaml +360 -0
- package/components/textarea/textarea.a2ui.json +91 -0
- package/components/textarea/textarea.css +93 -0
- package/components/textarea/textarea.js +114 -0
- package/components/textarea/textarea.yaml +79 -0
- package/components/timeline/timeline.a2ui.json +82 -0
- package/components/timeline/timeline.css +389 -0
- package/components/timeline/timeline.js +171 -0
- package/components/timeline/timeline.yaml +185 -0
- package/components/toast/toast.a2ui.json +199 -0
- package/components/toast/toast.css +211 -0
- package/components/toast/toast.js +146 -0
- package/components/toast/toast.yaml +184 -0
- package/components/toggle-group/toggle-group.a2ui.json +126 -0
- package/components/toggle-group/toggle-group.css +102 -0
- package/components/toggle-group/toggle-group.js +147 -0
- package/components/toggle-group/toggle-group.yaml +98 -0
- package/components/toolbar/toolbar.a2ui.json +131 -0
- package/components/toolbar/toolbar.css +132 -0
- package/components/toolbar/toolbar.js +366 -0
- package/components/toolbar/toolbar.yaml +238 -0
- package/components/tooltip/tooltip.a2ui.json +148 -0
- package/components/tooltip/tooltip.css +39 -0
- package/components/tooltip/tooltip.js +96 -0
- package/components/tooltip/tooltip.yaml +201 -0
- package/components/tree/tree.a2ui.json +119 -0
- package/components/tree/tree.css +133 -0
- package/components/tree/tree.js +253 -0
- package/components/tree/tree.yaml +92 -0
- package/components/upload/upload.a2ui.json +185 -0
- package/components/upload/upload.css +115 -0
- package/components/upload/upload.js +189 -0
- package/components/upload/upload.yaml +302 -0
- package/core/anchor.js +187 -0
- package/core/controller.js +182 -0
- package/core/element.js +257 -0
- package/core/form.js +217 -0
- package/core/icons.js +180 -0
- package/core/markdown.js +95 -0
- package/core/polyfills.js +23 -0
- package/core/provider.js +262 -0
- package/core/signals.js +113 -0
- package/core/template.js +226 -0
- package/core/transport.js +77 -0
- package/package.json +38 -0
- package/patterns/adia-chat/adia-chat.a2ui.json +149 -0
- package/patterns/adia-chat/adia-chat.css +10 -0
- package/patterns/adia-chat/adia-chat.js +297 -0
- package/patterns/adia-chat/adia-chat.yaml +118 -0
- package/patterns/adia-chat/css/adia-chat.empty.css +12 -0
- package/patterns/adia-chat/css/adia-chat.layout.css +60 -0
- package/patterns/adia-chat/css/adia-chat.markdown.css +74 -0
- package/patterns/adia-chat/css/adia-chat.messages.css +87 -0
- package/patterns/adia-chat/css/adia-chat.streaming.css +30 -0
- package/patterns/adia-chat/css/adia-chat.tokens.css +95 -0
- package/patterns/adia-chat/index.html +93 -0
- package/patterns/adia-editor/adia-editor.a2ui.json +58 -0
- package/patterns/adia-editor/adia-editor.css +6 -0
- package/patterns/adia-editor/adia-editor.js +56 -0
- package/patterns/adia-editor/adia-editor.yaml +36 -0
- package/patterns/adia-editor/css/adia-editor.layout.css +86 -0
- package/patterns/adia-editor/css/adia-editor.tokens.css +28 -0
- package/patterns/adia-editor/index.html +179 -0
- package/patterns/app-nav/app-nav.a2ui.json +89 -0
- package/patterns/app-nav/app-nav.css +92 -0
- package/patterns/app-nav/app-nav.js +99 -0
- package/patterns/app-nav/app-nav.yaml +54 -0
- package/patterns/app-nav-group/app-nav-group.a2ui.json +82 -0
- package/patterns/app-nav-group/app-nav-group.css +261 -0
- package/patterns/app-nav-group/app-nav-group.js +116 -0
- package/patterns/app-nav-group/app-nav-group.yaml +59 -0
- package/patterns/app-nav-item/app-nav-item.a2ui.json +83 -0
- package/patterns/app-nav-item/app-nav-item.css +156 -0
- package/patterns/app-nav-item/app-nav-item.js +42 -0
- package/patterns/app-nav-item/app-nav-item.yaml +62 -0
- package/patterns/app-shell/app-shell.a2ui.json +114 -0
- package/patterns/app-shell/app-shell.css +14 -0
- package/patterns/app-shell/app-shell.js +251 -0
- package/patterns/app-shell/app-shell.yaml +66 -0
- package/patterns/app-shell/css/app-shell.collapsed.css +86 -0
- package/patterns/app-shell/css/app-shell.helpers.css +42 -0
- package/patterns/app-shell/css/app-shell.main.css +58 -0
- package/patterns/app-shell/css/app-shell.shell.css +44 -0
- package/patterns/app-shell/css/app-shell.sidebar.css +116 -0
- package/patterns/app-shell/css/app-shell.templates.css +214 -0
- package/patterns/app-shell/css/app-shell.tokens.css +116 -0
- package/patterns/app-shell/index.html +112 -0
- package/patterns/gen-ui/gen-ui.a2ui.json +72 -0
- package/patterns/gen-ui/gen-ui.css +83 -0
- package/patterns/gen-ui/gen-ui.js +136 -0
- package/patterns/gen-ui/gen-ui.yaml +43 -0
- package/patterns/index.js +10 -0
- package/patterns/section-nav/section-nav.a2ui.json +91 -0
- package/patterns/section-nav/section-nav.css +59 -0
- package/patterns/section-nav/section-nav.js +42 -0
- package/patterns/section-nav/section-nav.yaml +58 -0
- package/patterns/section-nav-group/section-nav-group.a2ui.json +95 -0
- package/patterns/section-nav-group/section-nav-group.css +74 -0
- package/patterns/section-nav-group/section-nav-group.js +84 -0
- package/patterns/section-nav-group/section-nav-group.yaml +66 -0
- package/patterns/section-nav-item/section-nav-item.a2ui.json +97 -0
- package/patterns/section-nav-item/section-nav-item.css +96 -0
- package/patterns/section-nav-item/section-nav-item.js +66 -0
- package/patterns/section-nav-item/section-nav-item.yaml +70 -0
- package/styles/colors/index.css +6 -0
- package/styles/colors/parameters.css +52 -0
- package/styles/colors/primitives-accent.css +89 -0
- package/styles/colors/primitives-brand.css +89 -0
- package/styles/colors/primitives-danger.css +89 -0
- package/styles/colors/primitives-info.css +89 -0
- package/styles/colors/primitives-neutral.css +91 -0
- package/styles/colors/primitives-shared.css +57 -0
- package/styles/colors/primitives-success.css +89 -0
- package/styles/colors/primitives-warning.css +89 -0
- package/styles/colors/primitives.css +17 -0
- package/styles/colors/scrims.css +182 -0
- package/styles/colors/semantics.css +595 -0
- package/styles/colors/surfaces.css +43 -0
- package/styles/fonts.css +99 -0
- package/styles/layouts/admin.css +7 -0
- package/styles/prose.css +186 -0
- package/styles/styles.css +193 -0
- package/styles/themes.css +155 -0
- package/styles/tokens.css +304 -0
- package/styles/typography.css +853 -0
- package/traits/active-state.js +24 -0
- package/traits/anchor-positioning.js +66 -0
- package/traits/attention-pulse.js +30 -0
- package/traits/confetti-burst.js +65 -0
- package/traits/confetti.js +57 -0
- package/traits/count-up.js +42 -0
- package/traits/define.js +76 -0
- package/traits/dirty-state.js +38 -0
- package/traits/drag-ghost.js +38 -0
- package/traits/draggable.js +73 -0
- package/traits/fade-presence.js +52 -0
- package/traits/focus-trap.js +63 -0
- package/traits/focusable.js +38 -0
- package/traits/glow-focus.js +33 -0
- package/traits/gradient-shift.js +32 -0
- package/traits/haptic-feedback.js +28 -0
- package/traits/hotkey.js +62 -0
- package/traits/hoverable.js +26 -0
- package/traits/index.js +55 -0
- package/traits/inertia-drag.js +133 -0
- package/traits/intersection-observer.js +33 -0
- package/traits/keyboard-nav.js +36 -0
- package/traits/magnetic-hover.js +37 -0
- package/traits/noise-texture.js +30 -0
- package/traits/parallax.js +42 -0
- package/traits/portal.js +27 -0
- package/traits/pressable.js +75 -0
- package/traits/resizable.js +100 -0
- package/traits/resize-observer.js +31 -0
- package/traits/ripple.js +53 -0
- package/traits/roving-tabindex.js +67 -0
- package/traits/scale-press.js +43 -0
- package/traits/scroll-lock.js +27 -0
- package/traits/shimmer-loading.js +44 -0
- package/traits/snap-to-grid.js +28 -0
- package/traits/sound-feedback.js +30 -0
- package/traits/spring-animate.js +56 -0
- package/traits/tilt-hover.js +37 -0
- package/traits/tossable.js +178 -0
- package/traits/typeahead.js +63 -0
- package/traits/typewriter.js +35 -0
- package/traits/validation.js +118 -0
|
@@ -0,0 +1,477 @@
|
|
|
1
|
+
# Generated by scripts/migrate-yamls-to-v1.mjs — migrated to v1 contract.
|
|
2
|
+
# Edit this file; run `npm run build:components` to regenerate a2ui.json.
|
|
3
|
+
$schema: ../../../../scripts/schemas/component.yaml.schema.json
|
|
4
|
+
name: AdiaImage
|
|
5
|
+
tag: image-ui
|
|
6
|
+
component: Image
|
|
7
|
+
category: display
|
|
8
|
+
version: 1
|
|
9
|
+
description: Lazy-loading image with skeleton fallback. Shows skeleton while loading, falls back on error.
|
|
10
|
+
props:
|
|
11
|
+
alt:
|
|
12
|
+
description: Alt text for the image.
|
|
13
|
+
type: string
|
|
14
|
+
default: ""
|
|
15
|
+
aspect:
|
|
16
|
+
description: Aspect ratio preset — sets the intrinsic aspect-ratio CSS property.
|
|
17
|
+
type: string
|
|
18
|
+
default: ""
|
|
19
|
+
enum:
|
|
20
|
+
- ""
|
|
21
|
+
- 1/1
|
|
22
|
+
- 3/2
|
|
23
|
+
- 4/3
|
|
24
|
+
- 16/9
|
|
25
|
+
- 21/9
|
|
26
|
+
- 2/3
|
|
27
|
+
- 3/4
|
|
28
|
+
- 9/16
|
|
29
|
+
fallback:
|
|
30
|
+
description: Fallback image URL on error
|
|
31
|
+
type: string
|
|
32
|
+
default: ""
|
|
33
|
+
fit:
|
|
34
|
+
description: Object-fit mode
|
|
35
|
+
type: string
|
|
36
|
+
default: cover
|
|
37
|
+
enum:
|
|
38
|
+
- cover
|
|
39
|
+
- contain
|
|
40
|
+
- fill
|
|
41
|
+
- none
|
|
42
|
+
height:
|
|
43
|
+
description: CSS height
|
|
44
|
+
type: string
|
|
45
|
+
default: ""
|
|
46
|
+
lazy:
|
|
47
|
+
description: Enables native lazy loading.
|
|
48
|
+
type: boolean
|
|
49
|
+
default: false
|
|
50
|
+
radius:
|
|
51
|
+
description: Border radius token
|
|
52
|
+
type: string
|
|
53
|
+
default: ""
|
|
54
|
+
enum:
|
|
55
|
+
- sm
|
|
56
|
+
- md
|
|
57
|
+
- lg
|
|
58
|
+
- full
|
|
59
|
+
src:
|
|
60
|
+
description: Image source URL.
|
|
61
|
+
type: string
|
|
62
|
+
default: ""
|
|
63
|
+
width:
|
|
64
|
+
description: CSS width
|
|
65
|
+
type: string
|
|
66
|
+
default: ""
|
|
67
|
+
events: {}
|
|
68
|
+
slots:
|
|
69
|
+
img:
|
|
70
|
+
description: Stamped <img> element
|
|
71
|
+
states:
|
|
72
|
+
- name: idle
|
|
73
|
+
description: Default, ready for interaction.
|
|
74
|
+
traits: []
|
|
75
|
+
tokens: {}
|
|
76
|
+
a2ui:
|
|
77
|
+
rules: []
|
|
78
|
+
anti_patterns: []
|
|
79
|
+
examples:
|
|
80
|
+
- name: bleed-design-settings
|
|
81
|
+
description: Design system settings page with brand header, photo upload section, bleed/margin
|
|
82
|
+
controls, and approval workflow.
|
|
83
|
+
a2ui: >-
|
|
84
|
+
[
|
|
85
|
+
{
|
|
86
|
+
"id": "root",
|
|
87
|
+
"component": "Card",
|
|
88
|
+
"children": [
|
|
89
|
+
"hdr",
|
|
90
|
+
"photo-sec",
|
|
91
|
+
"settings-sec",
|
|
92
|
+
"ftr"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "hdr",
|
|
97
|
+
"component": "Header",
|
|
98
|
+
"children": [
|
|
99
|
+
"hdr-title",
|
|
100
|
+
"hdr-desc"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "hdr-title",
|
|
105
|
+
"component": "Text",
|
|
106
|
+
"slot": "heading",
|
|
107
|
+
"textContent": "Bleed Design Settings",
|
|
108
|
+
"variant": "section"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "hdr-desc",
|
|
112
|
+
"component": "Text",
|
|
113
|
+
"slot": "description",
|
|
114
|
+
"textContent": "Configure bleed margins, upload artwork, and preview before approval.",
|
|
115
|
+
"variant": "body"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "photo-sec",
|
|
119
|
+
"component": "Section",
|
|
120
|
+
"children": [
|
|
121
|
+
"photo-col"
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"id": "photo-col",
|
|
126
|
+
"component": "Column",
|
|
127
|
+
"children": [
|
|
128
|
+
"photo-label",
|
|
129
|
+
"photo-img",
|
|
130
|
+
"photo-btn"
|
|
131
|
+
],
|
|
132
|
+
"gap": "3"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"id": "photo-label",
|
|
136
|
+
"component": "Text",
|
|
137
|
+
"textContent": "Artwork Upload",
|
|
138
|
+
"variant": "label"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"id": "photo-img",
|
|
142
|
+
"component": "Image",
|
|
143
|
+
"src": "https://picsum.photos/400/200",
|
|
144
|
+
"aspect": "2/1"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "photo-btn",
|
|
148
|
+
"component": "Button",
|
|
149
|
+
"text": "Upload Photo",
|
|
150
|
+
"variant": "secondary"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"id": "settings-sec",
|
|
154
|
+
"component": "Section",
|
|
155
|
+
"children": [
|
|
156
|
+
"settings-col"
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"id": "settings-col",
|
|
161
|
+
"component": "Column",
|
|
162
|
+
"children": [
|
|
163
|
+
"bleed-mode",
|
|
164
|
+
"bleed-margin",
|
|
165
|
+
"bleed-unit",
|
|
166
|
+
"approved"
|
|
167
|
+
],
|
|
168
|
+
"gap": "4"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "bleed-mode",
|
|
172
|
+
"component": "Select",
|
|
173
|
+
"label": "Bleed Mode",
|
|
174
|
+
"name": "bleed-mode",
|
|
175
|
+
"placeholder": "Select mode..."
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"id": "bleed-margin",
|
|
179
|
+
"component": "Input",
|
|
180
|
+
"label": "Bleed Margin",
|
|
181
|
+
"name": "bleed-margin",
|
|
182
|
+
"type": "number",
|
|
183
|
+
"placeholder": "e.g. 3"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"id": "bleed-unit",
|
|
187
|
+
"component": "Select",
|
|
188
|
+
"label": "Unit",
|
|
189
|
+
"name": "bleed-unit",
|
|
190
|
+
"placeholder": "mm"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"id": "approved",
|
|
194
|
+
"component": "CheckBox",
|
|
195
|
+
"label": "Approved for production",
|
|
196
|
+
"name": "approved"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": "ftr",
|
|
200
|
+
"component": "Footer",
|
|
201
|
+
"children": [
|
|
202
|
+
"preview-btn",
|
|
203
|
+
"apply-btn"
|
|
204
|
+
]
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"id": "preview-btn",
|
|
208
|
+
"component": "Button",
|
|
209
|
+
"text": "Preview",
|
|
210
|
+
"variant": "secondary"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"id": "apply-btn",
|
|
214
|
+
"component": "Button",
|
|
215
|
+
"text": "Apply",
|
|
216
|
+
"variant": "primary"
|
|
217
|
+
}
|
|
218
|
+
]
|
|
219
|
+
- name: file-upload-gallery
|
|
220
|
+
description: Image upload card with drag-and-drop zone and a 3-column preview grid of placeholder
|
|
221
|
+
image cards. Footer holds cancel and upload action buttons.
|
|
222
|
+
a2ui: >-
|
|
223
|
+
[
|
|
224
|
+
{
|
|
225
|
+
"id": "root",
|
|
226
|
+
"component": "Card",
|
|
227
|
+
"children": [
|
|
228
|
+
"hdr",
|
|
229
|
+
"sec",
|
|
230
|
+
"ftr"
|
|
231
|
+
]
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"id": "hdr",
|
|
235
|
+
"component": "Header",
|
|
236
|
+
"children": [
|
|
237
|
+
"title"
|
|
238
|
+
]
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "title",
|
|
242
|
+
"component": "Text",
|
|
243
|
+
"slot": "heading",
|
|
244
|
+
"variant": "section",
|
|
245
|
+
"textContent": "Upload Images"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": "sec",
|
|
249
|
+
"component": "Section",
|
|
250
|
+
"children": [
|
|
251
|
+
"col"
|
|
252
|
+
]
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "col",
|
|
256
|
+
"component": "Column",
|
|
257
|
+
"gap": "4",
|
|
258
|
+
"children": [
|
|
259
|
+
"uploader",
|
|
260
|
+
"preview-grid"
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"id": "uploader",
|
|
265
|
+
"component": "Upload",
|
|
266
|
+
"accept": "image/*",
|
|
267
|
+
"multiple": true,
|
|
268
|
+
"hint": "Drag images here or click to browse"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"id": "preview-grid",
|
|
272
|
+
"component": "Grid",
|
|
273
|
+
"columns": "3",
|
|
274
|
+
"gap": "3",
|
|
275
|
+
"children": [
|
|
276
|
+
"preview-1",
|
|
277
|
+
"preview-2",
|
|
278
|
+
"preview-3"
|
|
279
|
+
]
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"id": "preview-1",
|
|
283
|
+
"component": "Card",
|
|
284
|
+
"variant": "outlined",
|
|
285
|
+
"children": [
|
|
286
|
+
"img-1"
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"id": "img-1",
|
|
291
|
+
"component": "Image",
|
|
292
|
+
"src": "",
|
|
293
|
+
"alt": "Preview 1",
|
|
294
|
+
"height": "120px",
|
|
295
|
+
"fit": "cover",
|
|
296
|
+
"radius": "sm"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"id": "preview-2",
|
|
300
|
+
"component": "Card",
|
|
301
|
+
"variant": "outlined",
|
|
302
|
+
"children": [
|
|
303
|
+
"img-2"
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "img-2",
|
|
308
|
+
"component": "Image",
|
|
309
|
+
"src": "",
|
|
310
|
+
"alt": "Preview 2",
|
|
311
|
+
"height": "120px",
|
|
312
|
+
"fit": "cover",
|
|
313
|
+
"radius": "sm"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"id": "preview-3",
|
|
317
|
+
"component": "Card",
|
|
318
|
+
"variant": "outlined",
|
|
319
|
+
"children": [
|
|
320
|
+
"img-3"
|
|
321
|
+
]
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"id": "img-3",
|
|
325
|
+
"component": "Image",
|
|
326
|
+
"src": "",
|
|
327
|
+
"alt": "Preview 3",
|
|
328
|
+
"height": "120px",
|
|
329
|
+
"fit": "cover",
|
|
330
|
+
"radius": "sm"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"id": "ftr",
|
|
334
|
+
"component": "Footer",
|
|
335
|
+
"children": [
|
|
336
|
+
"ftr-actions"
|
|
337
|
+
]
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": "ftr-actions",
|
|
341
|
+
"component": "Row",
|
|
342
|
+
"gap": "2",
|
|
343
|
+
"children": [
|
|
344
|
+
"cancel-btn",
|
|
345
|
+
"upload-btn"
|
|
346
|
+
]
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"id": "cancel-btn",
|
|
350
|
+
"component": "Button",
|
|
351
|
+
"text": "Cancel",
|
|
352
|
+
"variant": "ghost"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"id": "upload-btn",
|
|
356
|
+
"component": "Button",
|
|
357
|
+
"text": "Upload",
|
|
358
|
+
"variant": "primary"
|
|
359
|
+
}
|
|
360
|
+
]
|
|
361
|
+
keywords:
|
|
362
|
+
- image
|
|
363
|
+
- ecommerce
|
|
364
|
+
- store
|
|
365
|
+
- marketplace
|
|
366
|
+
- catalog
|
|
367
|
+
- grid
|
|
368
|
+
- upload
|
|
369
|
+
- attach
|
|
370
|
+
- dropzone
|
|
371
|
+
- photos
|
|
372
|
+
- pictures
|
|
373
|
+
- gallery
|
|
374
|
+
- portfolio
|
|
375
|
+
- lightbox
|
|
376
|
+
- media
|
|
377
|
+
- instagram
|
|
378
|
+
- assets
|
|
379
|
+
synonyms:
|
|
380
|
+
assets:
|
|
381
|
+
- data
|
|
382
|
+
- table
|
|
383
|
+
- file
|
|
384
|
+
- image
|
|
385
|
+
- gallery
|
|
386
|
+
attach:
|
|
387
|
+
- file
|
|
388
|
+
- upload
|
|
389
|
+
- image
|
|
390
|
+
catalog:
|
|
391
|
+
- product
|
|
392
|
+
- card
|
|
393
|
+
- image
|
|
394
|
+
- grid
|
|
395
|
+
- inventory
|
|
396
|
+
dropzone:
|
|
397
|
+
- file
|
|
398
|
+
- upload
|
|
399
|
+
- image
|
|
400
|
+
- import
|
|
401
|
+
ecommerce:
|
|
402
|
+
- product
|
|
403
|
+
- pricing
|
|
404
|
+
- inventory
|
|
405
|
+
- card
|
|
406
|
+
- image
|
|
407
|
+
- grid
|
|
408
|
+
gallery:
|
|
409
|
+
- image
|
|
410
|
+
- gallery
|
|
411
|
+
- card
|
|
412
|
+
- grid
|
|
413
|
+
grid:
|
|
414
|
+
- table
|
|
415
|
+
- data
|
|
416
|
+
- card
|
|
417
|
+
- image
|
|
418
|
+
- feature
|
|
419
|
+
- grid
|
|
420
|
+
instagram:
|
|
421
|
+
- social
|
|
422
|
+
- post
|
|
423
|
+
- image
|
|
424
|
+
- gallery
|
|
425
|
+
lightbox:
|
|
426
|
+
- image
|
|
427
|
+
- gallery
|
|
428
|
+
- caption
|
|
429
|
+
marketplace:
|
|
430
|
+
- product
|
|
431
|
+
- pricing
|
|
432
|
+
- card
|
|
433
|
+
- image
|
|
434
|
+
- grid
|
|
435
|
+
- search
|
|
436
|
+
- filter
|
|
437
|
+
media:
|
|
438
|
+
- image
|
|
439
|
+
- video
|
|
440
|
+
- music
|
|
441
|
+
- player
|
|
442
|
+
- gallery
|
|
443
|
+
- embed
|
|
444
|
+
photos:
|
|
445
|
+
- image
|
|
446
|
+
- gallery
|
|
447
|
+
- card
|
|
448
|
+
- grid
|
|
449
|
+
pictures:
|
|
450
|
+
- image
|
|
451
|
+
- gallery
|
|
452
|
+
- card
|
|
453
|
+
- grid
|
|
454
|
+
portfolio:
|
|
455
|
+
- image
|
|
456
|
+
- gallery
|
|
457
|
+
- card
|
|
458
|
+
- grid
|
|
459
|
+
- feature
|
|
460
|
+
store:
|
|
461
|
+
- product
|
|
462
|
+
- pricing
|
|
463
|
+
- inventory
|
|
464
|
+
- card
|
|
465
|
+
- image
|
|
466
|
+
upload:
|
|
467
|
+
- file
|
|
468
|
+
- upload
|
|
469
|
+
- image
|
|
470
|
+
- import
|
|
471
|
+
- data
|
|
472
|
+
related:
|
|
473
|
+
- button
|
|
474
|
+
- select
|
|
475
|
+
- input
|
|
476
|
+
- check-box
|
|
477
|
+
- upload
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Component barrel — imports all components and re-exports.
|
|
3
|
+
* Import this single file to register all custom elements.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export { AdiaIcon } from './icon/icon.js';
|
|
7
|
+
export { AdiaButton } from './button/button.js';
|
|
8
|
+
export { AdiaInput } from './input/input.js';
|
|
9
|
+
export { AdiaTextarea } from './textarea/textarea.js';
|
|
10
|
+
export { AdiaCheck } from './check/check.js';
|
|
11
|
+
export { AdiaRadio } from './radio/radio.js';
|
|
12
|
+
export { AdiaSwitch } from './switch/switch.js';
|
|
13
|
+
export { AdiaSlider } from './slider/slider.js';
|
|
14
|
+
export { AdiaSelect } from './select/select.js';
|
|
15
|
+
export { AdiaSegment } from './segment/segment.js';
|
|
16
|
+
export { AdiaSegmented } from './segmented/segmented.js';
|
|
17
|
+
export { AdiaRange } from './range/range.js';
|
|
18
|
+
export { AdiaTree, AdiaTreeItem } from './tree/tree.js';
|
|
19
|
+
export { AdiaPane } from './pane/pane.js';
|
|
20
|
+
export { AdiaChatInput } from './chat/chat-input.js';
|
|
21
|
+
export { AdiaChat } from './chat/chat.js';
|
|
22
|
+
export { AdiaDrawer } from './drawer/drawer.js';
|
|
23
|
+
export { AdiaModal } from './modal/modal.js';
|
|
24
|
+
export { AdiaToast } from './toast/toast.js';
|
|
25
|
+
export { AdiaTabs } from './tabs/tabs.js';
|
|
26
|
+
export { AdiaTab } from './tabs/tab.js';
|
|
27
|
+
export { AdiaTooltip } from './tooltip/tooltip.js';
|
|
28
|
+
export { AdiaBadge } from './badge/badge.js';
|
|
29
|
+
export { AdiaBreadcrumb } from './breadcrumb/breadcrumb.js';
|
|
30
|
+
export { AdiaCommand } from './command/command.js';
|
|
31
|
+
export { AdiaColorPicker } from './color-picker/color-picker.js';
|
|
32
|
+
export { AdiaNoodles } from './noodles/noodles.js';
|
|
33
|
+
export { AdiaTable } from './table/table.js';
|
|
34
|
+
export { AdiaTimeline, AdiaTimelineItem } from './timeline/timeline.js';
|
|
35
|
+
export { AdiaStepper, AdiaStepperItem } from './stepper/stepper.js';
|
|
36
|
+
export { AdiaSwiper } from './swiper/swiper.js';
|
|
37
|
+
export { AdiaUpload } from './upload/upload.js';
|
|
38
|
+
export { AdiaCard } from './card/card.js';
|
|
39
|
+
export { AdiaAvatar, AdiaAvatarGroup } from './avatar/avatar.js';
|
|
40
|
+
export { AdiaProgress } from './progress/progress.js';
|
|
41
|
+
export { AdiaSkeleton } from './skeleton/skeleton.js';
|
|
42
|
+
export { AdiaAlert } from './alert/alert.js';
|
|
43
|
+
export { AdiaKbd } from './kbd/kbd.js';
|
|
44
|
+
export { AdiaTag } from './tag/tag.js';
|
|
45
|
+
export { AdiaCol } from './col/col.js';
|
|
46
|
+
export { AdiaRow } from './row/row.js';
|
|
47
|
+
export { AdiaGrid } from './grid/grid.js';
|
|
48
|
+
export { AdiaStack } from './stack/stack.js';
|
|
49
|
+
export { AdiaChart } from './chart/chart.js';
|
|
50
|
+
export { AdiaPopover } from './popover/popover.js';
|
|
51
|
+
export { AdiaAccordion, AdiaAccordionItem } from './accordion/accordion.js';
|
|
52
|
+
export { AdiaDivider } from './divider/divider.js';
|
|
53
|
+
export { AdiaPagination } from './pagination/pagination.js';
|
|
54
|
+
export { AdiaCode } from './code/code.js';
|
|
55
|
+
export { AdiaList, AdiaListItem } from './list/list.js';
|
|
56
|
+
export { AdiaMenu, AdiaMenuItem, AdiaMenuDivider } from './menu/menu.js';
|
|
57
|
+
export { AdiaToolbar, AdiaToolbarGroup } from './toolbar/toolbar.js';
|
|
58
|
+
export { AdiaOtpInput } from './otp-input/otp-input.js';
|
|
59
|
+
export { AdiaImage } from './image/image.js';
|
|
60
|
+
export { AdiaSearch } from './search/search.js';
|
|
61
|
+
export { AdiaStat } from './stat/stat.js';
|
|
62
|
+
export { AdiaProgressRow } from './progress-row/progress-row.js';
|
|
63
|
+
export { AdiaActionList, AdiaActionItem } from './action-list/action-list.js';
|
|
64
|
+
export { AdiaEmptyState } from './empty-state/empty-state.js';
|
|
65
|
+
export { AdiaCalendarPicker } from './calendar-picker/calendar-picker.js';
|
|
66
|
+
export { AdiaEmbed } from './embed/embed.js';
|
|
67
|
+
export { AdiaBlock } from './block/block.js';
|
|
68
|
+
export { AdiaText } from './text/text.js';
|
|
69
|
+
export { AdiaToggleGroup, AdiaToggleOption } from './toggle-group/toggle-group.js';
|
|
70
|
+
export { AdiaRichText } from './richtext/richtext.js';
|
|
71
|
+
export { AdiaStream } from './stream/stream.js';
|
|
72
|
+
export { AdiaCanvas } from './canvas/canvas.js';
|
|
73
|
+
export { AdiaInspector } from './inspector/inspector.js';
|
|
74
|
+
export { AdiaPipelineStatus } from './pipeline-status/pipeline-status.js';
|
|
75
|
+
export { AdiaRating } from './rating/rating.js';
|
|
76
|
+
export { AdiaDescriptionList } from './description-list/description-list.js';
|
|
77
|
+
export { AdiaHeatmap } from './heatmap/heatmap.js';
|
|
78
|
+
|
|
79
|
+
// Agent-family: trailing artifacts and reasoning viewers for agent turns
|
|
80
|
+
export { AdiaAgentReasoning } from './agent-reasoning/agent-reasoning.js';
|
|
81
|
+
export { AdiaAgentTrace } from './agent-trace/agent-trace.js';
|
|
82
|
+
export { AdiaAgentFeedbackBar } from './agent-feedback-bar/agent-feedback-bar.js';
|
|
83
|
+
export { AdiaAgentSuggestions } from './agent-suggestions/agent-suggestions.js';
|
|
84
|
+
export { AdiaAgentQuestions } from './agent-questions/agent-questions.js';
|
|
85
|
+
export { AdiaAgentArtifact } from './agent-artifact/agent-artifact.js';
|