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

ContractSpec visualization primitives rendered through shared design-system wrappers.

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.core
  • Tags: visualization, charts, showcase
  • field.key.label
    visualization-showcase
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    visualization-showcase
    field.description.label

    ContractSpec visualization primitives rendered through shared design-system wrappers.

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.core
  • Tags: visualization, charts, showcase
  • field.tags.label
    visualization,charts,showcase
    field.owners.label
    @platform.core
    field.stability.label
    experimental

    ContractSpec visualization primitives rendered through shared design-system wrappers.

    Presentations (1)

    `visualization-showcase.gallery` (v1.0.0)

    Source Definition

    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    import { VisualizationShowcaseRefs } from './visualizations';
    
    export const VisualizationShowcaseFeature = defineFeature({
    	meta: {
    		key: 'visualization-showcase',
    		version: '1.0.0',
    		title: 'Visualization Showcase',
    		description:
    			'ContractSpec visualization primitives rendered through shared design-system wrappers.',
    		domain: 'ui',
    		owners: ['@platform.core'],
    		tags: ['visualization', 'charts', 'showcase'],
    		stability: 'experimental',
    	},
    	presentations: [{ key: 'visualization-showcase.gallery', version: '1.0.0' }],
    	presentationsTargets: [
    		{
    			key: 'visualization-showcase.gallery',
    			version: '1.0.0',
    			targets: ['react', 'markdown'],
    		},
    	],
    	visualizations: VisualizationShowcaseRefs,
    	docs: [
    		'docs.examples.visualization-showcase',
    		'docs.examples.visualization-showcase.goal',
    		'docs.examples.visualization-showcase.usage',
    	],
    });