@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,299 @@
|
|
|
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: AdiaSlider
|
|
5
|
+
tag: slider-ui
|
|
6
|
+
component: Slider
|
|
7
|
+
category: input
|
|
8
|
+
version: 1
|
|
9
|
+
description: Range slider with track, fill, and thumb. Supports label, suffix, and keyboard control.
|
|
10
|
+
Form-associated.
|
|
11
|
+
props:
|
|
12
|
+
name:
|
|
13
|
+
description: Form field name
|
|
14
|
+
type: string
|
|
15
|
+
default: ""
|
|
16
|
+
required:
|
|
17
|
+
description: Required for validation
|
|
18
|
+
type: boolean
|
|
19
|
+
default: false
|
|
20
|
+
reflect: true
|
|
21
|
+
disabled:
|
|
22
|
+
description: Disables interaction
|
|
23
|
+
type: boolean
|
|
24
|
+
default: false
|
|
25
|
+
reflect: true
|
|
26
|
+
error:
|
|
27
|
+
description: Validation error
|
|
28
|
+
type: string
|
|
29
|
+
default: ""
|
|
30
|
+
label:
|
|
31
|
+
description: Label text above the slider
|
|
32
|
+
type: string
|
|
33
|
+
default: ""
|
|
34
|
+
max:
|
|
35
|
+
description: Maximum slider value
|
|
36
|
+
type: number
|
|
37
|
+
default: 100
|
|
38
|
+
min:
|
|
39
|
+
description: Minimum slider value
|
|
40
|
+
type: number
|
|
41
|
+
default: 0
|
|
42
|
+
showValue:
|
|
43
|
+
description: Displays current value below the slider
|
|
44
|
+
type: boolean
|
|
45
|
+
default: false
|
|
46
|
+
attribute: show-value
|
|
47
|
+
step:
|
|
48
|
+
description: Step increment between values
|
|
49
|
+
type: number
|
|
50
|
+
default: 1
|
|
51
|
+
suffix:
|
|
52
|
+
description: Value suffix text
|
|
53
|
+
type: string
|
|
54
|
+
default: ""
|
|
55
|
+
value:
|
|
56
|
+
description: Current slider value
|
|
57
|
+
type: number
|
|
58
|
+
default: 50
|
|
59
|
+
events:
|
|
60
|
+
change:
|
|
61
|
+
description: "Fired when the value changes (on blur for inputs, on selection for pickers)."
|
|
62
|
+
input:
|
|
63
|
+
description: Fired on each slider movement
|
|
64
|
+
slots:
|
|
65
|
+
input:
|
|
66
|
+
description: Native range input element
|
|
67
|
+
label:
|
|
68
|
+
description: Label element above the slider
|
|
69
|
+
value:
|
|
70
|
+
description: Current value display
|
|
71
|
+
states:
|
|
72
|
+
- name: idle
|
|
73
|
+
description: Default, ready for interaction.
|
|
74
|
+
- name: disabled
|
|
75
|
+
description: Non-interactive; dimmed.
|
|
76
|
+
attribute: disabled
|
|
77
|
+
traits: []
|
|
78
|
+
tokens:
|
|
79
|
+
--slider-fill:
|
|
80
|
+
description: Filled track / thumb color
|
|
81
|
+
--slider-thumb-size:
|
|
82
|
+
description: Thumb diameter
|
|
83
|
+
--slider-track:
|
|
84
|
+
description: Track background color
|
|
85
|
+
a2ui:
|
|
86
|
+
rules: []
|
|
87
|
+
anti_patterns: []
|
|
88
|
+
examples:
|
|
89
|
+
- name: slider-range
|
|
90
|
+
description: Card with labeled slider components for adjusting values like volume, brightness, and contrast.
|
|
91
|
+
a2ui: >-
|
|
92
|
+
[
|
|
93
|
+
{
|
|
94
|
+
"id": "root",
|
|
95
|
+
"component": "Card",
|
|
96
|
+
"children": [
|
|
97
|
+
"hdr",
|
|
98
|
+
"sec"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "hdr",
|
|
103
|
+
"component": "Header",
|
|
104
|
+
"children": [
|
|
105
|
+
"title"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"id": "title",
|
|
110
|
+
"component": "Text",
|
|
111
|
+
"slot": "heading",
|
|
112
|
+
"textContent": "Audio & Display",
|
|
113
|
+
"variant": "section"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "sec",
|
|
117
|
+
"component": "Section",
|
|
118
|
+
"children": [
|
|
119
|
+
"sliders"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "sliders",
|
|
124
|
+
"component": "Column",
|
|
125
|
+
"children": [
|
|
126
|
+
"volume",
|
|
127
|
+
"brightness",
|
|
128
|
+
"contrast"
|
|
129
|
+
],
|
|
130
|
+
"gap": "6"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "volume",
|
|
134
|
+
"component": "Slider",
|
|
135
|
+
"label": "Volume",
|
|
136
|
+
"min": 0,
|
|
137
|
+
"max": 100,
|
|
138
|
+
"value": 75,
|
|
139
|
+
"name": "volume"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"id": "brightness",
|
|
143
|
+
"component": "Slider",
|
|
144
|
+
"label": "Brightness",
|
|
145
|
+
"min": 0,
|
|
146
|
+
"max": 100,
|
|
147
|
+
"value": 50,
|
|
148
|
+
"name": "brightness"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "contrast",
|
|
152
|
+
"component": "Slider",
|
|
153
|
+
"label": "Contrast",
|
|
154
|
+
"min": 0,
|
|
155
|
+
"max": 100,
|
|
156
|
+
"value": 60,
|
|
157
|
+
"name": "contrast"
|
|
158
|
+
}
|
|
159
|
+
]
|
|
160
|
+
- name: theme-customizer
|
|
161
|
+
description: Card with color pickers, theme select, density slider, and preview area for theme
|
|
162
|
+
customization.
|
|
163
|
+
a2ui: >-
|
|
164
|
+
[
|
|
165
|
+
{
|
|
166
|
+
"id": "root",
|
|
167
|
+
"component": "Card",
|
|
168
|
+
"size": "lg",
|
|
169
|
+
"children": [
|
|
170
|
+
"hdr",
|
|
171
|
+
"sec",
|
|
172
|
+
"ftr"
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"id": "hdr",
|
|
177
|
+
"component": "Header",
|
|
178
|
+
"children": [
|
|
179
|
+
"title",
|
|
180
|
+
"desc"
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"id": "title",
|
|
185
|
+
"component": "Text",
|
|
186
|
+
"slot": "heading",
|
|
187
|
+
"textContent": "Theme Customizer",
|
|
188
|
+
"variant": "section"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"id": "desc",
|
|
192
|
+
"component": "Text",
|
|
193
|
+
"slot": "description",
|
|
194
|
+
"variant": "caption",
|
|
195
|
+
"textContent": "Personalize your interface appearance"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"id": "sec",
|
|
199
|
+
"component": "Section",
|
|
200
|
+
"children": [
|
|
201
|
+
"fields"
|
|
202
|
+
]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": "fields",
|
|
206
|
+
"component": "Column",
|
|
207
|
+
"children": [
|
|
208
|
+
"colors-row",
|
|
209
|
+
"theme-select",
|
|
210
|
+
"density",
|
|
211
|
+
"preview-label"
|
|
212
|
+
],
|
|
213
|
+
"gap": "4"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"id": "colors-row",
|
|
217
|
+
"component": "Row",
|
|
218
|
+
"children": [
|
|
219
|
+
"primary-color",
|
|
220
|
+
"accent-color"
|
|
221
|
+
],
|
|
222
|
+
"gap": "3"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"id": "primary-color",
|
|
226
|
+
"component": "Input",
|
|
227
|
+
"label": "Primary Color",
|
|
228
|
+
"type": "color",
|
|
229
|
+
"name": "primaryColor",
|
|
230
|
+
"value": "#6366f1"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"id": "accent-color",
|
|
234
|
+
"component": "Input",
|
|
235
|
+
"label": "Accent Color",
|
|
236
|
+
"type": "color",
|
|
237
|
+
"name": "accentColor",
|
|
238
|
+
"value": "#f59e0b"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "theme-select",
|
|
242
|
+
"component": "Select",
|
|
243
|
+
"label": "Theme",
|
|
244
|
+
"name": "theme",
|
|
245
|
+
"placeholder": "Select theme..."
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": "density",
|
|
249
|
+
"component": "Slider",
|
|
250
|
+
"label": "Density",
|
|
251
|
+
"min": 1,
|
|
252
|
+
"max": 5,
|
|
253
|
+
"value": 3,
|
|
254
|
+
"name": "density"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"id": "preview-label",
|
|
258
|
+
"component": "Text",
|
|
259
|
+
"variant": "caption",
|
|
260
|
+
"textContent": "Preview will update in real time"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"id": "ftr",
|
|
264
|
+
"component": "Footer",
|
|
265
|
+
"children": [
|
|
266
|
+
"reset-btn",
|
|
267
|
+
"save-btn"
|
|
268
|
+
]
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"id": "reset-btn",
|
|
272
|
+
"component": "Button",
|
|
273
|
+
"text": "Reset to Default",
|
|
274
|
+
"variant": "ghost"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"id": "save-btn",
|
|
278
|
+
"component": "Button",
|
|
279
|
+
"text": "Save Theme",
|
|
280
|
+
"variant": "primary"
|
|
281
|
+
}
|
|
282
|
+
]
|
|
283
|
+
keywords:
|
|
284
|
+
- slider
|
|
285
|
+
- range
|
|
286
|
+
- volume
|
|
287
|
+
synonyms:
|
|
288
|
+
range:
|
|
289
|
+
- slider
|
|
290
|
+
- range
|
|
291
|
+
volume:
|
|
292
|
+
- slider
|
|
293
|
+
- range
|
|
294
|
+
- music
|
|
295
|
+
related:
|
|
296
|
+
- input
|
|
297
|
+
- select
|
|
298
|
+
- button
|
|
299
|
+
- embed
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://adiaui.dev/a2ui/v0_9/components/Stack.json",
|
|
4
|
+
"title": "Stack",
|
|
5
|
+
"description": "Grid overlay layout — children stack on top of each other.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"allOf": [
|
|
8
|
+
{
|
|
9
|
+
"$ref": "common_types.json#/$defs/ComponentCommon"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"$ref": "common_types.json#/$defs/CatalogComponentCommon"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"properties": {
|
|
16
|
+
"align": {
|
|
17
|
+
"description": "Alignment of stacked items",
|
|
18
|
+
"type": "string",
|
|
19
|
+
"default": "center"
|
|
20
|
+
},
|
|
21
|
+
"component": {
|
|
22
|
+
"const": "Stack"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"required": [
|
|
26
|
+
"component"
|
|
27
|
+
],
|
|
28
|
+
"unevaluatedProperties": false,
|
|
29
|
+
"x-adiaui": {
|
|
30
|
+
"anti_patterns": [],
|
|
31
|
+
"category": "layout",
|
|
32
|
+
"events": {},
|
|
33
|
+
"examples": [
|
|
34
|
+
{
|
|
35
|
+
"description": "Basic Stack usage",
|
|
36
|
+
"a2ui": "[\n {\n \"id\": \"root\",\n \"component\": \"Stack\",\n \"children\": [\n \"child1\",\n \"child2\"\n ]\n },\n {\n \"id\": \"child1\",\n \"component\": \"Text\",\n \"textContent\": \"First item\"\n },\n {\n \"id\": \"child2\",\n \"component\": \"Text\",\n \"textContent\": \"Second item\"\n }\n]",
|
|
37
|
+
"name": "basic-stack"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"keywords": [
|
|
41
|
+
"stack"
|
|
42
|
+
],
|
|
43
|
+
"name": "AdiaStack",
|
|
44
|
+
"related": [],
|
|
45
|
+
"slots": {
|
|
46
|
+
"default": {
|
|
47
|
+
"description": "Default slot — primary child content."
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"states": [
|
|
51
|
+
{
|
|
52
|
+
"description": "Default, ready for interaction.",
|
|
53
|
+
"name": "idle"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"synonyms": {},
|
|
57
|
+
"tag": "stack-ui",
|
|
58
|
+
"tokens": {},
|
|
59
|
+
"traits": [],
|
|
60
|
+
"version": 1
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
@scope (stack-ui) {
|
|
2
|
+
:where(:scope) {
|
|
3
|
+
--stack-align: center;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
:scope {
|
|
7
|
+
box-sizing: border-box;
|
|
8
|
+
display: grid;
|
|
9
|
+
place-items: var(--stack-align);
|
|
10
|
+
/* Same UA override as row-ui/col-ui: [align=...] is for flex/grid, not text. */
|
|
11
|
+
text-align: inherit;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
> * {
|
|
15
|
+
grid-area: 1 / 1;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* Alignment */
|
|
19
|
+
:scope[align="center"] { --stack-align: center; }
|
|
20
|
+
:scope[align="top-left"] { --stack-align: start start; }
|
|
21
|
+
:scope[align="top-right"] { --stack-align: start end; }
|
|
22
|
+
:scope[align="bottom-left"] { --stack-align: end start; }
|
|
23
|
+
:scope[align="bottom-right"] { --stack-align: end end; }
|
|
24
|
+
:scope[align="top"] { --stack-align: start center; }
|
|
25
|
+
:scope[align="bottom"] { --stack-align: end center; }
|
|
26
|
+
:scope[align="left"] { --stack-align: center start; }
|
|
27
|
+
:scope[align="right"] { --stack-align: center end; }
|
|
28
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* stack-ui — grid-overlay primitive. Children stack on top of each other
|
|
3
|
+
* (grid area 1/1), useful for badges-on-avatars, skeleton overlays, etc.
|
|
4
|
+
*
|
|
5
|
+
* <stack-ui align="center">...</stack-ui>
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import { AdiaElement } from '@core/element.js';
|
|
9
|
+
|
|
10
|
+
class AdiaStack extends AdiaElement {
|
|
11
|
+
static properties = {
|
|
12
|
+
align: { type: String, default: 'center', reflect: true },
|
|
13
|
+
};
|
|
14
|
+
static template = () => null;
|
|
15
|
+
}
|
|
16
|
+
customElements.define('stack-ui', AdiaStack);
|
|
17
|
+
|
|
18
|
+
export { AdiaStack };
|
|
@@ -0,0 +1,54 @@
|
|
|
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: AdiaStack
|
|
5
|
+
tag: stack-ui
|
|
6
|
+
component: Stack
|
|
7
|
+
category: layout
|
|
8
|
+
version: 1
|
|
9
|
+
description: Grid overlay layout — children stack on top of each other.
|
|
10
|
+
props:
|
|
11
|
+
align:
|
|
12
|
+
description: Alignment of stacked items
|
|
13
|
+
type: string
|
|
14
|
+
default: center
|
|
15
|
+
events: {}
|
|
16
|
+
slots:
|
|
17
|
+
default:
|
|
18
|
+
description: "Default slot — primary child content."
|
|
19
|
+
states:
|
|
20
|
+
- name: idle
|
|
21
|
+
description: Default, ready for interaction.
|
|
22
|
+
traits: []
|
|
23
|
+
tokens: {}
|
|
24
|
+
a2ui:
|
|
25
|
+
rules: []
|
|
26
|
+
anti_patterns: []
|
|
27
|
+
examples:
|
|
28
|
+
- name: basic-stack
|
|
29
|
+
description: Basic Stack usage
|
|
30
|
+
a2ui: >-
|
|
31
|
+
[
|
|
32
|
+
{
|
|
33
|
+
"id": "root",
|
|
34
|
+
"component": "Stack",
|
|
35
|
+
"children": [
|
|
36
|
+
"child1",
|
|
37
|
+
"child2"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "child1",
|
|
42
|
+
"component": "Text",
|
|
43
|
+
"textContent": "First item"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "child2",
|
|
47
|
+
"component": "Text",
|
|
48
|
+
"textContent": "Second item"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
keywords:
|
|
52
|
+
- stack
|
|
53
|
+
synonyms: {}
|
|
54
|
+
related: []
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://adiaui.dev/a2ui/v0_9/components/Stat.json",
|
|
4
|
+
"title": "Stat",
|
|
5
|
+
"description": "Metric/KPI display — value + label + optional change indicator and trend.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"allOf": [
|
|
8
|
+
{
|
|
9
|
+
"$ref": "common_types.json#/$defs/ComponentCommon"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"$ref": "common_types.json#/$defs/CatalogComponentCommon"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"properties": {
|
|
16
|
+
"change": {
|
|
17
|
+
"description": "Change indicator text (e.g. '+12%', '-3%')",
|
|
18
|
+
"type": "string",
|
|
19
|
+
"default": ""
|
|
20
|
+
},
|
|
21
|
+
"component": {
|
|
22
|
+
"const": "Stat"
|
|
23
|
+
},
|
|
24
|
+
"icon": {
|
|
25
|
+
"description": "Icon name displayed in the icon slot",
|
|
26
|
+
"type": "string",
|
|
27
|
+
"default": ""
|
|
28
|
+
},
|
|
29
|
+
"label": {
|
|
30
|
+
"description": "Eyebrow label describing the metric",
|
|
31
|
+
"type": "string",
|
|
32
|
+
"default": ""
|
|
33
|
+
},
|
|
34
|
+
"trend": {
|
|
35
|
+
"description": "Trend direction or narrative subtitle. Canonical values color the change badge (up=success, down=danger, neutral/flat=muted); any other string renders as caption-style text under the primary value.",
|
|
36
|
+
"type": "string",
|
|
37
|
+
"default": ""
|
|
38
|
+
},
|
|
39
|
+
"value": {
|
|
40
|
+
"description": "The primary metric value to display",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"default": ""
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"required": [
|
|
46
|
+
"component"
|
|
47
|
+
],
|
|
48
|
+
"unevaluatedProperties": false,
|
|
49
|
+
"x-adiaui": {
|
|
50
|
+
"anti_patterns": [],
|
|
51
|
+
"category": "display",
|
|
52
|
+
"events": {},
|
|
53
|
+
"examples": [
|
|
54
|
+
{
|
|
55
|
+
"description": "Basic Stat usage",
|
|
56
|
+
"a2ui": "[\n {\n \"id\": \"root\",\n \"component\": \"Card\",\n \"children\": [\n \"sec\"\n ]\n },\n {\n \"id\": \"sec\",\n \"component\": \"Section\",\n \"children\": [\n \"comp\"\n ]\n },\n {\n \"id\": \"comp\",\n \"component\": \"Stat\",\n \"label\": \"Example Stat\",\n \"value\": \"\"\n }\n]",
|
|
57
|
+
"name": "basic-stat"
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"keywords": [
|
|
61
|
+
"stat",
|
|
62
|
+
"stats",
|
|
63
|
+
"statistics",
|
|
64
|
+
"kpi",
|
|
65
|
+
"numbers",
|
|
66
|
+
"figures",
|
|
67
|
+
"analytics",
|
|
68
|
+
"reporting",
|
|
69
|
+
"insights",
|
|
70
|
+
"monitor",
|
|
71
|
+
"monitoring",
|
|
72
|
+
"health",
|
|
73
|
+
"overview",
|
|
74
|
+
"summary",
|
|
75
|
+
"telemetry",
|
|
76
|
+
"observability",
|
|
77
|
+
"performance",
|
|
78
|
+
"scoreboard"
|
|
79
|
+
],
|
|
80
|
+
"name": "AdiaStat",
|
|
81
|
+
"related": [],
|
|
82
|
+
"slots": {
|
|
83
|
+
"change": {
|
|
84
|
+
"description": "Child content region for the `change` slot."
|
|
85
|
+
},
|
|
86
|
+
"icon": {
|
|
87
|
+
"description": "Icon region — single icon-ui child."
|
|
88
|
+
},
|
|
89
|
+
"label": {
|
|
90
|
+
"description": "Label region — control label."
|
|
91
|
+
},
|
|
92
|
+
"value": {
|
|
93
|
+
"description": "Child content region for the `value` slot."
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"states": [
|
|
97
|
+
{
|
|
98
|
+
"description": "Default, ready for interaction.",
|
|
99
|
+
"name": "idle"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"synonyms": {
|
|
103
|
+
"analytics": [
|
|
104
|
+
"chart",
|
|
105
|
+
"dashboard",
|
|
106
|
+
"metric",
|
|
107
|
+
"stat",
|
|
108
|
+
"leaderboard"
|
|
109
|
+
],
|
|
110
|
+
"figures": [
|
|
111
|
+
"stat",
|
|
112
|
+
"metric",
|
|
113
|
+
"chart"
|
|
114
|
+
],
|
|
115
|
+
"health": [
|
|
116
|
+
"dashboard",
|
|
117
|
+
"metric",
|
|
118
|
+
"stat",
|
|
119
|
+
"progress"
|
|
120
|
+
],
|
|
121
|
+
"insights": [
|
|
122
|
+
"chart",
|
|
123
|
+
"dashboard",
|
|
124
|
+
"metric",
|
|
125
|
+
"stat"
|
|
126
|
+
],
|
|
127
|
+
"kpi": [
|
|
128
|
+
"stat",
|
|
129
|
+
"metric",
|
|
130
|
+
"dashboard",
|
|
131
|
+
"chart"
|
|
132
|
+
],
|
|
133
|
+
"monitor": [
|
|
134
|
+
"dashboard",
|
|
135
|
+
"metric",
|
|
136
|
+
"stat",
|
|
137
|
+
"chart",
|
|
138
|
+
"progress"
|
|
139
|
+
],
|
|
140
|
+
"monitoring": [
|
|
141
|
+
"dashboard",
|
|
142
|
+
"metric",
|
|
143
|
+
"stat",
|
|
144
|
+
"chart",
|
|
145
|
+
"progress"
|
|
146
|
+
],
|
|
147
|
+
"numbers": [
|
|
148
|
+
"stat",
|
|
149
|
+
"metric"
|
|
150
|
+
],
|
|
151
|
+
"observability": [
|
|
152
|
+
"dashboard",
|
|
153
|
+
"metric",
|
|
154
|
+
"chart",
|
|
155
|
+
"stat"
|
|
156
|
+
],
|
|
157
|
+
"overview": [
|
|
158
|
+
"dashboard",
|
|
159
|
+
"metric",
|
|
160
|
+
"stat",
|
|
161
|
+
"card"
|
|
162
|
+
],
|
|
163
|
+
"performance": [
|
|
164
|
+
"dashboard",
|
|
165
|
+
"metric",
|
|
166
|
+
"chart",
|
|
167
|
+
"stat",
|
|
168
|
+
"progress"
|
|
169
|
+
],
|
|
170
|
+
"reporting": [
|
|
171
|
+
"chart",
|
|
172
|
+
"dashboard",
|
|
173
|
+
"metric",
|
|
174
|
+
"stat",
|
|
175
|
+
"table",
|
|
176
|
+
"data"
|
|
177
|
+
],
|
|
178
|
+
"scoreboard": [
|
|
179
|
+
"leaderboard",
|
|
180
|
+
"stat"
|
|
181
|
+
],
|
|
182
|
+
"statistics": [
|
|
183
|
+
"stat",
|
|
184
|
+
"metric",
|
|
185
|
+
"dashboard",
|
|
186
|
+
"chart"
|
|
187
|
+
],
|
|
188
|
+
"stats": [
|
|
189
|
+
"stat",
|
|
190
|
+
"metric",
|
|
191
|
+
"dashboard",
|
|
192
|
+
"chart"
|
|
193
|
+
],
|
|
194
|
+
"summary": [
|
|
195
|
+
"dashboard",
|
|
196
|
+
"metric",
|
|
197
|
+
"stat",
|
|
198
|
+
"card"
|
|
199
|
+
],
|
|
200
|
+
"telemetry": [
|
|
201
|
+
"dashboard",
|
|
202
|
+
"metric",
|
|
203
|
+
"chart",
|
|
204
|
+
"stat"
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
"tag": "stat-ui",
|
|
208
|
+
"tokens": {
|
|
209
|
+
"--stat-change-size": {
|
|
210
|
+
"description": "Font size for the change badge"
|
|
211
|
+
},
|
|
212
|
+
"--stat-column-gap": {
|
|
213
|
+
"description": "Horizontal gap between grid columns"
|
|
214
|
+
},
|
|
215
|
+
"--stat-down-fg": {
|
|
216
|
+
"description": "Color for downward trend"
|
|
217
|
+
},
|
|
218
|
+
"--stat-icon-fg": {
|
|
219
|
+
"description": "Color for the icon"
|
|
220
|
+
},
|
|
221
|
+
"--stat-label-fg": {
|
|
222
|
+
"description": "Text color for the label"
|
|
223
|
+
},
|
|
224
|
+
"--stat-label-size": {
|
|
225
|
+
"description": "Font size for the label"
|
|
226
|
+
},
|
|
227
|
+
"--stat-row-gap": {
|
|
228
|
+
"description": "Vertical gap between grid rows"
|
|
229
|
+
},
|
|
230
|
+
"--stat-up-fg": {
|
|
231
|
+
"description": "Color for upward trend"
|
|
232
|
+
},
|
|
233
|
+
"--stat-value-fg": {
|
|
234
|
+
"description": "Text color for the primary value"
|
|
235
|
+
},
|
|
236
|
+
"--stat-value-size": {
|
|
237
|
+
"description": "Font size for the primary value"
|
|
238
|
+
},
|
|
239
|
+
"--stat-value-weight": {
|
|
240
|
+
"description": "Font weight for the primary value"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"traits": [],
|
|
244
|
+
"version": 1
|
|
245
|
+
}
|
|
246
|
+
}
|