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.

team-hub.space.list

List of team spaces.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @team-hub
  • Tags: space, list
  • File: packages/examples/team-hub/src/presentations/team-hub.presentation.ts
  • field.key.label
    team-hub.space.list
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    team-hub.space.list
    field.description.label

    List of team spaces.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @team-hub
  • Tags: space, list
  • File: packages/examples/team-hub/src/presentations/team-hub.presentation.ts
  • field.tags.label
    space,list
    field.owners.label
    @team-hub
    field.stability.label

    List of team spaces.

    Goal

    Navigate between team spaces.

    Context

    Sidebar or spaces hub.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const SpaceListPresentation = definePresentation({
    	meta: {
    		key: 'team-hub.space.list',
    		version: '1.0.0',
    		title: 'Space List',
    		description: 'List of team spaces.',
    		domain: 'team-hub',
    		owners: ['@team-hub'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Navigate between team spaces.',
    		context: 'Sidebar or spaces hub.',
    		tags: ['space', 'list'],
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'SpaceList',
    	},
    	targets: ['react'],
    });