@urbicon-ui/shared-types 6.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/README.md +63 -0
  2. package/dist/component.d.ts +185 -0
  3. package/dist/component.d.ts.map +1 -0
  4. package/dist/component.js +2 -0
  5. package/dist/component.js.map +1 -0
  6. package/dist/docs-config.d.ts +120 -0
  7. package/dist/docs-config.d.ts.map +1 -0
  8. package/dist/docs-config.js +2 -0
  9. package/dist/docs-config.js.map +1 -0
  10. package/dist/documentation-core.d.ts +217 -0
  11. package/dist/documentation-core.d.ts.map +1 -0
  12. package/dist/documentation-core.js +2 -0
  13. package/dist/documentation-core.js.map +1 -0
  14. package/dist/documentation.d.ts +44 -0
  15. package/dist/documentation.d.ts.map +1 -0
  16. package/dist/documentation.js +2 -0
  17. package/dist/documentation.js.map +1 -0
  18. package/dist/examples.d.ts +71 -0
  19. package/dist/examples.d.ts.map +1 -0
  20. package/dist/examples.js +2 -0
  21. package/dist/examples.js.map +1 -0
  22. package/dist/globals.d.ts +13 -0
  23. package/dist/globals.d.ts.map +1 -0
  24. package/dist/globals.js +6 -0
  25. package/dist/globals.js.map +1 -0
  26. package/dist/index.d.ts +13 -0
  27. package/dist/index.d.ts.map +1 -0
  28. package/dist/index.js +12 -0
  29. package/dist/index.js.map +1 -0
  30. package/dist/navigation.d.ts +194 -0
  31. package/dist/navigation.d.ts.map +1 -0
  32. package/dist/navigation.js +2 -0
  33. package/dist/navigation.js.map +1 -0
  34. package/dist/playground.d.ts +153 -0
  35. package/dist/playground.d.ts.map +1 -0
  36. package/dist/playground.js +2 -0
  37. package/dist/playground.js.map +1 -0
  38. package/dist/tsconfig.tsbuildinfo +1 -0
  39. package/package.json +84 -0
  40. package/src/component.ts +200 -0
  41. package/src/docs-config.ts +134 -0
  42. package/src/documentation-core.ts +258 -0
  43. package/src/documentation.ts +49 -0
  44. package/src/examples.ts +73 -0
  45. package/src/globals.ts +17 -0
  46. package/src/index.ts +87 -0
  47. package/src/navigation.ts +206 -0
  48. package/src/playground.ts +184 -0
package/README.md ADDED
@@ -0,0 +1,63 @@
1
+ # @urbicon-ui/shared-types
2
+
3
+ Central TypeScript type definitions shared across the Urbicon UI monorepo. Pure types, zero runtime, zero dependencies.
4
+
5
+ ## Purpose
6
+
7
+ Every Urbicon package (`blocks`, `table`, `docs`, `docs-gen`, `mcp-server`, `i18n`) consumes these types to stay consistent. The same `PropInfo` describes a component prop in `docs-gen` output, in `docs`' `ApiReference` component, and in the MCP server catalog.
8
+
9
+ ## Installation
10
+
11
+ This package ships inside the Urbicon UI monorepo. Install from repo root:
12
+
13
+ ```bash
14
+ bun install
15
+ ```
16
+
17
+ ## Exports
18
+
19
+ Each subpath is consumable on its own so consumers pull in only what they need:
20
+
21
+ | Subpath | Contents |
22
+ |---|---|
23
+ | `.` | Barrel — re-exports everything below except `documentation-core` |
24
+ | `./documentation` | `ComponentMetadata`, `DeprecationInfo`, `ComponentBadge`, `SectionOrder`, `LLMConfig` |
25
+ | `./docs-config` | `SvelteDocsConfig`, `DocsPlaygroundConfig`, `VariantsConfig`, `ExamplesConfig`, `ApiConfig`, `OverviewConfig`, `UsageConfig`, `DocsMetadata` |
26
+ | `./components` | `ComponentInfo`, `ComponentStats`, `PropInfo`, `PropSource`, `PropExample`, `VariantInfo`, `VariantExample`, `InheritanceInfo`, `CrossReference`, `PackageInfo` |
27
+ | `./examples` | `ComponentExample`, `UsagePattern`, `ExampleCollection`, `ExampleGroup` |
28
+ | `./playground` | `PlaygroundConfig`, `ControlDefinition`, `ControlType`, `ControlOption`, `ControlCondition`, `CodeGenerator`, `CodeGeneratorConfig`, `ImportStatement`, `PlaygroundExample`, `PlaygroundMetadata`, `PlaygroundFeature` |
29
+ | `./navigation` | `NavigationItem`, `NavigationMetadata`, `NavigationState`, `NavigationBadge`, `TableOfContents`, `TOCItem`, `TOCSettings`, `Breadcrumb`, `BreadcrumbItem`, `BreadcrumbSettings`, `SiteNavigation`, `NavigationContext`, `NavigationSearchResult`, `SearchMatch` |
30
+ | `./globals` | Monorepo-wide branded types and constants |
31
+ | `./utilities` | Helper types |
32
+
33
+ ## Usage
34
+
35
+ ```typescript
36
+ import type { PropInfo, ComponentInfo } from '@urbicon-ui/shared-types/components';
37
+ import type { PlaygroundConfig } from '@urbicon-ui/shared-types/playground';
38
+
39
+ const button: ComponentInfo = {
40
+ name: 'Button',
41
+ props: [{ name: 'intent', type: 'ComponentIntent', required: false }],
42
+ // ...
43
+ };
44
+ ```
45
+
46
+ The root barrel export is convenient but pulls all namespaces in; prefer the subpath exports for smaller type-check surface.
47
+
48
+ ## Versioning
49
+
50
+ Unified with the monorepo version (see root [CHANGELOG.md](../../CHANGELOG.md)). Breaking changes to exported types are treated as semver-major for the whole workspace.
51
+
52
+ ## Development
53
+
54
+ ```bash
55
+ bun --filter='@urbicon-ui/shared-types' run build # tsc build
56
+ bun --filter='@urbicon-ui/shared-types' run check # tsc --noEmit
57
+ bun --filter='@urbicon-ui/shared-types' run dev # watch mode
58
+ ```
59
+
60
+ ## Related
61
+
62
+ - [Architecture Overview](../../docs/ARCHITECTURE.md) — how the type hub feeds docs-gen, docs, and mcp-server
63
+ - [Component API Conventions](../../docs/COMPONENT-API-CONVENTIONS.md) — canonical prop patterns reflected in these types
@@ -0,0 +1,185 @@
1
+ import type { DeprecationInfo } from './documentation.js';
2
+ import type { ComponentDocumentation } from './documentation-core.js';
3
+ /**
4
+ * Component maturity / stability classifier — drives the Editorial
5
+ * stability badge in the doc-page header. Defaults to `'stable'` when
6
+ * the `@stability` JSDoc tag is omitted, on the assumption that most
7
+ * shipped components are stable and the noise of a `BETA` badge on
8
+ * every page is not what we want.
9
+ */
10
+ export type ComponentStability = 'experimental' | 'beta' | 'stable' | 'deprecated';
11
+ /**
12
+ * All the information that can be extracted and inferred from a component
13
+ */
14
+ export interface ComponentInfo {
15
+ /** Component name */
16
+ name: string;
17
+ /** Package name */
18
+ packageName: string;
19
+ /** Path to component file */
20
+ filePath: string;
21
+ /** Version */
22
+ version?: string;
23
+ /** Component description */
24
+ description: string;
25
+ /** Deprecation information */
26
+ deprecated?: DeprecationInfo;
27
+ /** Experimental status */
28
+ experimental?: boolean;
29
+ /** Version since when available */
30
+ since?: string;
31
+ /**
32
+ * Maturity classifier — extracted from `@stability {experimental|beta|stable|deprecated}`
33
+ * JSDoc. Drives the Editorial `[STABLE]` / `[BETA]` / etc. badge.
34
+ * Defaults to `'stable'` if the tag is missing.
35
+ */
36
+ stability?: ComponentStability;
37
+ /**
38
+ * GitHub blob URL for the component's source file — built at
39
+ * generation time from `filePath`. Drives the Editorial `source ↗`
40
+ * link in the doc-page header.
41
+ */
42
+ sourceHref?: string;
43
+ /** Category tags (e.g. form, layout, feedback) — extracted from @tag JSDoc */
44
+ tags?: string[];
45
+ /** Related component names — extracted from @related JSDoc */
46
+ relatedComponents?: string[];
47
+ /** Component properties */
48
+ props: PropInfo[];
49
+ /** Available variants */
50
+ variants: VariantInfo[];
51
+ /** Inheritance information */
52
+ inheritance: InheritanceInfo[];
53
+ /** Component statistics */
54
+ stats: ComponentStats;
55
+ /** Component documentation */
56
+ documentation?: ComponentDocumentation;
57
+ }
58
+ /**
59
+ * Property information (from docs-gen)
60
+ */
61
+ export interface PropInfo {
62
+ /** Property name */
63
+ name: string;
64
+ /** TypeScript type */
65
+ type: string;
66
+ /** Whether property is required */
67
+ required: boolean;
68
+ /** Property description */
69
+ description: string;
70
+ /** Default value */
71
+ defaultValue?: string;
72
+ /** Where this prop comes from */
73
+ source: PropSource;
74
+ /** Usage examples */
75
+ examples?: PropExample[];
76
+ /** Deprecation info */
77
+ deprecated?: DeprecationInfo;
78
+ /** Experimental flag */
79
+ experimental?: boolean;
80
+ /** Version since available */
81
+ since?: string;
82
+ /** Values */
83
+ values?: string[];
84
+ /** See also */
85
+ seeAlso?: string;
86
+ /**
87
+ * When the host type is a discriminated union (e.g.
88
+ * `type Foo = A | B`), this records the variants in which the prop
89
+ * actually exists. The `propName` points at the discriminator
90
+ * property; `values` lists the discriminator values for which this
91
+ * prop is applicable. Omit means the prop is unconditional.
92
+ */
93
+ conditionalOn?: {
94
+ propName: string;
95
+ values: string[];
96
+ };
97
+ }
98
+ /**
99
+ * Source of a property
100
+ */
101
+ export interface PropSource {
102
+ type: 'direct' | 'inherited' | 'variant';
103
+ name?: string;
104
+ package?: string;
105
+ url?: string;
106
+ }
107
+ /**
108
+ * Property usage example
109
+ */
110
+ export interface PropExample {
111
+ title: string;
112
+ code: string;
113
+ description?: string;
114
+ }
115
+ /**
116
+ * Variant information (from docs-gen)
117
+ */
118
+ export interface VariantInfo {
119
+ /** Variant name */
120
+ name: string;
121
+ /** Available values */
122
+ values: string[];
123
+ /** Default value */
124
+ defaultValue?: string;
125
+ /** Variant examples */
126
+ examples?: VariantExample[];
127
+ }
128
+ /**
129
+ * Example for a specific variant
130
+ */
131
+ export interface VariantExample {
132
+ value: string;
133
+ label: string;
134
+ description?: string;
135
+ code?: string;
136
+ }
137
+ /**
138
+ * Inheritance information (from docs-gen)
139
+ */
140
+ export interface InheritanceInfo {
141
+ /** Type name */
142
+ typeName: string;
143
+ /** Source package/module */
144
+ source: string;
145
+ /** Inherited properties */
146
+ props: PropInfo[];
147
+ /** Documentation URL */
148
+ url?: string;
149
+ }
150
+ /**
151
+ * Component statistics (enhanced from docs-gen + shared-types)
152
+ */
153
+ export interface ComponentStats {
154
+ /** Total number of props */
155
+ totalProps: number;
156
+ /** Direct props (not inherited) */
157
+ directProps: number;
158
+ /** Variant-related props */
159
+ variantProps: number;
160
+ /** Inherited props */
161
+ inheritedProps: number;
162
+ /** Last updated timestamp */
163
+ lastUpdated?: string;
164
+ }
165
+ /**
166
+ * Cross-reference to other components or types (from docs-gen)
167
+ */
168
+ export interface CrossReference {
169
+ type: 'component' | 'type' | 'external';
170
+ name: string;
171
+ package: string;
172
+ url?: string;
173
+ description?: string;
174
+ }
175
+ /**
176
+ * Package information (from docs-gen)
177
+ */
178
+ export interface PackageInfo {
179
+ name: string;
180
+ version: string;
181
+ description?: string;
182
+ homepage?: string;
183
+ repository?: string;
184
+ }
185
+ //# sourceMappingURL=component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../src/component.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component.js","sourceRoot":"","sources":["../src/component.ts"],"names":[],"mappings":""}
@@ -0,0 +1,120 @@
1
+ import type { ComponentBadge, ComponentMetadata, LLMConfig } from './documentation.js';
2
+ import type { ControlDefinition } from './playground.js';
3
+ /**
4
+ * Configuration exported from docs.svelte files
5
+ * Used for build-time processing and auto-section generation
6
+ */
7
+ export interface SvelteDocsConfig {
8
+ /** Configuration for auto-generated sections */
9
+ generation?: {
10
+ /** Interactive playground configuration */
11
+ playground?: DocsPlaygroundConfig;
12
+ /** Variants showcase configuration */
13
+ variants?: VariantsConfig;
14
+ /** Examples section - false means we provide custom */
15
+ examples?: boolean | ExamplesConfig;
16
+ /** API reference configuration */
17
+ api?: ApiConfig;
18
+ /** Overview section configuration */
19
+ overview?: OverviewConfig;
20
+ /** Usage notes configuration */
21
+ usage?: boolean | UsageConfig;
22
+ };
23
+ /** LLM-specific configuration (extends shared config) */
24
+ llm?: LLMConfig;
25
+ /** Component metadata (extends shared metadata) */
26
+ meta?: DocsMetadata;
27
+ }
28
+ /**
29
+ * Playground configuration for docs generation
30
+ * Simple configuration for auto-generating playground sections
31
+ */
32
+ export interface DocsPlaygroundConfig {
33
+ /** Props to feature in the playground */
34
+ featured?: string[];
35
+ /** Props to exclude from playground */
36
+ exclude?: string[];
37
+ /** Default values for playground */
38
+ defaults?: Record<string, unknown>;
39
+ /** Additional/override controls for the playground */
40
+ controls?: ControlDefinition[];
41
+ /** Enable/disable playground */
42
+ enabled?: boolean;
43
+ /** Section order */
44
+ order?: number;
45
+ }
46
+ /**
47
+ * Variants showcase configuration
48
+ */
49
+ export interface VariantsConfig {
50
+ /** Variants to exclude from showcase */
51
+ exclude?: string[];
52
+ /** How to group variants (by intent, size, etc.) */
53
+ groupBy?: string;
54
+ /** Maximum variants to show per group */
55
+ limit?: number;
56
+ /** Enable/disable variants section */
57
+ enabled?: boolean;
58
+ /** Section order */
59
+ order?: number;
60
+ }
61
+ /**
62
+ * Examples section configuration
63
+ */
64
+ export interface ExamplesConfig {
65
+ /** Enable/disable examples section */
66
+ enabled?: boolean;
67
+ /** Section order */
68
+ order?: number;
69
+ /** Maximum examples to show */
70
+ limit?: number;
71
+ }
72
+ /**
73
+ * API reference configuration
74
+ */
75
+ export interface ApiConfig {
76
+ /** Show inherited properties */
77
+ showInheritance?: boolean;
78
+ /** Group properties by category */
79
+ groupBy?: 'type' | 'category' | 'alphabetical';
80
+ /** Show deprecated properties */
81
+ showDeprecated?: boolean;
82
+ /** Enable/disable API section */
83
+ enabled?: boolean;
84
+ /** Section order */
85
+ order?: number;
86
+ }
87
+ /**
88
+ * Overview section configuration
89
+ */
90
+ export interface OverviewConfig {
91
+ /** Show component stats */
92
+ showStats?: boolean;
93
+ /** Show tier badges */
94
+ showBadges?: boolean;
95
+ /** Enable/disable overview section */
96
+ enabled?: boolean;
97
+ /** Section order */
98
+ order?: number;
99
+ }
100
+ /**
101
+ * Usage notes configuration
102
+ */
103
+ export interface UsageConfig {
104
+ /** Enable/disable usage notes section */
105
+ enabled?: boolean;
106
+ /** Section order */
107
+ order?: number;
108
+ }
109
+ /**
110
+ * Docs-specific metadata (extends shared ComponentMetadata)
111
+ */
112
+ export interface DocsMetadata extends Partial<ComponentMetadata> {
113
+ /** Component title (defaults to component name) */
114
+ title?: string;
115
+ /** Show table of contents */
116
+ showToc?: boolean;
117
+ /** Custom badges to display */
118
+ badges?: ComponentBadge[];
119
+ }
120
+ //# sourceMappingURL=docs-config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"docs-config.d.ts","sourceRoot":"","sources":["../src/docs-config.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=docs-config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"docs-config.js","sourceRoot":"","sources":["../src/docs-config.ts"],"names":[],"mappings":""}
@@ -0,0 +1,217 @@
1
+ import type { ComponentInfo } from './component.js';
2
+ import type { ComponentBadge, LLMConfig } from './documentation.js';
3
+ import type { ComponentExample, UsagePattern } from './examples.js';
4
+ import type { NavigationItem } from './navigation.js';
5
+ import type { PlaygroundConfig } from './playground.js';
6
+ /**
7
+ * Documentation section for generation pipeline
8
+ * Used for rendering and processing documentation sections
9
+ */
10
+ export interface DocumentationSection {
11
+ /** Unique section ID */
12
+ id: string;
13
+ /** Section title */
14
+ title: string;
15
+ /** Section type - primary categorization */
16
+ type: SectionType;
17
+ /** Display order */
18
+ order: number;
19
+ /** Section content */
20
+ content: SectionContent;
21
+ }
22
+ /**
23
+ * Available section types
24
+ */
25
+ export type SectionType = 'overview' | 'playground' | 'examples' | 'variants' | 'api' | 'types' | 'accessibility' | 'custom' | 'text';
26
+ /**
27
+ * Union type for different section content types
28
+ * Content type is inferred from DocumentationSection.type
29
+ */
30
+ export type SectionContent = ExampleContent | PlaygroundContent | TextContent | ApiContent | VariantsContent | CustomContent;
31
+ /**
32
+ * Example section content
33
+ */
34
+ export interface ExampleContent {
35
+ examples: ComponentExample[];
36
+ showCategories?: boolean;
37
+ groupByCategory?: boolean;
38
+ }
39
+ /**
40
+ * Playground section content
41
+ */
42
+ export interface PlaygroundContent {
43
+ config: PlaygroundConfig;
44
+ showCodePreview?: boolean;
45
+ showInlineControls?: boolean;
46
+ }
47
+ /**
48
+ * Text/markdown section content
49
+ */
50
+ export interface TextContent {
51
+ content: string;
52
+ format?: 'markdown' | 'html' | 'plain';
53
+ variables?: Record<string, unknown>;
54
+ }
55
+ /**
56
+ * API reference section content. `props` is typed as `unknown[]` because
57
+ * this base type ships without a runtime dependency on docs-gen's PropInfo.
58
+ */
59
+ export interface ApiContent {
60
+ props: unknown[];
61
+ showInherited?: boolean;
62
+ groupByCategory?: boolean;
63
+ showExamples?: boolean;
64
+ }
65
+ /**
66
+ * Variants showcase section content. `variants` is typed as `unknown[]`
67
+ * because this base type ships without a runtime dependency on docs-gen's
68
+ * VariantInfo.
69
+ */
70
+ export interface VariantsContent {
71
+ variants: unknown[];
72
+ showExamples?: boolean;
73
+ showCombinations?: boolean;
74
+ }
75
+ /**
76
+ * Custom section content
77
+ */
78
+ export interface CustomContent {
79
+ content: string;
80
+ template?: string;
81
+ variables?: Record<string, unknown>;
82
+ }
83
+ /**
84
+ * Complete component documentation structure.
85
+ * Either auto-generated or manually created.
86
+ */
87
+ export interface ComponentDocumentation {
88
+ /** Component identifier */
89
+ component: string;
90
+ /** Display title */
91
+ title: string;
92
+ /** Component description */
93
+ description: string;
94
+ /** Display badges */
95
+ badges?: ComponentBadge[];
96
+ /** Auto-generated sections configuration */
97
+ autoSections: AutoSectionsConfig;
98
+ /** Custom sections */
99
+ customSections?: CustomSection[];
100
+ /** Section structure and ordering */
101
+ sectionStructure?: SectionStructure;
102
+ /** Navigation items */
103
+ navigation?: NavigationItem[];
104
+ /** LLM-specific settings */
105
+ llmSettings: LLMSettings;
106
+ /** Documentation metadata */
107
+ metadata?: DocumentationMetadata;
108
+ /** Documentation sections (for docs-gen compatibility) */
109
+ sections?: DocumentationSection[];
110
+ }
111
+ /**
112
+ * Configuration for auto-generated sections
113
+ */
114
+ export interface AutoSectionsConfig {
115
+ /** Interactive playground */
116
+ playground: boolean;
117
+ /** Basic usage examples */
118
+ basicUsage: boolean;
119
+ /** Variants showcase */
120
+ variants: boolean;
121
+ /** Size variations */
122
+ sizes: boolean;
123
+ /** Intent variations */
124
+ intents: boolean;
125
+ /** Mint micro-interactions */
126
+ mint: boolean | string | string[];
127
+ /** API reference */
128
+ api: boolean;
129
+ /** Accessibility section */
130
+ accessibility: boolean;
131
+ }
132
+ /**
133
+ * Custom documentation section
134
+ */
135
+ export interface CustomSection {
136
+ /** Unique section ID */
137
+ id: string;
138
+ /** Section title */
139
+ title: string;
140
+ /** Section subtitle */
141
+ subtitle?: string;
142
+ /** Section content (markdown/HTML) */
143
+ content: string;
144
+ /** Include in LLM output */
145
+ includeLLM?: boolean;
146
+ /** Order within parent section */
147
+ order?: number;
148
+ /** Parent section ID */
149
+ parentSection?: string;
150
+ }
151
+ /**
152
+ * Section structure and ordering
153
+ */
154
+ export interface SectionStructure {
155
+ /** Custom section order */
156
+ order?: string[];
157
+ /** Custom parent section configurations */
158
+ customParents?: Record<string, ParentSectionConfig>;
159
+ }
160
+ /**
161
+ * Parent section configuration
162
+ */
163
+ export interface ParentSectionConfig {
164
+ /** Section title */
165
+ title: string;
166
+ /** Section subtitle */
167
+ subtitle?: string;
168
+ /** Section ID (auto-generated if not provided) */
169
+ id?: string;
170
+ }
171
+ /**
172
+ * LLM generation settings
173
+ */
174
+ export interface LLMSettings extends LLMConfig {
175
+ /** Include playground section */
176
+ includePlayground: boolean;
177
+ /** Include complex examples */
178
+ includeComplexExamples: boolean;
179
+ /** Include full API reference */
180
+ includeFullAPI: boolean;
181
+ /** Maximum examples per section */
182
+ maxExamplesPerSection: number;
183
+ /** Content simplification level */
184
+ simplificationLevel?: 'none' | 'basic' | 'aggressive';
185
+ }
186
+ /**
187
+ * Documentation metadata
188
+ */
189
+ export interface DocumentationMetadata {
190
+ /** Last updated timestamp */
191
+ lastUpdated?: string;
192
+ /** Documentation version */
193
+ version?: string;
194
+ /** Contributors */
195
+ contributors?: string[];
196
+ /** Review status */
197
+ reviewStatus?: 'draft' | 'review' | 'approved';
198
+ /** Related components */
199
+ relatedComponents?: string[];
200
+ }
201
+ /**
202
+ * Complete documentation files structure
203
+ */
204
+ export interface ComponentDocumentationFiles {
205
+ /** Component examples */
206
+ examples: ComponentExample[];
207
+ /** Playground configuration */
208
+ playground: PlaygroundConfig;
209
+ /** Main documentation content */
210
+ content: ComponentDocumentation;
211
+ /** Usage patterns */
212
+ patterns?: UsagePattern[];
213
+ /** Associated component info */
214
+ component?: ComponentInfo;
215
+ }
216
+ export type { ComponentExample, PlaygroundConfig, UsagePattern };
217
+ //# sourceMappingURL=documentation-core.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"documentation-core.d.ts","sourceRoot":"","sources":["../src/documentation-core.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=documentation-core.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"documentation-core.js","sourceRoot":"","sources":["../src/documentation-core.ts"],"names":[],"mappings":""}
@@ -0,0 +1,44 @@
1
+ /**
2
+ * Component metadata (shared across all packages)
3
+ */
4
+ export interface ComponentMetadata {
5
+ version?: string;
6
+ description: string;
7
+ tags: string[];
8
+ deprecated?: DeprecationInfo;
9
+ experimental?: boolean;
10
+ since?: string;
11
+ }
12
+ export interface DeprecationInfo {
13
+ message: string;
14
+ since: string;
15
+ alternative?: string;
16
+ removeIn?: string;
17
+ }
18
+ /**
19
+ * Badge configuration (used in multiple packages)
20
+ */
21
+ export interface ComponentBadge {
22
+ label: string;
23
+ intent?: 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info';
24
+ variant?: 'filled' | 'outlined' | 'soft';
25
+ }
26
+ /**
27
+ * Section ordering concept
28
+ */
29
+ export interface SectionOrder {
30
+ id: string;
31
+ order: number;
32
+ }
33
+ /**
34
+ * Basic LLM configuration (shared between docs generators)
35
+ */
36
+ export interface LLMConfig {
37
+ include?: boolean;
38
+ maxSections?: number;
39
+ priority?: string[];
40
+ excludeTypes?: string[];
41
+ simplifyContent?: boolean;
42
+ }
43
+ export type { DeprecationInfo as ComponentDeprecationInfo };
44
+ //# sourceMappingURL=documentation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"documentation.d.ts","sourceRoot":"","sources":["../src/documentation.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,UAAU,CAAC,EAAE,eAAe,CAAC;IAC7B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC7E,OAAO,CAAC,EAAE,QAAQ,GAAG,UAAU,GAAG,MAAM,CAAC;CAC1C;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAGD,YAAY,EAAE,eAAe,IAAI,wBAAwB,EAAE,CAAC"}