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.
Organization and user settings panel
Goal
Configure organization and user settings
Context
Settings section
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const SettingsPanelPresentation = definePresentation({
meta: {
key: 'saas.settings',
version: '1.0.0',
title: 'Settings Panel',
description: 'Organization and user settings panel',
domain: 'saas-boilerplate',
owners: ['@saas-team'],
tags: ['settings', 'config'],
stability: StabilityEnum.Beta,
goal: 'Configure organization and user settings',
context: 'Settings section',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'SettingsPanel',
},
targets: ['react'],
policy: {
flags: ['saas.enabled'],
},
});