@adia-ai/gen-ui 0.8.37
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/CHANGELOG.md +26 -0
- package/README.md +77 -0
- package/compose/CHANGELOG.md +1707 -0
- package/compose/README.md +215 -0
- package/compose/core/artifacts.js +262 -0
- package/compose/core/context-store.js +218 -0
- package/compose/core/generator.d.ts +4 -0
- package/compose/core/generator.js +602 -0
- package/compose/core/pipeline/engine.js +289 -0
- package/compose/core/pipeline/types.js +91 -0
- package/compose/core/plan-primitives.js +120 -0
- package/compose/core/plan-turn.js +145 -0
- package/compose/core/reference.js +150 -0
- package/compose/core/state.js +15 -0
- package/compose/evals/harness.d.ts +4 -0
- package/compose/evals/harness.mjs +193 -0
- package/compose/index.d.ts +4 -0
- package/compose/index.js +16 -0
- package/compose/shared/validate-and-repair.js +122 -0
- package/compose/strategies/_shared/chunk-loader.js +282 -0
- package/compose/strategies/cascade.d.ts +67 -0
- package/compose/strategies/cascade.js +165 -0
- package/compose/strategies/escalation.d.ts +13 -0
- package/compose/strategies/escalation.js +132 -0
- package/compose/strategies/free-form-composer/index.js +254 -0
- package/compose/strategies/free-form-composer/system-prompt.js +205 -0
- package/compose/strategies/free-form-composer/transpile.js +279 -0
- package/compose/strategies/monolithic/_shared.js +1619 -0
- package/compose/strategies/monolithic/generate-instant.js +228 -0
- package/compose/strategies/monolithic/generate-pro.js +490 -0
- package/compose/strategies/monolithic/generate-thinking.js +206 -0
- package/compose/strategies/registry.d.ts +20 -0
- package/compose/strategies/registry.js +495 -0
- package/compose/strategies/zettel/_smoke.js +27 -0
- package/compose/strategies/zettel/chunk-composer.js +214 -0
- package/compose/strategies/zettel/chunk-refiner.js +582 -0
- package/compose/strategies/zettel/chunk-synthesizer.js +458 -0
- package/compose/strategies/zettel/composer.js +78 -0
- package/compose/strategies/zettel/composition-library.js +418 -0
- package/compose/strategies/zettel/generate.js +15 -0
- package/compose/strategies/zettel/generator-adapter.d.ts +4 -0
- package/compose/strategies/zettel/generator-adapter.js +242 -0
- package/compose/strategies/zettel/issue-reporter.js +607 -0
- package/compose/strategies/zettel/session-store.js +121 -0
- package/compose/strategies/zettel/state-cache.js +158 -0
- package/compose/transpiler/transpiler-maps.js +675 -0
- package/compose/transpiler/transpiler.d.ts +4 -0
- package/compose/transpiler/transpiler.js +962 -0
- package/corpus/CHANGELOG.md +1957 -0
- package/corpus/README.md +279 -0
- package/corpus/catalog-a2ui_0_9.d.ts +4 -0
- package/corpus/catalog-a2ui_0_9.json +29571 -0
- package/corpus/catalog-a2ui_0_9_rules.txt +1215 -0
- package/corpus/chunk-embeddings.d.ts +4 -0
- package/corpus/chunk-embeddings.json +1 -0
- package/corpus/chunks/_index.json +16658 -0
- package/corpus/chunks/_source-hashes.json +571 -0
- package/corpus/chunks/access-denied-with-request.json +124 -0
- package/corpus/chunks/access-request-form.json +166 -0
- package/corpus/chunks/access-request-pending.json +133 -0
- package/corpus/chunks/accordion-settings.json +176 -0
- package/corpus/chunks/achievement-badges.json +413 -0
- package/corpus/chunks/achievement-unlock.json +104 -0
- package/corpus/chunks/action-list-record-actions.json +84 -0
- package/corpus/chunks/activity-feed.json +390 -0
- package/corpus/chunks/admin-page-header-flush.json +83 -0
- package/corpus/chunks/admin-page-header-title-description.json +80 -0
- package/corpus/chunks/admin-page-header-with-actions.json +107 -0
- package/corpus/chunks/admin-page-header-with-tabs.json +144 -0
- package/corpus/chunks/admin-shell-rounded-borderless.json +287 -0
- package/corpus/chunks/admin-shell-standard.json +310 -0
- package/corpus/chunks/admin-sidebar-brand-signin.json +158 -0
- package/corpus/chunks/admin-sidebar-brand-version.json +130 -0
- package/corpus/chunks/admin-sidebar-flat-nav.json +131 -0
- package/corpus/chunks/admin-sidebar-nav-dividers.json +150 -0
- package/corpus/chunks/admin-sidebar-nav-groups.json +171 -0
- package/corpus/chunks/admin-sidebar-workspace-switcher.json +139 -0
- package/corpus/chunks/admin-topbar-breadcrumb-actions.json +130 -0
- package/corpus/chunks/admin-topbar-breadcrumb-minimal.json +79 -0
- package/corpus/chunks/admin-topbar-deep-breadcrumb.json +129 -0
- package/corpus/chunks/admin-topbar-search.json +104 -0
- package/corpus/chunks/admin-topbar-status-indicator.json +122 -0
- package/corpus/chunks/admin-topbar-trailing-toggle.json +114 -0
- package/corpus/chunks/agent-activity-feed.json +163 -0
- package/corpus/chunks/agent-artifact-stub-card.json +115 -0
- package/corpus/chunks/agent-canvas-shell.json +305 -0
- package/corpus/chunks/agent-citations-source-chips.json +82 -0
- package/corpus/chunks/agent-command-palette-search.json +120 -0
- package/corpus/chunks/agent-cost-detailed.json +260 -0
- package/corpus/chunks/agent-cost-inline.json +78 -0
- package/corpus/chunks/agent-memory-detail.json +181 -0
- package/corpus/chunks/agent-memory-editor.json +173 -0
- package/corpus/chunks/agent-memory-list.json +207 -0
- package/corpus/chunks/agent-pipeline-status-stages.json +61 -0
- package/corpus/chunks/agent-prompt-card.json +179 -0
- package/corpus/chunks/agent-prompt-library-grid.json +341 -0
- package/corpus/chunks/agent-prompt-picker.json +282 -0
- package/corpus/chunks/agent-rate-limit.json +100 -0
- package/corpus/chunks/agent-reasoning-collapsed.json +128 -0
- package/corpus/chunks/agent-tool-call-accordion.json +109 -0
- package/corpus/chunks/agent-tool-call-collapsed.json +98 -0
- package/corpus/chunks/agent-tool-call-error.json +112 -0
- package/corpus/chunks/agent-tool-call-result.json +145 -0
- package/corpus/chunks/agent-tool-call-running.json +85 -0
- package/corpus/chunks/agent-tool-call-success.json +137 -0
- package/corpus/chunks/agent-trace-timeline.json +244 -0
- package/corpus/chunks/ai-streaming-response.json +147 -0
- package/corpus/chunks/alert-banner-stack.json +78 -0
- package/corpus/chunks/alert-banner.json +55 -0
- package/corpus/chunks/alert-dialog-simple.json +72 -0
- package/corpus/chunks/alert-dialog-typed.json +107 -0
- package/corpus/chunks/alert-dialog-unsaved.json +81 -0
- package/corpus/chunks/analytics-chart.json +213 -0
- package/corpus/chunks/analytics-sparklines-dashboard.json +259 -0
- package/corpus/chunks/anchor-bar-selection-bar.json +226 -0
- package/corpus/chunks/api-key-table.json +148 -0
- package/corpus/chunks/api-keys-create.json +140 -0
- package/corpus/chunks/api-keys-list.json +271 -0
- package/corpus/chunks/app-nav-badges-counts.json +77 -0
- package/corpus/chunks/app-nav-badges-group-rollup-badges.json +100 -0
- package/corpus/chunks/app-nav-badges-plan-tiers.json +76 -0
- package/corpus/chunks/app-nav-badges-status-callouts.json +75 -0
- package/corpus/chunks/app-nav-full-example.json +195 -0
- package/corpus/chunks/app-nav-groups.json +103 -0
- package/corpus/chunks/app-nav-items.json +74 -0
- package/corpus/chunks/app-nav-labels-and-dividers.json +92 -0
- package/corpus/chunks/app-nav-spacer.json +77 -0
- package/corpus/chunks/app-product-listing-card.json +214 -0
- package/corpus/chunks/approvals-detail.json +240 -0
- package/corpus/chunks/approvals-queue.json +321 -0
- package/corpus/chunks/audit-log-basic.json +184 -0
- package/corpus/chunks/audit-log.json +174 -0
- package/corpus/chunks/auth-account-deleted-actions.json +51 -0
- package/corpus/chunks/auth-account-deleted.json +202 -0
- package/corpus/chunks/auth-card-content.json +260 -0
- package/corpus/chunks/auth-card-header.json +205 -0
- package/corpus/chunks/auth-email-entry.json +65 -0
- package/corpus/chunks/auth-email-verify-confirm.json +52 -0
- package/corpus/chunks/auth-email-verify.json +196 -0
- package/corpus/chunks/auth-forbidden-actions.json +59 -0
- package/corpus/chunks/auth-forbidden.json +203 -0
- package/corpus/chunks/auth-invite-actions.json +49 -0
- package/corpus/chunks/auth-invite-team-card.json +86 -0
- package/corpus/chunks/auth-link-expired-form.json +65 -0
- package/corpus/chunks/auth-link-expired.json +196 -0
- package/corpus/chunks/auth-locked-account.json +211 -0
- package/corpus/chunks/auth-locked-recovery-options.json +60 -0
- package/corpus/chunks/auth-mfa-enrollment-submit.json +54 -0
- package/corpus/chunks/auth-mfa-enrollment.json +284 -0
- package/corpus/chunks/auth-mfa-fallback-actions.json +52 -0
- package/corpus/chunks/auth-mfa-recovery.json +61 -0
- package/corpus/chunks/auth-new-password-form.json +75 -0
- package/corpus/chunks/auth-new-password.json +217 -0
- package/corpus/chunks/auth-oauth-fallback-actions.json +52 -0
- package/corpus/chunks/auth-oauth-interstitial.json +160 -0
- package/corpus/chunks/auth-password-challenge.json +94 -0
- package/corpus/chunks/auth-password-reset-form.json +64 -0
- package/corpus/chunks/auth-password-reset.json +195 -0
- package/corpus/chunks/auth-profile-form.json +72 -0
- package/corpus/chunks/auth-profile-setup.json +194 -0
- package/corpus/chunks/auth-reset-sent.json +188 -0
- package/corpus/chunks/auth-session-expired-actions.json +52 -0
- package/corpus/chunks/auth-session-expired.json +201 -0
- package/corpus/chunks/auth-signin-card-email.json +245 -0
- package/corpus/chunks/auth-signin-card-magic-link.json +147 -0
- package/corpus/chunks/auth-signin-card-mfa.json +231 -0
- package/corpus/chunks/auth-signin-card-otp.json +205 -0
- package/corpus/chunks/auth-signin-card-password.json +264 -0
- package/corpus/chunks/auth-signin-card-recovery.json +218 -0
- package/corpus/chunks/auth-signout-actions.json +51 -0
- package/corpus/chunks/auth-signout.json +184 -0
- package/corpus/chunks/auth-signup-email-entry.json +66 -0
- package/corpus/chunks/auth-signup-entry.json +281 -0
- package/corpus/chunks/auth-signup-social-auths.json +54 -0
- package/corpus/chunks/auth-signup-verify.json +227 -0
- package/corpus/chunks/auth-social-auths.json +62 -0
- package/corpus/chunks/auth-sso-providers.json +55 -0
- package/corpus/chunks/auth-sso-required.json +213 -0
- package/corpus/chunks/auth-team-invite.json +288 -0
- package/corpus/chunks/avatar-group-overflow.json +137 -0
- package/corpus/chunks/avatar-stack-overflow.json +124 -0
- package/corpus/chunks/banner-announcement-beta.json +99 -0
- package/corpus/chunks/banner-announcement-promo.json +102 -0
- package/corpus/chunks/banner-live-update.json +102 -0
- package/corpus/chunks/banner-system-maintenance.json +101 -0
- package/corpus/chunks/banner-system-offline.json +85 -0
- package/corpus/chunks/banner-system-update.json +102 -0
- package/corpus/chunks/bell-menu-empty.json +107 -0
- package/corpus/chunks/bell-menu-unread.json +395 -0
- package/corpus/chunks/billing-cancel-subscription-danger.json +61 -0
- package/corpus/chunks/billing-invoice-history-table.json +75 -0
- package/corpus/chunks/billing-overview.json +202 -0
- package/corpus/chunks/billing-payment-method-card-on-file.json +157 -0
- package/corpus/chunks/billing-progress-label.json +101 -0
- package/corpus/chunks/blog-post-card.json +212 -0
- package/corpus/chunks/breadcrumb-navigation.json +72 -0
- package/corpus/chunks/bulk-action-toolbar-floating.json +199 -0
- package/corpus/chunks/bulk-action-toolbar-swap.json +158 -0
- package/corpus/chunks/bulk-selection-actions-bar.json +162 -0
- package/corpus/chunks/business-address-form.json +953 -0
- package/corpus/chunks/calendar-month-view.json +74 -0
- package/corpus/chunks/card-grid-images.json +459 -0
- package/corpus/chunks/card-header-with-description.json +47 -0
- package/corpus/chunks/card-with-empty-state.json +96 -0
- package/corpus/chunks/card-with-form.json +143 -0
- package/corpus/chunks/card-with-sparkline.json +90 -0
- package/corpus/chunks/card-with-stat-kpi.json +86 -0
- package/corpus/chunks/changelog-feed-basic.json +470 -0
- package/corpus/chunks/chart-in-card-chart-plus-breakdown.json +188 -0
- package/corpus/chunks/chart-in-card-chart-plus-stat.json +89 -0
- package/corpus/chunks/chart-in-card-chart-with-filter-pills.json +124 -0
- package/corpus/chunks/chart-in-card-full-bleed-legend.json +116 -0
- package/corpus/chunks/chart-in-card-full-chart.json +107 -0
- package/corpus/chunks/chart-in-card-sparkline-tile.json +93 -0
- package/corpus/chunks/chart-in-card-stat-with-sparkline.json +73 -0
- package/corpus/chunks/chart-in-card-trend-footer.json +115 -0
- package/corpus/chunks/chart-with-filter-pills.json +169 -0
- package/corpus/chunks/chat-empty-state-hero.json +102 -0
- package/corpus/chunks/chat-message-assistant-byline.json +85 -0
- package/corpus/chunks/chat-message-user-byline.json +84 -0
- package/corpus/chunks/chat-page-shell.json +379 -0
- package/corpus/chunks/chat-streaming-surface.json +169 -0
- package/corpus/chunks/checkout-order-summary-card.json +140 -0
- package/corpus/chunks/code-snippet.json +107 -0
- package/corpus/chunks/col-form-stack.json +93 -0
- package/corpus/chunks/col-heading-body-action.json +79 -0
- package/corpus/chunks/col-stat-label.json +63 -0
- package/corpus/chunks/color-picker-swatches.json +153 -0
- package/corpus/chunks/command-palette.json +327 -0
- package/corpus/chunks/comments-composer.json +158 -0
- package/corpus/chunks/comments-mention-menu.json +237 -0
- package/corpus/chunks/comments-thread.json +344 -0
- package/corpus/chunks/commerce-pricing-tiers.json +401 -0
- package/corpus/chunks/comparison-table.json +246 -0
- package/corpus/chunks/contact-form-card.json +197 -0
- package/corpus/chunks/contact-form.json +157 -0
- package/corpus/chunks/contact-support-form.json +702 -0
- package/corpus/chunks/conversion-funnel-4-step-funnel.json +139 -0
- package/corpus/chunks/conversion-funnel-6step.json +151 -0
- package/corpus/chunks/conversion-funnel-wide-summary.json +192 -0
- package/corpus/chunks/conversion-funnel-with-segment-compare.json +202 -0
- package/corpus/chunks/cta-banner-centered.json +102 -0
- package/corpus/chunks/dashboard-acquisition-panel.json +212 -0
- package/corpus/chunks/dashboard-admin-page.json +104 -0
- package/corpus/chunks/dashboard-audience-kpis.json +165 -0
- package/corpus/chunks/dashboard-audience-panel.json +756 -0
- package/corpus/chunks/dashboard-behavior-panel.json +114 -0
- package/corpus/chunks/dashboard-chart-recent.json +566 -0
- package/corpus/chunks/dashboard-cohort-retention.json +83 -0
- package/corpus/chunks/dashboard-conversion-panel.json +234 -0
- package/corpus/chunks/dashboard-country-list.json +304 -0
- package/corpus/chunks/dashboard-filter-bar.json +118 -0
- package/corpus/chunks/dashboard-funnel.json +142 -0
- package/corpus/chunks/dashboard-notifications-panel.json +423 -0
- package/corpus/chunks/dashboard-overview-panel.json +1644 -0
- package/corpus/chunks/dashboard-page-header.json +166 -0
- package/corpus/chunks/dashboard-pages-table.json +86 -0
- package/corpus/chunks/dashboard-quick-actions.json +116 -0
- package/corpus/chunks/dashboard-reports-panel.json +166 -0
- package/corpus/chunks/dashboard-reports-table.json +138 -0
- package/corpus/chunks/dashboard-storage-card.json +117 -0
- package/corpus/chunks/dashboard-tabs.json +86 -0
- package/corpus/chunks/dashboard-team-actions-storage.json +605 -0
- package/corpus/chunks/dashboard-team-list.json +334 -0
- package/corpus/chunks/dashboard-traffic-channels.json +184 -0
- package/corpus/chunks/dashboard-transactions-table.json +145 -0
- package/corpus/chunks/data-export-history.json +192 -0
- package/corpus/chunks/data-export-request.json +197 -0
- package/corpus/chunks/data-import-wizard.json +391 -0
- package/corpus/chunks/date-range-picker.json +156 -0
- package/corpus/chunks/date-time-picker-form.json +222 -0
- package/corpus/chunks/departments-checkbox-form.json +390 -0
- package/corpus/chunks/destructive-confirm-modal.json +149 -0
- package/corpus/chunks/diff-inline.json +84 -0
- package/corpus/chunks/diff-side-by-side.json +131 -0
- package/corpus/chunks/diff-structured.json +216 -0
- package/corpus/chunks/digest-email-preview.json +374 -0
- package/corpus/chunks/divider-text-label.json +87 -0
- package/corpus/chunks/doc-editor-shell.json +356 -0
- package/corpus/chunks/drawer-2fa-key.json +273 -0
- package/corpus/chunks/drawer-2fa-sms.json +261 -0
- package/corpus/chunks/drawer-2fa-totp.json +385 -0
- package/corpus/chunks/drawer-cancel-sub.json +636 -0
- package/corpus/chunks/drawer-change-plan.json +561 -0
- package/corpus/chunks/drawer-custom-roles.json +696 -0
- package/corpus/chunks/drawer-data-start.json +171 -0
- package/corpus/chunks/drawer-delete-account.json +341 -0
- package/corpus/chunks/drawer-delete-workspace.json +362 -0
- package/corpus/chunks/drawer-discord.json +434 -0
- package/corpus/chunks/drawer-figma.json +401 -0
- package/corpus/chunks/drawer-first-dashboard.json +220 -0
- package/corpus/chunks/drawer-gcal.json +475 -0
- package/corpus/chunks/drawer-github.json +589 -0
- package/corpus/chunks/drawer-invite.json +397 -0
- package/corpus/chunks/drawer-record-detail.json +44 -0
- package/corpus/chunks/drawer-report.json +528 -0
- package/corpus/chunks/drawer-revoke-session.json +331 -0
- package/corpus/chunks/drawer-role.json +190 -0
- package/corpus/chunks/drawer-slack.json +429 -0
- package/corpus/chunks/drawer-smtp.json +476 -0
- package/corpus/chunks/drawer-source.json +294 -0
- package/corpus/chunks/drawer-transaction.json +493 -0
- package/corpus/chunks/drawer-with-create-form.json +43 -0
- package/corpus/chunks/editor-code-pane.json +204 -0
- package/corpus/chunks/editor-page-shell.json +149 -0
- package/corpus/chunks/editor-preview-pane.json +136 -0
- package/corpus/chunks/editor-statusbar-ready.json +99 -0
- package/corpus/chunks/editor-toolbar-import-export.json +195 -0
- package/corpus/chunks/email-inbox-list.json +678 -0
- package/corpus/chunks/empty-state-danger.json +58 -0
- package/corpus/chunks/empty-state-minimal.json +44 -0
- package/corpus/chunks/empty-state-warning.json +53 -0
- package/corpus/chunks/empty-state.json +65 -0
- package/corpus/chunks/error-404-actions.json +54 -0
- package/corpus/chunks/error-404.json +204 -0
- package/corpus/chunks/error-500-actions.json +61 -0
- package/corpus/chunks/error-500.json +220 -0
- package/corpus/chunks/error-maintenance-actions.json +53 -0
- package/corpus/chunks/error-maintenance.json +203 -0
- package/corpus/chunks/error-page-shell.json +132 -0
- package/corpus/chunks/export-flow-async.json +210 -0
- package/corpus/chunks/export-flow-delivery.json +163 -0
- package/corpus/chunks/export-flow-sync.json +162 -0
- package/corpus/chunks/extended-profile-form.json +512 -0
- package/corpus/chunks/faq-accordion.json +123 -0
- package/corpus/chunks/feature-grid-icons.json +314 -0
- package/corpus/chunks/feature-grid-three-cards.json +187 -0
- package/corpus/chunks/feature-toggle-switch-grid.json +213 -0
- package/corpus/chunks/file-upload-dnd.json +166 -0
- package/corpus/chunks/file-upload-field.json +97 -0
- package/corpus/chunks/file-upload-form.json +251 -0
- package/corpus/chunks/filter-bar-active-filters.json +176 -0
- package/corpus/chunks/filter-bar-filter-bar-with-table.json +113 -0
- package/corpus/chunks/filter-bar-saved-views.json +117 -0
- package/corpus/chunks/filter-popover-form.json +137 -0
- package/corpus/chunks/footer-multi-column.json +270 -0
- package/corpus/chunks/footer-primary-only.json +41 -0
- package/corpus/chunks/form-checkbox-group.json +65 -0
- package/corpus/chunks/form-drawer-edit-form.json +178 -0
- package/corpus/chunks/form-drawer-simple-form.json +151 -0
- package/corpus/chunks/form-drawer-tall-form.json +325 -0
- package/corpus/chunks/form-field-email-hint.json +53 -0
- package/corpus/chunks/form-field-range.json +54 -0
- package/corpus/chunks/form-field-required.json +52 -0
- package/corpus/chunks/form-field-select.json +66 -0
- package/corpus/chunks/form-field-textarea.json +51 -0
- package/corpus/chunks/form-field-with-error.json +151 -0
- package/corpus/chunks/form-fields-two-column.json +69 -0
- package/corpus/chunks/form-page-shell.json +146 -0
- package/corpus/chunks/form-switch-toggle.json +41 -0
- package/corpus/chunks/form-system-live-demo.json +123 -0
- package/corpus/chunks/forms-address-autocomplete.json +277 -0
- package/corpus/chunks/forms-address-fields.json +221 -0
- package/corpus/chunks/forms-conditional-reveal.json +195 -0
- package/corpus/chunks/gallery-page-shell.json +444 -0
- package/corpus/chunks/grid-2col-entry-cards.json +140 -0
- package/corpus/chunks/grid-kpi-4col.json +164 -0
- package/corpus/chunks/grid-responsive-kpi.json +165 -0
- package/corpus/chunks/hero-cta-simple.json +107 -0
- package/corpus/chunks/hero-cta-split.json +183 -0
- package/corpus/chunks/hero-section-split.json +111 -0
- package/corpus/chunks/icon-text-row.json +60 -0
- package/corpus/chunks/image-caption-tile.json +99 -0
- package/corpus/chunks/image-carousel.json +156 -0
- package/corpus/chunks/image-thumbnail-grid.json +77 -0
- package/corpus/chunks/image-upload-preview.json +118 -0
- package/corpus/chunks/import-mapping-flow.json +972 -0
- package/corpus/chunks/inline-dialog-rename.json +128 -0
- package/corpus/chunks/inline-dialog-schedule.json +154 -0
- package/corpus/chunks/inline-dialog-status.json +179 -0
- package/corpus/chunks/integrations-api-keys-card-list.json +475 -0
- package/corpus/chunks/integrations-connect-form.json +550 -0
- package/corpus/chunks/integrations-grid.json +141 -0
- package/corpus/chunks/integrations-webhooks-empty-state.json +66 -0
- package/corpus/chunks/inventory-list-stock.json +137 -0
- package/corpus/chunks/invite-members.json +153 -0
- package/corpus/chunks/invoice-line-items.json +493 -0
- package/corpus/chunks/kanban-board-3col.json +713 -0
- package/corpus/chunks/kanban-page-shell.json +671 -0
- package/corpus/chunks/key-value-detail-list.json +242 -0
- package/corpus/chunks/keyboard-shortcut-display.json +250 -0
- package/corpus/chunks/labeled-textarea.json +45 -0
- package/corpus/chunks/leaderboard-table.json +140 -0
- package/corpus/chunks/library-browser-search-filter.json +109 -0
- package/corpus/chunks/linked-record-row.json +61 -0
- package/corpus/chunks/loading-skeleton-placeholder.json +387 -0
- package/corpus/chunks/login-form-card.json +207 -0
- package/corpus/chunks/logo-cloud-trusted-by.json +235 -0
- package/corpus/chunks/map-with-location-list.json +293 -0
- package/corpus/chunks/marketing-hero-cta.json +102 -0
- package/corpus/chunks/marketing-page-shell.json +352 -0
- package/corpus/chunks/masonry-gallery.json +154 -0
- package/corpus/chunks/member-edit-drawer.json +236 -0
- package/corpus/chunks/members-active-table-search-filter.json +184 -0
- package/corpus/chunks/members-pending-invites-cards.json +251 -0
- package/corpus/chunks/members-roles-permissions-list.json +146 -0
- package/corpus/chunks/menu-context-actions.json +113 -0
- package/corpus/chunks/metadata-description-list.json +178 -0
- package/corpus/chunks/modal-create-project-form.json +133 -0
- package/corpus/chunks/modal-preferences-tabs.json +147 -0
- package/corpus/chunks/multi-field-form-validation.json +394 -0
- package/corpus/chunks/nav-menu-icons.json +74 -0
- package/corpus/chunks/newsletter-subscription.json +190 -0
- package/corpus/chunks/notification-badges-feed.json +411 -0
- package/corpus/chunks/notification-preferences-panel.json +238 -0
- package/corpus/chunks/onb-completion.json +139 -0
- package/corpus/chunks/onb-extension-install.json +172 -0
- package/corpus/chunks/onb-hero-welcome.json +156 -0
- package/corpus/chunks/onb-import-picker.json +86 -0
- package/corpus/chunks/onb-mobile-handoff.json +121 -0
- package/corpus/chunks/onb-notification-prefs.json +83 -0
- package/corpus/chunks/onb-persona-picker.json +82 -0
- package/corpus/chunks/onb-provider-tiles.json +137 -0
- package/corpus/chunks/onb-settings-review.json +257 -0
- package/corpus/chunks/onb-step-footer.json +121 -0
- package/corpus/chunks/onb-step-header.json +121 -0
- package/corpus/chunks/onb-step-progress.json +140 -0
- package/corpus/chunks/onb-step-shell.json +380 -0
- package/corpus/chunks/onb-story-pane.json +121 -0
- package/corpus/chunks/onb-tutorial-steps.json +193 -0
- package/corpus/chunks/order-confirmation-success-card.json +177 -0
- package/corpus/chunks/order-tracking-timeline.json +131 -0
- package/corpus/chunks/pagination-controls.json +82 -0
- package/corpus/chunks/pane-settings-sidebar.json +204 -0
- package/corpus/chunks/patient-visit-shell.json +191 -0
- package/corpus/chunks/payment-checkout-form.json +341 -0
- package/corpus/chunks/payment-method-form.json +328 -0
- package/corpus/chunks/period-comparison.json +236 -0
- package/corpus/chunks/permission-matrix-table.json +438 -0
- package/corpus/chunks/permissions-matrix-grid.json +111 -0
- package/corpus/chunks/permissions-matrix-summary.json +157 -0
- package/corpus/chunks/permissions-role-picker-radio.json +107 -0
- package/corpus/chunks/permissions-role-picker-select.json +101 -0
- package/corpus/chunks/permissions-share-link.json +256 -0
- package/corpus/chunks/permissions-share-people.json +297 -0
- package/corpus/chunks/permissions-sharing-scopes.json +109 -0
- package/corpus/chunks/plan-selection-form.json +529 -0
- package/corpus/chunks/playground-a2ui.json +181 -0
- package/corpus/chunks/playground-agent-admin.json +117 -0
- package/corpus/chunks/playground-agent-chat.json +126 -0
- package/corpus/chunks/playground-app-shell.json +488 -0
- package/corpus/chunks/playground-chat.json +265 -0
- package/corpus/chunks/playground-construct-canvas.json +118 -0
- package/corpus/chunks/playground-css-channel.json +487 -0
- package/corpus/chunks/playground-gen-ui.json +224 -0
- package/corpus/chunks/playground-render-preview.json +369 -0
- package/corpus/chunks/playground-streams-bridge.json +437 -0
- package/corpus/chunks/playground-table-toolbar.json +38 -0
- package/corpus/chunks/popover-with-content.json +118 -0
- package/corpus/chunks/pricing-tiers.json +561 -0
- package/corpus/chunks/product-tour.json +158 -0
- package/corpus/chunks/profile-public.json +297 -0
- package/corpus/chunks/progress-tracker-milestones.json +294 -0
- package/corpus/chunks/radio-button-group.json +83 -0
- package/corpus/chunks/rating-stars-review-summary.json +259 -0
- package/corpus/chunks/reactions-bar.json +75 -0
- package/corpus/chunks/reactions-picker.json +245 -0
- package/corpus/chunks/real-time-metrics-dashboard.json +344 -0
- package/corpus/chunks/record-detail-drawer-simple-detail.json +296 -0
- package/corpus/chunks/record-detail-drawer-tabbed-detail.json +443 -0
- package/corpus/chunks/referral-share-link.json +128 -0
- package/corpus/chunks/referral-status.json +243 -0
- package/corpus/chunks/reg-address-form.json +825 -0
- package/corpus/chunks/reg-billing-card.json +210 -0
- package/corpus/chunks/reg-brand-scrape.json +599 -0
- package/corpus/chunks/reg-departments-toggle.json +259 -0
- package/corpus/chunks/reg-extended-profile.json +356 -0
- package/corpus/chunks/reg-final-done.json +457 -0
- package/corpus/chunks/reg-helpdesk-grid.json +571 -0
- package/corpus/chunks/reg-import-picker.json +112 -0
- package/corpus/chunks/reg-integrations-grid.json +418 -0
- package/corpus/chunks/reg-invite-form.json +245 -0
- package/corpus/chunks/reg-legal-entity.json +260 -0
- package/corpus/chunks/reg-org-chart-review.json +891 -0
- package/corpus/chunks/reg-profile-identity.json +188 -0
- package/corpus/chunks/reg-step-footer.json +201 -0
- package/corpus/chunks/reg-step-header.json +201 -0
- package/corpus/chunks/reg-step-progress.json +236 -0
- package/corpus/chunks/reg-step-shell.json +605 -0
- package/corpus/chunks/reg-story-pane.json +201 -0
- package/corpus/chunks/reg-success-summary.json +257 -0
- package/corpus/chunks/reg-team-size.json +128 -0
- package/corpus/chunks/reg-usecase-picker.json +104 -0
- package/corpus/chunks/reg-workspace-name.json +159 -0
- package/corpus/chunks/responsive-grid-pattern.json +71 -0
- package/corpus/chunks/responsive-kpi-grid.json +166 -0
- package/corpus/chunks/responsive-row-pattern.json +71 -0
- package/corpus/chunks/responsive-shell-sidebar.json +308 -0
- package/corpus/chunks/responsive-wrap-at-pattern.json +124 -0
- package/corpus/chunks/retention-cohort-default-retention.json +80 -0
- package/corpus/chunks/retention-cohort-stat-pair.json +163 -0
- package/corpus/chunks/retention-cohort-with-legend.json +135 -0
- package/corpus/chunks/revenue-heatmap.json +82 -0
- package/corpus/chunks/role-management.json +272 -0
- package/corpus/chunks/row-action-cluster.json +54 -0
- package/corpus/chunks/row-avatar-name-role.json +71 -0
- package/corpus/chunks/row-icon-label.json +52 -0
- package/corpus/chunks/row-spread-label-value.json +54 -0
- package/corpus/chunks/row-wrap-tags.json +72 -0
- package/corpus/chunks/schedule-meeting-form-card.json +229 -0
- package/corpus/chunks/search-recents-menu.json +195 -0
- package/corpus/chunks/search-results-grouped.json +357 -0
- package/corpus/chunks/search-results-list.json +202 -0
- package/corpus/chunks/search-saved-views.json +356 -0
- package/corpus/chunks/search-with-filters.json +311 -0
- package/corpus/chunks/searchable-picker-modal.json +164 -0
- package/corpus/chunks/section-with-stack.json +48 -0
- package/corpus/chunks/security-active-sessions-devices.json +287 -0
- package/corpus/chunks/security-change-password-form.json +102 -0
- package/corpus/chunks/security-delete-account-danger.json +79 -0
- package/corpus/chunks/segmented-control-billing-tabs.json +164 -0
- package/corpus/chunks/select-multiple-preselected.json +70 -0
- package/corpus/chunks/settings-2fa-setup.json +307 -0
- package/corpus/chunks/settings-admin-page.json +1205 -0
- package/corpus/chunks/settings-appearance-primitives.json +145 -0
- package/corpus/chunks/settings-appearance-theme-panel.json +55 -0
- package/corpus/chunks/settings-appearance.json +81 -0
- package/corpus/chunks/settings-danger-zone-delete-workspace.json +93 -0
- package/corpus/chunks/settings-general-form.json +69 -0
- package/corpus/chunks/settings-integrations.json +298 -0
- package/corpus/chunks/settings-members-invite.json +112 -0
- package/corpus/chunks/settings-notification-activity-checkboxes.json +108 -0
- package/corpus/chunks/settings-notification-channels-switches.json +101 -0
- package/corpus/chunks/settings-page-shell.json +190 -0
- package/corpus/chunks/settings-privacy.json +83 -0
- package/corpus/chunks/settings-profile-security.json +122 -0
- package/corpus/chunks/settings-toggle-switches.json +66 -0
- package/corpus/chunks/sidebar-nav.json +120 -0
- package/corpus/chunks/sidebar-navigation-panel.json +165 -0
- package/corpus/chunks/signup-form-card.json +218 -0
- package/corpus/chunks/signup-team-size-form.json +259 -0
- package/corpus/chunks/single-select-card-form.json +231 -0
- package/corpus/chunks/slider-range-controls.json +119 -0
- package/corpus/chunks/social-media-post-card.json +159 -0
- package/corpus/chunks/sortable-list.json +307 -0
- package/corpus/chunks/sortable-search-paginate-table.json +162 -0
- package/corpus/chunks/split-pane-editor.json +146 -0
- package/corpus/chunks/stack-avatar-badge-overlay.json +53 -0
- package/corpus/chunks/stack-image-shimmer.json +51 -0
- package/corpus/chunks/stat-cards-kpi-dashboard.json +178 -0
- package/corpus/chunks/stats-band-big-numbers.json +175 -0
- package/corpus/chunks/status-dashboard.json +282 -0
- package/corpus/chunks/stepper-form-wizard.json +165 -0
- package/corpus/chunks/subscription-status-renewal-card.json +285 -0
- package/corpus/chunks/survey-rating-form.json +165 -0
- package/corpus/chunks/swiper-product-carousel.json +349 -0
- package/corpus/chunks/swiper-testimonial-carousel.json +279 -0
- package/corpus/chunks/table-empty-state.json +116 -0
- package/corpus/chunks/table-inline-edit-row.json +269 -0
- package/corpus/chunks/table-spreadsheet-cells.json +334 -0
- package/corpus/chunks/table-toolbar-no-search.json +42 -0
- package/corpus/chunks/table-toolbar-with-table.json +208 -0
- package/corpus/chunks/table-with-toolbar-card.json +80 -0
- package/corpus/chunks/tabs-with-panels.json +187 -0
- package/corpus/chunks/tag-chips-filter.json +100 -0
- package/corpus/chunks/team-invite-form.json +380 -0
- package/corpus/chunks/team-members-list.json +341 -0
- package/corpus/chunks/testimonial-grid.json +269 -0
- package/corpus/chunks/testimonial-pull-quote.json +137 -0
- package/corpus/chunks/testimonials-avatar-cards.json +286 -0
- package/corpus/chunks/timeline-events.json +89 -0
- package/corpus/chunks/timezone-selector-basic.json +99 -0
- package/corpus/chunks/timezone-selector-preview.json +104 -0
- package/corpus/chunks/toolbar-icons.json +216 -0
- package/corpus/chunks/toolbar-rich-text-editor.json +230 -0
- package/corpus/chunks/toolbar-tooltips.json +191 -0
- package/corpus/chunks/tooltip-hover-button.json +106 -0
- package/corpus/chunks/tree-file-explorer.json +136 -0
- package/corpus/chunks/tree-table-basic.json +171 -0
- package/corpus/chunks/trial-banner.json +158 -0
- package/corpus/chunks/url-import-form.json +728 -0
- package/corpus/chunks/usage-quota-meter-card.json +217 -0
- package/corpus/chunks/user-identity-row.json +81 -0
- package/corpus/chunks/user-onboarding-checklist.json +301 -0
- package/corpus/chunks/user-profile-card.json +192 -0
- package/corpus/chunks/users-table-badge.json +135 -0
- package/corpus/chunks/verification-document-upload.json +179 -0
- package/corpus/chunks/verification-status.json +97 -0
- package/corpus/chunks/verification-stepper.json +111 -0
- package/corpus/chunks/video-player-controls.json +120 -0
- package/corpus/chunks/webhook-config.json +209 -0
- package/corpus/chunks/webhooks-list.json +204 -0
- package/corpus/chunks/wizard-drawer-three-step-wizard.json +443 -0
- package/corpus/manifest.d.ts +4 -0
- package/corpus/manifest.json +6 -0
- package/corpus/scripts/chunk-library.d.ts +4 -0
- package/corpus/scripts/chunk-library.js +335 -0
- package/node-shims.d.ts +48 -0
- package/package.json +215 -0
- package/retrieval/CHANGELOG.md +1073 -0
- package/retrieval/README.md +71 -0
- package/retrieval/anti-patterns.js +189 -0
- package/retrieval/authoring/index.d.ts +4 -0
- package/retrieval/authoring/index.js +9 -0
- package/retrieval/authoring/web-research.js +220 -0
- package/retrieval/catalog.js +250 -0
- package/retrieval/component-catalog.js +168 -0
- package/retrieval/component-entry.js +80 -0
- package/retrieval/context-assembler.js +174 -0
- package/retrieval/domain-router.js +417 -0
- package/retrieval/embedding/chunk-embedding-retriever.js +117 -0
- package/retrieval/embedding/embedding-provider.js +72 -0
- package/retrieval/embedding/index.d.ts +4 -0
- package/retrieval/embedding/index.js +2 -0
- package/retrieval/feedback/dialog-recorder.js +107 -0
- package/retrieval/feedback/feedback-analyzer.js +180 -0
- package/retrieval/feedback/feedback-store.js +194 -0
- package/retrieval/feedback/feedback.js +117 -0
- package/retrieval/feedback/gap-registry.js +80 -0
- package/retrieval/feedback/human-signal.js +113 -0
- package/retrieval/feedback/index.d.ts +4 -0
- package/retrieval/feedback/index.js +24 -0
- package/retrieval/feedback/submit-feedback.js +45 -0
- package/retrieval/index.d.ts +4 -0
- package/retrieval/index.js +53 -0
- package/retrieval/intent/clarity.js +139 -0
- package/retrieval/intent/decomposer.js +124 -0
- package/retrieval/intent/index.d.ts +4 -0
- package/retrieval/intent/index.js +18 -0
- package/retrieval/intent/intent-alignment.js +172 -0
- package/retrieval/intent/intent-categorizer.js +69 -0
- package/retrieval/intent/intent-gate.js +96 -0
- package/retrieval/intent/prompt-analyzer.js +162 -0
- package/retrieval/wiring-catalog.js +168 -0
- package/validate/catalog-validator.d.ts +4 -0
- package/validate/catalog-validator.js +327 -0
- package/validate/semantic/cache.js +54 -0
- package/validate/semantic/classify-intent.js +128 -0
- package/validate/semantic/index.js +163 -0
- package/validate/semantic/intent-specs.js +162 -0
- package/validate/semantic/judge.js +180 -0
|
@@ -0,0 +1,1644 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dashboard-overview-panel",
|
|
3
|
+
"kind": "panel",
|
|
4
|
+
"primary": "col-ui",
|
|
5
|
+
"page": "/apps/saas/app/admin-dashboard/admin-dashboard.contents.html",
|
|
6
|
+
"slots": [],
|
|
7
|
+
"nested": [
|
|
8
|
+
"stat-cards-kpi-dashboard",
|
|
9
|
+
"dashboard-chart-recent",
|
|
10
|
+
"card-header-with-description",
|
|
11
|
+
"analytics-sparklines-dashboard",
|
|
12
|
+
"dashboard-transactions-table",
|
|
13
|
+
"dashboard-team-actions-storage",
|
|
14
|
+
"dashboard-team-list",
|
|
15
|
+
"dashboard-quick-actions",
|
|
16
|
+
"dashboard-storage-card"
|
|
17
|
+
],
|
|
18
|
+
"attrs": {
|
|
19
|
+
"data-tab-panel": "overview",
|
|
20
|
+
"gap": "4"
|
|
21
|
+
},
|
|
22
|
+
"html": "<col-ui data-tab-panel=\"overview\" gap=\"4\">\n <!-- ═══ ROW 1: 4 KPI STAT CARDS ═══ -->\n <grid-ui columns=\"2 4@lg\" gap=\"4\"><!-- nested: stat-cards-kpi-dashboard --></grid-ui>\n\n <!-- ═══ ROW 3: OVERVIEW CHART + RECENT SALES (3:2) ═══ -->\n <grid-ui columns=\"1 5@md\" gap=\"4\"><!-- nested: dashboard-chart-recent --></grid-ui>\n\n <!-- ═══ ROW 4: 4 SPARKLINE METRIC CARDS ═══ -->\n <grid-ui columns=\"2 4@lg\" gap=\"4\"><!-- nested: analytics-sparklines-dashboard --></grid-ui>\n\n <!-- ═══ ROW 5: TRANSACTIONS TABLE ═══\n Supports ?state=empty|loading|error URL params for state-coverage\n demos; the default state renders the populated table. -->\n <grid-ui><!-- nested: dashboard-transactions-table --></grid-ui>\n\n <!-- ═══ ROW 6: TEAM + QUICK ACTIONS + STORAGE ═══ -->\n <grid-ui columns=\"1 3@lg\" gap=\"4\"><!-- nested: dashboard-team-actions-storage --></grid-ui>\n </col-ui>",
|
|
23
|
+
"source": "apps/saas/app/admin-dashboard/admin-dashboard.contents.html",
|
|
24
|
+
"metadata": {
|
|
25
|
+
"domain": "dashboard",
|
|
26
|
+
"description": "Overview analytics panel: KPI grid + recent-activity chart + spark cards + transactions table + team/actions/storage strip.",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"overview",
|
|
29
|
+
"dashboard",
|
|
30
|
+
"kpi",
|
|
31
|
+
"metrics",
|
|
32
|
+
"chart",
|
|
33
|
+
"activity",
|
|
34
|
+
"sparkline",
|
|
35
|
+
"transactions",
|
|
36
|
+
"team",
|
|
37
|
+
"storage"
|
|
38
|
+
],
|
|
39
|
+
"related": [
|
|
40
|
+
"dashboard-kpi-grid",
|
|
41
|
+
"dashboard-chart-recent",
|
|
42
|
+
"dashboard-spark-cards",
|
|
43
|
+
"dashboard-team-actions-storage"
|
|
44
|
+
],
|
|
45
|
+
"tags": {
|
|
46
|
+
"complexity": "complex",
|
|
47
|
+
"layout": "panel"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"captured_at": "2026-08-10T18:10:27.206Z",
|
|
51
|
+
"template": [
|
|
52
|
+
{
|
|
53
|
+
"id": "stat",
|
|
54
|
+
"component": "Stat",
|
|
55
|
+
"change": "+20.1%",
|
|
56
|
+
"icon": "currency-dollar",
|
|
57
|
+
"label": "Total Revenue",
|
|
58
|
+
"trend": "up",
|
|
59
|
+
"value": "$45,231.89"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"id": "section",
|
|
63
|
+
"component": "Section",
|
|
64
|
+
"children": [
|
|
65
|
+
"column"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "column",
|
|
70
|
+
"component": "Column",
|
|
71
|
+
"children": [
|
|
72
|
+
"stat"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "card",
|
|
77
|
+
"component": "Card",
|
|
78
|
+
"children": [
|
|
79
|
+
"section"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "stat-2",
|
|
84
|
+
"component": "Stat",
|
|
85
|
+
"change": "+180.1%",
|
|
86
|
+
"icon": "users",
|
|
87
|
+
"label": "Subscriptions",
|
|
88
|
+
"trend": "up",
|
|
89
|
+
"value": "+2,350"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": "section-2",
|
|
93
|
+
"component": "Section",
|
|
94
|
+
"children": [
|
|
95
|
+
"column-2"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": "column-2",
|
|
100
|
+
"component": "Column",
|
|
101
|
+
"children": [
|
|
102
|
+
"stat-2"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": "card-2",
|
|
107
|
+
"component": "Card",
|
|
108
|
+
"children": [
|
|
109
|
+
"section-2"
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"id": "stat-3",
|
|
114
|
+
"component": "Stat",
|
|
115
|
+
"change": "+19%",
|
|
116
|
+
"icon": "credit-card",
|
|
117
|
+
"label": "Sales",
|
|
118
|
+
"trend": "up",
|
|
119
|
+
"value": "+12,234"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "section-3",
|
|
123
|
+
"component": "Section",
|
|
124
|
+
"children": [
|
|
125
|
+
"column-3"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "column-3",
|
|
130
|
+
"component": "Column",
|
|
131
|
+
"children": [
|
|
132
|
+
"stat-3"
|
|
133
|
+
]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "card-3",
|
|
137
|
+
"component": "Card",
|
|
138
|
+
"children": [
|
|
139
|
+
"section-3"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "stat-4",
|
|
144
|
+
"component": "Stat",
|
|
145
|
+
"change": "+201",
|
|
146
|
+
"icon": "chart-bar",
|
|
147
|
+
"label": "Active Now",
|
|
148
|
+
"trend": "up",
|
|
149
|
+
"value": "+573"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"id": "section-4",
|
|
153
|
+
"component": "Section",
|
|
154
|
+
"children": [
|
|
155
|
+
"column-4"
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"id": "column-4",
|
|
160
|
+
"component": "Column",
|
|
161
|
+
"children": [
|
|
162
|
+
"stat-4"
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"id": "card-4",
|
|
167
|
+
"component": "Card",
|
|
168
|
+
"children": [
|
|
169
|
+
"section-4"
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"id": "grid-2",
|
|
174
|
+
"component": "Grid",
|
|
175
|
+
"columns": "2 4@lg",
|
|
176
|
+
"gap": "4",
|
|
177
|
+
"children": [
|
|
178
|
+
"card",
|
|
179
|
+
"card-2",
|
|
180
|
+
"card-3",
|
|
181
|
+
"card-4"
|
|
182
|
+
]
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"id": "grid",
|
|
186
|
+
"component": "Grid",
|
|
187
|
+
"columns": "2 4@lg",
|
|
188
|
+
"gap": "4",
|
|
189
|
+
"children": [
|
|
190
|
+
"grid-2"
|
|
191
|
+
]
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"id": "text",
|
|
195
|
+
"component": "Text",
|
|
196
|
+
"variant": "heading",
|
|
197
|
+
"textContent": "Overview"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"id": "text-2",
|
|
201
|
+
"component": "Text",
|
|
202
|
+
"slot": "description",
|
|
203
|
+
"color": "subtle",
|
|
204
|
+
"textContent": "Monthly revenue for 2026"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"id": "header-2",
|
|
208
|
+
"component": "Header",
|
|
209
|
+
"children": [
|
|
210
|
+
"text",
|
|
211
|
+
"text-2"
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"id": "header",
|
|
216
|
+
"component": "Header",
|
|
217
|
+
"children": [
|
|
218
|
+
"header-2"
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"id": "dash-overview",
|
|
223
|
+
"component": "Chart",
|
|
224
|
+
"type": "bar",
|
|
225
|
+
"hideValues": true,
|
|
226
|
+
"x": "month",
|
|
227
|
+
"y": "revenue"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": "stat-5",
|
|
231
|
+
"component": "Stat",
|
|
232
|
+
"change": "+12% vs last month",
|
|
233
|
+
"label": "This Month",
|
|
234
|
+
"trend": "up",
|
|
235
|
+
"value": "$5,400"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"id": "section-6",
|
|
239
|
+
"component": "Section",
|
|
240
|
+
"children": [
|
|
241
|
+
"column-6"
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "column-6",
|
|
246
|
+
"component": "Column",
|
|
247
|
+
"children": [
|
|
248
|
+
"stat-5"
|
|
249
|
+
]
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "card-6",
|
|
253
|
+
"component": "Card",
|
|
254
|
+
"children": [
|
|
255
|
+
"section-6"
|
|
256
|
+
]
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "stat-6",
|
|
260
|
+
"component": "Stat",
|
|
261
|
+
"change": "On track for $65k target",
|
|
262
|
+
"label": "Yearly Total",
|
|
263
|
+
"trend": "neutral",
|
|
264
|
+
"value": "$59,100"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"id": "section-7",
|
|
268
|
+
"component": "Section",
|
|
269
|
+
"children": [
|
|
270
|
+
"column-7"
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"id": "column-7",
|
|
275
|
+
"component": "Column",
|
|
276
|
+
"children": [
|
|
277
|
+
"stat-6"
|
|
278
|
+
]
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"id": "card-7",
|
|
282
|
+
"component": "Card",
|
|
283
|
+
"children": [
|
|
284
|
+
"section-7"
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"id": "grid-5",
|
|
289
|
+
"component": "Grid",
|
|
290
|
+
"columns": "1 2@sm",
|
|
291
|
+
"gap": "3",
|
|
292
|
+
"children": [
|
|
293
|
+
"card-6",
|
|
294
|
+
"card-7"
|
|
295
|
+
]
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"id": "column-5",
|
|
299
|
+
"component": "Column",
|
|
300
|
+
"children": [
|
|
301
|
+
"dash-overview",
|
|
302
|
+
"grid-5"
|
|
303
|
+
]
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"id": "section-5",
|
|
307
|
+
"component": "Section",
|
|
308
|
+
"children": [
|
|
309
|
+
"column-5"
|
|
310
|
+
]
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"id": "button",
|
|
314
|
+
"component": "Button",
|
|
315
|
+
"stretch": true,
|
|
316
|
+
"text": "View Full Report",
|
|
317
|
+
"variant": "outline"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"id": "footer",
|
|
321
|
+
"component": "Footer",
|
|
322
|
+
"children": [
|
|
323
|
+
"button"
|
|
324
|
+
]
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"id": "card-5",
|
|
328
|
+
"component": "Card",
|
|
329
|
+
"span": "3",
|
|
330
|
+
"children": [
|
|
331
|
+
"header",
|
|
332
|
+
"section-5",
|
|
333
|
+
"footer"
|
|
334
|
+
]
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"id": "text-3",
|
|
338
|
+
"component": "Text",
|
|
339
|
+
"variant": "heading",
|
|
340
|
+
"textContent": "Recent Sales"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"id": "text-4",
|
|
344
|
+
"component": "Text",
|
|
345
|
+
"slot": "description",
|
|
346
|
+
"color": "subtle",
|
|
347
|
+
"textContent": "You made 265 sales this month."
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"id": "header-3",
|
|
351
|
+
"component": "Header",
|
|
352
|
+
"children": [
|
|
353
|
+
"text-3",
|
|
354
|
+
"text-4"
|
|
355
|
+
]
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"id": "avatar",
|
|
359
|
+
"component": "Avatar",
|
|
360
|
+
"size": "sm",
|
|
361
|
+
"text": "Olivia Martin"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"id": "text-5",
|
|
365
|
+
"component": "Text",
|
|
366
|
+
"weight": "semibold",
|
|
367
|
+
"textContent": "Olivia Martin"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"id": "text-6",
|
|
371
|
+
"component": "Text",
|
|
372
|
+
"strong": true,
|
|
373
|
+
"textContent": "+$1,999.00"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"id": "row-2",
|
|
377
|
+
"component": "Row",
|
|
378
|
+
"children": [
|
|
379
|
+
"text-5",
|
|
380
|
+
"text-6"
|
|
381
|
+
]
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"id": "text-7",
|
|
385
|
+
"component": "Text",
|
|
386
|
+
"color": "subtle",
|
|
387
|
+
"textContent": "olivia.martin@email.com"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"id": "column-8",
|
|
391
|
+
"component": "Column",
|
|
392
|
+
"gap": "0",
|
|
393
|
+
"grow": true,
|
|
394
|
+
"children": [
|
|
395
|
+
"row-2",
|
|
396
|
+
"text-7"
|
|
397
|
+
]
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"id": "row",
|
|
401
|
+
"component": "Row",
|
|
402
|
+
"align": "center",
|
|
403
|
+
"gap": "2",
|
|
404
|
+
"grow": true,
|
|
405
|
+
"children": [
|
|
406
|
+
"avatar",
|
|
407
|
+
"column-8"
|
|
408
|
+
]
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"id": "list-item",
|
|
412
|
+
"component": "ListItem",
|
|
413
|
+
"children": [
|
|
414
|
+
"row"
|
|
415
|
+
]
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"id": "avatar-2",
|
|
419
|
+
"component": "Avatar",
|
|
420
|
+
"size": "sm",
|
|
421
|
+
"text": "Jackson Lee"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"id": "text-8",
|
|
425
|
+
"component": "Text",
|
|
426
|
+
"weight": "semibold",
|
|
427
|
+
"textContent": "Jackson Lee"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"id": "text-9",
|
|
431
|
+
"component": "Text",
|
|
432
|
+
"strong": true,
|
|
433
|
+
"textContent": "+$39.00"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"id": "row-4",
|
|
437
|
+
"component": "Row",
|
|
438
|
+
"children": [
|
|
439
|
+
"text-8",
|
|
440
|
+
"text-9"
|
|
441
|
+
]
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"id": "text-10",
|
|
445
|
+
"component": "Text",
|
|
446
|
+
"color": "subtle",
|
|
447
|
+
"textContent": "jackson.lee@email.com"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"id": "column-9",
|
|
451
|
+
"component": "Column",
|
|
452
|
+
"gap": "0",
|
|
453
|
+
"grow": true,
|
|
454
|
+
"children": [
|
|
455
|
+
"row-4",
|
|
456
|
+
"text-10"
|
|
457
|
+
]
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"id": "row-3",
|
|
461
|
+
"component": "Row",
|
|
462
|
+
"align": "center",
|
|
463
|
+
"gap": "2",
|
|
464
|
+
"grow": true,
|
|
465
|
+
"children": [
|
|
466
|
+
"avatar-2",
|
|
467
|
+
"column-9"
|
|
468
|
+
]
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"id": "list-item-2",
|
|
472
|
+
"component": "ListItem",
|
|
473
|
+
"children": [
|
|
474
|
+
"row-3"
|
|
475
|
+
]
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"id": "avatar-3",
|
|
479
|
+
"component": "Avatar",
|
|
480
|
+
"size": "sm",
|
|
481
|
+
"text": "Isabella Nguyen"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"id": "text-11",
|
|
485
|
+
"component": "Text",
|
|
486
|
+
"weight": "semibold",
|
|
487
|
+
"textContent": "Isabella Nguyen"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"id": "text-12",
|
|
491
|
+
"component": "Text",
|
|
492
|
+
"strong": true,
|
|
493
|
+
"textContent": "+$299.00"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"id": "row-6",
|
|
497
|
+
"component": "Row",
|
|
498
|
+
"children": [
|
|
499
|
+
"text-11",
|
|
500
|
+
"text-12"
|
|
501
|
+
]
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"id": "text-13",
|
|
505
|
+
"component": "Text",
|
|
506
|
+
"color": "subtle",
|
|
507
|
+
"textContent": "isabella.nguyen@email.com"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"id": "column-10",
|
|
511
|
+
"component": "Column",
|
|
512
|
+
"gap": "0",
|
|
513
|
+
"grow": true,
|
|
514
|
+
"children": [
|
|
515
|
+
"row-6",
|
|
516
|
+
"text-13"
|
|
517
|
+
]
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"id": "row-5",
|
|
521
|
+
"component": "Row",
|
|
522
|
+
"align": "center",
|
|
523
|
+
"gap": "2",
|
|
524
|
+
"grow": true,
|
|
525
|
+
"children": [
|
|
526
|
+
"avatar-3",
|
|
527
|
+
"column-10"
|
|
528
|
+
]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"id": "list-item-3",
|
|
532
|
+
"component": "ListItem",
|
|
533
|
+
"children": [
|
|
534
|
+
"row-5"
|
|
535
|
+
]
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"id": "avatar-4",
|
|
539
|
+
"component": "Avatar",
|
|
540
|
+
"size": "sm",
|
|
541
|
+
"text": "William Kim"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"id": "text-14",
|
|
545
|
+
"component": "Text",
|
|
546
|
+
"weight": "semibold",
|
|
547
|
+
"textContent": "William Kim"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"id": "text-15",
|
|
551
|
+
"component": "Text",
|
|
552
|
+
"strong": true,
|
|
553
|
+
"textContent": "+$99.00"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"id": "row-8",
|
|
557
|
+
"component": "Row",
|
|
558
|
+
"children": [
|
|
559
|
+
"text-14",
|
|
560
|
+
"text-15"
|
|
561
|
+
]
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"id": "text-16",
|
|
565
|
+
"component": "Text",
|
|
566
|
+
"color": "subtle",
|
|
567
|
+
"textContent": "will@email.com"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"id": "column-11",
|
|
571
|
+
"component": "Column",
|
|
572
|
+
"gap": "0",
|
|
573
|
+
"grow": true,
|
|
574
|
+
"children": [
|
|
575
|
+
"row-8",
|
|
576
|
+
"text-16"
|
|
577
|
+
]
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"id": "row-7",
|
|
581
|
+
"component": "Row",
|
|
582
|
+
"align": "center",
|
|
583
|
+
"gap": "2",
|
|
584
|
+
"grow": true,
|
|
585
|
+
"children": [
|
|
586
|
+
"avatar-4",
|
|
587
|
+
"column-11"
|
|
588
|
+
]
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"id": "list-item-4",
|
|
592
|
+
"component": "ListItem",
|
|
593
|
+
"children": [
|
|
594
|
+
"row-7"
|
|
595
|
+
]
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"id": "avatar-5",
|
|
599
|
+
"component": "Avatar",
|
|
600
|
+
"size": "sm",
|
|
601
|
+
"text": "Sofia Davis"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"id": "text-17",
|
|
605
|
+
"component": "Text",
|
|
606
|
+
"weight": "semibold",
|
|
607
|
+
"textContent": "Sofia Davis"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"id": "text-18",
|
|
611
|
+
"component": "Text",
|
|
612
|
+
"strong": true,
|
|
613
|
+
"textContent": "+$39.00"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"id": "row-10",
|
|
617
|
+
"component": "Row",
|
|
618
|
+
"children": [
|
|
619
|
+
"text-17",
|
|
620
|
+
"text-18"
|
|
621
|
+
]
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"id": "text-19",
|
|
625
|
+
"component": "Text",
|
|
626
|
+
"color": "subtle",
|
|
627
|
+
"textContent": "sofia.davis@email.com"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"id": "column-12",
|
|
631
|
+
"component": "Column",
|
|
632
|
+
"gap": "0",
|
|
633
|
+
"grow": true,
|
|
634
|
+
"children": [
|
|
635
|
+
"row-10",
|
|
636
|
+
"text-19"
|
|
637
|
+
]
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"id": "row-9",
|
|
641
|
+
"component": "Row",
|
|
642
|
+
"align": "center",
|
|
643
|
+
"gap": "2",
|
|
644
|
+
"grow": true,
|
|
645
|
+
"children": [
|
|
646
|
+
"avatar-5",
|
|
647
|
+
"column-12"
|
|
648
|
+
]
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"id": "list-item-5",
|
|
652
|
+
"component": "ListItem",
|
|
653
|
+
"children": [
|
|
654
|
+
"row-9"
|
|
655
|
+
]
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"id": "list",
|
|
659
|
+
"component": "List",
|
|
660
|
+
"divider": true,
|
|
661
|
+
"children": [
|
|
662
|
+
"list-item",
|
|
663
|
+
"list-item-2",
|
|
664
|
+
"list-item-3",
|
|
665
|
+
"list-item-4",
|
|
666
|
+
"list-item-5"
|
|
667
|
+
]
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"id": "section-8",
|
|
671
|
+
"component": "Section",
|
|
672
|
+
"children": [
|
|
673
|
+
"column-13"
|
|
674
|
+
]
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"id": "column-13",
|
|
678
|
+
"component": "Column",
|
|
679
|
+
"children": [
|
|
680
|
+
"list"
|
|
681
|
+
]
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"id": "card-8",
|
|
685
|
+
"component": "Card",
|
|
686
|
+
"span": "2",
|
|
687
|
+
"children": [
|
|
688
|
+
"header-3",
|
|
689
|
+
"section-8"
|
|
690
|
+
]
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"id": "grid-4",
|
|
694
|
+
"component": "Grid",
|
|
695
|
+
"columns": "1 5@md",
|
|
696
|
+
"gap": "4",
|
|
697
|
+
"children": [
|
|
698
|
+
"card-5",
|
|
699
|
+
"card-8"
|
|
700
|
+
]
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"id": "grid-3",
|
|
704
|
+
"component": "Grid",
|
|
705
|
+
"columns": "1 5@md",
|
|
706
|
+
"gap": "4",
|
|
707
|
+
"children": [
|
|
708
|
+
"grid-4"
|
|
709
|
+
]
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"id": "text-20",
|
|
713
|
+
"component": "Text",
|
|
714
|
+
"variant": "heading",
|
|
715
|
+
"textContent": "Page Views"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"id": "text-21",
|
|
719
|
+
"component": "Text",
|
|
720
|
+
"slot": "description",
|
|
721
|
+
"variant": "title",
|
|
722
|
+
"textContent": "84,232"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"id": "header-4",
|
|
726
|
+
"component": "Header",
|
|
727
|
+
"children": [
|
|
728
|
+
"text-20",
|
|
729
|
+
"text-21"
|
|
730
|
+
]
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"id": "dash-spark-views",
|
|
734
|
+
"component": "Chart",
|
|
735
|
+
"type": "sparkline",
|
|
736
|
+
"x": "d",
|
|
737
|
+
"y": "v"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"id": "section-9",
|
|
741
|
+
"component": "Section",
|
|
742
|
+
"bleed": true,
|
|
743
|
+
"children": [
|
|
744
|
+
"column-14"
|
|
745
|
+
]
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"id": "column-14",
|
|
749
|
+
"component": "Column",
|
|
750
|
+
"children": [
|
|
751
|
+
"dash-spark-views"
|
|
752
|
+
]
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"id": "card-9",
|
|
756
|
+
"component": "Card",
|
|
757
|
+
"children": [
|
|
758
|
+
"header-4",
|
|
759
|
+
"section-9"
|
|
760
|
+
]
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"id": "text-22",
|
|
764
|
+
"component": "Text",
|
|
765
|
+
"variant": "heading",
|
|
766
|
+
"textContent": "Bounce Rate"
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"id": "text-23",
|
|
770
|
+
"component": "Text",
|
|
771
|
+
"slot": "description",
|
|
772
|
+
"variant": "title",
|
|
773
|
+
"textContent": "24.3%"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"id": "header-5",
|
|
777
|
+
"component": "Header",
|
|
778
|
+
"children": [
|
|
779
|
+
"text-22",
|
|
780
|
+
"text-23"
|
|
781
|
+
]
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"id": "dash-spark-bounce",
|
|
785
|
+
"component": "Chart",
|
|
786
|
+
"type": "sparkline",
|
|
787
|
+
"color": "warning",
|
|
788
|
+
"x": "d",
|
|
789
|
+
"y": "v"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"id": "section-10",
|
|
793
|
+
"component": "Section",
|
|
794
|
+
"bleed": true,
|
|
795
|
+
"children": [
|
|
796
|
+
"column-15"
|
|
797
|
+
]
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"id": "column-15",
|
|
801
|
+
"component": "Column",
|
|
802
|
+
"children": [
|
|
803
|
+
"dash-spark-bounce"
|
|
804
|
+
]
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"id": "card-10",
|
|
808
|
+
"component": "Card",
|
|
809
|
+
"children": [
|
|
810
|
+
"header-5",
|
|
811
|
+
"section-10"
|
|
812
|
+
]
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"id": "text-24",
|
|
816
|
+
"component": "Text",
|
|
817
|
+
"variant": "heading",
|
|
818
|
+
"textContent": "Session Duration"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"id": "text-25",
|
|
822
|
+
"component": "Text",
|
|
823
|
+
"slot": "description",
|
|
824
|
+
"variant": "title",
|
|
825
|
+
"textContent": "4m 32s"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"id": "header-6",
|
|
829
|
+
"component": "Header",
|
|
830
|
+
"children": [
|
|
831
|
+
"text-24",
|
|
832
|
+
"text-25"
|
|
833
|
+
]
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"id": "dash-spark-duration",
|
|
837
|
+
"component": "Chart",
|
|
838
|
+
"type": "sparkline",
|
|
839
|
+
"color": "success",
|
|
840
|
+
"x": "d",
|
|
841
|
+
"y": "v"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"id": "section-11",
|
|
845
|
+
"component": "Section",
|
|
846
|
+
"bleed": true,
|
|
847
|
+
"children": [
|
|
848
|
+
"column-16"
|
|
849
|
+
]
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"id": "column-16",
|
|
853
|
+
"component": "Column",
|
|
854
|
+
"children": [
|
|
855
|
+
"dash-spark-duration"
|
|
856
|
+
]
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"id": "card-11",
|
|
860
|
+
"component": "Card",
|
|
861
|
+
"children": [
|
|
862
|
+
"header-6",
|
|
863
|
+
"section-11"
|
|
864
|
+
]
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"id": "text-26",
|
|
868
|
+
"component": "Text",
|
|
869
|
+
"variant": "heading",
|
|
870
|
+
"textContent": "Conversion"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"id": "text-27",
|
|
874
|
+
"component": "Text",
|
|
875
|
+
"slot": "description",
|
|
876
|
+
"variant": "title",
|
|
877
|
+
"textContent": "3.2%"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"id": "header-7",
|
|
881
|
+
"component": "Header",
|
|
882
|
+
"children": [
|
|
883
|
+
"text-26",
|
|
884
|
+
"text-27"
|
|
885
|
+
]
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"id": "dash-spark-conv",
|
|
889
|
+
"component": "Chart",
|
|
890
|
+
"type": "sparkline",
|
|
891
|
+
"color": "info",
|
|
892
|
+
"x": "d",
|
|
893
|
+
"y": "v"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"id": "section-12",
|
|
897
|
+
"component": "Section",
|
|
898
|
+
"bleed": true,
|
|
899
|
+
"children": [
|
|
900
|
+
"column-17"
|
|
901
|
+
]
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"id": "column-17",
|
|
905
|
+
"component": "Column",
|
|
906
|
+
"children": [
|
|
907
|
+
"dash-spark-conv"
|
|
908
|
+
]
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"id": "card-12",
|
|
912
|
+
"component": "Card",
|
|
913
|
+
"children": [
|
|
914
|
+
"header-7",
|
|
915
|
+
"section-12"
|
|
916
|
+
]
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"id": "grid-7",
|
|
920
|
+
"component": "Grid",
|
|
921
|
+
"columns": "2 4@lg",
|
|
922
|
+
"gap": "4",
|
|
923
|
+
"children": [
|
|
924
|
+
"card-9",
|
|
925
|
+
"card-10",
|
|
926
|
+
"card-11",
|
|
927
|
+
"card-12"
|
|
928
|
+
]
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"id": "grid-6",
|
|
932
|
+
"component": "Grid",
|
|
933
|
+
"columns": "2 4@lg",
|
|
934
|
+
"gap": "4",
|
|
935
|
+
"children": [
|
|
936
|
+
"grid-7"
|
|
937
|
+
]
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"id": "text-28",
|
|
941
|
+
"component": "Text",
|
|
942
|
+
"variant": "heading",
|
|
943
|
+
"textContent": "Recent Transactions"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"id": "text-29",
|
|
947
|
+
"component": "Text",
|
|
948
|
+
"slot": "description",
|
|
949
|
+
"color": "subtle",
|
|
950
|
+
"textContent": "Manage and track recent customer orders"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"id": "button-2",
|
|
954
|
+
"component": "Button",
|
|
955
|
+
"slot": "trigger",
|
|
956
|
+
"icon": "caret-down",
|
|
957
|
+
"size": "sm",
|
|
958
|
+
"text": "View as",
|
|
959
|
+
"variant": "ghost"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"id": "menu-item",
|
|
963
|
+
"component": "MenuItem",
|
|
964
|
+
"text": "Default",
|
|
965
|
+
"value": "default"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"id": "menu-item-2",
|
|
969
|
+
"component": "MenuItem",
|
|
970
|
+
"icon": "spinner",
|
|
971
|
+
"text": "Loading",
|
|
972
|
+
"value": "loading"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"id": "menu-item-3",
|
|
976
|
+
"component": "MenuItem",
|
|
977
|
+
"icon": "tray",
|
|
978
|
+
"text": "Empty",
|
|
979
|
+
"value": "empty"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"id": "menu-item-4",
|
|
983
|
+
"component": "MenuItem",
|
|
984
|
+
"icon": "warning",
|
|
985
|
+
"text": "Error",
|
|
986
|
+
"value": "error"
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"id": "tx-state-menu",
|
|
990
|
+
"component": "Menu",
|
|
991
|
+
"children": [
|
|
992
|
+
"button-2",
|
|
993
|
+
"menu-item",
|
|
994
|
+
"menu-item-2",
|
|
995
|
+
"menu-item-3",
|
|
996
|
+
"menu-item-4"
|
|
997
|
+
]
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"id": "text-30",
|
|
1001
|
+
"component": "Text",
|
|
1002
|
+
"variant": "body",
|
|
1003
|
+
"slot": "action",
|
|
1004
|
+
"children": [
|
|
1005
|
+
"tx-state-menu"
|
|
1006
|
+
]
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"id": "header-8",
|
|
1010
|
+
"component": "Header",
|
|
1011
|
+
"children": [
|
|
1012
|
+
"text-28",
|
|
1013
|
+
"text-29",
|
|
1014
|
+
"text-30"
|
|
1015
|
+
]
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"id": "dash-transactions",
|
|
1019
|
+
"component": "Table",
|
|
1020
|
+
"paginate": 5,
|
|
1021
|
+
"sortable": true,
|
|
1022
|
+
"striped": true
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"id": "section-13",
|
|
1026
|
+
"component": "Section",
|
|
1027
|
+
"bleed": true,
|
|
1028
|
+
"data-tx-surface": "",
|
|
1029
|
+
"children": [
|
|
1030
|
+
"column-18"
|
|
1031
|
+
]
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"id": "column-18",
|
|
1035
|
+
"component": "Column",
|
|
1036
|
+
"children": [
|
|
1037
|
+
"dash-transactions"
|
|
1038
|
+
]
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
"id": "card-13",
|
|
1042
|
+
"component": "Card",
|
|
1043
|
+
"children": [
|
|
1044
|
+
"header-8",
|
|
1045
|
+
"section-13"
|
|
1046
|
+
]
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"id": "grid-9",
|
|
1050
|
+
"component": "Grid",
|
|
1051
|
+
"children": [
|
|
1052
|
+
"card-13"
|
|
1053
|
+
]
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"id": "grid-8",
|
|
1057
|
+
"component": "Grid",
|
|
1058
|
+
"children": [
|
|
1059
|
+
"grid-9"
|
|
1060
|
+
]
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"id": "text-31",
|
|
1064
|
+
"component": "Text",
|
|
1065
|
+
"variant": "heading",
|
|
1066
|
+
"textContent": "Team Members"
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"id": "text-32",
|
|
1070
|
+
"component": "Text",
|
|
1071
|
+
"slot": "description",
|
|
1072
|
+
"color": "subtle",
|
|
1073
|
+
"textContent": "Your active collaborators"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"id": "header-9",
|
|
1077
|
+
"component": "Header",
|
|
1078
|
+
"children": [
|
|
1079
|
+
"text-31",
|
|
1080
|
+
"text-32"
|
|
1081
|
+
]
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"id": "avatar-6",
|
|
1085
|
+
"component": "Avatar",
|
|
1086
|
+
"text": "Alex Chen"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"id": "text-33",
|
|
1090
|
+
"component": "Text",
|
|
1091
|
+
"strong": true,
|
|
1092
|
+
"textContent": "Alex Chen"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"id": "badge",
|
|
1096
|
+
"component": "Badge",
|
|
1097
|
+
"text": "Online",
|
|
1098
|
+
"variant": "success"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"id": "row-12",
|
|
1102
|
+
"component": "Row",
|
|
1103
|
+
"align": "center",
|
|
1104
|
+
"gap": "0",
|
|
1105
|
+
"grow": true,
|
|
1106
|
+
"justify": "space-between",
|
|
1107
|
+
"children": [
|
|
1108
|
+
"text-33",
|
|
1109
|
+
"badge"
|
|
1110
|
+
]
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"id": "text-34",
|
|
1114
|
+
"component": "Text",
|
|
1115
|
+
"color": "subtle",
|
|
1116
|
+
"textContent": "Engineering Lead"
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"id": "column-19",
|
|
1120
|
+
"component": "Column",
|
|
1121
|
+
"gap": "0",
|
|
1122
|
+
"grow": true,
|
|
1123
|
+
"children": [
|
|
1124
|
+
"row-12",
|
|
1125
|
+
"text-34"
|
|
1126
|
+
]
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"id": "row-11",
|
|
1130
|
+
"component": "Row",
|
|
1131
|
+
"align": "center",
|
|
1132
|
+
"gap": "2",
|
|
1133
|
+
"grow": true,
|
|
1134
|
+
"children": [
|
|
1135
|
+
"avatar-6",
|
|
1136
|
+
"column-19"
|
|
1137
|
+
]
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"id": "list-item-6",
|
|
1141
|
+
"component": "ListItem",
|
|
1142
|
+
"children": [
|
|
1143
|
+
"row-11"
|
|
1144
|
+
]
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"id": "avatar-7",
|
|
1148
|
+
"component": "Avatar",
|
|
1149
|
+
"text": "Sarah Miller"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"id": "text-35",
|
|
1153
|
+
"component": "Text",
|
|
1154
|
+
"strong": true,
|
|
1155
|
+
"textContent": "Sarah Miller"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"id": "badge-2",
|
|
1159
|
+
"component": "Badge",
|
|
1160
|
+
"text": "Online",
|
|
1161
|
+
"variant": "success"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"id": "row-14",
|
|
1165
|
+
"component": "Row",
|
|
1166
|
+
"align": "center",
|
|
1167
|
+
"gap": "0",
|
|
1168
|
+
"grow": true,
|
|
1169
|
+
"justify": "space-between",
|
|
1170
|
+
"children": [
|
|
1171
|
+
"text-35",
|
|
1172
|
+
"badge-2"
|
|
1173
|
+
]
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"id": "text-36",
|
|
1177
|
+
"component": "Text",
|
|
1178
|
+
"color": "subtle",
|
|
1179
|
+
"textContent": "Product Designer"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"id": "column-20",
|
|
1183
|
+
"component": "Column",
|
|
1184
|
+
"gap": "0",
|
|
1185
|
+
"grow": true,
|
|
1186
|
+
"children": [
|
|
1187
|
+
"row-14",
|
|
1188
|
+
"text-36"
|
|
1189
|
+
]
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"id": "row-13",
|
|
1193
|
+
"component": "Row",
|
|
1194
|
+
"align": "center",
|
|
1195
|
+
"gap": "2",
|
|
1196
|
+
"grow": true,
|
|
1197
|
+
"children": [
|
|
1198
|
+
"avatar-7",
|
|
1199
|
+
"column-20"
|
|
1200
|
+
]
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"id": "list-item-7",
|
|
1204
|
+
"component": "ListItem",
|
|
1205
|
+
"children": [
|
|
1206
|
+
"row-13"
|
|
1207
|
+
]
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
"id": "avatar-8",
|
|
1211
|
+
"component": "Avatar",
|
|
1212
|
+
"text": "James Park"
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"id": "text-37",
|
|
1216
|
+
"component": "Text",
|
|
1217
|
+
"strong": true,
|
|
1218
|
+
"textContent": "James Park"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"id": "badge-3",
|
|
1222
|
+
"component": "Badge",
|
|
1223
|
+
"text": "Away",
|
|
1224
|
+
"variant": "warning"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"id": "row-16",
|
|
1228
|
+
"component": "Row",
|
|
1229
|
+
"align": "center",
|
|
1230
|
+
"gap": "0",
|
|
1231
|
+
"grow": true,
|
|
1232
|
+
"justify": "space-between",
|
|
1233
|
+
"children": [
|
|
1234
|
+
"text-37",
|
|
1235
|
+
"badge-3"
|
|
1236
|
+
]
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"id": "text-38",
|
|
1240
|
+
"component": "Text",
|
|
1241
|
+
"color": "subtle",
|
|
1242
|
+
"textContent": "Backend Engineer"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"id": "column-21",
|
|
1246
|
+
"component": "Column",
|
|
1247
|
+
"gap": "0",
|
|
1248
|
+
"grow": true,
|
|
1249
|
+
"children": [
|
|
1250
|
+
"row-16",
|
|
1251
|
+
"text-38"
|
|
1252
|
+
]
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"id": "row-15",
|
|
1256
|
+
"component": "Row",
|
|
1257
|
+
"align": "center",
|
|
1258
|
+
"gap": "2",
|
|
1259
|
+
"grow": true,
|
|
1260
|
+
"children": [
|
|
1261
|
+
"avatar-8",
|
|
1262
|
+
"column-21"
|
|
1263
|
+
]
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"id": "list-item-8",
|
|
1267
|
+
"component": "ListItem",
|
|
1268
|
+
"children": [
|
|
1269
|
+
"row-15"
|
|
1270
|
+
]
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"id": "avatar-9",
|
|
1274
|
+
"component": "Avatar",
|
|
1275
|
+
"text": "Maria Lopez"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"id": "text-39",
|
|
1279
|
+
"component": "Text",
|
|
1280
|
+
"strong": true,
|
|
1281
|
+
"textContent": "Maria Lopez"
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"id": "badge-4",
|
|
1285
|
+
"component": "Badge",
|
|
1286
|
+
"text": "Offline",
|
|
1287
|
+
"tone": "muted"
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"id": "row-18",
|
|
1291
|
+
"component": "Row",
|
|
1292
|
+
"align": "center",
|
|
1293
|
+
"gap": "0",
|
|
1294
|
+
"grow": true,
|
|
1295
|
+
"justify": "space-between",
|
|
1296
|
+
"children": [
|
|
1297
|
+
"text-39",
|
|
1298
|
+
"badge-4"
|
|
1299
|
+
]
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"id": "text-40",
|
|
1303
|
+
"component": "Text",
|
|
1304
|
+
"color": "subtle",
|
|
1305
|
+
"textContent": "Data Analyst"
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"id": "column-22",
|
|
1309
|
+
"component": "Column",
|
|
1310
|
+
"gap": "0",
|
|
1311
|
+
"grow": true,
|
|
1312
|
+
"children": [
|
|
1313
|
+
"row-18",
|
|
1314
|
+
"text-40"
|
|
1315
|
+
]
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"id": "row-17",
|
|
1319
|
+
"component": "Row",
|
|
1320
|
+
"align": "center",
|
|
1321
|
+
"gap": "2",
|
|
1322
|
+
"grow": true,
|
|
1323
|
+
"children": [
|
|
1324
|
+
"avatar-9",
|
|
1325
|
+
"column-22"
|
|
1326
|
+
]
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"id": "list-item-9",
|
|
1330
|
+
"component": "ListItem",
|
|
1331
|
+
"children": [
|
|
1332
|
+
"row-17"
|
|
1333
|
+
]
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"id": "list-2",
|
|
1337
|
+
"component": "List",
|
|
1338
|
+
"divider": true,
|
|
1339
|
+
"children": [
|
|
1340
|
+
"list-item-6",
|
|
1341
|
+
"list-item-7",
|
|
1342
|
+
"list-item-8",
|
|
1343
|
+
"list-item-9"
|
|
1344
|
+
]
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"id": "section-14",
|
|
1348
|
+
"component": "Section",
|
|
1349
|
+
"children": [
|
|
1350
|
+
"column-23"
|
|
1351
|
+
]
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
"id": "column-23",
|
|
1355
|
+
"component": "Column",
|
|
1356
|
+
"children": [
|
|
1357
|
+
"list-2"
|
|
1358
|
+
]
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"id": "card-15",
|
|
1362
|
+
"component": "Card",
|
|
1363
|
+
"children": [
|
|
1364
|
+
"header-9",
|
|
1365
|
+
"section-14"
|
|
1366
|
+
]
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"id": "column-24",
|
|
1370
|
+
"component": "Column",
|
|
1371
|
+
"children": [
|
|
1372
|
+
"card-15"
|
|
1373
|
+
]
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
"id": "section-15",
|
|
1377
|
+
"component": "Section",
|
|
1378
|
+
"children": [
|
|
1379
|
+
"column-24"
|
|
1380
|
+
]
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"id": "card-14",
|
|
1384
|
+
"component": "Card",
|
|
1385
|
+
"children": [
|
|
1386
|
+
"section-15"
|
|
1387
|
+
]
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
"id": "text-41",
|
|
1391
|
+
"component": "Text",
|
|
1392
|
+
"variant": "heading",
|
|
1393
|
+
"textContent": "Quick Actions"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"id": "header-10",
|
|
1397
|
+
"component": "Header",
|
|
1398
|
+
"children": [
|
|
1399
|
+
"text-41"
|
|
1400
|
+
]
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"id": "action-item",
|
|
1404
|
+
"component": "ActionItem",
|
|
1405
|
+
"icon": "plus",
|
|
1406
|
+
"text": "New Project",
|
|
1407
|
+
"value": "new"
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"id": "action-item-2",
|
|
1411
|
+
"component": "ActionItem",
|
|
1412
|
+
"icon": "users",
|
|
1413
|
+
"text": "Invite Team",
|
|
1414
|
+
"value": "invite"
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"id": "action-item-3",
|
|
1418
|
+
"component": "ActionItem",
|
|
1419
|
+
"icon": "download",
|
|
1420
|
+
"text": "Export Data",
|
|
1421
|
+
"value": "export"
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"id": "action-item-4",
|
|
1425
|
+
"component": "ActionItem",
|
|
1426
|
+
"icon": "chart-bar",
|
|
1427
|
+
"text": "View Reports",
|
|
1428
|
+
"value": "reports"
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"id": "action-item-5",
|
|
1432
|
+
"component": "ActionItem",
|
|
1433
|
+
"icon": "gear",
|
|
1434
|
+
"text": "Settings",
|
|
1435
|
+
"value": "settings"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"id": "action-item-6",
|
|
1439
|
+
"component": "ActionItem",
|
|
1440
|
+
"icon": "question",
|
|
1441
|
+
"text": "Help Center",
|
|
1442
|
+
"value": "help"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"id": "action-list",
|
|
1446
|
+
"component": "ActionList",
|
|
1447
|
+
"children": [
|
|
1448
|
+
"action-item",
|
|
1449
|
+
"action-item-2",
|
|
1450
|
+
"action-item-3",
|
|
1451
|
+
"action-item-4",
|
|
1452
|
+
"action-item-5",
|
|
1453
|
+
"action-item-6"
|
|
1454
|
+
]
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"id": "section-16",
|
|
1458
|
+
"component": "Section",
|
|
1459
|
+
"children": [
|
|
1460
|
+
"column-25"
|
|
1461
|
+
]
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"id": "column-25",
|
|
1465
|
+
"component": "Column",
|
|
1466
|
+
"children": [
|
|
1467
|
+
"action-list"
|
|
1468
|
+
]
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"id": "card-17",
|
|
1472
|
+
"component": "Card",
|
|
1473
|
+
"children": [
|
|
1474
|
+
"header-10",
|
|
1475
|
+
"section-16"
|
|
1476
|
+
]
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
"id": "column-26",
|
|
1480
|
+
"component": "Column",
|
|
1481
|
+
"children": [
|
|
1482
|
+
"card-17"
|
|
1483
|
+
]
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"id": "section-17",
|
|
1487
|
+
"component": "Section",
|
|
1488
|
+
"children": [
|
|
1489
|
+
"column-26"
|
|
1490
|
+
]
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"id": "card-16",
|
|
1494
|
+
"component": "Card",
|
|
1495
|
+
"children": [
|
|
1496
|
+
"section-17"
|
|
1497
|
+
]
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"id": "text-42",
|
|
1501
|
+
"component": "Text",
|
|
1502
|
+
"variant": "heading",
|
|
1503
|
+
"textContent": "Storage"
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"id": "text-43",
|
|
1507
|
+
"component": "Text",
|
|
1508
|
+
"slot": "description",
|
|
1509
|
+
"color": "subtle",
|
|
1510
|
+
"textContent": "75% of 100 GB used"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"id": "header-11",
|
|
1514
|
+
"component": "Header",
|
|
1515
|
+
"children": [
|
|
1516
|
+
"text-42",
|
|
1517
|
+
"text-43"
|
|
1518
|
+
]
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"id": "progress-row",
|
|
1522
|
+
"component": "ProgressRow",
|
|
1523
|
+
"label": "75 GB used",
|
|
1524
|
+
"meta": "100 GB total",
|
|
1525
|
+
"value": 75
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
"id": "progress-row-2",
|
|
1529
|
+
"component": "ProgressRow",
|
|
1530
|
+
"label": "Documents",
|
|
1531
|
+
"meta": "32 GB",
|
|
1532
|
+
"value": 42
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"id": "progress-row-3",
|
|
1536
|
+
"component": "ProgressRow",
|
|
1537
|
+
"label": "Media",
|
|
1538
|
+
"meta": "28 GB",
|
|
1539
|
+
"value": 37
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"id": "progress-row-4",
|
|
1543
|
+
"component": "ProgressRow",
|
|
1544
|
+
"label": "Backups",
|
|
1545
|
+
"meta": "15 GB",
|
|
1546
|
+
"value": 20
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"id": "column-27",
|
|
1550
|
+
"component": "Column",
|
|
1551
|
+
"gap": "2",
|
|
1552
|
+
"children": [
|
|
1553
|
+
"progress-row",
|
|
1554
|
+
"progress-row-2",
|
|
1555
|
+
"progress-row-3",
|
|
1556
|
+
"progress-row-4"
|
|
1557
|
+
]
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
"id": "section-18",
|
|
1561
|
+
"component": "Section",
|
|
1562
|
+
"children": [
|
|
1563
|
+
"column-27"
|
|
1564
|
+
]
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"id": "button-3",
|
|
1568
|
+
"component": "Button",
|
|
1569
|
+
"stretch": true,
|
|
1570
|
+
"text": "Upgrade Plan",
|
|
1571
|
+
"variant": "primary"
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"id": "footer-2",
|
|
1575
|
+
"component": "Footer",
|
|
1576
|
+
"children": [
|
|
1577
|
+
"button-3"
|
|
1578
|
+
]
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"id": "card-19",
|
|
1582
|
+
"component": "Card",
|
|
1583
|
+
"children": [
|
|
1584
|
+
"header-11",
|
|
1585
|
+
"section-18",
|
|
1586
|
+
"footer-2"
|
|
1587
|
+
]
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"id": "column-28",
|
|
1591
|
+
"component": "Column",
|
|
1592
|
+
"children": [
|
|
1593
|
+
"card-19"
|
|
1594
|
+
]
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
"id": "section-19",
|
|
1598
|
+
"component": "Section",
|
|
1599
|
+
"children": [
|
|
1600
|
+
"column-28"
|
|
1601
|
+
]
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"id": "card-18",
|
|
1605
|
+
"component": "Card",
|
|
1606
|
+
"children": [
|
|
1607
|
+
"section-19"
|
|
1608
|
+
]
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"id": "grid-11",
|
|
1612
|
+
"component": "Grid",
|
|
1613
|
+
"columns": "1 3@lg",
|
|
1614
|
+
"gap": "4",
|
|
1615
|
+
"children": [
|
|
1616
|
+
"card-14",
|
|
1617
|
+
"card-16",
|
|
1618
|
+
"card-18"
|
|
1619
|
+
]
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"id": "grid-10",
|
|
1623
|
+
"component": "Grid",
|
|
1624
|
+
"columns": "1 3@lg",
|
|
1625
|
+
"gap": "4",
|
|
1626
|
+
"children": [
|
|
1627
|
+
"grid-11"
|
|
1628
|
+
]
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"id": "root",
|
|
1632
|
+
"component": "Column",
|
|
1633
|
+
"gap": "4",
|
|
1634
|
+
"data-tab-panel": "overview",
|
|
1635
|
+
"children": [
|
|
1636
|
+
"grid",
|
|
1637
|
+
"grid-3",
|
|
1638
|
+
"grid-6",
|
|
1639
|
+
"grid-8",
|
|
1640
|
+
"grid-10"
|
|
1641
|
+
]
|
|
1642
|
+
}
|
|
1643
|
+
]
|
|
1644
|
+
}
|