@genesislcap/foundation-header 14.192.0-accessibility.2 → 14.192.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.
@@ -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\" 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`",
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`",
241
241
  "description": "Template for Navigation class",
242
242
  "return": {
243
243
  "type": {
@@ -329,14 +329,6 @@
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
- },
340
332
  {
341
333
  "kind": "field",
342
334
  "name": "showLuminanceToggleButton",
@@ -501,14 +493,6 @@
501
493
  },
502
494
  "fieldName": "logoSrc"
503
495
  },
504
- {
505
- "name": "logo-alt-text",
506
- "type": {
507
- "text": "string"
508
- },
509
- "default": "'Corporate Logo'",
510
- "fieldName": "logoAltText"
511
- },
512
496
  {
513
497
  "name": "show-luminance-toggle-button",
514
498
  "type": {
@@ -677,18 +661,6 @@
677
661
  "module": "src/main/main.ts"
678
662
  }
679
663
  },
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
- },
692
664
  {
693
665
  "kind": "field",
694
666
  "name": "showLuminanceToggleButton",
@@ -899,18 +871,6 @@
899
871
  "module": "src/main/main.ts"
900
872
  }
901
873
  },
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
- },
914
874
  {
915
875
  "name": "show-luminance-toggle-button",
916
876
  "type": {
@@ -1049,18 +1009,6 @@
1049
1009
  "module": "src/main/main.ts"
1050
1010
  }
1051
1011
  },
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
- },
1064
1012
  {
1065
1013
  "name": "show-luminance-toggle-button",
1066
1014
  "type": {
@@ -1232,18 +1180,6 @@
1232
1180
  "module": "src/main/main.ts"
1233
1181
  }
1234
1182
  },
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
- },
1247
1183
  {
1248
1184
  "kind": "field",
1249
1185
  "name": "showLuminanceToggleButton",
@@ -65,14 +65,7 @@ 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; /**
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
- */
68
+ readonly scrollWidth: number;
76
69
  readonly shadowRoot: ShadowRoot;
77
70
  slot: string;
78
71
  readonly tagName: string;
@@ -94,6 +87,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
94
87
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
95
88
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
96
89
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
90
+ /**
91
+ * @internal
92
+ */
97
93
  hasAttribute(qualifiedName: string): boolean;
98
94
  hasAttributeNS(namespace: string, localName: string): boolean;
99
95
  hasAttributes(): boolean;
@@ -138,9 +134,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
138
134
  appendChild<T extends Node>(node: T): T;
139
135
  cloneNode(deep?: boolean): Node;
140
136
  compareDocumentPosition(other: Node): number;
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
- */
137
+ contains(other: Node): boolean;
144
138
  getRootNode(options?: GetRootNodeOptions): Node;
145
139
  hasChildNodes(): boolean;
146
140
  insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
@@ -197,16 +191,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
197
191
  ariaPosInSet: string;
198
192
  ariaPressed: string;
199
193
  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
- */
210
194
  ariaRequired: string;
211
195
  ariaRoleDescription: string;
212
196
  ariaRowCount: string;
@@ -227,10 +211,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
227
211
  before(...nodes: (string | Node)[]): void;
228
212
  remove(): void;
229
213
  replaceWith(...nodes: (string | Node)[]): void;
230
- innerHTML: string;
231
- readonly nextElementSibling: Element;
232
- readonly previousElementSibling: Element;
233
- readonly childElementCount: number; /**
214
+ innerHTML: string; /**
234
215
  * Emits the event corresponding to the notification icon being clicked
235
216
  *
236
217
  * @remarks
@@ -240,6 +221,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
240
221
  *
241
222
  * @internal
242
223
  */
224
+ readonly nextElementSibling: Element;
225
+ readonly previousElementSibling: Element;
226
+ readonly childElementCount: number;
243
227
  readonly children: HTMLCollection;
244
228
  readonly firstElementChild: Element;
245
229
  readonly lastElementChild: Element;
@@ -376,7 +360,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
376
360
  * - The contents of the flyout menu.
377
361
  *
378
362
  * @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.
380
363
  * @param show-luminance-toggle-button - Boolean attribute which controls whether the navigation bar will display the luminance toggle icon.
381
364
  * @param show-misc-toggle-button - Boolean attribute which controls whether the navigation bar will display the miscellaneous behaviour icon.
382
365
  * @param notification-icon-clicked - Boolean attribute which controls whether the navigation bar will display the show notification icon.
@@ -418,7 +401,6 @@ export declare class Navigation extends Navigation_base {
418
401
  * If this attribute is not set then the Genesis logo is shown instead
419
402
  */
420
403
  logoSrc: any;
421
- logoAltText: string;
422
404
  /**
423
405
  * Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar
424
406
  * Control via`show-luminance-toggle-button`
@@ -1 +1 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"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"}
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;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"}
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;AAiFzC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,WAAW,+BA6FvB,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"}
@@ -22,7 +22,6 @@ 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.
26
25
  * @param show-luminance-toggle-button - Boolean attribute which controls whether the navigation bar will display the luminance toggle icon.
27
26
  * @param show-misc-toggle-button - Boolean attribute which controls whether the navigation bar will display the miscellaneous behaviour icon.
28
27
  * @param notification-icon-clicked - Boolean attribute which controls whether the navigation bar will display the show notification icon.
@@ -58,7 +57,6 @@ let Navigation = class Navigation extends EventEmitter(FASTElement) {
58
57
  * If this attribute is not set then the Genesis logo is shown instead
59
58
  */
60
59
  this.logoSrc = logo;
61
- this.logoAltText = 'Corporate Logo';
62
60
  /**
63
61
  * Boolean attribute which controls whether to show the connection indicator on the navigation bar
64
62
  * Control via `show-connection-indicator`
@@ -298,9 +296,6 @@ __decorate([
298
296
  __decorate([
299
297
  attr({ attribute: 'logo-src' })
300
298
  ], Navigation.prototype, "logoSrc", void 0);
301
- __decorate([
302
- attr({ attribute: 'logo-alt-text' })
303
- ], Navigation.prototype, "logoAltText", void 0);
304
299
  __decorate([
305
300
  attr({ mode: 'boolean', attribute: 'show-luminance-toggle-button' })
306
301
  ], Navigation.prototype, "showLuminanceToggleButton", void 0);
@@ -8,8 +8,6 @@ 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"
13
11
  >
14
12
  <img
15
13
  slot="title"
@@ -17,7 +15,6 @@ const sideNavTemplate = html `
17
15
  class="logo"
18
16
  part="side-nav-logo"
19
17
  data-test-id="side-nav-logo"
20
- alt="${(x) => x.logoAltText}"
21
18
  />
22
19
  <slot name="menu-contents"></slot>
23
20
  <div
@@ -25,7 +22,6 @@ const sideNavTemplate = html `
25
22
  class="logout-container"
26
23
  data-test-id="logout-button"
27
24
  @click=${(x) => x.logout()}
28
- aria-label="Sign out"
29
25
  >
30
26
  <${iconTag} name="sign-out-alt"></${iconTag}>
31
27
  Sign out
@@ -36,23 +32,17 @@ const defaultRouteNavItemsTemplate = html `
36
32
  <${buttonTag}
37
33
  appearance="neutral-grey"
38
34
  class="nav-button"
35
+ value="1"
39
36
  @click=${(x) => x.navigateTo('protected')}
40
37
  data-test-id="home-button"
41
- aria-label="Home"
42
38
  >
43
39
  <${iconTag} name="home"></${iconTag}>
44
40
  Home
45
41
  </${buttonTag}>
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
- >
42
+ <${optionTag} @click=${(x) => x.navigateTo('not-found')} data-test-id="profiles-button">
53
43
  <${iconTag} name="users"></${iconTag}>
54
44
  Profiles
55
- </${buttonTag}>
45
+ </${optionTag}>
56
46
  `;
57
47
  const routeNavItemsTemplate = html `
58
48
  <template>
@@ -64,7 +54,6 @@ const routeNavItemsTemplate = html `
64
54
  slot="routes"
65
55
  @click=${(x, c) => c.parent.navigateTo(x.routePath)}
66
56
  data-test-id="${(x) => `${x.routePath}-button`}"
67
- aria-label=${(x) => x.title}
68
57
  >
69
58
  ${when((x) => x.icon, html `
70
59
  <${iconTag}
@@ -93,30 +82,21 @@ const routeNavItemsTemplate = html `
93
82
  */
94
83
  export const NavTemplate = html `
95
84
  ${when((x) => !x.hideSideBar, sideNavTemplate)}
96
- <div class="nav-listbox" data-test-id="nav-bar" role="navigation" aria-label="Main menu">
85
+ <div class="nav-listbox" data-test-id="nav-bar">
97
86
  ${app.registerElementsTarget('header-start')}
98
87
  <div class="nav-leftside">
99
88
  ${app.registerElementsTarget('nav-start')}
100
89
  ${when((x) => !x.hideSideBar, html `
101
- <${buttonTag}
90
+ <div
102
91
  class="bars-container"
103
92
  @click=${(x) => x.toggleNavVisibility()}
104
93
  data-test-id="hamburger-menu"
105
- aria-label="Toggle side menu"
106
- aria-expanded=${(x) => x.sideNavOpen}
107
- appearance="stealth"
108
94
  >
109
95
  <${iconTag} name="bars" part="nav-visibility-icon" class="nav-visibility-icon"></${iconTag}>
110
- </${buttonTag}>
96
+ </div>
111
97
  `)}
112
98
  <div class="logo-container" data-test-id="nav-bar-logo">
113
- <img
114
- src=${(x) => x.logoSrc}
115
- class="logo"
116
- part="logo"
117
- data-test-id="logo"
118
- alt="${(x) => x.logoAltText}"
119
- />
99
+ <img src=${(x) => x.logoSrc} class="logo" part="logo" />
120
100
  </div>
121
101
  <slot name="routes" data-test-id="route-buttons">
122
102
  ${(x) => (x.routeNavItems ? routeNavItemsTemplate : defaultRouteNavItemsTemplate)}
@@ -130,7 +110,6 @@ export const NavTemplate = html `
130
110
  class="icon-container"
131
111
  data-test-id="luminance-toggle-button"
132
112
  part="luminance-button"
133
- aria-label="Luminance toggle"
134
113
  >
135
114
  <${iconTag}
136
115
  @click=${(x) => x.luminanceIconEvent()}
@@ -141,7 +120,7 @@ export const NavTemplate = html `
141
120
  </div>
142
121
  `)}
143
122
  ${when((x) => x.showMiscToggleButton, html `
144
- <div class="icon-container" data-test-id="misc-toggle-button" part="misc-button" aria-label="Misc icon">
123
+ <div class="icon-container" data-test-id="misc-toggle-button" part="misc-button">
145
124
  <${iconTag} @click=${(x) => x.miscIconEvent()} name="th" part="misc-icon"></${iconTag}>
146
125
  </div>
147
126
  `)}
@@ -157,7 +136,6 @@ export const NavTemplate = html `
157
136
  data-test-id="language-selector"
158
137
  part="language-selector"
159
138
  @change="${(x, c) => x.changeLanguage(c.event)}"
160
- aria-label="Language selector"
161
139
  >
162
140
  ${repeat((x) => x.languageOptions.availableLanguages, html `
163
141
  <${optionTag}
@@ -170,7 +148,7 @@ export const NavTemplate = html `
170
148
  </${selectTag}>
171
149
  `)}
172
150
 
173
- <${buttonTag} appearance="neutral-grey" data-test-id="user-button" class="nav-button" aria-label="User button">
151
+ <${buttonTag} appearance="neutral-grey" data-test-id="user-button" class="nav-button">
174
152
  <${iconTag} name="user-circle"></${iconTag}>
175
153
  ${(x) => x.userName}
176
154
  </${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 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",
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",
567
567
  "excerptTokens": [
568
568
  {
569
569
  "kind": "Content",
@@ -855,36 +855,6 @@
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
- },
888
858
  {
889
859
  "kind": "Property",
890
860
  "canonicalReference": "@genesislcap/foundation-header!Navigation#logoSrc:member",
@@ -191,7 +191,6 @@ 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.
195
194
  * @param show-luminance-toggle-button - Boolean attribute which controls whether the navigation bar will display the luminance toggle icon.
196
195
  * @param show-misc-toggle-button - Boolean attribute which controls whether the navigation bar will display the miscellaneous behaviour icon.
197
196
  * @param notification-icon-clicked - Boolean attribute which controls whether the navigation bar will display the show notification icon.
@@ -233,7 +232,6 @@ export declare class Navigation extends Navigation_base {
233
232
  * If this attribute is not set then the Genesis logo is shown instead
234
233
  */
235
234
  logoSrc: any;
236
- logoAltText: string;
237
235
  /**
238
236
  * Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar
239
237
  * Control via`show-luminance-toggle-button`
@@ -462,14 +460,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
462
460
  readonly scrollHeight: number;
463
461
  scrollLeft: number;
464
462
  scrollTop: 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
- */
463
+ readonly scrollWidth: number;
473
464
  readonly shadowRoot: ShadowRoot;
474
465
  slot: string;
475
466
  readonly tagName: string;
@@ -491,6 +482,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
491
482
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
492
483
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
493
484
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
485
+ /**
486
+ * @internal
487
+ */
494
488
  hasAttribute(qualifiedName: string): boolean;
495
489
  hasAttributeNS(namespace: string, localName: string): boolean;
496
490
  hasAttributes(): boolean;
@@ -535,9 +529,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
535
529
  appendChild<T extends Node>(node: T): T;
536
530
  cloneNode(deep?: boolean): Node;
537
531
  compareDocumentPosition(other: Node): number;
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
- */
532
+ contains(other: Node): boolean;
541
533
  getRootNode(options?: GetRootNodeOptions): Node;
542
534
  hasChildNodes(): boolean;
543
535
  insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
@@ -594,16 +586,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
594
586
  ariaPosInSet: string;
595
587
  ariaPressed: string;
596
588
  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
- */
607
589
  ariaRequired: string;
608
590
  ariaRoleDescription: string;
609
591
  ariaRowCount: string;
@@ -624,10 +606,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
624
606
  before(...nodes: (string | Node)[]): void;
625
607
  remove(): void;
626
608
  replaceWith(...nodes: (string | Node)[]): void;
627
- innerHTML: string;
628
- readonly nextElementSibling: Element;
629
- readonly previousElementSibling: Element;
630
- readonly childElementCount: number; /**
609
+ innerHTML: string; /**
631
610
  * Emits the event corresponding to the notification icon being clicked
632
611
  *
633
612
  * @remarks
@@ -637,6 +616,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
637
616
  *
638
617
  * @internal
639
618
  */
619
+ readonly nextElementSibling: Element;
620
+ readonly previousElementSibling: Element;
621
+ readonly childElementCount: number;
640
622
  readonly children: HTMLCollection;
641
623
  readonly firstElementChild: Element;
642
624
  readonly lastElementChild: Element;
@@ -27,7 +27,6 @@ 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 | |
31
30
  | [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> |
32
31
  | [ready](./foundation-header.navigation.ready.md) | | boolean | |
33
32
  | [routeButtons](./foundation-header.navigation.routebuttons.md) | | Array&lt;{ index: number; path: string; title: string; icon: string; variant: string; }&gt; | If present the defined route buttons will be rendered in the header 'routes' slot |
@@ -101,8 +101,6 @@ export class Navigation extends Navigation_base {
101
101
  languageOptions: LanguageOptions;
102
102
  // @internal
103
103
  loadRemotes(): Promise<void>;
104
- // (undocumented)
105
- logoAltText: string;
106
104
  logoSrc: any;
107
105
  logout(): Promise<void>;
108
106
  // @internal
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.192.0-accessibility.2",
4
+ "version": "14.192.1",
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.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",
79
+ "@genesislcap/foundation-testing": "14.192.1",
80
+ "@genesislcap/genx": "14.192.1",
81
+ "@genesislcap/rollup-builder": "14.192.1",
82
+ "@genesislcap/ts-builder": "14.192.1",
83
+ "@genesislcap/uvu-playwright-builder": "14.192.1",
84
+ "@genesislcap/vite-builder": "14.192.1",
85
+ "@genesislcap/webpack-builder": "14.192.1",
86
86
  "rimraf": "^5.0.0"
87
87
  },
88
88
  "dependencies": {
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",
89
+ "@genesislcap/foundation-comms": "14.192.1",
90
+ "@genesislcap/foundation-events": "14.192.1",
91
+ "@genesislcap/foundation-i18n": "14.192.1",
92
+ "@genesislcap/foundation-logger": "14.192.1",
93
+ "@genesislcap/foundation-shell": "14.192.1",
94
+ "@genesislcap/foundation-ui": "14.192.1",
95
+ "@genesislcap/foundation-utils": "14.192.1",
96
+ "@genesislcap/foundation-zero": "14.192.1",
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": "b127a4e9702b04ebed2f1428ce86c4f740d5de10"
112
+ "gitHead": "a29aa171eb4bd0a83c1787bdcfb0351f77ff0cc5"
113
113
  }
@@ -1,11 +0,0 @@
1
- <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
-
3
- [Home](./index.md) &gt; [@genesislcap/foundation-header](./foundation-header.md) &gt; [Navigation](./foundation-header.navigation.md) &gt; [logoAltText](./foundation-header.navigation.logoalttext.md)
4
-
5
- ## Navigation.logoAltText property
6
-
7
- **Signature:**
8
-
9
- ```typescript
10
- logoAltText: string;
11
- ```