@genesislcap/foundation-header 14.191.0 → 14.192.0-accessibility.2
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/dist/custom-elements.json +65 -1
- package/dist/dts/main/main.d.ts +27 -9
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/dts/main/main.template.d.ts.map +1 -1
- package/dist/esm/main/main.js +5 -0
- package/dist/esm/main/main.template.js +31 -9
- package/dist/foundation-header.api.json +31 -1
- package/dist/foundation-header.d.ts +27 -9
- package/docs/api/foundation-header.navigation.logoalttext.md +11 -0
- package/docs/api/foundation-header.navigation.md +1 -0
- package/docs/api-report.md +2 -0
- package/package.json +17 -17
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
{
|
|
238
238
|
"kind": "variable",
|
|
239
239
|
"name": "NavTemplate",
|
|
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
|
|
240
|
+
"default": "html<Navigation>`\n ${when((x) => !x.hideSideBar, sideNavTemplate)}\n <div class=\"nav-listbox\" data-test-id=\"nav-bar\" role=\"navigation\" aria-label=\"Main menu\">\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 <${buttonTag}\n class=\"bars-container\"\n @click=${(x) => x.toggleNavVisibility()}\n data-test-id=\"hamburger-menu\"\n aria-label=\"Toggle side menu\"\n aria-expanded=${(x) => x.sideNavOpen}\n appearance=\"stealth\"\n >\n <${iconTag} name=\"bars\" part=\"nav-visibility-icon\" class=\"nav-visibility-icon\"></${iconTag}>\n </${buttonTag}>\n `,\n )}\n <div class=\"logo-container\" data-test-id=\"nav-bar-logo\">\n <img\n src=${(x) => x.logoSrc}\n class=\"logo\"\n part=\"logo\"\n data-test-id=\"logo\"\n alt=\"${(x) => x.logoAltText}\"\n />\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 aria-label=\"Luminance toggle\"\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\" aria-label=\"Misc icon\">\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 aria-label=\"Language selector\"\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\" aria-label=\"User 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`",
|
|
241
241
|
"description": "Template for Navigation class",
|
|
242
242
|
"return": {
|
|
243
243
|
"type": {
|
|
@@ -329,6 +329,14 @@
|
|
|
329
329
|
"default": "logo",
|
|
330
330
|
"description": "Optional attribute which controls the icon to show on the navigation bar and flyout\nControl via `logo-src`"
|
|
331
331
|
},
|
|
332
|
+
{
|
|
333
|
+
"kind": "field",
|
|
334
|
+
"name": "logoAltText",
|
|
335
|
+
"type": {
|
|
336
|
+
"text": "string"
|
|
337
|
+
},
|
|
338
|
+
"default": "'Corporate Logo'"
|
|
339
|
+
},
|
|
332
340
|
{
|
|
333
341
|
"kind": "field",
|
|
334
342
|
"name": "showLuminanceToggleButton",
|
|
@@ -493,6 +501,14 @@
|
|
|
493
501
|
},
|
|
494
502
|
"fieldName": "logoSrc"
|
|
495
503
|
},
|
|
504
|
+
{
|
|
505
|
+
"name": "logo-alt-text",
|
|
506
|
+
"type": {
|
|
507
|
+
"text": "string"
|
|
508
|
+
},
|
|
509
|
+
"default": "'Corporate Logo'",
|
|
510
|
+
"fieldName": "logoAltText"
|
|
511
|
+
},
|
|
496
512
|
{
|
|
497
513
|
"name": "show-luminance-toggle-button",
|
|
498
514
|
"type": {
|
|
@@ -661,6 +677,18 @@
|
|
|
661
677
|
"module": "src/main/main.ts"
|
|
662
678
|
}
|
|
663
679
|
},
|
|
680
|
+
{
|
|
681
|
+
"kind": "field",
|
|
682
|
+
"name": "logoAltText",
|
|
683
|
+
"type": {
|
|
684
|
+
"text": "string"
|
|
685
|
+
},
|
|
686
|
+
"default": "'Corporate Logo'",
|
|
687
|
+
"inheritedFrom": {
|
|
688
|
+
"name": "Navigation",
|
|
689
|
+
"module": "src/main/main.ts"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
664
692
|
{
|
|
665
693
|
"kind": "field",
|
|
666
694
|
"name": "showLuminanceToggleButton",
|
|
@@ -871,6 +899,18 @@
|
|
|
871
899
|
"module": "src/main/main.ts"
|
|
872
900
|
}
|
|
873
901
|
},
|
|
902
|
+
{
|
|
903
|
+
"name": "logo-alt-text",
|
|
904
|
+
"type": {
|
|
905
|
+
"text": "string"
|
|
906
|
+
},
|
|
907
|
+
"default": "'Corporate Logo'",
|
|
908
|
+
"fieldName": "logoAltText",
|
|
909
|
+
"inheritedFrom": {
|
|
910
|
+
"name": "Navigation",
|
|
911
|
+
"module": "src/main/main.ts"
|
|
912
|
+
}
|
|
913
|
+
},
|
|
874
914
|
{
|
|
875
915
|
"name": "show-luminance-toggle-button",
|
|
876
916
|
"type": {
|
|
@@ -1009,6 +1049,18 @@
|
|
|
1009
1049
|
"module": "src/main/main.ts"
|
|
1010
1050
|
}
|
|
1011
1051
|
},
|
|
1052
|
+
{
|
|
1053
|
+
"name": "logo-alt-text",
|
|
1054
|
+
"type": {
|
|
1055
|
+
"text": "string"
|
|
1056
|
+
},
|
|
1057
|
+
"default": "'Corporate Logo'",
|
|
1058
|
+
"fieldName": "logoAltText",
|
|
1059
|
+
"inheritedFrom": {
|
|
1060
|
+
"name": "Navigation",
|
|
1061
|
+
"module": "src/main/main.ts"
|
|
1062
|
+
}
|
|
1063
|
+
},
|
|
1012
1064
|
{
|
|
1013
1065
|
"name": "show-luminance-toggle-button",
|
|
1014
1066
|
"type": {
|
|
@@ -1180,6 +1232,18 @@
|
|
|
1180
1232
|
"module": "src/main/main.ts"
|
|
1181
1233
|
}
|
|
1182
1234
|
},
|
|
1235
|
+
{
|
|
1236
|
+
"kind": "field",
|
|
1237
|
+
"name": "logoAltText",
|
|
1238
|
+
"type": {
|
|
1239
|
+
"text": "string"
|
|
1240
|
+
},
|
|
1241
|
+
"default": "'Corporate Logo'",
|
|
1242
|
+
"inheritedFrom": {
|
|
1243
|
+
"name": "Navigation",
|
|
1244
|
+
"module": "src/main/main.ts"
|
|
1245
|
+
}
|
|
1246
|
+
},
|
|
1183
1247
|
{
|
|
1184
1248
|
"kind": "field",
|
|
1185
1249
|
"name": "showLuminanceToggleButton",
|
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -65,7 +65,14 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
65
65
|
readonly scrollHeight: number;
|
|
66
66
|
scrollLeft: number;
|
|
67
67
|
scrollTop: number;
|
|
68
|
-
readonly scrollWidth: number;
|
|
68
|
+
readonly scrollWidth: number; /**
|
|
69
|
+
* Optional attribute which controls the icon to show on the navigation bar and flyout
|
|
70
|
+
* Control via `logo-src`
|
|
71
|
+
*
|
|
72
|
+
* @remarks
|
|
73
|
+
*
|
|
74
|
+
* If this attribute is not set then the Genesis logo is shown instead
|
|
75
|
+
*/
|
|
69
76
|
readonly shadowRoot: ShadowRoot;
|
|
70
77
|
slot: string;
|
|
71
78
|
readonly tagName: string;
|
|
@@ -87,9 +94,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
87
94
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
88
95
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
89
96
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
97
|
hasAttribute(qualifiedName: string): boolean;
|
|
94
98
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
95
99
|
hasAttributes(): boolean;
|
|
@@ -134,7 +138,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
134
138
|
appendChild<T extends Node>(node: T): T;
|
|
135
139
|
cloneNode(deep?: boolean): Node;
|
|
136
140
|
compareDocumentPosition(other: Node): number;
|
|
137
|
-
contains(other: Node): boolean;
|
|
141
|
+
contains(other: Node): boolean; /**
|
|
142
|
+
* If present the defined {@link @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems} will be rendered in the header 'routes' slot
|
|
143
|
+
*/
|
|
138
144
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
139
145
|
hasChildNodes(): boolean;
|
|
140
146
|
insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
|
|
@@ -191,6 +197,16 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
191
197
|
ariaPosInSet: string;
|
|
192
198
|
ariaPressed: string;
|
|
193
199
|
ariaReadOnly: string;
|
|
200
|
+
/**
|
|
201
|
+
* Opens the flyout menu on the left hand side
|
|
202
|
+
*
|
|
203
|
+
* @remarks
|
|
204
|
+
*
|
|
205
|
+
* Activated when the user clicks on the menu button on the navigation
|
|
206
|
+
* bar left hand side
|
|
207
|
+
*
|
|
208
|
+
* @internal
|
|
209
|
+
*/
|
|
194
210
|
ariaRequired: string;
|
|
195
211
|
ariaRoleDescription: string;
|
|
196
212
|
ariaRowCount: string;
|
|
@@ -211,7 +227,10 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
211
227
|
before(...nodes: (string | Node)[]): void;
|
|
212
228
|
remove(): void;
|
|
213
229
|
replaceWith(...nodes: (string | Node)[]): void;
|
|
214
|
-
innerHTML: string;
|
|
230
|
+
innerHTML: string;
|
|
231
|
+
readonly nextElementSibling: Element;
|
|
232
|
+
readonly previousElementSibling: Element;
|
|
233
|
+
readonly childElementCount: number; /**
|
|
215
234
|
* Emits the event corresponding to the notification icon being clicked
|
|
216
235
|
*
|
|
217
236
|
* @remarks
|
|
@@ -221,9 +240,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
221
240
|
*
|
|
222
241
|
* @internal
|
|
223
242
|
*/
|
|
224
|
-
readonly nextElementSibling: Element;
|
|
225
|
-
readonly previousElementSibling: Element;
|
|
226
|
-
readonly childElementCount: number;
|
|
227
243
|
readonly children: HTMLCollection;
|
|
228
244
|
readonly firstElementChild: Element;
|
|
229
245
|
readonly lastElementChild: Element;
|
|
@@ -360,6 +376,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
360
376
|
* - The contents of the flyout menu.
|
|
361
377
|
*
|
|
362
378
|
* @param logo-src - Option attribute which sets the source of the image in the navigation bar and flyout menu. The Genesis logo will be shown if this attribute is not provided.
|
|
379
|
+
* @param logo-alt-text -Descriptive logo text.
|
|
363
380
|
* @param show-luminance-toggle-button - Boolean attribute which controls whether the navigation bar will display the luminance toggle icon.
|
|
364
381
|
* @param show-misc-toggle-button - Boolean attribute which controls whether the navigation bar will display the miscellaneous behaviour icon.
|
|
365
382
|
* @param notification-icon-clicked - Boolean attribute which controls whether the navigation bar will display the show notification icon.
|
|
@@ -401,6 +418,7 @@ export declare class Navigation extends Navigation_base {
|
|
|
401
418
|
* If this attribute is not set then the Genesis logo is shown instead
|
|
402
419
|
*/
|
|
403
420
|
logoSrc: any;
|
|
421
|
+
logoAltText: string;
|
|
404
422
|
/**
|
|
405
423
|
* Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar
|
|
406
424
|
* Control via`show-luminance-toggle-button`
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,iBAAiB,EAAgB,MAAM,+BAA+B,CAAC;AAEtF,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,KAAK,EAAE,sBAAsB,EAAuB,MAAM,4BAA4B,CAAC;AAI9F,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAKhD;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,wBAAwB,EAAE,IAAI,CAAC;IAC/B,mBAAmB,EAAE,IAAI,CAAC;IAC1B,2BAA2B,EAAE,IAAI,CAAC;IAClC,kBAAkB,EAAE,IAAI,CAAC;CAC1B,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.template.d.ts","sourceRoot":"","sources":["../../../src/main/main.template.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAW5D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"main.template.d.ts","sourceRoot":"","sources":["../../../src/main/main.template.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAW5D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AA4FzC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,WAAW,+BAwGvB,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,eAAe,EAAE,YAAY,CAAC,UAAU,CAIpD,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,eAAe,EAAE,YAAY,CAAC,UAAU,CAEpD,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,YAAY,EAAE,YAAY,CAAC,UAAU,CAEjD,CAAC"}
|
package/dist/esm/main/main.js
CHANGED
|
@@ -22,6 +22,7 @@ import { DynamicTemplate as template, LoadingTemplate, MainTemplate } from './ma
|
|
|
22
22
|
* - The contents of the flyout menu.
|
|
23
23
|
*
|
|
24
24
|
* @param logo-src - Option attribute which sets the source of the image in the navigation bar and flyout menu. The Genesis logo will be shown if this attribute is not provided.
|
|
25
|
+
* @param logo-alt-text -Descriptive logo text.
|
|
25
26
|
* @param show-luminance-toggle-button - Boolean attribute which controls whether the navigation bar will display the luminance toggle icon.
|
|
26
27
|
* @param show-misc-toggle-button - Boolean attribute which controls whether the navigation bar will display the miscellaneous behaviour icon.
|
|
27
28
|
* @param notification-icon-clicked - Boolean attribute which controls whether the navigation bar will display the show notification icon.
|
|
@@ -57,6 +58,7 @@ let Navigation = class Navigation extends EventEmitter(FASTElement) {
|
|
|
57
58
|
* If this attribute is not set then the Genesis logo is shown instead
|
|
58
59
|
*/
|
|
59
60
|
this.logoSrc = logo;
|
|
61
|
+
this.logoAltText = 'Corporate Logo';
|
|
60
62
|
/**
|
|
61
63
|
* Boolean attribute which controls whether to show the connection indicator on the navigation bar
|
|
62
64
|
* Control via `show-connection-indicator`
|
|
@@ -296,6 +298,9 @@ __decorate([
|
|
|
296
298
|
__decorate([
|
|
297
299
|
attr({ attribute: 'logo-src' })
|
|
298
300
|
], Navigation.prototype, "logoSrc", void 0);
|
|
301
|
+
__decorate([
|
|
302
|
+
attr({ attribute: 'logo-alt-text' })
|
|
303
|
+
], Navigation.prototype, "logoAltText", void 0);
|
|
299
304
|
__decorate([
|
|
300
305
|
attr({ mode: 'boolean', attribute: 'show-luminance-toggle-button' })
|
|
301
306
|
], Navigation.prototype, "showLuminanceToggleButton", void 0);
|
|
@@ -8,6 +8,8 @@ const sideNavTemplate = html `
|
|
|
8
8
|
?closed=${(x) => !x.sideNavOpen}
|
|
9
9
|
@closed=${(x) => x.toggleNavVisibility()}
|
|
10
10
|
data-test-id="side-nav"
|
|
11
|
+
role="navigation"
|
|
12
|
+
aria-label="Side navigation"
|
|
11
13
|
>
|
|
12
14
|
<img
|
|
13
15
|
slot="title"
|
|
@@ -15,6 +17,7 @@ const sideNavTemplate = html `
|
|
|
15
17
|
class="logo"
|
|
16
18
|
part="side-nav-logo"
|
|
17
19
|
data-test-id="side-nav-logo"
|
|
20
|
+
alt="${(x) => x.logoAltText}"
|
|
18
21
|
/>
|
|
19
22
|
<slot name="menu-contents"></slot>
|
|
20
23
|
<div
|
|
@@ -22,6 +25,7 @@ const sideNavTemplate = html `
|
|
|
22
25
|
class="logout-container"
|
|
23
26
|
data-test-id="logout-button"
|
|
24
27
|
@click=${(x) => x.logout()}
|
|
28
|
+
aria-label="Sign out"
|
|
25
29
|
>
|
|
26
30
|
<${iconTag} name="sign-out-alt"></${iconTag}>
|
|
27
31
|
Sign out
|
|
@@ -32,17 +36,23 @@ const defaultRouteNavItemsTemplate = html `
|
|
|
32
36
|
<${buttonTag}
|
|
33
37
|
appearance="neutral-grey"
|
|
34
38
|
class="nav-button"
|
|
35
|
-
value="1"
|
|
36
39
|
@click=${(x) => x.navigateTo('protected')}
|
|
37
40
|
data-test-id="home-button"
|
|
41
|
+
aria-label="Home"
|
|
38
42
|
>
|
|
39
43
|
<${iconTag} name="home"></${iconTag}>
|
|
40
44
|
Home
|
|
41
45
|
</${buttonTag}>
|
|
42
|
-
<${
|
|
46
|
+
<${buttonTag}
|
|
47
|
+
appearance="neutral-grey"
|
|
48
|
+
class="nav-button"
|
|
49
|
+
@click=${(x) => x.navigateTo('not-found')}
|
|
50
|
+
data-test-id="profiles-button"
|
|
51
|
+
aria-label="Profiles"
|
|
52
|
+
>
|
|
43
53
|
<${iconTag} name="users"></${iconTag}>
|
|
44
54
|
Profiles
|
|
45
|
-
</${
|
|
55
|
+
</${buttonTag}>
|
|
46
56
|
`;
|
|
47
57
|
const routeNavItemsTemplate = html `
|
|
48
58
|
<template>
|
|
@@ -54,6 +64,7 @@ const routeNavItemsTemplate = html `
|
|
|
54
64
|
slot="routes"
|
|
55
65
|
@click=${(x, c) => c.parent.navigateTo(x.routePath)}
|
|
56
66
|
data-test-id="${(x) => `${x.routePath}-button`}"
|
|
67
|
+
aria-label=${(x) => x.title}
|
|
57
68
|
>
|
|
58
69
|
${when((x) => x.icon, html `
|
|
59
70
|
<${iconTag}
|
|
@@ -82,21 +93,30 @@ const routeNavItemsTemplate = html `
|
|
|
82
93
|
*/
|
|
83
94
|
export const NavTemplate = html `
|
|
84
95
|
${when((x) => !x.hideSideBar, sideNavTemplate)}
|
|
85
|
-
<div class="nav-listbox" data-test-id="nav-bar">
|
|
96
|
+
<div class="nav-listbox" data-test-id="nav-bar" role="navigation" aria-label="Main menu">
|
|
86
97
|
${app.registerElementsTarget('header-start')}
|
|
87
98
|
<div class="nav-leftside">
|
|
88
99
|
${app.registerElementsTarget('nav-start')}
|
|
89
100
|
${when((x) => !x.hideSideBar, html `
|
|
90
|
-
|
|
101
|
+
<${buttonTag}
|
|
91
102
|
class="bars-container"
|
|
92
103
|
@click=${(x) => x.toggleNavVisibility()}
|
|
93
104
|
data-test-id="hamburger-menu"
|
|
105
|
+
aria-label="Toggle side menu"
|
|
106
|
+
aria-expanded=${(x) => x.sideNavOpen}
|
|
107
|
+
appearance="stealth"
|
|
94
108
|
>
|
|
95
109
|
<${iconTag} name="bars" part="nav-visibility-icon" class="nav-visibility-icon"></${iconTag}>
|
|
96
|
-
|
|
110
|
+
</${buttonTag}>
|
|
97
111
|
`)}
|
|
98
112
|
<div class="logo-container" data-test-id="nav-bar-logo">
|
|
99
|
-
<img
|
|
113
|
+
<img
|
|
114
|
+
src=${(x) => x.logoSrc}
|
|
115
|
+
class="logo"
|
|
116
|
+
part="logo"
|
|
117
|
+
data-test-id="logo"
|
|
118
|
+
alt="${(x) => x.logoAltText}"
|
|
119
|
+
/>
|
|
100
120
|
</div>
|
|
101
121
|
<slot name="routes" data-test-id="route-buttons">
|
|
102
122
|
${(x) => (x.routeNavItems ? routeNavItemsTemplate : defaultRouteNavItemsTemplate)}
|
|
@@ -110,6 +130,7 @@ export const NavTemplate = html `
|
|
|
110
130
|
class="icon-container"
|
|
111
131
|
data-test-id="luminance-toggle-button"
|
|
112
132
|
part="luminance-button"
|
|
133
|
+
aria-label="Luminance toggle"
|
|
113
134
|
>
|
|
114
135
|
<${iconTag}
|
|
115
136
|
@click=${(x) => x.luminanceIconEvent()}
|
|
@@ -120,7 +141,7 @@ export const NavTemplate = html `
|
|
|
120
141
|
</div>
|
|
121
142
|
`)}
|
|
122
143
|
${when((x) => x.showMiscToggleButton, html `
|
|
123
|
-
<div class="icon-container" data-test-id="misc-toggle-button" part="misc-button">
|
|
144
|
+
<div class="icon-container" data-test-id="misc-toggle-button" part="misc-button" aria-label="Misc icon">
|
|
124
145
|
<${iconTag} @click=${(x) => x.miscIconEvent()} name="th" part="misc-icon"></${iconTag}>
|
|
125
146
|
</div>
|
|
126
147
|
`)}
|
|
@@ -136,6 +157,7 @@ export const NavTemplate = html `
|
|
|
136
157
|
data-test-id="language-selector"
|
|
137
158
|
part="language-selector"
|
|
138
159
|
@change="${(x, c) => x.changeLanguage(c.event)}"
|
|
160
|
+
aria-label="Language selector"
|
|
139
161
|
>
|
|
140
162
|
${repeat((x) => x.languageOptions.availableLanguages, html `
|
|
141
163
|
<${optionTag}
|
|
@@ -148,7 +170,7 @@ export const NavTemplate = html `
|
|
|
148
170
|
</${selectTag}>
|
|
149
171
|
`)}
|
|
150
172
|
|
|
151
|
-
<${buttonTag} appearance="neutral-grey" data-test-id="user-button" class="nav-button">
|
|
173
|
+
<${buttonTag} appearance="neutral-grey" data-test-id="user-button" class="nav-button" aria-label="User button">
|
|
152
174
|
<${iconTag} name="user-circle"></${iconTag}>
|
|
153
175
|
${(x) => x.userName}
|
|
154
176
|
</${buttonTag}>
|
|
@@ -563,7 +563,7 @@
|
|
|
563
563
|
{
|
|
564
564
|
"kind": "Class",
|
|
565
565
|
"canonicalReference": "@genesislcap/foundation-header!Navigation:class",
|
|
566
|
-
"docComment": "/**\n * Navigation micro-frontend includes navigation bar and flyout menu\n *\n * @remarks\n *\n * `foundation-header` micro-frontend can be added to the project to include a navigation bar and flyout menu. There are multiple ways that the behaviour of the component can be configured - the icon shown on the navigation bar and flyout menu (this shows the Genesis logo by default). - navigation links at the left-hand side of the navigation bar. - the control buttons on the right-hand side of the navigation bar can be shown or hidden, and their behaviour controlled via event listeners - The contents of the flyout menu.\n *\n * @param logo - src - Option attribute which sets the source of the image in the navigation bar and flyout menu. The Genesis logo will be shown if this attribute is not provided.\n *\n * @param show - luminance-toggle-button - Boolean attribute which controls whether the navigation bar will display the luminance toggle icon.\n *\n * @param show - misc-toggle-button - Boolean attribute which controls whether the navigation bar will display the miscellaneous behaviour icon.\n *\n * @param notification - icon-clicked - Boolean attribute which controls whether the navigation bar will display the show notification icon.\n *\n * @param show - connection-indicator - Boolean attribute which controls whether the navigation bar will display the connection indicator.\n *\n * @param show - language-selector - Boolean attribute which controls whether the navigation bar will display the language selector.\n *\n * @param hide - side-bar - Boolean attribute which controls whether the navigation bar will display the side bar.\n *\n * @param userName - String which defines the username to be displayed in the navigation bar.\n *\n * @param routeButtons - Array of objects which define the route buttons to be displayed in the navigation bar.\n *\n * @param routeNavItems - Array of {@link @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems} which define the route buttons to be displayed in the navigation bar.\n *\n * @param languageOptions - Object which defines the language options to be displayed in the language selector.\n *\n * @fires\n *\n * luminance-icon-clicked - Dispatched when the user clicks on the luminance toggle icon in the navigation bar.\n *\n * @fires\n *\n * misc-icon-clicked - Dispatched when the user clicks on the miscellaneous behaviour icon in the navigation bar.\n *\n * @fires\n *\n * notification-icon-clicked - Dispatched when the user clicks on the notification icon in the navigation bar.\n *\n * @fires\n *\n * language-changed - Dispatched when the user changes the language in the language selector.\n *\n * @public\n */\n",
|
|
566
|
+
"docComment": "/**\n * Navigation micro-frontend includes navigation bar and flyout menu\n *\n * @remarks\n *\n * `foundation-header` micro-frontend can be added to the project to include a navigation bar and flyout menu. There are multiple ways that the behaviour of the component can be configured - the icon shown on the navigation bar and flyout menu (this shows the Genesis logo by default). - navigation links at the left-hand side of the navigation bar. - the control buttons on the right-hand side of the navigation bar can be shown or hidden, and their behaviour controlled via event listeners - The contents of the flyout menu.\n *\n * @param logo - src - Option attribute which sets the source of the image in the navigation bar and flyout menu. The Genesis logo will be shown if this attribute is not provided.\n *\n * @param logo - alt-text -Descriptive logo text.\n *\n * @param show - luminance-toggle-button - Boolean attribute which controls whether the navigation bar will display the luminance toggle icon.\n *\n * @param show - misc-toggle-button - Boolean attribute which controls whether the navigation bar will display the miscellaneous behaviour icon.\n *\n * @param notification - icon-clicked - Boolean attribute which controls whether the navigation bar will display the show notification icon.\n *\n * @param show - connection-indicator - Boolean attribute which controls whether the navigation bar will display the connection indicator.\n *\n * @param show - language-selector - Boolean attribute which controls whether the navigation bar will display the language selector.\n *\n * @param hide - side-bar - Boolean attribute which controls whether the navigation bar will display the side bar.\n *\n * @param userName - String which defines the username to be displayed in the navigation bar.\n *\n * @param routeButtons - Array of objects which define the route buttons to be displayed in the navigation bar.\n *\n * @param routeNavItems - Array of {@link @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems} which define the route buttons to be displayed in the navigation bar.\n *\n * @param languageOptions - Object which defines the language options to be displayed in the language selector.\n *\n * @fires\n *\n * luminance-icon-clicked - Dispatched when the user clicks on the luminance toggle icon in the navigation bar.\n *\n * @fires\n *\n * misc-icon-clicked - Dispatched when the user clicks on the miscellaneous behaviour icon in the navigation bar.\n *\n * @fires\n *\n * notification-icon-clicked - Dispatched when the user clicks on the notification icon in the navigation bar.\n *\n * @fires\n *\n * language-changed - Dispatched when the user changes the language in the language selector.\n *\n * @public\n */\n",
|
|
567
567
|
"excerptTokens": [
|
|
568
568
|
{
|
|
569
569
|
"kind": "Content",
|
|
@@ -855,6 +855,36 @@
|
|
|
855
855
|
"isProtected": false,
|
|
856
856
|
"isAbstract": false
|
|
857
857
|
},
|
|
858
|
+
{
|
|
859
|
+
"kind": "Property",
|
|
860
|
+
"canonicalReference": "@genesislcap/foundation-header!Navigation#logoAltText:member",
|
|
861
|
+
"docComment": "",
|
|
862
|
+
"excerptTokens": [
|
|
863
|
+
{
|
|
864
|
+
"kind": "Content",
|
|
865
|
+
"text": "logoAltText: "
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"kind": "Content",
|
|
869
|
+
"text": "string"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"kind": "Content",
|
|
873
|
+
"text": ";"
|
|
874
|
+
}
|
|
875
|
+
],
|
|
876
|
+
"isReadonly": false,
|
|
877
|
+
"isOptional": false,
|
|
878
|
+
"releaseTag": "Public",
|
|
879
|
+
"name": "logoAltText",
|
|
880
|
+
"propertyTypeTokenRange": {
|
|
881
|
+
"startIndex": 1,
|
|
882
|
+
"endIndex": 2
|
|
883
|
+
},
|
|
884
|
+
"isStatic": false,
|
|
885
|
+
"isProtected": false,
|
|
886
|
+
"isAbstract": false
|
|
887
|
+
},
|
|
858
888
|
{
|
|
859
889
|
"kind": "Property",
|
|
860
890
|
"canonicalReference": "@genesislcap/foundation-header!Navigation#logoSrc:member",
|
|
@@ -191,6 +191,7 @@ export declare type NavEventDetailMap = {
|
|
|
191
191
|
* - The contents of the flyout menu.
|
|
192
192
|
*
|
|
193
193
|
* @param logo-src - Option attribute which sets the source of the image in the navigation bar and flyout menu. The Genesis logo will be shown if this attribute is not provided.
|
|
194
|
+
* @param logo-alt-text -Descriptive logo text.
|
|
194
195
|
* @param show-luminance-toggle-button - Boolean attribute which controls whether the navigation bar will display the luminance toggle icon.
|
|
195
196
|
* @param show-misc-toggle-button - Boolean attribute which controls whether the navigation bar will display the miscellaneous behaviour icon.
|
|
196
197
|
* @param notification-icon-clicked - Boolean attribute which controls whether the navigation bar will display the show notification icon.
|
|
@@ -232,6 +233,7 @@ export declare class Navigation extends Navigation_base {
|
|
|
232
233
|
* If this attribute is not set then the Genesis logo is shown instead
|
|
233
234
|
*/
|
|
234
235
|
logoSrc: any;
|
|
236
|
+
logoAltText: string;
|
|
235
237
|
/**
|
|
236
238
|
* Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar
|
|
237
239
|
* Control via`show-luminance-toggle-button`
|
|
@@ -460,7 +462,14 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
460
462
|
readonly scrollHeight: number;
|
|
461
463
|
scrollLeft: number;
|
|
462
464
|
scrollTop: number;
|
|
463
|
-
readonly scrollWidth: number;
|
|
465
|
+
readonly scrollWidth: number; /**
|
|
466
|
+
* Optional attribute which controls the icon to show on the navigation bar and flyout
|
|
467
|
+
* Control via `logo-src`
|
|
468
|
+
*
|
|
469
|
+
* @remarks
|
|
470
|
+
*
|
|
471
|
+
* If this attribute is not set then the Genesis logo is shown instead
|
|
472
|
+
*/
|
|
464
473
|
readonly shadowRoot: ShadowRoot;
|
|
465
474
|
slot: string;
|
|
466
475
|
readonly tagName: string;
|
|
@@ -482,9 +491,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
482
491
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
483
492
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
484
493
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
485
|
-
/**
|
|
486
|
-
* @internal
|
|
487
|
-
*/
|
|
488
494
|
hasAttribute(qualifiedName: string): boolean;
|
|
489
495
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
490
496
|
hasAttributes(): boolean;
|
|
@@ -529,7 +535,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
529
535
|
appendChild<T extends Node>(node: T): T;
|
|
530
536
|
cloneNode(deep?: boolean): Node;
|
|
531
537
|
compareDocumentPosition(other: Node): number;
|
|
532
|
-
contains(other: Node): boolean;
|
|
538
|
+
contains(other: Node): boolean; /**
|
|
539
|
+
* If present the defined {@link @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems} will be rendered in the header 'routes' slot
|
|
540
|
+
*/
|
|
533
541
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
534
542
|
hasChildNodes(): boolean;
|
|
535
543
|
insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
|
|
@@ -586,6 +594,16 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
586
594
|
ariaPosInSet: string;
|
|
587
595
|
ariaPressed: string;
|
|
588
596
|
ariaReadOnly: string;
|
|
597
|
+
/**
|
|
598
|
+
* Opens the flyout menu on the left hand side
|
|
599
|
+
*
|
|
600
|
+
* @remarks
|
|
601
|
+
*
|
|
602
|
+
* Activated when the user clicks on the menu button on the navigation
|
|
603
|
+
* bar left hand side
|
|
604
|
+
*
|
|
605
|
+
* @internal
|
|
606
|
+
*/
|
|
589
607
|
ariaRequired: string;
|
|
590
608
|
ariaRoleDescription: string;
|
|
591
609
|
ariaRowCount: string;
|
|
@@ -606,7 +624,10 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
606
624
|
before(...nodes: (string | Node)[]): void;
|
|
607
625
|
remove(): void;
|
|
608
626
|
replaceWith(...nodes: (string | Node)[]): void;
|
|
609
|
-
innerHTML: string;
|
|
627
|
+
innerHTML: string;
|
|
628
|
+
readonly nextElementSibling: Element;
|
|
629
|
+
readonly previousElementSibling: Element;
|
|
630
|
+
readonly childElementCount: number; /**
|
|
610
631
|
* Emits the event corresponding to the notification icon being clicked
|
|
611
632
|
*
|
|
612
633
|
* @remarks
|
|
@@ -616,9 +637,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
616
637
|
*
|
|
617
638
|
* @internal
|
|
618
639
|
*/
|
|
619
|
-
readonly nextElementSibling: Element;
|
|
620
|
-
readonly previousElementSibling: Element;
|
|
621
|
-
readonly childElementCount: number;
|
|
622
640
|
readonly children: HTMLCollection;
|
|
623
641
|
readonly firstElementChild: Element;
|
|
624
642
|
readonly lastElementChild: Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-header](./foundation-header.md) > [Navigation](./foundation-header.navigation.md) > [logoAltText](./foundation-header.navigation.logoalttext.md)
|
|
4
|
+
|
|
5
|
+
## Navigation.logoAltText property
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
logoAltText: string;
|
|
11
|
+
```
|
|
@@ -27,6 +27,7 @@ export declare class Navigation extends Navigation_base
|
|
|
27
27
|
| [hideSideBar](./foundation-header.navigation.hidesidebar.md) | | boolean | Boolean attribute which controls whether to include the sideNav component Control via<code>hide-side-bar</code> |
|
|
28
28
|
| [i18next](./foundation-header.navigation.i18next.md) | | I18next | |
|
|
29
29
|
| [languageOptions](./foundation-header.navigation.languageoptions.md) | | [LanguageOptions](./foundation-header.languageoptions.md) | |
|
|
30
|
+
| [logoAltText](./foundation-header.navigation.logoalttext.md) | | string | |
|
|
30
31
|
| [logoSrc](./foundation-header.navigation.logosrc.md) | | any | Optional attribute which controls the icon to show on the navigation bar and flyout Control via <code>logo-src</code> |
|
|
31
32
|
| [ready](./foundation-header.navigation.ready.md) | | boolean | |
|
|
32
33
|
| [routeButtons](./foundation-header.navigation.routebuttons.md) | | Array<{ index: number; path: string; title: string; icon: string; variant: string; }> | If present the defined route buttons will be rendered in the header 'routes' slot |
|
package/docs/api-report.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-header",
|
|
3
3
|
"description": "Genesis Foundation Header",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.192.0-accessibility.2",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-header.d.ts",
|
|
@@ -76,24 +76,24 @@
|
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@genesislcap/foundation-testing": "14.
|
|
80
|
-
"@genesislcap/genx": "14.
|
|
81
|
-
"@genesislcap/rollup-builder": "14.
|
|
82
|
-
"@genesislcap/ts-builder": "14.
|
|
83
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
84
|
-
"@genesislcap/vite-builder": "14.
|
|
85
|
-
"@genesislcap/webpack-builder": "14.
|
|
79
|
+
"@genesislcap/foundation-testing": "14.192.0-accessibility.2",
|
|
80
|
+
"@genesislcap/genx": "14.192.0-accessibility.2",
|
|
81
|
+
"@genesislcap/rollup-builder": "14.192.0-accessibility.2",
|
|
82
|
+
"@genesislcap/ts-builder": "14.192.0-accessibility.2",
|
|
83
|
+
"@genesislcap/uvu-playwright-builder": "14.192.0-accessibility.2",
|
|
84
|
+
"@genesislcap/vite-builder": "14.192.0-accessibility.2",
|
|
85
|
+
"@genesislcap/webpack-builder": "14.192.0-accessibility.2",
|
|
86
86
|
"rimraf": "^5.0.0"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@genesislcap/foundation-comms": "14.
|
|
90
|
-
"@genesislcap/foundation-events": "14.
|
|
91
|
-
"@genesislcap/foundation-i18n": "14.
|
|
92
|
-
"@genesislcap/foundation-logger": "14.
|
|
93
|
-
"@genesislcap/foundation-shell": "14.
|
|
94
|
-
"@genesislcap/foundation-ui": "14.
|
|
95
|
-
"@genesislcap/foundation-utils": "14.
|
|
96
|
-
"@genesislcap/foundation-zero": "14.
|
|
89
|
+
"@genesislcap/foundation-comms": "14.192.0-accessibility.2",
|
|
90
|
+
"@genesislcap/foundation-events": "14.192.0-accessibility.2",
|
|
91
|
+
"@genesislcap/foundation-i18n": "14.192.0-accessibility.2",
|
|
92
|
+
"@genesislcap/foundation-logger": "14.192.0-accessibility.2",
|
|
93
|
+
"@genesislcap/foundation-shell": "14.192.0-accessibility.2",
|
|
94
|
+
"@genesislcap/foundation-ui": "14.192.0-accessibility.2",
|
|
95
|
+
"@genesislcap/foundation-utils": "14.192.0-accessibility.2",
|
|
96
|
+
"@genesislcap/foundation-zero": "14.192.0-accessibility.2",
|
|
97
97
|
"@microsoft/fast-colors": "^5.3.1",
|
|
98
98
|
"@microsoft/fast-element": "^1.12.0",
|
|
99
99
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"access": "public"
|
|
110
110
|
},
|
|
111
111
|
"customElements": "dist/custom-elements.json",
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "b127a4e9702b04ebed2f1428ce86c4f740d5de10"
|
|
113
113
|
}
|