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.

contractspec.presentations

Cross-platform rendering of contract-driven UI

  • Type: feature
  • Version: 1.0.0
  • Stability: beta
  • Owners: @platform.presentations
  • Tags: presentations, ui, rendering, cross-platform
  • File: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/bundles/library/src/features/presentations.feature.ts
  • field.key.label
    contractspec.presentations
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    contractspec.presentations
    field.description.label

    Cross-platform rendering of contract-driven UI

  • Type: feature
  • Version: 1.0.0
  • Stability: beta
  • Owners: @platform.presentations
  • Tags: presentations, ui, rendering, cross-platform
  • File: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/bundles/library/src/features/presentations.feature.ts
  • field.tags.label
    presentations,ui,rendering,cross-platform
    field.owners.label
    @platform.presentations
    field.stability.label
    beta

    Cross-platform rendering of contract-driven UI

    Source Definition

    import type { FeatureModuleSpec } from '@lssm-tech/lib.contracts-spec/features';
    
    /**
     * Presentations feature for ContractSpec.
     * Provides cross-platform rendering of contract-driven UI.
     */
    export const PresentationsFeature: FeatureModuleSpec = {
      meta: {
        key: 'contractspec.presentations',
        version: '1.0.0',
        title: 'Presentation Runtime',
        description: 'Cross-platform rendering of contract-driven UI',
        domain: 'platform',
        owners: ['@platform.presentations'],
        tags: ['presentations', 'ui', 'rendering', 'cross-platform'],
        stability: 'beta',
      },
      operations: [
        { key: 'presentation.render', version: '1.0.0' },
        { key: 'presentation.transform', version: '1.0.0' },
      ],
      events: [
        { key: 'presentation.rendered', version: '1.0.0' },
        { key: 'presentation.transformed', version: '1.0.0' },
      ],
      presentations: [
        { key: 'form.standard', version: '1.0.0' },
        { key: 'list.standard', version: '1.0.0' },
        { key: 'detail.standard', version: '1.0.0' },
      ],
      capabilities: {
        provides: [{ key: 'contracts.presentations', version: '1.0.0' }],
        requires: [],
      },
    };