@tekton-ui/core 0.3.3 → 0.3.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.
- package/dist/layout-validation.d.ts +170 -170
- package/dist/schema-validation.d.ts +28 -28
- package/dist/screen-generation/validators.d.ts +13 -13
- package/dist/token-validation.d.ts +75 -75
- package/package.json +3 -2
|
@@ -21,13 +21,13 @@ export declare const ResponsiveTokenSchema: z.ZodObject<{
|
|
|
21
21
|
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
22
22
|
description: z.ZodString;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
id: string;
|
|
25
24
|
description: string;
|
|
25
|
+
id: string;
|
|
26
26
|
minWidth: number;
|
|
27
27
|
maxWidth?: number | undefined;
|
|
28
28
|
}, {
|
|
29
|
-
id: string;
|
|
30
29
|
description: string;
|
|
30
|
+
id: string;
|
|
31
31
|
minWidth: number;
|
|
32
32
|
maxWidth?: number | undefined;
|
|
33
33
|
}>;
|
|
@@ -53,15 +53,15 @@ export declare const ShellRegionSchema: z.ZodObject<{
|
|
|
53
53
|
collapsible: z.ZodOptional<z.ZodBoolean>;
|
|
54
54
|
defaultCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
55
55
|
}, "strip", z.ZodTypeAny, {
|
|
56
|
-
size: string;
|
|
57
56
|
name: string;
|
|
58
|
-
position: "top" | "
|
|
57
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
58
|
+
size: string;
|
|
59
59
|
collapsible?: boolean | undefined;
|
|
60
60
|
defaultCollapsed?: boolean | undefined;
|
|
61
61
|
}, {
|
|
62
|
-
size: string;
|
|
63
62
|
name: string;
|
|
64
|
-
position: "top" | "
|
|
63
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
64
|
+
size: string;
|
|
65
65
|
collapsible?: boolean | undefined;
|
|
66
66
|
defaultCollapsed?: boolean | undefined;
|
|
67
67
|
}>;
|
|
@@ -85,43 +85,43 @@ export declare const ShellTokenSchema: z.ZodObject<{
|
|
|
85
85
|
collapsible: z.ZodOptional<z.ZodBoolean>;
|
|
86
86
|
defaultCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
-
size: string;
|
|
89
88
|
name: string;
|
|
90
|
-
position: "top" | "
|
|
89
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
90
|
+
size: string;
|
|
91
91
|
collapsible?: boolean | undefined;
|
|
92
92
|
defaultCollapsed?: boolean | undefined;
|
|
93
93
|
}, {
|
|
94
|
-
size: string;
|
|
95
94
|
name: string;
|
|
96
|
-
position: "top" | "
|
|
95
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
96
|
+
size: string;
|
|
97
97
|
collapsible?: boolean | undefined;
|
|
98
98
|
defaultCollapsed?: boolean | undefined;
|
|
99
99
|
}>, "many">;
|
|
100
100
|
responsive: z.ZodType<ResponsiveConfig<Record<string, unknown>>, z.ZodTypeDef, ResponsiveConfig<Record<string, unknown>>>;
|
|
101
101
|
tokenBindings: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>;
|
|
102
102
|
}, "strip", z.ZodTypeAny, {
|
|
103
|
-
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
104
|
-
id: string;
|
|
105
103
|
description: string;
|
|
106
104
|
tokenBindings: Record<string, string>;
|
|
105
|
+
id: string;
|
|
106
|
+
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
107
107
|
platform: "web" | "mobile" | "desktop";
|
|
108
108
|
regions: {
|
|
109
|
-
size: string;
|
|
110
109
|
name: string;
|
|
111
|
-
position: "top" | "
|
|
110
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
111
|
+
size: string;
|
|
112
112
|
collapsible?: boolean | undefined;
|
|
113
113
|
defaultCollapsed?: boolean | undefined;
|
|
114
114
|
}[];
|
|
115
115
|
}, {
|
|
116
|
-
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
117
|
-
id: string;
|
|
118
116
|
description: string;
|
|
119
117
|
tokenBindings: Record<string, string>;
|
|
118
|
+
id: string;
|
|
119
|
+
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
120
120
|
platform: "web" | "mobile" | "desktop";
|
|
121
121
|
regions: {
|
|
122
|
-
size: string;
|
|
123
122
|
name: string;
|
|
124
|
-
position: "top" | "
|
|
123
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
124
|
+
size: string;
|
|
125
125
|
collapsible?: boolean | undefined;
|
|
126
126
|
defaultCollapsed?: boolean | undefined;
|
|
127
127
|
}[];
|
|
@@ -182,29 +182,29 @@ export declare const PageLayoutTokenSchema: z.ZodObject<{
|
|
|
182
182
|
responsive: z.ZodType<ResponsiveConfig<Record<string, unknown>>, z.ZodTypeDef, ResponsiveConfig<Record<string, unknown>>>;
|
|
183
183
|
tokenBindings: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>;
|
|
184
184
|
}, "strip", z.ZodTypeAny, {
|
|
185
|
-
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
186
|
-
id: string;
|
|
187
185
|
description: string;
|
|
188
186
|
tokenBindings: Record<string, string>;
|
|
189
|
-
|
|
187
|
+
id: string;
|
|
188
|
+
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
190
189
|
sections: {
|
|
191
190
|
name: string;
|
|
192
191
|
required: boolean;
|
|
193
192
|
pattern: string;
|
|
194
193
|
allowedComponents?: string[] | undefined;
|
|
195
194
|
}[];
|
|
195
|
+
purpose: "job" | "resource" | "dashboard" | "settings" | "detail" | "empty" | "wizard" | "onboarding";
|
|
196
196
|
}, {
|
|
197
|
-
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
198
|
-
id: string;
|
|
199
197
|
description: string;
|
|
200
198
|
tokenBindings: Record<string, string>;
|
|
201
|
-
|
|
199
|
+
id: string;
|
|
200
|
+
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
202
201
|
sections: {
|
|
203
202
|
name: string;
|
|
204
203
|
required: boolean;
|
|
205
204
|
pattern: string;
|
|
206
205
|
allowedComponents?: string[] | undefined;
|
|
207
206
|
}[];
|
|
207
|
+
purpose: "job" | "resource" | "dashboard" | "settings" | "detail" | "empty" | "wizard" | "onboarding";
|
|
208
208
|
}>;
|
|
209
209
|
/**
|
|
210
210
|
* Section Type Schema
|
|
@@ -226,24 +226,24 @@ export declare const SectionCSSSchema: z.ZodObject<{
|
|
|
226
226
|
padding: z.ZodOptional<z.ZodString>;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
228
228
|
display: "grid" | "flex";
|
|
229
|
-
|
|
229
|
+
maxWidth?: string | undefined;
|
|
230
230
|
gridTemplateColumns?: string | undefined;
|
|
231
231
|
gridTemplateRows?: string | undefined;
|
|
232
232
|
gap?: string | undefined;
|
|
233
233
|
flexDirection?: "row" | "column" | undefined;
|
|
234
234
|
alignItems?: string | undefined;
|
|
235
235
|
justifyContent?: string | undefined;
|
|
236
|
-
|
|
236
|
+
padding?: string | undefined;
|
|
237
237
|
}, {
|
|
238
238
|
display: "grid" | "flex";
|
|
239
|
-
|
|
239
|
+
maxWidth?: string | undefined;
|
|
240
240
|
gridTemplateColumns?: string | undefined;
|
|
241
241
|
gridTemplateRows?: string | undefined;
|
|
242
242
|
gap?: string | undefined;
|
|
243
243
|
flexDirection?: "row" | "column" | undefined;
|
|
244
244
|
alignItems?: string | undefined;
|
|
245
245
|
justifyContent?: string | undefined;
|
|
246
|
-
|
|
246
|
+
padding?: string | undefined;
|
|
247
247
|
}>;
|
|
248
248
|
/**
|
|
249
249
|
* Section Pattern Token Schema
|
|
@@ -265,101 +265,101 @@ export declare const SectionPatternTokenSchema: z.ZodObject<{
|
|
|
265
265
|
padding: z.ZodOptional<z.ZodString>;
|
|
266
266
|
}, "strip", z.ZodTypeAny, {
|
|
267
267
|
display: "grid" | "flex";
|
|
268
|
-
|
|
268
|
+
maxWidth?: string | undefined;
|
|
269
269
|
gridTemplateColumns?: string | undefined;
|
|
270
270
|
gridTemplateRows?: string | undefined;
|
|
271
271
|
gap?: string | undefined;
|
|
272
272
|
flexDirection?: "row" | "column" | undefined;
|
|
273
273
|
alignItems?: string | undefined;
|
|
274
274
|
justifyContent?: string | undefined;
|
|
275
|
-
|
|
275
|
+
padding?: string | undefined;
|
|
276
276
|
}, {
|
|
277
277
|
display: "grid" | "flex";
|
|
278
|
-
|
|
278
|
+
maxWidth?: string | undefined;
|
|
279
279
|
gridTemplateColumns?: string | undefined;
|
|
280
280
|
gridTemplateRows?: string | undefined;
|
|
281
281
|
gap?: string | undefined;
|
|
282
282
|
flexDirection?: "row" | "column" | undefined;
|
|
283
283
|
alignItems?: string | undefined;
|
|
284
284
|
justifyContent?: string | undefined;
|
|
285
|
-
|
|
285
|
+
padding?: string | undefined;
|
|
286
286
|
}>;
|
|
287
287
|
responsive: z.ZodType<ResponsiveConfig<{
|
|
288
288
|
display: "grid" | "flex";
|
|
289
|
-
|
|
289
|
+
maxWidth?: string | undefined;
|
|
290
290
|
gridTemplateColumns?: string | undefined;
|
|
291
291
|
gridTemplateRows?: string | undefined;
|
|
292
292
|
gap?: string | undefined;
|
|
293
293
|
flexDirection?: "row" | "column" | undefined;
|
|
294
294
|
alignItems?: string | undefined;
|
|
295
295
|
justifyContent?: string | undefined;
|
|
296
|
-
|
|
296
|
+
padding?: string | undefined;
|
|
297
297
|
}>, z.ZodTypeDef, ResponsiveConfig<{
|
|
298
298
|
display: "grid" | "flex";
|
|
299
|
-
|
|
299
|
+
maxWidth?: string | undefined;
|
|
300
300
|
gridTemplateColumns?: string | undefined;
|
|
301
301
|
gridTemplateRows?: string | undefined;
|
|
302
302
|
gap?: string | undefined;
|
|
303
303
|
flexDirection?: "row" | "column" | undefined;
|
|
304
304
|
alignItems?: string | undefined;
|
|
305
305
|
justifyContent?: string | undefined;
|
|
306
|
-
|
|
306
|
+
padding?: string | undefined;
|
|
307
307
|
}>>;
|
|
308
308
|
tokenBindings: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>;
|
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
|
310
310
|
type: "grid" | "flex" | "split" | "stack" | "container";
|
|
311
|
-
|
|
311
|
+
description: string;
|
|
312
|
+
tokenBindings: Record<string, string>;
|
|
313
|
+
id: string;
|
|
314
|
+
responsive: ResponsiveConfig<{
|
|
312
315
|
display: "grid" | "flex";
|
|
313
|
-
|
|
316
|
+
maxWidth?: string | undefined;
|
|
314
317
|
gridTemplateColumns?: string | undefined;
|
|
315
318
|
gridTemplateRows?: string | undefined;
|
|
316
319
|
gap?: string | undefined;
|
|
317
320
|
flexDirection?: "row" | "column" | undefined;
|
|
318
321
|
alignItems?: string | undefined;
|
|
319
322
|
justifyContent?: string | undefined;
|
|
320
|
-
maxWidth?: string | undefined;
|
|
321
|
-
};
|
|
322
|
-
responsive: ResponsiveConfig<{
|
|
323
|
-
display: "grid" | "flex";
|
|
324
323
|
padding?: string | undefined;
|
|
324
|
+
}>;
|
|
325
|
+
css: {
|
|
326
|
+
display: "grid" | "flex";
|
|
327
|
+
maxWidth?: string | undefined;
|
|
325
328
|
gridTemplateColumns?: string | undefined;
|
|
326
329
|
gridTemplateRows?: string | undefined;
|
|
327
330
|
gap?: string | undefined;
|
|
328
331
|
flexDirection?: "row" | "column" | undefined;
|
|
329
332
|
alignItems?: string | undefined;
|
|
330
333
|
justifyContent?: string | undefined;
|
|
331
|
-
|
|
332
|
-
}
|
|
333
|
-
id: string;
|
|
334
|
-
description: string;
|
|
335
|
-
tokenBindings: Record<string, string>;
|
|
334
|
+
padding?: string | undefined;
|
|
335
|
+
};
|
|
336
336
|
}, {
|
|
337
337
|
type: "grid" | "flex" | "split" | "stack" | "container";
|
|
338
|
-
|
|
338
|
+
description: string;
|
|
339
|
+
tokenBindings: Record<string, string>;
|
|
340
|
+
id: string;
|
|
341
|
+
responsive: ResponsiveConfig<{
|
|
339
342
|
display: "grid" | "flex";
|
|
340
|
-
|
|
343
|
+
maxWidth?: string | undefined;
|
|
341
344
|
gridTemplateColumns?: string | undefined;
|
|
342
345
|
gridTemplateRows?: string | undefined;
|
|
343
346
|
gap?: string | undefined;
|
|
344
347
|
flexDirection?: "row" | "column" | undefined;
|
|
345
348
|
alignItems?: string | undefined;
|
|
346
349
|
justifyContent?: string | undefined;
|
|
347
|
-
maxWidth?: string | undefined;
|
|
348
|
-
};
|
|
349
|
-
responsive: ResponsiveConfig<{
|
|
350
|
-
display: "grid" | "flex";
|
|
351
350
|
padding?: string | undefined;
|
|
351
|
+
}>;
|
|
352
|
+
css: {
|
|
353
|
+
display: "grid" | "flex";
|
|
354
|
+
maxWidth?: string | undefined;
|
|
352
355
|
gridTemplateColumns?: string | undefined;
|
|
353
356
|
gridTemplateRows?: string | undefined;
|
|
354
357
|
gap?: string | undefined;
|
|
355
358
|
flexDirection?: "row" | "column" | undefined;
|
|
356
359
|
alignItems?: string | undefined;
|
|
357
360
|
justifyContent?: string | undefined;
|
|
358
|
-
|
|
359
|
-
}
|
|
360
|
-
id: string;
|
|
361
|
-
description: string;
|
|
362
|
-
tokenBindings: Record<string, string>;
|
|
361
|
+
padding?: string | undefined;
|
|
362
|
+
};
|
|
363
363
|
}>;
|
|
364
364
|
/**
|
|
365
365
|
* Safe Area Defaults Schema
|
|
@@ -438,9 +438,9 @@ export declare const SafeAreaConfigSchema: z.ZodObject<{
|
|
|
438
438
|
}>;
|
|
439
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
440
|
top: string;
|
|
441
|
-
bottom: string;
|
|
442
441
|
left: string;
|
|
443
442
|
right: string;
|
|
443
|
+
bottom: string;
|
|
444
444
|
defaults: {
|
|
445
445
|
notch: number;
|
|
446
446
|
dynamicIsland: number;
|
|
@@ -454,9 +454,9 @@ export declare const SafeAreaConfigSchema: z.ZodObject<{
|
|
|
454
454
|
};
|
|
455
455
|
}, {
|
|
456
456
|
top: string;
|
|
457
|
-
bottom: string;
|
|
458
457
|
left: string;
|
|
459
458
|
right: string;
|
|
459
|
+
bottom: string;
|
|
460
460
|
defaults: {
|
|
461
461
|
notch: number;
|
|
462
462
|
dynamicIsland: number;
|
|
@@ -482,13 +482,13 @@ export declare const StatusBarConfigSchema: z.ZodObject<{
|
|
|
482
482
|
}, "strip", z.ZodTypeAny, {
|
|
483
483
|
height: string;
|
|
484
484
|
visible: boolean;
|
|
485
|
-
style: "
|
|
485
|
+
style: "light-content" | "dark-content" | "auto";
|
|
486
486
|
translucent: boolean;
|
|
487
487
|
backgroundColor?: string | undefined;
|
|
488
488
|
}, {
|
|
489
489
|
height: string;
|
|
490
490
|
visible: boolean;
|
|
491
|
-
style: "
|
|
491
|
+
style: "light-content" | "dark-content" | "auto";
|
|
492
492
|
translucent: boolean;
|
|
493
493
|
backgroundColor?: string | undefined;
|
|
494
494
|
}>;
|
|
@@ -503,12 +503,12 @@ export declare const NavigationBarConfigSchema: z.ZodObject<{
|
|
|
503
503
|
buttonStyle: z.ZodEnum<["light", "dark", "auto"]>;
|
|
504
504
|
}, "strip", z.ZodTypeAny, {
|
|
505
505
|
height: string;
|
|
506
|
-
mode: "
|
|
506
|
+
mode: "overlay" | "inset" | "hidden";
|
|
507
507
|
buttonStyle: "auto" | "light" | "dark";
|
|
508
508
|
backgroundColor?: string | undefined;
|
|
509
509
|
}, {
|
|
510
510
|
height: string;
|
|
511
|
-
mode: "
|
|
511
|
+
mode: "overlay" | "inset" | "hidden";
|
|
512
512
|
buttonStyle: "auto" | "light" | "dark";
|
|
513
513
|
backgroundColor?: string | undefined;
|
|
514
514
|
}>;
|
|
@@ -526,13 +526,13 @@ export declare const SystemUIConfigSchema: z.ZodObject<{
|
|
|
526
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
527
|
height: string;
|
|
528
528
|
visible: boolean;
|
|
529
|
-
style: "
|
|
529
|
+
style: "light-content" | "dark-content" | "auto";
|
|
530
530
|
translucent: boolean;
|
|
531
531
|
backgroundColor?: string | undefined;
|
|
532
532
|
}, {
|
|
533
533
|
height: string;
|
|
534
534
|
visible: boolean;
|
|
535
|
-
style: "
|
|
535
|
+
style: "light-content" | "dark-content" | "auto";
|
|
536
536
|
translucent: boolean;
|
|
537
537
|
backgroundColor?: string | undefined;
|
|
538
538
|
}>;
|
|
@@ -543,12 +543,12 @@ export declare const SystemUIConfigSchema: z.ZodObject<{
|
|
|
543
543
|
buttonStyle: z.ZodEnum<["light", "dark", "auto"]>;
|
|
544
544
|
}, "strip", z.ZodTypeAny, {
|
|
545
545
|
height: string;
|
|
546
|
-
mode: "
|
|
546
|
+
mode: "overlay" | "inset" | "hidden";
|
|
547
547
|
buttonStyle: "auto" | "light" | "dark";
|
|
548
548
|
backgroundColor?: string | undefined;
|
|
549
549
|
}, {
|
|
550
550
|
height: string;
|
|
551
|
-
mode: "
|
|
551
|
+
mode: "overlay" | "inset" | "hidden";
|
|
552
552
|
buttonStyle: "auto" | "light" | "dark";
|
|
553
553
|
backgroundColor?: string | undefined;
|
|
554
554
|
}>;
|
|
@@ -556,13 +556,13 @@ export declare const SystemUIConfigSchema: z.ZodObject<{
|
|
|
556
556
|
statusBar: {
|
|
557
557
|
height: string;
|
|
558
558
|
visible: boolean;
|
|
559
|
-
style: "
|
|
559
|
+
style: "light-content" | "dark-content" | "auto";
|
|
560
560
|
translucent: boolean;
|
|
561
561
|
backgroundColor?: string | undefined;
|
|
562
562
|
};
|
|
563
563
|
navigationBar: {
|
|
564
564
|
height: string;
|
|
565
|
-
mode: "
|
|
565
|
+
mode: "overlay" | "inset" | "hidden";
|
|
566
566
|
buttonStyle: "auto" | "light" | "dark";
|
|
567
567
|
backgroundColor?: string | undefined;
|
|
568
568
|
};
|
|
@@ -570,13 +570,13 @@ export declare const SystemUIConfigSchema: z.ZodObject<{
|
|
|
570
570
|
statusBar: {
|
|
571
571
|
height: string;
|
|
572
572
|
visible: boolean;
|
|
573
|
-
style: "
|
|
573
|
+
style: "light-content" | "dark-content" | "auto";
|
|
574
574
|
translucent: boolean;
|
|
575
575
|
backgroundColor?: string | undefined;
|
|
576
576
|
};
|
|
577
577
|
navigationBar: {
|
|
578
578
|
height: string;
|
|
579
|
-
mode: "
|
|
579
|
+
mode: "overlay" | "inset" | "hidden";
|
|
580
580
|
buttonStyle: "auto" | "light" | "dark";
|
|
581
581
|
backgroundColor?: string | undefined;
|
|
582
582
|
};
|
|
@@ -620,8 +620,8 @@ export declare const KeyboardConfigSchema: z.ZodObject<{
|
|
|
620
620
|
}>;
|
|
621
621
|
dismissMode: z.ZodEnum<["on-drag", "interactive", "none"]>;
|
|
622
622
|
}, "strip", z.ZodTypeAny, {
|
|
623
|
-
avoidance: "
|
|
624
|
-
behavior: "
|
|
623
|
+
avoidance: "position" | "padding" | "resize" | "none";
|
|
624
|
+
behavior: "position" | "padding" | "height";
|
|
625
625
|
animation: {
|
|
626
626
|
duration: number;
|
|
627
627
|
easing: string;
|
|
@@ -629,8 +629,8 @@ export declare const KeyboardConfigSchema: z.ZodObject<{
|
|
|
629
629
|
};
|
|
630
630
|
dismissMode: "none" | "on-drag" | "interactive";
|
|
631
631
|
}, {
|
|
632
|
-
avoidance: "
|
|
633
|
-
behavior: "
|
|
632
|
+
avoidance: "position" | "padding" | "resize" | "none";
|
|
633
|
+
behavior: "position" | "padding" | "height";
|
|
634
634
|
animation: {
|
|
635
635
|
duration: number;
|
|
636
636
|
easing: string;
|
|
@@ -648,15 +648,15 @@ export declare const BottomTabItemConfigSchema: z.ZodObject<{
|
|
|
648
648
|
labelSize: z.ZodString;
|
|
649
649
|
spacing: z.ZodString;
|
|
650
650
|
}, "strip", z.ZodTypeAny, {
|
|
651
|
-
spacing: string;
|
|
652
651
|
minTouchTarget: string;
|
|
653
652
|
iconSize: string;
|
|
654
653
|
labelSize: string;
|
|
655
|
-
}, {
|
|
656
654
|
spacing: string;
|
|
655
|
+
}, {
|
|
657
656
|
minTouchTarget: string;
|
|
658
657
|
iconSize: string;
|
|
659
658
|
labelSize: string;
|
|
659
|
+
spacing: string;
|
|
660
660
|
}>;
|
|
661
661
|
/**
|
|
662
662
|
* Bottom Tab Config Schema
|
|
@@ -674,39 +674,39 @@ export declare const BottomTabConfigSchema: z.ZodObject<{
|
|
|
674
674
|
labelSize: z.ZodString;
|
|
675
675
|
spacing: z.ZodString;
|
|
676
676
|
}, "strip", z.ZodTypeAny, {
|
|
677
|
-
spacing: string;
|
|
678
677
|
minTouchTarget: string;
|
|
679
678
|
iconSize: string;
|
|
680
679
|
labelSize: string;
|
|
681
|
-
}, {
|
|
682
680
|
spacing: string;
|
|
681
|
+
}, {
|
|
683
682
|
minTouchTarget: string;
|
|
684
683
|
iconSize: string;
|
|
685
684
|
labelSize: string;
|
|
685
|
+
spacing: string;
|
|
686
686
|
}>;
|
|
687
687
|
}, "strip", z.ZodTypeAny, {
|
|
688
688
|
height: string;
|
|
689
|
-
visibility: "always" | "scroll-hide" | "route-based";
|
|
690
|
-
maxItems: number;
|
|
691
689
|
safeAreaBottom: string;
|
|
692
690
|
totalHeight: string;
|
|
691
|
+
visibility: "always" | "scroll-hide" | "route-based";
|
|
692
|
+
maxItems: number;
|
|
693
693
|
item: {
|
|
694
|
-
spacing: string;
|
|
695
694
|
minTouchTarget: string;
|
|
696
695
|
iconSize: string;
|
|
697
696
|
labelSize: string;
|
|
697
|
+
spacing: string;
|
|
698
698
|
};
|
|
699
699
|
}, {
|
|
700
700
|
height: string;
|
|
701
|
-
visibility: "always" | "scroll-hide" | "route-based";
|
|
702
|
-
maxItems: number;
|
|
703
701
|
safeAreaBottom: string;
|
|
704
702
|
totalHeight: string;
|
|
703
|
+
visibility: "always" | "scroll-hide" | "route-based";
|
|
704
|
+
maxItems: number;
|
|
705
705
|
item: {
|
|
706
|
-
spacing: string;
|
|
707
706
|
minTouchTarget: string;
|
|
708
707
|
iconSize: string;
|
|
709
708
|
labelSize: string;
|
|
709
|
+
spacing: string;
|
|
710
710
|
};
|
|
711
711
|
}>;
|
|
712
712
|
/**
|
|
@@ -720,14 +720,14 @@ export declare const HitSlopConfigSchema: z.ZodObject<{
|
|
|
720
720
|
right: z.ZodNumber;
|
|
721
721
|
}, "strip", z.ZodTypeAny, {
|
|
722
722
|
top: number;
|
|
723
|
-
bottom: number;
|
|
724
723
|
left: number;
|
|
725
724
|
right: number;
|
|
725
|
+
bottom: number;
|
|
726
726
|
}, {
|
|
727
727
|
top: number;
|
|
728
|
-
bottom: number;
|
|
729
728
|
left: number;
|
|
730
729
|
right: number;
|
|
730
|
+
bottom: number;
|
|
731
731
|
}>;
|
|
732
732
|
/**
|
|
733
733
|
* Touch Target Config Schema
|
|
@@ -742,30 +742,30 @@ export declare const TouchTargetConfigSchema: z.ZodObject<{
|
|
|
742
742
|
right: z.ZodNumber;
|
|
743
743
|
}, "strip", z.ZodTypeAny, {
|
|
744
744
|
top: number;
|
|
745
|
-
bottom: number;
|
|
746
745
|
left: number;
|
|
747
746
|
right: number;
|
|
747
|
+
bottom: number;
|
|
748
748
|
}, {
|
|
749
749
|
top: number;
|
|
750
|
-
bottom: number;
|
|
751
750
|
left: number;
|
|
752
751
|
right: number;
|
|
752
|
+
bottom: number;
|
|
753
753
|
}>;
|
|
754
754
|
}, "strip", z.ZodTypeAny, {
|
|
755
755
|
minSize: string;
|
|
756
756
|
hitSlop: {
|
|
757
757
|
top: number;
|
|
758
|
-
bottom: number;
|
|
759
758
|
left: number;
|
|
760
759
|
right: number;
|
|
760
|
+
bottom: number;
|
|
761
761
|
};
|
|
762
762
|
}, {
|
|
763
763
|
minSize: string;
|
|
764
764
|
hitSlop: {
|
|
765
765
|
top: number;
|
|
766
|
-
bottom: number;
|
|
767
766
|
left: number;
|
|
768
767
|
right: number;
|
|
768
|
+
bottom: number;
|
|
769
769
|
};
|
|
770
770
|
}>;
|
|
771
771
|
/**
|
|
@@ -782,15 +782,15 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
782
782
|
collapsible: z.ZodOptional<z.ZodBoolean>;
|
|
783
783
|
defaultCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
784
784
|
}, "strip", z.ZodTypeAny, {
|
|
785
|
-
size: string;
|
|
786
785
|
name: string;
|
|
787
|
-
position: "top" | "
|
|
786
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
787
|
+
size: string;
|
|
788
788
|
collapsible?: boolean | undefined;
|
|
789
789
|
defaultCollapsed?: boolean | undefined;
|
|
790
790
|
}, {
|
|
791
|
-
size: string;
|
|
792
791
|
name: string;
|
|
793
|
-
position: "top" | "
|
|
792
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
793
|
+
size: string;
|
|
794
794
|
collapsible?: boolean | undefined;
|
|
795
795
|
defaultCollapsed?: boolean | undefined;
|
|
796
796
|
}>, "many">;
|
|
@@ -835,9 +835,9 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
835
835
|
}>;
|
|
836
836
|
}, "strip", z.ZodTypeAny, {
|
|
837
837
|
top: string;
|
|
838
|
-
bottom: string;
|
|
839
838
|
left: string;
|
|
840
839
|
right: string;
|
|
840
|
+
bottom: string;
|
|
841
841
|
defaults: {
|
|
842
842
|
notch: number;
|
|
843
843
|
dynamicIsland: number;
|
|
@@ -851,9 +851,9 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
851
851
|
};
|
|
852
852
|
}, {
|
|
853
853
|
top: string;
|
|
854
|
-
bottom: string;
|
|
855
854
|
left: string;
|
|
856
855
|
right: string;
|
|
856
|
+
bottom: string;
|
|
857
857
|
defaults: {
|
|
858
858
|
notch: number;
|
|
859
859
|
dynamicIsland: number;
|
|
@@ -876,13 +876,13 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
876
876
|
}, "strip", z.ZodTypeAny, {
|
|
877
877
|
height: string;
|
|
878
878
|
visible: boolean;
|
|
879
|
-
style: "
|
|
879
|
+
style: "light-content" | "dark-content" | "auto";
|
|
880
880
|
translucent: boolean;
|
|
881
881
|
backgroundColor?: string | undefined;
|
|
882
882
|
}, {
|
|
883
883
|
height: string;
|
|
884
884
|
visible: boolean;
|
|
885
|
-
style: "
|
|
885
|
+
style: "light-content" | "dark-content" | "auto";
|
|
886
886
|
translucent: boolean;
|
|
887
887
|
backgroundColor?: string | undefined;
|
|
888
888
|
}>;
|
|
@@ -893,12 +893,12 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
893
893
|
buttonStyle: z.ZodEnum<["light", "dark", "auto"]>;
|
|
894
894
|
}, "strip", z.ZodTypeAny, {
|
|
895
895
|
height: string;
|
|
896
|
-
mode: "
|
|
896
|
+
mode: "overlay" | "inset" | "hidden";
|
|
897
897
|
buttonStyle: "auto" | "light" | "dark";
|
|
898
898
|
backgroundColor?: string | undefined;
|
|
899
899
|
}, {
|
|
900
900
|
height: string;
|
|
901
|
-
mode: "
|
|
901
|
+
mode: "overlay" | "inset" | "hidden";
|
|
902
902
|
buttonStyle: "auto" | "light" | "dark";
|
|
903
903
|
backgroundColor?: string | undefined;
|
|
904
904
|
}>;
|
|
@@ -906,13 +906,13 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
906
906
|
statusBar: {
|
|
907
907
|
height: string;
|
|
908
908
|
visible: boolean;
|
|
909
|
-
style: "
|
|
909
|
+
style: "light-content" | "dark-content" | "auto";
|
|
910
910
|
translucent: boolean;
|
|
911
911
|
backgroundColor?: string | undefined;
|
|
912
912
|
};
|
|
913
913
|
navigationBar: {
|
|
914
914
|
height: string;
|
|
915
|
-
mode: "
|
|
915
|
+
mode: "overlay" | "inset" | "hidden";
|
|
916
916
|
buttonStyle: "auto" | "light" | "dark";
|
|
917
917
|
backgroundColor?: string | undefined;
|
|
918
918
|
};
|
|
@@ -920,13 +920,13 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
920
920
|
statusBar: {
|
|
921
921
|
height: string;
|
|
922
922
|
visible: boolean;
|
|
923
|
-
style: "
|
|
923
|
+
style: "light-content" | "dark-content" | "auto";
|
|
924
924
|
translucent: boolean;
|
|
925
925
|
backgroundColor?: string | undefined;
|
|
926
926
|
};
|
|
927
927
|
navigationBar: {
|
|
928
928
|
height: string;
|
|
929
|
-
mode: "
|
|
929
|
+
mode: "overlay" | "inset" | "hidden";
|
|
930
930
|
buttonStyle: "auto" | "light" | "dark";
|
|
931
931
|
backgroundColor?: string | undefined;
|
|
932
932
|
};
|
|
@@ -949,8 +949,8 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
949
949
|
}>;
|
|
950
950
|
dismissMode: z.ZodEnum<["on-drag", "interactive", "none"]>;
|
|
951
951
|
}, "strip", z.ZodTypeAny, {
|
|
952
|
-
avoidance: "
|
|
953
|
-
behavior: "
|
|
952
|
+
avoidance: "position" | "padding" | "resize" | "none";
|
|
953
|
+
behavior: "position" | "padding" | "height";
|
|
954
954
|
animation: {
|
|
955
955
|
duration: number;
|
|
956
956
|
easing: string;
|
|
@@ -958,8 +958,8 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
958
958
|
};
|
|
959
959
|
dismissMode: "none" | "on-drag" | "interactive";
|
|
960
960
|
}, {
|
|
961
|
-
avoidance: "
|
|
962
|
-
behavior: "
|
|
961
|
+
avoidance: "position" | "padding" | "resize" | "none";
|
|
962
|
+
behavior: "position" | "padding" | "height";
|
|
963
963
|
animation: {
|
|
964
964
|
duration: number;
|
|
965
965
|
easing: string;
|
|
@@ -979,39 +979,39 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
979
979
|
labelSize: z.ZodString;
|
|
980
980
|
spacing: z.ZodString;
|
|
981
981
|
}, "strip", z.ZodTypeAny, {
|
|
982
|
-
spacing: string;
|
|
983
982
|
minTouchTarget: string;
|
|
984
983
|
iconSize: string;
|
|
985
984
|
labelSize: string;
|
|
986
|
-
}, {
|
|
987
985
|
spacing: string;
|
|
986
|
+
}, {
|
|
988
987
|
minTouchTarget: string;
|
|
989
988
|
iconSize: string;
|
|
990
989
|
labelSize: string;
|
|
990
|
+
spacing: string;
|
|
991
991
|
}>;
|
|
992
992
|
}, "strip", z.ZodTypeAny, {
|
|
993
993
|
height: string;
|
|
994
|
-
visibility: "always" | "scroll-hide" | "route-based";
|
|
995
|
-
maxItems: number;
|
|
996
994
|
safeAreaBottom: string;
|
|
997
995
|
totalHeight: string;
|
|
996
|
+
visibility: "always" | "scroll-hide" | "route-based";
|
|
997
|
+
maxItems: number;
|
|
998
998
|
item: {
|
|
999
|
-
spacing: string;
|
|
1000
999
|
minTouchTarget: string;
|
|
1001
1000
|
iconSize: string;
|
|
1002
1001
|
labelSize: string;
|
|
1002
|
+
spacing: string;
|
|
1003
1003
|
};
|
|
1004
1004
|
}, {
|
|
1005
1005
|
height: string;
|
|
1006
|
-
visibility: "always" | "scroll-hide" | "route-based";
|
|
1007
|
-
maxItems: number;
|
|
1008
1006
|
safeAreaBottom: string;
|
|
1009
1007
|
totalHeight: string;
|
|
1008
|
+
visibility: "always" | "scroll-hide" | "route-based";
|
|
1009
|
+
maxItems: number;
|
|
1010
1010
|
item: {
|
|
1011
|
-
spacing: string;
|
|
1012
1011
|
minTouchTarget: string;
|
|
1013
1012
|
iconSize: string;
|
|
1014
1013
|
labelSize: string;
|
|
1014
|
+
spacing: string;
|
|
1015
1015
|
};
|
|
1016
1016
|
}>>;
|
|
1017
1017
|
touchTarget: z.ZodObject<{
|
|
@@ -1023,40 +1023,37 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
1023
1023
|
right: z.ZodNumber;
|
|
1024
1024
|
}, "strip", z.ZodTypeAny, {
|
|
1025
1025
|
top: number;
|
|
1026
|
-
bottom: number;
|
|
1027
1026
|
left: number;
|
|
1028
1027
|
right: number;
|
|
1028
|
+
bottom: number;
|
|
1029
1029
|
}, {
|
|
1030
1030
|
top: number;
|
|
1031
|
-
bottom: number;
|
|
1032
1031
|
left: number;
|
|
1033
1032
|
right: number;
|
|
1033
|
+
bottom: number;
|
|
1034
1034
|
}>;
|
|
1035
1035
|
}, "strip", z.ZodTypeAny, {
|
|
1036
1036
|
minSize: string;
|
|
1037
1037
|
hitSlop: {
|
|
1038
1038
|
top: number;
|
|
1039
|
-
bottom: number;
|
|
1040
1039
|
left: number;
|
|
1041
1040
|
right: number;
|
|
1041
|
+
bottom: number;
|
|
1042
1042
|
};
|
|
1043
1043
|
}, {
|
|
1044
1044
|
minSize: string;
|
|
1045
1045
|
hitSlop: {
|
|
1046
1046
|
top: number;
|
|
1047
|
-
bottom: number;
|
|
1048
1047
|
left: number;
|
|
1049
1048
|
right: number;
|
|
1049
|
+
bottom: number;
|
|
1050
1050
|
};
|
|
1051
1051
|
}>;
|
|
1052
1052
|
}, "strip", z.ZodTypeAny, {
|
|
1053
|
-
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
1054
|
-
id: string;
|
|
1055
1053
|
description: string;
|
|
1056
|
-
tokenBindings: Record<string, string>;
|
|
1057
1054
|
keyboard: {
|
|
1058
|
-
avoidance: "
|
|
1059
|
-
behavior: "
|
|
1055
|
+
avoidance: "position" | "padding" | "resize" | "none";
|
|
1056
|
+
behavior: "position" | "padding" | "height";
|
|
1060
1057
|
animation: {
|
|
1061
1058
|
duration: number;
|
|
1062
1059
|
easing: string;
|
|
@@ -1064,20 +1061,23 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
1064
1061
|
};
|
|
1065
1062
|
dismissMode: "none" | "on-drag" | "interactive";
|
|
1066
1063
|
};
|
|
1064
|
+
tokenBindings: Record<string, string>;
|
|
1065
|
+
id: string;
|
|
1066
|
+
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
1067
1067
|
platform: "mobile";
|
|
1068
1068
|
regions: {
|
|
1069
|
-
size: string;
|
|
1070
1069
|
name: string;
|
|
1071
|
-
position: "top" | "
|
|
1070
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
1071
|
+
size: string;
|
|
1072
1072
|
collapsible?: boolean | undefined;
|
|
1073
1073
|
defaultCollapsed?: boolean | undefined;
|
|
1074
1074
|
}[];
|
|
1075
1075
|
os: "ios" | "android" | "cross-platform";
|
|
1076
1076
|
safeArea: {
|
|
1077
1077
|
top: string;
|
|
1078
|
-
bottom: string;
|
|
1079
1078
|
left: string;
|
|
1080
1079
|
right: string;
|
|
1080
|
+
bottom: string;
|
|
1081
1081
|
defaults: {
|
|
1082
1082
|
notch: number;
|
|
1083
1083
|
dynamicIsland: number;
|
|
@@ -1094,13 +1094,13 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
1094
1094
|
statusBar: {
|
|
1095
1095
|
height: string;
|
|
1096
1096
|
visible: boolean;
|
|
1097
|
-
style: "
|
|
1097
|
+
style: "light-content" | "dark-content" | "auto";
|
|
1098
1098
|
translucent: boolean;
|
|
1099
1099
|
backgroundColor?: string | undefined;
|
|
1100
1100
|
};
|
|
1101
1101
|
navigationBar: {
|
|
1102
1102
|
height: string;
|
|
1103
|
-
mode: "
|
|
1103
|
+
mode: "overlay" | "inset" | "hidden";
|
|
1104
1104
|
buttonStyle: "auto" | "light" | "dark";
|
|
1105
1105
|
backgroundColor?: string | undefined;
|
|
1106
1106
|
};
|
|
@@ -1109,32 +1109,29 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
1109
1109
|
minSize: string;
|
|
1110
1110
|
hitSlop: {
|
|
1111
1111
|
top: number;
|
|
1112
|
-
bottom: number;
|
|
1113
1112
|
left: number;
|
|
1114
1113
|
right: number;
|
|
1114
|
+
bottom: number;
|
|
1115
1115
|
};
|
|
1116
1116
|
};
|
|
1117
1117
|
bottomTab?: {
|
|
1118
1118
|
height: string;
|
|
1119
|
-
visibility: "always" | "scroll-hide" | "route-based";
|
|
1120
|
-
maxItems: number;
|
|
1121
1119
|
safeAreaBottom: string;
|
|
1122
1120
|
totalHeight: string;
|
|
1121
|
+
visibility: "always" | "scroll-hide" | "route-based";
|
|
1122
|
+
maxItems: number;
|
|
1123
1123
|
item: {
|
|
1124
|
-
spacing: string;
|
|
1125
1124
|
minTouchTarget: string;
|
|
1126
1125
|
iconSize: string;
|
|
1127
1126
|
labelSize: string;
|
|
1127
|
+
spacing: string;
|
|
1128
1128
|
};
|
|
1129
1129
|
} | undefined;
|
|
1130
1130
|
}, {
|
|
1131
|
-
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
1132
|
-
id: string;
|
|
1133
1131
|
description: string;
|
|
1134
|
-
tokenBindings: Record<string, string>;
|
|
1135
1132
|
keyboard: {
|
|
1136
|
-
avoidance: "
|
|
1137
|
-
behavior: "
|
|
1133
|
+
avoidance: "position" | "padding" | "resize" | "none";
|
|
1134
|
+
behavior: "position" | "padding" | "height";
|
|
1138
1135
|
animation: {
|
|
1139
1136
|
duration: number;
|
|
1140
1137
|
easing: string;
|
|
@@ -1142,20 +1139,23 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
1142
1139
|
};
|
|
1143
1140
|
dismissMode: "none" | "on-drag" | "interactive";
|
|
1144
1141
|
};
|
|
1142
|
+
tokenBindings: Record<string, string>;
|
|
1143
|
+
id: string;
|
|
1144
|
+
responsive: ResponsiveConfig<Record<string, unknown>>;
|
|
1145
1145
|
platform: "mobile";
|
|
1146
1146
|
regions: {
|
|
1147
|
-
size: string;
|
|
1148
1147
|
name: string;
|
|
1149
|
-
position: "top" | "
|
|
1148
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
1149
|
+
size: string;
|
|
1150
1150
|
collapsible?: boolean | undefined;
|
|
1151
1151
|
defaultCollapsed?: boolean | undefined;
|
|
1152
1152
|
}[];
|
|
1153
1153
|
os: "ios" | "android" | "cross-platform";
|
|
1154
1154
|
safeArea: {
|
|
1155
1155
|
top: string;
|
|
1156
|
-
bottom: string;
|
|
1157
1156
|
left: string;
|
|
1158
1157
|
right: string;
|
|
1158
|
+
bottom: string;
|
|
1159
1159
|
defaults: {
|
|
1160
1160
|
notch: number;
|
|
1161
1161
|
dynamicIsland: number;
|
|
@@ -1172,13 +1172,13 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
1172
1172
|
statusBar: {
|
|
1173
1173
|
height: string;
|
|
1174
1174
|
visible: boolean;
|
|
1175
|
-
style: "
|
|
1175
|
+
style: "light-content" | "dark-content" | "auto";
|
|
1176
1176
|
translucent: boolean;
|
|
1177
1177
|
backgroundColor?: string | undefined;
|
|
1178
1178
|
};
|
|
1179
1179
|
navigationBar: {
|
|
1180
1180
|
height: string;
|
|
1181
|
-
mode: "
|
|
1181
|
+
mode: "overlay" | "inset" | "hidden";
|
|
1182
1182
|
buttonStyle: "auto" | "light" | "dark";
|
|
1183
1183
|
backgroundColor?: string | undefined;
|
|
1184
1184
|
};
|
|
@@ -1187,22 +1187,22 @@ export declare const MobileShellTokenSchema: z.ZodObject<{
|
|
|
1187
1187
|
minSize: string;
|
|
1188
1188
|
hitSlop: {
|
|
1189
1189
|
top: number;
|
|
1190
|
-
bottom: number;
|
|
1191
1190
|
left: number;
|
|
1192
1191
|
right: number;
|
|
1192
|
+
bottom: number;
|
|
1193
1193
|
};
|
|
1194
1194
|
};
|
|
1195
1195
|
bottomTab?: {
|
|
1196
1196
|
height: string;
|
|
1197
|
-
visibility: "always" | "scroll-hide" | "route-based";
|
|
1198
|
-
maxItems: number;
|
|
1199
1197
|
safeAreaBottom: string;
|
|
1200
1198
|
totalHeight: string;
|
|
1199
|
+
visibility: "always" | "scroll-hide" | "route-based";
|
|
1200
|
+
maxItems: number;
|
|
1201
1201
|
item: {
|
|
1202
|
-
spacing: string;
|
|
1203
1202
|
minTouchTarget: string;
|
|
1204
1203
|
iconSize: string;
|
|
1205
1204
|
labelSize: string;
|
|
1205
|
+
spacing: string;
|
|
1206
1206
|
};
|
|
1207
1207
|
} | undefined;
|
|
1208
1208
|
}>;
|
|
@@ -1302,15 +1302,15 @@ export declare const LLMShellInputSchema: z.ZodObject<{
|
|
|
1302
1302
|
collapsible: z.ZodOptional<z.ZodBoolean>;
|
|
1303
1303
|
defaultCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
1304
1304
|
}, "strip", z.ZodTypeAny, {
|
|
1305
|
-
size: string;
|
|
1306
1305
|
name: string;
|
|
1307
|
-
position: "top" | "
|
|
1306
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
1307
|
+
size: string;
|
|
1308
1308
|
collapsible?: boolean | undefined;
|
|
1309
1309
|
defaultCollapsed?: boolean | undefined;
|
|
1310
1310
|
}, {
|
|
1311
|
-
size: string;
|
|
1312
1311
|
name: string;
|
|
1313
|
-
position: "top" | "
|
|
1312
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
1313
|
+
size: string;
|
|
1314
1314
|
collapsible?: boolean | undefined;
|
|
1315
1315
|
defaultCollapsed?: boolean | undefined;
|
|
1316
1316
|
}>, "many">;
|
|
@@ -1318,9 +1318,9 @@ export declare const LLMShellInputSchema: z.ZodObject<{
|
|
|
1318
1318
|
id: string;
|
|
1319
1319
|
platform: "web" | "mobile" | "desktop";
|
|
1320
1320
|
regions: {
|
|
1321
|
-
size: string;
|
|
1322
1321
|
name: string;
|
|
1323
|
-
position: "top" | "
|
|
1322
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
1323
|
+
size: string;
|
|
1324
1324
|
collapsible?: boolean | undefined;
|
|
1325
1325
|
defaultCollapsed?: boolean | undefined;
|
|
1326
1326
|
}[];
|
|
@@ -1328,9 +1328,9 @@ export declare const LLMShellInputSchema: z.ZodObject<{
|
|
|
1328
1328
|
id: string;
|
|
1329
1329
|
platform: "web" | "mobile" | "desktop";
|
|
1330
1330
|
regions: {
|
|
1331
|
-
size: string;
|
|
1332
1331
|
name: string;
|
|
1333
|
-
position: "top" | "
|
|
1332
|
+
position: "top" | "left" | "right" | "bottom" | "center";
|
|
1333
|
+
size: string;
|
|
1334
1334
|
collapsible?: boolean | undefined;
|
|
1335
1335
|
defaultCollapsed?: boolean | undefined;
|
|
1336
1336
|
}[];
|
|
@@ -1359,22 +1359,22 @@ export declare const LLMPageInputSchema: z.ZodObject<{
|
|
|
1359
1359
|
}>, "many">;
|
|
1360
1360
|
}, "strip", z.ZodTypeAny, {
|
|
1361
1361
|
id: string;
|
|
1362
|
-
purpose: "job" | "resource" | "dashboard" | "settings" | "detail" | "empty" | "wizard" | "onboarding";
|
|
1363
1362
|
sections: {
|
|
1364
1363
|
name: string;
|
|
1365
1364
|
required: boolean;
|
|
1366
1365
|
pattern: string;
|
|
1367
1366
|
allowedComponents?: string[] | undefined;
|
|
1368
1367
|
}[];
|
|
1368
|
+
purpose: "job" | "resource" | "dashboard" | "settings" | "detail" | "empty" | "wizard" | "onboarding";
|
|
1369
1369
|
}, {
|
|
1370
1370
|
id: string;
|
|
1371
|
-
purpose: "job" | "resource" | "dashboard" | "settings" | "detail" | "empty" | "wizard" | "onboarding";
|
|
1372
1371
|
sections: {
|
|
1373
1372
|
name: string;
|
|
1374
1373
|
required: boolean;
|
|
1375
1374
|
pattern: string;
|
|
1376
1375
|
allowedComponents?: string[] | undefined;
|
|
1377
1376
|
}[];
|
|
1377
|
+
purpose: "job" | "resource" | "dashboard" | "settings" | "detail" | "empty" | "wizard" | "onboarding";
|
|
1378
1378
|
}>;
|
|
1379
1379
|
/**
|
|
1380
1380
|
* LLM Section Input Schema (lenient - only required fields)
|
|
@@ -1394,53 +1394,53 @@ export declare const LLMSectionInputSchema: z.ZodObject<{
|
|
|
1394
1394
|
padding: z.ZodOptional<z.ZodString>;
|
|
1395
1395
|
}, "strip", z.ZodTypeAny, {
|
|
1396
1396
|
display: "grid" | "flex";
|
|
1397
|
-
|
|
1397
|
+
maxWidth?: string | undefined;
|
|
1398
1398
|
gridTemplateColumns?: string | undefined;
|
|
1399
1399
|
gridTemplateRows?: string | undefined;
|
|
1400
1400
|
gap?: string | undefined;
|
|
1401
1401
|
flexDirection?: "row" | "column" | undefined;
|
|
1402
1402
|
alignItems?: string | undefined;
|
|
1403
1403
|
justifyContent?: string | undefined;
|
|
1404
|
-
|
|
1404
|
+
padding?: string | undefined;
|
|
1405
1405
|
}, {
|
|
1406
1406
|
display: "grid" | "flex";
|
|
1407
|
-
|
|
1407
|
+
maxWidth?: string | undefined;
|
|
1408
1408
|
gridTemplateColumns?: string | undefined;
|
|
1409
1409
|
gridTemplateRows?: string | undefined;
|
|
1410
1410
|
gap?: string | undefined;
|
|
1411
1411
|
flexDirection?: "row" | "column" | undefined;
|
|
1412
1412
|
alignItems?: string | undefined;
|
|
1413
1413
|
justifyContent?: string | undefined;
|
|
1414
|
-
|
|
1414
|
+
padding?: string | undefined;
|
|
1415
1415
|
}>;
|
|
1416
1416
|
}, "strip", z.ZodTypeAny, {
|
|
1417
1417
|
type: "grid" | "flex" | "split" | "stack" | "container";
|
|
1418
|
+
id: string;
|
|
1418
1419
|
css: {
|
|
1419
1420
|
display: "grid" | "flex";
|
|
1420
|
-
|
|
1421
|
+
maxWidth?: string | undefined;
|
|
1421
1422
|
gridTemplateColumns?: string | undefined;
|
|
1422
1423
|
gridTemplateRows?: string | undefined;
|
|
1423
1424
|
gap?: string | undefined;
|
|
1424
1425
|
flexDirection?: "row" | "column" | undefined;
|
|
1425
1426
|
alignItems?: string | undefined;
|
|
1426
1427
|
justifyContent?: string | undefined;
|
|
1427
|
-
|
|
1428
|
+
padding?: string | undefined;
|
|
1428
1429
|
};
|
|
1429
|
-
id: string;
|
|
1430
1430
|
}, {
|
|
1431
1431
|
type: "grid" | "flex" | "split" | "stack" | "container";
|
|
1432
|
+
id: string;
|
|
1432
1433
|
css: {
|
|
1433
1434
|
display: "grid" | "flex";
|
|
1434
|
-
|
|
1435
|
+
maxWidth?: string | undefined;
|
|
1435
1436
|
gridTemplateColumns?: string | undefined;
|
|
1436
1437
|
gridTemplateRows?: string | undefined;
|
|
1437
1438
|
gap?: string | undefined;
|
|
1438
1439
|
flexDirection?: "row" | "column" | undefined;
|
|
1439
1440
|
alignItems?: string | undefined;
|
|
1440
1441
|
justifyContent?: string | undefined;
|
|
1441
|
-
|
|
1442
|
+
padding?: string | undefined;
|
|
1442
1443
|
};
|
|
1443
|
-
id: string;
|
|
1444
1444
|
}>;
|
|
1445
1445
|
/**
|
|
1446
1446
|
* Validate LLM Shell Input (lenient validation for LLM-generated data)
|