@explorer-1/vue 0.2.3 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/components.d.ts +6 -3
  2. package/dist/explorer-1-vue.js +5603 -5375
  3. package/dist/explorer-1-vue.umd.cjs +12 -12
  4. package/dist/src/components/BlockCardGrid/BlockCardGrid.stories.d.ts +60 -0
  5. package/dist/src/components/BlockCardGrid/BlockCardGrid.vue.d.ts +33 -0
  6. package/dist/src/components/{BlockCard/BlockCard.stories.d.ts → BlockCardGridItem/BlockCardGridItem.stories.d.ts} +18 -4
  7. package/dist/src/components/{BlockCardGroup/BlockCardGroup.vue.d.ts → BlockCardGridItem/BlockCardGridItem.vue.d.ts} +10 -12
  8. package/dist/src/components/{BlockCard/BlockCard.vue.d.ts → BlockCardGridItem/BlockCardGridItemElement.vue.d.ts} +20 -14
  9. package/dist/src/components/BlockCircleImageCard/BlockCircleImageCard.stories.d.ts +1 -0
  10. package/dist/src/components/BlockHeading/BlockHeading.vue.d.ts +25 -2
  11. package/dist/src/components/BlockLinkCard/BlockLinkCard.stories.d.ts +1 -0
  12. package/dist/src/components/BlockLinkTile/BlockLinkTile.stories.d.ts +1 -0
  13. package/dist/src/components/BlockListCards/BlockListCards.stories.d.ts +1 -0
  14. package/dist/src/components/BlockStreamfield/BlockStreamfield.stories.d.ts +60 -0
  15. package/dist/src/components/BlockStreamfield/BlockStreamfield.vue.d.ts +2 -3
  16. package/dist/src/components/DetailHeadline/DetailHeadline.stories.d.ts +30 -1
  17. package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +37 -0
  18. package/dist/src/components/LayoutHelper/LayoutHelper.vue.d.ts +9 -0
  19. package/dist/src/components/NavDesktop/NavDesktop.stories.d.ts +3 -0
  20. package/dist/src/components/NavDesktop/NavDesktop.vue.d.ts +1 -0
  21. package/dist/src/components/NavDesktop/NavDesktopDropdown.vue.d.ts +1 -0
  22. package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +1 -0
  23. package/dist/src/components/NavDropdownToggle/NavDropdownToggle.vue.d.ts +19 -6
  24. package/dist/src/components/NavJumpMenu/NavJumpMenu.stories.d.ts +31 -0
  25. package/dist/src/components/NavMobile/NavMobile.stories.d.ts +30 -3
  26. package/dist/src/components/NavMobile/NavMobile.vue.d.ts +1 -0
  27. package/dist/src/components/NavMobile/NavMobileDropdown.vue.d.ts +9 -1
  28. package/dist/src/components/NavMobile/NavMobileEdu.stories.d.ts +3 -0
  29. package/dist/src/components/NavMobile/NavMobileSecondaryDropdown.vue.d.ts +7 -0
  30. package/dist/src/components/NavSecondary/NavSecondary.stories.d.ts +8 -0
  31. package/dist/src/components/NavSecondary/NavSecondary.vue.d.ts +23 -1
  32. package/dist/src/components/NavSecondary/NavSecondaryDropdown.vue.d.ts +33 -2
  33. package/dist/src/components/NavSecondary/NavSecondaryDropdownContent.vue.d.ts +11 -1
  34. package/dist/src/components/NavSecondary/NavSecondaryLink.vue.d.ts +21 -3
  35. package/dist/src/components/ThumbnailCarousel/ThumbnailCarousel.stories.d.ts +1 -0
  36. package/dist/src/docs/foundation/grid_layouthelpers.stories.d.ts +36 -0
  37. package/dist/src/interfaces.d.ts +13 -3
  38. package/dist/src/store/header.d.ts +2 -0
  39. package/dist/src/templates/PageNewsDetail/PageNewsDetail.stories.d.ts +8 -0
  40. package/dist/src/templates/edu/{PageEduResourceArticle/PageEduResourceArticle.stories.d.ts → PageEduExplainerArticle/PageEduExplainerArticle.stories.d.ts} +4 -2
  41. package/dist/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.d.ts +1007 -6
  42. package/dist/src/templates/www/PageAsteroidWatchIndex/PageAsteroidWatchIndex.stories.d.ts +60 -0
  43. package/dist/src/templates/www/PageRoboticsDetail/PageRoboticsDetail.stories.d.ts +29 -2
  44. package/dist/src/utils/eventBus.d.ts +1 -0
  45. package/dist/src/utils/getHeadingId.d.ts +1 -0
  46. package/dist/src/utils/mixins.d.ts +1 -1
  47. package/dist/style.css +1 -1
  48. package/package.json +3 -2
  49. package/src/components/BaseAudio/BaseAudio.vue +3 -4
  50. package/src/components/BaseLink/BaseLink.vue +2 -0
  51. package/src/components/BaseTag/BaseTag.vue +4 -4
  52. package/src/components/BlockHeading/BlockHeading.vue +28 -0
  53. package/src/components/BlockStreamfield/BlockStreamfield.vue +5 -1
  54. package/src/components/DetailHeadline/DetailHeadline.stories.js +28 -2
  55. package/src/components/DetailHeadline/DetailHeadline.vue +85 -32
  56. package/src/components/NavDesktop/NavDesktopDropdown.vue +2 -4
  57. package/src/components/NavDropdownToggle/NavDropdownToggle.vue +8 -3
  58. package/src/components/NavJumpMenu/NavJumpMenu.stories.js +47 -0
  59. package/src/components/NavJumpMenu/NavJumpMenu.vue +141 -0
  60. package/src/components/NavJumpMenu/NavJumpMenuContent.vue +74 -0
  61. package/src/components/NavMobile/NavMobile.vue +2 -4
  62. package/src/components/NavMobile/NavMobileDropdown.vue +8 -4
  63. package/src/components/NavMobile/NavMobileSecondaryDropdown.vue +4 -1
  64. package/src/components/NavSecondary/NavSecondary.stories.js +8 -3
  65. package/src/components/NavSecondary/NavSecondary.vue +26 -6
  66. package/src/components/NavSecondary/NavSecondaryDropdown.vue +52 -17
  67. package/src/components/NavSecondary/NavSecondaryDropdownContent.vue +5 -1
  68. package/src/components/NavSecondary/NavSecondaryLink.vue +38 -11
  69. package/src/interfaces.ts +7 -1
  70. package/src/store/header.ts +6 -1
  71. package/src/templates/PageNewsDetail/PageNewsDetail.stories.js +1 -0
  72. package/src/templates/PageNewsDetail/PageNewsDetail.vue +1 -0
  73. package/src/templates/edu/PageEduEventDetail/PageEduEventDetail.vue +2 -2
  74. package/src/templates/edu/{PageEduResourceArticle/PageEduResourceArticle.stories.js → PageEduExplainerArticle/PageEduExplainerArticle.stories.js} +8 -6
  75. package/src/templates/edu/{PageEduResourceArticle/PageEduResourceArticle.vue → PageEduExplainerArticle/PageEduExplainerArticle.vue} +5 -2
  76. package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.js +7 -4
  77. package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue +18 -2
  78. package/src/utils/eventBus.ts +3 -0
  79. package/src/utils/getHeadingId.ts +5 -0
  80. package/src/utils/mixins.ts +5 -1
  81. package/dist/src/components/BlockCardGroup/BlockCardGroup.stories.d.ts +0 -32
@@ -1,27 +1,40 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  path: {
3
3
  type: StringConstructor;
4
- required: false;
4
+ default: undefined;
5
5
  };
6
6
  ariaExpanded: {
7
7
  type: BooleanConstructor;
8
- required: false;
8
+ default: boolean;
9
+ };
10
+ invert: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
9
13
  };
10
14
  }, unknown, unknown, {
11
15
  isActivePath(): false | Boolean;
12
16
  }, {
13
17
  clickEvent(): void;
14
18
  escEvent(): void;
15
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
19
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("closeDropdown" | "toggleClicked")[], "closeDropdown" | "toggleClicked", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
16
20
  path: {
17
21
  type: StringConstructor;
18
- required: false;
22
+ default: undefined;
19
23
  };
20
24
  ariaExpanded: {
21
25
  type: BooleanConstructor;
22
- required: false;
26
+ default: boolean;
23
27
  };
24
- }>>, {
28
+ invert: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ }>> & {
33
+ onCloseDropdown?: ((...args: any[]) => any) | undefined;
34
+ onToggleClicked?: ((...args: any[]) => any) | undefined;
35
+ }, {
36
+ path: string;
37
+ invert: boolean;
25
38
  ariaExpanded: boolean;
26
39
  }, {}>;
27
40
  export default _default;
@@ -0,0 +1,31 @@
1
+ import { default as NavJumpMenu } from './NavJumpMenu.vue';
2
+ declare namespace _default {
3
+ export let title: string;
4
+ export { NavJumpMenu as component };
5
+ export let tags: string[];
6
+ export let excludeStories: RegExp;
7
+ }
8
+ export default _default;
9
+ export namespace BaseStory {
10
+ let name: string;
11
+ namespace args {
12
+ let title_1: string;
13
+ export { title_1 as title };
14
+ export { JumpLinksData as jumpLinks };
15
+ export let invert: boolean;
16
+ }
17
+ }
18
+ export namespace Light {
19
+ export namespace args_1 {
20
+ let title_2: string;
21
+ export { title_2 as title };
22
+ export { JumpLinksData as jumpLinks };
23
+ let invert_1: boolean;
24
+ export { invert_1 as invert };
25
+ }
26
+ export { args_1 as args };
27
+ }
28
+ declare const JumpLinksData: {
29
+ title: string;
30
+ path: string;
31
+ }[];
@@ -94,6 +94,7 @@ export namespace BaseStory {
94
94
  updateHighlightPrimary(value: boolean): void;
95
95
  updateGlobalChildren(value: any): void;
96
96
  updateSecondary(value: any): void;
97
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
97
98
  }>;
98
99
  }, {
99
100
  toggleMenu(): void;
@@ -205,6 +206,7 @@ export namespace WithSecondaryNav {
205
206
  updateHighlightPrimary(value: boolean): void;
206
207
  updateGlobalChildren(value: any): void;
207
208
  updateSecondary(value: any): void;
209
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
208
210
  }>;
209
211
  }, {
210
212
  toggleMenu(): void;
@@ -317,6 +319,7 @@ export namespace WithTertiaryNav {
317
319
  updateHighlightPrimary(value: boolean): void;
318
320
  updateGlobalChildren(value: any): void;
319
321
  updateSecondary(value: any): void;
322
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
320
323
  }>;
321
324
  }, {
322
325
  toggleMenu(): void;
@@ -393,7 +396,15 @@ export namespace Dropdown {
393
396
  }, unknown, {
394
397
  dropdownVisible: boolean;
395
398
  theDropdown: HTMLElement | null;
396
- }, {}, {
399
+ }, {
400
+ headerStore: () => import("pinia").Store<"header", import("../../store/header").State, {}, {
401
+ makeTransparent(value: boolean): void;
402
+ updateHighlightPrimary(value: boolean): void;
403
+ updateGlobalChildren(value: any): void;
404
+ updateSecondary(value: any): void;
405
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
406
+ }>;
407
+ }, {
397
408
  toggleDropdown(): void;
398
409
  closeDropdown(): void;
399
410
  openDropdown(): void;
@@ -451,7 +462,15 @@ export namespace DropdownActive {
451
462
  }, unknown, {
452
463
  dropdownVisible: boolean;
453
464
  theDropdown: HTMLElement | null;
454
- }, {}, {
465
+ }, {
466
+ headerStore: () => import("pinia").Store<"header", import("../../store/header").State, {}, {
467
+ makeTransparent(value: boolean): void;
468
+ updateHighlightPrimary(value: boolean): void;
469
+ updateGlobalChildren(value: any): void;
470
+ updateSecondary(value: any): void;
471
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
472
+ }>;
473
+ }, {
455
474
  toggleDropdown(): void;
456
475
  closeDropdown(): void;
457
476
  openDropdown(): void;
@@ -509,7 +528,15 @@ export namespace DropdownSecondary {
509
528
  }, unknown, {
510
529
  dropdownVisible: boolean;
511
530
  theDropdown: HTMLElement | null;
512
- }, {}, {
531
+ }, {
532
+ headerStore: () => import("pinia").Store<"header", import("../../store/header").State, {}, {
533
+ makeTransparent(value: boolean): void;
534
+ updateHighlightPrimary(value: boolean): void;
535
+ updateGlobalChildren(value: any): void;
536
+ updateSecondary(value: any): void;
537
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
538
+ }>;
539
+ }, {
513
540
  toggleDropdown(): void;
514
541
  closeDropdown(): void;
515
542
  openDropdown(): void;
@@ -47,6 +47,7 @@ declare const _default: import('vue').DefineComponent<{
47
47
  updateHighlightPrimary(value: boolean): void;
48
48
  updateGlobalChildren(value: any): void;
49
49
  updateSecondary(value: any): void;
50
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
50
51
  }>;
51
52
  }, {
52
53
  toggleMenu(): void;
@@ -18,7 +18,15 @@ declare const _default: import('vue').DefineComponent<{
18
18
  }, unknown, {
19
19
  dropdownVisible: boolean;
20
20
  theDropdown: HTMLElement | null;
21
- }, {}, {
21
+ }, {
22
+ headerStore: () => import('pinia').Store<"header", import('../../store/header').State, {}, {
23
+ makeTransparent(value: boolean): void;
24
+ updateHighlightPrimary(value: boolean): void;
25
+ updateGlobalChildren(value: any): void;
26
+ updateSecondary(value: any): void;
27
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
28
+ }>;
29
+ }, {
22
30
  toggleDropdown(): void;
23
31
  closeDropdown(): void;
24
32
  openDropdown(): void;
@@ -99,6 +99,7 @@ export namespace BaseStory {
99
99
  updateHighlightPrimary(value: boolean): void;
100
100
  updateGlobalChildren(value: any): void;
101
101
  updateSecondary(value: any): void;
102
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
102
103
  }>;
103
104
  }, {
104
105
  toggleMenu(): void;
@@ -210,6 +211,7 @@ export namespace WithSecondaryNav {
210
211
  updateHighlightPrimary(value: boolean): void;
211
212
  updateGlobalChildren(value: any): void;
212
213
  updateSecondary(value: any): void;
214
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
213
215
  }>;
214
216
  }, {
215
217
  toggleMenu(): void;
@@ -322,6 +324,7 @@ export namespace WithTertiaryNav {
322
324
  updateHighlightPrimary(value: boolean): void;
323
325
  updateGlobalChildren(value: any): void;
324
326
  updateSecondary(value: any): void;
327
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
325
328
  }>;
326
329
  }, {
327
330
  toggleMenu(): void;
@@ -11,6 +11,13 @@ declare const _default: import('vue').DefineComponent<{
11
11
  dropdownVisible: boolean;
12
12
  }, {
13
13
  startOpen(): Boolean;
14
+ headerStore: () => import('pinia').Store<"header", import('../../store/header').State, {}, {
15
+ makeTransparent(value: boolean): void;
16
+ updateHighlightPrimary(value: boolean): void;
17
+ updateGlobalChildren(value: any): void;
18
+ updateSecondary(value: any): void;
19
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
20
+ }>;
14
21
  }, {
15
22
  toggleDropdown(): void;
16
23
  closeDropdown(): void;
@@ -22,3 +22,11 @@ export namespace BaseStory {
22
22
  export { breadcrumb_1 as breadcrumb };
23
23
  }
24
24
  }
25
+ export namespace Inverted {
26
+ export namespace args_1 {
27
+ import breadcrumb_2 = NavSecondaryData.breadcrumb;
28
+ export { breadcrumb_2 as breadcrumb };
29
+ export let invert: boolean;
30
+ }
31
+ export { args_1 as args };
32
+ }
@@ -4,22 +4,36 @@ declare const _default: import('vue').DefineComponent<{
4
4
  breadcrumb: {
5
5
  type: StringConstructor;
6
6
  required: false;
7
+ default: undefined;
7
8
  };
8
9
  hasIntro: {
9
10
  type: BooleanConstructor;
10
11
  required: false;
11
12
  default: boolean;
12
13
  };
14
+ invert: {
15
+ type: BooleanConstructor;
16
+ required: false;
17
+ default: boolean;
18
+ };
13
19
  }, unknown, {
14
20
  isSticky: boolean;
15
21
  }, {
16
- theBreadcrumb(): [BreadcrumbPathObject] | undefined;
22
+ theBreadcrumb(): BreadcrumbPathObject[] | undefined;
17
23
  enabled(): Boolean;
24
+ themeStore: () => import('pinia').Store<"theme", import('./../../store/theme').State, {
25
+ isEdu(state: {
26
+ theme: import('./../../interfaces').Explorer1Theme | null;
27
+ } & import('pinia').PiniaCustomStateProperties<import('./../../store/theme').State>): boolean;
28
+ }, {
29
+ setTheme(value: import('./../../interfaces').Explorer1Theme): void;
30
+ }>;
18
31
  headerStore: () => import('pinia').Store<"header", import('./../../store/header').State, {}, {
19
32
  makeTransparent(value: boolean): void;
20
33
  updateHighlightPrimary(value: boolean): void;
21
34
  updateGlobalChildren(value: any): void;
22
35
  updateSecondary(value: any): void;
36
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
23
37
  }>;
24
38
  }, {
25
39
  isExternal(path: string): boolean;
@@ -28,13 +42,21 @@ declare const _default: import('vue').DefineComponent<{
28
42
  breadcrumb: {
29
43
  type: StringConstructor;
30
44
  required: false;
45
+ default: undefined;
31
46
  };
32
47
  hasIntro: {
33
48
  type: BooleanConstructor;
34
49
  required: false;
35
50
  default: boolean;
36
51
  };
52
+ invert: {
53
+ type: BooleanConstructor;
54
+ required: false;
55
+ default: boolean;
56
+ };
37
57
  }>>, {
58
+ invert: boolean;
59
+ breadcrumb: string;
38
60
  hasIntro: boolean;
39
61
  }, {}>;
40
62
  export default _default;
@@ -2,6 +2,7 @@ declare const _default: import('vue').DefineComponent<{
2
2
  index: {
3
3
  type: NumberConstructor;
4
4
  required: false;
5
+ default: number;
5
6
  };
6
7
  isLast: {
7
8
  type: BooleanConstructor;
@@ -12,6 +13,11 @@ declare const _default: import('vue').DefineComponent<{
12
13
  type: ObjectConstructor;
13
14
  required: true;
14
15
  };
16
+ invert: {
17
+ type: BooleanConstructor;
18
+ required: false;
19
+ default: boolean;
20
+ };
15
21
  }, unknown, {
16
22
  dropdownVisible: boolean;
17
23
  }, {}, {
@@ -19,10 +25,25 @@ declare const _default: import('vue').DefineComponent<{
19
25
  closeDropdown(): void;
20
26
  openDropdown(): void;
21
27
  isExternal(path: string): boolean;
22
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
28
+ dropdownToggleClasses(index: number): {
29
+ 'mr-auto text-white font-semibold secondary-root': boolean;
30
+ 'text-white': boolean;
31
+ '-open': boolean;
32
+ 'mr-auto text-primary font-semibold secondary-root'?: undefined;
33
+ 'text-gray-dark'?: undefined;
34
+ } | {
35
+ 'mr-auto text-primary font-semibold secondary-root': boolean;
36
+ 'text-gray-dark': boolean;
37
+ '-open': boolean;
38
+ 'mr-auto text-white font-semibold secondary-root'?: undefined;
39
+ 'text-white'?: undefined;
40
+ };
41
+ dropdownButtonClasses(index: number): "can-hover:group-hover:border-white" | "can-hover:group-hover:border-primary" | "can-hover:group-hover:border-white can-hover:group-hover:text-white" | "can-hover:group-hover:border-gray-mid-dark can-hover:group-hover:text-gray-mid-dark";
42
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("closeDropdown" | "openDropdown")[], "closeDropdown" | "openDropdown", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
23
43
  index: {
24
44
  type: NumberConstructor;
25
45
  required: false;
46
+ default: number;
26
47
  };
27
48
  isLast: {
28
49
  type: BooleanConstructor;
@@ -33,7 +54,17 @@ declare const _default: import('vue').DefineComponent<{
33
54
  type: ObjectConstructor;
34
55
  required: true;
35
56
  };
36
- }>>, {
57
+ invert: {
58
+ type: BooleanConstructor;
59
+ required: false;
60
+ default: boolean;
61
+ };
62
+ }>> & {
63
+ onCloseDropdown?: ((...args: any[]) => any) | undefined;
64
+ onOpenDropdown?: ((...args: any[]) => any) | undefined;
65
+ }, {
66
+ index: number;
67
+ invert: boolean;
37
68
  isLast: boolean;
38
69
  }, {}>;
39
70
  export default _default;
@@ -8,6 +8,10 @@ declare const _default: import('vue').DefineComponent<{
8
8
  type: ObjectConstructor;
9
9
  required: true;
10
10
  };
11
+ includeOverview: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
11
15
  }, unknown, unknown, {}, {
12
16
  linkClass(item?: NavItemObject, isLast?: Boolean): string;
13
17
  nestedLinkClass(isLast: Boolean, parentIsLast: Boolean): string;
@@ -16,5 +20,11 @@ declare const _default: import('vue').DefineComponent<{
16
20
  type: ObjectConstructor;
17
21
  required: true;
18
22
  };
19
- }>>, {}, {}>;
23
+ includeOverview: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ }>>, {
28
+ includeOverview: boolean;
29
+ }, {}>;
20
30
  export default _default;
@@ -1,22 +1,40 @@
1
+ import { PropType } from 'vue';
2
+ import { BasicLinkObject } from './../../interfaces';
3
+
1
4
  declare const _default: import('vue').DefineComponent<{
2
5
  index: {
3
6
  type: NumberConstructor;
4
7
  required: false;
8
+ default: undefined;
5
9
  };
6
10
  item: {
7
- type: ObjectConstructor;
11
+ type: PropType<BasicLinkObject>;
8
12
  required: true;
9
13
  };
14
+ invert: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
10
18
  }, unknown, unknown, {}, {
11
19
  isExternal(path: string): boolean;
20
+ baseLinkClasses(index: number | undefined): string;
21
+ spanClasses(index: number | undefined): "can-hover:group-hover:border-white" | "can-hover:group-hover:border-primary" | "can-hover:group-hover:border-white can-hover:group-hover:text-white" | "can-hover:group-hover:border-gray-mid-dark can-hover:group-hover:text-gray-mid-dark";
12
22
  }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
23
  index: {
14
24
  type: NumberConstructor;
15
25
  required: false;
26
+ default: undefined;
16
27
  };
17
28
  item: {
18
- type: ObjectConstructor;
29
+ type: PropType<BasicLinkObject>;
19
30
  required: true;
20
31
  };
21
- }>>, {}, {}>;
32
+ invert: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ }>>, {
37
+ index: number;
38
+ invert: boolean;
39
+ }, {}>;
22
40
  export default _default;
@@ -2,6 +2,7 @@ import { default as ThumbnailCarousel } from './ThumbnailCarousel.vue';
2
2
  declare namespace _default {
3
3
  export let title: string;
4
4
  export { ThumbnailCarousel as component };
5
+ export let tags: string[];
5
6
  export namespace parameters {
6
7
  namespace docs {
7
8
  namespace description {
@@ -30,6 +30,10 @@ export function BaseWidth(args: any): {
30
30
  default: string;
31
31
  validator: (prop: string) => boolean;
32
32
  };
33
+ fullBleed: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
33
37
  }, unknown, unknown, {
34
38
  theWidth(): string;
35
39
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -39,8 +43,13 @@ export function BaseWidth(args: any): {
39
43
  default: string;
40
44
  validator: (prop: string) => boolean;
41
45
  };
46
+ fullBleed: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
42
50
  }>>, {
43
51
  indent: string;
52
+ fullBleed: boolean;
44
53
  }, {}>;
45
54
  };
46
55
  setup(): {
@@ -63,6 +72,10 @@ export function ColTwoStart(args: any): {
63
72
  default: string;
64
73
  validator: (prop: string) => boolean;
65
74
  };
75
+ fullBleed: {
76
+ type: BooleanConstructor;
77
+ default: boolean;
78
+ };
66
79
  }, unknown, unknown, {
67
80
  theWidth(): string;
68
81
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -72,8 +85,13 @@ export function ColTwoStart(args: any): {
72
85
  default: string;
73
86
  validator: (prop: string) => boolean;
74
87
  };
88
+ fullBleed: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
75
92
  }>>, {
76
93
  indent: string;
94
+ fullBleed: boolean;
77
95
  }, {}>;
78
96
  };
79
97
  setup(): {
@@ -97,6 +115,10 @@ export function ColThreeStart(args: any): {
97
115
  default: string;
98
116
  validator: (prop: string) => boolean;
99
117
  };
118
+ fullBleed: {
119
+ type: BooleanConstructor;
120
+ default: boolean;
121
+ };
100
122
  }, unknown, unknown, {
101
123
  theWidth(): string;
102
124
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -106,8 +128,13 @@ export function ColThreeStart(args: any): {
106
128
  default: string;
107
129
  validator: (prop: string) => boolean;
108
130
  };
131
+ fullBleed: {
132
+ type: BooleanConstructor;
133
+ default: boolean;
134
+ };
109
135
  }>>, {
110
136
  indent: string;
137
+ fullBleed: boolean;
111
138
  }, {}>;
112
139
  };
113
140
  setup(): {
@@ -131,6 +158,10 @@ export function ColFourStart(args: any): {
131
158
  default: string;
132
159
  validator: (prop: string) => boolean;
133
160
  };
161
+ fullBleed: {
162
+ type: BooleanConstructor;
163
+ default: boolean;
164
+ };
134
165
  }, unknown, unknown, {
135
166
  theWidth(): string;
136
167
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -140,8 +171,13 @@ export function ColFourStart(args: any): {
140
171
  default: string;
141
172
  validator: (prop: string) => boolean;
142
173
  };
174
+ fullBleed: {
175
+ type: BooleanConstructor;
176
+ default: boolean;
177
+ };
143
178
  }>>, {
144
179
  indent: string;
180
+ fullBleed: boolean;
145
181
  }, {}>;
146
182
  };
147
183
  setup(): {
@@ -1,10 +1,18 @@
1
1
  export interface BreadcrumbPathObject {
2
2
  path: string;
3
3
  title: string;
4
- children: any[];
4
+ children: BreadcrumbPathObject[];
5
+ }
6
+ export interface BasicLinkObject {
7
+ title: string;
8
+ path: string;
5
9
  }
6
10
  export interface BlockData {
7
11
  blockType: string;
12
+ field?: string;
13
+ heading?: string;
14
+ level?: string;
15
+ items?: any[];
8
16
  }
9
17
  export interface ImageSrcObject {
10
18
  url: string;
@@ -75,14 +83,16 @@ export interface Card {
75
83
  label?: string;
76
84
  thumbnailImage?: Partial<ImageObject>;
77
85
  }
78
- export interface RelatedLinkObject {
86
+ export interface LinkObject {
79
87
  page: {
80
88
  url: string;
81
89
  } | null;
90
+ externalLink: string | null;
91
+ }
92
+ export interface RelatedLinkObject extends LinkObject {
82
93
  document: {
83
94
  url: string;
84
95
  } | null;
85
- externalLink: string | null;
86
96
  text: string | null;
87
97
  }
88
98
  export interface PageResponseObject {
@@ -9,10 +9,12 @@ export interface State {
9
9
  highlightPrimary: boolean;
10
10
  globalChildren?: any | null;
11
11
  secondaryNav?: any | null;
12
+ secondaryNavIsJumpMenu: boolean;
12
13
  }
13
14
  export declare const useHeaderStore: import('pinia').StoreDefinition<"header", State, {}, {
14
15
  makeTransparent(value: boolean): void;
15
16
  updateHighlightPrimary(value: boolean): void;
16
17
  updateGlobalChildren(value: any): void;
17
18
  updateSecondary(value: any): void;
19
+ updateSecondaryNavIsJumpMenu(value: boolean): void;
18
20
  }>;
@@ -163,6 +163,7 @@ export namespace BaseStory {
163
163
  url: string;
164
164
  }[];
165
165
  topper: string;
166
+ readTime: string;
166
167
  summary: string;
167
168
  thumbnailImage: {
168
169
  original: string;
@@ -390,6 +391,7 @@ export namespace InlineHero {
390
391
  url: string;
391
392
  }[];
392
393
  topper: string;
394
+ readTime: string;
393
395
  summary: string;
394
396
  thumbnailImage: {
395
397
  original: string;
@@ -636,6 +638,7 @@ export namespace HeroCarousel {
636
638
  url: string;
637
639
  }[];
638
640
  topper: string;
641
+ readTime: string;
639
642
  summary: string;
640
643
  thumbnailImage: {
641
644
  original: string;
@@ -828,6 +831,7 @@ export namespace HeroImageComparison {
828
831
  url: string;
829
832
  }[];
830
833
  topper: string;
834
+ readTime: string;
831
835
  summary: string;
832
836
  thumbnailImage: {
833
837
  original: string;
@@ -1016,6 +1020,7 @@ export namespace HeroVideo {
1016
1020
  url: string;
1017
1021
  }[];
1018
1022
  topper: string;
1023
+ readTime: string;
1019
1024
  summary: string;
1020
1025
  thumbnailImage: {
1021
1026
  original: string;
@@ -1196,6 +1201,7 @@ export namespace HeroVideoEmbed {
1196
1201
  url: string;
1197
1202
  }[];
1198
1203
  topper: string;
1204
+ readTime: string;
1199
1205
  summary: string;
1200
1206
  thumbnailImage: {
1201
1207
  original: string;
@@ -1367,6 +1373,7 @@ export namespace NoHero {
1367
1373
  url: string;
1368
1374
  }[];
1369
1375
  topper: string;
1376
+ readTime: string;
1370
1377
  summary: string;
1371
1378
  thumbnailImage: {
1372
1379
  original: string;
@@ -1538,6 +1545,7 @@ export namespace WithTopper {
1538
1545
  title: string;
1539
1546
  url: string;
1540
1547
  }[];
1548
+ readTime: string;
1541
1549
  summary: string;
1542
1550
  thumbnailImage: {
1543
1551
  original: string;
@@ -1,12 +1,13 @@
1
- import { default as PageEduResourceArticle } from './PageEduResourceArticle.vue';
1
+ import { default as PageEduExplainerArticle } from './PageEduExplainerArticle.vue';
2
2
  import { BlockLinkCardCarouselData } from './../../../components/BlockLinkCarousel/BlockLinkCarousel.stories.js';
3
3
  declare namespace _default {
4
4
  export let title: string;
5
- export { PageEduResourceArticle as component };
5
+ export { PageEduExplainerArticle as component };
6
6
  export let decorators: (() => {
7
7
  template: string;
8
8
  })[];
9
9
  export namespace parameters {
10
+ let layout: string;
10
11
  namespace html {
11
12
  let root: string;
12
13
  }
@@ -138,6 +139,7 @@ export namespace BaseStory {
138
139
  export let url: string;
139
140
  let title_1: string;
140
141
  export { title_1 as title };
142
+ export let readTime: string;
141
143
  export let heroConstrain: boolean;
142
144
  export let heroPosition: string;
143
145
  export let hero: {