mulmocast 2.6.16 → 2.6.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/actions/viewer.js +1 -1
- package/lib/cli/bin.js +0 -0
- package/lib/mcp/server.js +0 -0
- package/lib/types/schema.d.ts +457 -457
- package/lib/types/schema.js +2 -2
- package/lib/utils/context.d.ts +728 -728
- package/lib/utils/image_plugins/slide.d.ts +1 -1
- package/lib/utils/image_plugins/slide.js +1 -1
- package/package.json +7 -6
- package/lib/data/styles.d.ts +0 -255
- package/lib/data/styles.js +0 -284
- package/lib/slide/blocks.d.ts +0 -13
- package/lib/slide/blocks.js +0 -251
- package/lib/slide/index.d.ts +0 -6
- package/lib/slide/index.js +0 -7
- package/lib/slide/layouts/big_quote.d.ts +0 -2
- package/lib/slide/layouts/big_quote.js +0 -19
- package/lib/slide/layouts/columns.d.ts +0 -2
- package/lib/slide/layouts/columns.js +0 -53
- package/lib/slide/layouts/comparison.d.ts +0 -2
- package/lib/slide/layouts/comparison.js +0 -25
- package/lib/slide/layouts/funnel.d.ts +0 -2
- package/lib/slide/layouts/funnel.js +0 -25
- package/lib/slide/layouts/grid.d.ts +0 -2
- package/lib/slide/layouts/grid.js +0 -38
- package/lib/slide/layouts/index.d.ts +0 -3
- package/lib/slide/layouts/index.js +0 -46
- package/lib/slide/layouts/matrix.d.ts +0 -2
- package/lib/slide/layouts/matrix.js +0 -53
- package/lib/slide/layouts/split.d.ts +0 -2
- package/lib/slide/layouts/split.js +0 -51
- package/lib/slide/layouts/stats.d.ts +0 -2
- package/lib/slide/layouts/stats.js +0 -23
- package/lib/slide/layouts/table.d.ts +0 -2
- package/lib/slide/layouts/table.js +0 -10
- package/lib/slide/layouts/timeline.d.ts +0 -2
- package/lib/slide/layouts/timeline.js +0 -27
- package/lib/slide/layouts/title.d.ts +0 -2
- package/lib/slide/layouts/title.js +0 -19
- package/lib/slide/layouts/waterfall.d.ts +0 -2
- package/lib/slide/layouts/waterfall.js +0 -63
- package/lib/slide/render.d.ts +0 -17
- package/lib/slide/render.js +0 -101
- package/lib/slide/schema.d.ts +0 -9309
- package/lib/slide/schema.js +0 -434
- package/lib/slide/utils.d.ts +0 -76
- package/lib/slide/utils.js +0 -243
- package/lib/types/slide.d.ts +0 -9309
- package/lib/types/slide.js +0 -434
- package/lib/utils/browser_pool.d.ts +0 -5
- package/lib/utils/browser_pool.js +0 -39
- package/lib/utils/markdown.d.ts +0 -3
- package/lib/utils/markdown.js +0 -49
package/lib/utils/context.d.ts
CHANGED
|
@@ -114,7 +114,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
114
114
|
kind: "path";
|
|
115
115
|
path: string;
|
|
116
116
|
};
|
|
117
|
-
size?: "
|
|
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,7 +500,7 @@ 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" | "
|
|
503
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
334
504
|
style?: {
|
|
335
505
|
bgColor?: string | undefined;
|
|
336
506
|
decorations?: boolean | undefined;
|
|
@@ -341,15 +511,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
341
511
|
title: string;
|
|
342
512
|
columns: {
|
|
343
513
|
title: string;
|
|
344
|
-
accentColor?: "success" | "
|
|
514
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
345
515
|
content?: ({
|
|
346
516
|
type: "text";
|
|
347
517
|
value: string;
|
|
348
|
-
align?: "
|
|
518
|
+
align?: "center" | "left" | "right" | undefined;
|
|
349
519
|
bold?: boolean | undefined;
|
|
350
520
|
dim?: boolean | undefined;
|
|
351
521
|
fontSize?: number | undefined;
|
|
352
|
-
color?: "success" | "
|
|
522
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
353
523
|
} | {
|
|
354
524
|
type: "bullets";
|
|
355
525
|
items: (string | {
|
|
@@ -368,27 +538,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
368
538
|
type: "callout";
|
|
369
539
|
text: string;
|
|
370
540
|
label?: string | undefined;
|
|
371
|
-
color?: "success" | "
|
|
372
|
-
style?: "
|
|
541
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
542
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
373
543
|
} | {
|
|
374
544
|
type: "metric";
|
|
375
545
|
value: string;
|
|
376
546
|
label: string;
|
|
377
|
-
color?: "success" | "
|
|
547
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
378
548
|
change?: string | undefined;
|
|
379
549
|
} | {
|
|
380
550
|
type: "divider";
|
|
381
|
-
color?: "success" | "
|
|
551
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
382
552
|
} | {
|
|
383
553
|
type: "image";
|
|
384
554
|
src: string;
|
|
385
555
|
alt?: string | undefined;
|
|
386
|
-
fit?: "
|
|
556
|
+
fit?: "cover" | "contain" | undefined;
|
|
387
557
|
} | {
|
|
388
558
|
type: "imageRef";
|
|
389
559
|
ref: string;
|
|
390
560
|
alt?: string | undefined;
|
|
391
|
-
fit?: "
|
|
561
|
+
fit?: "cover" | "contain" | undefined;
|
|
392
562
|
} | {
|
|
393
563
|
type: "chart";
|
|
394
564
|
chartData: Record<string, unknown>;
|
|
@@ -401,7 +571,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
401
571
|
type: "table";
|
|
402
572
|
rows: (string | {
|
|
403
573
|
text: string;
|
|
404
|
-
color?: "success" | "
|
|
574
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
405
575
|
bold?: boolean | undefined;
|
|
406
576
|
badge?: boolean | undefined;
|
|
407
577
|
})[][];
|
|
@@ -412,15 +582,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
412
582
|
} | {
|
|
413
583
|
type: "section";
|
|
414
584
|
label: string;
|
|
415
|
-
color?: "success" | "
|
|
585
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
416
586
|
content?: ({
|
|
417
587
|
type: "text";
|
|
418
588
|
value: string;
|
|
419
|
-
align?: "
|
|
589
|
+
align?: "center" | "left" | "right" | undefined;
|
|
420
590
|
bold?: boolean | undefined;
|
|
421
591
|
dim?: boolean | undefined;
|
|
422
592
|
fontSize?: number | undefined;
|
|
423
|
-
color?: "success" | "
|
|
593
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
424
594
|
} | {
|
|
425
595
|
type: "bullets";
|
|
426
596
|
items: (string | {
|
|
@@ -439,27 +609,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
439
609
|
type: "callout";
|
|
440
610
|
text: string;
|
|
441
611
|
label?: string | undefined;
|
|
442
|
-
color?: "success" | "
|
|
443
|
-
style?: "
|
|
612
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
613
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
444
614
|
} | {
|
|
445
615
|
type: "metric";
|
|
446
616
|
value: string;
|
|
447
617
|
label: string;
|
|
448
|
-
color?: "success" | "
|
|
618
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
449
619
|
change?: string | undefined;
|
|
450
620
|
} | {
|
|
451
621
|
type: "divider";
|
|
452
|
-
color?: "success" | "
|
|
622
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
453
623
|
} | {
|
|
454
624
|
type: "image";
|
|
455
625
|
src: string;
|
|
456
626
|
alt?: string | undefined;
|
|
457
|
-
fit?: "
|
|
627
|
+
fit?: "cover" | "contain" | undefined;
|
|
458
628
|
} | {
|
|
459
629
|
type: "imageRef";
|
|
460
630
|
ref: string;
|
|
461
631
|
alt?: string | undefined;
|
|
462
|
-
fit?: "
|
|
632
|
+
fit?: "cover" | "contain" | undefined;
|
|
463
633
|
} | {
|
|
464
634
|
type: "chart";
|
|
465
635
|
chartData: Record<string, unknown>;
|
|
@@ -472,7 +642,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
472
642
|
type: "table";
|
|
473
643
|
rows: (string | {
|
|
474
644
|
text: string;
|
|
475
|
-
color?: "success" | "
|
|
645
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
476
646
|
bold?: boolean | undefined;
|
|
477
647
|
badge?: boolean | undefined;
|
|
478
648
|
})[][];
|
|
@@ -496,12 +666,12 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
496
666
|
callout?: {
|
|
497
667
|
text: string;
|
|
498
668
|
label?: string | undefined;
|
|
499
|
-
color?: "success" | "
|
|
500
|
-
align?: "
|
|
669
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
670
|
+
align?: "center" | "left" | undefined;
|
|
501
671
|
leftBar?: boolean | undefined;
|
|
502
672
|
} | undefined;
|
|
503
673
|
bottomText?: string | undefined;
|
|
504
|
-
accentColor?: "success" | "
|
|
674
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
505
675
|
style?: {
|
|
506
676
|
bgColor?: string | undefined;
|
|
507
677
|
decorations?: boolean | undefined;
|
|
@@ -512,15 +682,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
512
682
|
title: string;
|
|
513
683
|
left: {
|
|
514
684
|
title: string;
|
|
515
|
-
accentColor?: "success" | "
|
|
685
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
516
686
|
content?: ({
|
|
517
687
|
type: "text";
|
|
518
688
|
value: string;
|
|
519
|
-
align?: "
|
|
689
|
+
align?: "center" | "left" | "right" | undefined;
|
|
520
690
|
bold?: boolean | undefined;
|
|
521
691
|
dim?: boolean | undefined;
|
|
522
692
|
fontSize?: number | undefined;
|
|
523
|
-
color?: "success" | "
|
|
693
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
524
694
|
} | {
|
|
525
695
|
type: "bullets";
|
|
526
696
|
items: (string | {
|
|
@@ -539,27 +709,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
539
709
|
type: "callout";
|
|
540
710
|
text: string;
|
|
541
711
|
label?: string | undefined;
|
|
542
|
-
color?: "success" | "
|
|
543
|
-
style?: "
|
|
712
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
713
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
544
714
|
} | {
|
|
545
715
|
type: "metric";
|
|
546
716
|
value: string;
|
|
547
717
|
label: string;
|
|
548
|
-
color?: "success" | "
|
|
718
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
549
719
|
change?: string | undefined;
|
|
550
720
|
} | {
|
|
551
721
|
type: "divider";
|
|
552
|
-
color?: "success" | "
|
|
722
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
553
723
|
} | {
|
|
554
724
|
type: "image";
|
|
555
725
|
src: string;
|
|
556
726
|
alt?: string | undefined;
|
|
557
|
-
fit?: "
|
|
727
|
+
fit?: "cover" | "contain" | undefined;
|
|
558
728
|
} | {
|
|
559
729
|
type: "imageRef";
|
|
560
730
|
ref: string;
|
|
561
731
|
alt?: string | undefined;
|
|
562
|
-
fit?: "
|
|
732
|
+
fit?: "cover" | "contain" | undefined;
|
|
563
733
|
} | {
|
|
564
734
|
type: "chart";
|
|
565
735
|
chartData: Record<string, unknown>;
|
|
@@ -572,7 +742,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
572
742
|
type: "table";
|
|
573
743
|
rows: (string | {
|
|
574
744
|
text: string;
|
|
575
|
-
color?: "success" | "
|
|
745
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
576
746
|
bold?: boolean | undefined;
|
|
577
747
|
badge?: boolean | undefined;
|
|
578
748
|
})[][];
|
|
@@ -583,15 +753,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
583
753
|
} | {
|
|
584
754
|
type: "section";
|
|
585
755
|
label: string;
|
|
586
|
-
color?: "success" | "
|
|
756
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
587
757
|
content?: ({
|
|
588
758
|
type: "text";
|
|
589
759
|
value: string;
|
|
590
|
-
align?: "
|
|
760
|
+
align?: "center" | "left" | "right" | undefined;
|
|
591
761
|
bold?: boolean | undefined;
|
|
592
762
|
dim?: boolean | undefined;
|
|
593
763
|
fontSize?: number | undefined;
|
|
594
|
-
color?: "success" | "
|
|
764
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
595
765
|
} | {
|
|
596
766
|
type: "bullets";
|
|
597
767
|
items: (string | {
|
|
@@ -610,27 +780,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
610
780
|
type: "callout";
|
|
611
781
|
text: string;
|
|
612
782
|
label?: string | undefined;
|
|
613
|
-
color?: "success" | "
|
|
614
|
-
style?: "
|
|
783
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
784
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
615
785
|
} | {
|
|
616
786
|
type: "metric";
|
|
617
787
|
value: string;
|
|
618
788
|
label: string;
|
|
619
|
-
color?: "success" | "
|
|
789
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
620
790
|
change?: string | undefined;
|
|
621
791
|
} | {
|
|
622
792
|
type: "divider";
|
|
623
|
-
color?: "success" | "
|
|
793
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
624
794
|
} | {
|
|
625
795
|
type: "image";
|
|
626
796
|
src: string;
|
|
627
797
|
alt?: string | undefined;
|
|
628
|
-
fit?: "
|
|
798
|
+
fit?: "cover" | "contain" | undefined;
|
|
629
799
|
} | {
|
|
630
800
|
type: "imageRef";
|
|
631
801
|
ref: string;
|
|
632
802
|
alt?: string | undefined;
|
|
633
|
-
fit?: "
|
|
803
|
+
fit?: "cover" | "contain" | undefined;
|
|
634
804
|
} | {
|
|
635
805
|
type: "chart";
|
|
636
806
|
chartData: Record<string, unknown>;
|
|
@@ -643,7 +813,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
643
813
|
type: "table";
|
|
644
814
|
rows: (string | {
|
|
645
815
|
text: string;
|
|
646
|
-
color?: "success" | "
|
|
816
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
647
817
|
bold?: boolean | undefined;
|
|
648
818
|
badge?: boolean | undefined;
|
|
649
819
|
})[][];
|
|
@@ -659,15 +829,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
659
829
|
};
|
|
660
830
|
right: {
|
|
661
831
|
title: string;
|
|
662
|
-
accentColor?: "success" | "
|
|
832
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
663
833
|
content?: ({
|
|
664
834
|
type: "text";
|
|
665
835
|
value: string;
|
|
666
|
-
align?: "
|
|
836
|
+
align?: "center" | "left" | "right" | undefined;
|
|
667
837
|
bold?: boolean | undefined;
|
|
668
838
|
dim?: boolean | undefined;
|
|
669
839
|
fontSize?: number | undefined;
|
|
670
|
-
color?: "success" | "
|
|
840
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
671
841
|
} | {
|
|
672
842
|
type: "bullets";
|
|
673
843
|
items: (string | {
|
|
@@ -686,27 +856,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
686
856
|
type: "callout";
|
|
687
857
|
text: string;
|
|
688
858
|
label?: string | undefined;
|
|
689
|
-
color?: "success" | "
|
|
690
|
-
style?: "
|
|
859
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
860
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
691
861
|
} | {
|
|
692
862
|
type: "metric";
|
|
693
863
|
value: string;
|
|
694
864
|
label: string;
|
|
695
|
-
color?: "success" | "
|
|
865
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
696
866
|
change?: string | undefined;
|
|
697
867
|
} | {
|
|
698
868
|
type: "divider";
|
|
699
|
-
color?: "success" | "
|
|
869
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
700
870
|
} | {
|
|
701
871
|
type: "image";
|
|
702
872
|
src: string;
|
|
703
873
|
alt?: string | undefined;
|
|
704
|
-
fit?: "
|
|
874
|
+
fit?: "cover" | "contain" | undefined;
|
|
705
875
|
} | {
|
|
706
876
|
type: "imageRef";
|
|
707
877
|
ref: string;
|
|
708
878
|
alt?: string | undefined;
|
|
709
|
-
fit?: "
|
|
879
|
+
fit?: "cover" | "contain" | undefined;
|
|
710
880
|
} | {
|
|
711
881
|
type: "chart";
|
|
712
882
|
chartData: Record<string, unknown>;
|
|
@@ -719,7 +889,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
719
889
|
type: "table";
|
|
720
890
|
rows: (string | {
|
|
721
891
|
text: string;
|
|
722
|
-
color?: "success" | "
|
|
892
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
723
893
|
bold?: boolean | undefined;
|
|
724
894
|
badge?: boolean | undefined;
|
|
725
895
|
})[][];
|
|
@@ -730,15 +900,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
730
900
|
} | {
|
|
731
901
|
type: "section";
|
|
732
902
|
label: string;
|
|
733
|
-
color?: "success" | "
|
|
903
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
734
904
|
content?: ({
|
|
735
905
|
type: "text";
|
|
736
906
|
value: string;
|
|
737
|
-
align?: "
|
|
907
|
+
align?: "center" | "left" | "right" | undefined;
|
|
738
908
|
bold?: boolean | undefined;
|
|
739
909
|
dim?: boolean | undefined;
|
|
740
910
|
fontSize?: number | undefined;
|
|
741
|
-
color?: "success" | "
|
|
911
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
742
912
|
} | {
|
|
743
913
|
type: "bullets";
|
|
744
914
|
items: (string | {
|
|
@@ -757,27 +927,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
757
927
|
type: "callout";
|
|
758
928
|
text: string;
|
|
759
929
|
label?: string | undefined;
|
|
760
|
-
color?: "success" | "
|
|
761
|
-
style?: "
|
|
930
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
931
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
762
932
|
} | {
|
|
763
933
|
type: "metric";
|
|
764
934
|
value: string;
|
|
765
935
|
label: string;
|
|
766
|
-
color?: "success" | "
|
|
936
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
767
937
|
change?: string | undefined;
|
|
768
938
|
} | {
|
|
769
939
|
type: "divider";
|
|
770
|
-
color?: "success" | "
|
|
940
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
771
941
|
} | {
|
|
772
942
|
type: "image";
|
|
773
943
|
src: string;
|
|
774
944
|
alt?: string | undefined;
|
|
775
|
-
fit?: "
|
|
945
|
+
fit?: "cover" | "contain" | undefined;
|
|
776
946
|
} | {
|
|
777
947
|
type: "imageRef";
|
|
778
948
|
ref: string;
|
|
779
949
|
alt?: string | undefined;
|
|
780
|
-
fit?: "
|
|
950
|
+
fit?: "cover" | "contain" | undefined;
|
|
781
951
|
} | {
|
|
782
952
|
type: "chart";
|
|
783
953
|
chartData: Record<string, unknown>;
|
|
@@ -790,7 +960,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
790
960
|
type: "table";
|
|
791
961
|
rows: (string | {
|
|
792
962
|
text: string;
|
|
793
|
-
color?: "success" | "
|
|
963
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
794
964
|
bold?: boolean | undefined;
|
|
795
965
|
badge?: boolean | undefined;
|
|
796
966
|
})[][];
|
|
@@ -810,11 +980,11 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
810
980
|
callout?: {
|
|
811
981
|
text: string;
|
|
812
982
|
label?: string | undefined;
|
|
813
|
-
color?: "success" | "
|
|
814
|
-
align?: "
|
|
983
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
984
|
+
align?: "center" | "left" | undefined;
|
|
815
985
|
leftBar?: boolean | undefined;
|
|
816
986
|
} | undefined;
|
|
817
|
-
accentColor?: "success" | "
|
|
987
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
818
988
|
style?: {
|
|
819
989
|
bgColor?: string | undefined;
|
|
820
990
|
decorations?: boolean | undefined;
|
|
@@ -826,17 +996,17 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
826
996
|
items: {
|
|
827
997
|
title: string;
|
|
828
998
|
description?: string | undefined;
|
|
829
|
-
accentColor?: "success" | "
|
|
999
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
830
1000
|
num?: number | undefined;
|
|
831
1001
|
icon?: string | undefined;
|
|
832
1002
|
content?: ({
|
|
833
1003
|
type: "text";
|
|
834
1004
|
value: string;
|
|
835
|
-
align?: "
|
|
1005
|
+
align?: "center" | "left" | "right" | undefined;
|
|
836
1006
|
bold?: boolean | undefined;
|
|
837
1007
|
dim?: boolean | undefined;
|
|
838
1008
|
fontSize?: number | undefined;
|
|
839
|
-
color?: "success" | "
|
|
1009
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
840
1010
|
} | {
|
|
841
1011
|
type: "bullets";
|
|
842
1012
|
items: (string | {
|
|
@@ -855,27 +1025,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
855
1025
|
type: "callout";
|
|
856
1026
|
text: string;
|
|
857
1027
|
label?: string | undefined;
|
|
858
|
-
color?: "success" | "
|
|
859
|
-
style?: "
|
|
1028
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1029
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
860
1030
|
} | {
|
|
861
1031
|
type: "metric";
|
|
862
1032
|
value: string;
|
|
863
1033
|
label: string;
|
|
864
|
-
color?: "success" | "
|
|
1034
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
865
1035
|
change?: string | undefined;
|
|
866
1036
|
} | {
|
|
867
1037
|
type: "divider";
|
|
868
|
-
color?: "success" | "
|
|
1038
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
869
1039
|
} | {
|
|
870
1040
|
type: "image";
|
|
871
1041
|
src: string;
|
|
872
1042
|
alt?: string | undefined;
|
|
873
|
-
fit?: "
|
|
1043
|
+
fit?: "cover" | "contain" | undefined;
|
|
874
1044
|
} | {
|
|
875
1045
|
type: "imageRef";
|
|
876
1046
|
ref: string;
|
|
877
1047
|
alt?: string | undefined;
|
|
878
|
-
fit?: "
|
|
1048
|
+
fit?: "cover" | "contain" | undefined;
|
|
879
1049
|
} | {
|
|
880
1050
|
type: "chart";
|
|
881
1051
|
chartData: Record<string, unknown>;
|
|
@@ -888,7 +1058,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
888
1058
|
type: "table";
|
|
889
1059
|
rows: (string | {
|
|
890
1060
|
text: string;
|
|
891
|
-
color?: "success" | "
|
|
1061
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
892
1062
|
bold?: boolean | undefined;
|
|
893
1063
|
badge?: boolean | undefined;
|
|
894
1064
|
})[][];
|
|
@@ -899,15 +1069,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
899
1069
|
} | {
|
|
900
1070
|
type: "section";
|
|
901
1071
|
label: string;
|
|
902
|
-
color?: "success" | "
|
|
1072
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
903
1073
|
content?: ({
|
|
904
1074
|
type: "text";
|
|
905
1075
|
value: string;
|
|
906
|
-
align?: "
|
|
1076
|
+
align?: "center" | "left" | "right" | undefined;
|
|
907
1077
|
bold?: boolean | undefined;
|
|
908
1078
|
dim?: boolean | undefined;
|
|
909
1079
|
fontSize?: number | undefined;
|
|
910
|
-
color?: "success" | "
|
|
1080
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
911
1081
|
} | {
|
|
912
1082
|
type: "bullets";
|
|
913
1083
|
items: (string | {
|
|
@@ -926,27 +1096,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
926
1096
|
type: "callout";
|
|
927
1097
|
text: string;
|
|
928
1098
|
label?: string | undefined;
|
|
929
|
-
color?: "success" | "
|
|
930
|
-
style?: "
|
|
1099
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1100
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
931
1101
|
} | {
|
|
932
1102
|
type: "metric";
|
|
933
1103
|
value: string;
|
|
934
1104
|
label: string;
|
|
935
|
-
color?: "success" | "
|
|
1105
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
936
1106
|
change?: string | undefined;
|
|
937
1107
|
} | {
|
|
938
1108
|
type: "divider";
|
|
939
|
-
color?: "success" | "
|
|
1109
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
940
1110
|
} | {
|
|
941
1111
|
type: "image";
|
|
942
1112
|
src: string;
|
|
943
1113
|
alt?: string | undefined;
|
|
944
|
-
fit?: "
|
|
1114
|
+
fit?: "cover" | "contain" | undefined;
|
|
945
1115
|
} | {
|
|
946
1116
|
type: "imageRef";
|
|
947
1117
|
ref: string;
|
|
948
1118
|
alt?: string | undefined;
|
|
949
|
-
fit?: "
|
|
1119
|
+
fit?: "cover" | "contain" | undefined;
|
|
950
1120
|
} | {
|
|
951
1121
|
type: "chart";
|
|
952
1122
|
chartData: Record<string, unknown>;
|
|
@@ -959,7 +1129,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
959
1129
|
type: "table";
|
|
960
1130
|
rows: (string | {
|
|
961
1131
|
text: string;
|
|
962
|
-
color?: "success" | "
|
|
1132
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
963
1133
|
bold?: boolean | undefined;
|
|
964
1134
|
badge?: boolean | undefined;
|
|
965
1135
|
})[][];
|
|
@@ -976,7 +1146,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
976
1146
|
subtitle?: string | undefined;
|
|
977
1147
|
gridColumns?: number | undefined;
|
|
978
1148
|
footer?: string | undefined;
|
|
979
|
-
accentColor?: "success" | "
|
|
1149
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
980
1150
|
style?: {
|
|
981
1151
|
bgColor?: string | undefined;
|
|
982
1152
|
decorations?: boolean | undefined;
|
|
@@ -988,7 +1158,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
988
1158
|
layout: "bigQuote";
|
|
989
1159
|
author?: string | undefined;
|
|
990
1160
|
role?: string | undefined;
|
|
991
|
-
accentColor?: "success" | "
|
|
1161
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
992
1162
|
style?: {
|
|
993
1163
|
bgColor?: string | undefined;
|
|
994
1164
|
decorations?: boolean | undefined;
|
|
@@ -1000,7 +1170,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1000
1170
|
stats: {
|
|
1001
1171
|
value: string;
|
|
1002
1172
|
label: string;
|
|
1003
|
-
color?: "success" | "
|
|
1173
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1004
1174
|
change?: string | undefined;
|
|
1005
1175
|
}[];
|
|
1006
1176
|
layout: "stats";
|
|
@@ -1009,11 +1179,11 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1009
1179
|
callout?: {
|
|
1010
1180
|
text: string;
|
|
1011
1181
|
label?: string | undefined;
|
|
1012
|
-
color?: "success" | "
|
|
1013
|
-
align?: "
|
|
1182
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1183
|
+
align?: "center" | "left" | undefined;
|
|
1014
1184
|
leftBar?: boolean | undefined;
|
|
1015
1185
|
} | undefined;
|
|
1016
|
-
accentColor?: "success" | "
|
|
1186
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1017
1187
|
style?: {
|
|
1018
1188
|
bgColor?: string | undefined;
|
|
1019
1189
|
decorations?: boolean | undefined;
|
|
@@ -1026,13 +1196,13 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1026
1196
|
date: string;
|
|
1027
1197
|
title: string;
|
|
1028
1198
|
description?: string | undefined;
|
|
1029
|
-
color?: "success" | "
|
|
1199
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1030
1200
|
done?: boolean | undefined;
|
|
1031
1201
|
}[];
|
|
1032
1202
|
layout: "timeline";
|
|
1033
1203
|
stepLabel?: string | undefined;
|
|
1034
1204
|
subtitle?: string | undefined;
|
|
1035
|
-
accentColor?: "success" | "
|
|
1205
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1036
1206
|
style?: {
|
|
1037
1207
|
bgColor?: string | undefined;
|
|
1038
1208
|
decorations?: boolean | undefined;
|
|
@@ -1046,15 +1216,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1046
1216
|
subtitle?: string | undefined;
|
|
1047
1217
|
label?: string | undefined;
|
|
1048
1218
|
labelBadge?: boolean | undefined;
|
|
1049
|
-
accentColor?: "success" | "
|
|
1219
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1050
1220
|
content?: ({
|
|
1051
1221
|
type: "text";
|
|
1052
1222
|
value: string;
|
|
1053
|
-
align?: "
|
|
1223
|
+
align?: "center" | "left" | "right" | undefined;
|
|
1054
1224
|
bold?: boolean | undefined;
|
|
1055
1225
|
dim?: boolean | undefined;
|
|
1056
1226
|
fontSize?: number | undefined;
|
|
1057
|
-
color?: "success" | "
|
|
1227
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1058
1228
|
} | {
|
|
1059
1229
|
type: "bullets";
|
|
1060
1230
|
items: (string | {
|
|
@@ -1073,27 +1243,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1073
1243
|
type: "callout";
|
|
1074
1244
|
text: string;
|
|
1075
1245
|
label?: string | undefined;
|
|
1076
|
-
color?: "success" | "
|
|
1077
|
-
style?: "
|
|
1246
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1247
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
1078
1248
|
} | {
|
|
1079
1249
|
type: "metric";
|
|
1080
1250
|
value: string;
|
|
1081
1251
|
label: string;
|
|
1082
|
-
color?: "success" | "
|
|
1252
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1083
1253
|
change?: string | undefined;
|
|
1084
1254
|
} | {
|
|
1085
1255
|
type: "divider";
|
|
1086
|
-
color?: "success" | "
|
|
1256
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1087
1257
|
} | {
|
|
1088
1258
|
type: "image";
|
|
1089
1259
|
src: string;
|
|
1090
1260
|
alt?: string | undefined;
|
|
1091
|
-
fit?: "
|
|
1261
|
+
fit?: "cover" | "contain" | undefined;
|
|
1092
1262
|
} | {
|
|
1093
1263
|
type: "imageRef";
|
|
1094
1264
|
ref: string;
|
|
1095
1265
|
alt?: string | undefined;
|
|
1096
|
-
fit?: "
|
|
1266
|
+
fit?: "cover" | "contain" | undefined;
|
|
1097
1267
|
} | {
|
|
1098
1268
|
type: "chart";
|
|
1099
1269
|
chartData: Record<string, unknown>;
|
|
@@ -1106,7 +1276,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1106
1276
|
type: "table";
|
|
1107
1277
|
rows: (string | {
|
|
1108
1278
|
text: string;
|
|
1109
|
-
color?: "success" | "
|
|
1279
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1110
1280
|
bold?: boolean | undefined;
|
|
1111
1281
|
badge?: boolean | undefined;
|
|
1112
1282
|
})[][];
|
|
@@ -1117,15 +1287,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1117
1287
|
} | {
|
|
1118
1288
|
type: "section";
|
|
1119
1289
|
label: string;
|
|
1120
|
-
color?: "success" | "
|
|
1290
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1121
1291
|
content?: ({
|
|
1122
1292
|
type: "text";
|
|
1123
1293
|
value: string;
|
|
1124
|
-
align?: "
|
|
1294
|
+
align?: "center" | "left" | "right" | undefined;
|
|
1125
1295
|
bold?: boolean | undefined;
|
|
1126
1296
|
dim?: boolean | undefined;
|
|
1127
1297
|
fontSize?: number | undefined;
|
|
1128
|
-
color?: "success" | "
|
|
1298
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1129
1299
|
} | {
|
|
1130
1300
|
type: "bullets";
|
|
1131
1301
|
items: (string | {
|
|
@@ -1144,27 +1314,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1144
1314
|
type: "callout";
|
|
1145
1315
|
text: string;
|
|
1146
1316
|
label?: string | undefined;
|
|
1147
|
-
color?: "success" | "
|
|
1148
|
-
style?: "
|
|
1317
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1318
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
1149
1319
|
} | {
|
|
1150
1320
|
type: "metric";
|
|
1151
1321
|
value: string;
|
|
1152
1322
|
label: string;
|
|
1153
|
-
color?: "success" | "
|
|
1323
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1154
1324
|
change?: string | undefined;
|
|
1155
1325
|
} | {
|
|
1156
1326
|
type: "divider";
|
|
1157
|
-
color?: "success" | "
|
|
1327
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1158
1328
|
} | {
|
|
1159
1329
|
type: "image";
|
|
1160
1330
|
src: string;
|
|
1161
1331
|
alt?: string | undefined;
|
|
1162
|
-
fit?: "
|
|
1332
|
+
fit?: "cover" | "contain" | undefined;
|
|
1163
1333
|
} | {
|
|
1164
1334
|
type: "imageRef";
|
|
1165
1335
|
ref: string;
|
|
1166
1336
|
alt?: string | undefined;
|
|
1167
|
-
fit?: "
|
|
1337
|
+
fit?: "cover" | "contain" | undefined;
|
|
1168
1338
|
} | {
|
|
1169
1339
|
type: "chart";
|
|
1170
1340
|
chartData: Record<string, unknown>;
|
|
@@ -1177,7 +1347,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1177
1347
|
type: "table";
|
|
1178
1348
|
rows: (string | {
|
|
1179
1349
|
text: string;
|
|
1180
|
-
color?: "success" | "
|
|
1350
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1181
1351
|
bold?: boolean | undefined;
|
|
1182
1352
|
badge?: boolean | undefined;
|
|
1183
1353
|
})[][];
|
|
@@ -1198,15 +1368,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1198
1368
|
subtitle?: string | undefined;
|
|
1199
1369
|
label?: string | undefined;
|
|
1200
1370
|
labelBadge?: boolean | undefined;
|
|
1201
|
-
accentColor?: "success" | "
|
|
1371
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1202
1372
|
content?: ({
|
|
1203
1373
|
type: "text";
|
|
1204
1374
|
value: string;
|
|
1205
|
-
align?: "
|
|
1375
|
+
align?: "center" | "left" | "right" | undefined;
|
|
1206
1376
|
bold?: boolean | undefined;
|
|
1207
1377
|
dim?: boolean | undefined;
|
|
1208
1378
|
fontSize?: number | undefined;
|
|
1209
|
-
color?: "success" | "
|
|
1379
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1210
1380
|
} | {
|
|
1211
1381
|
type: "bullets";
|
|
1212
1382
|
items: (string | {
|
|
@@ -1225,27 +1395,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1225
1395
|
type: "callout";
|
|
1226
1396
|
text: string;
|
|
1227
1397
|
label?: string | undefined;
|
|
1228
|
-
color?: "success" | "
|
|
1229
|
-
style?: "
|
|
1398
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1399
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
1230
1400
|
} | {
|
|
1231
1401
|
type: "metric";
|
|
1232
1402
|
value: string;
|
|
1233
1403
|
label: string;
|
|
1234
|
-
color?: "success" | "
|
|
1404
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1235
1405
|
change?: string | undefined;
|
|
1236
1406
|
} | {
|
|
1237
1407
|
type: "divider";
|
|
1238
|
-
color?: "success" | "
|
|
1408
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1239
1409
|
} | {
|
|
1240
1410
|
type: "image";
|
|
1241
1411
|
src: string;
|
|
1242
1412
|
alt?: string | undefined;
|
|
1243
|
-
fit?: "
|
|
1413
|
+
fit?: "cover" | "contain" | undefined;
|
|
1244
1414
|
} | {
|
|
1245
1415
|
type: "imageRef";
|
|
1246
1416
|
ref: string;
|
|
1247
1417
|
alt?: string | undefined;
|
|
1248
|
-
fit?: "
|
|
1418
|
+
fit?: "cover" | "contain" | undefined;
|
|
1249
1419
|
} | {
|
|
1250
1420
|
type: "chart";
|
|
1251
1421
|
chartData: Record<string, unknown>;
|
|
@@ -1258,7 +1428,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1258
1428
|
type: "table";
|
|
1259
1429
|
rows: (string | {
|
|
1260
1430
|
text: string;
|
|
1261
|
-
color?: "success" | "
|
|
1431
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1262
1432
|
bold?: boolean | undefined;
|
|
1263
1433
|
badge?: boolean | undefined;
|
|
1264
1434
|
})[][];
|
|
@@ -1269,15 +1439,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1269
1439
|
} | {
|
|
1270
1440
|
type: "section";
|
|
1271
1441
|
label: string;
|
|
1272
|
-
color?: "success" | "
|
|
1442
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1273
1443
|
content?: ({
|
|
1274
1444
|
type: "text";
|
|
1275
1445
|
value: string;
|
|
1276
|
-
align?: "
|
|
1446
|
+
align?: "center" | "left" | "right" | undefined;
|
|
1277
1447
|
bold?: boolean | undefined;
|
|
1278
1448
|
dim?: boolean | undefined;
|
|
1279
1449
|
fontSize?: number | undefined;
|
|
1280
|
-
color?: "success" | "
|
|
1450
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1281
1451
|
} | {
|
|
1282
1452
|
type: "bullets";
|
|
1283
1453
|
items: (string | {
|
|
@@ -1296,27 +1466,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1296
1466
|
type: "callout";
|
|
1297
1467
|
text: string;
|
|
1298
1468
|
label?: string | undefined;
|
|
1299
|
-
color?: "success" | "
|
|
1300
|
-
style?: "
|
|
1469
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1470
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
1301
1471
|
} | {
|
|
1302
1472
|
type: "metric";
|
|
1303
1473
|
value: string;
|
|
1304
1474
|
label: string;
|
|
1305
|
-
color?: "success" | "
|
|
1475
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1306
1476
|
change?: string | undefined;
|
|
1307
1477
|
} | {
|
|
1308
1478
|
type: "divider";
|
|
1309
|
-
color?: "success" | "
|
|
1479
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1310
1480
|
} | {
|
|
1311
1481
|
type: "image";
|
|
1312
1482
|
src: string;
|
|
1313
1483
|
alt?: string | undefined;
|
|
1314
|
-
fit?: "
|
|
1484
|
+
fit?: "cover" | "contain" | undefined;
|
|
1315
1485
|
} | {
|
|
1316
1486
|
type: "imageRef";
|
|
1317
1487
|
ref: string;
|
|
1318
1488
|
alt?: string | undefined;
|
|
1319
|
-
fit?: "
|
|
1489
|
+
fit?: "cover" | "contain" | undefined;
|
|
1320
1490
|
} | {
|
|
1321
1491
|
type: "chart";
|
|
1322
1492
|
chartData: Record<string, unknown>;
|
|
@@ -1329,7 +1499,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1329
1499
|
type: "table";
|
|
1330
1500
|
rows: (string | {
|
|
1331
1501
|
text: string;
|
|
1332
|
-
color?: "success" | "
|
|
1502
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1333
1503
|
bold?: boolean | undefined;
|
|
1334
1504
|
badge?: boolean | undefined;
|
|
1335
1505
|
})[][];
|
|
@@ -1345,7 +1515,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1345
1515
|
ratio?: number | undefined;
|
|
1346
1516
|
valign?: "center" | "top" | "bottom" | undefined;
|
|
1347
1517
|
} | undefined;
|
|
1348
|
-
accentColor?: "success" | "
|
|
1518
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1349
1519
|
style?: {
|
|
1350
1520
|
bgColor?: string | undefined;
|
|
1351
1521
|
decorations?: boolean | undefined;
|
|
@@ -1360,11 +1530,11 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1360
1530
|
content?: ({
|
|
1361
1531
|
type: "text";
|
|
1362
1532
|
value: string;
|
|
1363
|
-
align?: "
|
|
1533
|
+
align?: "center" | "left" | "right" | undefined;
|
|
1364
1534
|
bold?: boolean | undefined;
|
|
1365
1535
|
dim?: boolean | undefined;
|
|
1366
1536
|
fontSize?: number | undefined;
|
|
1367
|
-
color?: "success" | "
|
|
1537
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1368
1538
|
} | {
|
|
1369
1539
|
type: "bullets";
|
|
1370
1540
|
items: (string | {
|
|
@@ -1383,27 +1553,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1383
1553
|
type: "callout";
|
|
1384
1554
|
text: string;
|
|
1385
1555
|
label?: string | undefined;
|
|
1386
|
-
color?: "success" | "
|
|
1387
|
-
style?: "
|
|
1556
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1557
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
1388
1558
|
} | {
|
|
1389
1559
|
type: "metric";
|
|
1390
1560
|
value: string;
|
|
1391
1561
|
label: string;
|
|
1392
|
-
color?: "success" | "
|
|
1562
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1393
1563
|
change?: string | undefined;
|
|
1394
1564
|
} | {
|
|
1395
1565
|
type: "divider";
|
|
1396
|
-
color?: "success" | "
|
|
1566
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1397
1567
|
} | {
|
|
1398
1568
|
type: "image";
|
|
1399
1569
|
src: string;
|
|
1400
1570
|
alt?: string | undefined;
|
|
1401
|
-
fit?: "
|
|
1571
|
+
fit?: "cover" | "contain" | undefined;
|
|
1402
1572
|
} | {
|
|
1403
1573
|
type: "imageRef";
|
|
1404
1574
|
ref: string;
|
|
1405
1575
|
alt?: string | undefined;
|
|
1406
|
-
fit?: "
|
|
1576
|
+
fit?: "cover" | "contain" | undefined;
|
|
1407
1577
|
} | {
|
|
1408
1578
|
type: "chart";
|
|
1409
1579
|
chartData: Record<string, unknown>;
|
|
@@ -1416,7 +1586,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1416
1586
|
type: "table";
|
|
1417
1587
|
rows: (string | {
|
|
1418
1588
|
text: string;
|
|
1419
|
-
color?: "success" | "
|
|
1589
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1420
1590
|
bold?: boolean | undefined;
|
|
1421
1591
|
badge?: boolean | undefined;
|
|
1422
1592
|
})[][];
|
|
@@ -1427,15 +1597,15 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1427
1597
|
} | {
|
|
1428
1598
|
type: "section";
|
|
1429
1599
|
label: string;
|
|
1430
|
-
color?: "success" | "
|
|
1600
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1431
1601
|
content?: ({
|
|
1432
1602
|
type: "text";
|
|
1433
1603
|
value: string;
|
|
1434
|
-
align?: "
|
|
1604
|
+
align?: "center" | "left" | "right" | undefined;
|
|
1435
1605
|
bold?: boolean | undefined;
|
|
1436
1606
|
dim?: boolean | undefined;
|
|
1437
1607
|
fontSize?: number | undefined;
|
|
1438
|
-
color?: "success" | "
|
|
1608
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1439
1609
|
} | {
|
|
1440
1610
|
type: "bullets";
|
|
1441
1611
|
items: (string | {
|
|
@@ -1454,27 +1624,27 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1454
1624
|
type: "callout";
|
|
1455
1625
|
text: string;
|
|
1456
1626
|
label?: string | undefined;
|
|
1457
|
-
color?: "success" | "
|
|
1458
|
-
style?: "
|
|
1627
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1628
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
1459
1629
|
} | {
|
|
1460
1630
|
type: "metric";
|
|
1461
1631
|
value: string;
|
|
1462
1632
|
label: string;
|
|
1463
|
-
color?: "success" | "
|
|
1633
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1464
1634
|
change?: string | undefined;
|
|
1465
1635
|
} | {
|
|
1466
1636
|
type: "divider";
|
|
1467
|
-
color?: "success" | "
|
|
1637
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1468
1638
|
} | {
|
|
1469
1639
|
type: "image";
|
|
1470
1640
|
src: string;
|
|
1471
1641
|
alt?: string | undefined;
|
|
1472
|
-
fit?: "
|
|
1642
|
+
fit?: "cover" | "contain" | undefined;
|
|
1473
1643
|
} | {
|
|
1474
1644
|
type: "imageRef";
|
|
1475
1645
|
ref: string;
|
|
1476
1646
|
alt?: string | undefined;
|
|
1477
|
-
fit?: "
|
|
1647
|
+
fit?: "cover" | "contain" | undefined;
|
|
1478
1648
|
} | {
|
|
1479
1649
|
type: "chart";
|
|
1480
1650
|
chartData: Record<string, unknown>;
|
|
@@ -1487,7 +1657,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1487
1657
|
type: "table";
|
|
1488
1658
|
rows: (string | {
|
|
1489
1659
|
text: string;
|
|
1490
|
-
color?: "success" | "
|
|
1660
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1491
1661
|
bold?: boolean | undefined;
|
|
1492
1662
|
badge?: boolean | undefined;
|
|
1493
1663
|
})[][];
|
|
@@ -1499,7 +1669,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1499
1669
|
text?: string | undefined;
|
|
1500
1670
|
sidebar?: boolean | undefined;
|
|
1501
1671
|
})[] | undefined;
|
|
1502
|
-
accentColor?: "success" | "
|
|
1672
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1503
1673
|
}[];
|
|
1504
1674
|
layout: "matrix";
|
|
1505
1675
|
stepLabel?: string | undefined;
|
|
@@ -1516,7 +1686,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1516
1686
|
high?: string | undefined;
|
|
1517
1687
|
label?: string | undefined;
|
|
1518
1688
|
} | undefined;
|
|
1519
|
-
accentColor?: "success" | "
|
|
1689
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1520
1690
|
style?: {
|
|
1521
1691
|
bgColor?: string | undefined;
|
|
1522
1692
|
decorations?: boolean | undefined;
|
|
@@ -1528,7 +1698,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1528
1698
|
headers: string[];
|
|
1529
1699
|
rows: (string | {
|
|
1530
1700
|
text: string;
|
|
1531
|
-
color?: "success" | "
|
|
1701
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1532
1702
|
bold?: boolean | undefined;
|
|
1533
1703
|
badge?: boolean | undefined;
|
|
1534
1704
|
})[][];
|
|
@@ -1540,11 +1710,11 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1540
1710
|
callout?: {
|
|
1541
1711
|
text: string;
|
|
1542
1712
|
label?: string | undefined;
|
|
1543
|
-
color?: "success" | "
|
|
1544
|
-
align?: "
|
|
1713
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1714
|
+
align?: "center" | "left" | undefined;
|
|
1545
1715
|
leftBar?: boolean | undefined;
|
|
1546
1716
|
} | undefined;
|
|
1547
|
-
accentColor?: "success" | "
|
|
1717
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1548
1718
|
style?: {
|
|
1549
1719
|
bgColor?: string | undefined;
|
|
1550
1720
|
decorations?: boolean | undefined;
|
|
@@ -1557,7 +1727,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1557
1727
|
label: string;
|
|
1558
1728
|
value?: string | undefined;
|
|
1559
1729
|
description?: string | undefined;
|
|
1560
|
-
color?: "success" | "
|
|
1730
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1561
1731
|
}[];
|
|
1562
1732
|
layout: "funnel";
|
|
1563
1733
|
stepLabel?: string | undefined;
|
|
@@ -1565,11 +1735,11 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1565
1735
|
callout?: {
|
|
1566
1736
|
text: string;
|
|
1567
1737
|
label?: string | undefined;
|
|
1568
|
-
color?: "success" | "
|
|
1569
|
-
align?: "
|
|
1738
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1739
|
+
align?: "center" | "left" | undefined;
|
|
1570
1740
|
leftBar?: boolean | undefined;
|
|
1571
1741
|
} | undefined;
|
|
1572
|
-
accentColor?: "success" | "
|
|
1742
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1573
1743
|
style?: {
|
|
1574
1744
|
bgColor?: string | undefined;
|
|
1575
1745
|
decorations?: boolean | undefined;
|
|
@@ -1582,7 +1752,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1582
1752
|
label: string;
|
|
1583
1753
|
value: number;
|
|
1584
1754
|
isTotal?: boolean | undefined;
|
|
1585
|
-
color?: "success" | "
|
|
1755
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1586
1756
|
}[];
|
|
1587
1757
|
layout: "waterfall";
|
|
1588
1758
|
stepLabel?: string | undefined;
|
|
@@ -1591,11 +1761,11 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1591
1761
|
callout?: {
|
|
1592
1762
|
text: string;
|
|
1593
1763
|
label?: string | undefined;
|
|
1594
|
-
color?: "success" | "
|
|
1595
|
-
align?: "
|
|
1764
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1765
|
+
align?: "center" | "left" | undefined;
|
|
1596
1766
|
leftBar?: boolean | undefined;
|
|
1597
1767
|
} | undefined;
|
|
1598
|
-
accentColor?: "success" | "
|
|
1768
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
1599
1769
|
style?: {
|
|
1600
1770
|
bgColor?: string | undefined;
|
|
1601
1771
|
decorations?: boolean | undefined;
|
|
@@ -1652,25 +1822,14 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1652
1822
|
kind: "path";
|
|
1653
1823
|
path: string;
|
|
1654
1824
|
};
|
|
1655
|
-
size?: "
|
|
1825
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
1656
1826
|
opacity?: number | undefined;
|
|
1657
1827
|
bgOpacity?: number | undefined;
|
|
1658
1828
|
} | undefined;
|
|
1659
1829
|
} | null | undefined;
|
|
1660
|
-
} |
|
|
1661
|
-
|
|
1662
|
-
|
|
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";
|
|
1830
|
+
} | undefined;
|
|
1831
|
+
audio?: {
|
|
1832
|
+
type: "audio";
|
|
1674
1833
|
source: {
|
|
1675
1834
|
kind: "url";
|
|
1676
1835
|
url: string;
|
|
@@ -1682,207 +1841,48 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
1682
1841
|
path: string;
|
|
1683
1842
|
};
|
|
1684
1843
|
} | {
|
|
1685
|
-
type: "
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1844
|
+
type: "midi";
|
|
1845
|
+
source: string;
|
|
1846
|
+
} | undefined;
|
|
1847
|
+
duration?: number | undefined;
|
|
1848
|
+
imageParams?: {
|
|
1849
|
+
provider?: string | undefined;
|
|
1850
|
+
model?: string | undefined;
|
|
1851
|
+
quality?: string | undefined;
|
|
1852
|
+
style?: string | undefined;
|
|
1853
|
+
moderation?: string | undefined;
|
|
1854
|
+
baseURL?: string | undefined;
|
|
1855
|
+
apiVersion?: string | undefined;
|
|
1856
|
+
vertexai_project?: string | undefined;
|
|
1857
|
+
vertexai_location?: string | undefined;
|
|
1858
|
+
} | undefined;
|
|
1859
|
+
audioParams?: {
|
|
1860
|
+
padding?: number | undefined;
|
|
1861
|
+
movieVolume?: number | undefined;
|
|
1862
|
+
} | undefined;
|
|
1863
|
+
movieParams?: {
|
|
1864
|
+
provider?: string | undefined;
|
|
1865
|
+
model?: string | undefined;
|
|
1866
|
+
fillOption?: {
|
|
1867
|
+
style: "aspectFit" | "aspectFill";
|
|
1868
|
+
} | undefined;
|
|
1869
|
+
transition?: {
|
|
1870
|
+
type: "fade" | "slideout_left" | "slideout_right" | "slideout_up" | "slideout_down" | "slidein_left" | "slidein_right" | "slidein_up" | "slidein_down" | "wipeleft" | "wiperight" | "wipeup" | "wipedown" | "wipetl" | "wipetr" | "wipebl" | "wipebr";
|
|
1871
|
+
duration: number;
|
|
1872
|
+
} | undefined;
|
|
1873
|
+
filters?: ({
|
|
1874
|
+
type: "mono";
|
|
1691
1875
|
} | {
|
|
1692
|
-
"
|
|
1876
|
+
type: "sepia";
|
|
1693
1877
|
} | {
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
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;
|
|
1878
|
+
type: "brightness_contrast";
|
|
1879
|
+
brightness: number;
|
|
1880
|
+
contrast: number;
|
|
1719
1881
|
} | {
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
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";
|
|
1833
|
-
source: {
|
|
1834
|
-
kind: "url";
|
|
1835
|
-
url: string;
|
|
1836
|
-
} | {
|
|
1837
|
-
kind: "base64";
|
|
1838
|
-
data: string;
|
|
1839
|
-
} | {
|
|
1840
|
-
kind: "path";
|
|
1841
|
-
path: string;
|
|
1842
|
-
};
|
|
1843
|
-
} | {
|
|
1844
|
-
type: "midi";
|
|
1845
|
-
source: string;
|
|
1846
|
-
} | undefined;
|
|
1847
|
-
duration?: number | undefined;
|
|
1848
|
-
imageParams?: {
|
|
1849
|
-
provider?: string | undefined;
|
|
1850
|
-
model?: string | undefined;
|
|
1851
|
-
quality?: string | undefined;
|
|
1852
|
-
style?: string | undefined;
|
|
1853
|
-
moderation?: string | undefined;
|
|
1854
|
-
baseURL?: string | undefined;
|
|
1855
|
-
apiVersion?: string | undefined;
|
|
1856
|
-
vertexai_project?: string | undefined;
|
|
1857
|
-
vertexai_location?: string | undefined;
|
|
1858
|
-
} | undefined;
|
|
1859
|
-
audioParams?: {
|
|
1860
|
-
padding?: number | undefined;
|
|
1861
|
-
movieVolume?: number | undefined;
|
|
1862
|
-
} | undefined;
|
|
1863
|
-
movieParams?: {
|
|
1864
|
-
provider?: string | undefined;
|
|
1865
|
-
model?: string | undefined;
|
|
1866
|
-
fillOption?: {
|
|
1867
|
-
style: "aspectFit" | "aspectFill";
|
|
1868
|
-
} | undefined;
|
|
1869
|
-
transition?: {
|
|
1870
|
-
type: "fade" | "slideout_left" | "slideout_right" | "slideout_up" | "slideout_down" | "slidein_left" | "slidein_right" | "slidein_up" | "slidein_down" | "wipeleft" | "wiperight" | "wipeup" | "wipedown" | "wipetl" | "wipetr" | "wipebl" | "wipebr";
|
|
1871
|
-
duration: number;
|
|
1872
|
-
} | undefined;
|
|
1873
|
-
filters?: ({
|
|
1874
|
-
type: "mono";
|
|
1875
|
-
} | {
|
|
1876
|
-
type: "sepia";
|
|
1877
|
-
} | {
|
|
1878
|
-
type: "brightness_contrast";
|
|
1879
|
-
brightness: number;
|
|
1880
|
-
contrast: number;
|
|
1881
|
-
} | {
|
|
1882
|
-
type: "hue";
|
|
1883
|
-
hue: number;
|
|
1884
|
-
saturation: number;
|
|
1885
|
-
brightness: number;
|
|
1882
|
+
type: "hue";
|
|
1883
|
+
hue: number;
|
|
1884
|
+
saturation: number;
|
|
1885
|
+
brightness: number;
|
|
1886
1886
|
} | {
|
|
1887
1887
|
type: "colorbalance";
|
|
1888
1888
|
rs: number;
|
|
@@ -2181,7 +2181,7 @@ export declare const createStudioData: (_mulmoScript: MulmoScript, fileName: str
|
|
|
2181
2181
|
kind: "path";
|
|
2182
2182
|
path: string;
|
|
2183
2183
|
};
|
|
2184
|
-
size?: "
|
|
2184
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
2185
2185
|
opacity?: number | undefined;
|
|
2186
2186
|
bgOpacity?: number | undefined;
|
|
2187
2187
|
} | undefined;
|
|
@@ -2352,7 +2352,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2352
2352
|
kind: "path";
|
|
2353
2353
|
path: string;
|
|
2354
2354
|
};
|
|
2355
|
-
size?: "
|
|
2355
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
2356
2356
|
opacity?: number | undefined;
|
|
2357
2357
|
} | null | undefined;
|
|
2358
2358
|
concurrency?: number | undefined;
|
|
@@ -2561,6 +2561,176 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2561
2561
|
id?: string | undefined;
|
|
2562
2562
|
description?: string | undefined;
|
|
2563
2563
|
image?: {
|
|
2564
|
+
type: "image";
|
|
2565
|
+
source: {
|
|
2566
|
+
kind: "url";
|
|
2567
|
+
url: string;
|
|
2568
|
+
} | {
|
|
2569
|
+
kind: "base64";
|
|
2570
|
+
data: string;
|
|
2571
|
+
} | {
|
|
2572
|
+
kind: "path";
|
|
2573
|
+
path: string;
|
|
2574
|
+
};
|
|
2575
|
+
} | {
|
|
2576
|
+
type: "movie";
|
|
2577
|
+
source: {
|
|
2578
|
+
kind: "url";
|
|
2579
|
+
url: string;
|
|
2580
|
+
} | {
|
|
2581
|
+
kind: "base64";
|
|
2582
|
+
data: string;
|
|
2583
|
+
} | {
|
|
2584
|
+
kind: "path";
|
|
2585
|
+
path: string;
|
|
2586
|
+
};
|
|
2587
|
+
} | {
|
|
2588
|
+
type: "markdown";
|
|
2589
|
+
markdown: string | string[] | ({
|
|
2590
|
+
header?: string | string[] | undefined;
|
|
2591
|
+
"sidebar-left"?: string | string[] | undefined;
|
|
2592
|
+
} & ({
|
|
2593
|
+
"row-2": [string | string[], string | string[]];
|
|
2594
|
+
} | {
|
|
2595
|
+
"2x2": [string | string[], string | string[], string | string[], string | string[]];
|
|
2596
|
+
} | {
|
|
2597
|
+
content: string | string[];
|
|
2598
|
+
}));
|
|
2599
|
+
style?: string | undefined;
|
|
2600
|
+
backgroundImage?: string | {
|
|
2601
|
+
source: {
|
|
2602
|
+
kind: "url";
|
|
2603
|
+
url: string;
|
|
2604
|
+
} | {
|
|
2605
|
+
kind: "base64";
|
|
2606
|
+
data: string;
|
|
2607
|
+
} | {
|
|
2608
|
+
kind: "path";
|
|
2609
|
+
path: string;
|
|
2610
|
+
};
|
|
2611
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
2612
|
+
opacity?: number | undefined;
|
|
2613
|
+
} | null | undefined;
|
|
2614
|
+
} | {
|
|
2615
|
+
type: "web";
|
|
2616
|
+
url: string;
|
|
2617
|
+
} | {
|
|
2618
|
+
type: "pdf";
|
|
2619
|
+
source: {
|
|
2620
|
+
kind: "url";
|
|
2621
|
+
url: string;
|
|
2622
|
+
} | {
|
|
2623
|
+
kind: "base64";
|
|
2624
|
+
data: string;
|
|
2625
|
+
} | {
|
|
2626
|
+
kind: "path";
|
|
2627
|
+
path: string;
|
|
2628
|
+
};
|
|
2629
|
+
} | {
|
|
2630
|
+
type: "svg";
|
|
2631
|
+
source: {
|
|
2632
|
+
kind: "url";
|
|
2633
|
+
url: string;
|
|
2634
|
+
} | {
|
|
2635
|
+
kind: "base64";
|
|
2636
|
+
data: string;
|
|
2637
|
+
} | {
|
|
2638
|
+
kind: "path";
|
|
2639
|
+
path: string;
|
|
2640
|
+
};
|
|
2641
|
+
} | {
|
|
2642
|
+
type: "textSlide";
|
|
2643
|
+
slide: {
|
|
2644
|
+
title: string;
|
|
2645
|
+
subtitle?: string | undefined;
|
|
2646
|
+
bullets?: string[] | undefined;
|
|
2647
|
+
};
|
|
2648
|
+
style?: string | undefined;
|
|
2649
|
+
backgroundImage?: string | {
|
|
2650
|
+
source: {
|
|
2651
|
+
kind: "url";
|
|
2652
|
+
url: string;
|
|
2653
|
+
} | {
|
|
2654
|
+
kind: "base64";
|
|
2655
|
+
data: string;
|
|
2656
|
+
} | {
|
|
2657
|
+
kind: "path";
|
|
2658
|
+
path: string;
|
|
2659
|
+
};
|
|
2660
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
2661
|
+
opacity?: number | undefined;
|
|
2662
|
+
} | null | undefined;
|
|
2663
|
+
} | {
|
|
2664
|
+
type: "chart";
|
|
2665
|
+
title: string;
|
|
2666
|
+
chartData: Record<string, any>;
|
|
2667
|
+
style?: string | undefined;
|
|
2668
|
+
backgroundImage?: string | {
|
|
2669
|
+
source: {
|
|
2670
|
+
kind: "url";
|
|
2671
|
+
url: string;
|
|
2672
|
+
} | {
|
|
2673
|
+
kind: "base64";
|
|
2674
|
+
data: string;
|
|
2675
|
+
} | {
|
|
2676
|
+
kind: "path";
|
|
2677
|
+
path: string;
|
|
2678
|
+
};
|
|
2679
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
2680
|
+
opacity?: number | undefined;
|
|
2681
|
+
} | null | undefined;
|
|
2682
|
+
} | {
|
|
2683
|
+
type: "mermaid";
|
|
2684
|
+
title: string;
|
|
2685
|
+
code: {
|
|
2686
|
+
kind: "url";
|
|
2687
|
+
url: string;
|
|
2688
|
+
} | {
|
|
2689
|
+
kind: "base64";
|
|
2690
|
+
data: string;
|
|
2691
|
+
} | {
|
|
2692
|
+
kind: "text";
|
|
2693
|
+
text: string;
|
|
2694
|
+
} | {
|
|
2695
|
+
kind: "path";
|
|
2696
|
+
path: string;
|
|
2697
|
+
};
|
|
2698
|
+
appendix?: string[] | undefined;
|
|
2699
|
+
style?: string | undefined;
|
|
2700
|
+
backgroundImage?: string | {
|
|
2701
|
+
source: {
|
|
2702
|
+
kind: "url";
|
|
2703
|
+
url: string;
|
|
2704
|
+
} | {
|
|
2705
|
+
kind: "base64";
|
|
2706
|
+
data: string;
|
|
2707
|
+
} | {
|
|
2708
|
+
kind: "path";
|
|
2709
|
+
path: string;
|
|
2710
|
+
};
|
|
2711
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
2712
|
+
opacity?: number | undefined;
|
|
2713
|
+
} | null | undefined;
|
|
2714
|
+
} | {
|
|
2715
|
+
type: "html_tailwind";
|
|
2716
|
+
html?: string | string[] | undefined;
|
|
2717
|
+
script?: string | string[] | undefined;
|
|
2718
|
+
elements?: unknown[] | undefined;
|
|
2719
|
+
animation?: true | {
|
|
2720
|
+
fps: number;
|
|
2721
|
+
movie?: boolean | undefined;
|
|
2722
|
+
} | undefined;
|
|
2723
|
+
} | {
|
|
2724
|
+
type: "beat";
|
|
2725
|
+
id?: string | undefined;
|
|
2726
|
+
} | {
|
|
2727
|
+
type: "voice_over";
|
|
2728
|
+
startAt?: number | undefined;
|
|
2729
|
+
} | {
|
|
2730
|
+
type: "vision";
|
|
2731
|
+
style: string;
|
|
2732
|
+
data: Record<string, any>;
|
|
2733
|
+
} | {
|
|
2564
2734
|
type: "slide";
|
|
2565
2735
|
slide: {
|
|
2566
2736
|
title: string;
|
|
@@ -2568,7 +2738,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2568
2738
|
subtitle?: string | undefined;
|
|
2569
2739
|
author?: string | undefined;
|
|
2570
2740
|
note?: string | undefined;
|
|
2571
|
-
accentColor?: "success" | "
|
|
2741
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2572
2742
|
style?: {
|
|
2573
2743
|
bgColor?: string | undefined;
|
|
2574
2744
|
decorations?: boolean | undefined;
|
|
@@ -2579,15 +2749,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2579
2749
|
title: string;
|
|
2580
2750
|
columns: {
|
|
2581
2751
|
title: string;
|
|
2582
|
-
accentColor?: "success" | "
|
|
2752
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2583
2753
|
content?: ({
|
|
2584
2754
|
type: "text";
|
|
2585
2755
|
value: string;
|
|
2586
|
-
align?: "
|
|
2756
|
+
align?: "center" | "left" | "right" | undefined;
|
|
2587
2757
|
bold?: boolean | undefined;
|
|
2588
2758
|
dim?: boolean | undefined;
|
|
2589
2759
|
fontSize?: number | undefined;
|
|
2590
|
-
color?: "success" | "
|
|
2760
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2591
2761
|
} | {
|
|
2592
2762
|
type: "bullets";
|
|
2593
2763
|
items: (string | {
|
|
@@ -2606,27 +2776,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2606
2776
|
type: "callout";
|
|
2607
2777
|
text: string;
|
|
2608
2778
|
label?: string | undefined;
|
|
2609
|
-
color?: "success" | "
|
|
2610
|
-
style?: "
|
|
2779
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2780
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
2611
2781
|
} | {
|
|
2612
2782
|
type: "metric";
|
|
2613
2783
|
value: string;
|
|
2614
2784
|
label: string;
|
|
2615
|
-
color?: "success" | "
|
|
2785
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2616
2786
|
change?: string | undefined;
|
|
2617
2787
|
} | {
|
|
2618
2788
|
type: "divider";
|
|
2619
|
-
color?: "success" | "
|
|
2789
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2620
2790
|
} | {
|
|
2621
2791
|
type: "image";
|
|
2622
2792
|
src: string;
|
|
2623
2793
|
alt?: string | undefined;
|
|
2624
|
-
fit?: "
|
|
2794
|
+
fit?: "cover" | "contain" | undefined;
|
|
2625
2795
|
} | {
|
|
2626
2796
|
type: "imageRef";
|
|
2627
2797
|
ref: string;
|
|
2628
2798
|
alt?: string | undefined;
|
|
2629
|
-
fit?: "
|
|
2799
|
+
fit?: "cover" | "contain" | undefined;
|
|
2630
2800
|
} | {
|
|
2631
2801
|
type: "chart";
|
|
2632
2802
|
chartData: Record<string, unknown>;
|
|
@@ -2639,7 +2809,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2639
2809
|
type: "table";
|
|
2640
2810
|
rows: (string | {
|
|
2641
2811
|
text: string;
|
|
2642
|
-
color?: "success" | "
|
|
2812
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2643
2813
|
bold?: boolean | undefined;
|
|
2644
2814
|
badge?: boolean | undefined;
|
|
2645
2815
|
})[][];
|
|
@@ -2650,15 +2820,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2650
2820
|
} | {
|
|
2651
2821
|
type: "section";
|
|
2652
2822
|
label: string;
|
|
2653
|
-
color?: "success" | "
|
|
2823
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2654
2824
|
content?: ({
|
|
2655
2825
|
type: "text";
|
|
2656
2826
|
value: string;
|
|
2657
|
-
align?: "
|
|
2827
|
+
align?: "center" | "left" | "right" | undefined;
|
|
2658
2828
|
bold?: boolean | undefined;
|
|
2659
2829
|
dim?: boolean | undefined;
|
|
2660
2830
|
fontSize?: number | undefined;
|
|
2661
|
-
color?: "success" | "
|
|
2831
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2662
2832
|
} | {
|
|
2663
2833
|
type: "bullets";
|
|
2664
2834
|
items: (string | {
|
|
@@ -2677,27 +2847,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2677
2847
|
type: "callout";
|
|
2678
2848
|
text: string;
|
|
2679
2849
|
label?: string | undefined;
|
|
2680
|
-
color?: "success" | "
|
|
2681
|
-
style?: "
|
|
2850
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2851
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
2682
2852
|
} | {
|
|
2683
2853
|
type: "metric";
|
|
2684
2854
|
value: string;
|
|
2685
2855
|
label: string;
|
|
2686
|
-
color?: "success" | "
|
|
2856
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2687
2857
|
change?: string | undefined;
|
|
2688
2858
|
} | {
|
|
2689
2859
|
type: "divider";
|
|
2690
|
-
color?: "success" | "
|
|
2860
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2691
2861
|
} | {
|
|
2692
2862
|
type: "image";
|
|
2693
2863
|
src: string;
|
|
2694
2864
|
alt?: string | undefined;
|
|
2695
|
-
fit?: "
|
|
2865
|
+
fit?: "cover" | "contain" | undefined;
|
|
2696
2866
|
} | {
|
|
2697
2867
|
type: "imageRef";
|
|
2698
2868
|
ref: string;
|
|
2699
2869
|
alt?: string | undefined;
|
|
2700
|
-
fit?: "
|
|
2870
|
+
fit?: "cover" | "contain" | undefined;
|
|
2701
2871
|
} | {
|
|
2702
2872
|
type: "chart";
|
|
2703
2873
|
chartData: Record<string, unknown>;
|
|
@@ -2710,7 +2880,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2710
2880
|
type: "table";
|
|
2711
2881
|
rows: (string | {
|
|
2712
2882
|
text: string;
|
|
2713
|
-
color?: "success" | "
|
|
2883
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2714
2884
|
bold?: boolean | undefined;
|
|
2715
2885
|
badge?: boolean | undefined;
|
|
2716
2886
|
})[][];
|
|
@@ -2734,12 +2904,12 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2734
2904
|
callout?: {
|
|
2735
2905
|
text: string;
|
|
2736
2906
|
label?: string | undefined;
|
|
2737
|
-
color?: "success" | "
|
|
2738
|
-
align?: "
|
|
2907
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2908
|
+
align?: "center" | "left" | undefined;
|
|
2739
2909
|
leftBar?: boolean | undefined;
|
|
2740
2910
|
} | undefined;
|
|
2741
2911
|
bottomText?: string | undefined;
|
|
2742
|
-
accentColor?: "success" | "
|
|
2912
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2743
2913
|
style?: {
|
|
2744
2914
|
bgColor?: string | undefined;
|
|
2745
2915
|
decorations?: boolean | undefined;
|
|
@@ -2750,15 +2920,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2750
2920
|
title: string;
|
|
2751
2921
|
left: {
|
|
2752
2922
|
title: string;
|
|
2753
|
-
accentColor?: "success" | "
|
|
2923
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2754
2924
|
content?: ({
|
|
2755
2925
|
type: "text";
|
|
2756
2926
|
value: string;
|
|
2757
|
-
align?: "
|
|
2927
|
+
align?: "center" | "left" | "right" | undefined;
|
|
2758
2928
|
bold?: boolean | undefined;
|
|
2759
2929
|
dim?: boolean | undefined;
|
|
2760
2930
|
fontSize?: number | undefined;
|
|
2761
|
-
color?: "success" | "
|
|
2931
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2762
2932
|
} | {
|
|
2763
2933
|
type: "bullets";
|
|
2764
2934
|
items: (string | {
|
|
@@ -2777,27 +2947,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2777
2947
|
type: "callout";
|
|
2778
2948
|
text: string;
|
|
2779
2949
|
label?: string | undefined;
|
|
2780
|
-
color?: "success" | "
|
|
2781
|
-
style?: "
|
|
2950
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2951
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
2782
2952
|
} | {
|
|
2783
2953
|
type: "metric";
|
|
2784
2954
|
value: string;
|
|
2785
2955
|
label: string;
|
|
2786
|
-
color?: "success" | "
|
|
2956
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2787
2957
|
change?: string | undefined;
|
|
2788
2958
|
} | {
|
|
2789
2959
|
type: "divider";
|
|
2790
|
-
color?: "success" | "
|
|
2960
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2791
2961
|
} | {
|
|
2792
2962
|
type: "image";
|
|
2793
2963
|
src: string;
|
|
2794
2964
|
alt?: string | undefined;
|
|
2795
|
-
fit?: "
|
|
2965
|
+
fit?: "cover" | "contain" | undefined;
|
|
2796
2966
|
} | {
|
|
2797
2967
|
type: "imageRef";
|
|
2798
2968
|
ref: string;
|
|
2799
2969
|
alt?: string | undefined;
|
|
2800
|
-
fit?: "
|
|
2970
|
+
fit?: "cover" | "contain" | undefined;
|
|
2801
2971
|
} | {
|
|
2802
2972
|
type: "chart";
|
|
2803
2973
|
chartData: Record<string, unknown>;
|
|
@@ -2810,7 +2980,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2810
2980
|
type: "table";
|
|
2811
2981
|
rows: (string | {
|
|
2812
2982
|
text: string;
|
|
2813
|
-
color?: "success" | "
|
|
2983
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2814
2984
|
bold?: boolean | undefined;
|
|
2815
2985
|
badge?: boolean | undefined;
|
|
2816
2986
|
})[][];
|
|
@@ -2821,15 +2991,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2821
2991
|
} | {
|
|
2822
2992
|
type: "section";
|
|
2823
2993
|
label: string;
|
|
2824
|
-
color?: "success" | "
|
|
2994
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2825
2995
|
content?: ({
|
|
2826
2996
|
type: "text";
|
|
2827
2997
|
value: string;
|
|
2828
|
-
align?: "
|
|
2998
|
+
align?: "center" | "left" | "right" | undefined;
|
|
2829
2999
|
bold?: boolean | undefined;
|
|
2830
3000
|
dim?: boolean | undefined;
|
|
2831
3001
|
fontSize?: number | undefined;
|
|
2832
|
-
color?: "success" | "
|
|
3002
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2833
3003
|
} | {
|
|
2834
3004
|
type: "bullets";
|
|
2835
3005
|
items: (string | {
|
|
@@ -2848,27 +3018,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2848
3018
|
type: "callout";
|
|
2849
3019
|
text: string;
|
|
2850
3020
|
label?: string | undefined;
|
|
2851
|
-
color?: "success" | "
|
|
2852
|
-
style?: "
|
|
3021
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3022
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
2853
3023
|
} | {
|
|
2854
3024
|
type: "metric";
|
|
2855
3025
|
value: string;
|
|
2856
3026
|
label: string;
|
|
2857
|
-
color?: "success" | "
|
|
3027
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2858
3028
|
change?: string | undefined;
|
|
2859
3029
|
} | {
|
|
2860
3030
|
type: "divider";
|
|
2861
|
-
color?: "success" | "
|
|
3031
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2862
3032
|
} | {
|
|
2863
3033
|
type: "image";
|
|
2864
3034
|
src: string;
|
|
2865
3035
|
alt?: string | undefined;
|
|
2866
|
-
fit?: "
|
|
3036
|
+
fit?: "cover" | "contain" | undefined;
|
|
2867
3037
|
} | {
|
|
2868
3038
|
type: "imageRef";
|
|
2869
3039
|
ref: string;
|
|
2870
3040
|
alt?: string | undefined;
|
|
2871
|
-
fit?: "
|
|
3041
|
+
fit?: "cover" | "contain" | undefined;
|
|
2872
3042
|
} | {
|
|
2873
3043
|
type: "chart";
|
|
2874
3044
|
chartData: Record<string, unknown>;
|
|
@@ -2881,7 +3051,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2881
3051
|
type: "table";
|
|
2882
3052
|
rows: (string | {
|
|
2883
3053
|
text: string;
|
|
2884
|
-
color?: "success" | "
|
|
3054
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2885
3055
|
bold?: boolean | undefined;
|
|
2886
3056
|
badge?: boolean | undefined;
|
|
2887
3057
|
})[][];
|
|
@@ -2897,15 +3067,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2897
3067
|
};
|
|
2898
3068
|
right: {
|
|
2899
3069
|
title: string;
|
|
2900
|
-
accentColor?: "success" | "
|
|
3070
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2901
3071
|
content?: ({
|
|
2902
3072
|
type: "text";
|
|
2903
3073
|
value: string;
|
|
2904
|
-
align?: "
|
|
3074
|
+
align?: "center" | "left" | "right" | undefined;
|
|
2905
3075
|
bold?: boolean | undefined;
|
|
2906
3076
|
dim?: boolean | undefined;
|
|
2907
3077
|
fontSize?: number | undefined;
|
|
2908
|
-
color?: "success" | "
|
|
3078
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2909
3079
|
} | {
|
|
2910
3080
|
type: "bullets";
|
|
2911
3081
|
items: (string | {
|
|
@@ -2924,27 +3094,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2924
3094
|
type: "callout";
|
|
2925
3095
|
text: string;
|
|
2926
3096
|
label?: string | undefined;
|
|
2927
|
-
color?: "success" | "
|
|
2928
|
-
style?: "
|
|
3097
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3098
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
2929
3099
|
} | {
|
|
2930
3100
|
type: "metric";
|
|
2931
3101
|
value: string;
|
|
2932
3102
|
label: string;
|
|
2933
|
-
color?: "success" | "
|
|
3103
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2934
3104
|
change?: string | undefined;
|
|
2935
3105
|
} | {
|
|
2936
3106
|
type: "divider";
|
|
2937
|
-
color?: "success" | "
|
|
3107
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2938
3108
|
} | {
|
|
2939
3109
|
type: "image";
|
|
2940
3110
|
src: string;
|
|
2941
3111
|
alt?: string | undefined;
|
|
2942
|
-
fit?: "
|
|
3112
|
+
fit?: "cover" | "contain" | undefined;
|
|
2943
3113
|
} | {
|
|
2944
3114
|
type: "imageRef";
|
|
2945
3115
|
ref: string;
|
|
2946
3116
|
alt?: string | undefined;
|
|
2947
|
-
fit?: "
|
|
3117
|
+
fit?: "cover" | "contain" | undefined;
|
|
2948
3118
|
} | {
|
|
2949
3119
|
type: "chart";
|
|
2950
3120
|
chartData: Record<string, unknown>;
|
|
@@ -2957,7 +3127,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2957
3127
|
type: "table";
|
|
2958
3128
|
rows: (string | {
|
|
2959
3129
|
text: string;
|
|
2960
|
-
color?: "success" | "
|
|
3130
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2961
3131
|
bold?: boolean | undefined;
|
|
2962
3132
|
badge?: boolean | undefined;
|
|
2963
3133
|
})[][];
|
|
@@ -2968,15 +3138,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2968
3138
|
} | {
|
|
2969
3139
|
type: "section";
|
|
2970
3140
|
label: string;
|
|
2971
|
-
color?: "success" | "
|
|
3141
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2972
3142
|
content?: ({
|
|
2973
3143
|
type: "text";
|
|
2974
3144
|
value: string;
|
|
2975
|
-
align?: "
|
|
3145
|
+
align?: "center" | "left" | "right" | undefined;
|
|
2976
3146
|
bold?: boolean | undefined;
|
|
2977
3147
|
dim?: boolean | undefined;
|
|
2978
3148
|
fontSize?: number | undefined;
|
|
2979
|
-
color?: "success" | "
|
|
3149
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
2980
3150
|
} | {
|
|
2981
3151
|
type: "bullets";
|
|
2982
3152
|
items: (string | {
|
|
@@ -2995,27 +3165,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
2995
3165
|
type: "callout";
|
|
2996
3166
|
text: string;
|
|
2997
3167
|
label?: string | undefined;
|
|
2998
|
-
color?: "success" | "
|
|
2999
|
-
style?: "
|
|
3168
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3169
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
3000
3170
|
} | {
|
|
3001
3171
|
type: "metric";
|
|
3002
3172
|
value: string;
|
|
3003
3173
|
label: string;
|
|
3004
|
-
color?: "success" | "
|
|
3174
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3005
3175
|
change?: string | undefined;
|
|
3006
3176
|
} | {
|
|
3007
3177
|
type: "divider";
|
|
3008
|
-
color?: "success" | "
|
|
3178
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3009
3179
|
} | {
|
|
3010
3180
|
type: "image";
|
|
3011
3181
|
src: string;
|
|
3012
3182
|
alt?: string | undefined;
|
|
3013
|
-
fit?: "
|
|
3183
|
+
fit?: "cover" | "contain" | undefined;
|
|
3014
3184
|
} | {
|
|
3015
3185
|
type: "imageRef";
|
|
3016
3186
|
ref: string;
|
|
3017
3187
|
alt?: string | undefined;
|
|
3018
|
-
fit?: "
|
|
3188
|
+
fit?: "cover" | "contain" | undefined;
|
|
3019
3189
|
} | {
|
|
3020
3190
|
type: "chart";
|
|
3021
3191
|
chartData: Record<string, unknown>;
|
|
@@ -3028,7 +3198,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3028
3198
|
type: "table";
|
|
3029
3199
|
rows: (string | {
|
|
3030
3200
|
text: string;
|
|
3031
|
-
color?: "success" | "
|
|
3201
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3032
3202
|
bold?: boolean | undefined;
|
|
3033
3203
|
badge?: boolean | undefined;
|
|
3034
3204
|
})[][];
|
|
@@ -3048,11 +3218,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3048
3218
|
callout?: {
|
|
3049
3219
|
text: string;
|
|
3050
3220
|
label?: string | undefined;
|
|
3051
|
-
color?: "success" | "
|
|
3052
|
-
align?: "
|
|
3221
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3222
|
+
align?: "center" | "left" | undefined;
|
|
3053
3223
|
leftBar?: boolean | undefined;
|
|
3054
3224
|
} | undefined;
|
|
3055
|
-
accentColor?: "success" | "
|
|
3225
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3056
3226
|
style?: {
|
|
3057
3227
|
bgColor?: string | undefined;
|
|
3058
3228
|
decorations?: boolean | undefined;
|
|
@@ -3064,17 +3234,17 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3064
3234
|
items: {
|
|
3065
3235
|
title: string;
|
|
3066
3236
|
description?: string | undefined;
|
|
3067
|
-
accentColor?: "success" | "
|
|
3237
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3068
3238
|
num?: number | undefined;
|
|
3069
3239
|
icon?: string | undefined;
|
|
3070
3240
|
content?: ({
|
|
3071
3241
|
type: "text";
|
|
3072
3242
|
value: string;
|
|
3073
|
-
align?: "
|
|
3243
|
+
align?: "center" | "left" | "right" | undefined;
|
|
3074
3244
|
bold?: boolean | undefined;
|
|
3075
3245
|
dim?: boolean | undefined;
|
|
3076
3246
|
fontSize?: number | undefined;
|
|
3077
|
-
color?: "success" | "
|
|
3247
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3078
3248
|
} | {
|
|
3079
3249
|
type: "bullets";
|
|
3080
3250
|
items: (string | {
|
|
@@ -3093,27 +3263,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3093
3263
|
type: "callout";
|
|
3094
3264
|
text: string;
|
|
3095
3265
|
label?: string | undefined;
|
|
3096
|
-
color?: "success" | "
|
|
3097
|
-
style?: "
|
|
3266
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3267
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
3098
3268
|
} | {
|
|
3099
3269
|
type: "metric";
|
|
3100
3270
|
value: string;
|
|
3101
3271
|
label: string;
|
|
3102
|
-
color?: "success" | "
|
|
3272
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3103
3273
|
change?: string | undefined;
|
|
3104
3274
|
} | {
|
|
3105
3275
|
type: "divider";
|
|
3106
|
-
color?: "success" | "
|
|
3276
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3107
3277
|
} | {
|
|
3108
3278
|
type: "image";
|
|
3109
3279
|
src: string;
|
|
3110
3280
|
alt?: string | undefined;
|
|
3111
|
-
fit?: "
|
|
3281
|
+
fit?: "cover" | "contain" | undefined;
|
|
3112
3282
|
} | {
|
|
3113
3283
|
type: "imageRef";
|
|
3114
3284
|
ref: string;
|
|
3115
3285
|
alt?: string | undefined;
|
|
3116
|
-
fit?: "
|
|
3286
|
+
fit?: "cover" | "contain" | undefined;
|
|
3117
3287
|
} | {
|
|
3118
3288
|
type: "chart";
|
|
3119
3289
|
chartData: Record<string, unknown>;
|
|
@@ -3126,7 +3296,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3126
3296
|
type: "table";
|
|
3127
3297
|
rows: (string | {
|
|
3128
3298
|
text: string;
|
|
3129
|
-
color?: "success" | "
|
|
3299
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3130
3300
|
bold?: boolean | undefined;
|
|
3131
3301
|
badge?: boolean | undefined;
|
|
3132
3302
|
})[][];
|
|
@@ -3137,15 +3307,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3137
3307
|
} | {
|
|
3138
3308
|
type: "section";
|
|
3139
3309
|
label: string;
|
|
3140
|
-
color?: "success" | "
|
|
3310
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3141
3311
|
content?: ({
|
|
3142
3312
|
type: "text";
|
|
3143
3313
|
value: string;
|
|
3144
|
-
align?: "
|
|
3314
|
+
align?: "center" | "left" | "right" | undefined;
|
|
3145
3315
|
bold?: boolean | undefined;
|
|
3146
3316
|
dim?: boolean | undefined;
|
|
3147
3317
|
fontSize?: number | undefined;
|
|
3148
|
-
color?: "success" | "
|
|
3318
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3149
3319
|
} | {
|
|
3150
3320
|
type: "bullets";
|
|
3151
3321
|
items: (string | {
|
|
@@ -3164,27 +3334,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3164
3334
|
type: "callout";
|
|
3165
3335
|
text: string;
|
|
3166
3336
|
label?: string | undefined;
|
|
3167
|
-
color?: "success" | "
|
|
3168
|
-
style?: "
|
|
3337
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3338
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
3169
3339
|
} | {
|
|
3170
3340
|
type: "metric";
|
|
3171
3341
|
value: string;
|
|
3172
3342
|
label: string;
|
|
3173
|
-
color?: "success" | "
|
|
3343
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3174
3344
|
change?: string | undefined;
|
|
3175
3345
|
} | {
|
|
3176
3346
|
type: "divider";
|
|
3177
|
-
color?: "success" | "
|
|
3347
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3178
3348
|
} | {
|
|
3179
3349
|
type: "image";
|
|
3180
3350
|
src: string;
|
|
3181
3351
|
alt?: string | undefined;
|
|
3182
|
-
fit?: "
|
|
3352
|
+
fit?: "cover" | "contain" | undefined;
|
|
3183
3353
|
} | {
|
|
3184
3354
|
type: "imageRef";
|
|
3185
3355
|
ref: string;
|
|
3186
3356
|
alt?: string | undefined;
|
|
3187
|
-
fit?: "
|
|
3357
|
+
fit?: "cover" | "contain" | undefined;
|
|
3188
3358
|
} | {
|
|
3189
3359
|
type: "chart";
|
|
3190
3360
|
chartData: Record<string, unknown>;
|
|
@@ -3197,7 +3367,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3197
3367
|
type: "table";
|
|
3198
3368
|
rows: (string | {
|
|
3199
3369
|
text: string;
|
|
3200
|
-
color?: "success" | "
|
|
3370
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3201
3371
|
bold?: boolean | undefined;
|
|
3202
3372
|
badge?: boolean | undefined;
|
|
3203
3373
|
})[][];
|
|
@@ -3214,7 +3384,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3214
3384
|
subtitle?: string | undefined;
|
|
3215
3385
|
gridColumns?: number | undefined;
|
|
3216
3386
|
footer?: string | undefined;
|
|
3217
|
-
accentColor?: "success" | "
|
|
3387
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3218
3388
|
style?: {
|
|
3219
3389
|
bgColor?: string | undefined;
|
|
3220
3390
|
decorations?: boolean | undefined;
|
|
@@ -3226,7 +3396,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3226
3396
|
layout: "bigQuote";
|
|
3227
3397
|
author?: string | undefined;
|
|
3228
3398
|
role?: string | undefined;
|
|
3229
|
-
accentColor?: "success" | "
|
|
3399
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3230
3400
|
style?: {
|
|
3231
3401
|
bgColor?: string | undefined;
|
|
3232
3402
|
decorations?: boolean | undefined;
|
|
@@ -3238,7 +3408,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3238
3408
|
stats: {
|
|
3239
3409
|
value: string;
|
|
3240
3410
|
label: string;
|
|
3241
|
-
color?: "success" | "
|
|
3411
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3242
3412
|
change?: string | undefined;
|
|
3243
3413
|
}[];
|
|
3244
3414
|
layout: "stats";
|
|
@@ -3247,11 +3417,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3247
3417
|
callout?: {
|
|
3248
3418
|
text: string;
|
|
3249
3419
|
label?: string | undefined;
|
|
3250
|
-
color?: "success" | "
|
|
3251
|
-
align?: "
|
|
3420
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3421
|
+
align?: "center" | "left" | undefined;
|
|
3252
3422
|
leftBar?: boolean | undefined;
|
|
3253
3423
|
} | undefined;
|
|
3254
|
-
accentColor?: "success" | "
|
|
3424
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3255
3425
|
style?: {
|
|
3256
3426
|
bgColor?: string | undefined;
|
|
3257
3427
|
decorations?: boolean | undefined;
|
|
@@ -3264,13 +3434,13 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3264
3434
|
date: string;
|
|
3265
3435
|
title: string;
|
|
3266
3436
|
description?: string | undefined;
|
|
3267
|
-
color?: "success" | "
|
|
3437
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3268
3438
|
done?: boolean | undefined;
|
|
3269
3439
|
}[];
|
|
3270
3440
|
layout: "timeline";
|
|
3271
3441
|
stepLabel?: string | undefined;
|
|
3272
3442
|
subtitle?: string | undefined;
|
|
3273
|
-
accentColor?: "success" | "
|
|
3443
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3274
3444
|
style?: {
|
|
3275
3445
|
bgColor?: string | undefined;
|
|
3276
3446
|
decorations?: boolean | undefined;
|
|
@@ -3284,15 +3454,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3284
3454
|
subtitle?: string | undefined;
|
|
3285
3455
|
label?: string | undefined;
|
|
3286
3456
|
labelBadge?: boolean | undefined;
|
|
3287
|
-
accentColor?: "success" | "
|
|
3457
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3288
3458
|
content?: ({
|
|
3289
3459
|
type: "text";
|
|
3290
3460
|
value: string;
|
|
3291
|
-
align?: "
|
|
3461
|
+
align?: "center" | "left" | "right" | undefined;
|
|
3292
3462
|
bold?: boolean | undefined;
|
|
3293
3463
|
dim?: boolean | undefined;
|
|
3294
3464
|
fontSize?: number | undefined;
|
|
3295
|
-
color?: "success" | "
|
|
3465
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3296
3466
|
} | {
|
|
3297
3467
|
type: "bullets";
|
|
3298
3468
|
items: (string | {
|
|
@@ -3311,27 +3481,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3311
3481
|
type: "callout";
|
|
3312
3482
|
text: string;
|
|
3313
3483
|
label?: string | undefined;
|
|
3314
|
-
color?: "success" | "
|
|
3315
|
-
style?: "
|
|
3484
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3485
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
3316
3486
|
} | {
|
|
3317
3487
|
type: "metric";
|
|
3318
3488
|
value: string;
|
|
3319
3489
|
label: string;
|
|
3320
|
-
color?: "success" | "
|
|
3490
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3321
3491
|
change?: string | undefined;
|
|
3322
3492
|
} | {
|
|
3323
3493
|
type: "divider";
|
|
3324
|
-
color?: "success" | "
|
|
3494
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3325
3495
|
} | {
|
|
3326
3496
|
type: "image";
|
|
3327
3497
|
src: string;
|
|
3328
3498
|
alt?: string | undefined;
|
|
3329
|
-
fit?: "
|
|
3499
|
+
fit?: "cover" | "contain" | undefined;
|
|
3330
3500
|
} | {
|
|
3331
3501
|
type: "imageRef";
|
|
3332
3502
|
ref: string;
|
|
3333
3503
|
alt?: string | undefined;
|
|
3334
|
-
fit?: "
|
|
3504
|
+
fit?: "cover" | "contain" | undefined;
|
|
3335
3505
|
} | {
|
|
3336
3506
|
type: "chart";
|
|
3337
3507
|
chartData: Record<string, unknown>;
|
|
@@ -3344,7 +3514,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3344
3514
|
type: "table";
|
|
3345
3515
|
rows: (string | {
|
|
3346
3516
|
text: string;
|
|
3347
|
-
color?: "success" | "
|
|
3517
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3348
3518
|
bold?: boolean | undefined;
|
|
3349
3519
|
badge?: boolean | undefined;
|
|
3350
3520
|
})[][];
|
|
@@ -3355,15 +3525,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3355
3525
|
} | {
|
|
3356
3526
|
type: "section";
|
|
3357
3527
|
label: string;
|
|
3358
|
-
color?: "success" | "
|
|
3528
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3359
3529
|
content?: ({
|
|
3360
3530
|
type: "text";
|
|
3361
3531
|
value: string;
|
|
3362
|
-
align?: "
|
|
3532
|
+
align?: "center" | "left" | "right" | undefined;
|
|
3363
3533
|
bold?: boolean | undefined;
|
|
3364
3534
|
dim?: boolean | undefined;
|
|
3365
3535
|
fontSize?: number | undefined;
|
|
3366
|
-
color?: "success" | "
|
|
3536
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3367
3537
|
} | {
|
|
3368
3538
|
type: "bullets";
|
|
3369
3539
|
items: (string | {
|
|
@@ -3382,27 +3552,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3382
3552
|
type: "callout";
|
|
3383
3553
|
text: string;
|
|
3384
3554
|
label?: string | undefined;
|
|
3385
|
-
color?: "success" | "
|
|
3386
|
-
style?: "
|
|
3555
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3556
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
3387
3557
|
} | {
|
|
3388
3558
|
type: "metric";
|
|
3389
3559
|
value: string;
|
|
3390
3560
|
label: string;
|
|
3391
|
-
color?: "success" | "
|
|
3561
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3392
3562
|
change?: string | undefined;
|
|
3393
3563
|
} | {
|
|
3394
3564
|
type: "divider";
|
|
3395
|
-
color?: "success" | "
|
|
3565
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3396
3566
|
} | {
|
|
3397
3567
|
type: "image";
|
|
3398
3568
|
src: string;
|
|
3399
3569
|
alt?: string | undefined;
|
|
3400
|
-
fit?: "
|
|
3570
|
+
fit?: "cover" | "contain" | undefined;
|
|
3401
3571
|
} | {
|
|
3402
3572
|
type: "imageRef";
|
|
3403
3573
|
ref: string;
|
|
3404
3574
|
alt?: string | undefined;
|
|
3405
|
-
fit?: "
|
|
3575
|
+
fit?: "cover" | "contain" | undefined;
|
|
3406
3576
|
} | {
|
|
3407
3577
|
type: "chart";
|
|
3408
3578
|
chartData: Record<string, unknown>;
|
|
@@ -3415,7 +3585,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3415
3585
|
type: "table";
|
|
3416
3586
|
rows: (string | {
|
|
3417
3587
|
text: string;
|
|
3418
|
-
color?: "success" | "
|
|
3588
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3419
3589
|
bold?: boolean | undefined;
|
|
3420
3590
|
badge?: boolean | undefined;
|
|
3421
3591
|
})[][];
|
|
@@ -3436,15 +3606,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3436
3606
|
subtitle?: string | undefined;
|
|
3437
3607
|
label?: string | undefined;
|
|
3438
3608
|
labelBadge?: boolean | undefined;
|
|
3439
|
-
accentColor?: "success" | "
|
|
3609
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3440
3610
|
content?: ({
|
|
3441
3611
|
type: "text";
|
|
3442
3612
|
value: string;
|
|
3443
|
-
align?: "
|
|
3613
|
+
align?: "center" | "left" | "right" | undefined;
|
|
3444
3614
|
bold?: boolean | undefined;
|
|
3445
3615
|
dim?: boolean | undefined;
|
|
3446
3616
|
fontSize?: number | undefined;
|
|
3447
|
-
color?: "success" | "
|
|
3617
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3448
3618
|
} | {
|
|
3449
3619
|
type: "bullets";
|
|
3450
3620
|
items: (string | {
|
|
@@ -3463,27 +3633,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3463
3633
|
type: "callout";
|
|
3464
3634
|
text: string;
|
|
3465
3635
|
label?: string | undefined;
|
|
3466
|
-
color?: "success" | "
|
|
3467
|
-
style?: "
|
|
3636
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3637
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
3468
3638
|
} | {
|
|
3469
3639
|
type: "metric";
|
|
3470
3640
|
value: string;
|
|
3471
3641
|
label: string;
|
|
3472
|
-
color?: "success" | "
|
|
3642
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3473
3643
|
change?: string | undefined;
|
|
3474
3644
|
} | {
|
|
3475
3645
|
type: "divider";
|
|
3476
|
-
color?: "success" | "
|
|
3646
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3477
3647
|
} | {
|
|
3478
3648
|
type: "image";
|
|
3479
3649
|
src: string;
|
|
3480
3650
|
alt?: string | undefined;
|
|
3481
|
-
fit?: "
|
|
3651
|
+
fit?: "cover" | "contain" | undefined;
|
|
3482
3652
|
} | {
|
|
3483
3653
|
type: "imageRef";
|
|
3484
3654
|
ref: string;
|
|
3485
3655
|
alt?: string | undefined;
|
|
3486
|
-
fit?: "
|
|
3656
|
+
fit?: "cover" | "contain" | undefined;
|
|
3487
3657
|
} | {
|
|
3488
3658
|
type: "chart";
|
|
3489
3659
|
chartData: Record<string, unknown>;
|
|
@@ -3496,7 +3666,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3496
3666
|
type: "table";
|
|
3497
3667
|
rows: (string | {
|
|
3498
3668
|
text: string;
|
|
3499
|
-
color?: "success" | "
|
|
3669
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3500
3670
|
bold?: boolean | undefined;
|
|
3501
3671
|
badge?: boolean | undefined;
|
|
3502
3672
|
})[][];
|
|
@@ -3507,15 +3677,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3507
3677
|
} | {
|
|
3508
3678
|
type: "section";
|
|
3509
3679
|
label: string;
|
|
3510
|
-
color?: "success" | "
|
|
3680
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3511
3681
|
content?: ({
|
|
3512
3682
|
type: "text";
|
|
3513
3683
|
value: string;
|
|
3514
|
-
align?: "
|
|
3684
|
+
align?: "center" | "left" | "right" | undefined;
|
|
3515
3685
|
bold?: boolean | undefined;
|
|
3516
3686
|
dim?: boolean | undefined;
|
|
3517
3687
|
fontSize?: number | undefined;
|
|
3518
|
-
color?: "success" | "
|
|
3688
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3519
3689
|
} | {
|
|
3520
3690
|
type: "bullets";
|
|
3521
3691
|
items: (string | {
|
|
@@ -3534,27 +3704,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3534
3704
|
type: "callout";
|
|
3535
3705
|
text: string;
|
|
3536
3706
|
label?: string | undefined;
|
|
3537
|
-
color?: "success" | "
|
|
3538
|
-
style?: "
|
|
3707
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3708
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
3539
3709
|
} | {
|
|
3540
3710
|
type: "metric";
|
|
3541
3711
|
value: string;
|
|
3542
3712
|
label: string;
|
|
3543
|
-
color?: "success" | "
|
|
3713
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3544
3714
|
change?: string | undefined;
|
|
3545
3715
|
} | {
|
|
3546
3716
|
type: "divider";
|
|
3547
|
-
color?: "success" | "
|
|
3717
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3548
3718
|
} | {
|
|
3549
3719
|
type: "image";
|
|
3550
3720
|
src: string;
|
|
3551
3721
|
alt?: string | undefined;
|
|
3552
|
-
fit?: "
|
|
3722
|
+
fit?: "cover" | "contain" | undefined;
|
|
3553
3723
|
} | {
|
|
3554
3724
|
type: "imageRef";
|
|
3555
3725
|
ref: string;
|
|
3556
3726
|
alt?: string | undefined;
|
|
3557
|
-
fit?: "
|
|
3727
|
+
fit?: "cover" | "contain" | undefined;
|
|
3558
3728
|
} | {
|
|
3559
3729
|
type: "chart";
|
|
3560
3730
|
chartData: Record<string, unknown>;
|
|
@@ -3567,7 +3737,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3567
3737
|
type: "table";
|
|
3568
3738
|
rows: (string | {
|
|
3569
3739
|
text: string;
|
|
3570
|
-
color?: "success" | "
|
|
3740
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3571
3741
|
bold?: boolean | undefined;
|
|
3572
3742
|
badge?: boolean | undefined;
|
|
3573
3743
|
})[][];
|
|
@@ -3583,7 +3753,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3583
3753
|
ratio?: number | undefined;
|
|
3584
3754
|
valign?: "center" | "top" | "bottom" | undefined;
|
|
3585
3755
|
} | undefined;
|
|
3586
|
-
accentColor?: "success" | "
|
|
3756
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3587
3757
|
style?: {
|
|
3588
3758
|
bgColor?: string | undefined;
|
|
3589
3759
|
decorations?: boolean | undefined;
|
|
@@ -3598,11 +3768,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3598
3768
|
content?: ({
|
|
3599
3769
|
type: "text";
|
|
3600
3770
|
value: string;
|
|
3601
|
-
align?: "
|
|
3771
|
+
align?: "center" | "left" | "right" | undefined;
|
|
3602
3772
|
bold?: boolean | undefined;
|
|
3603
3773
|
dim?: boolean | undefined;
|
|
3604
3774
|
fontSize?: number | undefined;
|
|
3605
|
-
color?: "success" | "
|
|
3775
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3606
3776
|
} | {
|
|
3607
3777
|
type: "bullets";
|
|
3608
3778
|
items: (string | {
|
|
@@ -3621,27 +3791,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3621
3791
|
type: "callout";
|
|
3622
3792
|
text: string;
|
|
3623
3793
|
label?: string | undefined;
|
|
3624
|
-
color?: "success" | "
|
|
3625
|
-
style?: "
|
|
3794
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3795
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
3626
3796
|
} | {
|
|
3627
3797
|
type: "metric";
|
|
3628
3798
|
value: string;
|
|
3629
3799
|
label: string;
|
|
3630
|
-
color?: "success" | "
|
|
3800
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3631
3801
|
change?: string | undefined;
|
|
3632
3802
|
} | {
|
|
3633
3803
|
type: "divider";
|
|
3634
|
-
color?: "success" | "
|
|
3804
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3635
3805
|
} | {
|
|
3636
3806
|
type: "image";
|
|
3637
3807
|
src: string;
|
|
3638
3808
|
alt?: string | undefined;
|
|
3639
|
-
fit?: "
|
|
3809
|
+
fit?: "cover" | "contain" | undefined;
|
|
3640
3810
|
} | {
|
|
3641
3811
|
type: "imageRef";
|
|
3642
3812
|
ref: string;
|
|
3643
3813
|
alt?: string | undefined;
|
|
3644
|
-
fit?: "
|
|
3814
|
+
fit?: "cover" | "contain" | undefined;
|
|
3645
3815
|
} | {
|
|
3646
3816
|
type: "chart";
|
|
3647
3817
|
chartData: Record<string, unknown>;
|
|
@@ -3654,7 +3824,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3654
3824
|
type: "table";
|
|
3655
3825
|
rows: (string | {
|
|
3656
3826
|
text: string;
|
|
3657
|
-
color?: "success" | "
|
|
3827
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3658
3828
|
bold?: boolean | undefined;
|
|
3659
3829
|
badge?: boolean | undefined;
|
|
3660
3830
|
})[][];
|
|
@@ -3665,15 +3835,15 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3665
3835
|
} | {
|
|
3666
3836
|
type: "section";
|
|
3667
3837
|
label: string;
|
|
3668
|
-
color?: "success" | "
|
|
3838
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3669
3839
|
content?: ({
|
|
3670
3840
|
type: "text";
|
|
3671
3841
|
value: string;
|
|
3672
|
-
align?: "
|
|
3842
|
+
align?: "center" | "left" | "right" | undefined;
|
|
3673
3843
|
bold?: boolean | undefined;
|
|
3674
3844
|
dim?: boolean | undefined;
|
|
3675
3845
|
fontSize?: number | undefined;
|
|
3676
|
-
color?: "success" | "
|
|
3846
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3677
3847
|
} | {
|
|
3678
3848
|
type: "bullets";
|
|
3679
3849
|
items: (string | {
|
|
@@ -3692,27 +3862,27 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3692
3862
|
type: "callout";
|
|
3693
3863
|
text: string;
|
|
3694
3864
|
label?: string | undefined;
|
|
3695
|
-
color?: "success" | "
|
|
3696
|
-
style?: "
|
|
3865
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3866
|
+
style?: "info" | "warning" | "quote" | undefined;
|
|
3697
3867
|
} | {
|
|
3698
3868
|
type: "metric";
|
|
3699
3869
|
value: string;
|
|
3700
3870
|
label: string;
|
|
3701
|
-
color?: "success" | "
|
|
3871
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3702
3872
|
change?: string | undefined;
|
|
3703
3873
|
} | {
|
|
3704
3874
|
type: "divider";
|
|
3705
|
-
color?: "success" | "
|
|
3875
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3706
3876
|
} | {
|
|
3707
3877
|
type: "image";
|
|
3708
3878
|
src: string;
|
|
3709
3879
|
alt?: string | undefined;
|
|
3710
|
-
fit?: "
|
|
3880
|
+
fit?: "cover" | "contain" | undefined;
|
|
3711
3881
|
} | {
|
|
3712
3882
|
type: "imageRef";
|
|
3713
3883
|
ref: string;
|
|
3714
3884
|
alt?: string | undefined;
|
|
3715
|
-
fit?: "
|
|
3885
|
+
fit?: "cover" | "contain" | undefined;
|
|
3716
3886
|
} | {
|
|
3717
3887
|
type: "chart";
|
|
3718
3888
|
chartData: Record<string, unknown>;
|
|
@@ -3725,7 +3895,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3725
3895
|
type: "table";
|
|
3726
3896
|
rows: (string | {
|
|
3727
3897
|
text: string;
|
|
3728
|
-
color?: "success" | "
|
|
3898
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3729
3899
|
bold?: boolean | undefined;
|
|
3730
3900
|
badge?: boolean | undefined;
|
|
3731
3901
|
})[][];
|
|
@@ -3737,7 +3907,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3737
3907
|
text?: string | undefined;
|
|
3738
3908
|
sidebar?: boolean | undefined;
|
|
3739
3909
|
})[] | undefined;
|
|
3740
|
-
accentColor?: "success" | "
|
|
3910
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3741
3911
|
}[];
|
|
3742
3912
|
layout: "matrix";
|
|
3743
3913
|
stepLabel?: string | undefined;
|
|
@@ -3754,7 +3924,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3754
3924
|
high?: string | undefined;
|
|
3755
3925
|
label?: string | undefined;
|
|
3756
3926
|
} | undefined;
|
|
3757
|
-
accentColor?: "success" | "
|
|
3927
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3758
3928
|
style?: {
|
|
3759
3929
|
bgColor?: string | undefined;
|
|
3760
3930
|
decorations?: boolean | undefined;
|
|
@@ -3766,7 +3936,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3766
3936
|
headers: string[];
|
|
3767
3937
|
rows: (string | {
|
|
3768
3938
|
text: string;
|
|
3769
|
-
color?: "success" | "
|
|
3939
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3770
3940
|
bold?: boolean | undefined;
|
|
3771
3941
|
badge?: boolean | undefined;
|
|
3772
3942
|
})[][];
|
|
@@ -3778,11 +3948,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3778
3948
|
callout?: {
|
|
3779
3949
|
text: string;
|
|
3780
3950
|
label?: string | undefined;
|
|
3781
|
-
color?: "success" | "
|
|
3782
|
-
align?: "
|
|
3951
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3952
|
+
align?: "center" | "left" | undefined;
|
|
3783
3953
|
leftBar?: boolean | undefined;
|
|
3784
3954
|
} | undefined;
|
|
3785
|
-
accentColor?: "success" | "
|
|
3955
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3786
3956
|
style?: {
|
|
3787
3957
|
bgColor?: string | undefined;
|
|
3788
3958
|
decorations?: boolean | undefined;
|
|
@@ -3795,7 +3965,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3795
3965
|
label: string;
|
|
3796
3966
|
value?: string | undefined;
|
|
3797
3967
|
description?: string | undefined;
|
|
3798
|
-
color?: "success" | "
|
|
3968
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3799
3969
|
}[];
|
|
3800
3970
|
layout: "funnel";
|
|
3801
3971
|
stepLabel?: string | undefined;
|
|
@@ -3803,11 +3973,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3803
3973
|
callout?: {
|
|
3804
3974
|
text: string;
|
|
3805
3975
|
label?: string | undefined;
|
|
3806
|
-
color?: "success" | "
|
|
3807
|
-
align?: "
|
|
3976
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3977
|
+
align?: "center" | "left" | undefined;
|
|
3808
3978
|
leftBar?: boolean | undefined;
|
|
3809
3979
|
} | undefined;
|
|
3810
|
-
accentColor?: "success" | "
|
|
3980
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3811
3981
|
style?: {
|
|
3812
3982
|
bgColor?: string | undefined;
|
|
3813
3983
|
decorations?: boolean | undefined;
|
|
@@ -3820,7 +3990,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3820
3990
|
label: string;
|
|
3821
3991
|
value: number;
|
|
3822
3992
|
isTotal?: boolean | undefined;
|
|
3823
|
-
color?: "success" | "
|
|
3993
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3824
3994
|
}[];
|
|
3825
3995
|
layout: "waterfall";
|
|
3826
3996
|
stepLabel?: string | undefined;
|
|
@@ -3829,11 +3999,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3829
3999
|
callout?: {
|
|
3830
4000
|
text: string;
|
|
3831
4001
|
label?: string | undefined;
|
|
3832
|
-
color?: "success" | "
|
|
3833
|
-
align?: "
|
|
4002
|
+
color?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
4003
|
+
align?: "center" | "left" | undefined;
|
|
3834
4004
|
leftBar?: boolean | undefined;
|
|
3835
4005
|
} | undefined;
|
|
3836
|
-
accentColor?: "success" | "
|
|
4006
|
+
accentColor?: "success" | "info" | "primary" | "accent" | "warning" | "danger" | "highlight" | undefined;
|
|
3837
4007
|
style?: {
|
|
3838
4008
|
bgColor?: string | undefined;
|
|
3839
4009
|
decorations?: boolean | undefined;
|
|
@@ -3890,181 +4060,11 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
3890
4060
|
kind: "path";
|
|
3891
4061
|
path: string;
|
|
3892
4062
|
};
|
|
3893
|
-
size?: "
|
|
4063
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
3894
4064
|
opacity?: number | undefined;
|
|
3895
4065
|
bgOpacity?: number | undefined;
|
|
3896
4066
|
} | undefined;
|
|
3897
4067
|
} | 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
4068
|
} | undefined;
|
|
4069
4069
|
audio?: {
|
|
4070
4070
|
type: "audio";
|
|
@@ -4419,7 +4419,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
4419
4419
|
kind: "path";
|
|
4420
4420
|
path: string;
|
|
4421
4421
|
};
|
|
4422
|
-
size?: "
|
|
4422
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
4423
4423
|
opacity?: number | undefined;
|
|
4424
4424
|
bgOpacity?: number | undefined;
|
|
4425
4425
|
} | undefined;
|
|
@@ -4597,7 +4597,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
4597
4597
|
kind: "path";
|
|
4598
4598
|
path: string;
|
|
4599
4599
|
};
|
|
4600
|
-
size?: "
|
|
4600
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
4601
4601
|
opacity?: number | undefined;
|
|
4602
4602
|
} | null | undefined;
|
|
4603
4603
|
concurrency?: number | undefined;
|
|
@@ -4858,7 +4858,7 @@ export declare const initializeContextFromFiles: (files: FileObject, raiseError:
|
|
|
4858
4858
|
kind: "path";
|
|
4859
4859
|
path: string;
|
|
4860
4860
|
};
|
|
4861
|
-
size?: "
|
|
4861
|
+
size?: "cover" | "contain" | "fill" | "auto" | undefined;
|
|
4862
4862
|
opacity?: number | undefined;
|
|
4863
4863
|
bgOpacity?: number | undefined;
|
|
4864
4864
|
} | undefined;
|