@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,157 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* <avatar-ui src="photo.jpg" name="Alice Smith" size="md" shape="circle"></avatar-ui>
|
|
3
|
+
*
|
|
4
|
+
* Fallback chain: image → initials → empty.
|
|
5
|
+
* If src fails to load, falls back to initials derived from name.
|
|
6
|
+
*
|
|
7
|
+
* <avatar-group-ui max="4" size="md">
|
|
8
|
+
* <avatar-ui name="Alice"></avatar-ui>
|
|
9
|
+
* <avatar-ui name="Bob"></avatar-ui>
|
|
10
|
+
* ...
|
|
11
|
+
* </avatar-group-ui>
|
|
12
|
+
*
|
|
13
|
+
* Overlapping avatar stack with +N overflow counter.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
import { AdiaElement } from '@core/element.js';
|
|
17
|
+
|
|
18
|
+
// ── Avatar ──────────────────────────────────────────────────
|
|
19
|
+
|
|
20
|
+
class AdiaAvatar extends AdiaElement {
|
|
21
|
+
static properties = {
|
|
22
|
+
src: { type: String, default: '', reflect: true },
|
|
23
|
+
text: { type: String, default: '', reflect: true },
|
|
24
|
+
name: { type: String, default: '', reflect: true }, // backcompat alias for text
|
|
25
|
+
icon: { type: String, default: '', reflect: true },
|
|
26
|
+
size: { type: String, default: 'md', reflect: true },
|
|
27
|
+
shape: { type: String, default: 'circle', reflect: true },
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
/** Display string — `text` takes priority, `name` is backcompat alias */
|
|
31
|
+
get displayName() { return this.text || this.name; }
|
|
32
|
+
|
|
33
|
+
static template = () => null;
|
|
34
|
+
|
|
35
|
+
#imgEl = null;
|
|
36
|
+
#initialsEl = null;
|
|
37
|
+
#iconEl = null;
|
|
38
|
+
|
|
39
|
+
connected() {
|
|
40
|
+
this.setAttribute('role', 'img');
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
render() {
|
|
44
|
+
if (!this.src && !this.displayName && !this.icon) return;
|
|
45
|
+
|
|
46
|
+
if (this.src) {
|
|
47
|
+
if (!this.#imgEl) {
|
|
48
|
+
this.#imgEl = document.createElement('img');
|
|
49
|
+
this.#imgEl.setAttribute('slot', 'img');
|
|
50
|
+
this.#imgEl.onerror = () => {
|
|
51
|
+
this.#imgEl.remove();
|
|
52
|
+
this.#imgEl = null;
|
|
53
|
+
this.#showInitials();
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
this.#imgEl.src = this.src;
|
|
57
|
+
this.#imgEl.alt = this.name || '';
|
|
58
|
+
if (!this.#imgEl.parentElement) this.appendChild(this.#imgEl);
|
|
59
|
+
|
|
60
|
+
// Remove initials when image is showing
|
|
61
|
+
if (this.#initialsEl) {
|
|
62
|
+
this.#initialsEl.remove();
|
|
63
|
+
this.#initialsEl = null;
|
|
64
|
+
}
|
|
65
|
+
} else if (this.icon) {
|
|
66
|
+
// Icon avatar (system events, non-person rep)
|
|
67
|
+
if (this.#imgEl) { this.#imgEl.remove(); this.#imgEl = null; }
|
|
68
|
+
if (this.#initialsEl) { this.#initialsEl.remove(); this.#initialsEl = null; }
|
|
69
|
+
if (!this.#iconEl) {
|
|
70
|
+
this.#iconEl = document.createElement('icon-ui');
|
|
71
|
+
this.#iconEl.setAttribute('slot', 'icon');
|
|
72
|
+
this.appendChild(this.#iconEl);
|
|
73
|
+
}
|
|
74
|
+
this.#iconEl.setAttribute('name', this.icon);
|
|
75
|
+
} else {
|
|
76
|
+
// No src / no icon — show initials
|
|
77
|
+
if (this.#imgEl) { this.#imgEl.remove(); this.#imgEl = null; }
|
|
78
|
+
if (this.#iconEl) { this.#iconEl.remove(); this.#iconEl = null; }
|
|
79
|
+
this.#showInitials();
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
this.setAttribute('aria-label', this.displayName || this.icon || '');
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#showInitials() {
|
|
86
|
+
if (!this.displayName) return;
|
|
87
|
+
const initials = this.displayName
|
|
88
|
+
.split(/\s+/)
|
|
89
|
+
.map(w => w[0])
|
|
90
|
+
.join('')
|
|
91
|
+
.slice(0, 2)
|
|
92
|
+
.toUpperCase();
|
|
93
|
+
|
|
94
|
+
if (!this.#initialsEl) {
|
|
95
|
+
this.#initialsEl = document.createElement('span');
|
|
96
|
+
this.#initialsEl.setAttribute('slot', 'initials');
|
|
97
|
+
this.appendChild(this.#initialsEl);
|
|
98
|
+
}
|
|
99
|
+
this.#initialsEl.textContent = initials;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
customElements.define('avatar-ui', AdiaAvatar);
|
|
104
|
+
|
|
105
|
+
// ── Avatar Group ────────────────────────────────────────────
|
|
106
|
+
|
|
107
|
+
class AdiaAvatarGroup extends AdiaElement {
|
|
108
|
+
static properties = {
|
|
109
|
+
max: { type: Number, default: 5, reflect: true },
|
|
110
|
+
size: { type: String, default: '', reflect: true },
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
static template = () => null;
|
|
114
|
+
|
|
115
|
+
connected() {
|
|
116
|
+
this.setAttribute('role', 'group');
|
|
117
|
+
if (!this.hasAttribute('aria-label')) {
|
|
118
|
+
this.setAttribute('aria-label', 'Avatar group');
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
render() {
|
|
123
|
+
const avatars = [...this.querySelectorAll('avatar-ui')];
|
|
124
|
+
const max = this.max;
|
|
125
|
+
const overflow = avatars.length - max;
|
|
126
|
+
|
|
127
|
+
// Propagate size
|
|
128
|
+
if (this.size) {
|
|
129
|
+
for (const av of avatars) av.setAttribute('size', this.size);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// Show/hide based on max
|
|
133
|
+
avatars.forEach((av, i) => {
|
|
134
|
+
av.style.display = i < max ? '' : 'none';
|
|
135
|
+
av.style.zIndex = String(avatars.length - i);
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
// Overflow counter
|
|
139
|
+
let counter = this.querySelector('[slot="overflow"]');
|
|
140
|
+
if (overflow > 0) {
|
|
141
|
+
if (!counter) {
|
|
142
|
+
counter = document.createElement('span');
|
|
143
|
+
counter.setAttribute('slot', 'overflow');
|
|
144
|
+
this.appendChild(counter);
|
|
145
|
+
}
|
|
146
|
+
counter.textContent = `+${overflow}`;
|
|
147
|
+
counter.setAttribute('aria-label', `${overflow} more`);
|
|
148
|
+
counter.style.zIndex = '0';
|
|
149
|
+
} else if (counter) {
|
|
150
|
+
counter.remove();
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
customElements.define('avatar-group-ui', AdiaAvatarGroup);
|
|
156
|
+
|
|
157
|
+
export { AdiaAvatar, AdiaAvatarGroup };
|
|
@@ -0,0 +1,559 @@
|
|
|
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: AdiaAvatar
|
|
5
|
+
tag: avatar-ui
|
|
6
|
+
component: Avatar
|
|
7
|
+
category: display
|
|
8
|
+
version: 1
|
|
9
|
+
description: Avatar with image → initials → empty fallback chain.
|
|
10
|
+
props:
|
|
11
|
+
name:
|
|
12
|
+
description: User name for initials (first letter of each word, max 2).
|
|
13
|
+
type: string
|
|
14
|
+
default: ""
|
|
15
|
+
initials:
|
|
16
|
+
description: Explicit initials override. When set, takes precedence over `name`.
|
|
17
|
+
type: string
|
|
18
|
+
default: ""
|
|
19
|
+
icon:
|
|
20
|
+
description: Phosphor icon name shown instead of initials when `src`/`name` are empty.
|
|
21
|
+
type: string
|
|
22
|
+
default: ""
|
|
23
|
+
shape:
|
|
24
|
+
description: Avatar shape
|
|
25
|
+
type: string
|
|
26
|
+
default: circle
|
|
27
|
+
enum:
|
|
28
|
+
- circle
|
|
29
|
+
- square
|
|
30
|
+
variant:
|
|
31
|
+
description: Color/emphasis variant for the placeholder background + initials foreground.
|
|
32
|
+
type: string
|
|
33
|
+
default: default
|
|
34
|
+
size:
|
|
35
|
+
description: >-
|
|
36
|
+
Avatar size. Canonical scale (xs/sm/md/lg/xl); long-form aliases
|
|
37
|
+
(small/medium/large/xlarge) accepted for back-compat.
|
|
38
|
+
type: string
|
|
39
|
+
default: md
|
|
40
|
+
enum:
|
|
41
|
+
- xs
|
|
42
|
+
- sm
|
|
43
|
+
- md
|
|
44
|
+
- lg
|
|
45
|
+
- xl
|
|
46
|
+
- small
|
|
47
|
+
- medium
|
|
48
|
+
- large
|
|
49
|
+
- xlarge
|
|
50
|
+
src:
|
|
51
|
+
description: Image source URL. Falls back to initials on error.
|
|
52
|
+
type: string
|
|
53
|
+
default: ""
|
|
54
|
+
text:
|
|
55
|
+
description: Display name (for initials)
|
|
56
|
+
type: string
|
|
57
|
+
default: ""
|
|
58
|
+
events: {}
|
|
59
|
+
slots:
|
|
60
|
+
icon:
|
|
61
|
+
description: Phosphor icon rendered inside the avatar circle (system-event avatars)
|
|
62
|
+
img:
|
|
63
|
+
description: Avatar image element
|
|
64
|
+
initials:
|
|
65
|
+
description: Initials text span
|
|
66
|
+
states:
|
|
67
|
+
- name: idle
|
|
68
|
+
description: Default, ready for interaction.
|
|
69
|
+
traits: []
|
|
70
|
+
tokens: {}
|
|
71
|
+
a2ui:
|
|
72
|
+
rules: []
|
|
73
|
+
anti_patterns: []
|
|
74
|
+
examples:
|
|
75
|
+
- name: chat-interface
|
|
76
|
+
description: Chat interface with message bubbles containing avatar and text pairs, plus an input footer.
|
|
77
|
+
a2ui: >-
|
|
78
|
+
[
|
|
79
|
+
{
|
|
80
|
+
"id": "root",
|
|
81
|
+
"component": "Card",
|
|
82
|
+
"children": [
|
|
83
|
+
"hdr",
|
|
84
|
+
"sec",
|
|
85
|
+
"ftr"
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"id": "hdr",
|
|
90
|
+
"component": "Header",
|
|
91
|
+
"children": [
|
|
92
|
+
"title"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "title",
|
|
97
|
+
"component": "Text",
|
|
98
|
+
"slot": "heading",
|
|
99
|
+
"textContent": "Chat"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "sec",
|
|
103
|
+
"component": "Section",
|
|
104
|
+
"children": [
|
|
105
|
+
"messages"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"id": "messages",
|
|
110
|
+
"component": "Column",
|
|
111
|
+
"gap": "3",
|
|
112
|
+
"children": [
|
|
113
|
+
"msg1",
|
|
114
|
+
"msg2",
|
|
115
|
+
"msg3",
|
|
116
|
+
"msg4"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "msg1",
|
|
121
|
+
"component": "Row",
|
|
122
|
+
"gap": "2",
|
|
123
|
+
"children": [
|
|
124
|
+
"a1",
|
|
125
|
+
"t1"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "a1",
|
|
130
|
+
"component": "Avatar",
|
|
131
|
+
"name": "User",
|
|
132
|
+
"size": "sm"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"id": "t1",
|
|
136
|
+
"component": "Text",
|
|
137
|
+
"variant": "body",
|
|
138
|
+
"textContent": "Hello! Can you help me with something?"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"id": "msg2",
|
|
142
|
+
"component": "Row",
|
|
143
|
+
"gap": "2",
|
|
144
|
+
"children": [
|
|
145
|
+
"a2",
|
|
146
|
+
"t2"
|
|
147
|
+
]
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"id": "a2",
|
|
151
|
+
"component": "Avatar",
|
|
152
|
+
"name": "Assistant",
|
|
153
|
+
"size": "sm"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "t2",
|
|
157
|
+
"component": "Text",
|
|
158
|
+
"variant": "body",
|
|
159
|
+
"textContent": "Of course! I'd be happy to help. What do you need?"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"id": "msg3",
|
|
163
|
+
"component": "Row",
|
|
164
|
+
"gap": "2",
|
|
165
|
+
"children": [
|
|
166
|
+
"a3",
|
|
167
|
+
"t3"
|
|
168
|
+
]
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "a3",
|
|
172
|
+
"component": "Avatar",
|
|
173
|
+
"name": "User",
|
|
174
|
+
"size": "sm"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"id": "t3",
|
|
178
|
+
"component": "Text",
|
|
179
|
+
"variant": "body",
|
|
180
|
+
"textContent": "I need to build a dashboard layout."
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": "msg4",
|
|
184
|
+
"component": "Row",
|
|
185
|
+
"gap": "2",
|
|
186
|
+
"children": [
|
|
187
|
+
"a4",
|
|
188
|
+
"t4"
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": "a4",
|
|
193
|
+
"component": "Avatar",
|
|
194
|
+
"name": "Assistant",
|
|
195
|
+
"size": "sm"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"id": "t4",
|
|
199
|
+
"component": "Text",
|
|
200
|
+
"variant": "body",
|
|
201
|
+
"textContent": "Great choice! Let me suggest some patterns for that."
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"id": "ftr",
|
|
205
|
+
"component": "Footer",
|
|
206
|
+
"children": [
|
|
207
|
+
"input-row"
|
|
208
|
+
]
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"id": "input-row",
|
|
212
|
+
"component": "Row",
|
|
213
|
+
"gap": "2",
|
|
214
|
+
"children": [
|
|
215
|
+
"chat-input",
|
|
216
|
+
"send-btn"
|
|
217
|
+
]
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"id": "chat-input",
|
|
221
|
+
"component": "Input",
|
|
222
|
+
"placeholder": "Type a message..."
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"id": "send-btn",
|
|
226
|
+
"component": "Button",
|
|
227
|
+
"text": "Send",
|
|
228
|
+
"icon": "send",
|
|
229
|
+
"variant": "primary"
|
|
230
|
+
}
|
|
231
|
+
]
|
|
232
|
+
- name: email-inbox
|
|
233
|
+
description: Email inbox list with selectable rows showing checkbox, sender avatar, subject, preview
|
|
234
|
+
text, and time badge.
|
|
235
|
+
a2ui: >-
|
|
236
|
+
[
|
|
237
|
+
{
|
|
238
|
+
"id": "root",
|
|
239
|
+
"component": "Card",
|
|
240
|
+
"children": [
|
|
241
|
+
"sec"
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "sec",
|
|
246
|
+
"component": "Section",
|
|
247
|
+
"children": [
|
|
248
|
+
"list"
|
|
249
|
+
]
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "list",
|
|
253
|
+
"component": "Column",
|
|
254
|
+
"gap": "1",
|
|
255
|
+
"children": [
|
|
256
|
+
"m1",
|
|
257
|
+
"m2",
|
|
258
|
+
"m3",
|
|
259
|
+
"m4"
|
|
260
|
+
]
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"id": "m1",
|
|
264
|
+
"component": "Row",
|
|
265
|
+
"gap": "3",
|
|
266
|
+
"align": "center",
|
|
267
|
+
"children": [
|
|
268
|
+
"cb1",
|
|
269
|
+
"av1",
|
|
270
|
+
"body1",
|
|
271
|
+
"meta1"
|
|
272
|
+
]
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"id": "cb1",
|
|
276
|
+
"component": "CheckBox"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"id": "av1",
|
|
280
|
+
"component": "Avatar",
|
|
281
|
+
"text": "Sarah Chen",
|
|
282
|
+
"size": "sm"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"id": "body1",
|
|
286
|
+
"component": "Column",
|
|
287
|
+
"gap": "0",
|
|
288
|
+
"grow": true,
|
|
289
|
+
"children": [
|
|
290
|
+
"subj1",
|
|
291
|
+
"prev1"
|
|
292
|
+
]
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"id": "subj1",
|
|
296
|
+
"component": "Text",
|
|
297
|
+
"weight": "semibold",
|
|
298
|
+
"textContent": "Q4 Planning Review"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"id": "prev1",
|
|
302
|
+
"component": "Text",
|
|
303
|
+
"color": "muted",
|
|
304
|
+
"textContent": "Here are the updated projections for next quarter..."
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "meta1",
|
|
308
|
+
"component": "Column",
|
|
309
|
+
"gap": "1",
|
|
310
|
+
"align": "end",
|
|
311
|
+
"children": [
|
|
312
|
+
"time1",
|
|
313
|
+
"b1"
|
|
314
|
+
]
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"id": "time1",
|
|
318
|
+
"component": "Text",
|
|
319
|
+
"color": "muted",
|
|
320
|
+
"textContent": "10:42 AM"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"id": "b1",
|
|
324
|
+
"component": "Badge",
|
|
325
|
+
"color": "primary",
|
|
326
|
+
"textContent": "New"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"id": "m2",
|
|
330
|
+
"component": "Row",
|
|
331
|
+
"gap": "3",
|
|
332
|
+
"align": "center",
|
|
333
|
+
"children": [
|
|
334
|
+
"cb2",
|
|
335
|
+
"av2",
|
|
336
|
+
"body2",
|
|
337
|
+
"time2"
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"id": "cb2",
|
|
342
|
+
"component": "CheckBox"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"id": "av2",
|
|
346
|
+
"component": "Avatar",
|
|
347
|
+
"text": "Alex Kim",
|
|
348
|
+
"size": "sm"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"id": "body2",
|
|
352
|
+
"component": "Column",
|
|
353
|
+
"gap": "0",
|
|
354
|
+
"grow": true,
|
|
355
|
+
"children": [
|
|
356
|
+
"subj2",
|
|
357
|
+
"prev2"
|
|
358
|
+
]
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"id": "subj2",
|
|
362
|
+
"component": "Text",
|
|
363
|
+
"weight": "semibold",
|
|
364
|
+
"textContent": "Design Review Feedback"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"id": "prev2",
|
|
368
|
+
"component": "Text",
|
|
369
|
+
"color": "muted",
|
|
370
|
+
"textContent": "Great work on the new components. A few notes..."
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"id": "time2",
|
|
374
|
+
"component": "Text",
|
|
375
|
+
"color": "muted",
|
|
376
|
+
"textContent": "9:15 AM"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "m3",
|
|
380
|
+
"component": "Row",
|
|
381
|
+
"gap": "3",
|
|
382
|
+
"align": "center",
|
|
383
|
+
"children": [
|
|
384
|
+
"cb3",
|
|
385
|
+
"av3",
|
|
386
|
+
"body3",
|
|
387
|
+
"time3"
|
|
388
|
+
]
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"id": "cb3",
|
|
392
|
+
"component": "CheckBox"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"id": "av3",
|
|
396
|
+
"component": "Avatar",
|
|
397
|
+
"text": "Tom Wright",
|
|
398
|
+
"size": "sm"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"id": "body3",
|
|
402
|
+
"component": "Column",
|
|
403
|
+
"gap": "0",
|
|
404
|
+
"grow": true,
|
|
405
|
+
"children": [
|
|
406
|
+
"subj3",
|
|
407
|
+
"prev3"
|
|
408
|
+
]
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"id": "subj3",
|
|
412
|
+
"component": "Text",
|
|
413
|
+
"textContent": "CI Pipeline Update"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"id": "prev3",
|
|
417
|
+
"component": "Text",
|
|
418
|
+
"color": "muted",
|
|
419
|
+
"textContent": "The new build system is deployed and running..."
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"id": "time3",
|
|
423
|
+
"component": "Text",
|
|
424
|
+
"color": "muted",
|
|
425
|
+
"textContent": "Yesterday"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"id": "m4",
|
|
429
|
+
"component": "Row",
|
|
430
|
+
"gap": "3",
|
|
431
|
+
"align": "center",
|
|
432
|
+
"children": [
|
|
433
|
+
"cb4",
|
|
434
|
+
"av4",
|
|
435
|
+
"body4",
|
|
436
|
+
"time4"
|
|
437
|
+
]
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"id": "cb4",
|
|
441
|
+
"component": "CheckBox"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"id": "av4",
|
|
445
|
+
"component": "Avatar",
|
|
446
|
+
"text": "Emma Davis",
|
|
447
|
+
"size": "sm"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"id": "body4",
|
|
451
|
+
"component": "Column",
|
|
452
|
+
"gap": "0",
|
|
453
|
+
"grow": true,
|
|
454
|
+
"children": [
|
|
455
|
+
"subj4",
|
|
456
|
+
"prev4"
|
|
457
|
+
]
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"id": "subj4",
|
|
461
|
+
"component": "Text",
|
|
462
|
+
"textContent": "Team Offsite Planning"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"id": "prev4",
|
|
466
|
+
"component": "Text",
|
|
467
|
+
"color": "muted",
|
|
468
|
+
"textContent": "Let's finalize the agenda for next month's offsite..."
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"id": "time4",
|
|
472
|
+
"component": "Text",
|
|
473
|
+
"color": "muted",
|
|
474
|
+
"textContent": "Monday"
|
|
475
|
+
}
|
|
476
|
+
]
|
|
477
|
+
keywords:
|
|
478
|
+
- avatar
|
|
479
|
+
- member
|
|
480
|
+
- people
|
|
481
|
+
- team
|
|
482
|
+
- roster
|
|
483
|
+
- directory
|
|
484
|
+
- contacts
|
|
485
|
+
- staff
|
|
486
|
+
- social
|
|
487
|
+
- profile
|
|
488
|
+
- user
|
|
489
|
+
synonyms:
|
|
490
|
+
avatar:
|
|
491
|
+
- user
|
|
492
|
+
- profile
|
|
493
|
+
- avatar
|
|
494
|
+
- group
|
|
495
|
+
contacts:
|
|
496
|
+
- team
|
|
497
|
+
- avatar
|
|
498
|
+
- group
|
|
499
|
+
- user
|
|
500
|
+
- profile
|
|
501
|
+
directory:
|
|
502
|
+
- team
|
|
503
|
+
- avatar
|
|
504
|
+
- group
|
|
505
|
+
- table
|
|
506
|
+
- data
|
|
507
|
+
member:
|
|
508
|
+
- user
|
|
509
|
+
- profile
|
|
510
|
+
- avatar
|
|
511
|
+
- team
|
|
512
|
+
- activity
|
|
513
|
+
people:
|
|
514
|
+
- user
|
|
515
|
+
- profile
|
|
516
|
+
- avatar
|
|
517
|
+
- team
|
|
518
|
+
- group
|
|
519
|
+
profile:
|
|
520
|
+
- user
|
|
521
|
+
- profile
|
|
522
|
+
- avatar
|
|
523
|
+
- settings
|
|
524
|
+
roster:
|
|
525
|
+
- team
|
|
526
|
+
- activity
|
|
527
|
+
- avatar
|
|
528
|
+
- group
|
|
529
|
+
- leaderboard
|
|
530
|
+
social:
|
|
531
|
+
- social
|
|
532
|
+
- post
|
|
533
|
+
- avatar
|
|
534
|
+
- testimonial
|
|
535
|
+
staff:
|
|
536
|
+
- team
|
|
537
|
+
- avatar
|
|
538
|
+
- group
|
|
539
|
+
- user
|
|
540
|
+
team:
|
|
541
|
+
- team
|
|
542
|
+
- activity
|
|
543
|
+
- avatar
|
|
544
|
+
- group
|
|
545
|
+
- leaderboard
|
|
546
|
+
- project
|
|
547
|
+
- board
|
|
548
|
+
- kanban
|
|
549
|
+
user:
|
|
550
|
+
- user
|
|
551
|
+
- profile
|
|
552
|
+
- avatar
|
|
553
|
+
- login
|
|
554
|
+
related:
|
|
555
|
+
- input
|
|
556
|
+
- button
|
|
557
|
+
- check-box
|
|
558
|
+
- badge
|
|
559
|
+
- avatar-group
|