ContractSpec docs

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.

data-grid-showcase

Canonical ContractSpec table example spanning contracts-spec, ui-kit, ui-kit-web, and design-system surfaces.

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.core
  • field.key.label
    data-grid-showcase
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    data-grid-showcase
    field.description.label

    Canonical ContractSpec table example spanning contracts-spec, ui-kit, ui-kit-web, and design-system surfaces.

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.core
  • field.tags.label
    table,data-grid,ui,tanstack
    field.owners.label
    @platform.core
    field.stability.label
    experimental

    Canonical ContractSpec table example spanning contracts-spec, ui-kit, ui-kit-web, and design-system surfaces.

    Operations (1)

    `examples.data-grid-showcase.rows.list` (v1.0.0)

    Source Definition

    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    
    export const DataGridShowcaseFeature = defineFeature({
    	meta: {
    		key: 'data-grid-showcase',
    		version: '1.0.0',
    		title: 'Data Grid Showcase',
    		description:
    			'Canonical ContractSpec table example spanning contracts-spec, ui-kit, ui-kit-web, and design-system surfaces.',
    		domain: 'ui',
    		owners: ['@platform.core'],
    		tags: ['table', 'data-grid', 'ui', 'tanstack'],
    		stability: 'experimental',
    	},
    	operations: [
    		{
    			key: 'examples.data-grid-showcase.rows.list',
    			version: '1.0.0',
    		},
    	],
    	dataViews: [
    		{
    			key: 'examples.data-grid-showcase.table',
    			version: '1.0.0',
    		},
    	],
    	docs: [
    		'docs.examples.data-grid-showcase',
    		'docs.examples.data-grid-showcase.goal',
    		'docs.examples.data-grid-showcase.usage',
    	],
    });