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