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.

visualization-showcase.gallery

Focused showcase of ContractSpec visualization primitives.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @platform.core
  • Tags: visualization, charts, showcase
  • File: packages/examples/visualization-showcase/src/visualization-showcase.presentation.ts
  • field.key.label
    visualization-showcase.gallery
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    visualization-showcase.gallery
    field.description.label

    Focused showcase of ContractSpec visualization primitives.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @platform.core
  • Tags: visualization, charts, showcase
  • File: packages/examples/visualization-showcase/src/visualization-showcase.presentation.ts
  • field.tags.label
    visualization,charts,showcase
    field.owners.label
    @platform.core
    field.stability.label

    Focused showcase of ContractSpec visualization primitives.

    Goal

    Review the canonical visualization catalog and design-system wrappers.

    Context

    Sandbox presentation used for react and markdown previews.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const VisualizationShowcasePresentation = definePresentation({
    	meta: {
    		key: 'visualization-showcase.gallery',
    		version: '1.0.0',
    		title: 'Visualization Showcase',
    		description: 'Focused showcase of ContractSpec visualization primitives.',
    		domain: 'ui',
    		owners: ['@platform.core'],
    		tags: ['visualization', 'charts', 'showcase'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Review the canonical visualization catalog and design-system wrappers.',
    		context: 'Sandbox presentation used for react and markdown previews.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'VisualizationShowcase',
    	},
    	targets: ['react', 'markdown'],
    });