@genesislcap/foundation-header 14.226.0 → 14.226.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.
- package/dist/dts/main/main.d.ts +37 -67
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/esm/main/main.js +1 -1
- package/dist/foundation-header.api.json +1 -1
- package/dist/foundation-header.d.ts +37 -67
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +23 -23
- package/docs/.gitattributes +0 -2
- /package/docs/{api-report.md.api.md → api-report.md} +0 -0
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -41,15 +41,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
41
41
|
readonly offsetTop: number;
|
|
42
42
|
readonly offsetWidth: number;
|
|
43
43
|
outerText: string;
|
|
44
|
-
popover: string;
|
|
45
44
|
spellcheck: boolean;
|
|
46
45
|
title: string;
|
|
47
46
|
translate: boolean;
|
|
48
47
|
attachInternals(): ElementInternals;
|
|
49
48
|
click(): void;
|
|
50
|
-
hidePopover(): void;
|
|
51
|
-
showPopover(): void;
|
|
52
|
-
togglePopover(force?: boolean): boolean;
|
|
53
49
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
54
50
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
55
51
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -78,12 +74,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
78
74
|
slot: string;
|
|
79
75
|
readonly tagName: string;
|
|
80
76
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
81
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
82
77
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
83
78
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
84
|
-
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
|
85
79
|
closest<E extends Element = Element>(selectors: string): E;
|
|
86
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
|
87
80
|
getAttribute(qualifiedName: string): string;
|
|
88
81
|
getAttributeNS(namespace: string, localName: string): string;
|
|
89
82
|
getAttributeNames(): string[];
|
|
@@ -92,25 +85,17 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
92
85
|
getBoundingClientRect(): DOMRect;
|
|
93
86
|
getClientRects(): DOMRectList;
|
|
94
87
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
95
|
-
getElementsByTagName<
|
|
96
|
-
getElementsByTagName<
|
|
97
|
-
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
|
98
|
-
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
|
88
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
89
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
99
90
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
100
91
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
101
92
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
102
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
103
93
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
104
94
|
hasAttribute(qualifiedName: string): boolean;
|
|
105
95
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
106
96
|
hasAttributes(): boolean;
|
|
107
97
|
hasPointerCapture(pointerId: number): boolean;
|
|
108
98
|
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
109
|
-
/**
|
|
110
|
-
* Boolean attribute which controls whether to show the connection indicator on the navigation bar
|
|
111
|
-
* Control via `show-connection-indicator`
|
|
112
|
-
*
|
|
113
|
-
*/
|
|
114
99
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
115
100
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
116
101
|
matches(selectors: string): boolean;
|
|
@@ -122,12 +107,8 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
122
107
|
requestPointerLock(): void;
|
|
123
108
|
scroll(options?: ScrollToOptions): void;
|
|
124
109
|
scroll(x: number, y: number): void;
|
|
125
|
-
scrollBy(options?: ScrollToOptions): void;
|
|
126
|
-
|
|
127
|
-
*/
|
|
128
|
-
scrollBy(x: number, y: number): void; /**
|
|
129
|
-
* Object which defines the language options to be displayed in the language selector
|
|
130
|
-
*/
|
|
110
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
111
|
+
scrollBy(x: number, y: number): void;
|
|
131
112
|
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
132
113
|
scrollTo(options?: ScrollToOptions): void;
|
|
133
114
|
scrollTo(x: number, y: number): void;
|
|
@@ -142,9 +123,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
142
123
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
143
124
|
readonly firstChild: ChildNode;
|
|
144
125
|
readonly isConnected: boolean;
|
|
145
|
-
readonly lastChild: ChildNode;
|
|
146
|
-
* @internal
|
|
147
|
-
*/
|
|
126
|
+
readonly lastChild: ChildNode;
|
|
148
127
|
readonly nextSibling: ChildNode;
|
|
149
128
|
readonly nodeName: string;
|
|
150
129
|
readonly nodeType: number;
|
|
@@ -158,9 +137,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
158
137
|
compareDocumentPosition(other: Node): number;
|
|
159
138
|
contains(other: Node): boolean;
|
|
160
139
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
161
|
-
hasChildNodes(): boolean;
|
|
162
|
-
* If present the defined {@link @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems} will be rendered in the header 'routes' slot
|
|
163
|
-
*/
|
|
140
|
+
hasChildNodes(): boolean;
|
|
164
141
|
insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
|
|
165
142
|
isDefaultNamespace(namespace: string): boolean;
|
|
166
143
|
isEqualNode(otherNode: Node): boolean;
|
|
@@ -170,24 +147,24 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
170
147
|
normalize(): void;
|
|
171
148
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
172
149
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
173
|
-
readonly
|
|
174
|
-
readonly
|
|
175
|
-
readonly
|
|
176
|
-
readonly
|
|
177
|
-
readonly
|
|
178
|
-
readonly
|
|
179
|
-
readonly
|
|
180
|
-
readonly
|
|
181
|
-
readonly
|
|
182
|
-
readonly
|
|
183
|
-
readonly
|
|
184
|
-
readonly
|
|
185
|
-
readonly
|
|
186
|
-
readonly
|
|
187
|
-
readonly
|
|
188
|
-
readonly
|
|
189
|
-
readonly
|
|
190
|
-
readonly
|
|
150
|
+
readonly ATTRIBUTE_NODE: number;
|
|
151
|
+
readonly CDATA_SECTION_NODE: number;
|
|
152
|
+
readonly COMMENT_NODE: number;
|
|
153
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
154
|
+
readonly DOCUMENT_NODE: number;
|
|
155
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
156
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
157
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
158
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
159
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
160
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
161
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
162
|
+
readonly ELEMENT_NODE: number;
|
|
163
|
+
readonly ENTITY_NODE: number;
|
|
164
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
165
|
+
readonly NOTATION_NODE: number;
|
|
166
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
167
|
+
readonly TEXT_NODE: number;
|
|
191
168
|
dispatchEvent(event: Event): boolean;
|
|
192
169
|
ariaAtomic: string;
|
|
193
170
|
ariaAutoComplete: string;
|
|
@@ -195,9 +172,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
195
172
|
ariaChecked: string;
|
|
196
173
|
ariaColCount: string;
|
|
197
174
|
ariaColIndex: string;
|
|
175
|
+
ariaColIndexText: string;
|
|
198
176
|
ariaColSpan: string;
|
|
199
177
|
ariaCurrent: string;
|
|
200
|
-
ariaDescription: string;
|
|
201
178
|
ariaDisabled: string;
|
|
202
179
|
ariaExpanded: string;
|
|
203
180
|
ariaHasPopup: string;
|
|
@@ -219,6 +196,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
219
196
|
ariaRoleDescription: string;
|
|
220
197
|
ariaRowCount: string;
|
|
221
198
|
ariaRowIndex: string;
|
|
199
|
+
ariaRowIndexText: string;
|
|
222
200
|
ariaRowSpan: string;
|
|
223
201
|
ariaSelected: string;
|
|
224
202
|
ariaSetSize: string;
|
|
@@ -238,12 +216,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
238
216
|
readonly nextElementSibling: Element;
|
|
239
217
|
readonly previousElementSibling: Element;
|
|
240
218
|
readonly childElementCount: number; /**
|
|
241
|
-
*
|
|
242
|
-
*
|
|
243
|
-
* @remarks
|
|
219
|
+
* Explicitly closes the flyout menu on the left
|
|
244
220
|
*
|
|
245
|
-
*
|
|
246
|
-
*
|
|
221
|
+
* @privateRemarks
|
|
222
|
+
* When the user tabs though and out of the flyout, the hamburger menu item will be re-focused and when that occurs we
|
|
223
|
+
* can close the menu to return to normal flow.
|
|
247
224
|
*
|
|
248
225
|
* @internal
|
|
249
226
|
*/
|
|
@@ -252,19 +229,17 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
252
229
|
readonly lastElementChild: Element;
|
|
253
230
|
append(...nodes: (string | Node)[]): void;
|
|
254
231
|
prepend(...nodes: (string | Node)[]): void;
|
|
255
|
-
querySelector<
|
|
256
|
-
querySelector<
|
|
257
|
-
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
258
|
-
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
232
|
+
querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
|
|
233
|
+
querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
|
|
259
234
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
260
|
-
querySelectorAll<
|
|
261
|
-
querySelectorAll<
|
|
262
|
-
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
263
|
-
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
235
|
+
querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
|
|
236
|
+
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
|
264
237
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
265
238
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
266
239
|
readonly assignedSlot: HTMLSlotElement;
|
|
267
|
-
|
|
240
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
241
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
242
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
268
243
|
readonly style: CSSStyleDeclaration;
|
|
269
244
|
contentEditable: string;
|
|
270
245
|
enterKeyHint: string;
|
|
@@ -277,7 +252,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
277
252
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
278
253
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
279
254
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
280
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
281
255
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
282
256
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
283
257
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -286,9 +260,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
286
260
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
287
261
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
288
262
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
289
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
290
263
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
291
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
292
264
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
293
265
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
294
266
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -321,7 +293,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
321
293
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
322
294
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
323
295
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
324
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
325
296
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
326
297
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
327
298
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -338,7 +309,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
338
309
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
339
310
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
340
311
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
341
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
342
312
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
343
313
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
344
314
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AAEnE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,EAAe,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC1E,OAAO,KAAK,EAAE,sBAAsB,EAAuB,MAAM,4BAA4B,CAAC;AAC9F,OAAO,EAAE,IAAI,EAAE,MAAM,8BAA8B,CAAC;AACpD,OAAO,EAML,SAAS,EACV,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE1D,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAMhD;;;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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"}
|
package/dist/esm/main/main.js
CHANGED
|
@@ -108,8 +108,8 @@ let Navigation = class Navigation extends EventEmitter(GenesisElement) {
|
|
|
108
108
|
const _super = Object.create(null, {
|
|
109
109
|
connectedCallback: { get: () => super.connectedCallback }
|
|
110
110
|
});
|
|
111
|
+
var _a;
|
|
111
112
|
return __awaiter(this, void 0, void 0, function* () {
|
|
112
|
-
var _a;
|
|
113
113
|
_super.connectedCallback.call(this);
|
|
114
114
|
logger.debug(`foundation-header is now connected to the DOM`);
|
|
115
115
|
yield this.loadRemotes();
|
|
@@ -482,15 +482,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
482
482
|
readonly offsetTop: number;
|
|
483
483
|
readonly offsetWidth: number;
|
|
484
484
|
outerText: string;
|
|
485
|
-
popover: string;
|
|
486
485
|
spellcheck: boolean;
|
|
487
486
|
title: string;
|
|
488
487
|
translate: boolean;
|
|
489
488
|
attachInternals(): ElementInternals;
|
|
490
489
|
click(): void;
|
|
491
|
-
hidePopover(): void;
|
|
492
|
-
showPopover(): void;
|
|
493
|
-
togglePopover(force?: boolean): boolean;
|
|
494
490
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
495
491
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
496
492
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -519,12 +515,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
519
515
|
slot: string;
|
|
520
516
|
readonly tagName: string;
|
|
521
517
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
522
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
523
518
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
524
519
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
525
|
-
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
|
526
520
|
closest<E extends Element = Element>(selectors: string): E;
|
|
527
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
|
528
521
|
getAttribute(qualifiedName: string): string;
|
|
529
522
|
getAttributeNS(namespace: string, localName: string): string;
|
|
530
523
|
getAttributeNames(): string[];
|
|
@@ -533,25 +526,17 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
533
526
|
getBoundingClientRect(): DOMRect;
|
|
534
527
|
getClientRects(): DOMRectList;
|
|
535
528
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
536
|
-
getElementsByTagName<
|
|
537
|
-
getElementsByTagName<
|
|
538
|
-
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
|
539
|
-
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
|
529
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
530
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
540
531
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
541
532
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
542
533
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
543
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
544
534
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
545
535
|
hasAttribute(qualifiedName: string): boolean;
|
|
546
536
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
547
537
|
hasAttributes(): boolean;
|
|
548
538
|
hasPointerCapture(pointerId: number): boolean;
|
|
549
539
|
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
550
|
-
/**
|
|
551
|
-
* Boolean attribute which controls whether to show the connection indicator on the navigation bar
|
|
552
|
-
* Control via `show-connection-indicator`
|
|
553
|
-
*
|
|
554
|
-
*/
|
|
555
540
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
556
541
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
557
542
|
matches(selectors: string): boolean;
|
|
@@ -563,12 +548,8 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
563
548
|
requestPointerLock(): void;
|
|
564
549
|
scroll(options?: ScrollToOptions): void;
|
|
565
550
|
scroll(x: number, y: number): void;
|
|
566
|
-
scrollBy(options?: ScrollToOptions): void;
|
|
567
|
-
|
|
568
|
-
*/
|
|
569
|
-
scrollBy(x: number, y: number): void; /**
|
|
570
|
-
* Object which defines the language options to be displayed in the language selector
|
|
571
|
-
*/
|
|
551
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
552
|
+
scrollBy(x: number, y: number): void;
|
|
572
553
|
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
573
554
|
scrollTo(options?: ScrollToOptions): void;
|
|
574
555
|
scrollTo(x: number, y: number): void;
|
|
@@ -583,9 +564,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
583
564
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
584
565
|
readonly firstChild: ChildNode;
|
|
585
566
|
readonly isConnected: boolean;
|
|
586
|
-
readonly lastChild: ChildNode;
|
|
587
|
-
* @internal
|
|
588
|
-
*/
|
|
567
|
+
readonly lastChild: ChildNode;
|
|
589
568
|
readonly nextSibling: ChildNode;
|
|
590
569
|
readonly nodeName: string;
|
|
591
570
|
readonly nodeType: number;
|
|
@@ -599,9 +578,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
599
578
|
compareDocumentPosition(other: Node): number;
|
|
600
579
|
contains(other: Node): boolean;
|
|
601
580
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
602
|
-
hasChildNodes(): boolean;
|
|
603
|
-
* If present the defined {@link @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems} will be rendered in the header 'routes' slot
|
|
604
|
-
*/
|
|
581
|
+
hasChildNodes(): boolean;
|
|
605
582
|
insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
|
|
606
583
|
isDefaultNamespace(namespace: string): boolean;
|
|
607
584
|
isEqualNode(otherNode: Node): boolean;
|
|
@@ -611,24 +588,24 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
611
588
|
normalize(): void;
|
|
612
589
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
613
590
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
614
|
-
readonly
|
|
615
|
-
readonly
|
|
616
|
-
readonly
|
|
617
|
-
readonly
|
|
618
|
-
readonly
|
|
619
|
-
readonly
|
|
620
|
-
readonly
|
|
621
|
-
readonly
|
|
622
|
-
readonly
|
|
623
|
-
readonly
|
|
624
|
-
readonly
|
|
625
|
-
readonly
|
|
626
|
-
readonly
|
|
627
|
-
readonly
|
|
628
|
-
readonly
|
|
629
|
-
readonly
|
|
630
|
-
readonly
|
|
631
|
-
readonly
|
|
591
|
+
readonly ATTRIBUTE_NODE: number;
|
|
592
|
+
readonly CDATA_SECTION_NODE: number;
|
|
593
|
+
readonly COMMENT_NODE: number;
|
|
594
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
595
|
+
readonly DOCUMENT_NODE: number;
|
|
596
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
597
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
598
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
599
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
600
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
601
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
602
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
603
|
+
readonly ELEMENT_NODE: number;
|
|
604
|
+
readonly ENTITY_NODE: number;
|
|
605
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
606
|
+
readonly NOTATION_NODE: number;
|
|
607
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
608
|
+
readonly TEXT_NODE: number;
|
|
632
609
|
dispatchEvent(event: Event): boolean;
|
|
633
610
|
ariaAtomic: string;
|
|
634
611
|
ariaAutoComplete: string;
|
|
@@ -636,9 +613,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
636
613
|
ariaChecked: string;
|
|
637
614
|
ariaColCount: string;
|
|
638
615
|
ariaColIndex: string;
|
|
616
|
+
ariaColIndexText: string;
|
|
639
617
|
ariaColSpan: string;
|
|
640
618
|
ariaCurrent: string;
|
|
641
|
-
ariaDescription: string;
|
|
642
619
|
ariaDisabled: string;
|
|
643
620
|
ariaExpanded: string;
|
|
644
621
|
ariaHasPopup: string;
|
|
@@ -660,6 +637,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
660
637
|
ariaRoleDescription: string;
|
|
661
638
|
ariaRowCount: string;
|
|
662
639
|
ariaRowIndex: string;
|
|
640
|
+
ariaRowIndexText: string;
|
|
663
641
|
ariaRowSpan: string;
|
|
664
642
|
ariaSelected: string;
|
|
665
643
|
ariaSetSize: string;
|
|
@@ -679,12 +657,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
679
657
|
readonly nextElementSibling: Element;
|
|
680
658
|
readonly previousElementSibling: Element;
|
|
681
659
|
readonly childElementCount: number; /**
|
|
682
|
-
*
|
|
683
|
-
*
|
|
684
|
-
* @remarks
|
|
660
|
+
* Explicitly closes the flyout menu on the left
|
|
685
661
|
*
|
|
686
|
-
*
|
|
687
|
-
*
|
|
662
|
+
* @privateRemarks
|
|
663
|
+
* When the user tabs though and out of the flyout, the hamburger menu item will be re-focused and when that occurs we
|
|
664
|
+
* can close the menu to return to normal flow.
|
|
688
665
|
*
|
|
689
666
|
* @internal
|
|
690
667
|
*/
|
|
@@ -693,19 +670,17 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
693
670
|
readonly lastElementChild: Element;
|
|
694
671
|
append(...nodes: (string | Node)[]): void;
|
|
695
672
|
prepend(...nodes: (string | Node)[]): void;
|
|
696
|
-
querySelector<
|
|
697
|
-
querySelector<
|
|
698
|
-
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
699
|
-
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
673
|
+
querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
|
|
674
|
+
querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
|
|
700
675
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
701
|
-
querySelectorAll<
|
|
702
|
-
querySelectorAll<
|
|
703
|
-
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
704
|
-
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
676
|
+
querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
|
|
677
|
+
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
|
705
678
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
706
679
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
707
680
|
readonly assignedSlot: HTMLSlotElement;
|
|
708
|
-
|
|
681
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
682
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
683
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
709
684
|
readonly style: CSSStyleDeclaration;
|
|
710
685
|
contentEditable: string;
|
|
711
686
|
enterKeyHint: string;
|
|
@@ -718,7 +693,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
718
693
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
719
694
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
720
695
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
721
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
722
696
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
723
697
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
724
698
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -727,9 +701,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
727
701
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
728
702
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
729
703
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
730
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
731
704
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
732
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
733
705
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
734
706
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
735
707
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -762,7 +734,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
762
734
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
763
735
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
764
736
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
765
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
766
737
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
767
738
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
768
739
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -779,7 +750,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
779
750
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
780
751
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
781
752
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
782
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
783
753
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
784
754
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
785
755
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
package/dist/tsdoc-metadata.json
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.226.
|
|
4
|
+
"version": "14.226.1",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-header.d.ts",
|
|
@@ -77,30 +77,30 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@genesislcap/foundation-testing": "14.226.
|
|
81
|
-
"@genesislcap/genx": "14.226.
|
|
82
|
-
"@genesislcap/rollup-builder": "14.226.
|
|
83
|
-
"@genesislcap/ts-builder": "14.226.
|
|
84
|
-
"@genesislcap/uvu-playwright-builder": "14.226.
|
|
85
|
-
"@genesislcap/vite-builder": "14.226.
|
|
86
|
-
"@genesislcap/webpack-builder": "14.226.
|
|
80
|
+
"@genesislcap/foundation-testing": "14.226.1",
|
|
81
|
+
"@genesislcap/genx": "14.226.1",
|
|
82
|
+
"@genesislcap/rollup-builder": "14.226.1",
|
|
83
|
+
"@genesislcap/ts-builder": "14.226.1",
|
|
84
|
+
"@genesislcap/uvu-playwright-builder": "14.226.1",
|
|
85
|
+
"@genesislcap/vite-builder": "14.226.1",
|
|
86
|
+
"@genesislcap/webpack-builder": "14.226.1",
|
|
87
87
|
"rimraf": "^5.0.0"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@genesislcap/foundation-auth": "14.226.
|
|
91
|
-
"@genesislcap/foundation-comms": "14.226.
|
|
92
|
-
"@genesislcap/foundation-events": "14.226.
|
|
93
|
-
"@genesislcap/foundation-i18n": "14.226.
|
|
94
|
-
"@genesislcap/foundation-logger": "14.226.
|
|
95
|
-
"@genesislcap/foundation-login": "14.226.
|
|
96
|
-
"@genesislcap/foundation-shell": "14.226.
|
|
97
|
-
"@genesislcap/foundation-ui": "14.226.
|
|
98
|
-
"@genesislcap/foundation-user": "14.226.
|
|
99
|
-
"@genesislcap/foundation-utils": "14.226.
|
|
100
|
-
"@genesislcap/foundation-zero": "14.226.
|
|
101
|
-
"@genesislcap/rapid-design-system": "14.226.
|
|
102
|
-
"@genesislcap/web-core": "14.226.
|
|
103
|
-
"tslib": "2.
|
|
90
|
+
"@genesislcap/foundation-auth": "14.226.1",
|
|
91
|
+
"@genesislcap/foundation-comms": "14.226.1",
|
|
92
|
+
"@genesislcap/foundation-events": "14.226.1",
|
|
93
|
+
"@genesislcap/foundation-i18n": "14.226.1",
|
|
94
|
+
"@genesislcap/foundation-logger": "14.226.1",
|
|
95
|
+
"@genesislcap/foundation-login": "14.226.1",
|
|
96
|
+
"@genesislcap/foundation-shell": "14.226.1",
|
|
97
|
+
"@genesislcap/foundation-ui": "14.226.1",
|
|
98
|
+
"@genesislcap/foundation-user": "14.226.1",
|
|
99
|
+
"@genesislcap/foundation-utils": "14.226.1",
|
|
100
|
+
"@genesislcap/foundation-zero": "14.226.1",
|
|
101
|
+
"@genesislcap/rapid-design-system": "14.226.1",
|
|
102
|
+
"@genesislcap/web-core": "14.226.1",
|
|
103
|
+
"tslib": "^2.3.1"
|
|
104
104
|
},
|
|
105
105
|
"repository": {
|
|
106
106
|
"type": "git",
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"access": "public"
|
|
112
112
|
},
|
|
113
113
|
"customElements": "dist/custom-elements.json",
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "e691c1741d135edca5271f338f62df8154efb99c"
|
|
115
115
|
}
|
package/docs/.gitattributes
DELETED
|
File without changes
|