@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,496 @@
|
|
|
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: AdiaInput
|
|
5
|
+
tag: input-ui
|
|
6
|
+
component: Input
|
|
7
|
+
category: input
|
|
8
|
+
version: 1
|
|
9
|
+
description: Text input field with contenteditable or native input. Supports prefix/suffix icons,
|
|
10
|
+
label, and form participation.
|
|
11
|
+
props:
|
|
12
|
+
name:
|
|
13
|
+
description: Form control name for form data submission
|
|
14
|
+
type: string
|
|
15
|
+
default: ""
|
|
16
|
+
icon:
|
|
17
|
+
description: Leading Phosphor icon name (shortcut for setting `prefix` to an icon tag).
|
|
18
|
+
type: string
|
|
19
|
+
default: ""
|
|
20
|
+
multiline:
|
|
21
|
+
description: Render a multiline textarea-like surface. Prefer TextArea; kept for back-compat.
|
|
22
|
+
type: boolean
|
|
23
|
+
default: false
|
|
24
|
+
rows:
|
|
25
|
+
description: Visible row count when multiline is true. Ignored otherwise.
|
|
26
|
+
type: number
|
|
27
|
+
default: 3
|
|
28
|
+
type:
|
|
29
|
+
description: Input type hint. Password type applies disc masking via -webkit-text-security.
|
|
30
|
+
type: string
|
|
31
|
+
default: text
|
|
32
|
+
enum:
|
|
33
|
+
- text
|
|
34
|
+
- email
|
|
35
|
+
- password
|
|
36
|
+
- number
|
|
37
|
+
- tel
|
|
38
|
+
- url
|
|
39
|
+
- search
|
|
40
|
+
- date
|
|
41
|
+
- datetime-local
|
|
42
|
+
- time
|
|
43
|
+
- month
|
|
44
|
+
- week
|
|
45
|
+
- color
|
|
46
|
+
required:
|
|
47
|
+
description: Marks the field as required for form validation. Sets aria-required.
|
|
48
|
+
type: boolean
|
|
49
|
+
default: false
|
|
50
|
+
reflect: true
|
|
51
|
+
disabled:
|
|
52
|
+
description: Disables interaction, removes contenteditable, and dims the control
|
|
53
|
+
type: boolean
|
|
54
|
+
default: false
|
|
55
|
+
reflect: true
|
|
56
|
+
error:
|
|
57
|
+
description: Validation error message. Set automatically by constraint validation or manually via
|
|
58
|
+
setInvalid().
|
|
59
|
+
type: string
|
|
60
|
+
default: ""
|
|
61
|
+
label:
|
|
62
|
+
description: Label text rendered above the input field
|
|
63
|
+
type: string
|
|
64
|
+
default: ""
|
|
65
|
+
maxlength:
|
|
66
|
+
description: Maximum character length for validation
|
|
67
|
+
type: number
|
|
68
|
+
default: null
|
|
69
|
+
minlength:
|
|
70
|
+
description: Minimum character length for validation
|
|
71
|
+
type: number
|
|
72
|
+
default: null
|
|
73
|
+
pattern:
|
|
74
|
+
description: Regex pattern for validation. Tested as ^(?:pattern)$ against the value.
|
|
75
|
+
type: string
|
|
76
|
+
default: ""
|
|
77
|
+
placeholder:
|
|
78
|
+
description: Placeholder text shown when the input is empty, via ::before content
|
|
79
|
+
type: string
|
|
80
|
+
default: ""
|
|
81
|
+
prefix:
|
|
82
|
+
description: Prefix text or icon rendered before the text surface (e.g., unit label, search icon)
|
|
83
|
+
type: string
|
|
84
|
+
default: ""
|
|
85
|
+
raw:
|
|
86
|
+
description: Strips visual chrome (border, background) from the input
|
|
87
|
+
type: boolean
|
|
88
|
+
default: false
|
|
89
|
+
reflect: true
|
|
90
|
+
readonly:
|
|
91
|
+
description: Prevents editing while keeping the field focusable. Sets contenteditable=false.
|
|
92
|
+
type: boolean
|
|
93
|
+
default: false
|
|
94
|
+
reflect: true
|
|
95
|
+
suffix:
|
|
96
|
+
description: Suffix text rendered after the text surface (e.g., unit like 'kg')
|
|
97
|
+
type: string
|
|
98
|
+
default: ""
|
|
99
|
+
value:
|
|
100
|
+
description: Current input value, synced with contenteditable text surface
|
|
101
|
+
type: string
|
|
102
|
+
default: ""
|
|
103
|
+
events:
|
|
104
|
+
change:
|
|
105
|
+
description: Fired on blur after the value has changed (bubbles)
|
|
106
|
+
input:
|
|
107
|
+
description: Fired on each keystroke as the user types (bubbles)
|
|
108
|
+
submit:
|
|
109
|
+
description: "Fired when the form is submitted."
|
|
110
|
+
slots:
|
|
111
|
+
leading:
|
|
112
|
+
description: Leading icon slot, sized to --content-height. Collapses text inline padding when present.
|
|
113
|
+
text:
|
|
114
|
+
description: Contenteditable text surface for user input
|
|
115
|
+
trailing:
|
|
116
|
+
description: Trailing icon slot, sized to --content-height. Collapses text inline padding when present.
|
|
117
|
+
states:
|
|
118
|
+
- name: idle
|
|
119
|
+
description: Default, ready for interaction.
|
|
120
|
+
- name: disabled
|
|
121
|
+
description: Non-interactive; dimmed.
|
|
122
|
+
attribute: disabled
|
|
123
|
+
- name: focused
|
|
124
|
+
description: Keyboard focus ring.
|
|
125
|
+
selector: :focus-visible
|
|
126
|
+
traits:
|
|
127
|
+
- focusable
|
|
128
|
+
tokens:
|
|
129
|
+
--density:
|
|
130
|
+
description: Inherited multiplier for padding
|
|
131
|
+
--input-background:
|
|
132
|
+
description: Override default background color
|
|
133
|
+
--input-border-color:
|
|
134
|
+
description: Override default border color
|
|
135
|
+
--input-border-width:
|
|
136
|
+
description: Override border width
|
|
137
|
+
--input-content-height:
|
|
138
|
+
description: Override icon slot and text surface height
|
|
139
|
+
--input-disabled-opacity:
|
|
140
|
+
description: Override disabled state opacity
|
|
141
|
+
--input-error-border-color:
|
|
142
|
+
description: Override error state border color
|
|
143
|
+
--input-focus-border-color:
|
|
144
|
+
description: Override focus state border color
|
|
145
|
+
--input-focus-ring:
|
|
146
|
+
description: Override focus ring color
|
|
147
|
+
--input-font-family:
|
|
148
|
+
description: Override font family
|
|
149
|
+
--input-font-size:
|
|
150
|
+
description: Override font size
|
|
151
|
+
--input-font-weight:
|
|
152
|
+
description: Override font weight
|
|
153
|
+
--input-foreground:
|
|
154
|
+
description: Override default text color
|
|
155
|
+
--input-hover-border-color:
|
|
156
|
+
description: Override hover state border color
|
|
157
|
+
--input-line-height:
|
|
158
|
+
description: Override line height
|
|
159
|
+
--input-padding:
|
|
160
|
+
description: Override base padding (density-scaled)
|
|
161
|
+
--input-placeholder-color:
|
|
162
|
+
description: Override placeholder text color
|
|
163
|
+
--input-radius:
|
|
164
|
+
description: Override border radius
|
|
165
|
+
--input-transition:
|
|
166
|
+
description: Override transition timing
|
|
167
|
+
a2ui:
|
|
168
|
+
rules: []
|
|
169
|
+
anti_patterns: []
|
|
170
|
+
examples:
|
|
171
|
+
- name: chat-interface
|
|
172
|
+
description: Chat interface with message bubbles containing avatar and text pairs, plus an input footer.
|
|
173
|
+
a2ui: >-
|
|
174
|
+
[
|
|
175
|
+
{
|
|
176
|
+
"id": "root",
|
|
177
|
+
"component": "Card",
|
|
178
|
+
"children": [
|
|
179
|
+
"hdr",
|
|
180
|
+
"sec",
|
|
181
|
+
"ftr"
|
|
182
|
+
]
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"id": "hdr",
|
|
186
|
+
"component": "Header",
|
|
187
|
+
"children": [
|
|
188
|
+
"title"
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": "title",
|
|
193
|
+
"component": "Text",
|
|
194
|
+
"slot": "heading",
|
|
195
|
+
"textContent": "Chat"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"id": "sec",
|
|
199
|
+
"component": "Section",
|
|
200
|
+
"children": [
|
|
201
|
+
"messages"
|
|
202
|
+
]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": "messages",
|
|
206
|
+
"component": "Column",
|
|
207
|
+
"gap": "3",
|
|
208
|
+
"children": [
|
|
209
|
+
"msg1",
|
|
210
|
+
"msg2",
|
|
211
|
+
"msg3",
|
|
212
|
+
"msg4"
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"id": "msg1",
|
|
217
|
+
"component": "Row",
|
|
218
|
+
"gap": "2",
|
|
219
|
+
"children": [
|
|
220
|
+
"a1",
|
|
221
|
+
"t1"
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"id": "a1",
|
|
226
|
+
"component": "Avatar",
|
|
227
|
+
"name": "User",
|
|
228
|
+
"size": "sm"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"id": "t1",
|
|
232
|
+
"component": "Text",
|
|
233
|
+
"variant": "body",
|
|
234
|
+
"textContent": "Hello! Can you help me with something?"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"id": "msg2",
|
|
238
|
+
"component": "Row",
|
|
239
|
+
"gap": "2",
|
|
240
|
+
"children": [
|
|
241
|
+
"a2",
|
|
242
|
+
"t2"
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"id": "a2",
|
|
247
|
+
"component": "Avatar",
|
|
248
|
+
"name": "Assistant",
|
|
249
|
+
"size": "sm"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "t2",
|
|
253
|
+
"component": "Text",
|
|
254
|
+
"variant": "body",
|
|
255
|
+
"textContent": "Of course! I'd be happy to help. What do you need?"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"id": "msg3",
|
|
259
|
+
"component": "Row",
|
|
260
|
+
"gap": "2",
|
|
261
|
+
"children": [
|
|
262
|
+
"a3",
|
|
263
|
+
"t3"
|
|
264
|
+
]
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"id": "a3",
|
|
268
|
+
"component": "Avatar",
|
|
269
|
+
"name": "User",
|
|
270
|
+
"size": "sm"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"id": "t3",
|
|
274
|
+
"component": "Text",
|
|
275
|
+
"variant": "body",
|
|
276
|
+
"textContent": "I need to build a dashboard layout."
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"id": "msg4",
|
|
280
|
+
"component": "Row",
|
|
281
|
+
"gap": "2",
|
|
282
|
+
"children": [
|
|
283
|
+
"a4",
|
|
284
|
+
"t4"
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"id": "a4",
|
|
289
|
+
"component": "Avatar",
|
|
290
|
+
"name": "Assistant",
|
|
291
|
+
"size": "sm"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"id": "t4",
|
|
295
|
+
"component": "Text",
|
|
296
|
+
"variant": "body",
|
|
297
|
+
"textContent": "Great choice! Let me suggest some patterns for that."
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"id": "ftr",
|
|
301
|
+
"component": "Footer",
|
|
302
|
+
"children": [
|
|
303
|
+
"input-row"
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "input-row",
|
|
308
|
+
"component": "Row",
|
|
309
|
+
"gap": "2",
|
|
310
|
+
"children": [
|
|
311
|
+
"chat-input",
|
|
312
|
+
"send-btn"
|
|
313
|
+
]
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"id": "chat-input",
|
|
317
|
+
"component": "Input",
|
|
318
|
+
"placeholder": "Type a message..."
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"id": "send-btn",
|
|
322
|
+
"component": "Button",
|
|
323
|
+
"text": "Send",
|
|
324
|
+
"icon": "send",
|
|
325
|
+
"variant": "primary"
|
|
326
|
+
}
|
|
327
|
+
]
|
|
328
|
+
- name: command-palette
|
|
329
|
+
description: Command palette card with search input and a list of command options.
|
|
330
|
+
a2ui: >-
|
|
331
|
+
[
|
|
332
|
+
{
|
|
333
|
+
"id": "root",
|
|
334
|
+
"component": "Card",
|
|
335
|
+
"children": [
|
|
336
|
+
"hdr",
|
|
337
|
+
"sec"
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"id": "hdr",
|
|
342
|
+
"component": "Header",
|
|
343
|
+
"children": [
|
|
344
|
+
"search"
|
|
345
|
+
]
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"id": "search",
|
|
349
|
+
"component": "Input",
|
|
350
|
+
"placeholder": "Type a command or search...",
|
|
351
|
+
"icon": "search"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"id": "sec",
|
|
355
|
+
"component": "Section",
|
|
356
|
+
"children": [
|
|
357
|
+
"options"
|
|
358
|
+
]
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"id": "options",
|
|
362
|
+
"component": "Column",
|
|
363
|
+
"gap": "1",
|
|
364
|
+
"children": [
|
|
365
|
+
"opt1",
|
|
366
|
+
"opt2",
|
|
367
|
+
"opt3",
|
|
368
|
+
"opt4",
|
|
369
|
+
"opt5"
|
|
370
|
+
]
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"id": "opt1",
|
|
374
|
+
"component": "Row",
|
|
375
|
+
"gap": "2",
|
|
376
|
+
"children": [
|
|
377
|
+
"i1",
|
|
378
|
+
"l1"
|
|
379
|
+
]
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"id": "i1",
|
|
383
|
+
"component": "Icon",
|
|
384
|
+
"name": "file"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"id": "l1",
|
|
388
|
+
"component": "Text",
|
|
389
|
+
"textContent": "Open File"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"id": "opt2",
|
|
393
|
+
"component": "Row",
|
|
394
|
+
"gap": "2",
|
|
395
|
+
"children": [
|
|
396
|
+
"i2",
|
|
397
|
+
"l2"
|
|
398
|
+
]
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"id": "i2",
|
|
402
|
+
"component": "Icon",
|
|
403
|
+
"name": "gear"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"id": "l2",
|
|
407
|
+
"component": "Text",
|
|
408
|
+
"textContent": "Settings"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"id": "opt3",
|
|
412
|
+
"component": "Row",
|
|
413
|
+
"gap": "2",
|
|
414
|
+
"children": [
|
|
415
|
+
"i3",
|
|
416
|
+
"l3"
|
|
417
|
+
]
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"id": "i3",
|
|
421
|
+
"component": "Icon",
|
|
422
|
+
"name": "palette"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"id": "l3",
|
|
426
|
+
"component": "Text",
|
|
427
|
+
"textContent": "Change Theme"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"id": "opt4",
|
|
431
|
+
"component": "Row",
|
|
432
|
+
"gap": "2",
|
|
433
|
+
"children": [
|
|
434
|
+
"i4",
|
|
435
|
+
"l4"
|
|
436
|
+
]
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"id": "i4",
|
|
440
|
+
"component": "Icon",
|
|
441
|
+
"name": "users"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"id": "l4",
|
|
445
|
+
"component": "Text",
|
|
446
|
+
"textContent": "Manage Users"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"id": "opt5",
|
|
450
|
+
"component": "Row",
|
|
451
|
+
"gap": "2",
|
|
452
|
+
"children": [
|
|
453
|
+
"i5",
|
|
454
|
+
"l5"
|
|
455
|
+
]
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"id": "i5",
|
|
459
|
+
"component": "Icon",
|
|
460
|
+
"name": "sign-out"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"id": "l5",
|
|
464
|
+
"component": "Text",
|
|
465
|
+
"textContent": "Sign Out"
|
|
466
|
+
}
|
|
467
|
+
]
|
|
468
|
+
keywords:
|
|
469
|
+
- input
|
|
470
|
+
- field
|
|
471
|
+
- chip
|
|
472
|
+
- tag
|
|
473
|
+
synonyms:
|
|
474
|
+
tag:
|
|
475
|
+
- tag
|
|
476
|
+
- input
|
|
477
|
+
- badge
|
|
478
|
+
chip:
|
|
479
|
+
- badge
|
|
480
|
+
- tag
|
|
481
|
+
- input
|
|
482
|
+
field:
|
|
483
|
+
- form
|
|
484
|
+
- create
|
|
485
|
+
- input
|
|
486
|
+
input:
|
|
487
|
+
- form
|
|
488
|
+
- create
|
|
489
|
+
- tag
|
|
490
|
+
- input
|
|
491
|
+
related:
|
|
492
|
+
- avatar
|
|
493
|
+
- button
|
|
494
|
+
- table
|
|
495
|
+
- pagination
|
|
496
|
+
- check-box
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://adiaui.dev/a2ui/v0_9/components/Inspector.json",
|
|
4
|
+
"title": "Inspector",
|
|
5
|
+
"description": "Developer tools pane for inspecting A2UI state.",
|
|
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
|
+
"active": {
|
|
17
|
+
"description": "Active tab (alias for `value`, accepts same enum).",
|
|
18
|
+
"type": "string",
|
|
19
|
+
"default": ""
|
|
20
|
+
},
|
|
21
|
+
"component": {
|
|
22
|
+
"const": "Inspector"
|
|
23
|
+
},
|
|
24
|
+
"value": {
|
|
25
|
+
"description": "Active tab. One of 'catalog', 'surface', 'messages', 'code'.",
|
|
26
|
+
"type": "string",
|
|
27
|
+
"default": "surface"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"required": [
|
|
31
|
+
"component"
|
|
32
|
+
],
|
|
33
|
+
"unevaluatedProperties": false,
|
|
34
|
+
"x-adiaui": {
|
|
35
|
+
"anti_patterns": [],
|
|
36
|
+
"category": "agent",
|
|
37
|
+
"events": {},
|
|
38
|
+
"examples": [
|
|
39
|
+
{
|
|
40
|
+
"description": "Basic Inspector usage",
|
|
41
|
+
"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\": \"Inspector\"\n }\n]",
|
|
42
|
+
"name": "basic-inspector"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"keywords": [
|
|
46
|
+
"inspector"
|
|
47
|
+
],
|
|
48
|
+
"name": "AdiaInspector",
|
|
49
|
+
"related": [],
|
|
50
|
+
"slots": {
|
|
51
|
+
"default": {
|
|
52
|
+
"description": "Default slot — primary child content."
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"states": [
|
|
56
|
+
{
|
|
57
|
+
"description": "Default, ready for interaction.",
|
|
58
|
+
"name": "idle"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"synonyms": {},
|
|
62
|
+
"tag": "inspector-ui",
|
|
63
|
+
"tokens": {},
|
|
64
|
+
"traits": [],
|
|
65
|
+
"version": 1
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
@scope (inspector-ui) {
|
|
2
|
+
:where(:scope) {
|
|
3
|
+
--inspector-pane-font-size: var(--a-ui-tiny);
|
|
4
|
+
--inspector-border: 1px solid var(--a-border-subtle);
|
|
5
|
+
--inspector-radius: var(--a-radius);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
:scope {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
overflow: hidden;
|
|
12
|
+
border: var(--inspector-border);
|
|
13
|
+
border-radius: var(--inspector-radius);
|
|
14
|
+
min-width: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* Inner tabs-ui fills the host */
|
|
18
|
+
:scope > tabs-ui {
|
|
19
|
+
flex: 1;
|
|
20
|
+
min-height: 0;
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: column;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/* Tab panes: code-ui children get a scrolling region and tiny UI font */
|
|
26
|
+
:scope tab-ui > code-ui {
|
|
27
|
+
display: block;
|
|
28
|
+
overflow: auto;
|
|
29
|
+
font-size: var(--inspector-pane-font-size);
|
|
30
|
+
}
|
|
31
|
+
}
|