@explorer-1/vue 0.2.64 → 0.2.66
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/components.d.ts +1 -1
- package/dist/explorer-1-vue.js +3787 -3764
- package/dist/explorer-1-vue.umd.cjs +14 -14
- package/dist/src/components/BlockRichTable/BlockRichTable.stories.d.ts +129 -0
- package/dist/src/components/BlockStreamfield/BlockStreamfield.stories.d.ts +125 -1
- package/dist/src/components/SearchFilterGroup/SearchFilterGroup.vue.d.ts +9 -0
- package/dist/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.d.ts +336 -3
- package/dist/src/templates/edu/PageEduStudentProject/PageEduStudentProject.stories.d.ts +195 -2
- package/dist/src/templates/www/PageAsteroidWatchIndex/PageAsteroidWatchIndex.stories.d.ts +112 -1
- package/dist/style.css +1 -1
- package/lib/main.ts +0 -2
- package/package.json +2 -2
- package/src/components/BlockHeading/BlockHeading.vue +1 -1
- package/src/components/BlockKeyPoints/BlockKeyPoints.vue +1 -1
- package/src/components/BlockRichTable/BlockRichTable.stories.js +23 -4
- package/src/components/BlockRichTable/BlockRichTable.vue +10 -10
- package/src/components/BlockStreamfield/BlockStreamfield.stories.js +9 -4
- package/src/components/BlockStreamfield/BlockStreamfield.vue +4 -12
- package/src/components/BlockText/BlockText.stories.js +51 -2
- package/src/components/NavDesktop/NavDesktopTopHat.vue +12 -2
- package/src/components/NavJumpMenu/NavJumpMenu.stories.js +17 -0
- package/src/components/NavJumpMenu/NavJumpMenu.vue +1 -0
- package/src/components/NavSearchForm/NavSearchForm.vue +6 -1
- package/src/components/NavSecondary/NavSecondary.vue +4 -3
- package/src/components/NavSecondary/NavSecondaryDropdownContent.vue +4 -2
- package/src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.vue +2 -2
- package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.vue +2 -2
- package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue +0 -13
- package/src/templates/edu/PageEduStudentProject/PageEduStudentProject.stories.js +13 -2
- package/src/templates/edu/PageEduStudentProject/PageEduStudentProject.vue +2 -2
- package/src/templates/edu/PageEduStudentProject/PageEduStudentProjectSection.vue +25 -4
- package/dist/src/components/BlockTable/BlockTable.stories.d.ts +0 -17
- package/dist/src/components/BlockTable/BlockTable.vue.d.ts +0 -17
- package/src/components/BlockTable/BlockTable.stories.js +0 -20
- package/src/components/BlockTable/BlockTable.vue +0 -69
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { default as BlockRichTable } from './BlockRichTable.vue';
|
|
2
|
+
declare namespace _default {
|
|
3
|
+
export let title: string;
|
|
4
|
+
export { BlockRichTable as component };
|
|
5
|
+
export let tags: string[];
|
|
6
|
+
export let excludeStories: RegExp;
|
|
7
|
+
}
|
|
8
|
+
export default _default;
|
|
9
|
+
export namespace BlockRichTableData {
|
|
10
|
+
let blockType: string;
|
|
11
|
+
let tableCaption: string;
|
|
12
|
+
namespace tableContent {
|
|
13
|
+
let tableHead: {
|
|
14
|
+
text: string;
|
|
15
|
+
}[][];
|
|
16
|
+
let tableBody: ({
|
|
17
|
+
caption: string;
|
|
18
|
+
displayCaption: boolean;
|
|
19
|
+
blockType: string;
|
|
20
|
+
fullBleed: boolean;
|
|
21
|
+
image: {
|
|
22
|
+
alt: string;
|
|
23
|
+
caption: string;
|
|
24
|
+
credit: string;
|
|
25
|
+
detailUrl: string;
|
|
26
|
+
original: string;
|
|
27
|
+
src: {
|
|
28
|
+
height: number;
|
|
29
|
+
url: string;
|
|
30
|
+
width: number;
|
|
31
|
+
};
|
|
32
|
+
srcSet: string;
|
|
33
|
+
};
|
|
34
|
+
imageFullBleed: {
|
|
35
|
+
alt: string;
|
|
36
|
+
caption: string;
|
|
37
|
+
credit: string;
|
|
38
|
+
detailUrl: string;
|
|
39
|
+
original: string;
|
|
40
|
+
src: {
|
|
41
|
+
width: number;
|
|
42
|
+
height: number;
|
|
43
|
+
url: string;
|
|
44
|
+
};
|
|
45
|
+
srcCropped: {
|
|
46
|
+
width: number;
|
|
47
|
+
height: number;
|
|
48
|
+
url: string;
|
|
49
|
+
};
|
|
50
|
+
screenXs: {
|
|
51
|
+
url: string;
|
|
52
|
+
width: number;
|
|
53
|
+
};
|
|
54
|
+
screenLg: {
|
|
55
|
+
url: string;
|
|
56
|
+
width: number;
|
|
57
|
+
};
|
|
58
|
+
screenXl: {
|
|
59
|
+
url: string;
|
|
60
|
+
width: number;
|
|
61
|
+
};
|
|
62
|
+
screenThreexl: {
|
|
63
|
+
url: string;
|
|
64
|
+
width: number;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
value?: undefined;
|
|
68
|
+
} | {
|
|
69
|
+
blockType: string;
|
|
70
|
+
fullBleed: boolean;
|
|
71
|
+
image: {
|
|
72
|
+
alt: string;
|
|
73
|
+
caption: string;
|
|
74
|
+
credit: string;
|
|
75
|
+
detailUrl: string;
|
|
76
|
+
original: string;
|
|
77
|
+
src: {
|
|
78
|
+
height: number;
|
|
79
|
+
url: string;
|
|
80
|
+
width: number;
|
|
81
|
+
};
|
|
82
|
+
srcSet: string;
|
|
83
|
+
};
|
|
84
|
+
imageFullBleed: {
|
|
85
|
+
alt: string;
|
|
86
|
+
caption: string;
|
|
87
|
+
credit: string;
|
|
88
|
+
detailUrl: string;
|
|
89
|
+
original: string;
|
|
90
|
+
src: {
|
|
91
|
+
width: number;
|
|
92
|
+
height: number;
|
|
93
|
+
url: string;
|
|
94
|
+
};
|
|
95
|
+
srcCropped: {
|
|
96
|
+
width: number;
|
|
97
|
+
height: number;
|
|
98
|
+
url: string;
|
|
99
|
+
};
|
|
100
|
+
screenXs: {
|
|
101
|
+
url: string;
|
|
102
|
+
width: number;
|
|
103
|
+
};
|
|
104
|
+
screenLg: {
|
|
105
|
+
url: string;
|
|
106
|
+
width: number;
|
|
107
|
+
};
|
|
108
|
+
screenXl: {
|
|
109
|
+
url: string;
|
|
110
|
+
width: number;
|
|
111
|
+
};
|
|
112
|
+
screenThreexl: {
|
|
113
|
+
url: string;
|
|
114
|
+
width: number;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
value?: undefined;
|
|
118
|
+
} | {
|
|
119
|
+
blockType: string;
|
|
120
|
+
value: string;
|
|
121
|
+
})[][];
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
export namespace BaseStory {
|
|
125
|
+
let name: string;
|
|
126
|
+
namespace args {
|
|
127
|
+
export { BlockRichTableData as table };
|
|
128
|
+
}
|
|
129
|
+
}
|
|
@@ -10,6 +10,15 @@ declare namespace _default {
|
|
|
10
10
|
}
|
|
11
11
|
let options: string[];
|
|
12
12
|
}
|
|
13
|
+
namespace size {
|
|
14
|
+
export namespace control_1 {
|
|
15
|
+
let type_1: string;
|
|
16
|
+
export { type_1 as type };
|
|
17
|
+
}
|
|
18
|
+
export { control_1 as control };
|
|
19
|
+
let options_1: string[];
|
|
20
|
+
export { options_1 as options };
|
|
21
|
+
}
|
|
13
22
|
}
|
|
14
23
|
export namespace parameters {
|
|
15
24
|
let layout: string;
|
|
@@ -394,7 +403,118 @@ export namespace BlockStreamfieldData {
|
|
|
394
403
|
})[];
|
|
395
404
|
} | {
|
|
396
405
|
blockType: string;
|
|
397
|
-
|
|
406
|
+
tableCaption: string;
|
|
407
|
+
tableContent: {
|
|
408
|
+
tableHead: {
|
|
409
|
+
text: string;
|
|
410
|
+
}[][];
|
|
411
|
+
tableBody: ({
|
|
412
|
+
caption: string;
|
|
413
|
+
displayCaption: boolean;
|
|
414
|
+
blockType: string;
|
|
415
|
+
fullBleed: boolean;
|
|
416
|
+
image: {
|
|
417
|
+
alt: string;
|
|
418
|
+
caption: string;
|
|
419
|
+
credit: string;
|
|
420
|
+
detailUrl: string;
|
|
421
|
+
original: string;
|
|
422
|
+
src: {
|
|
423
|
+
height: number;
|
|
424
|
+
url: string;
|
|
425
|
+
width: number;
|
|
426
|
+
};
|
|
427
|
+
srcSet: string;
|
|
428
|
+
};
|
|
429
|
+
imageFullBleed: {
|
|
430
|
+
alt: string;
|
|
431
|
+
caption: string;
|
|
432
|
+
credit: string;
|
|
433
|
+
detailUrl: string;
|
|
434
|
+
original: string;
|
|
435
|
+
src: {
|
|
436
|
+
width: number;
|
|
437
|
+
height: number;
|
|
438
|
+
url: string;
|
|
439
|
+
};
|
|
440
|
+
srcCropped: {
|
|
441
|
+
width: number;
|
|
442
|
+
height: number;
|
|
443
|
+
url: string;
|
|
444
|
+
};
|
|
445
|
+
screenXs: {
|
|
446
|
+
url: string;
|
|
447
|
+
width: number;
|
|
448
|
+
};
|
|
449
|
+
screenLg: {
|
|
450
|
+
url: string;
|
|
451
|
+
width: number;
|
|
452
|
+
};
|
|
453
|
+
screenXl: {
|
|
454
|
+
url: string;
|
|
455
|
+
width: number;
|
|
456
|
+
};
|
|
457
|
+
screenThreexl: {
|
|
458
|
+
url: string;
|
|
459
|
+
width: number;
|
|
460
|
+
};
|
|
461
|
+
};
|
|
462
|
+
value?: undefined;
|
|
463
|
+
} | {
|
|
464
|
+
blockType: string;
|
|
465
|
+
fullBleed: boolean;
|
|
466
|
+
image: {
|
|
467
|
+
alt: string;
|
|
468
|
+
caption: string;
|
|
469
|
+
credit: string;
|
|
470
|
+
detailUrl: string;
|
|
471
|
+
original: string;
|
|
472
|
+
src: {
|
|
473
|
+
height: number;
|
|
474
|
+
url: string;
|
|
475
|
+
width: number;
|
|
476
|
+
};
|
|
477
|
+
srcSet: string;
|
|
478
|
+
};
|
|
479
|
+
imageFullBleed: {
|
|
480
|
+
alt: string;
|
|
481
|
+
caption: string;
|
|
482
|
+
credit: string;
|
|
483
|
+
detailUrl: string;
|
|
484
|
+
original: string;
|
|
485
|
+
src: {
|
|
486
|
+
width: number;
|
|
487
|
+
height: number;
|
|
488
|
+
url: string;
|
|
489
|
+
};
|
|
490
|
+
srcCropped: {
|
|
491
|
+
width: number;
|
|
492
|
+
height: number;
|
|
493
|
+
url: string;
|
|
494
|
+
};
|
|
495
|
+
screenXs: {
|
|
496
|
+
url: string;
|
|
497
|
+
width: number;
|
|
498
|
+
};
|
|
499
|
+
screenLg: {
|
|
500
|
+
url: string;
|
|
501
|
+
width: number;
|
|
502
|
+
};
|
|
503
|
+
screenXl: {
|
|
504
|
+
url: string;
|
|
505
|
+
width: number;
|
|
506
|
+
};
|
|
507
|
+
screenThreexl: {
|
|
508
|
+
url: string;
|
|
509
|
+
width: number;
|
|
510
|
+
};
|
|
511
|
+
};
|
|
512
|
+
value?: undefined;
|
|
513
|
+
} | {
|
|
514
|
+
blockType: string;
|
|
515
|
+
value: string;
|
|
516
|
+
})[][];
|
|
517
|
+
};
|
|
398
518
|
} | {
|
|
399
519
|
blockType: string;
|
|
400
520
|
title: string;
|
|
@@ -606,6 +726,8 @@ export namespace BaseStory {
|
|
|
606
726
|
export { data };
|
|
607
727
|
let variant_1: string;
|
|
608
728
|
export { variant_1 as variant };
|
|
729
|
+
let size_1: string;
|
|
730
|
+
export { size_1 as size };
|
|
609
731
|
}
|
|
610
732
|
}
|
|
611
733
|
export namespace MatchingWidths {
|
|
@@ -614,6 +736,8 @@ export namespace MatchingWidths {
|
|
|
614
736
|
export { data_1 as data };
|
|
615
737
|
let variant_2: string;
|
|
616
738
|
export { variant_2 as variant };
|
|
739
|
+
let size_2: string;
|
|
740
|
+
export { size_2 as size };
|
|
617
741
|
}
|
|
618
742
|
export { args_1 as args };
|
|
619
743
|
}
|
|
@@ -35,6 +35,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
35
35
|
type: StringConstructor;
|
|
36
36
|
default: undefined;
|
|
37
37
|
};
|
|
38
|
+
styleAsAccordion: {
|
|
39
|
+
type: BooleanConstructor;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
38
42
|
}>, {}, {
|
|
39
43
|
checkbox: {
|
|
40
44
|
checkboxLimit: number;
|
|
@@ -104,6 +108,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
104
108
|
type: StringConstructor;
|
|
105
109
|
default: undefined;
|
|
106
110
|
};
|
|
111
|
+
styleAsAccordion: {
|
|
112
|
+
type: BooleanConstructor;
|
|
113
|
+
default: boolean;
|
|
114
|
+
};
|
|
107
115
|
}>> & Readonly<{
|
|
108
116
|
"onUpdate:filterBy"?: ((...args: any[]) => any) | undefined;
|
|
109
117
|
}>, {
|
|
@@ -114,6 +122,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
114
122
|
truncateFilters: boolean;
|
|
115
123
|
subFilters: SubFiltersObject;
|
|
116
124
|
subFilterAggKey: string;
|
|
125
|
+
styleAsAccordion: boolean;
|
|
117
126
|
}, {}, {
|
|
118
127
|
SearchFilterGroupAccordionItem: {
|
|
119
128
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -307,7 +307,118 @@ export namespace BaseStory {
|
|
|
307
307
|
})[];
|
|
308
308
|
} | {
|
|
309
309
|
blockType: string;
|
|
310
|
-
|
|
310
|
+
tableCaption: string;
|
|
311
|
+
tableContent: {
|
|
312
|
+
tableHead: {
|
|
313
|
+
text: string;
|
|
314
|
+
}[][];
|
|
315
|
+
tableBody: ({
|
|
316
|
+
caption: string;
|
|
317
|
+
displayCaption: boolean;
|
|
318
|
+
blockType: string;
|
|
319
|
+
fullBleed: boolean;
|
|
320
|
+
image: {
|
|
321
|
+
alt: string;
|
|
322
|
+
caption: string;
|
|
323
|
+
credit: string;
|
|
324
|
+
detailUrl: string;
|
|
325
|
+
original: string;
|
|
326
|
+
src: {
|
|
327
|
+
height: number;
|
|
328
|
+
url: string;
|
|
329
|
+
width: number;
|
|
330
|
+
};
|
|
331
|
+
srcSet: string;
|
|
332
|
+
};
|
|
333
|
+
imageFullBleed: {
|
|
334
|
+
alt: string;
|
|
335
|
+
caption: string;
|
|
336
|
+
credit: string;
|
|
337
|
+
detailUrl: string;
|
|
338
|
+
original: string;
|
|
339
|
+
src: {
|
|
340
|
+
width: number;
|
|
341
|
+
height: number;
|
|
342
|
+
url: string;
|
|
343
|
+
};
|
|
344
|
+
srcCropped: {
|
|
345
|
+
width: number;
|
|
346
|
+
height: number;
|
|
347
|
+
url: string;
|
|
348
|
+
};
|
|
349
|
+
screenXs: {
|
|
350
|
+
url: string;
|
|
351
|
+
width: number;
|
|
352
|
+
};
|
|
353
|
+
screenLg: {
|
|
354
|
+
url: string;
|
|
355
|
+
width: number;
|
|
356
|
+
};
|
|
357
|
+
screenXl: {
|
|
358
|
+
url: string;
|
|
359
|
+
width: number;
|
|
360
|
+
};
|
|
361
|
+
screenThreexl: {
|
|
362
|
+
url: string;
|
|
363
|
+
width: number;
|
|
364
|
+
};
|
|
365
|
+
};
|
|
366
|
+
value?: undefined;
|
|
367
|
+
} | {
|
|
368
|
+
blockType: string;
|
|
369
|
+
fullBleed: boolean;
|
|
370
|
+
image: {
|
|
371
|
+
alt: string;
|
|
372
|
+
caption: string;
|
|
373
|
+
credit: string;
|
|
374
|
+
detailUrl: string;
|
|
375
|
+
original: string;
|
|
376
|
+
src: {
|
|
377
|
+
height: number;
|
|
378
|
+
url: string;
|
|
379
|
+
width: number;
|
|
380
|
+
};
|
|
381
|
+
srcSet: string;
|
|
382
|
+
};
|
|
383
|
+
imageFullBleed: {
|
|
384
|
+
alt: string;
|
|
385
|
+
caption: string;
|
|
386
|
+
credit: string;
|
|
387
|
+
detailUrl: string;
|
|
388
|
+
original: string;
|
|
389
|
+
src: {
|
|
390
|
+
width: number;
|
|
391
|
+
height: number;
|
|
392
|
+
url: string;
|
|
393
|
+
};
|
|
394
|
+
srcCropped: {
|
|
395
|
+
width: number;
|
|
396
|
+
height: number;
|
|
397
|
+
url: string;
|
|
398
|
+
};
|
|
399
|
+
screenXs: {
|
|
400
|
+
url: string;
|
|
401
|
+
width: number;
|
|
402
|
+
};
|
|
403
|
+
screenLg: {
|
|
404
|
+
url: string;
|
|
405
|
+
width: number;
|
|
406
|
+
};
|
|
407
|
+
screenXl: {
|
|
408
|
+
url: string;
|
|
409
|
+
width: number;
|
|
410
|
+
};
|
|
411
|
+
screenThreexl: {
|
|
412
|
+
url: string;
|
|
413
|
+
width: number;
|
|
414
|
+
};
|
|
415
|
+
};
|
|
416
|
+
value?: undefined;
|
|
417
|
+
} | {
|
|
418
|
+
blockType: string;
|
|
419
|
+
value: string;
|
|
420
|
+
})[][];
|
|
421
|
+
};
|
|
311
422
|
} | {
|
|
312
423
|
blockType: string;
|
|
313
424
|
title: string;
|
|
@@ -887,7 +998,118 @@ export namespace InlineHero {
|
|
|
887
998
|
})[];
|
|
888
999
|
} | {
|
|
889
1000
|
blockType: string;
|
|
890
|
-
|
|
1001
|
+
tableCaption: string;
|
|
1002
|
+
tableContent: {
|
|
1003
|
+
tableHead: {
|
|
1004
|
+
text: string;
|
|
1005
|
+
}[][];
|
|
1006
|
+
tableBody: ({
|
|
1007
|
+
caption: string;
|
|
1008
|
+
displayCaption: boolean;
|
|
1009
|
+
blockType: string;
|
|
1010
|
+
fullBleed: boolean;
|
|
1011
|
+
image: {
|
|
1012
|
+
alt: string;
|
|
1013
|
+
caption: string;
|
|
1014
|
+
credit: string;
|
|
1015
|
+
detailUrl: string;
|
|
1016
|
+
original: string;
|
|
1017
|
+
src: {
|
|
1018
|
+
height: number;
|
|
1019
|
+
url: string;
|
|
1020
|
+
width: number;
|
|
1021
|
+
};
|
|
1022
|
+
srcSet: string;
|
|
1023
|
+
};
|
|
1024
|
+
imageFullBleed: {
|
|
1025
|
+
alt: string;
|
|
1026
|
+
caption: string;
|
|
1027
|
+
credit: string;
|
|
1028
|
+
detailUrl: string;
|
|
1029
|
+
original: string;
|
|
1030
|
+
src: {
|
|
1031
|
+
width: number;
|
|
1032
|
+
height: number;
|
|
1033
|
+
url: string;
|
|
1034
|
+
};
|
|
1035
|
+
srcCropped: {
|
|
1036
|
+
width: number;
|
|
1037
|
+
height: number;
|
|
1038
|
+
url: string;
|
|
1039
|
+
};
|
|
1040
|
+
screenXs: {
|
|
1041
|
+
url: string;
|
|
1042
|
+
width: number;
|
|
1043
|
+
};
|
|
1044
|
+
screenLg: {
|
|
1045
|
+
url: string;
|
|
1046
|
+
width: number;
|
|
1047
|
+
};
|
|
1048
|
+
screenXl: {
|
|
1049
|
+
url: string;
|
|
1050
|
+
width: number;
|
|
1051
|
+
};
|
|
1052
|
+
screenThreexl: {
|
|
1053
|
+
url: string;
|
|
1054
|
+
width: number;
|
|
1055
|
+
};
|
|
1056
|
+
};
|
|
1057
|
+
value?: undefined;
|
|
1058
|
+
} | {
|
|
1059
|
+
blockType: string;
|
|
1060
|
+
fullBleed: boolean;
|
|
1061
|
+
image: {
|
|
1062
|
+
alt: string;
|
|
1063
|
+
caption: string;
|
|
1064
|
+
credit: string;
|
|
1065
|
+
detailUrl: string;
|
|
1066
|
+
original: string;
|
|
1067
|
+
src: {
|
|
1068
|
+
height: number;
|
|
1069
|
+
url: string;
|
|
1070
|
+
width: number;
|
|
1071
|
+
};
|
|
1072
|
+
srcSet: string;
|
|
1073
|
+
};
|
|
1074
|
+
imageFullBleed: {
|
|
1075
|
+
alt: string;
|
|
1076
|
+
caption: string;
|
|
1077
|
+
credit: string;
|
|
1078
|
+
detailUrl: string;
|
|
1079
|
+
original: string;
|
|
1080
|
+
src: {
|
|
1081
|
+
width: number;
|
|
1082
|
+
height: number;
|
|
1083
|
+
url: string;
|
|
1084
|
+
};
|
|
1085
|
+
srcCropped: {
|
|
1086
|
+
width: number;
|
|
1087
|
+
height: number;
|
|
1088
|
+
url: string;
|
|
1089
|
+
};
|
|
1090
|
+
screenXs: {
|
|
1091
|
+
url: string;
|
|
1092
|
+
width: number;
|
|
1093
|
+
};
|
|
1094
|
+
screenLg: {
|
|
1095
|
+
url: string;
|
|
1096
|
+
width: number;
|
|
1097
|
+
};
|
|
1098
|
+
screenXl: {
|
|
1099
|
+
url: string;
|
|
1100
|
+
width: number;
|
|
1101
|
+
};
|
|
1102
|
+
screenThreexl: {
|
|
1103
|
+
url: string;
|
|
1104
|
+
width: number;
|
|
1105
|
+
};
|
|
1106
|
+
};
|
|
1107
|
+
value?: undefined;
|
|
1108
|
+
} | {
|
|
1109
|
+
blockType: string;
|
|
1110
|
+
value: string;
|
|
1111
|
+
})[][];
|
|
1112
|
+
};
|
|
891
1113
|
} | {
|
|
892
1114
|
blockType: string;
|
|
893
1115
|
title: string;
|
|
@@ -1467,7 +1689,118 @@ export namespace NoHero {
|
|
|
1467
1689
|
})[];
|
|
1468
1690
|
} | {
|
|
1469
1691
|
blockType: string;
|
|
1470
|
-
|
|
1692
|
+
tableCaption: string;
|
|
1693
|
+
tableContent: {
|
|
1694
|
+
tableHead: {
|
|
1695
|
+
text: string;
|
|
1696
|
+
}[][];
|
|
1697
|
+
tableBody: ({
|
|
1698
|
+
caption: string;
|
|
1699
|
+
displayCaption: boolean;
|
|
1700
|
+
blockType: string;
|
|
1701
|
+
fullBleed: boolean;
|
|
1702
|
+
image: {
|
|
1703
|
+
alt: string;
|
|
1704
|
+
caption: string;
|
|
1705
|
+
credit: string;
|
|
1706
|
+
detailUrl: string;
|
|
1707
|
+
original: string;
|
|
1708
|
+
src: {
|
|
1709
|
+
height: number;
|
|
1710
|
+
url: string;
|
|
1711
|
+
width: number;
|
|
1712
|
+
};
|
|
1713
|
+
srcSet: string;
|
|
1714
|
+
};
|
|
1715
|
+
imageFullBleed: {
|
|
1716
|
+
alt: string;
|
|
1717
|
+
caption: string;
|
|
1718
|
+
credit: string;
|
|
1719
|
+
detailUrl: string;
|
|
1720
|
+
original: string;
|
|
1721
|
+
src: {
|
|
1722
|
+
width: number;
|
|
1723
|
+
height: number;
|
|
1724
|
+
url: string;
|
|
1725
|
+
};
|
|
1726
|
+
srcCropped: {
|
|
1727
|
+
width: number;
|
|
1728
|
+
height: number;
|
|
1729
|
+
url: string;
|
|
1730
|
+
};
|
|
1731
|
+
screenXs: {
|
|
1732
|
+
url: string;
|
|
1733
|
+
width: number;
|
|
1734
|
+
};
|
|
1735
|
+
screenLg: {
|
|
1736
|
+
url: string;
|
|
1737
|
+
width: number;
|
|
1738
|
+
};
|
|
1739
|
+
screenXl: {
|
|
1740
|
+
url: string;
|
|
1741
|
+
width: number;
|
|
1742
|
+
};
|
|
1743
|
+
screenThreexl: {
|
|
1744
|
+
url: string;
|
|
1745
|
+
width: number;
|
|
1746
|
+
};
|
|
1747
|
+
};
|
|
1748
|
+
value?: undefined;
|
|
1749
|
+
} | {
|
|
1750
|
+
blockType: string;
|
|
1751
|
+
fullBleed: boolean;
|
|
1752
|
+
image: {
|
|
1753
|
+
alt: string;
|
|
1754
|
+
caption: string;
|
|
1755
|
+
credit: string;
|
|
1756
|
+
detailUrl: string;
|
|
1757
|
+
original: string;
|
|
1758
|
+
src: {
|
|
1759
|
+
height: number;
|
|
1760
|
+
url: string;
|
|
1761
|
+
width: number;
|
|
1762
|
+
};
|
|
1763
|
+
srcSet: string;
|
|
1764
|
+
};
|
|
1765
|
+
imageFullBleed: {
|
|
1766
|
+
alt: string;
|
|
1767
|
+
caption: string;
|
|
1768
|
+
credit: string;
|
|
1769
|
+
detailUrl: string;
|
|
1770
|
+
original: string;
|
|
1771
|
+
src: {
|
|
1772
|
+
width: number;
|
|
1773
|
+
height: number;
|
|
1774
|
+
url: string;
|
|
1775
|
+
};
|
|
1776
|
+
srcCropped: {
|
|
1777
|
+
width: number;
|
|
1778
|
+
height: number;
|
|
1779
|
+
url: string;
|
|
1780
|
+
};
|
|
1781
|
+
screenXs: {
|
|
1782
|
+
url: string;
|
|
1783
|
+
width: number;
|
|
1784
|
+
};
|
|
1785
|
+
screenLg: {
|
|
1786
|
+
url: string;
|
|
1787
|
+
width: number;
|
|
1788
|
+
};
|
|
1789
|
+
screenXl: {
|
|
1790
|
+
url: string;
|
|
1791
|
+
width: number;
|
|
1792
|
+
};
|
|
1793
|
+
screenThreexl: {
|
|
1794
|
+
url: string;
|
|
1795
|
+
width: number;
|
|
1796
|
+
};
|
|
1797
|
+
};
|
|
1798
|
+
value?: undefined;
|
|
1799
|
+
} | {
|
|
1800
|
+
blockType: string;
|
|
1801
|
+
value: string;
|
|
1802
|
+
})[][];
|
|
1803
|
+
};
|
|
1471
1804
|
} | {
|
|
1472
1805
|
blockType: string;
|
|
1473
1806
|
title: string;
|