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.
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'],
},
});