@genesislcap/foundation-header 14.179.0 → 14.180.1

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 (52) hide show
  1. package/dist/custom-elements.json +1151 -181
  2. package/dist/dts/components/zero-components.d.ts +5 -0
  3. package/dist/dts/components/zero-components.d.ts.map +1 -0
  4. package/dist/dts/config/config.d.ts +33 -0
  5. package/dist/dts/config/config.d.ts.map +1 -0
  6. package/dist/dts/config/configure.d.ts +26 -0
  7. package/dist/dts/config/configure.d.ts.map +1 -0
  8. package/dist/dts/config/index.d.ts +2 -0
  9. package/dist/dts/config/index.d.ts.map +1 -1
  10. package/dist/dts/config/templates.d.ts +35 -0
  11. package/dist/dts/config/templates.d.ts.map +1 -0
  12. package/dist/dts/main/index.d.ts +1 -1
  13. package/dist/dts/main/index.d.ts.map +1 -1
  14. package/dist/dts/main/main.d.ts +81 -15
  15. package/dist/dts/main/main.d.ts.map +1 -1
  16. package/dist/dts/main/main.styles.d.ts.map +1 -1
  17. package/dist/dts/main/main.template.d.ts.map +1 -1
  18. package/dist/dts/tags/index.d.ts +2 -0
  19. package/dist/dts/tags/index.d.ts.map +1 -0
  20. package/dist/dts/tags/tags.d.ts +40 -0
  21. package/dist/dts/tags/tags.d.ts.map +1 -0
  22. package/dist/esm/components/zero-components.js +49 -0
  23. package/dist/esm/config/config.js +18 -0
  24. package/dist/esm/config/configure.js +55 -0
  25. package/dist/esm/config/index.js +2 -0
  26. package/dist/esm/config/templates.js +15 -0
  27. package/dist/esm/main/index.js +1 -1
  28. package/dist/esm/main/main.js +66 -2
  29. package/dist/esm/main/main.styles.js +59 -134
  30. package/dist/esm/main/main.template.js +32 -41
  31. package/dist/esm/tags/index.js +1 -0
  32. package/dist/esm/tags/tags.js +43 -0
  33. package/dist/foundation-header.api.json +287 -0
  34. package/dist/foundation-header.d.ts +216 -15
  35. package/docs/api/foundation-header.configure.md +45 -0
  36. package/docs/api/foundation-header.defaultheaderconfig.md +13 -0
  37. package/docs/api/foundation-header.foundationheader.loadremotes.md +15 -0
  38. package/docs/api/foundation-header.foundationheader.md +27 -0
  39. package/docs/api/foundation-header.headerconfig.md +21 -0
  40. package/docs/api/foundation-header.headerconfig.templateoptions.md +18 -0
  41. package/docs/api/foundation-header.md +15 -0
  42. package/docs/api/foundation-header.navigation.headerconfig.md +11 -0
  43. package/docs/api/foundation-header.navigation.md +1 -0
  44. package/docs/api/foundation-header.zeroheader.md +37 -0
  45. package/docs/api-report.md +48 -0
  46. package/package.json +19 -19
  47. package/dist/dts/components/components.d.ts +0 -9
  48. package/dist/dts/components/components.d.ts.map +0 -1
  49. package/dist/dts/components/index.d.ts +0 -2
  50. package/dist/dts/components/index.d.ts.map +0 -1
  51. package/dist/esm/components/components.js +0 -42
  52. package/dist/esm/components/index.js +0 -1
@@ -33,48 +33,78 @@
33
33
  },
34
34
  {
35
35
  "kind": "javascript-module",
36
- "path": "src/components/components.ts",
36
+ "path": "src/components/zero-components.ts",
37
37
  "declarations": [
38
38
  {
39
39
  "kind": "function",
40
- "name": "loadZeroDesignSystem"
41
- },
42
- {
43
- "kind": "function",
44
- "name": "loadRemotes",
45
- "description": "Load the wp5 module federation remote versions, or fallback to code split bundled versions.\nYou would really be targeting the client's design system, components etc here. For now just targeting zero."
40
+ "name": "registerCommonZeroComponents",
41
+ "privacy": "public"
46
42
  }
47
43
  ],
48
44
  "exports": [
49
45
  {
50
46
  "kind": "js",
51
- "name": "loadZeroDesignSystem",
47
+ "name": "registerCommonZeroComponents",
52
48
  "declaration": {
53
- "name": "loadZeroDesignSystem",
54
- "module": "src/components/components.ts"
49
+ "name": "registerCommonZeroComponents",
50
+ "module": "src/components/zero-components.ts"
55
51
  }
56
- },
52
+ }
53
+ ]
54
+ },
55
+ {
56
+ "kind": "javascript-module",
57
+ "path": "src/config/config.ts",
58
+ "declarations": [
59
+ {
60
+ "kind": "variable",
61
+ "name": "defaultHeaderConfig",
62
+ "type": {
63
+ "text": "HeaderConfig"
64
+ },
65
+ "default": "{\n name: 'foundation-header',\n templateOptions: defaultTemplateOptions,\n}",
66
+ "description": "Default HeaderConfig DI implementation.",
67
+ "privacy": "public"
68
+ }
69
+ ],
70
+ "exports": [
57
71
  {
58
72
  "kind": "js",
59
- "name": "loadRemotes",
73
+ "name": "defaultHeaderConfig",
60
74
  "declaration": {
61
- "name": "loadRemotes",
62
- "module": "src/components/components.ts"
75
+ "name": "defaultHeaderConfig",
76
+ "module": "src/config/config.ts"
63
77
  }
64
78
  }
65
79
  ]
66
80
  },
67
81
  {
68
82
  "kind": "javascript-module",
69
- "path": "src/components/index.ts",
70
- "declarations": [],
83
+ "path": "src/config/configure.ts",
84
+ "declarations": [
85
+ {
86
+ "kind": "function",
87
+ "name": "configure",
88
+ "parameters": [
89
+ {
90
+ "name": "config",
91
+ "type": {
92
+ "text": "Partial<HeaderConfig>"
93
+ },
94
+ "description": "A partial HeaderConfig."
95
+ }
96
+ ],
97
+ "description": "A function that allows configuring the header micro-frontend with name and templateOptions.",
98
+ "privacy": "public"
99
+ }
100
+ ],
71
101
  "exports": [
72
102
  {
73
103
  "kind": "js",
74
- "name": "*",
104
+ "name": "configure",
75
105
  "declaration": {
76
- "name": "*",
77
- "package": "./components"
106
+ "name": "configure",
107
+ "module": "src/config/configure.ts"
78
108
  }
79
109
  }
80
110
  ]
@@ -84,6 +114,22 @@
84
114
  "path": "src/config/index.ts",
85
115
  "declarations": [],
86
116
  "exports": [
117
+ {
118
+ "kind": "js",
119
+ "name": "*",
120
+ "declaration": {
121
+ "name": "*",
122
+ "package": "./config"
123
+ }
124
+ },
125
+ {
126
+ "kind": "js",
127
+ "name": "*",
128
+ "declaration": {
129
+ "name": "*",
130
+ "package": "./configure"
131
+ }
132
+ },
87
133
  {
88
134
  "kind": "js",
89
135
  "name": "*",
@@ -100,6 +146,32 @@
100
146
  "declarations": [],
101
147
  "exports": []
102
148
  },
149
+ {
150
+ "kind": "javascript-module",
151
+ "path": "src/config/templates.ts",
152
+ "declarations": [
153
+ {
154
+ "kind": "variable",
155
+ "name": "defaultTemplateOptions",
156
+ "type": {
157
+ "text": "TemplateOptions"
158
+ },
159
+ "default": "{\n icon: 'zero-icon',\n button: 'zero-button',\n connectionIndicator: 'zero-connection-indicator',\n select: 'zero-select',\n option: 'zero-option',\n flyout: 'zero-flyout',\n provider: 'zero-design-system-provider',\n}",
160
+ "description": "defaultTemplateOptions.",
161
+ "privacy": "public"
162
+ }
163
+ ],
164
+ "exports": [
165
+ {
166
+ "kind": "js",
167
+ "name": "defaultTemplateOptions",
168
+ "declaration": {
169
+ "name": "defaultTemplateOptions",
170
+ "module": "src/config/templates.ts"
171
+ }
172
+ }
173
+ ]
174
+ },
103
175
  {
104
176
  "kind": "javascript-module",
105
177
  "path": "src/main/index.ts",
@@ -115,10 +187,10 @@
115
187
  },
116
188
  {
117
189
  "kind": "js",
118
- "name": "NavTemplate",
190
+ "name": "*",
119
191
  "declaration": {
120
- "name": "NavTemplate",
121
- "module": "./main.template"
192
+ "name": "*",
193
+ "package": "./main.template"
122
194
  }
123
195
  },
124
196
  {
@@ -165,7 +237,7 @@
165
237
  {
166
238
  "kind": "variable",
167
239
  "name": "NavTemplate",
168
- "default": "html<Navigation>`\n ${when((x) => !x.hideSideBar, sideNavTemplate)}\n <div class=\"nav-listbox\" data-test-id=\"nav-bar\">\n ${app.registerElementsTarget<HeaderTargetId>('header-start')}\n <div class=\"nav-leftside\">\n ${app.registerElementsTarget<NavTargetId>('nav-start')}\n ${when(\n (x) => !x.hideSideBar,\n html<Navigation>`\n <div\n class=\"bars-container\"\n @click=${(x) => x.toggleNavVisibility()}\n data-test-id=\"hamburger-menu\"\n >\n <zero-icon name=\"bars\" part=\"nav-visibility-icon\"></zero-icon>\n </div>\n `,\n )}\n <div class=\"logo-container\" data-test-id=\"nav-bar-logo\">\n <img src=${(x) => x.logoSrc} class=\"logo\" part=\"logo\" />\n </div>\n <slot name=\"routes\" data-test-id=\"route-buttons\">\n ${(x) => (x.routeNavItems ? routeNavItemsTemplate : defaultRouteNavItemsTemplate)}\n </slot>\n ${app.registerElementsTarget<NavTargetId>('nav')}\n </div>\n <div class=\"nav-rightside\">\n ${app.registerElementsTarget<NavTargetId>('nav-end')}\n ${when(\n (x) => x.showLuminanceToggleButton,\n html<Navigation>`\n <div\n class=\"icon-container\"\n data-test-id=\"luminance-toggle-button\"\n part=\"luminance-button\"\n >\n <zero-icon\n @click=${(x) => x.luminanceIconEvent()}\n variant=\"regular\"\n name=\"moon\"\n part=\"luminance-icon\"\n ></zero-icon>\n </div>\n `,\n )}\n ${when(\n (x) => x.showMiscToggleButton,\n html<Navigation>`\n <div class=\"icon-container\" data-test-id=\"misc-toggle-button\" part=\"misc-button\">\n <zero-icon @click=${(x) => x.miscIconEvent()} name=\"th\" part=\"misc-icon\"></zero-icon>\n </div>\n `,\n )}\n ${when(\n (x) => x.showNotificationsButton,\n html<Navigation>`\n <div\n class=\"icon-container\"\n data-test-id=\"notifications-button\"\n part=\"notifications-button\"\n >\n <zero-icon\n variant=\"regular\"\n @click=${(x) => x.notificationIconEvent()}\n name=\"bell\"\n part=\"notifications-icon\"\n ></zero-icon>\n <slot name=\"notifications-icon-end\"></slot>\n </div>\n `,\n )}\n ${when(\n (x) => x.showConnectionIndicator,\n html<Navigation>`\n <div class=\"connection-indicator-container\" data-test-id=\"connection-indicator\">\n <zero-connection-indicator show-label=\"false\"></zero-connection-indicator>\n </div>\n `,\n )}\n ${when(\n (x) => x.showLanguageSelector && x.languageOptions,\n html<Navigation>`\n <zero-select\n class=\"language-selector\"\n position=\"below\"\n data-test-id=\"language-selector\"\n part=\"language-selector\"\n @change=\"${(x, c) => x.changeLanguage(c.event as CustomEvent)}\"\n >\n ${repeat(\n (x) => x.languageOptions.availableLanguages,\n html`\n <zero-option\n value=\"${(x) => x}\"\n ?selected=\"${(x, c) => x === c.parent.languageOptions.selectedLanguage}\"\n >\n ${(x) => x.toUpperCase()}\n </zero-option>\n `,\n )}\n </zero-select>\n `,\n )}\n\n <zero-button appearance=\"neutral-grey\" data-test-id=\"user-button\">\n <zero-icon name=\"user-circle\"></zero-icon>\n ${(x) => x.userName}\n </zero-button>\n </div>\n ${app.registerElementsTarget<HeaderTargetId>(['header', 'header-end'])}\n </div>\n`",
240
+ "default": "html<Navigation>`\n ${when((x) => !x.hideSideBar, sideNavTemplate)}\n <div class=\"nav-listbox\" data-test-id=\"nav-bar\">\n ${app.registerElementsTarget<HeaderTargetId>('header-start')}\n <div class=\"nav-leftside\">\n ${app.registerElementsTarget<NavTargetId>('nav-start')}\n ${when(\n (x) => !x.hideSideBar,\n html<Navigation>`\n <div\n class=\"bars-container\"\n @click=${(x) => x.toggleNavVisibility()}\n data-test-id=\"hamburger-menu\"\n >\n <${iconTag} name=\"bars\" part=\"nav-visibility-icon\" class=\"nav-visibility-icon\"></${iconTag}>\n </div>\n `,\n )}\n <div class=\"logo-container\" data-test-id=\"nav-bar-logo\">\n <img src=${(x) => x.logoSrc} class=\"logo\" part=\"logo\" />\n </div>\n <slot name=\"routes\" data-test-id=\"route-buttons\">\n ${(x) => (x.routeNavItems ? routeNavItemsTemplate : defaultRouteNavItemsTemplate)}\n </slot>\n ${app.registerElementsTarget<NavTargetId>('nav')}\n </div>\n <div class=\"nav-rightside\">\n ${app.registerElementsTarget<NavTargetId>('nav-end')}\n ${when(\n (x) => x.showLuminanceToggleButton,\n html<Navigation>`\n <div\n class=\"icon-container\"\n data-test-id=\"luminance-toggle-button\"\n part=\"luminance-button\"\n >\n <${iconTag}\n @click=${(x) => x.luminanceIconEvent()}\n variant=\"regular\"\n name=\"moon\"\n part=\"luminance-icon\"\n ></${iconTag}>\n </div>\n `,\n )}\n ${when(\n (x) => x.showMiscToggleButton,\n html<Navigation>`\n <div class=\"icon-container\" data-test-id=\"misc-toggle-button\" part=\"misc-button\">\n <${iconTag} @click=${(x) => x.miscIconEvent()} name=\"th\" part=\"misc-icon\"></${iconTag}>\n </div>\n `,\n )}\n ${when(\n (x) => x.showConnectionIndicator,\n html<Navigation>`\n <div class=\"connection-indicator-container\" data-test-id=\"connection-indicator\">\n <${connectionIndicatorTag} show-label=\"false\"></${connectionIndicatorTag}>\n </div>\n `,\n )}\n ${when(\n (x) => x.showLanguageSelector && x.languageOptions,\n html<Navigation>`\n <${selectTag}\n class=\"language-selector\"\n position=\"below\"\n data-test-id=\"language-selector\"\n part=\"language-selector\"\n @change=\"${(x, c) => x.changeLanguage(c.event as CustomEvent)}\"\n >\n ${repeat(\n (x) => x.languageOptions.availableLanguages,\n html`\n <${optionTag}\n value=\"${(x) => x}\"\n ?selected=\"${(x, c) => x === c.parent.languageOptions.selectedLanguage}\"\n >\n ${(x) => x.toUpperCase()}\n </${optionTag}>\n `,\n )}\n </${selectTag}>\n `,\n )}\n\n <${buttonTag} appearance=\"neutral-grey\" data-test-id=\"user-button\" class=\"nav-button\">\n <${iconTag} name=\"user-circle\"></${iconTag}>\n ${(x) => x.userName}\n </${buttonTag}>\n </div>\n ${app.registerElementsTarget<HeaderTargetId>(['header', 'header-end'])}\n </div>\n`",
169
241
  "description": "Template for Navigation class",
170
242
  "return": {
171
243
  "type": {
@@ -216,6 +288,13 @@
216
288
  "text": "I18next"
217
289
  }
218
290
  },
291
+ {
292
+ "kind": "field",
293
+ "name": "headerConfig",
294
+ "type": {
295
+ "text": "HeaderConfig"
296
+ }
297
+ },
219
298
  {
220
299
  "kind": "field",
221
300
  "name": "ready",
@@ -478,178 +557,1048 @@
478
557
  },
479
558
  "tagName": "foundation-header",
480
559
  "customElement": true
481
- }
482
- ],
483
- "exports": [
484
- {
485
- "kind": "js",
486
- "name": "Navigation",
487
- "declaration": {
488
- "name": "Navigation",
489
- "module": "src/main/main.ts"
490
- }
491
560
  },
492
561
  {
493
- "kind": "custom-element-definition",
494
- "name": "foundation-header",
495
- "declaration": {
496
- "name": "Navigation",
497
- "module": "src/main/main.ts"
498
- }
499
- }
500
- ]
501
- },
502
- {
503
- "kind": "javascript-module",
504
- "path": "src/styles/colors.ts",
505
- "declarations": [
506
- {
507
- "kind": "function",
508
- "name": "getWebRGBA",
509
- "parameters": [
562
+ "kind": "class",
563
+ "description": "FoundationHeader.",
564
+ "name": "FoundationHeader",
565
+ "members": [
510
566
  {
511
- "name": "rgb",
567
+ "kind": "method",
568
+ "name": "loadRemotes"
569
+ },
570
+ {
571
+ "kind": "field",
572
+ "name": "auth",
512
573
  "type": {
513
- "text": "ColorRGBA64"
574
+ "text": "Auth"
575
+ },
576
+ "inheritedFrom": {
577
+ "name": "Navigation",
578
+ "module": "src/main/main.ts"
514
579
  }
515
580
  },
516
581
  {
517
- "name": "alpha",
518
- "default": "1.0",
582
+ "kind": "field",
583
+ "name": "credentialManager",
519
584
  "type": {
520
- "text": "number"
585
+ "text": "CredentialManager"
586
+ },
587
+ "inheritedFrom": {
588
+ "name": "Navigation",
589
+ "module": "src/main/main.ts"
521
590
  }
522
- }
523
- ]
524
- },
525
- {
526
- "kind": "variable",
527
- "name": "defaultBackgroundHover"
528
- },
529
- {
530
- "kind": "variable",
531
- "name": "defaultBackgroundItem"
532
- },
533
- {
534
- "kind": "variable",
535
- "name": "backgroundNavOption"
536
- }
537
- ],
538
- "exports": [
539
- {
540
- "kind": "js",
541
- "name": "getWebRGBA",
542
- "declaration": {
543
- "name": "getWebRGBA",
544
- "module": "src/styles/colors.ts"
545
- }
546
- },
547
- {
548
- "kind": "js",
549
- "name": "defaultBackgroundHover",
550
- "declaration": {
551
- "name": "defaultBackgroundHover",
552
- "module": "src/styles/colors.ts"
553
- }
554
- },
555
- {
556
- "kind": "js",
557
- "name": "defaultBackgroundItem",
558
- "declaration": {
559
- "name": "defaultBackgroundItem",
560
- "module": "src/styles/colors.ts"
561
- }
562
- },
563
- {
564
- "kind": "js",
565
- "name": "backgroundNavOption",
566
- "declaration": {
567
- "name": "backgroundNavOption",
568
- "module": "src/styles/colors.ts"
569
- }
570
- }
571
- ]
572
- },
573
- {
574
- "kind": "javascript-module",
575
- "path": "src/styles/index.ts",
576
- "declarations": [],
577
- "exports": [
578
- {
579
- "kind": "js",
580
- "name": "*",
581
- "declaration": {
582
- "name": "*",
583
- "package": "./colors"
584
- }
585
- },
586
- {
587
- "kind": "js",
588
- "name": "*",
589
- "declaration": {
590
- "name": "*",
591
- "package": "./styles"
592
- }
593
- }
594
- ]
595
- },
596
- {
597
- "kind": "javascript-module",
598
- "path": "src/styles/styles.ts",
599
- "declarations": [
600
- {
601
- "kind": "function",
602
- "name": "mixinScreen",
603
- "parameters": [
591
+ },
604
592
  {
605
- "name": "display",
606
- "default": "'block'",
593
+ "kind": "field",
594
+ "name": "i18next",
607
595
  "type": {
608
- "text": "string"
596
+ "text": "I18next"
597
+ },
598
+ "inheritedFrom": {
599
+ "name": "Navigation",
600
+ "module": "src/main/main.ts"
609
601
  }
610
- }
611
- ],
612
- "description": "TODO: Bring all the style and typography mixins into the design system package"
613
- },
614
- {
615
- "kind": "function",
616
- "name": "genesisLogo",
617
- "parameters": [
602
+ },
618
603
  {
619
- "name": "slot",
620
- "default": "'start'"
621
- }
622
- ],
623
- "description": "TODO"
624
- },
625
- {
626
- "kind": "function",
627
- "name": "settingsIcon",
628
- "parameters": [
604
+ "kind": "field",
605
+ "name": "headerConfig",
606
+ "type": {
607
+ "text": "HeaderConfig"
608
+ },
609
+ "inheritedFrom": {
610
+ "name": "Navigation",
611
+ "module": "src/main/main.ts"
612
+ }
613
+ },
629
614
  {
630
- "name": "slot",
631
- "default": "'start'"
632
- }
633
- ]
634
- }
635
- ],
636
- "exports": [
637
- {
638
- "kind": "js",
639
- "name": "mixinScreen",
640
- "declaration": {
641
- "name": "mixinScreen",
642
- "module": "src/styles/styles.ts"
643
- }
644
- },
645
- {
646
- "kind": "js",
647
- "name": "genesisLogo",
648
- "declaration": {
649
- "name": "genesisLogo",
650
- "module": "src/styles/styles.ts"
651
- }
652
- },
615
+ "kind": "field",
616
+ "name": "ready",
617
+ "type": {
618
+ "text": "boolean"
619
+ },
620
+ "default": "false",
621
+ "inheritedFrom": {
622
+ "name": "Navigation",
623
+ "module": "src/main/main.ts"
624
+ }
625
+ },
626
+ {
627
+ "kind": "field",
628
+ "name": "userName",
629
+ "type": {
630
+ "text": "string"
631
+ },
632
+ "privacy": "public",
633
+ "description": "Username of the logged in user",
634
+ "inheritedFrom": {
635
+ "name": "Navigation",
636
+ "module": "src/main/main.ts"
637
+ }
638
+ },
639
+ {
640
+ "kind": "field",
641
+ "name": "sideNavOpen",
642
+ "type": {
643
+ "text": "boolean"
644
+ },
645
+ "default": "false",
646
+ "inheritedFrom": {
647
+ "name": "Navigation",
648
+ "module": "src/main/main.ts"
649
+ }
650
+ },
651
+ {
652
+ "kind": "field",
653
+ "name": "logoSrc",
654
+ "type": {
655
+ "text": "any"
656
+ },
657
+ "default": "logo",
658
+ "description": "Optional attribute which controls the icon to show on the navigation bar and flyout\nControl via `logo-src`",
659
+ "inheritedFrom": {
660
+ "name": "Navigation",
661
+ "module": "src/main/main.ts"
662
+ }
663
+ },
664
+ {
665
+ "kind": "field",
666
+ "name": "showLuminanceToggleButton",
667
+ "type": {
668
+ "text": "boolean"
669
+ },
670
+ "description": "Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar\nControl via`show-luminance-toggle-button`",
671
+ "inheritedFrom": {
672
+ "name": "Navigation",
673
+ "module": "src/main/main.ts"
674
+ }
675
+ },
676
+ {
677
+ "kind": "field",
678
+ "name": "showMiscToggleButton",
679
+ "type": {
680
+ "text": "boolean"
681
+ },
682
+ "description": "Boolean attribute which controls whether to show the miscellaneous (menu) icon on the navigation bar\nControl via `show-luminance-toggle-button`",
683
+ "inheritedFrom": {
684
+ "name": "Navigation",
685
+ "module": "src/main/main.ts"
686
+ }
687
+ },
688
+ {
689
+ "kind": "field",
690
+ "name": "showNotificationsButton",
691
+ "type": {
692
+ "text": "boolean"
693
+ },
694
+ "description": "Boolean attribute which controls whether to show the notification (bell) icon on the navigation bar\nControl via `show-notification-button`",
695
+ "deprecated": "- Add/Remove PBC Notify via `genx` instead.",
696
+ "inheritedFrom": {
697
+ "name": "Navigation",
698
+ "module": "src/main/main.ts"
699
+ }
700
+ },
701
+ {
702
+ "kind": "field",
703
+ "name": "showConnectionIndicator",
704
+ "type": {
705
+ "text": "boolean"
706
+ },
707
+ "default": "true",
708
+ "description": "Boolean attribute which controls whether to show the connection indicator on the navigation bar\nControl via `show-connection-indicator`",
709
+ "inheritedFrom": {
710
+ "name": "Navigation",
711
+ "module": "src/main/main.ts"
712
+ }
713
+ },
714
+ {
715
+ "kind": "field",
716
+ "name": "showLanguageSelector",
717
+ "type": {
718
+ "text": "boolean"
719
+ },
720
+ "default": "false",
721
+ "description": "Boolean attribute which controls whether to show the language selector on the navigation bar\nControl via `show-language-selector`",
722
+ "inheritedFrom": {
723
+ "name": "Navigation",
724
+ "module": "src/main/main.ts"
725
+ }
726
+ },
727
+ {
728
+ "kind": "field",
729
+ "name": "languageOptions",
730
+ "type": {
731
+ "text": "LanguageOptions"
732
+ },
733
+ "default": "{\n availableLanguages: Object.keys(this.i18next.config.resources ?? {}),\n selectedLanguage: this.i18next.config.lng,\n }",
734
+ "inheritedFrom": {
735
+ "name": "Navigation",
736
+ "module": "src/main/main.ts"
737
+ }
738
+ },
739
+ {
740
+ "kind": "field",
741
+ "name": "hideSideBar",
742
+ "type": {
743
+ "text": "boolean"
744
+ },
745
+ "description": "Boolean attribute which controls whether to include the sideNav component\nControl via`hide-side-bar`",
746
+ "inheritedFrom": {
747
+ "name": "Navigation",
748
+ "module": "src/main/main.ts"
749
+ }
750
+ },
751
+ {
752
+ "kind": "field",
753
+ "name": "routeButtons",
754
+ "type": {
755
+ "text": "Array<{\n index: number;\n path: string;\n title: string;\n icon: string;\n variant: string;\n }>"
756
+ },
757
+ "description": "If present the defined route buttons will be rendered in the header 'routes' slot",
758
+ "deprecated": "- Use `routeNavItems` instead.",
759
+ "inheritedFrom": {
760
+ "name": "Navigation",
761
+ "module": "src/main/main.ts"
762
+ }
763
+ },
764
+ {
765
+ "kind": "field",
766
+ "name": "routeNavItems",
767
+ "type": {
768
+ "text": "FoundationRouteNavItem[]"
769
+ },
770
+ "description": "If present the defined @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems will be rendered in the header 'routes' slot",
771
+ "inheritedFrom": {
772
+ "name": "Navigation",
773
+ "module": "src/main/main.ts"
774
+ }
775
+ },
776
+ {
777
+ "kind": "method",
778
+ "name": "selectTemplate",
779
+ "inheritedFrom": {
780
+ "name": "Navigation",
781
+ "module": "src/main/main.ts"
782
+ }
783
+ },
784
+ {
785
+ "kind": "method",
786
+ "name": "logout",
787
+ "privacy": "public",
788
+ "description": "Logs the user out of their session",
789
+ "inheritedFrom": {
790
+ "name": "Navigation",
791
+ "module": "src/main/main.ts"
792
+ }
793
+ },
794
+ {
795
+ "kind": "method",
796
+ "name": "navigateTo",
797
+ "privacy": "public",
798
+ "parameters": [
799
+ {
800
+ "name": "path",
801
+ "type": {
802
+ "text": "string"
803
+ },
804
+ "description": "string represeting the new route to move to"
805
+ }
806
+ ],
807
+ "description": "Changes the route of the current page",
808
+ "inheritedFrom": {
809
+ "name": "Navigation",
810
+ "module": "src/main/main.ts"
811
+ }
812
+ },
813
+ {
814
+ "kind": "method",
815
+ "name": "changeLanguage",
816
+ "parameters": [
817
+ {
818
+ "name": "e",
819
+ "type": {
820
+ "text": "CustomEvent"
821
+ }
822
+ }
823
+ ],
824
+ "description": "Changes the language of the application",
825
+ "inheritedFrom": {
826
+ "name": "Navigation",
827
+ "module": "src/main/main.ts"
828
+ }
829
+ },
830
+ {
831
+ "kind": "method",
832
+ "name": "toLocalisedText",
833
+ "return": {
834
+ "type": {
835
+ "text": "string"
836
+ }
837
+ },
838
+ "parameters": [
839
+ {
840
+ "name": "text",
841
+ "type": {
842
+ "text": "string"
843
+ }
844
+ }
845
+ ],
846
+ "description": "To localised text",
847
+ "inheritedFrom": {
848
+ "name": "Navigation",
849
+ "module": "src/main/main.ts"
850
+ }
851
+ }
852
+ ],
853
+ "superclass": {
854
+ "name": "Navigation",
855
+ "module": "src/main/main.ts"
856
+ },
857
+ "attributes": [
858
+ {
859
+ "name": "logo-src",
860
+ "type": {
861
+ "text": "any"
862
+ },
863
+ "default": "logo",
864
+ "description": "Optional attribute which controls the icon to show on the navigation bar and flyout\nControl via `logo-src`",
865
+ "resolveInitializer": {
866
+ "module": "/src/assets/logo.svg"
867
+ },
868
+ "fieldName": "logoSrc",
869
+ "inheritedFrom": {
870
+ "name": "Navigation",
871
+ "module": "src/main/main.ts"
872
+ }
873
+ },
874
+ {
875
+ "name": "show-luminance-toggle-button",
876
+ "type": {
877
+ "text": "boolean"
878
+ },
879
+ "description": "Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar\nControl via`show-luminance-toggle-button`",
880
+ "fieldName": "showLuminanceToggleButton",
881
+ "inheritedFrom": {
882
+ "name": "Navigation",
883
+ "module": "src/main/main.ts"
884
+ }
885
+ },
886
+ {
887
+ "name": "show-misc-toggle-button",
888
+ "type": {
889
+ "text": "boolean"
890
+ },
891
+ "description": "Boolean attribute which controls whether to show the miscellaneous (menu) icon on the navigation bar\nControl via `show-luminance-toggle-button`",
892
+ "fieldName": "showMiscToggleButton",
893
+ "inheritedFrom": {
894
+ "name": "Navigation",
895
+ "module": "src/main/main.ts"
896
+ }
897
+ },
898
+ {
899
+ "name": "show-notification-button",
900
+ "type": {
901
+ "text": "boolean"
902
+ },
903
+ "description": "Boolean attribute which controls whether to show the notification (bell) icon on the navigation bar\nControl via `show-notification-button`",
904
+ "deprecated": "- Add/Remove PBC Notify via `genx` instead.",
905
+ "fieldName": "showNotificationsButton",
906
+ "inheritedFrom": {
907
+ "name": "Navigation",
908
+ "module": "src/main/main.ts"
909
+ }
910
+ },
911
+ {
912
+ "name": "show-connection-indicator",
913
+ "type": {
914
+ "text": "boolean"
915
+ },
916
+ "default": "true",
917
+ "description": "Boolean attribute which controls whether to show the connection indicator on the navigation bar\nControl via `show-connection-indicator`",
918
+ "fieldName": "showConnectionIndicator",
919
+ "inheritedFrom": {
920
+ "name": "Navigation",
921
+ "module": "src/main/main.ts"
922
+ }
923
+ },
924
+ {
925
+ "name": "show-language-selector",
926
+ "type": {
927
+ "text": "boolean"
928
+ },
929
+ "default": "false",
930
+ "description": "Boolean attribute which controls whether to show the language selector on the navigation bar\nControl via `show-language-selector`",
931
+ "fieldName": "showLanguageSelector",
932
+ "inheritedFrom": {
933
+ "name": "Navigation",
934
+ "module": "src/main/main.ts"
935
+ }
936
+ },
937
+ {
938
+ "name": "hide-side-bar",
939
+ "type": {
940
+ "text": "boolean"
941
+ },
942
+ "description": "Boolean attribute which controls whether to include the sideNav component\nControl via`hide-side-bar`",
943
+ "fieldName": "hideSideBar",
944
+ "inheritedFrom": {
945
+ "name": "Navigation",
946
+ "module": "src/main/main.ts"
947
+ }
948
+ }
949
+ ],
950
+ "events": [
951
+ {
952
+ "description": "Dispatched when the user clicks on the luminance toggle icon in the navigation bar.",
953
+ "name": "luminance-icon-clicked",
954
+ "inheritedFrom": {
955
+ "name": "Navigation",
956
+ "module": "src/main/main.ts"
957
+ }
958
+ },
959
+ {
960
+ "description": "Dispatched when the user clicks on the miscellaneous behaviour icon in the navigation bar.",
961
+ "name": "misc-icon-clicked",
962
+ "inheritedFrom": {
963
+ "name": "Navigation",
964
+ "module": "src/main/main.ts"
965
+ }
966
+ },
967
+ {
968
+ "description": "Dispatched when the user clicks on the notification icon in the navigation bar.",
969
+ "name": "notification-icon-clicked",
970
+ "inheritedFrom": {
971
+ "name": "Navigation",
972
+ "module": "src/main/main.ts"
973
+ }
974
+ },
975
+ {
976
+ "description": "Dispatched when the user changes the language in the language selector.",
977
+ "name": "language-changed",
978
+ "inheritedFrom": {
979
+ "name": "Navigation",
980
+ "module": "src/main/main.ts"
981
+ }
982
+ }
983
+ ]
984
+ },
985
+ {
986
+ "kind": "class",
987
+ "description": "ZeroHeader is a zero version of the header micro-frontend.",
988
+ "name": "ZeroHeader",
989
+ "superclass": {
990
+ "name": "Navigation",
991
+ "module": "src/main/main.ts"
992
+ },
993
+ "tagName": "zero-header",
994
+ "customElement": true,
995
+ "attributes": [
996
+ {
997
+ "name": "logo-src",
998
+ "type": {
999
+ "text": "any"
1000
+ },
1001
+ "default": "logo",
1002
+ "description": "Optional attribute which controls the icon to show on the navigation bar and flyout\nControl via `logo-src`",
1003
+ "resolveInitializer": {
1004
+ "module": "/src/assets/logo.svg"
1005
+ },
1006
+ "fieldName": "logoSrc",
1007
+ "inheritedFrom": {
1008
+ "name": "Navigation",
1009
+ "module": "src/main/main.ts"
1010
+ }
1011
+ },
1012
+ {
1013
+ "name": "show-luminance-toggle-button",
1014
+ "type": {
1015
+ "text": "boolean"
1016
+ },
1017
+ "description": "Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar\nControl via`show-luminance-toggle-button`",
1018
+ "fieldName": "showLuminanceToggleButton",
1019
+ "inheritedFrom": {
1020
+ "name": "Navigation",
1021
+ "module": "src/main/main.ts"
1022
+ }
1023
+ },
1024
+ {
1025
+ "name": "show-misc-toggle-button",
1026
+ "type": {
1027
+ "text": "boolean"
1028
+ },
1029
+ "description": "Boolean attribute which controls whether to show the miscellaneous (menu) icon on the navigation bar\nControl via `show-luminance-toggle-button`",
1030
+ "fieldName": "showMiscToggleButton",
1031
+ "inheritedFrom": {
1032
+ "name": "Navigation",
1033
+ "module": "src/main/main.ts"
1034
+ }
1035
+ },
1036
+ {
1037
+ "name": "show-notification-button",
1038
+ "type": {
1039
+ "text": "boolean"
1040
+ },
1041
+ "description": "Boolean attribute which controls whether to show the notification (bell) icon on the navigation bar\nControl via `show-notification-button`",
1042
+ "deprecated": "- Add/Remove PBC Notify via `genx` instead.",
1043
+ "fieldName": "showNotificationsButton",
1044
+ "inheritedFrom": {
1045
+ "name": "Navigation",
1046
+ "module": "src/main/main.ts"
1047
+ }
1048
+ },
1049
+ {
1050
+ "name": "show-connection-indicator",
1051
+ "type": {
1052
+ "text": "boolean"
1053
+ },
1054
+ "default": "true",
1055
+ "description": "Boolean attribute which controls whether to show the connection indicator on the navigation bar\nControl via `show-connection-indicator`",
1056
+ "fieldName": "showConnectionIndicator",
1057
+ "inheritedFrom": {
1058
+ "name": "Navigation",
1059
+ "module": "src/main/main.ts"
1060
+ }
1061
+ },
1062
+ {
1063
+ "name": "show-language-selector",
1064
+ "type": {
1065
+ "text": "boolean"
1066
+ },
1067
+ "default": "false",
1068
+ "description": "Boolean attribute which controls whether to show the language selector on the navigation bar\nControl via `show-language-selector`",
1069
+ "fieldName": "showLanguageSelector",
1070
+ "inheritedFrom": {
1071
+ "name": "Navigation",
1072
+ "module": "src/main/main.ts"
1073
+ }
1074
+ },
1075
+ {
1076
+ "name": "hide-side-bar",
1077
+ "type": {
1078
+ "text": "boolean"
1079
+ },
1080
+ "description": "Boolean attribute which controls whether to include the sideNav component\nControl via`hide-side-bar`",
1081
+ "fieldName": "hideSideBar",
1082
+ "inheritedFrom": {
1083
+ "name": "Navigation",
1084
+ "module": "src/main/main.ts"
1085
+ }
1086
+ }
1087
+ ],
1088
+ "members": [
1089
+ {
1090
+ "kind": "field",
1091
+ "name": "auth",
1092
+ "type": {
1093
+ "text": "Auth"
1094
+ },
1095
+ "inheritedFrom": {
1096
+ "name": "Navigation",
1097
+ "module": "src/main/main.ts"
1098
+ }
1099
+ },
1100
+ {
1101
+ "kind": "field",
1102
+ "name": "credentialManager",
1103
+ "type": {
1104
+ "text": "CredentialManager"
1105
+ },
1106
+ "inheritedFrom": {
1107
+ "name": "Navigation",
1108
+ "module": "src/main/main.ts"
1109
+ }
1110
+ },
1111
+ {
1112
+ "kind": "field",
1113
+ "name": "i18next",
1114
+ "type": {
1115
+ "text": "I18next"
1116
+ },
1117
+ "inheritedFrom": {
1118
+ "name": "Navigation",
1119
+ "module": "src/main/main.ts"
1120
+ }
1121
+ },
1122
+ {
1123
+ "kind": "field",
1124
+ "name": "headerConfig",
1125
+ "type": {
1126
+ "text": "HeaderConfig"
1127
+ },
1128
+ "inheritedFrom": {
1129
+ "name": "Navigation",
1130
+ "module": "src/main/main.ts"
1131
+ }
1132
+ },
1133
+ {
1134
+ "kind": "field",
1135
+ "name": "ready",
1136
+ "type": {
1137
+ "text": "boolean"
1138
+ },
1139
+ "default": "false",
1140
+ "inheritedFrom": {
1141
+ "name": "Navigation",
1142
+ "module": "src/main/main.ts"
1143
+ }
1144
+ },
1145
+ {
1146
+ "kind": "field",
1147
+ "name": "userName",
1148
+ "type": {
1149
+ "text": "string"
1150
+ },
1151
+ "privacy": "public",
1152
+ "description": "Username of the logged in user",
1153
+ "inheritedFrom": {
1154
+ "name": "Navigation",
1155
+ "module": "src/main/main.ts"
1156
+ }
1157
+ },
1158
+ {
1159
+ "kind": "field",
1160
+ "name": "sideNavOpen",
1161
+ "type": {
1162
+ "text": "boolean"
1163
+ },
1164
+ "default": "false",
1165
+ "inheritedFrom": {
1166
+ "name": "Navigation",
1167
+ "module": "src/main/main.ts"
1168
+ }
1169
+ },
1170
+ {
1171
+ "kind": "field",
1172
+ "name": "logoSrc",
1173
+ "type": {
1174
+ "text": "any"
1175
+ },
1176
+ "default": "logo",
1177
+ "description": "Optional attribute which controls the icon to show on the navigation bar and flyout\nControl via `logo-src`",
1178
+ "inheritedFrom": {
1179
+ "name": "Navigation",
1180
+ "module": "src/main/main.ts"
1181
+ }
1182
+ },
1183
+ {
1184
+ "kind": "field",
1185
+ "name": "showLuminanceToggleButton",
1186
+ "type": {
1187
+ "text": "boolean"
1188
+ },
1189
+ "description": "Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar\nControl via`show-luminance-toggle-button`",
1190
+ "inheritedFrom": {
1191
+ "name": "Navigation",
1192
+ "module": "src/main/main.ts"
1193
+ }
1194
+ },
1195
+ {
1196
+ "kind": "field",
1197
+ "name": "showMiscToggleButton",
1198
+ "type": {
1199
+ "text": "boolean"
1200
+ },
1201
+ "description": "Boolean attribute which controls whether to show the miscellaneous (menu) icon on the navigation bar\nControl via `show-luminance-toggle-button`",
1202
+ "inheritedFrom": {
1203
+ "name": "Navigation",
1204
+ "module": "src/main/main.ts"
1205
+ }
1206
+ },
1207
+ {
1208
+ "kind": "field",
1209
+ "name": "showNotificationsButton",
1210
+ "type": {
1211
+ "text": "boolean"
1212
+ },
1213
+ "description": "Boolean attribute which controls whether to show the notification (bell) icon on the navigation bar\nControl via `show-notification-button`",
1214
+ "deprecated": "- Add/Remove PBC Notify via `genx` instead.",
1215
+ "inheritedFrom": {
1216
+ "name": "Navigation",
1217
+ "module": "src/main/main.ts"
1218
+ }
1219
+ },
1220
+ {
1221
+ "kind": "field",
1222
+ "name": "showConnectionIndicator",
1223
+ "type": {
1224
+ "text": "boolean"
1225
+ },
1226
+ "default": "true",
1227
+ "description": "Boolean attribute which controls whether to show the connection indicator on the navigation bar\nControl via `show-connection-indicator`",
1228
+ "inheritedFrom": {
1229
+ "name": "Navigation",
1230
+ "module": "src/main/main.ts"
1231
+ }
1232
+ },
1233
+ {
1234
+ "kind": "field",
1235
+ "name": "showLanguageSelector",
1236
+ "type": {
1237
+ "text": "boolean"
1238
+ },
1239
+ "default": "false",
1240
+ "description": "Boolean attribute which controls whether to show the language selector on the navigation bar\nControl via `show-language-selector`",
1241
+ "inheritedFrom": {
1242
+ "name": "Navigation",
1243
+ "module": "src/main/main.ts"
1244
+ }
1245
+ },
1246
+ {
1247
+ "kind": "field",
1248
+ "name": "languageOptions",
1249
+ "type": {
1250
+ "text": "LanguageOptions"
1251
+ },
1252
+ "default": "{\n availableLanguages: Object.keys(this.i18next.config.resources ?? {}),\n selectedLanguage: this.i18next.config.lng,\n }",
1253
+ "inheritedFrom": {
1254
+ "name": "Navigation",
1255
+ "module": "src/main/main.ts"
1256
+ }
1257
+ },
1258
+ {
1259
+ "kind": "field",
1260
+ "name": "hideSideBar",
1261
+ "type": {
1262
+ "text": "boolean"
1263
+ },
1264
+ "description": "Boolean attribute which controls whether to include the sideNav component\nControl via`hide-side-bar`",
1265
+ "inheritedFrom": {
1266
+ "name": "Navigation",
1267
+ "module": "src/main/main.ts"
1268
+ }
1269
+ },
1270
+ {
1271
+ "kind": "field",
1272
+ "name": "routeButtons",
1273
+ "type": {
1274
+ "text": "Array<{\n index: number;\n path: string;\n title: string;\n icon: string;\n variant: string;\n }>"
1275
+ },
1276
+ "description": "If present the defined route buttons will be rendered in the header 'routes' slot",
1277
+ "deprecated": "- Use `routeNavItems` instead.",
1278
+ "inheritedFrom": {
1279
+ "name": "Navigation",
1280
+ "module": "src/main/main.ts"
1281
+ }
1282
+ },
1283
+ {
1284
+ "kind": "field",
1285
+ "name": "routeNavItems",
1286
+ "type": {
1287
+ "text": "FoundationRouteNavItem[]"
1288
+ },
1289
+ "description": "If present the defined @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems will be rendered in the header 'routes' slot",
1290
+ "inheritedFrom": {
1291
+ "name": "Navigation",
1292
+ "module": "src/main/main.ts"
1293
+ }
1294
+ },
1295
+ {
1296
+ "kind": "method",
1297
+ "name": "selectTemplate",
1298
+ "inheritedFrom": {
1299
+ "name": "Navigation",
1300
+ "module": "src/main/main.ts"
1301
+ }
1302
+ },
1303
+ {
1304
+ "kind": "method",
1305
+ "name": "logout",
1306
+ "privacy": "public",
1307
+ "description": "Logs the user out of their session",
1308
+ "inheritedFrom": {
1309
+ "name": "Navigation",
1310
+ "module": "src/main/main.ts"
1311
+ }
1312
+ },
1313
+ {
1314
+ "kind": "method",
1315
+ "name": "navigateTo",
1316
+ "privacy": "public",
1317
+ "parameters": [
1318
+ {
1319
+ "name": "path",
1320
+ "type": {
1321
+ "text": "string"
1322
+ },
1323
+ "description": "string represeting the new route to move to"
1324
+ }
1325
+ ],
1326
+ "description": "Changes the route of the current page",
1327
+ "inheritedFrom": {
1328
+ "name": "Navigation",
1329
+ "module": "src/main/main.ts"
1330
+ }
1331
+ },
1332
+ {
1333
+ "kind": "method",
1334
+ "name": "changeLanguage",
1335
+ "parameters": [
1336
+ {
1337
+ "name": "e",
1338
+ "type": {
1339
+ "text": "CustomEvent"
1340
+ }
1341
+ }
1342
+ ],
1343
+ "description": "Changes the language of the application",
1344
+ "inheritedFrom": {
1345
+ "name": "Navigation",
1346
+ "module": "src/main/main.ts"
1347
+ }
1348
+ },
1349
+ {
1350
+ "kind": "method",
1351
+ "name": "toLocalisedText",
1352
+ "return": {
1353
+ "type": {
1354
+ "text": "string"
1355
+ }
1356
+ },
1357
+ "parameters": [
1358
+ {
1359
+ "name": "text",
1360
+ "type": {
1361
+ "text": "string"
1362
+ }
1363
+ }
1364
+ ],
1365
+ "description": "To localised text",
1366
+ "inheritedFrom": {
1367
+ "name": "Navigation",
1368
+ "module": "src/main/main.ts"
1369
+ }
1370
+ }
1371
+ ],
1372
+ "events": [
1373
+ {
1374
+ "description": "Dispatched when the user clicks on the luminance toggle icon in the navigation bar.",
1375
+ "name": "luminance-icon-clicked",
1376
+ "inheritedFrom": {
1377
+ "name": "Navigation",
1378
+ "module": "src/main/main.ts"
1379
+ }
1380
+ },
1381
+ {
1382
+ "description": "Dispatched when the user clicks on the miscellaneous behaviour icon in the navigation bar.",
1383
+ "name": "misc-icon-clicked",
1384
+ "inheritedFrom": {
1385
+ "name": "Navigation",
1386
+ "module": "src/main/main.ts"
1387
+ }
1388
+ },
1389
+ {
1390
+ "description": "Dispatched when the user clicks on the notification icon in the navigation bar.",
1391
+ "name": "notification-icon-clicked",
1392
+ "inheritedFrom": {
1393
+ "name": "Navigation",
1394
+ "module": "src/main/main.ts"
1395
+ }
1396
+ },
1397
+ {
1398
+ "description": "Dispatched when the user changes the language in the language selector.",
1399
+ "name": "language-changed",
1400
+ "inheritedFrom": {
1401
+ "name": "Navigation",
1402
+ "module": "src/main/main.ts"
1403
+ }
1404
+ }
1405
+ ]
1406
+ }
1407
+ ],
1408
+ "exports": [
1409
+ {
1410
+ "kind": "js",
1411
+ "name": "Navigation",
1412
+ "declaration": {
1413
+ "name": "Navigation",
1414
+ "module": "src/main/main.ts"
1415
+ }
1416
+ },
1417
+ {
1418
+ "kind": "custom-element-definition",
1419
+ "name": "foundation-header",
1420
+ "declaration": {
1421
+ "name": "Navigation",
1422
+ "module": "src/main/main.ts"
1423
+ }
1424
+ },
1425
+ {
1426
+ "kind": "js",
1427
+ "name": "FoundationHeader",
1428
+ "declaration": {
1429
+ "name": "FoundationHeader",
1430
+ "module": "src/main/main.ts"
1431
+ }
1432
+ },
1433
+ {
1434
+ "kind": "js",
1435
+ "name": "ZeroHeader",
1436
+ "declaration": {
1437
+ "name": "ZeroHeader",
1438
+ "module": "src/main/main.ts"
1439
+ }
1440
+ },
1441
+ {
1442
+ "kind": "custom-element-definition",
1443
+ "name": "zero-header",
1444
+ "declaration": {
1445
+ "name": "ZeroHeader",
1446
+ "module": "src/main/main.ts"
1447
+ }
1448
+ }
1449
+ ]
1450
+ },
1451
+ {
1452
+ "kind": "javascript-module",
1453
+ "path": "src/styles/colors.ts",
1454
+ "declarations": [
1455
+ {
1456
+ "kind": "function",
1457
+ "name": "getWebRGBA",
1458
+ "parameters": [
1459
+ {
1460
+ "name": "rgb",
1461
+ "type": {
1462
+ "text": "ColorRGBA64"
1463
+ }
1464
+ },
1465
+ {
1466
+ "name": "alpha",
1467
+ "default": "1.0",
1468
+ "type": {
1469
+ "text": "number"
1470
+ }
1471
+ }
1472
+ ]
1473
+ },
1474
+ {
1475
+ "kind": "variable",
1476
+ "name": "defaultBackgroundHover"
1477
+ },
1478
+ {
1479
+ "kind": "variable",
1480
+ "name": "defaultBackgroundItem"
1481
+ },
1482
+ {
1483
+ "kind": "variable",
1484
+ "name": "backgroundNavOption"
1485
+ }
1486
+ ],
1487
+ "exports": [
1488
+ {
1489
+ "kind": "js",
1490
+ "name": "getWebRGBA",
1491
+ "declaration": {
1492
+ "name": "getWebRGBA",
1493
+ "module": "src/styles/colors.ts"
1494
+ }
1495
+ },
1496
+ {
1497
+ "kind": "js",
1498
+ "name": "defaultBackgroundHover",
1499
+ "declaration": {
1500
+ "name": "defaultBackgroundHover",
1501
+ "module": "src/styles/colors.ts"
1502
+ }
1503
+ },
1504
+ {
1505
+ "kind": "js",
1506
+ "name": "defaultBackgroundItem",
1507
+ "declaration": {
1508
+ "name": "defaultBackgroundItem",
1509
+ "module": "src/styles/colors.ts"
1510
+ }
1511
+ },
1512
+ {
1513
+ "kind": "js",
1514
+ "name": "backgroundNavOption",
1515
+ "declaration": {
1516
+ "name": "backgroundNavOption",
1517
+ "module": "src/styles/colors.ts"
1518
+ }
1519
+ }
1520
+ ]
1521
+ },
1522
+ {
1523
+ "kind": "javascript-module",
1524
+ "path": "src/styles/index.ts",
1525
+ "declarations": [],
1526
+ "exports": [
1527
+ {
1528
+ "kind": "js",
1529
+ "name": "*",
1530
+ "declaration": {
1531
+ "name": "*",
1532
+ "package": "./colors"
1533
+ }
1534
+ },
1535
+ {
1536
+ "kind": "js",
1537
+ "name": "*",
1538
+ "declaration": {
1539
+ "name": "*",
1540
+ "package": "./styles"
1541
+ }
1542
+ }
1543
+ ]
1544
+ },
1545
+ {
1546
+ "kind": "javascript-module",
1547
+ "path": "src/styles/styles.ts",
1548
+ "declarations": [
1549
+ {
1550
+ "kind": "function",
1551
+ "name": "mixinScreen",
1552
+ "parameters": [
1553
+ {
1554
+ "name": "display",
1555
+ "default": "'block'",
1556
+ "type": {
1557
+ "text": "string"
1558
+ }
1559
+ }
1560
+ ],
1561
+ "description": "TODO: Bring all the style and typography mixins into the design system package"
1562
+ },
1563
+ {
1564
+ "kind": "function",
1565
+ "name": "genesisLogo",
1566
+ "parameters": [
1567
+ {
1568
+ "name": "slot",
1569
+ "default": "'start'"
1570
+ }
1571
+ ],
1572
+ "description": "TODO"
1573
+ },
1574
+ {
1575
+ "kind": "function",
1576
+ "name": "settingsIcon",
1577
+ "parameters": [
1578
+ {
1579
+ "name": "slot",
1580
+ "default": "'start'"
1581
+ }
1582
+ ]
1583
+ }
1584
+ ],
1585
+ "exports": [
1586
+ {
1587
+ "kind": "js",
1588
+ "name": "mixinScreen",
1589
+ "declaration": {
1590
+ "name": "mixinScreen",
1591
+ "module": "src/styles/styles.ts"
1592
+ }
1593
+ },
1594
+ {
1595
+ "kind": "js",
1596
+ "name": "genesisLogo",
1597
+ "declaration": {
1598
+ "name": "genesisLogo",
1599
+ "module": "src/styles/styles.ts"
1600
+ }
1601
+ },
653
1602
  {
654
1603
  "kind": "js",
655
1604
  "name": "settingsIcon",
@@ -660,6 +1609,27 @@
660
1609
  }
661
1610
  ]
662
1611
  },
1612
+ {
1613
+ "kind": "javascript-module",
1614
+ "path": "src/tags/index.ts",
1615
+ "declarations": [],
1616
+ "exports": [
1617
+ {
1618
+ "kind": "js",
1619
+ "name": "*",
1620
+ "declaration": {
1621
+ "name": "*",
1622
+ "package": "./tags"
1623
+ }
1624
+ }
1625
+ ]
1626
+ },
1627
+ {
1628
+ "kind": "javascript-module",
1629
+ "path": "src/tags/tags.ts",
1630
+ "declarations": [],
1631
+ "exports": []
1632
+ },
663
1633
  {
664
1634
  "kind": "javascript-module",
665
1635
  "path": "src/utils/index.ts",