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.viewList

List of analytics dashboards

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

    List of analytics dashboards

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

    List of analytics dashboards

    Goal

    Show users available analytics dashboards.

    Context

    The main dashboard management view.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { DashboardModel } from './dashboard.schema';
    
    export const DashboardsListPresentation = definePresentation({
    	meta: {
    		key: 'analytics.dashboard.viewList',
    		version: '1.0.0',
    		title: 'Dashboards List',
    		description: 'List of analytics dashboards',
    		domain: 'analytics',
    		owners: ['@analytics-dashboard'],
    		tags: ['analytics', 'dashboards', 'list'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Show users available analytics dashboards.',
    		context: 'The main dashboard management view.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'DashboardsList',
    		props: DashboardModel,
    	},
    	targets: ['react', 'markdown', 'application/json'],
    	policy: {
    		flags: ['analytics.dashboards.enabled'],
    	},
    });