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.

saas.settings

Organization and user settings panel

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

    Organization and user settings panel

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @saas-team
  • Tags: settings, config
  • File: packages/examples/saas-boilerplate/src/dashboard/dashboard.presentation.ts
  • field.tags.label
    settings,config
    field.owners.label
    @saas-team
    field.stability.label

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