OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

analytics.dashboard.editor

Edit dashboard configuration and widgets

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @analytics-dashboard
  • Tags: analytics, dashboard, editor
  • File: packages/examples/analytics-dashboard/src/dashboard/dashboard.presentation.ts
  • field.key.label
    analytics.dashboard.editor
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    analytics.dashboard.editor
    field.description.label

    Edit dashboard configuration and widgets

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @analytics-dashboard
  • Tags: analytics, dashboard, editor
  • File: packages/examples/analytics-dashboard/src/dashboard/dashboard.presentation.ts
  • field.tags.label
    analytics,dashboard,editor
    field.owners.label
    @analytics-dashboard
    field.stability.label

    Edit dashboard configuration and widgets

    Goal

    Configure dashboard layout and widget settings.

    Context

    Management tool for analysts.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { DashboardModel } from './dashboard.schema';
    
    export const DashboardEditorPresentation = definePresentation({
    	meta: {
    		key: 'analytics.dashboard.editor',
    		version: '1.0.0',
    		title: 'Dashboard Editor',
    		description: 'Edit dashboard configuration and widgets',
    		domain: 'analytics',
    		owners: ['@analytics-dashboard'],
    		tags: ['analytics', 'dashboard', 'editor'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Configure dashboard layout and widget settings.',
    		context: 'Management tool for analysts.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'DashboardEditor',
    		props: DashboardModel,
    	},
    	targets: ['react'],
    	policy: {
    		flags: ['analytics.dashboards.enabled'],
    	},
    });