mulmocast 2.6.16 → 2.6.18

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 (53) hide show
  1. package/lib/actions/viewer.js +1 -1
  2. package/lib/cli/bin.js +0 -0
  3. package/lib/mcp/server.js +0 -0
  4. package/lib/types/schema.d.ts +4321 -479
  5. package/lib/types/schema.js +2 -2
  6. package/lib/utils/context.d.ts +1237 -689
  7. package/lib/utils/image_plugins/slide.d.ts +1 -1
  8. package/lib/utils/image_plugins/slide.js +1 -1
  9. package/package.json +8 -7
  10. package/lib/data/styles.d.ts +0 -255
  11. package/lib/data/styles.js +0 -284
  12. package/lib/slide/blocks.d.ts +0 -13
  13. package/lib/slide/blocks.js +0 -251
  14. package/lib/slide/index.d.ts +0 -6
  15. package/lib/slide/index.js +0 -7
  16. package/lib/slide/layouts/big_quote.d.ts +0 -2
  17. package/lib/slide/layouts/big_quote.js +0 -19
  18. package/lib/slide/layouts/columns.d.ts +0 -2
  19. package/lib/slide/layouts/columns.js +0 -53
  20. package/lib/slide/layouts/comparison.d.ts +0 -2
  21. package/lib/slide/layouts/comparison.js +0 -25
  22. package/lib/slide/layouts/funnel.d.ts +0 -2
  23. package/lib/slide/layouts/funnel.js +0 -25
  24. package/lib/slide/layouts/grid.d.ts +0 -2
  25. package/lib/slide/layouts/grid.js +0 -38
  26. package/lib/slide/layouts/index.d.ts +0 -3
  27. package/lib/slide/layouts/index.js +0 -46
  28. package/lib/slide/layouts/matrix.d.ts +0 -2
  29. package/lib/slide/layouts/matrix.js +0 -53
  30. package/lib/slide/layouts/split.d.ts +0 -2
  31. package/lib/slide/layouts/split.js +0 -51
  32. package/lib/slide/layouts/stats.d.ts +0 -2
  33. package/lib/slide/layouts/stats.js +0 -23
  34. package/lib/slide/layouts/table.d.ts +0 -2
  35. package/lib/slide/layouts/table.js +0 -10
  36. package/lib/slide/layouts/timeline.d.ts +0 -2
  37. package/lib/slide/layouts/timeline.js +0 -27
  38. package/lib/slide/layouts/title.d.ts +0 -2
  39. package/lib/slide/layouts/title.js +0 -19
  40. package/lib/slide/layouts/waterfall.d.ts +0 -2
  41. package/lib/slide/layouts/waterfall.js +0 -63
  42. package/lib/slide/render.d.ts +0 -17
  43. package/lib/slide/render.js +0 -101
  44. package/lib/slide/schema.d.ts +0 -9309
  45. package/lib/slide/schema.js +0 -434
  46. package/lib/slide/utils.d.ts +0 -76
  47. package/lib/slide/utils.js +0 -243
  48. package/lib/types/slide.d.ts +0 -9309
  49. package/lib/types/slide.js +0 -434
  50. package/lib/utils/browser_pool.d.ts +0 -5
  51. package/lib/utils/browser_pool.js +0 -39
  52. package/lib/utils/markdown.d.ts +0 -3
  53. package/lib/utils/markdown.js +0 -49
@@ -114,7 +114,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
114
114
  kind: "path";
115
115
  path: string;
116
116
  };
117
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
117
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
118
118
  opacity?: number | undefined;
119
119
  } | null | undefined;
120
120
  concurrency?: number | undefined;
@@ -323,6 +323,176 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
323
323
  id?: string | undefined;
324
324
  description?: string | undefined;
325
325
  image?: {
326
+ type: "image";
327
+ source: {
328
+ kind: "url";
329
+ url: string;
330
+ } | {
331
+ kind: "base64";
332
+ data: string;
333
+ } | {
334
+ kind: "path";
335
+ path: string;
336
+ };
337
+ } | {
338
+ type: "movie";
339
+ source: {
340
+ kind: "url";
341
+ url: string;
342
+ } | {
343
+ kind: "base64";
344
+ data: string;
345
+ } | {
346
+ kind: "path";
347
+ path: string;
348
+ };
349
+ } | {
350
+ type: "markdown";
351
+ markdown: string | string[] | ({
352
+ header?: string | string[] | undefined;
353
+ "sidebar-left"?: string | string[] | undefined;
354
+ } & ({
355
+ "row-2": [string | string[], string | string[]];
356
+ } | {
357
+ "2x2": [string | string[], string | string[], string | string[], string | string[]];
358
+ } | {
359
+ content: string | string[];
360
+ }));
361
+ style?: string | undefined;
362
+ backgroundImage?: string | {
363
+ source: {
364
+ kind: "url";
365
+ url: string;
366
+ } | {
367
+ kind: "base64";
368
+ data: string;
369
+ } | {
370
+ kind: "path";
371
+ path: string;
372
+ };
373
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
374
+ opacity?: number | undefined;
375
+ } | null | undefined;
376
+ } | {
377
+ type: "web";
378
+ url: string;
379
+ } | {
380
+ type: "pdf";
381
+ source: {
382
+ kind: "url";
383
+ url: string;
384
+ } | {
385
+ kind: "base64";
386
+ data: string;
387
+ } | {
388
+ kind: "path";
389
+ path: string;
390
+ };
391
+ } | {
392
+ type: "svg";
393
+ source: {
394
+ kind: "url";
395
+ url: string;
396
+ } | {
397
+ kind: "base64";
398
+ data: string;
399
+ } | {
400
+ kind: "path";
401
+ path: string;
402
+ };
403
+ } | {
404
+ type: "textSlide";
405
+ slide: {
406
+ title: string;
407
+ subtitle?: string | undefined;
408
+ bullets?: string[] | undefined;
409
+ };
410
+ style?: string | undefined;
411
+ backgroundImage?: string | {
412
+ source: {
413
+ kind: "url";
414
+ url: string;
415
+ } | {
416
+ kind: "base64";
417
+ data: string;
418
+ } | {
419
+ kind: "path";
420
+ path: string;
421
+ };
422
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
423
+ opacity?: number | undefined;
424
+ } | null | undefined;
425
+ } | {
426
+ type: "chart";
427
+ title: string;
428
+ chartData: Record<string, any>;
429
+ style?: string | undefined;
430
+ backgroundImage?: string | {
431
+ source: {
432
+ kind: "url";
433
+ url: string;
434
+ } | {
435
+ kind: "base64";
436
+ data: string;
437
+ } | {
438
+ kind: "path";
439
+ path: string;
440
+ };
441
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
442
+ opacity?: number | undefined;
443
+ } | null | undefined;
444
+ } | {
445
+ type: "mermaid";
446
+ title: string;
447
+ code: {
448
+ kind: "url";
449
+ url: string;
450
+ } | {
451
+ kind: "base64";
452
+ data: string;
453
+ } | {
454
+ kind: "text";
455
+ text: string;
456
+ } | {
457
+ kind: "path";
458
+ path: string;
459
+ };
460
+ appendix?: string[] | undefined;
461
+ style?: string | undefined;
462
+ backgroundImage?: string | {
463
+ source: {
464
+ kind: "url";
465
+ url: string;
466
+ } | {
467
+ kind: "base64";
468
+ data: string;
469
+ } | {
470
+ kind: "path";
471
+ path: string;
472
+ };
473
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
474
+ opacity?: number | undefined;
475
+ } | null | undefined;
476
+ } | {
477
+ type: "html_tailwind";
478
+ html?: string | string[] | undefined;
479
+ script?: string | string[] | undefined;
480
+ elements?: unknown[] | undefined;
481
+ animation?: true | {
482
+ fps: number;
483
+ movie?: boolean | undefined;
484
+ } | undefined;
485
+ } | {
486
+ type: "beat";
487
+ id?: string | undefined;
488
+ } | {
489
+ type: "voice_over";
490
+ startAt?: number | undefined;
491
+ } | {
492
+ type: "vision";
493
+ style: string;
494
+ data: Record<string, any>;
495
+ } | {
326
496
  type: "slide";
327
497
  slide: {
328
498
  title: string;
@@ -330,26 +500,36 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
330
500
  subtitle?: string | undefined;
331
501
  author?: string | undefined;
332
502
  note?: string | undefined;
333
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
503
+ chips?: string[] | undefined;
504
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
334
505
  style?: {
335
506
  bgColor?: string | undefined;
507
+ bgGradient?: string | undefined;
336
508
  decorations?: boolean | undefined;
337
509
  bgOpacity?: number | undefined;
338
510
  footer?: string | undefined;
339
511
  } | undefined;
512
+ eyebrow?: {
513
+ label: string;
514
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
515
+ } | undefined;
516
+ density?: "default" | "compact" | undefined;
517
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
518
+ subtitleSize?: "default" | "big" | "lead" | undefined;
340
519
  } | {
341
520
  title: string;
342
521
  columns: {
343
522
  title: string;
344
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
523
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
345
524
  content?: ({
346
525
  type: "text";
347
526
  value: string;
348
- align?: "left" | "center" | "right" | undefined;
527
+ align?: "center" | "left" | "right" | undefined;
349
528
  bold?: boolean | undefined;
350
529
  dim?: boolean | undefined;
351
530
  fontSize?: number | undefined;
352
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
531
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
532
+ size?: "big" | "sub" | "lead" | undefined;
353
533
  } | {
354
534
  type: "bullets";
355
535
  items: (string | {
@@ -357,9 +537,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
357
537
  items?: (string | {
358
538
  text: string;
359
539
  })[] | undefined;
540
+ icon?: "ok" | "no" | "warn" | undefined;
541
+ size?: "big" | "sub" | "lead" | undefined;
360
542
  })[];
361
543
  ordered?: boolean | undefined;
362
544
  icon?: string | undefined;
545
+ size?: "big" | "sub" | "lead" | undefined;
363
546
  } | {
364
547
  type: "code";
365
548
  code: string;
@@ -368,27 +551,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
368
551
  type: "callout";
369
552
  text: string;
370
553
  label?: string | undefined;
371
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
372
- style?: "warning" | "info" | "quote" | undefined;
554
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
555
+ style?: "info" | "warning" | "quote" | undefined;
556
+ size?: "big" | "sub" | "lead" | undefined;
373
557
  } | {
374
558
  type: "metric";
375
559
  value: string;
376
560
  label: string;
377
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
561
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
378
562
  change?: string | undefined;
379
563
  } | {
380
564
  type: "divider";
381
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
565
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
382
566
  } | {
383
567
  type: "image";
384
568
  src: string;
385
569
  alt?: string | undefined;
386
- fit?: "contain" | "cover" | undefined;
570
+ fit?: "cover" | "contain" | undefined;
387
571
  } | {
388
572
  type: "imageRef";
389
573
  ref: string;
390
574
  alt?: string | undefined;
391
- fit?: "contain" | "cover" | undefined;
575
+ fit?: "cover" | "contain" | undefined;
392
576
  } | {
393
577
  type: "chart";
394
578
  chartData: Record<string, unknown>;
@@ -401,7 +585,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
401
585
  type: "table";
402
586
  rows: (string | {
403
587
  text: string;
404
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
588
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
405
589
  bold?: boolean | undefined;
406
590
  badge?: boolean | undefined;
407
591
  })[][];
@@ -409,18 +593,23 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
409
593
  headers?: string[] | undefined;
410
594
  rowHeaders?: boolean | undefined;
411
595
  striped?: boolean | undefined;
596
+ } | {
597
+ type: "tag";
598
+ text: string;
599
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
412
600
  } | {
413
601
  type: "section";
414
602
  label: string;
415
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
603
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
416
604
  content?: ({
417
605
  type: "text";
418
606
  value: string;
419
- align?: "left" | "center" | "right" | undefined;
607
+ align?: "center" | "left" | "right" | undefined;
420
608
  bold?: boolean | undefined;
421
609
  dim?: boolean | undefined;
422
610
  fontSize?: number | undefined;
423
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
611
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
612
+ size?: "big" | "sub" | "lead" | undefined;
424
613
  } | {
425
614
  type: "bullets";
426
615
  items: (string | {
@@ -428,9 +617,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
428
617
  items?: (string | {
429
618
  text: string;
430
619
  })[] | undefined;
620
+ icon?: "ok" | "no" | "warn" | undefined;
621
+ size?: "big" | "sub" | "lead" | undefined;
431
622
  })[];
432
623
  ordered?: boolean | undefined;
433
624
  icon?: string | undefined;
625
+ size?: "big" | "sub" | "lead" | undefined;
434
626
  } | {
435
627
  type: "code";
436
628
  code: string;
@@ -439,27 +631,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
439
631
  type: "callout";
440
632
  text: string;
441
633
  label?: string | undefined;
442
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
443
- style?: "warning" | "info" | "quote" | undefined;
634
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
635
+ style?: "info" | "warning" | "quote" | undefined;
636
+ size?: "big" | "sub" | "lead" | undefined;
444
637
  } | {
445
638
  type: "metric";
446
639
  value: string;
447
640
  label: string;
448
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
641
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
449
642
  change?: string | undefined;
450
643
  } | {
451
644
  type: "divider";
452
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
645
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
453
646
  } | {
454
647
  type: "image";
455
648
  src: string;
456
649
  alt?: string | undefined;
457
- fit?: "contain" | "cover" | undefined;
650
+ fit?: "cover" | "contain" | undefined;
458
651
  } | {
459
652
  type: "imageRef";
460
653
  ref: string;
461
654
  alt?: string | undefined;
462
- fit?: "contain" | "cover" | undefined;
655
+ fit?: "cover" | "contain" | undefined;
463
656
  } | {
464
657
  type: "chart";
465
658
  chartData: Record<string, unknown>;
@@ -472,7 +665,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
472
665
  type: "table";
473
666
  rows: (string | {
474
667
  text: string;
475
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
668
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
476
669
  bold?: boolean | undefined;
477
670
  badge?: boolean | undefined;
478
671
  })[][];
@@ -480,6 +673,10 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
480
673
  headers?: string[] | undefined;
481
674
  rowHeaders?: boolean | undefined;
482
675
  striped?: boolean | undefined;
676
+ } | {
677
+ type: "tag";
678
+ text: string;
679
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
483
680
  })[] | undefined;
484
681
  text?: string | undefined;
485
682
  sidebar?: boolean | undefined;
@@ -487,6 +684,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
487
684
  footer?: string | undefined;
488
685
  label?: string | undefined;
489
686
  num?: number | undefined;
687
+ numLabel?: string | undefined;
490
688
  icon?: string | undefined;
491
689
  }[];
492
690
  layout: "columns";
@@ -496,31 +694,40 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
496
694
  callout?: {
497
695
  text: string;
498
696
  label?: string | undefined;
499
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
500
- align?: "left" | "center" | undefined;
697
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
698
+ align?: "center" | "left" | undefined;
501
699
  leftBar?: boolean | undefined;
502
700
  } | undefined;
503
701
  bottomText?: string | undefined;
504
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
702
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
505
703
  style?: {
506
704
  bgColor?: string | undefined;
705
+ bgGradient?: string | undefined;
507
706
  decorations?: boolean | undefined;
508
707
  bgOpacity?: number | undefined;
509
708
  footer?: string | undefined;
510
709
  } | undefined;
710
+ eyebrow?: {
711
+ label: string;
712
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
713
+ } | undefined;
714
+ density?: "default" | "compact" | undefined;
715
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
716
+ subtitleSize?: "default" | "big" | "lead" | undefined;
511
717
  } | {
512
718
  title: string;
513
719
  left: {
514
720
  title: string;
515
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
721
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
516
722
  content?: ({
517
723
  type: "text";
518
724
  value: string;
519
- align?: "left" | "center" | "right" | undefined;
725
+ align?: "center" | "left" | "right" | undefined;
520
726
  bold?: boolean | undefined;
521
727
  dim?: boolean | undefined;
522
728
  fontSize?: number | undefined;
523
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
729
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
730
+ size?: "big" | "sub" | "lead" | undefined;
524
731
  } | {
525
732
  type: "bullets";
526
733
  items: (string | {
@@ -528,9 +735,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
528
735
  items?: (string | {
529
736
  text: string;
530
737
  })[] | undefined;
738
+ icon?: "ok" | "no" | "warn" | undefined;
739
+ size?: "big" | "sub" | "lead" | undefined;
531
740
  })[];
532
741
  ordered?: boolean | undefined;
533
742
  icon?: string | undefined;
743
+ size?: "big" | "sub" | "lead" | undefined;
534
744
  } | {
535
745
  type: "code";
536
746
  code: string;
@@ -539,27 +749,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
539
749
  type: "callout";
540
750
  text: string;
541
751
  label?: string | undefined;
542
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
543
- style?: "warning" | "info" | "quote" | undefined;
752
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
753
+ style?: "info" | "warning" | "quote" | undefined;
754
+ size?: "big" | "sub" | "lead" | undefined;
544
755
  } | {
545
756
  type: "metric";
546
757
  value: string;
547
758
  label: string;
548
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
759
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
549
760
  change?: string | undefined;
550
761
  } | {
551
762
  type: "divider";
552
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
763
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
553
764
  } | {
554
765
  type: "image";
555
766
  src: string;
556
767
  alt?: string | undefined;
557
- fit?: "contain" | "cover" | undefined;
768
+ fit?: "cover" | "contain" | undefined;
558
769
  } | {
559
770
  type: "imageRef";
560
771
  ref: string;
561
772
  alt?: string | undefined;
562
- fit?: "contain" | "cover" | undefined;
773
+ fit?: "cover" | "contain" | undefined;
563
774
  } | {
564
775
  type: "chart";
565
776
  chartData: Record<string, unknown>;
@@ -572,7 +783,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
572
783
  type: "table";
573
784
  rows: (string | {
574
785
  text: string;
575
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
786
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
576
787
  bold?: boolean | undefined;
577
788
  badge?: boolean | undefined;
578
789
  })[][];
@@ -580,18 +791,23 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
580
791
  headers?: string[] | undefined;
581
792
  rowHeaders?: boolean | undefined;
582
793
  striped?: boolean | undefined;
794
+ } | {
795
+ type: "tag";
796
+ text: string;
797
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
583
798
  } | {
584
799
  type: "section";
585
800
  label: string;
586
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
801
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
587
802
  content?: ({
588
803
  type: "text";
589
804
  value: string;
590
- align?: "left" | "center" | "right" | undefined;
805
+ align?: "center" | "left" | "right" | undefined;
591
806
  bold?: boolean | undefined;
592
807
  dim?: boolean | undefined;
593
808
  fontSize?: number | undefined;
594
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
809
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
810
+ size?: "big" | "sub" | "lead" | undefined;
595
811
  } | {
596
812
  type: "bullets";
597
813
  items: (string | {
@@ -599,9 +815,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
599
815
  items?: (string | {
600
816
  text: string;
601
817
  })[] | undefined;
818
+ icon?: "ok" | "no" | "warn" | undefined;
819
+ size?: "big" | "sub" | "lead" | undefined;
602
820
  })[];
603
821
  ordered?: boolean | undefined;
604
822
  icon?: string | undefined;
823
+ size?: "big" | "sub" | "lead" | undefined;
605
824
  } | {
606
825
  type: "code";
607
826
  code: string;
@@ -610,27 +829,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
610
829
  type: "callout";
611
830
  text: string;
612
831
  label?: string | undefined;
613
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
614
- style?: "warning" | "info" | "quote" | undefined;
832
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
833
+ style?: "info" | "warning" | "quote" | undefined;
834
+ size?: "big" | "sub" | "lead" | undefined;
615
835
  } | {
616
836
  type: "metric";
617
837
  value: string;
618
838
  label: string;
619
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
839
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
620
840
  change?: string | undefined;
621
841
  } | {
622
842
  type: "divider";
623
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
843
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
624
844
  } | {
625
845
  type: "image";
626
846
  src: string;
627
847
  alt?: string | undefined;
628
- fit?: "contain" | "cover" | undefined;
848
+ fit?: "cover" | "contain" | undefined;
629
849
  } | {
630
850
  type: "imageRef";
631
851
  ref: string;
632
852
  alt?: string | undefined;
633
- fit?: "contain" | "cover" | undefined;
853
+ fit?: "cover" | "contain" | undefined;
634
854
  } | {
635
855
  type: "chart";
636
856
  chartData: Record<string, unknown>;
@@ -643,7 +863,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
643
863
  type: "table";
644
864
  rows: (string | {
645
865
  text: string;
646
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
866
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
647
867
  bold?: boolean | undefined;
648
868
  badge?: boolean | undefined;
649
869
  })[][];
@@ -651,23 +871,30 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
651
871
  headers?: string[] | undefined;
652
872
  rowHeaders?: boolean | undefined;
653
873
  striped?: boolean | undefined;
874
+ } | {
875
+ type: "tag";
876
+ text: string;
877
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
654
878
  })[] | undefined;
655
879
  text?: string | undefined;
656
880
  sidebar?: boolean | undefined;
657
881
  })[] | undefined;
658
882
  footer?: string | undefined;
883
+ ratio?: number | undefined;
884
+ cardless?: boolean | undefined;
659
885
  };
660
886
  right: {
661
887
  title: string;
662
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
888
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
663
889
  content?: ({
664
890
  type: "text";
665
891
  value: string;
666
- align?: "left" | "center" | "right" | undefined;
892
+ align?: "center" | "left" | "right" | undefined;
667
893
  bold?: boolean | undefined;
668
894
  dim?: boolean | undefined;
669
895
  fontSize?: number | undefined;
670
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
896
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
897
+ size?: "big" | "sub" | "lead" | undefined;
671
898
  } | {
672
899
  type: "bullets";
673
900
  items: (string | {
@@ -675,9 +902,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
675
902
  items?: (string | {
676
903
  text: string;
677
904
  })[] | undefined;
905
+ icon?: "ok" | "no" | "warn" | undefined;
906
+ size?: "big" | "sub" | "lead" | undefined;
678
907
  })[];
679
908
  ordered?: boolean | undefined;
680
909
  icon?: string | undefined;
910
+ size?: "big" | "sub" | "lead" | undefined;
681
911
  } | {
682
912
  type: "code";
683
913
  code: string;
@@ -686,27 +916,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
686
916
  type: "callout";
687
917
  text: string;
688
918
  label?: string | undefined;
689
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
690
- style?: "warning" | "info" | "quote" | undefined;
919
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
920
+ style?: "info" | "warning" | "quote" | undefined;
921
+ size?: "big" | "sub" | "lead" | undefined;
691
922
  } | {
692
923
  type: "metric";
693
924
  value: string;
694
925
  label: string;
695
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
926
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
696
927
  change?: string | undefined;
697
928
  } | {
698
929
  type: "divider";
699
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
930
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
700
931
  } | {
701
932
  type: "image";
702
933
  src: string;
703
934
  alt?: string | undefined;
704
- fit?: "contain" | "cover" | undefined;
935
+ fit?: "cover" | "contain" | undefined;
705
936
  } | {
706
937
  type: "imageRef";
707
938
  ref: string;
708
939
  alt?: string | undefined;
709
- fit?: "contain" | "cover" | undefined;
940
+ fit?: "cover" | "contain" | undefined;
710
941
  } | {
711
942
  type: "chart";
712
943
  chartData: Record<string, unknown>;
@@ -719,7 +950,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
719
950
  type: "table";
720
951
  rows: (string | {
721
952
  text: string;
722
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
953
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
723
954
  bold?: boolean | undefined;
724
955
  badge?: boolean | undefined;
725
956
  })[][];
@@ -727,18 +958,23 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
727
958
  headers?: string[] | undefined;
728
959
  rowHeaders?: boolean | undefined;
729
960
  striped?: boolean | undefined;
961
+ } | {
962
+ type: "tag";
963
+ text: string;
964
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
730
965
  } | {
731
966
  type: "section";
732
967
  label: string;
733
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
968
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
734
969
  content?: ({
735
970
  type: "text";
736
971
  value: string;
737
- align?: "left" | "center" | "right" | undefined;
972
+ align?: "center" | "left" | "right" | undefined;
738
973
  bold?: boolean | undefined;
739
974
  dim?: boolean | undefined;
740
975
  fontSize?: number | undefined;
741
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
976
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
977
+ size?: "big" | "sub" | "lead" | undefined;
742
978
  } | {
743
979
  type: "bullets";
744
980
  items: (string | {
@@ -746,9 +982,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
746
982
  items?: (string | {
747
983
  text: string;
748
984
  })[] | undefined;
985
+ icon?: "ok" | "no" | "warn" | undefined;
986
+ size?: "big" | "sub" | "lead" | undefined;
749
987
  })[];
750
988
  ordered?: boolean | undefined;
751
989
  icon?: string | undefined;
990
+ size?: "big" | "sub" | "lead" | undefined;
752
991
  } | {
753
992
  type: "code";
754
993
  code: string;
@@ -757,27 +996,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
757
996
  type: "callout";
758
997
  text: string;
759
998
  label?: string | undefined;
760
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
761
- style?: "warning" | "info" | "quote" | undefined;
999
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1000
+ style?: "info" | "warning" | "quote" | undefined;
1001
+ size?: "big" | "sub" | "lead" | undefined;
762
1002
  } | {
763
1003
  type: "metric";
764
1004
  value: string;
765
1005
  label: string;
766
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1006
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
767
1007
  change?: string | undefined;
768
1008
  } | {
769
1009
  type: "divider";
770
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1010
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
771
1011
  } | {
772
1012
  type: "image";
773
1013
  src: string;
774
1014
  alt?: string | undefined;
775
- fit?: "contain" | "cover" | undefined;
1015
+ fit?: "cover" | "contain" | undefined;
776
1016
  } | {
777
1017
  type: "imageRef";
778
1018
  ref: string;
779
1019
  alt?: string | undefined;
780
- fit?: "contain" | "cover" | undefined;
1020
+ fit?: "cover" | "contain" | undefined;
781
1021
  } | {
782
1022
  type: "chart";
783
1023
  chartData: Record<string, unknown>;
@@ -790,7 +1030,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
790
1030
  type: "table";
791
1031
  rows: (string | {
792
1032
  text: string;
793
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1033
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
794
1034
  bold?: boolean | undefined;
795
1035
  badge?: boolean | undefined;
796
1036
  })[][];
@@ -798,11 +1038,17 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
798
1038
  headers?: string[] | undefined;
799
1039
  rowHeaders?: boolean | undefined;
800
1040
  striped?: boolean | undefined;
1041
+ } | {
1042
+ type: "tag";
1043
+ text: string;
1044
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
801
1045
  })[] | undefined;
802
1046
  text?: string | undefined;
803
1047
  sidebar?: boolean | undefined;
804
1048
  })[] | undefined;
805
1049
  footer?: string | undefined;
1050
+ ratio?: number | undefined;
1051
+ cardless?: boolean | undefined;
806
1052
  };
807
1053
  layout: "comparison";
808
1054
  stepLabel?: string | undefined;
@@ -810,33 +1056,42 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
810
1056
  callout?: {
811
1057
  text: string;
812
1058
  label?: string | undefined;
813
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
814
- align?: "left" | "center" | undefined;
1059
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1060
+ align?: "center" | "left" | undefined;
815
1061
  leftBar?: boolean | undefined;
816
1062
  } | undefined;
817
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1063
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
818
1064
  style?: {
819
1065
  bgColor?: string | undefined;
1066
+ bgGradient?: string | undefined;
820
1067
  decorations?: boolean | undefined;
821
1068
  bgOpacity?: number | undefined;
822
1069
  footer?: string | undefined;
823
1070
  } | undefined;
1071
+ eyebrow?: {
1072
+ label: string;
1073
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1074
+ } | undefined;
1075
+ density?: "default" | "compact" | undefined;
1076
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
1077
+ subtitleSize?: "default" | "big" | "lead" | undefined;
824
1078
  } | {
825
1079
  title: string;
826
1080
  items: {
827
1081
  title: string;
828
1082
  description?: string | undefined;
829
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1083
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
830
1084
  num?: number | undefined;
831
1085
  icon?: string | undefined;
832
1086
  content?: ({
833
1087
  type: "text";
834
1088
  value: string;
835
- align?: "left" | "center" | "right" | undefined;
1089
+ align?: "center" | "left" | "right" | undefined;
836
1090
  bold?: boolean | undefined;
837
1091
  dim?: boolean | undefined;
838
1092
  fontSize?: number | undefined;
839
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1093
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1094
+ size?: "big" | "sub" | "lead" | undefined;
840
1095
  } | {
841
1096
  type: "bullets";
842
1097
  items: (string | {
@@ -844,9 +1099,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
844
1099
  items?: (string | {
845
1100
  text: string;
846
1101
  })[] | undefined;
1102
+ icon?: "ok" | "no" | "warn" | undefined;
1103
+ size?: "big" | "sub" | "lead" | undefined;
847
1104
  })[];
848
1105
  ordered?: boolean | undefined;
849
1106
  icon?: string | undefined;
1107
+ size?: "big" | "sub" | "lead" | undefined;
850
1108
  } | {
851
1109
  type: "code";
852
1110
  code: string;
@@ -855,27 +1113,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
855
1113
  type: "callout";
856
1114
  text: string;
857
1115
  label?: string | undefined;
858
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
859
- style?: "warning" | "info" | "quote" | undefined;
1116
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1117
+ style?: "info" | "warning" | "quote" | undefined;
1118
+ size?: "big" | "sub" | "lead" | undefined;
860
1119
  } | {
861
1120
  type: "metric";
862
1121
  value: string;
863
1122
  label: string;
864
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1123
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
865
1124
  change?: string | undefined;
866
1125
  } | {
867
1126
  type: "divider";
868
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1127
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
869
1128
  } | {
870
1129
  type: "image";
871
1130
  src: string;
872
1131
  alt?: string | undefined;
873
- fit?: "contain" | "cover" | undefined;
1132
+ fit?: "cover" | "contain" | undefined;
874
1133
  } | {
875
1134
  type: "imageRef";
876
1135
  ref: string;
877
1136
  alt?: string | undefined;
878
- fit?: "contain" | "cover" | undefined;
1137
+ fit?: "cover" | "contain" | undefined;
879
1138
  } | {
880
1139
  type: "chart";
881
1140
  chartData: Record<string, unknown>;
@@ -888,7 +1147,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
888
1147
  type: "table";
889
1148
  rows: (string | {
890
1149
  text: string;
891
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1150
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
892
1151
  bold?: boolean | undefined;
893
1152
  badge?: boolean | undefined;
894
1153
  })[][];
@@ -896,18 +1155,23 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
896
1155
  headers?: string[] | undefined;
897
1156
  rowHeaders?: boolean | undefined;
898
1157
  striped?: boolean | undefined;
1158
+ } | {
1159
+ type: "tag";
1160
+ text: string;
1161
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
899
1162
  } | {
900
1163
  type: "section";
901
1164
  label: string;
902
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1165
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
903
1166
  content?: ({
904
1167
  type: "text";
905
1168
  value: string;
906
- align?: "left" | "center" | "right" | undefined;
1169
+ align?: "center" | "left" | "right" | undefined;
907
1170
  bold?: boolean | undefined;
908
1171
  dim?: boolean | undefined;
909
1172
  fontSize?: number | undefined;
910
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1173
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1174
+ size?: "big" | "sub" | "lead" | undefined;
911
1175
  } | {
912
1176
  type: "bullets";
913
1177
  items: (string | {
@@ -915,9 +1179,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
915
1179
  items?: (string | {
916
1180
  text: string;
917
1181
  })[] | undefined;
1182
+ icon?: "ok" | "no" | "warn" | undefined;
1183
+ size?: "big" | "sub" | "lead" | undefined;
918
1184
  })[];
919
1185
  ordered?: boolean | undefined;
920
1186
  icon?: string | undefined;
1187
+ size?: "big" | "sub" | "lead" | undefined;
921
1188
  } | {
922
1189
  type: "code";
923
1190
  code: string;
@@ -926,27 +1193,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
926
1193
  type: "callout";
927
1194
  text: string;
928
1195
  label?: string | undefined;
929
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
930
- style?: "warning" | "info" | "quote" | undefined;
1196
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1197
+ style?: "info" | "warning" | "quote" | undefined;
1198
+ size?: "big" | "sub" | "lead" | undefined;
931
1199
  } | {
932
1200
  type: "metric";
933
1201
  value: string;
934
1202
  label: string;
935
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1203
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
936
1204
  change?: string | undefined;
937
1205
  } | {
938
1206
  type: "divider";
939
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1207
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
940
1208
  } | {
941
1209
  type: "image";
942
1210
  src: string;
943
1211
  alt?: string | undefined;
944
- fit?: "contain" | "cover" | undefined;
1212
+ fit?: "cover" | "contain" | undefined;
945
1213
  } | {
946
1214
  type: "imageRef";
947
1215
  ref: string;
948
1216
  alt?: string | undefined;
949
- fit?: "contain" | "cover" | undefined;
1217
+ fit?: "cover" | "contain" | undefined;
950
1218
  } | {
951
1219
  type: "chart";
952
1220
  chartData: Record<string, unknown>;
@@ -959,7 +1227,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
959
1227
  type: "table";
960
1228
  rows: (string | {
961
1229
  text: string;
962
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1230
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
963
1231
  bold?: boolean | undefined;
964
1232
  badge?: boolean | undefined;
965
1233
  })[][];
@@ -967,41 +1235,63 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
967
1235
  headers?: string[] | undefined;
968
1236
  rowHeaders?: boolean | undefined;
969
1237
  striped?: boolean | undefined;
1238
+ } | {
1239
+ type: "tag";
1240
+ text: string;
1241
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
970
1242
  })[] | undefined;
971
1243
  text?: string | undefined;
972
1244
  sidebar?: boolean | undefined;
973
1245
  })[] | undefined;
1246
+ span?: number | undefined;
974
1247
  }[];
975
1248
  layout: "grid";
976
1249
  subtitle?: string | undefined;
977
1250
  gridColumns?: number | undefined;
978
1251
  footer?: string | undefined;
979
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1252
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
980
1253
  style?: {
981
1254
  bgColor?: string | undefined;
1255
+ bgGradient?: string | undefined;
982
1256
  decorations?: boolean | undefined;
983
1257
  bgOpacity?: number | undefined;
984
1258
  footer?: string | undefined;
985
1259
  } | undefined;
1260
+ eyebrow?: {
1261
+ label: string;
1262
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1263
+ } | undefined;
1264
+ density?: "default" | "compact" | undefined;
1265
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
1266
+ subtitleSize?: "default" | "big" | "lead" | undefined;
986
1267
  } | {
987
1268
  quote: string;
988
1269
  layout: "bigQuote";
989
1270
  author?: string | undefined;
990
1271
  role?: string | undefined;
991
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1272
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
992
1273
  style?: {
993
1274
  bgColor?: string | undefined;
1275
+ bgGradient?: string | undefined;
994
1276
  decorations?: boolean | undefined;
995
1277
  bgOpacity?: number | undefined;
996
1278
  footer?: string | undefined;
997
1279
  } | undefined;
1280
+ eyebrow?: {
1281
+ label: string;
1282
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1283
+ } | undefined;
1284
+ density?: "default" | "compact" | undefined;
1285
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
1286
+ subtitleSize?: "default" | "big" | "lead" | undefined;
998
1287
  } | {
999
1288
  title: string;
1000
1289
  stats: {
1001
1290
  value: string;
1002
1291
  label: string;
1003
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1292
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1004
1293
  change?: string | undefined;
1294
+ numLabel?: string | undefined;
1005
1295
  }[];
1006
1296
  layout: "stats";
1007
1297
  stepLabel?: string | undefined;
@@ -1009,36 +1299,53 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1009
1299
  callout?: {
1010
1300
  text: string;
1011
1301
  label?: string | undefined;
1012
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1013
- align?: "left" | "center" | undefined;
1302
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1303
+ align?: "center" | "left" | undefined;
1014
1304
  leftBar?: boolean | undefined;
1015
1305
  } | undefined;
1016
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1306
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1017
1307
  style?: {
1018
1308
  bgColor?: string | undefined;
1309
+ bgGradient?: string | undefined;
1019
1310
  decorations?: boolean | undefined;
1020
1311
  bgOpacity?: number | undefined;
1021
1312
  footer?: string | undefined;
1022
1313
  } | undefined;
1314
+ eyebrow?: {
1315
+ label: string;
1316
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1317
+ } | undefined;
1318
+ density?: "default" | "compact" | undefined;
1319
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
1320
+ subtitleSize?: "default" | "big" | "lead" | undefined;
1023
1321
  } | {
1024
1322
  title: string;
1025
1323
  items: {
1026
1324
  date: string;
1027
1325
  title: string;
1028
1326
  description?: string | undefined;
1029
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1327
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1030
1328
  done?: boolean | undefined;
1329
+ hot?: boolean | undefined;
1031
1330
  }[];
1032
1331
  layout: "timeline";
1033
1332
  stepLabel?: string | undefined;
1034
1333
  subtitle?: string | undefined;
1035
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1334
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1036
1335
  style?: {
1037
1336
  bgColor?: string | undefined;
1337
+ bgGradient?: string | undefined;
1038
1338
  decorations?: boolean | undefined;
1039
1339
  bgOpacity?: number | undefined;
1040
1340
  footer?: string | undefined;
1041
1341
  } | undefined;
1342
+ eyebrow?: {
1343
+ label: string;
1344
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1345
+ } | undefined;
1346
+ density?: "default" | "compact" | undefined;
1347
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
1348
+ subtitleSize?: "default" | "big" | "lead" | undefined;
1042
1349
  } | {
1043
1350
  layout: "split";
1044
1351
  left?: {
@@ -1046,15 +1353,16 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1046
1353
  subtitle?: string | undefined;
1047
1354
  label?: string | undefined;
1048
1355
  labelBadge?: boolean | undefined;
1049
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1356
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1050
1357
  content?: ({
1051
1358
  type: "text";
1052
1359
  value: string;
1053
- align?: "left" | "center" | "right" | undefined;
1360
+ align?: "center" | "left" | "right" | undefined;
1054
1361
  bold?: boolean | undefined;
1055
1362
  dim?: boolean | undefined;
1056
1363
  fontSize?: number | undefined;
1057
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1364
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1365
+ size?: "big" | "sub" | "lead" | undefined;
1058
1366
  } | {
1059
1367
  type: "bullets";
1060
1368
  items: (string | {
@@ -1062,9 +1370,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1062
1370
  items?: (string | {
1063
1371
  text: string;
1064
1372
  })[] | undefined;
1373
+ icon?: "ok" | "no" | "warn" | undefined;
1374
+ size?: "big" | "sub" | "lead" | undefined;
1065
1375
  })[];
1066
1376
  ordered?: boolean | undefined;
1067
1377
  icon?: string | undefined;
1378
+ size?: "big" | "sub" | "lead" | undefined;
1068
1379
  } | {
1069
1380
  type: "code";
1070
1381
  code: string;
@@ -1073,27 +1384,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1073
1384
  type: "callout";
1074
1385
  text: string;
1075
1386
  label?: string | undefined;
1076
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1077
- style?: "warning" | "info" | "quote" | undefined;
1387
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1388
+ style?: "info" | "warning" | "quote" | undefined;
1389
+ size?: "big" | "sub" | "lead" | undefined;
1078
1390
  } | {
1079
1391
  type: "metric";
1080
1392
  value: string;
1081
1393
  label: string;
1082
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1394
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1083
1395
  change?: string | undefined;
1084
1396
  } | {
1085
1397
  type: "divider";
1086
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1398
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1087
1399
  } | {
1088
1400
  type: "image";
1089
1401
  src: string;
1090
1402
  alt?: string | undefined;
1091
- fit?: "contain" | "cover" | undefined;
1403
+ fit?: "cover" | "contain" | undefined;
1092
1404
  } | {
1093
1405
  type: "imageRef";
1094
1406
  ref: string;
1095
1407
  alt?: string | undefined;
1096
- fit?: "contain" | "cover" | undefined;
1408
+ fit?: "cover" | "contain" | undefined;
1097
1409
  } | {
1098
1410
  type: "chart";
1099
1411
  chartData: Record<string, unknown>;
@@ -1106,7 +1418,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1106
1418
  type: "table";
1107
1419
  rows: (string | {
1108
1420
  text: string;
1109
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1421
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1110
1422
  bold?: boolean | undefined;
1111
1423
  badge?: boolean | undefined;
1112
1424
  })[][];
@@ -1114,18 +1426,23 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1114
1426
  headers?: string[] | undefined;
1115
1427
  rowHeaders?: boolean | undefined;
1116
1428
  striped?: boolean | undefined;
1429
+ } | {
1430
+ type: "tag";
1431
+ text: string;
1432
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1117
1433
  } | {
1118
1434
  type: "section";
1119
1435
  label: string;
1120
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1436
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1121
1437
  content?: ({
1122
1438
  type: "text";
1123
1439
  value: string;
1124
- align?: "left" | "center" | "right" | undefined;
1440
+ align?: "center" | "left" | "right" | undefined;
1125
1441
  bold?: boolean | undefined;
1126
1442
  dim?: boolean | undefined;
1127
1443
  fontSize?: number | undefined;
1128
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1444
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1445
+ size?: "big" | "sub" | "lead" | undefined;
1129
1446
  } | {
1130
1447
  type: "bullets";
1131
1448
  items: (string | {
@@ -1133,9 +1450,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1133
1450
  items?: (string | {
1134
1451
  text: string;
1135
1452
  })[] | undefined;
1453
+ icon?: "ok" | "no" | "warn" | undefined;
1454
+ size?: "big" | "sub" | "lead" | undefined;
1136
1455
  })[];
1137
1456
  ordered?: boolean | undefined;
1138
1457
  icon?: string | undefined;
1458
+ size?: "big" | "sub" | "lead" | undefined;
1139
1459
  } | {
1140
1460
  type: "code";
1141
1461
  code: string;
@@ -1144,27 +1464,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1144
1464
  type: "callout";
1145
1465
  text: string;
1146
1466
  label?: string | undefined;
1147
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1148
- style?: "warning" | "info" | "quote" | undefined;
1467
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1468
+ style?: "info" | "warning" | "quote" | undefined;
1469
+ size?: "big" | "sub" | "lead" | undefined;
1149
1470
  } | {
1150
1471
  type: "metric";
1151
1472
  value: string;
1152
1473
  label: string;
1153
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1474
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1154
1475
  change?: string | undefined;
1155
1476
  } | {
1156
1477
  type: "divider";
1157
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1478
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1158
1479
  } | {
1159
1480
  type: "image";
1160
1481
  src: string;
1161
1482
  alt?: string | undefined;
1162
- fit?: "contain" | "cover" | undefined;
1483
+ fit?: "cover" | "contain" | undefined;
1163
1484
  } | {
1164
1485
  type: "imageRef";
1165
1486
  ref: string;
1166
1487
  alt?: string | undefined;
1167
- fit?: "contain" | "cover" | undefined;
1488
+ fit?: "cover" | "contain" | undefined;
1168
1489
  } | {
1169
1490
  type: "chart";
1170
1491
  chartData: Record<string, unknown>;
@@ -1177,7 +1498,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1177
1498
  type: "table";
1178
1499
  rows: (string | {
1179
1500
  text: string;
1180
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1501
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1181
1502
  bold?: boolean | undefined;
1182
1503
  badge?: boolean | undefined;
1183
1504
  })[][];
@@ -1185,6 +1506,10 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1185
1506
  headers?: string[] | undefined;
1186
1507
  rowHeaders?: boolean | undefined;
1187
1508
  striped?: boolean | undefined;
1509
+ } | {
1510
+ type: "tag";
1511
+ text: string;
1512
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1188
1513
  })[] | undefined;
1189
1514
  text?: string | undefined;
1190
1515
  sidebar?: boolean | undefined;
@@ -1198,15 +1523,16 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1198
1523
  subtitle?: string | undefined;
1199
1524
  label?: string | undefined;
1200
1525
  labelBadge?: boolean | undefined;
1201
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1526
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1202
1527
  content?: ({
1203
1528
  type: "text";
1204
1529
  value: string;
1205
- align?: "left" | "center" | "right" | undefined;
1530
+ align?: "center" | "left" | "right" | undefined;
1206
1531
  bold?: boolean | undefined;
1207
1532
  dim?: boolean | undefined;
1208
1533
  fontSize?: number | undefined;
1209
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1534
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1535
+ size?: "big" | "sub" | "lead" | undefined;
1210
1536
  } | {
1211
1537
  type: "bullets";
1212
1538
  items: (string | {
@@ -1214,9 +1540,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1214
1540
  items?: (string | {
1215
1541
  text: string;
1216
1542
  })[] | undefined;
1543
+ icon?: "ok" | "no" | "warn" | undefined;
1544
+ size?: "big" | "sub" | "lead" | undefined;
1217
1545
  })[];
1218
1546
  ordered?: boolean | undefined;
1219
1547
  icon?: string | undefined;
1548
+ size?: "big" | "sub" | "lead" | undefined;
1220
1549
  } | {
1221
1550
  type: "code";
1222
1551
  code: string;
@@ -1225,27 +1554,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1225
1554
  type: "callout";
1226
1555
  text: string;
1227
1556
  label?: string | undefined;
1228
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1229
- style?: "warning" | "info" | "quote" | undefined;
1557
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1558
+ style?: "info" | "warning" | "quote" | undefined;
1559
+ size?: "big" | "sub" | "lead" | undefined;
1230
1560
  } | {
1231
1561
  type: "metric";
1232
1562
  value: string;
1233
1563
  label: string;
1234
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1564
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1235
1565
  change?: string | undefined;
1236
1566
  } | {
1237
1567
  type: "divider";
1238
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1568
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1239
1569
  } | {
1240
1570
  type: "image";
1241
1571
  src: string;
1242
1572
  alt?: string | undefined;
1243
- fit?: "contain" | "cover" | undefined;
1573
+ fit?: "cover" | "contain" | undefined;
1244
1574
  } | {
1245
1575
  type: "imageRef";
1246
1576
  ref: string;
1247
1577
  alt?: string | undefined;
1248
- fit?: "contain" | "cover" | undefined;
1578
+ fit?: "cover" | "contain" | undefined;
1249
1579
  } | {
1250
1580
  type: "chart";
1251
1581
  chartData: Record<string, unknown>;
@@ -1258,7 +1588,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1258
1588
  type: "table";
1259
1589
  rows: (string | {
1260
1590
  text: string;
1261
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1591
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1262
1592
  bold?: boolean | undefined;
1263
1593
  badge?: boolean | undefined;
1264
1594
  })[][];
@@ -1266,18 +1596,23 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1266
1596
  headers?: string[] | undefined;
1267
1597
  rowHeaders?: boolean | undefined;
1268
1598
  striped?: boolean | undefined;
1599
+ } | {
1600
+ type: "tag";
1601
+ text: string;
1602
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1269
1603
  } | {
1270
1604
  type: "section";
1271
1605
  label: string;
1272
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1606
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1273
1607
  content?: ({
1274
1608
  type: "text";
1275
1609
  value: string;
1276
- align?: "left" | "center" | "right" | undefined;
1610
+ align?: "center" | "left" | "right" | undefined;
1277
1611
  bold?: boolean | undefined;
1278
1612
  dim?: boolean | undefined;
1279
1613
  fontSize?: number | undefined;
1280
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1614
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1615
+ size?: "big" | "sub" | "lead" | undefined;
1281
1616
  } | {
1282
1617
  type: "bullets";
1283
1618
  items: (string | {
@@ -1285,9 +1620,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1285
1620
  items?: (string | {
1286
1621
  text: string;
1287
1622
  })[] | undefined;
1623
+ icon?: "ok" | "no" | "warn" | undefined;
1624
+ size?: "big" | "sub" | "lead" | undefined;
1288
1625
  })[];
1289
1626
  ordered?: boolean | undefined;
1290
1627
  icon?: string | undefined;
1628
+ size?: "big" | "sub" | "lead" | undefined;
1291
1629
  } | {
1292
1630
  type: "code";
1293
1631
  code: string;
@@ -1296,27 +1634,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1296
1634
  type: "callout";
1297
1635
  text: string;
1298
1636
  label?: string | undefined;
1299
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1300
- style?: "warning" | "info" | "quote" | undefined;
1637
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1638
+ style?: "info" | "warning" | "quote" | undefined;
1639
+ size?: "big" | "sub" | "lead" | undefined;
1301
1640
  } | {
1302
1641
  type: "metric";
1303
1642
  value: string;
1304
1643
  label: string;
1305
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1644
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1306
1645
  change?: string | undefined;
1307
1646
  } | {
1308
1647
  type: "divider";
1309
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1648
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1310
1649
  } | {
1311
1650
  type: "image";
1312
1651
  src: string;
1313
1652
  alt?: string | undefined;
1314
- fit?: "contain" | "cover" | undefined;
1653
+ fit?: "cover" | "contain" | undefined;
1315
1654
  } | {
1316
1655
  type: "imageRef";
1317
1656
  ref: string;
1318
1657
  alt?: string | undefined;
1319
- fit?: "contain" | "cover" | undefined;
1658
+ fit?: "cover" | "contain" | undefined;
1320
1659
  } | {
1321
1660
  type: "chart";
1322
1661
  chartData: Record<string, unknown>;
@@ -1329,7 +1668,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1329
1668
  type: "table";
1330
1669
  rows: (string | {
1331
1670
  text: string;
1332
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1671
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1333
1672
  bold?: boolean | undefined;
1334
1673
  badge?: boolean | undefined;
1335
1674
  })[][];
@@ -1337,6 +1676,10 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1337
1676
  headers?: string[] | undefined;
1338
1677
  rowHeaders?: boolean | undefined;
1339
1678
  striped?: boolean | undefined;
1679
+ } | {
1680
+ type: "tag";
1681
+ text: string;
1682
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1340
1683
  })[] | undefined;
1341
1684
  text?: string | undefined;
1342
1685
  sidebar?: boolean | undefined;
@@ -1345,13 +1688,21 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1345
1688
  ratio?: number | undefined;
1346
1689
  valign?: "center" | "top" | "bottom" | undefined;
1347
1690
  } | undefined;
1348
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1691
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1349
1692
  style?: {
1350
1693
  bgColor?: string | undefined;
1694
+ bgGradient?: string | undefined;
1351
1695
  decorations?: boolean | undefined;
1352
1696
  bgOpacity?: number | undefined;
1353
1697
  footer?: string | undefined;
1354
1698
  } | undefined;
1699
+ eyebrow?: {
1700
+ label: string;
1701
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1702
+ } | undefined;
1703
+ density?: "default" | "compact" | undefined;
1704
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
1705
+ subtitleSize?: "default" | "big" | "lead" | undefined;
1355
1706
  } | {
1356
1707
  title: string;
1357
1708
  cells: {
@@ -1360,11 +1711,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1360
1711
  content?: ({
1361
1712
  type: "text";
1362
1713
  value: string;
1363
- align?: "left" | "center" | "right" | undefined;
1714
+ align?: "center" | "left" | "right" | undefined;
1364
1715
  bold?: boolean | undefined;
1365
1716
  dim?: boolean | undefined;
1366
1717
  fontSize?: number | undefined;
1367
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1718
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1719
+ size?: "big" | "sub" | "lead" | undefined;
1368
1720
  } | {
1369
1721
  type: "bullets";
1370
1722
  items: (string | {
@@ -1372,9 +1724,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1372
1724
  items?: (string | {
1373
1725
  text: string;
1374
1726
  })[] | undefined;
1727
+ icon?: "ok" | "no" | "warn" | undefined;
1728
+ size?: "big" | "sub" | "lead" | undefined;
1375
1729
  })[];
1376
1730
  ordered?: boolean | undefined;
1377
1731
  icon?: string | undefined;
1732
+ size?: "big" | "sub" | "lead" | undefined;
1378
1733
  } | {
1379
1734
  type: "code";
1380
1735
  code: string;
@@ -1383,27 +1738,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1383
1738
  type: "callout";
1384
1739
  text: string;
1385
1740
  label?: string | undefined;
1386
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1387
- style?: "warning" | "info" | "quote" | undefined;
1741
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1742
+ style?: "info" | "warning" | "quote" | undefined;
1743
+ size?: "big" | "sub" | "lead" | undefined;
1388
1744
  } | {
1389
1745
  type: "metric";
1390
1746
  value: string;
1391
1747
  label: string;
1392
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1748
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1393
1749
  change?: string | undefined;
1394
1750
  } | {
1395
1751
  type: "divider";
1396
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1752
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1397
1753
  } | {
1398
1754
  type: "image";
1399
1755
  src: string;
1400
1756
  alt?: string | undefined;
1401
- fit?: "contain" | "cover" | undefined;
1757
+ fit?: "cover" | "contain" | undefined;
1402
1758
  } | {
1403
1759
  type: "imageRef";
1404
1760
  ref: string;
1405
1761
  alt?: string | undefined;
1406
- fit?: "contain" | "cover" | undefined;
1762
+ fit?: "cover" | "contain" | undefined;
1407
1763
  } | {
1408
1764
  type: "chart";
1409
1765
  chartData: Record<string, unknown>;
@@ -1416,7 +1772,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1416
1772
  type: "table";
1417
1773
  rows: (string | {
1418
1774
  text: string;
1419
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1775
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1420
1776
  bold?: boolean | undefined;
1421
1777
  badge?: boolean | undefined;
1422
1778
  })[][];
@@ -1424,18 +1780,23 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1424
1780
  headers?: string[] | undefined;
1425
1781
  rowHeaders?: boolean | undefined;
1426
1782
  striped?: boolean | undefined;
1783
+ } | {
1784
+ type: "tag";
1785
+ text: string;
1786
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1427
1787
  } | {
1428
1788
  type: "section";
1429
1789
  label: string;
1430
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1790
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1431
1791
  content?: ({
1432
1792
  type: "text";
1433
1793
  value: string;
1434
- align?: "left" | "center" | "right" | undefined;
1794
+ align?: "center" | "left" | "right" | undefined;
1435
1795
  bold?: boolean | undefined;
1436
1796
  dim?: boolean | undefined;
1437
1797
  fontSize?: number | undefined;
1438
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1798
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1799
+ size?: "big" | "sub" | "lead" | undefined;
1439
1800
  } | {
1440
1801
  type: "bullets";
1441
1802
  items: (string | {
@@ -1443,9 +1804,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1443
1804
  items?: (string | {
1444
1805
  text: string;
1445
1806
  })[] | undefined;
1807
+ icon?: "ok" | "no" | "warn" | undefined;
1808
+ size?: "big" | "sub" | "lead" | undefined;
1446
1809
  })[];
1447
1810
  ordered?: boolean | undefined;
1448
1811
  icon?: string | undefined;
1812
+ size?: "big" | "sub" | "lead" | undefined;
1449
1813
  } | {
1450
1814
  type: "code";
1451
1815
  code: string;
@@ -1454,27 +1818,28 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1454
1818
  type: "callout";
1455
1819
  text: string;
1456
1820
  label?: string | undefined;
1457
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1458
- style?: "warning" | "info" | "quote" | undefined;
1821
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1822
+ style?: "info" | "warning" | "quote" | undefined;
1823
+ size?: "big" | "sub" | "lead" | undefined;
1459
1824
  } | {
1460
1825
  type: "metric";
1461
1826
  value: string;
1462
1827
  label: string;
1463
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1828
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1464
1829
  change?: string | undefined;
1465
1830
  } | {
1466
1831
  type: "divider";
1467
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1832
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1468
1833
  } | {
1469
1834
  type: "image";
1470
1835
  src: string;
1471
1836
  alt?: string | undefined;
1472
- fit?: "contain" | "cover" | undefined;
1837
+ fit?: "cover" | "contain" | undefined;
1473
1838
  } | {
1474
1839
  type: "imageRef";
1475
1840
  ref: string;
1476
1841
  alt?: string | undefined;
1477
- fit?: "contain" | "cover" | undefined;
1842
+ fit?: "cover" | "contain" | undefined;
1478
1843
  } | {
1479
1844
  type: "chart";
1480
1845
  chartData: Record<string, unknown>;
@@ -1487,7 +1852,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1487
1852
  type: "table";
1488
1853
  rows: (string | {
1489
1854
  text: string;
1490
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1855
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1491
1856
  bold?: boolean | undefined;
1492
1857
  badge?: boolean | undefined;
1493
1858
  })[][];
@@ -1495,11 +1860,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1495
1860
  headers?: string[] | undefined;
1496
1861
  rowHeaders?: boolean | undefined;
1497
1862
  striped?: boolean | undefined;
1863
+ } | {
1864
+ type: "tag";
1865
+ text: string;
1866
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1498
1867
  })[] | undefined;
1499
1868
  text?: string | undefined;
1500
1869
  sidebar?: boolean | undefined;
1501
1870
  })[] | undefined;
1502
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1871
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1503
1872
  }[];
1504
1873
  layout: "matrix";
1505
1874
  stepLabel?: string | undefined;
@@ -1516,19 +1885,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1516
1885
  high?: string | undefined;
1517
1886
  label?: string | undefined;
1518
1887
  } | undefined;
1519
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1888
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1520
1889
  style?: {
1521
1890
  bgColor?: string | undefined;
1891
+ bgGradient?: string | undefined;
1522
1892
  decorations?: boolean | undefined;
1523
1893
  bgOpacity?: number | undefined;
1524
1894
  footer?: string | undefined;
1525
1895
  } | undefined;
1896
+ eyebrow?: {
1897
+ label: string;
1898
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1899
+ } | undefined;
1900
+ density?: "default" | "compact" | undefined;
1901
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
1902
+ subtitleSize?: "default" | "big" | "lead" | undefined;
1526
1903
  } | {
1527
1904
  title: string;
1528
1905
  headers: string[];
1529
1906
  rows: (string | {
1530
1907
  text: string;
1531
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1908
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1532
1909
  bold?: boolean | undefined;
1533
1910
  badge?: boolean | undefined;
1534
1911
  })[][];
@@ -1540,24 +1917,32 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1540
1917
  callout?: {
1541
1918
  text: string;
1542
1919
  label?: string | undefined;
1543
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1544
- align?: "left" | "center" | undefined;
1920
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1921
+ align?: "center" | "left" | undefined;
1545
1922
  leftBar?: boolean | undefined;
1546
1923
  } | undefined;
1547
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1924
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1548
1925
  style?: {
1549
1926
  bgColor?: string | undefined;
1927
+ bgGradient?: string | undefined;
1550
1928
  decorations?: boolean | undefined;
1551
1929
  bgOpacity?: number | undefined;
1552
1930
  footer?: string | undefined;
1553
1931
  } | undefined;
1932
+ eyebrow?: {
1933
+ label: string;
1934
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1935
+ } | undefined;
1936
+ density?: "default" | "compact" | undefined;
1937
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
1938
+ subtitleSize?: "default" | "big" | "lead" | undefined;
1554
1939
  } | {
1555
1940
  title: string;
1556
1941
  stages: {
1557
1942
  label: string;
1558
1943
  value?: string | undefined;
1559
1944
  description?: string | undefined;
1560
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1945
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1561
1946
  }[];
1562
1947
  layout: "funnel";
1563
1948
  stepLabel?: string | undefined;
@@ -1565,24 +1950,32 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1565
1950
  callout?: {
1566
1951
  text: string;
1567
1952
  label?: string | undefined;
1568
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1569
- align?: "left" | "center" | undefined;
1953
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1954
+ align?: "center" | "left" | undefined;
1570
1955
  leftBar?: boolean | undefined;
1571
1956
  } | undefined;
1572
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1957
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1573
1958
  style?: {
1574
1959
  bgColor?: string | undefined;
1960
+ bgGradient?: string | undefined;
1575
1961
  decorations?: boolean | undefined;
1576
1962
  bgOpacity?: number | undefined;
1577
1963
  footer?: string | undefined;
1578
1964
  } | undefined;
1965
+ eyebrow?: {
1966
+ label: string;
1967
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1968
+ } | undefined;
1969
+ density?: "default" | "compact" | undefined;
1970
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
1971
+ subtitleSize?: "default" | "big" | "lead" | undefined;
1579
1972
  } | {
1580
1973
  title: string;
1581
1974
  items: {
1582
1975
  label: string;
1583
1976
  value: number;
1584
1977
  isTotal?: boolean | undefined;
1585
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1978
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1586
1979
  }[];
1587
1980
  layout: "waterfall";
1588
1981
  stepLabel?: string | undefined;
@@ -1591,17 +1984,58 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1591
1984
  callout?: {
1592
1985
  text: string;
1593
1986
  label?: string | undefined;
1594
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
1595
- align?: "left" | "center" | undefined;
1987
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1988
+ align?: "center" | "left" | undefined;
1989
+ leftBar?: boolean | undefined;
1990
+ } | undefined;
1991
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1992
+ style?: {
1993
+ bgColor?: string | undefined;
1994
+ bgGradient?: string | undefined;
1995
+ decorations?: boolean | undefined;
1996
+ bgOpacity?: number | undefined;
1997
+ footer?: string | undefined;
1998
+ } | undefined;
1999
+ eyebrow?: {
2000
+ label: string;
2001
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2002
+ } | undefined;
2003
+ density?: "default" | "compact" | undefined;
2004
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
2005
+ subtitleSize?: "default" | "big" | "lead" | undefined;
2006
+ } | {
2007
+ title: string;
2008
+ items: {
2009
+ title: string;
2010
+ description?: string | undefined;
2011
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2012
+ }[];
2013
+ layout: "manifesto";
2014
+ stepLabel?: string | undefined;
2015
+ subtitle?: string | undefined;
2016
+ columns?: number | undefined;
2017
+ callout?: {
2018
+ text: string;
2019
+ label?: string | undefined;
2020
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2021
+ align?: "center" | "left" | undefined;
1596
2022
  leftBar?: boolean | undefined;
1597
2023
  } | undefined;
1598
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
2024
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
1599
2025
  style?: {
1600
2026
  bgColor?: string | undefined;
2027
+ bgGradient?: string | undefined;
1601
2028
  decorations?: boolean | undefined;
1602
2029
  bgOpacity?: number | undefined;
1603
2030
  footer?: string | undefined;
1604
2031
  } | undefined;
2032
+ eyebrow?: {
2033
+ label: string;
2034
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2035
+ } | undefined;
2036
+ density?: "default" | "compact" | undefined;
2037
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
2038
+ subtitleSize?: "default" | "big" | "lead" | undefined;
1605
2039
  };
1606
2040
  theme?: {
1607
2041
  colors: {
@@ -1623,7 +2057,11 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1623
2057
  title: string;
1624
2058
  body: string;
1625
2059
  mono: string;
2060
+ accent?: string | undefined;
1626
2061
  };
2062
+ bgGradient?: string | undefined;
2063
+ titleGradient?: string | undefined;
2064
+ cardStyle?: "glass" | "solid" | undefined;
1627
2065
  } | undefined;
1628
2066
  reference?: string | undefined;
1629
2067
  branding?: {
@@ -1652,184 +2090,14 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
1652
2090
  kind: "path";
1653
2091
  path: string;
1654
2092
  };
1655
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
2093
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
1656
2094
  opacity?: number | undefined;
1657
2095
  bgOpacity?: number | undefined;
1658
2096
  } | undefined;
1659
2097
  } | null | undefined;
1660
- } | {
1661
- type: "image";
1662
- source: {
1663
- kind: "url";
1664
- url: string;
1665
- } | {
1666
- kind: "base64";
1667
- data: string;
1668
- } | {
1669
- kind: "path";
1670
- path: string;
1671
- };
1672
- } | {
1673
- type: "movie";
1674
- source: {
1675
- kind: "url";
1676
- url: string;
1677
- } | {
1678
- kind: "base64";
1679
- data: string;
1680
- } | {
1681
- kind: "path";
1682
- path: string;
1683
- };
1684
- } | {
1685
- type: "markdown";
1686
- markdown: string | string[] | ({
1687
- header?: string | string[] | undefined;
1688
- "sidebar-left"?: string | string[] | undefined;
1689
- } & ({
1690
- "row-2": [string | string[], string | string[]];
1691
- } | {
1692
- "2x2": [string | string[], string | string[], string | string[], string | string[]];
1693
- } | {
1694
- content: string | string[];
1695
- }));
1696
- style?: string | undefined;
1697
- backgroundImage?: string | {
1698
- source: {
1699
- kind: "url";
1700
- url: string;
1701
- } | {
1702
- kind: "base64";
1703
- data: string;
1704
- } | {
1705
- kind: "path";
1706
- path: string;
1707
- };
1708
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
1709
- opacity?: number | undefined;
1710
- } | null | undefined;
1711
- } | {
1712
- type: "web";
1713
- url: string;
1714
- } | {
1715
- type: "pdf";
1716
- source: {
1717
- kind: "url";
1718
- url: string;
1719
- } | {
1720
- kind: "base64";
1721
- data: string;
1722
- } | {
1723
- kind: "path";
1724
- path: string;
1725
- };
1726
- } | {
1727
- type: "svg";
1728
- source: {
1729
- kind: "url";
1730
- url: string;
1731
- } | {
1732
- kind: "base64";
1733
- data: string;
1734
- } | {
1735
- kind: "path";
1736
- path: string;
1737
- };
1738
- } | {
1739
- type: "textSlide";
1740
- slide: {
1741
- title: string;
1742
- subtitle?: string | undefined;
1743
- bullets?: string[] | undefined;
1744
- };
1745
- style?: string | undefined;
1746
- backgroundImage?: string | {
1747
- source: {
1748
- kind: "url";
1749
- url: string;
1750
- } | {
1751
- kind: "base64";
1752
- data: string;
1753
- } | {
1754
- kind: "path";
1755
- path: string;
1756
- };
1757
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
1758
- opacity?: number | undefined;
1759
- } | null | undefined;
1760
- } | {
1761
- type: "chart";
1762
- title: string;
1763
- chartData: Record<string, any>;
1764
- style?: string | undefined;
1765
- backgroundImage?: string | {
1766
- source: {
1767
- kind: "url";
1768
- url: string;
1769
- } | {
1770
- kind: "base64";
1771
- data: string;
1772
- } | {
1773
- kind: "path";
1774
- path: string;
1775
- };
1776
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
1777
- opacity?: number | undefined;
1778
- } | null | undefined;
1779
- } | {
1780
- type: "mermaid";
1781
- title: string;
1782
- code: {
1783
- kind: "url";
1784
- url: string;
1785
- } | {
1786
- kind: "base64";
1787
- data: string;
1788
- } | {
1789
- kind: "text";
1790
- text: string;
1791
- } | {
1792
- kind: "path";
1793
- path: string;
1794
- };
1795
- appendix?: string[] | undefined;
1796
- style?: string | undefined;
1797
- backgroundImage?: string | {
1798
- source: {
1799
- kind: "url";
1800
- url: string;
1801
- } | {
1802
- kind: "base64";
1803
- data: string;
1804
- } | {
1805
- kind: "path";
1806
- path: string;
1807
- };
1808
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
1809
- opacity?: number | undefined;
1810
- } | null | undefined;
1811
- } | {
1812
- type: "html_tailwind";
1813
- html?: string | string[] | undefined;
1814
- script?: string | string[] | undefined;
1815
- elements?: unknown[] | undefined;
1816
- animation?: true | {
1817
- fps: number;
1818
- movie?: boolean | undefined;
1819
- } | undefined;
1820
- } | {
1821
- type: "beat";
1822
- id?: string | undefined;
1823
- } | {
1824
- type: "voice_over";
1825
- startAt?: number | undefined;
1826
- } | {
1827
- type: "vision";
1828
- style: string;
1829
- data: Record<string, any>;
1830
- } | undefined;
1831
- audio?: {
1832
- type: "audio";
2098
+ } | undefined;
2099
+ audio?: {
2100
+ type: "audio";
1833
2101
  source: {
1834
2102
  kind: "url";
1835
2103
  url: string;
@@ -2153,7 +2421,11 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
2153
2421
  title: string;
2154
2422
  body: string;
2155
2423
  mono: string;
2424
+ accent?: string | undefined;
2156
2425
  };
2426
+ bgGradient?: string | undefined;
2427
+ titleGradient?: string | undefined;
2428
+ cardStyle?: "glass" | "solid" | undefined;
2157
2429
  };
2158
2430
  branding?: {
2159
2431
  logo?: {
@@ -2181,7 +2453,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
2181
2453
  kind: "path";
2182
2454
  path: string;
2183
2455
  };
2184
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
2456
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
2185
2457
  opacity?: number | undefined;
2186
2458
  bgOpacity?: number | undefined;
2187
2459
  } | undefined;
@@ -2352,7 +2624,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2352
2624
  kind: "path";
2353
2625
  path: string;
2354
2626
  };
2355
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
2627
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
2356
2628
  opacity?: number | undefined;
2357
2629
  } | null | undefined;
2358
2630
  concurrency?: number | undefined;
@@ -2561,6 +2833,176 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2561
2833
  id?: string | undefined;
2562
2834
  description?: string | undefined;
2563
2835
  image?: {
2836
+ type: "image";
2837
+ source: {
2838
+ kind: "url";
2839
+ url: string;
2840
+ } | {
2841
+ kind: "base64";
2842
+ data: string;
2843
+ } | {
2844
+ kind: "path";
2845
+ path: string;
2846
+ };
2847
+ } | {
2848
+ type: "movie";
2849
+ source: {
2850
+ kind: "url";
2851
+ url: string;
2852
+ } | {
2853
+ kind: "base64";
2854
+ data: string;
2855
+ } | {
2856
+ kind: "path";
2857
+ path: string;
2858
+ };
2859
+ } | {
2860
+ type: "markdown";
2861
+ markdown: string | string[] | ({
2862
+ header?: string | string[] | undefined;
2863
+ "sidebar-left"?: string | string[] | undefined;
2864
+ } & ({
2865
+ "row-2": [string | string[], string | string[]];
2866
+ } | {
2867
+ "2x2": [string | string[], string | string[], string | string[], string | string[]];
2868
+ } | {
2869
+ content: string | string[];
2870
+ }));
2871
+ style?: string | undefined;
2872
+ backgroundImage?: string | {
2873
+ source: {
2874
+ kind: "url";
2875
+ url: string;
2876
+ } | {
2877
+ kind: "base64";
2878
+ data: string;
2879
+ } | {
2880
+ kind: "path";
2881
+ path: string;
2882
+ };
2883
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
2884
+ opacity?: number | undefined;
2885
+ } | null | undefined;
2886
+ } | {
2887
+ type: "web";
2888
+ url: string;
2889
+ } | {
2890
+ type: "pdf";
2891
+ source: {
2892
+ kind: "url";
2893
+ url: string;
2894
+ } | {
2895
+ kind: "base64";
2896
+ data: string;
2897
+ } | {
2898
+ kind: "path";
2899
+ path: string;
2900
+ };
2901
+ } | {
2902
+ type: "svg";
2903
+ source: {
2904
+ kind: "url";
2905
+ url: string;
2906
+ } | {
2907
+ kind: "base64";
2908
+ data: string;
2909
+ } | {
2910
+ kind: "path";
2911
+ path: string;
2912
+ };
2913
+ } | {
2914
+ type: "textSlide";
2915
+ slide: {
2916
+ title: string;
2917
+ subtitle?: string | undefined;
2918
+ bullets?: string[] | undefined;
2919
+ };
2920
+ style?: string | undefined;
2921
+ backgroundImage?: string | {
2922
+ source: {
2923
+ kind: "url";
2924
+ url: string;
2925
+ } | {
2926
+ kind: "base64";
2927
+ data: string;
2928
+ } | {
2929
+ kind: "path";
2930
+ path: string;
2931
+ };
2932
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
2933
+ opacity?: number | undefined;
2934
+ } | null | undefined;
2935
+ } | {
2936
+ type: "chart";
2937
+ title: string;
2938
+ chartData: Record<string, any>;
2939
+ style?: string | undefined;
2940
+ backgroundImage?: string | {
2941
+ source: {
2942
+ kind: "url";
2943
+ url: string;
2944
+ } | {
2945
+ kind: "base64";
2946
+ data: string;
2947
+ } | {
2948
+ kind: "path";
2949
+ path: string;
2950
+ };
2951
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
2952
+ opacity?: number | undefined;
2953
+ } | null | undefined;
2954
+ } | {
2955
+ type: "mermaid";
2956
+ title: string;
2957
+ code: {
2958
+ kind: "url";
2959
+ url: string;
2960
+ } | {
2961
+ kind: "base64";
2962
+ data: string;
2963
+ } | {
2964
+ kind: "text";
2965
+ text: string;
2966
+ } | {
2967
+ kind: "path";
2968
+ path: string;
2969
+ };
2970
+ appendix?: string[] | undefined;
2971
+ style?: string | undefined;
2972
+ backgroundImage?: string | {
2973
+ source: {
2974
+ kind: "url";
2975
+ url: string;
2976
+ } | {
2977
+ kind: "base64";
2978
+ data: string;
2979
+ } | {
2980
+ kind: "path";
2981
+ path: string;
2982
+ };
2983
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
2984
+ opacity?: number | undefined;
2985
+ } | null | undefined;
2986
+ } | {
2987
+ type: "html_tailwind";
2988
+ html?: string | string[] | undefined;
2989
+ script?: string | string[] | undefined;
2990
+ elements?: unknown[] | undefined;
2991
+ animation?: true | {
2992
+ fps: number;
2993
+ movie?: boolean | undefined;
2994
+ } | undefined;
2995
+ } | {
2996
+ type: "beat";
2997
+ id?: string | undefined;
2998
+ } | {
2999
+ type: "voice_over";
3000
+ startAt?: number | undefined;
3001
+ } | {
3002
+ type: "vision";
3003
+ style: string;
3004
+ data: Record<string, any>;
3005
+ } | {
2564
3006
  type: "slide";
2565
3007
  slide: {
2566
3008
  title: string;
@@ -2568,26 +3010,36 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2568
3010
  subtitle?: string | undefined;
2569
3011
  author?: string | undefined;
2570
3012
  note?: string | undefined;
2571
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3013
+ chips?: string[] | undefined;
3014
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2572
3015
  style?: {
2573
3016
  bgColor?: string | undefined;
3017
+ bgGradient?: string | undefined;
2574
3018
  decorations?: boolean | undefined;
2575
3019
  bgOpacity?: number | undefined;
2576
3020
  footer?: string | undefined;
2577
3021
  } | undefined;
3022
+ eyebrow?: {
3023
+ label: string;
3024
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3025
+ } | undefined;
3026
+ density?: "default" | "compact" | undefined;
3027
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
3028
+ subtitleSize?: "default" | "big" | "lead" | undefined;
2578
3029
  } | {
2579
3030
  title: string;
2580
3031
  columns: {
2581
3032
  title: string;
2582
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3033
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2583
3034
  content?: ({
2584
3035
  type: "text";
2585
3036
  value: string;
2586
- align?: "left" | "center" | "right" | undefined;
3037
+ align?: "center" | "left" | "right" | undefined;
2587
3038
  bold?: boolean | undefined;
2588
3039
  dim?: boolean | undefined;
2589
3040
  fontSize?: number | undefined;
2590
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3041
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3042
+ size?: "big" | "sub" | "lead" | undefined;
2591
3043
  } | {
2592
3044
  type: "bullets";
2593
3045
  items: (string | {
@@ -2595,9 +3047,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2595
3047
  items?: (string | {
2596
3048
  text: string;
2597
3049
  })[] | undefined;
3050
+ icon?: "ok" | "no" | "warn" | undefined;
3051
+ size?: "big" | "sub" | "lead" | undefined;
2598
3052
  })[];
2599
3053
  ordered?: boolean | undefined;
2600
3054
  icon?: string | undefined;
3055
+ size?: "big" | "sub" | "lead" | undefined;
2601
3056
  } | {
2602
3057
  type: "code";
2603
3058
  code: string;
@@ -2606,27 +3061,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2606
3061
  type: "callout";
2607
3062
  text: string;
2608
3063
  label?: string | undefined;
2609
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
2610
- style?: "warning" | "info" | "quote" | undefined;
3064
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3065
+ style?: "info" | "warning" | "quote" | undefined;
3066
+ size?: "big" | "sub" | "lead" | undefined;
2611
3067
  } | {
2612
3068
  type: "metric";
2613
3069
  value: string;
2614
3070
  label: string;
2615
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3071
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2616
3072
  change?: string | undefined;
2617
3073
  } | {
2618
3074
  type: "divider";
2619
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3075
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2620
3076
  } | {
2621
3077
  type: "image";
2622
3078
  src: string;
2623
3079
  alt?: string | undefined;
2624
- fit?: "contain" | "cover" | undefined;
3080
+ fit?: "cover" | "contain" | undefined;
2625
3081
  } | {
2626
3082
  type: "imageRef";
2627
3083
  ref: string;
2628
3084
  alt?: string | undefined;
2629
- fit?: "contain" | "cover" | undefined;
3085
+ fit?: "cover" | "contain" | undefined;
2630
3086
  } | {
2631
3087
  type: "chart";
2632
3088
  chartData: Record<string, unknown>;
@@ -2639,7 +3095,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2639
3095
  type: "table";
2640
3096
  rows: (string | {
2641
3097
  text: string;
2642
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3098
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2643
3099
  bold?: boolean | undefined;
2644
3100
  badge?: boolean | undefined;
2645
3101
  })[][];
@@ -2647,18 +3103,23 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2647
3103
  headers?: string[] | undefined;
2648
3104
  rowHeaders?: boolean | undefined;
2649
3105
  striped?: boolean | undefined;
3106
+ } | {
3107
+ type: "tag";
3108
+ text: string;
3109
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2650
3110
  } | {
2651
3111
  type: "section";
2652
3112
  label: string;
2653
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3113
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2654
3114
  content?: ({
2655
3115
  type: "text";
2656
3116
  value: string;
2657
- align?: "left" | "center" | "right" | undefined;
3117
+ align?: "center" | "left" | "right" | undefined;
2658
3118
  bold?: boolean | undefined;
2659
3119
  dim?: boolean | undefined;
2660
3120
  fontSize?: number | undefined;
2661
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3121
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3122
+ size?: "big" | "sub" | "lead" | undefined;
2662
3123
  } | {
2663
3124
  type: "bullets";
2664
3125
  items: (string | {
@@ -2666,9 +3127,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2666
3127
  items?: (string | {
2667
3128
  text: string;
2668
3129
  })[] | undefined;
3130
+ icon?: "ok" | "no" | "warn" | undefined;
3131
+ size?: "big" | "sub" | "lead" | undefined;
2669
3132
  })[];
2670
3133
  ordered?: boolean | undefined;
2671
3134
  icon?: string | undefined;
3135
+ size?: "big" | "sub" | "lead" | undefined;
2672
3136
  } | {
2673
3137
  type: "code";
2674
3138
  code: string;
@@ -2677,27 +3141,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2677
3141
  type: "callout";
2678
3142
  text: string;
2679
3143
  label?: string | undefined;
2680
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
2681
- style?: "warning" | "info" | "quote" | undefined;
3144
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3145
+ style?: "info" | "warning" | "quote" | undefined;
3146
+ size?: "big" | "sub" | "lead" | undefined;
2682
3147
  } | {
2683
3148
  type: "metric";
2684
3149
  value: string;
2685
3150
  label: string;
2686
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3151
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2687
3152
  change?: string | undefined;
2688
3153
  } | {
2689
3154
  type: "divider";
2690
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3155
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2691
3156
  } | {
2692
3157
  type: "image";
2693
3158
  src: string;
2694
3159
  alt?: string | undefined;
2695
- fit?: "contain" | "cover" | undefined;
3160
+ fit?: "cover" | "contain" | undefined;
2696
3161
  } | {
2697
3162
  type: "imageRef";
2698
3163
  ref: string;
2699
3164
  alt?: string | undefined;
2700
- fit?: "contain" | "cover" | undefined;
3165
+ fit?: "cover" | "contain" | undefined;
2701
3166
  } | {
2702
3167
  type: "chart";
2703
3168
  chartData: Record<string, unknown>;
@@ -2710,7 +3175,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2710
3175
  type: "table";
2711
3176
  rows: (string | {
2712
3177
  text: string;
2713
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3178
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2714
3179
  bold?: boolean | undefined;
2715
3180
  badge?: boolean | undefined;
2716
3181
  })[][];
@@ -2718,6 +3183,10 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2718
3183
  headers?: string[] | undefined;
2719
3184
  rowHeaders?: boolean | undefined;
2720
3185
  striped?: boolean | undefined;
3186
+ } | {
3187
+ type: "tag";
3188
+ text: string;
3189
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2721
3190
  })[] | undefined;
2722
3191
  text?: string | undefined;
2723
3192
  sidebar?: boolean | undefined;
@@ -2725,6 +3194,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2725
3194
  footer?: string | undefined;
2726
3195
  label?: string | undefined;
2727
3196
  num?: number | undefined;
3197
+ numLabel?: string | undefined;
2728
3198
  icon?: string | undefined;
2729
3199
  }[];
2730
3200
  layout: "columns";
@@ -2734,31 +3204,40 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2734
3204
  callout?: {
2735
3205
  text: string;
2736
3206
  label?: string | undefined;
2737
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
2738
- align?: "left" | "center" | undefined;
3207
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3208
+ align?: "center" | "left" | undefined;
2739
3209
  leftBar?: boolean | undefined;
2740
3210
  } | undefined;
2741
3211
  bottomText?: string | undefined;
2742
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3212
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2743
3213
  style?: {
2744
3214
  bgColor?: string | undefined;
3215
+ bgGradient?: string | undefined;
2745
3216
  decorations?: boolean | undefined;
2746
3217
  bgOpacity?: number | undefined;
2747
3218
  footer?: string | undefined;
2748
3219
  } | undefined;
3220
+ eyebrow?: {
3221
+ label: string;
3222
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3223
+ } | undefined;
3224
+ density?: "default" | "compact" | undefined;
3225
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
3226
+ subtitleSize?: "default" | "big" | "lead" | undefined;
2749
3227
  } | {
2750
3228
  title: string;
2751
3229
  left: {
2752
3230
  title: string;
2753
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3231
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2754
3232
  content?: ({
2755
3233
  type: "text";
2756
3234
  value: string;
2757
- align?: "left" | "center" | "right" | undefined;
3235
+ align?: "center" | "left" | "right" | undefined;
2758
3236
  bold?: boolean | undefined;
2759
3237
  dim?: boolean | undefined;
2760
3238
  fontSize?: number | undefined;
2761
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3239
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3240
+ size?: "big" | "sub" | "lead" | undefined;
2762
3241
  } | {
2763
3242
  type: "bullets";
2764
3243
  items: (string | {
@@ -2766,9 +3245,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2766
3245
  items?: (string | {
2767
3246
  text: string;
2768
3247
  })[] | undefined;
3248
+ icon?: "ok" | "no" | "warn" | undefined;
3249
+ size?: "big" | "sub" | "lead" | undefined;
2769
3250
  })[];
2770
3251
  ordered?: boolean | undefined;
2771
3252
  icon?: string | undefined;
3253
+ size?: "big" | "sub" | "lead" | undefined;
2772
3254
  } | {
2773
3255
  type: "code";
2774
3256
  code: string;
@@ -2777,27 +3259,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2777
3259
  type: "callout";
2778
3260
  text: string;
2779
3261
  label?: string | undefined;
2780
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
2781
- style?: "warning" | "info" | "quote" | undefined;
3262
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3263
+ style?: "info" | "warning" | "quote" | undefined;
3264
+ size?: "big" | "sub" | "lead" | undefined;
2782
3265
  } | {
2783
3266
  type: "metric";
2784
3267
  value: string;
2785
3268
  label: string;
2786
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3269
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2787
3270
  change?: string | undefined;
2788
3271
  } | {
2789
3272
  type: "divider";
2790
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3273
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2791
3274
  } | {
2792
3275
  type: "image";
2793
3276
  src: string;
2794
3277
  alt?: string | undefined;
2795
- fit?: "contain" | "cover" | undefined;
3278
+ fit?: "cover" | "contain" | undefined;
2796
3279
  } | {
2797
3280
  type: "imageRef";
2798
3281
  ref: string;
2799
3282
  alt?: string | undefined;
2800
- fit?: "contain" | "cover" | undefined;
3283
+ fit?: "cover" | "contain" | undefined;
2801
3284
  } | {
2802
3285
  type: "chart";
2803
3286
  chartData: Record<string, unknown>;
@@ -2810,7 +3293,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2810
3293
  type: "table";
2811
3294
  rows: (string | {
2812
3295
  text: string;
2813
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3296
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2814
3297
  bold?: boolean | undefined;
2815
3298
  badge?: boolean | undefined;
2816
3299
  })[][];
@@ -2818,18 +3301,23 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2818
3301
  headers?: string[] | undefined;
2819
3302
  rowHeaders?: boolean | undefined;
2820
3303
  striped?: boolean | undefined;
3304
+ } | {
3305
+ type: "tag";
3306
+ text: string;
3307
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2821
3308
  } | {
2822
3309
  type: "section";
2823
3310
  label: string;
2824
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3311
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2825
3312
  content?: ({
2826
3313
  type: "text";
2827
3314
  value: string;
2828
- align?: "left" | "center" | "right" | undefined;
3315
+ align?: "center" | "left" | "right" | undefined;
2829
3316
  bold?: boolean | undefined;
2830
3317
  dim?: boolean | undefined;
2831
3318
  fontSize?: number | undefined;
2832
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3319
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3320
+ size?: "big" | "sub" | "lead" | undefined;
2833
3321
  } | {
2834
3322
  type: "bullets";
2835
3323
  items: (string | {
@@ -2837,9 +3325,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2837
3325
  items?: (string | {
2838
3326
  text: string;
2839
3327
  })[] | undefined;
3328
+ icon?: "ok" | "no" | "warn" | undefined;
3329
+ size?: "big" | "sub" | "lead" | undefined;
2840
3330
  })[];
2841
3331
  ordered?: boolean | undefined;
2842
3332
  icon?: string | undefined;
3333
+ size?: "big" | "sub" | "lead" | undefined;
2843
3334
  } | {
2844
3335
  type: "code";
2845
3336
  code: string;
@@ -2848,27 +3339,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2848
3339
  type: "callout";
2849
3340
  text: string;
2850
3341
  label?: string | undefined;
2851
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
2852
- style?: "warning" | "info" | "quote" | undefined;
3342
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3343
+ style?: "info" | "warning" | "quote" | undefined;
3344
+ size?: "big" | "sub" | "lead" | undefined;
2853
3345
  } | {
2854
3346
  type: "metric";
2855
3347
  value: string;
2856
3348
  label: string;
2857
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3349
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2858
3350
  change?: string | undefined;
2859
3351
  } | {
2860
3352
  type: "divider";
2861
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3353
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2862
3354
  } | {
2863
3355
  type: "image";
2864
3356
  src: string;
2865
3357
  alt?: string | undefined;
2866
- fit?: "contain" | "cover" | undefined;
3358
+ fit?: "cover" | "contain" | undefined;
2867
3359
  } | {
2868
3360
  type: "imageRef";
2869
3361
  ref: string;
2870
3362
  alt?: string | undefined;
2871
- fit?: "contain" | "cover" | undefined;
3363
+ fit?: "cover" | "contain" | undefined;
2872
3364
  } | {
2873
3365
  type: "chart";
2874
3366
  chartData: Record<string, unknown>;
@@ -2881,7 +3373,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2881
3373
  type: "table";
2882
3374
  rows: (string | {
2883
3375
  text: string;
2884
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3376
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2885
3377
  bold?: boolean | undefined;
2886
3378
  badge?: boolean | undefined;
2887
3379
  })[][];
@@ -2889,23 +3381,30 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2889
3381
  headers?: string[] | undefined;
2890
3382
  rowHeaders?: boolean | undefined;
2891
3383
  striped?: boolean | undefined;
3384
+ } | {
3385
+ type: "tag";
3386
+ text: string;
3387
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2892
3388
  })[] | undefined;
2893
3389
  text?: string | undefined;
2894
3390
  sidebar?: boolean | undefined;
2895
3391
  })[] | undefined;
2896
3392
  footer?: string | undefined;
3393
+ ratio?: number | undefined;
3394
+ cardless?: boolean | undefined;
2897
3395
  };
2898
3396
  right: {
2899
3397
  title: string;
2900
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3398
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2901
3399
  content?: ({
2902
3400
  type: "text";
2903
3401
  value: string;
2904
- align?: "left" | "center" | "right" | undefined;
3402
+ align?: "center" | "left" | "right" | undefined;
2905
3403
  bold?: boolean | undefined;
2906
3404
  dim?: boolean | undefined;
2907
3405
  fontSize?: number | undefined;
2908
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3406
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3407
+ size?: "big" | "sub" | "lead" | undefined;
2909
3408
  } | {
2910
3409
  type: "bullets";
2911
3410
  items: (string | {
@@ -2913,9 +3412,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2913
3412
  items?: (string | {
2914
3413
  text: string;
2915
3414
  })[] | undefined;
3415
+ icon?: "ok" | "no" | "warn" | undefined;
3416
+ size?: "big" | "sub" | "lead" | undefined;
2916
3417
  })[];
2917
3418
  ordered?: boolean | undefined;
2918
3419
  icon?: string | undefined;
3420
+ size?: "big" | "sub" | "lead" | undefined;
2919
3421
  } | {
2920
3422
  type: "code";
2921
3423
  code: string;
@@ -2924,27 +3426,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2924
3426
  type: "callout";
2925
3427
  text: string;
2926
3428
  label?: string | undefined;
2927
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
2928
- style?: "warning" | "info" | "quote" | undefined;
3429
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3430
+ style?: "info" | "warning" | "quote" | undefined;
3431
+ size?: "big" | "sub" | "lead" | undefined;
2929
3432
  } | {
2930
3433
  type: "metric";
2931
3434
  value: string;
2932
3435
  label: string;
2933
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3436
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2934
3437
  change?: string | undefined;
2935
3438
  } | {
2936
3439
  type: "divider";
2937
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3440
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2938
3441
  } | {
2939
3442
  type: "image";
2940
3443
  src: string;
2941
3444
  alt?: string | undefined;
2942
- fit?: "contain" | "cover" | undefined;
3445
+ fit?: "cover" | "contain" | undefined;
2943
3446
  } | {
2944
3447
  type: "imageRef";
2945
3448
  ref: string;
2946
3449
  alt?: string | undefined;
2947
- fit?: "contain" | "cover" | undefined;
3450
+ fit?: "cover" | "contain" | undefined;
2948
3451
  } | {
2949
3452
  type: "chart";
2950
3453
  chartData: Record<string, unknown>;
@@ -2957,7 +3460,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2957
3460
  type: "table";
2958
3461
  rows: (string | {
2959
3462
  text: string;
2960
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3463
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2961
3464
  bold?: boolean | undefined;
2962
3465
  badge?: boolean | undefined;
2963
3466
  })[][];
@@ -2965,18 +3468,23 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2965
3468
  headers?: string[] | undefined;
2966
3469
  rowHeaders?: boolean | undefined;
2967
3470
  striped?: boolean | undefined;
3471
+ } | {
3472
+ type: "tag";
3473
+ text: string;
3474
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2968
3475
  } | {
2969
3476
  type: "section";
2970
3477
  label: string;
2971
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3478
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
2972
3479
  content?: ({
2973
3480
  type: "text";
2974
3481
  value: string;
2975
- align?: "left" | "center" | "right" | undefined;
3482
+ align?: "center" | "left" | "right" | undefined;
2976
3483
  bold?: boolean | undefined;
2977
3484
  dim?: boolean | undefined;
2978
3485
  fontSize?: number | undefined;
2979
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3486
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3487
+ size?: "big" | "sub" | "lead" | undefined;
2980
3488
  } | {
2981
3489
  type: "bullets";
2982
3490
  items: (string | {
@@ -2984,9 +3492,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2984
3492
  items?: (string | {
2985
3493
  text: string;
2986
3494
  })[] | undefined;
3495
+ icon?: "ok" | "no" | "warn" | undefined;
3496
+ size?: "big" | "sub" | "lead" | undefined;
2987
3497
  })[];
2988
3498
  ordered?: boolean | undefined;
2989
3499
  icon?: string | undefined;
3500
+ size?: "big" | "sub" | "lead" | undefined;
2990
3501
  } | {
2991
3502
  type: "code";
2992
3503
  code: string;
@@ -2995,27 +3506,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
2995
3506
  type: "callout";
2996
3507
  text: string;
2997
3508
  label?: string | undefined;
2998
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
2999
- style?: "warning" | "info" | "quote" | undefined;
3509
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3510
+ style?: "info" | "warning" | "quote" | undefined;
3511
+ size?: "big" | "sub" | "lead" | undefined;
3000
3512
  } | {
3001
3513
  type: "metric";
3002
3514
  value: string;
3003
3515
  label: string;
3004
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3516
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3005
3517
  change?: string | undefined;
3006
3518
  } | {
3007
3519
  type: "divider";
3008
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3520
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3009
3521
  } | {
3010
3522
  type: "image";
3011
3523
  src: string;
3012
3524
  alt?: string | undefined;
3013
- fit?: "contain" | "cover" | undefined;
3525
+ fit?: "cover" | "contain" | undefined;
3014
3526
  } | {
3015
3527
  type: "imageRef";
3016
3528
  ref: string;
3017
3529
  alt?: string | undefined;
3018
- fit?: "contain" | "cover" | undefined;
3530
+ fit?: "cover" | "contain" | undefined;
3019
3531
  } | {
3020
3532
  type: "chart";
3021
3533
  chartData: Record<string, unknown>;
@@ -3028,7 +3540,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3028
3540
  type: "table";
3029
3541
  rows: (string | {
3030
3542
  text: string;
3031
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3543
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3032
3544
  bold?: boolean | undefined;
3033
3545
  badge?: boolean | undefined;
3034
3546
  })[][];
@@ -3036,11 +3548,17 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3036
3548
  headers?: string[] | undefined;
3037
3549
  rowHeaders?: boolean | undefined;
3038
3550
  striped?: boolean | undefined;
3551
+ } | {
3552
+ type: "tag";
3553
+ text: string;
3554
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3039
3555
  })[] | undefined;
3040
3556
  text?: string | undefined;
3041
3557
  sidebar?: boolean | undefined;
3042
3558
  })[] | undefined;
3043
3559
  footer?: string | undefined;
3560
+ ratio?: number | undefined;
3561
+ cardless?: boolean | undefined;
3044
3562
  };
3045
3563
  layout: "comparison";
3046
3564
  stepLabel?: string | undefined;
@@ -3048,33 +3566,42 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3048
3566
  callout?: {
3049
3567
  text: string;
3050
3568
  label?: string | undefined;
3051
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3052
- align?: "left" | "center" | undefined;
3569
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3570
+ align?: "center" | "left" | undefined;
3053
3571
  leftBar?: boolean | undefined;
3054
3572
  } | undefined;
3055
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3573
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3056
3574
  style?: {
3057
3575
  bgColor?: string | undefined;
3576
+ bgGradient?: string | undefined;
3058
3577
  decorations?: boolean | undefined;
3059
3578
  bgOpacity?: number | undefined;
3060
3579
  footer?: string | undefined;
3061
3580
  } | undefined;
3581
+ eyebrow?: {
3582
+ label: string;
3583
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3584
+ } | undefined;
3585
+ density?: "default" | "compact" | undefined;
3586
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
3587
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3062
3588
  } | {
3063
3589
  title: string;
3064
3590
  items: {
3065
3591
  title: string;
3066
3592
  description?: string | undefined;
3067
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3593
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3068
3594
  num?: number | undefined;
3069
3595
  icon?: string | undefined;
3070
3596
  content?: ({
3071
3597
  type: "text";
3072
3598
  value: string;
3073
- align?: "left" | "center" | "right" | undefined;
3599
+ align?: "center" | "left" | "right" | undefined;
3074
3600
  bold?: boolean | undefined;
3075
3601
  dim?: boolean | undefined;
3076
3602
  fontSize?: number | undefined;
3077
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3603
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3604
+ size?: "big" | "sub" | "lead" | undefined;
3078
3605
  } | {
3079
3606
  type: "bullets";
3080
3607
  items: (string | {
@@ -3082,9 +3609,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3082
3609
  items?: (string | {
3083
3610
  text: string;
3084
3611
  })[] | undefined;
3612
+ icon?: "ok" | "no" | "warn" | undefined;
3613
+ size?: "big" | "sub" | "lead" | undefined;
3085
3614
  })[];
3086
3615
  ordered?: boolean | undefined;
3087
3616
  icon?: string | undefined;
3617
+ size?: "big" | "sub" | "lead" | undefined;
3088
3618
  } | {
3089
3619
  type: "code";
3090
3620
  code: string;
@@ -3093,27 +3623,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3093
3623
  type: "callout";
3094
3624
  text: string;
3095
3625
  label?: string | undefined;
3096
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3097
- style?: "warning" | "info" | "quote" | undefined;
3626
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3627
+ style?: "info" | "warning" | "quote" | undefined;
3628
+ size?: "big" | "sub" | "lead" | undefined;
3098
3629
  } | {
3099
3630
  type: "metric";
3100
3631
  value: string;
3101
3632
  label: string;
3102
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3633
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3103
3634
  change?: string | undefined;
3104
3635
  } | {
3105
3636
  type: "divider";
3106
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3637
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3107
3638
  } | {
3108
3639
  type: "image";
3109
3640
  src: string;
3110
3641
  alt?: string | undefined;
3111
- fit?: "contain" | "cover" | undefined;
3642
+ fit?: "cover" | "contain" | undefined;
3112
3643
  } | {
3113
3644
  type: "imageRef";
3114
3645
  ref: string;
3115
3646
  alt?: string | undefined;
3116
- fit?: "contain" | "cover" | undefined;
3647
+ fit?: "cover" | "contain" | undefined;
3117
3648
  } | {
3118
3649
  type: "chart";
3119
3650
  chartData: Record<string, unknown>;
@@ -3126,7 +3657,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3126
3657
  type: "table";
3127
3658
  rows: (string | {
3128
3659
  text: string;
3129
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3660
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3130
3661
  bold?: boolean | undefined;
3131
3662
  badge?: boolean | undefined;
3132
3663
  })[][];
@@ -3134,18 +3665,23 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3134
3665
  headers?: string[] | undefined;
3135
3666
  rowHeaders?: boolean | undefined;
3136
3667
  striped?: boolean | undefined;
3668
+ } | {
3669
+ type: "tag";
3670
+ text: string;
3671
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3137
3672
  } | {
3138
3673
  type: "section";
3139
3674
  label: string;
3140
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3675
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3141
3676
  content?: ({
3142
3677
  type: "text";
3143
3678
  value: string;
3144
- align?: "left" | "center" | "right" | undefined;
3679
+ align?: "center" | "left" | "right" | undefined;
3145
3680
  bold?: boolean | undefined;
3146
3681
  dim?: boolean | undefined;
3147
3682
  fontSize?: number | undefined;
3148
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3683
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3684
+ size?: "big" | "sub" | "lead" | undefined;
3149
3685
  } | {
3150
3686
  type: "bullets";
3151
3687
  items: (string | {
@@ -3153,9 +3689,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3153
3689
  items?: (string | {
3154
3690
  text: string;
3155
3691
  })[] | undefined;
3692
+ icon?: "ok" | "no" | "warn" | undefined;
3693
+ size?: "big" | "sub" | "lead" | undefined;
3156
3694
  })[];
3157
3695
  ordered?: boolean | undefined;
3158
3696
  icon?: string | undefined;
3697
+ size?: "big" | "sub" | "lead" | undefined;
3159
3698
  } | {
3160
3699
  type: "code";
3161
3700
  code: string;
@@ -3164,27 +3703,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3164
3703
  type: "callout";
3165
3704
  text: string;
3166
3705
  label?: string | undefined;
3167
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3168
- style?: "warning" | "info" | "quote" | undefined;
3706
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3707
+ style?: "info" | "warning" | "quote" | undefined;
3708
+ size?: "big" | "sub" | "lead" | undefined;
3169
3709
  } | {
3170
3710
  type: "metric";
3171
3711
  value: string;
3172
3712
  label: string;
3173
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3713
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3174
3714
  change?: string | undefined;
3175
3715
  } | {
3176
3716
  type: "divider";
3177
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3717
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3178
3718
  } | {
3179
3719
  type: "image";
3180
3720
  src: string;
3181
3721
  alt?: string | undefined;
3182
- fit?: "contain" | "cover" | undefined;
3722
+ fit?: "cover" | "contain" | undefined;
3183
3723
  } | {
3184
3724
  type: "imageRef";
3185
3725
  ref: string;
3186
3726
  alt?: string | undefined;
3187
- fit?: "contain" | "cover" | undefined;
3727
+ fit?: "cover" | "contain" | undefined;
3188
3728
  } | {
3189
3729
  type: "chart";
3190
3730
  chartData: Record<string, unknown>;
@@ -3197,7 +3737,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3197
3737
  type: "table";
3198
3738
  rows: (string | {
3199
3739
  text: string;
3200
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3740
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3201
3741
  bold?: boolean | undefined;
3202
3742
  badge?: boolean | undefined;
3203
3743
  })[][];
@@ -3205,41 +3745,63 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3205
3745
  headers?: string[] | undefined;
3206
3746
  rowHeaders?: boolean | undefined;
3207
3747
  striped?: boolean | undefined;
3748
+ } | {
3749
+ type: "tag";
3750
+ text: string;
3751
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3208
3752
  })[] | undefined;
3209
3753
  text?: string | undefined;
3210
3754
  sidebar?: boolean | undefined;
3211
3755
  })[] | undefined;
3756
+ span?: number | undefined;
3212
3757
  }[];
3213
3758
  layout: "grid";
3214
3759
  subtitle?: string | undefined;
3215
3760
  gridColumns?: number | undefined;
3216
3761
  footer?: string | undefined;
3217
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3762
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3218
3763
  style?: {
3219
3764
  bgColor?: string | undefined;
3765
+ bgGradient?: string | undefined;
3220
3766
  decorations?: boolean | undefined;
3221
3767
  bgOpacity?: number | undefined;
3222
3768
  footer?: string | undefined;
3223
3769
  } | undefined;
3770
+ eyebrow?: {
3771
+ label: string;
3772
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3773
+ } | undefined;
3774
+ density?: "default" | "compact" | undefined;
3775
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
3776
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3224
3777
  } | {
3225
3778
  quote: string;
3226
3779
  layout: "bigQuote";
3227
3780
  author?: string | undefined;
3228
3781
  role?: string | undefined;
3229
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3782
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3230
3783
  style?: {
3231
3784
  bgColor?: string | undefined;
3785
+ bgGradient?: string | undefined;
3232
3786
  decorations?: boolean | undefined;
3233
3787
  bgOpacity?: number | undefined;
3234
3788
  footer?: string | undefined;
3235
3789
  } | undefined;
3790
+ eyebrow?: {
3791
+ label: string;
3792
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3793
+ } | undefined;
3794
+ density?: "default" | "compact" | undefined;
3795
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
3796
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3236
3797
  } | {
3237
3798
  title: string;
3238
3799
  stats: {
3239
3800
  value: string;
3240
3801
  label: string;
3241
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3802
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3242
3803
  change?: string | undefined;
3804
+ numLabel?: string | undefined;
3243
3805
  }[];
3244
3806
  layout: "stats";
3245
3807
  stepLabel?: string | undefined;
@@ -3247,36 +3809,53 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3247
3809
  callout?: {
3248
3810
  text: string;
3249
3811
  label?: string | undefined;
3250
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3251
- align?: "left" | "center" | undefined;
3812
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3813
+ align?: "center" | "left" | undefined;
3252
3814
  leftBar?: boolean | undefined;
3253
3815
  } | undefined;
3254
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3816
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3255
3817
  style?: {
3256
3818
  bgColor?: string | undefined;
3819
+ bgGradient?: string | undefined;
3257
3820
  decorations?: boolean | undefined;
3258
3821
  bgOpacity?: number | undefined;
3259
3822
  footer?: string | undefined;
3260
3823
  } | undefined;
3824
+ eyebrow?: {
3825
+ label: string;
3826
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3827
+ } | undefined;
3828
+ density?: "default" | "compact" | undefined;
3829
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
3830
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3261
3831
  } | {
3262
3832
  title: string;
3263
3833
  items: {
3264
3834
  date: string;
3265
3835
  title: string;
3266
3836
  description?: string | undefined;
3267
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3837
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3268
3838
  done?: boolean | undefined;
3839
+ hot?: boolean | undefined;
3269
3840
  }[];
3270
3841
  layout: "timeline";
3271
3842
  stepLabel?: string | undefined;
3272
3843
  subtitle?: string | undefined;
3273
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3844
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3274
3845
  style?: {
3275
3846
  bgColor?: string | undefined;
3847
+ bgGradient?: string | undefined;
3276
3848
  decorations?: boolean | undefined;
3277
3849
  bgOpacity?: number | undefined;
3278
3850
  footer?: string | undefined;
3279
3851
  } | undefined;
3852
+ eyebrow?: {
3853
+ label: string;
3854
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3855
+ } | undefined;
3856
+ density?: "default" | "compact" | undefined;
3857
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
3858
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3280
3859
  } | {
3281
3860
  layout: "split";
3282
3861
  left?: {
@@ -3284,15 +3863,16 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3284
3863
  subtitle?: string | undefined;
3285
3864
  label?: string | undefined;
3286
3865
  labelBadge?: boolean | undefined;
3287
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3866
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3288
3867
  content?: ({
3289
3868
  type: "text";
3290
3869
  value: string;
3291
- align?: "left" | "center" | "right" | undefined;
3870
+ align?: "center" | "left" | "right" | undefined;
3292
3871
  bold?: boolean | undefined;
3293
3872
  dim?: boolean | undefined;
3294
3873
  fontSize?: number | undefined;
3295
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3874
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3875
+ size?: "big" | "sub" | "lead" | undefined;
3296
3876
  } | {
3297
3877
  type: "bullets";
3298
3878
  items: (string | {
@@ -3300,9 +3880,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3300
3880
  items?: (string | {
3301
3881
  text: string;
3302
3882
  })[] | undefined;
3883
+ icon?: "ok" | "no" | "warn" | undefined;
3884
+ size?: "big" | "sub" | "lead" | undefined;
3303
3885
  })[];
3304
3886
  ordered?: boolean | undefined;
3305
3887
  icon?: string | undefined;
3888
+ size?: "big" | "sub" | "lead" | undefined;
3306
3889
  } | {
3307
3890
  type: "code";
3308
3891
  code: string;
@@ -3311,27 +3894,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3311
3894
  type: "callout";
3312
3895
  text: string;
3313
3896
  label?: string | undefined;
3314
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3315
- style?: "warning" | "info" | "quote" | undefined;
3897
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3898
+ style?: "info" | "warning" | "quote" | undefined;
3899
+ size?: "big" | "sub" | "lead" | undefined;
3316
3900
  } | {
3317
3901
  type: "metric";
3318
3902
  value: string;
3319
3903
  label: string;
3320
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3904
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3321
3905
  change?: string | undefined;
3322
3906
  } | {
3323
3907
  type: "divider";
3324
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3908
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3325
3909
  } | {
3326
3910
  type: "image";
3327
3911
  src: string;
3328
3912
  alt?: string | undefined;
3329
- fit?: "contain" | "cover" | undefined;
3913
+ fit?: "cover" | "contain" | undefined;
3330
3914
  } | {
3331
3915
  type: "imageRef";
3332
3916
  ref: string;
3333
3917
  alt?: string | undefined;
3334
- fit?: "contain" | "cover" | undefined;
3918
+ fit?: "cover" | "contain" | undefined;
3335
3919
  } | {
3336
3920
  type: "chart";
3337
3921
  chartData: Record<string, unknown>;
@@ -3344,7 +3928,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3344
3928
  type: "table";
3345
3929
  rows: (string | {
3346
3930
  text: string;
3347
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3931
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3348
3932
  bold?: boolean | undefined;
3349
3933
  badge?: boolean | undefined;
3350
3934
  })[][];
@@ -3352,18 +3936,23 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3352
3936
  headers?: string[] | undefined;
3353
3937
  rowHeaders?: boolean | undefined;
3354
3938
  striped?: boolean | undefined;
3939
+ } | {
3940
+ type: "tag";
3941
+ text: string;
3942
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3355
3943
  } | {
3356
3944
  type: "section";
3357
3945
  label: string;
3358
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3946
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3359
3947
  content?: ({
3360
3948
  type: "text";
3361
3949
  value: string;
3362
- align?: "left" | "center" | "right" | undefined;
3950
+ align?: "center" | "left" | "right" | undefined;
3363
3951
  bold?: boolean | undefined;
3364
3952
  dim?: boolean | undefined;
3365
3953
  fontSize?: number | undefined;
3366
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3954
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3955
+ size?: "big" | "sub" | "lead" | undefined;
3367
3956
  } | {
3368
3957
  type: "bullets";
3369
3958
  items: (string | {
@@ -3371,9 +3960,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3371
3960
  items?: (string | {
3372
3961
  text: string;
3373
3962
  })[] | undefined;
3963
+ icon?: "ok" | "no" | "warn" | undefined;
3964
+ size?: "big" | "sub" | "lead" | undefined;
3374
3965
  })[];
3375
3966
  ordered?: boolean | undefined;
3376
3967
  icon?: string | undefined;
3968
+ size?: "big" | "sub" | "lead" | undefined;
3377
3969
  } | {
3378
3970
  type: "code";
3379
3971
  code: string;
@@ -3382,27 +3974,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3382
3974
  type: "callout";
3383
3975
  text: string;
3384
3976
  label?: string | undefined;
3385
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3386
- style?: "warning" | "info" | "quote" | undefined;
3977
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3978
+ style?: "info" | "warning" | "quote" | undefined;
3979
+ size?: "big" | "sub" | "lead" | undefined;
3387
3980
  } | {
3388
3981
  type: "metric";
3389
3982
  value: string;
3390
3983
  label: string;
3391
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3984
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3392
3985
  change?: string | undefined;
3393
3986
  } | {
3394
3987
  type: "divider";
3395
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3988
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3396
3989
  } | {
3397
3990
  type: "image";
3398
3991
  src: string;
3399
3992
  alt?: string | undefined;
3400
- fit?: "contain" | "cover" | undefined;
3993
+ fit?: "cover" | "contain" | undefined;
3401
3994
  } | {
3402
3995
  type: "imageRef";
3403
3996
  ref: string;
3404
3997
  alt?: string | undefined;
3405
- fit?: "contain" | "cover" | undefined;
3998
+ fit?: "cover" | "contain" | undefined;
3406
3999
  } | {
3407
4000
  type: "chart";
3408
4001
  chartData: Record<string, unknown>;
@@ -3415,7 +4008,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3415
4008
  type: "table";
3416
4009
  rows: (string | {
3417
4010
  text: string;
3418
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4011
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3419
4012
  bold?: boolean | undefined;
3420
4013
  badge?: boolean | undefined;
3421
4014
  })[][];
@@ -3423,6 +4016,10 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3423
4016
  headers?: string[] | undefined;
3424
4017
  rowHeaders?: boolean | undefined;
3425
4018
  striped?: boolean | undefined;
4019
+ } | {
4020
+ type: "tag";
4021
+ text: string;
4022
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3426
4023
  })[] | undefined;
3427
4024
  text?: string | undefined;
3428
4025
  sidebar?: boolean | undefined;
@@ -3436,15 +4033,16 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3436
4033
  subtitle?: string | undefined;
3437
4034
  label?: string | undefined;
3438
4035
  labelBadge?: boolean | undefined;
3439
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4036
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3440
4037
  content?: ({
3441
4038
  type: "text";
3442
4039
  value: string;
3443
- align?: "left" | "center" | "right" | undefined;
4040
+ align?: "center" | "left" | "right" | undefined;
3444
4041
  bold?: boolean | undefined;
3445
4042
  dim?: boolean | undefined;
3446
4043
  fontSize?: number | undefined;
3447
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4044
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4045
+ size?: "big" | "sub" | "lead" | undefined;
3448
4046
  } | {
3449
4047
  type: "bullets";
3450
4048
  items: (string | {
@@ -3452,9 +4050,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3452
4050
  items?: (string | {
3453
4051
  text: string;
3454
4052
  })[] | undefined;
4053
+ icon?: "ok" | "no" | "warn" | undefined;
4054
+ size?: "big" | "sub" | "lead" | undefined;
3455
4055
  })[];
3456
4056
  ordered?: boolean | undefined;
3457
4057
  icon?: string | undefined;
4058
+ size?: "big" | "sub" | "lead" | undefined;
3458
4059
  } | {
3459
4060
  type: "code";
3460
4061
  code: string;
@@ -3463,27 +4064,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3463
4064
  type: "callout";
3464
4065
  text: string;
3465
4066
  label?: string | undefined;
3466
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3467
- style?: "warning" | "info" | "quote" | undefined;
4067
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4068
+ style?: "info" | "warning" | "quote" | undefined;
4069
+ size?: "big" | "sub" | "lead" | undefined;
3468
4070
  } | {
3469
4071
  type: "metric";
3470
4072
  value: string;
3471
4073
  label: string;
3472
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4074
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3473
4075
  change?: string | undefined;
3474
4076
  } | {
3475
4077
  type: "divider";
3476
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4078
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3477
4079
  } | {
3478
4080
  type: "image";
3479
4081
  src: string;
3480
4082
  alt?: string | undefined;
3481
- fit?: "contain" | "cover" | undefined;
4083
+ fit?: "cover" | "contain" | undefined;
3482
4084
  } | {
3483
4085
  type: "imageRef";
3484
4086
  ref: string;
3485
4087
  alt?: string | undefined;
3486
- fit?: "contain" | "cover" | undefined;
4088
+ fit?: "cover" | "contain" | undefined;
3487
4089
  } | {
3488
4090
  type: "chart";
3489
4091
  chartData: Record<string, unknown>;
@@ -3496,7 +4098,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3496
4098
  type: "table";
3497
4099
  rows: (string | {
3498
4100
  text: string;
3499
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4101
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3500
4102
  bold?: boolean | undefined;
3501
4103
  badge?: boolean | undefined;
3502
4104
  })[][];
@@ -3504,18 +4106,23 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3504
4106
  headers?: string[] | undefined;
3505
4107
  rowHeaders?: boolean | undefined;
3506
4108
  striped?: boolean | undefined;
4109
+ } | {
4110
+ type: "tag";
4111
+ text: string;
4112
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3507
4113
  } | {
3508
4114
  type: "section";
3509
4115
  label: string;
3510
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4116
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3511
4117
  content?: ({
3512
4118
  type: "text";
3513
4119
  value: string;
3514
- align?: "left" | "center" | "right" | undefined;
4120
+ align?: "center" | "left" | "right" | undefined;
3515
4121
  bold?: boolean | undefined;
3516
4122
  dim?: boolean | undefined;
3517
4123
  fontSize?: number | undefined;
3518
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4124
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4125
+ size?: "big" | "sub" | "lead" | undefined;
3519
4126
  } | {
3520
4127
  type: "bullets";
3521
4128
  items: (string | {
@@ -3523,9 +4130,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3523
4130
  items?: (string | {
3524
4131
  text: string;
3525
4132
  })[] | undefined;
4133
+ icon?: "ok" | "no" | "warn" | undefined;
4134
+ size?: "big" | "sub" | "lead" | undefined;
3526
4135
  })[];
3527
4136
  ordered?: boolean | undefined;
3528
4137
  icon?: string | undefined;
4138
+ size?: "big" | "sub" | "lead" | undefined;
3529
4139
  } | {
3530
4140
  type: "code";
3531
4141
  code: string;
@@ -3534,27 +4144,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3534
4144
  type: "callout";
3535
4145
  text: string;
3536
4146
  label?: string | undefined;
3537
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3538
- style?: "warning" | "info" | "quote" | undefined;
4147
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4148
+ style?: "info" | "warning" | "quote" | undefined;
4149
+ size?: "big" | "sub" | "lead" | undefined;
3539
4150
  } | {
3540
4151
  type: "metric";
3541
4152
  value: string;
3542
4153
  label: string;
3543
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4154
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3544
4155
  change?: string | undefined;
3545
4156
  } | {
3546
4157
  type: "divider";
3547
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4158
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3548
4159
  } | {
3549
4160
  type: "image";
3550
4161
  src: string;
3551
4162
  alt?: string | undefined;
3552
- fit?: "contain" | "cover" | undefined;
4163
+ fit?: "cover" | "contain" | undefined;
3553
4164
  } | {
3554
4165
  type: "imageRef";
3555
4166
  ref: string;
3556
4167
  alt?: string | undefined;
3557
- fit?: "contain" | "cover" | undefined;
4168
+ fit?: "cover" | "contain" | undefined;
3558
4169
  } | {
3559
4170
  type: "chart";
3560
4171
  chartData: Record<string, unknown>;
@@ -3567,7 +4178,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3567
4178
  type: "table";
3568
4179
  rows: (string | {
3569
4180
  text: string;
3570
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4181
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3571
4182
  bold?: boolean | undefined;
3572
4183
  badge?: boolean | undefined;
3573
4184
  })[][];
@@ -3575,6 +4186,10 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3575
4186
  headers?: string[] | undefined;
3576
4187
  rowHeaders?: boolean | undefined;
3577
4188
  striped?: boolean | undefined;
4189
+ } | {
4190
+ type: "tag";
4191
+ text: string;
4192
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3578
4193
  })[] | undefined;
3579
4194
  text?: string | undefined;
3580
4195
  sidebar?: boolean | undefined;
@@ -3583,13 +4198,21 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3583
4198
  ratio?: number | undefined;
3584
4199
  valign?: "center" | "top" | "bottom" | undefined;
3585
4200
  } | undefined;
3586
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4201
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3587
4202
  style?: {
3588
4203
  bgColor?: string | undefined;
4204
+ bgGradient?: string | undefined;
3589
4205
  decorations?: boolean | undefined;
3590
4206
  bgOpacity?: number | undefined;
3591
4207
  footer?: string | undefined;
3592
4208
  } | undefined;
4209
+ eyebrow?: {
4210
+ label: string;
4211
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4212
+ } | undefined;
4213
+ density?: "default" | "compact" | undefined;
4214
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
4215
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3593
4216
  } | {
3594
4217
  title: string;
3595
4218
  cells: {
@@ -3598,11 +4221,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3598
4221
  content?: ({
3599
4222
  type: "text";
3600
4223
  value: string;
3601
- align?: "left" | "center" | "right" | undefined;
4224
+ align?: "center" | "left" | "right" | undefined;
3602
4225
  bold?: boolean | undefined;
3603
4226
  dim?: boolean | undefined;
3604
4227
  fontSize?: number | undefined;
3605
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4228
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4229
+ size?: "big" | "sub" | "lead" | undefined;
3606
4230
  } | {
3607
4231
  type: "bullets";
3608
4232
  items: (string | {
@@ -3610,9 +4234,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3610
4234
  items?: (string | {
3611
4235
  text: string;
3612
4236
  })[] | undefined;
4237
+ icon?: "ok" | "no" | "warn" | undefined;
4238
+ size?: "big" | "sub" | "lead" | undefined;
3613
4239
  })[];
3614
4240
  ordered?: boolean | undefined;
3615
4241
  icon?: string | undefined;
4242
+ size?: "big" | "sub" | "lead" | undefined;
3616
4243
  } | {
3617
4244
  type: "code";
3618
4245
  code: string;
@@ -3621,27 +4248,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3621
4248
  type: "callout";
3622
4249
  text: string;
3623
4250
  label?: string | undefined;
3624
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3625
- style?: "warning" | "info" | "quote" | undefined;
4251
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4252
+ style?: "info" | "warning" | "quote" | undefined;
4253
+ size?: "big" | "sub" | "lead" | undefined;
3626
4254
  } | {
3627
4255
  type: "metric";
3628
4256
  value: string;
3629
4257
  label: string;
3630
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4258
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3631
4259
  change?: string | undefined;
3632
4260
  } | {
3633
4261
  type: "divider";
3634
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4262
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3635
4263
  } | {
3636
4264
  type: "image";
3637
4265
  src: string;
3638
4266
  alt?: string | undefined;
3639
- fit?: "contain" | "cover" | undefined;
4267
+ fit?: "cover" | "contain" | undefined;
3640
4268
  } | {
3641
4269
  type: "imageRef";
3642
4270
  ref: string;
3643
4271
  alt?: string | undefined;
3644
- fit?: "contain" | "cover" | undefined;
4272
+ fit?: "cover" | "contain" | undefined;
3645
4273
  } | {
3646
4274
  type: "chart";
3647
4275
  chartData: Record<string, unknown>;
@@ -3654,7 +4282,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3654
4282
  type: "table";
3655
4283
  rows: (string | {
3656
4284
  text: string;
3657
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4285
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3658
4286
  bold?: boolean | undefined;
3659
4287
  badge?: boolean | undefined;
3660
4288
  })[][];
@@ -3662,18 +4290,23 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3662
4290
  headers?: string[] | undefined;
3663
4291
  rowHeaders?: boolean | undefined;
3664
4292
  striped?: boolean | undefined;
4293
+ } | {
4294
+ type: "tag";
4295
+ text: string;
4296
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3665
4297
  } | {
3666
4298
  type: "section";
3667
4299
  label: string;
3668
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4300
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3669
4301
  content?: ({
3670
4302
  type: "text";
3671
4303
  value: string;
3672
- align?: "left" | "center" | "right" | undefined;
4304
+ align?: "center" | "left" | "right" | undefined;
3673
4305
  bold?: boolean | undefined;
3674
4306
  dim?: boolean | undefined;
3675
4307
  fontSize?: number | undefined;
3676
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4308
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4309
+ size?: "big" | "sub" | "lead" | undefined;
3677
4310
  } | {
3678
4311
  type: "bullets";
3679
4312
  items: (string | {
@@ -3681,9 +4314,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3681
4314
  items?: (string | {
3682
4315
  text: string;
3683
4316
  })[] | undefined;
4317
+ icon?: "ok" | "no" | "warn" | undefined;
4318
+ size?: "big" | "sub" | "lead" | undefined;
3684
4319
  })[];
3685
4320
  ordered?: boolean | undefined;
3686
4321
  icon?: string | undefined;
4322
+ size?: "big" | "sub" | "lead" | undefined;
3687
4323
  } | {
3688
4324
  type: "code";
3689
4325
  code: string;
@@ -3692,27 +4328,28 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3692
4328
  type: "callout";
3693
4329
  text: string;
3694
4330
  label?: string | undefined;
3695
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3696
- style?: "warning" | "info" | "quote" | undefined;
4331
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4332
+ style?: "info" | "warning" | "quote" | undefined;
4333
+ size?: "big" | "sub" | "lead" | undefined;
3697
4334
  } | {
3698
4335
  type: "metric";
3699
4336
  value: string;
3700
4337
  label: string;
3701
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4338
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3702
4339
  change?: string | undefined;
3703
4340
  } | {
3704
4341
  type: "divider";
3705
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4342
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3706
4343
  } | {
3707
4344
  type: "image";
3708
4345
  src: string;
3709
4346
  alt?: string | undefined;
3710
- fit?: "contain" | "cover" | undefined;
4347
+ fit?: "cover" | "contain" | undefined;
3711
4348
  } | {
3712
4349
  type: "imageRef";
3713
4350
  ref: string;
3714
4351
  alt?: string | undefined;
3715
- fit?: "contain" | "cover" | undefined;
4352
+ fit?: "cover" | "contain" | undefined;
3716
4353
  } | {
3717
4354
  type: "chart";
3718
4355
  chartData: Record<string, unknown>;
@@ -3725,7 +4362,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3725
4362
  type: "table";
3726
4363
  rows: (string | {
3727
4364
  text: string;
3728
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4365
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3729
4366
  bold?: boolean | undefined;
3730
4367
  badge?: boolean | undefined;
3731
4368
  })[][];
@@ -3733,11 +4370,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3733
4370
  headers?: string[] | undefined;
3734
4371
  rowHeaders?: boolean | undefined;
3735
4372
  striped?: boolean | undefined;
4373
+ } | {
4374
+ type: "tag";
4375
+ text: string;
4376
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3736
4377
  })[] | undefined;
3737
4378
  text?: string | undefined;
3738
4379
  sidebar?: boolean | undefined;
3739
4380
  })[] | undefined;
3740
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4381
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3741
4382
  }[];
3742
4383
  layout: "matrix";
3743
4384
  stepLabel?: string | undefined;
@@ -3754,19 +4395,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3754
4395
  high?: string | undefined;
3755
4396
  label?: string | undefined;
3756
4397
  } | undefined;
3757
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4398
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3758
4399
  style?: {
3759
4400
  bgColor?: string | undefined;
4401
+ bgGradient?: string | undefined;
3760
4402
  decorations?: boolean | undefined;
3761
4403
  bgOpacity?: number | undefined;
3762
4404
  footer?: string | undefined;
3763
4405
  } | undefined;
4406
+ eyebrow?: {
4407
+ label: string;
4408
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4409
+ } | undefined;
4410
+ density?: "default" | "compact" | undefined;
4411
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
4412
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3764
4413
  } | {
3765
4414
  title: string;
3766
4415
  headers: string[];
3767
4416
  rows: (string | {
3768
4417
  text: string;
3769
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4418
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3770
4419
  bold?: boolean | undefined;
3771
4420
  badge?: boolean | undefined;
3772
4421
  })[][];
@@ -3778,24 +4427,32 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3778
4427
  callout?: {
3779
4428
  text: string;
3780
4429
  label?: string | undefined;
3781
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3782
- align?: "left" | "center" | undefined;
4430
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4431
+ align?: "center" | "left" | undefined;
3783
4432
  leftBar?: boolean | undefined;
3784
4433
  } | undefined;
3785
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4434
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3786
4435
  style?: {
3787
4436
  bgColor?: string | undefined;
4437
+ bgGradient?: string | undefined;
3788
4438
  decorations?: boolean | undefined;
3789
4439
  bgOpacity?: number | undefined;
3790
4440
  footer?: string | undefined;
3791
4441
  } | undefined;
4442
+ eyebrow?: {
4443
+ label: string;
4444
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4445
+ } | undefined;
4446
+ density?: "default" | "compact" | undefined;
4447
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
4448
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3792
4449
  } | {
3793
4450
  title: string;
3794
4451
  stages: {
3795
4452
  label: string;
3796
4453
  value?: string | undefined;
3797
4454
  description?: string | undefined;
3798
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4455
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3799
4456
  }[];
3800
4457
  layout: "funnel";
3801
4458
  stepLabel?: string | undefined;
@@ -3803,24 +4460,32 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3803
4460
  callout?: {
3804
4461
  text: string;
3805
4462
  label?: string | undefined;
3806
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3807
- align?: "left" | "center" | undefined;
4463
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4464
+ align?: "center" | "left" | undefined;
3808
4465
  leftBar?: boolean | undefined;
3809
4466
  } | undefined;
3810
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4467
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3811
4468
  style?: {
3812
4469
  bgColor?: string | undefined;
4470
+ bgGradient?: string | undefined;
3813
4471
  decorations?: boolean | undefined;
3814
4472
  bgOpacity?: number | undefined;
3815
4473
  footer?: string | undefined;
3816
4474
  } | undefined;
4475
+ eyebrow?: {
4476
+ label: string;
4477
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4478
+ } | undefined;
4479
+ density?: "default" | "compact" | undefined;
4480
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
4481
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3817
4482
  } | {
3818
4483
  title: string;
3819
4484
  items: {
3820
4485
  label: string;
3821
4486
  value: number;
3822
4487
  isTotal?: boolean | undefined;
3823
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4488
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3824
4489
  }[];
3825
4490
  layout: "waterfall";
3826
4491
  stepLabel?: string | undefined;
@@ -3829,17 +4494,58 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3829
4494
  callout?: {
3830
4495
  text: string;
3831
4496
  label?: string | undefined;
3832
- color?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
3833
- align?: "left" | "center" | undefined;
4497
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4498
+ align?: "center" | "left" | undefined;
4499
+ leftBar?: boolean | undefined;
4500
+ } | undefined;
4501
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4502
+ style?: {
4503
+ bgColor?: string | undefined;
4504
+ bgGradient?: string | undefined;
4505
+ decorations?: boolean | undefined;
4506
+ bgOpacity?: number | undefined;
4507
+ footer?: string | undefined;
4508
+ } | undefined;
4509
+ eyebrow?: {
4510
+ label: string;
4511
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4512
+ } | undefined;
4513
+ density?: "default" | "compact" | undefined;
4514
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
4515
+ subtitleSize?: "default" | "big" | "lead" | undefined;
4516
+ } | {
4517
+ title: string;
4518
+ items: {
4519
+ title: string;
4520
+ description?: string | undefined;
4521
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4522
+ }[];
4523
+ layout: "manifesto";
4524
+ stepLabel?: string | undefined;
4525
+ subtitle?: string | undefined;
4526
+ columns?: number | undefined;
4527
+ callout?: {
4528
+ text: string;
4529
+ label?: string | undefined;
4530
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4531
+ align?: "center" | "left" | undefined;
3834
4532
  leftBar?: boolean | undefined;
3835
4533
  } | undefined;
3836
- accentColor?: "success" | "primary" | "accent" | "warning" | "danger" | "info" | "highlight" | undefined;
4534
+ accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
3837
4535
  style?: {
3838
4536
  bgColor?: string | undefined;
4537
+ bgGradient?: string | undefined;
3839
4538
  decorations?: boolean | undefined;
3840
4539
  bgOpacity?: number | undefined;
3841
4540
  footer?: string | undefined;
3842
4541
  } | undefined;
4542
+ eyebrow?: {
4543
+ label: string;
4544
+ color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
4545
+ } | undefined;
4546
+ density?: "default" | "compact" | undefined;
4547
+ titleSize?: "default" | "small" | "large" | "hero" | undefined;
4548
+ subtitleSize?: "default" | "big" | "lead" | undefined;
3843
4549
  };
3844
4550
  theme?: {
3845
4551
  colors: {
@@ -3861,7 +4567,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3861
4567
  title: string;
3862
4568
  body: string;
3863
4569
  mono: string;
4570
+ accent?: string | undefined;
3864
4571
  };
4572
+ bgGradient?: string | undefined;
4573
+ titleGradient?: string | undefined;
4574
+ cardStyle?: "glass" | "solid" | undefined;
3865
4575
  } | undefined;
3866
4576
  reference?: string | undefined;
3867
4577
  branding?: {
@@ -3890,181 +4600,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
3890
4600
  kind: "path";
3891
4601
  path: string;
3892
4602
  };
3893
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
4603
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
3894
4604
  opacity?: number | undefined;
3895
4605
  bgOpacity?: number | undefined;
3896
4606
  } | undefined;
3897
4607
  } | null | undefined;
3898
- } | {
3899
- type: "image";
3900
- source: {
3901
- kind: "url";
3902
- url: string;
3903
- } | {
3904
- kind: "base64";
3905
- data: string;
3906
- } | {
3907
- kind: "path";
3908
- path: string;
3909
- };
3910
- } | {
3911
- type: "movie";
3912
- source: {
3913
- kind: "url";
3914
- url: string;
3915
- } | {
3916
- kind: "base64";
3917
- data: string;
3918
- } | {
3919
- kind: "path";
3920
- path: string;
3921
- };
3922
- } | {
3923
- type: "markdown";
3924
- markdown: string | string[] | ({
3925
- header?: string | string[] | undefined;
3926
- "sidebar-left"?: string | string[] | undefined;
3927
- } & ({
3928
- "row-2": [string | string[], string | string[]];
3929
- } | {
3930
- "2x2": [string | string[], string | string[], string | string[], string | string[]];
3931
- } | {
3932
- content: string | string[];
3933
- }));
3934
- style?: string | undefined;
3935
- backgroundImage?: string | {
3936
- source: {
3937
- kind: "url";
3938
- url: string;
3939
- } | {
3940
- kind: "base64";
3941
- data: string;
3942
- } | {
3943
- kind: "path";
3944
- path: string;
3945
- };
3946
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
3947
- opacity?: number | undefined;
3948
- } | null | undefined;
3949
- } | {
3950
- type: "web";
3951
- url: string;
3952
- } | {
3953
- type: "pdf";
3954
- source: {
3955
- kind: "url";
3956
- url: string;
3957
- } | {
3958
- kind: "base64";
3959
- data: string;
3960
- } | {
3961
- kind: "path";
3962
- path: string;
3963
- };
3964
- } | {
3965
- type: "svg";
3966
- source: {
3967
- kind: "url";
3968
- url: string;
3969
- } | {
3970
- kind: "base64";
3971
- data: string;
3972
- } | {
3973
- kind: "path";
3974
- path: string;
3975
- };
3976
- } | {
3977
- type: "textSlide";
3978
- slide: {
3979
- title: string;
3980
- subtitle?: string | undefined;
3981
- bullets?: string[] | undefined;
3982
- };
3983
- style?: string | undefined;
3984
- backgroundImage?: string | {
3985
- source: {
3986
- kind: "url";
3987
- url: string;
3988
- } | {
3989
- kind: "base64";
3990
- data: string;
3991
- } | {
3992
- kind: "path";
3993
- path: string;
3994
- };
3995
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
3996
- opacity?: number | undefined;
3997
- } | null | undefined;
3998
- } | {
3999
- type: "chart";
4000
- title: string;
4001
- chartData: Record<string, any>;
4002
- style?: string | undefined;
4003
- backgroundImage?: string | {
4004
- source: {
4005
- kind: "url";
4006
- url: string;
4007
- } | {
4008
- kind: "base64";
4009
- data: string;
4010
- } | {
4011
- kind: "path";
4012
- path: string;
4013
- };
4014
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
4015
- opacity?: number | undefined;
4016
- } | null | undefined;
4017
- } | {
4018
- type: "mermaid";
4019
- title: string;
4020
- code: {
4021
- kind: "url";
4022
- url: string;
4023
- } | {
4024
- kind: "base64";
4025
- data: string;
4026
- } | {
4027
- kind: "text";
4028
- text: string;
4029
- } | {
4030
- kind: "path";
4031
- path: string;
4032
- };
4033
- appendix?: string[] | undefined;
4034
- style?: string | undefined;
4035
- backgroundImage?: string | {
4036
- source: {
4037
- kind: "url";
4038
- url: string;
4039
- } | {
4040
- kind: "base64";
4041
- data: string;
4042
- } | {
4043
- kind: "path";
4044
- path: string;
4045
- };
4046
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
4047
- opacity?: number | undefined;
4048
- } | null | undefined;
4049
- } | {
4050
- type: "html_tailwind";
4051
- html?: string | string[] | undefined;
4052
- script?: string | string[] | undefined;
4053
- elements?: unknown[] | undefined;
4054
- animation?: true | {
4055
- fps: number;
4056
- movie?: boolean | undefined;
4057
- } | undefined;
4058
- } | {
4059
- type: "beat";
4060
- id?: string | undefined;
4061
- } | {
4062
- type: "voice_over";
4063
- startAt?: number | undefined;
4064
- } | {
4065
- type: "vision";
4066
- style: string;
4067
- data: Record<string, any>;
4068
4608
  } | undefined;
4069
4609
  audio?: {
4070
4610
  type: "audio";
@@ -4391,7 +4931,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
4391
4931
  title: string;
4392
4932
  body: string;
4393
4933
  mono: string;
4934
+ accent?: string | undefined;
4394
4935
  };
4936
+ bgGradient?: string | undefined;
4937
+ titleGradient?: string | undefined;
4938
+ cardStyle?: "glass" | "solid" | undefined;
4395
4939
  };
4396
4940
  branding?: {
4397
4941
  logo?: {
@@ -4419,7 +4963,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
4419
4963
  kind: "path";
4420
4964
  path: string;
4421
4965
  };
4422
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
4966
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
4423
4967
  opacity?: number | undefined;
4424
4968
  bgOpacity?: number | undefined;
4425
4969
  } | undefined;
@@ -4597,7 +5141,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
4597
5141
  kind: "path";
4598
5142
  path: string;
4599
5143
  };
4600
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
5144
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
4601
5145
  opacity?: number | undefined;
4602
5146
  } | null | undefined;
4603
5147
  concurrency?: number | undefined;
@@ -4830,7 +5374,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
4830
5374
  title: string;
4831
5375
  body: string;
4832
5376
  mono: string;
5377
+ accent?: string | undefined;
4833
5378
  };
5379
+ bgGradient?: string | undefined;
5380
+ titleGradient?: string | undefined;
5381
+ cardStyle?: "glass" | "solid" | undefined;
4834
5382
  };
4835
5383
  branding?: {
4836
5384
  logo?: {
@@ -4858,7 +5406,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
4858
5406
  kind: "path";
4859
5407
  path: string;
4860
5408
  };
4861
- size?: "contain" | "cover" | "fill" | "auto" | undefined;
5409
+ size?: "cover" | "contain" | "fill" | "auto" | undefined;
4862
5410
  opacity?: number | undefined;
4863
5411
  bgOpacity?: number | undefined;
4864
5412
  } | undefined;