-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlayout.ts
More file actions
452 lines (432 loc) · 7.63 KB
/
layout.ts
File metadata and controls
452 lines (432 loc) · 7.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
/**
* @object-ui/types - Layout Component Schemas
*
* Type definitions for layout and container components.
* These components organize and structure other components.
*
* @module layout
* @packageDocumentation
*/
import type { BaseSchema, SchemaNode } from './base';
/**
* Basic HTML div container
*/
export interface DivSchema extends BaseSchema {
type: 'div';
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Text span component for inline text
*/
export interface SpanSchema extends BaseSchema {
type: 'span';
/**
* Text content
*/
value?: string;
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Text display component
*/
export interface TextSchema extends BaseSchema {
type: 'text';
/**
* Text content to display
*/
value?: string;
/**
* Text variant/style
* @default 'body'
*/
variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'body' | 'caption' | 'overline';
/**
* Text alignment
*/
align?: 'left' | 'center' | 'right' | 'justify';
}
/**
* Image component
*/
export interface ImageSchema extends BaseSchema {
type: 'image';
/**
* Image source URL
*/
src: string;
/**
* Alt text for accessibility
*/
alt?: string;
/**
* Image width
*/
width?: string | number;
/**
* Image height
*/
height?: string | number;
/**
* Object fit property
*/
objectFit?: 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
}
/**
* Icon component
*/
export interface IconSchema extends BaseSchema {
type: 'icon';
/**
* Icon name (lucide-react icon name)
*/
name: string;
/**
* Icon size in pixels
* @default 24
*/
size?: number;
/**
* Icon color
*/
color?: string;
}
/**
* Separator/Divider component
*/
export interface SeparatorSchema extends BaseSchema {
type: 'separator';
/**
* Orientation of the separator
* @default 'horizontal'
*/
orientation?: 'horizontal' | 'vertical';
/**
* Whether to add decorative content
*/
decorative?: boolean;
}
/**
* Generic container component
*/
export interface ContainerSchema extends BaseSchema {
type: 'container';
/**
* Max width constraint
* @default 'lg'
*/
maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | 'full' | 'screen' | false;
/**
* Center the container
* @default true
*/
centered?: boolean;
/**
* Padding
*/
padding?: number;
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Flexbox layout component
*/
export interface FlexSchema extends BaseSchema {
type: 'flex';
/**
* Flex direction
* @default 'row'
*/
direction?: 'row' | 'col' | 'row-reverse' | 'col-reverse';
/**
* Justify content alignment
* @default 'start'
*/
justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
/**
* Align items
* @default 'center'
*/
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
/**
* Gap between items (Tailwind scale 0-8)
* @default 2
*/
gap?: number;
/**
* Allow items to wrap
* @default false
*/
wrap?: boolean;
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Stack layout component (Vertical Flex shortcut)
*/
export interface StackSchema extends Omit<FlexSchema, 'type'> {
type: 'stack';
}
/**
* CSS Grid layout component
*/
export interface GridSchema extends BaseSchema {
type: 'grid';
/**
* Number of columns (responsive)
* Can be number or object: { xs: 1, sm: 2, md: 3, lg: 4 }
* @default 3
*/
columns?: number | Record<string, number>;
/**
* Gap between items (Tailwind scale 0-8)
* @default 4
*/
gap?: number;
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Card component
*/
export interface CardSchema extends BaseSchema {
type: 'card';
/**
* Card title
*/
title?: string;
/**
* Card description
*/
description?: string;
/**
* Card header content
*/
header?: SchemaNode | SchemaNode[];
/**
* Card body/content (Legacy, use children)
*/
body?: SchemaNode | SchemaNode[];
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
/**
* Card footer content
*/
footer?: SchemaNode | SchemaNode[];
/**
* Variant style
* @default 'default'
*/
variant?: 'default' | 'outline' | 'ghost';
/**
* Whether the card is hoverable
* @default false
*/
hoverable?: boolean;
/**
* Whether the card is clickable
* @default false
*/
clickable?: boolean;
/**
* Click handler
*/
onClick?: () => void;
}
/**
* Tabs component
*/
export interface TabsSchema extends BaseSchema {
type: 'tabs';
/**
* Default active tab value
*/
defaultValue?: string;
/**
* Controlled active tab value
*/
value?: string;
/**
* Tabs orientation
* @default 'horizontal'
*/
orientation?: 'horizontal' | 'vertical';
/**
* Tab items configuration
*/
items: TabItem[];
/**
* Change handler
*/
onValueChange?: (value: string) => void;
}
/**
* Individual tab item
*/
export interface TabItem {
/**
* Unique tab identifier
*/
value: string;
/**
* Tab label
*/
label: string;
/**
* Tab icon
*/
icon?: string;
/**
* Whether tab is disabled
*/
disabled?: boolean;
/**
* Tab content
*/
content: SchemaNode | SchemaNode[];
}
/**
* Scroll area component
*/
export interface ScrollAreaSchema extends BaseSchema {
type: 'scroll-area';
/**
* Height of the scroll container
*/
height?: string | number;
/**
* Width of the scroll container
*/
width?: string | number;
/**
* Scrollbar orientation
* @default 'vertical'
*/
orientation?: 'vertical' | 'horizontal' | 'both';
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Resizable panels component
*/
export interface ResizableSchema extends BaseSchema {
type: 'resizable';
/**
* Direction of resizable panels
* @default 'horizontal'
*/
direction?: 'horizontal' | 'vertical';
/**
* Minimum Height
*/
minHeight?: string | number;
/**
* Show resize handle
* @default true
*/
withHandle?: boolean;
/**
* Resizable panels
*/
panels: ResizablePanel[];
}
/**
* Individual resizable panel
*/
export interface ResizablePanel {
/**
* Unique panel identifier
*/
id: string;
/**
* Default size (percentage 0-100)
*/
defaultSize?: number;
/**
* Minimum size (percentage 0-100)
*/
minSize?: number;
/**
* Maximum size (percentage 0-100)
*/
maxSize?: number;
/**
* Panel content
*/
content: SchemaNode | SchemaNode[];
}
/**
* Page layout component
* Top-level container for a page route
*/
export interface PageSchema extends BaseSchema {
type: 'page';
/**
* Page title
*/
title?: string;
/**
* Page icon (Lucide icon name)
*/
icon?: string;
/**
* Page description
*/
description?: string;
/**
* Main content array
*/
body?: SchemaNode[];
/**
* Alternative content prop
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Union type of all layout schemas
*/
export type LayoutSchema =
| DivSchema
| SpanSchema
| TextSchema
| ImageSchema
| IconSchema
| SeparatorSchema
| ContainerSchema
| FlexSchema
| StackSchema
| GridSchema
| CardSchema
| TabsSchema
| ScrollAreaSchema
| ResizableSchema
| PageSchema;
/**
* Page container component
*/
export interface PageSchema extends BaseSchema {
type: 'page';
/**
* Page title
*/
title?: string;
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}