@genesislcap/foundation-header 14.225.1 → 14.225.2-alpha-a51f60c.0
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 +56 -54
- 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 +56 -54
- package/dist/tsdoc-metadata.json +1 -1
- package/docs/.gitattributes +2 -0
- package/package.json +22 -22
- /package/docs/{api-report.md → api-report.md.api.md} +0 -0
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -39,11 +39,15 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
39
39
|
readonly offsetTop: number;
|
|
40
40
|
readonly offsetWidth: number;
|
|
41
41
|
outerText: string;
|
|
42
|
+
popover: string;
|
|
42
43
|
spellcheck: boolean;
|
|
43
44
|
title: string;
|
|
44
45
|
translate: boolean;
|
|
45
46
|
attachInternals(): ElementInternals;
|
|
46
47
|
click(): void;
|
|
48
|
+
hidePopover(): void;
|
|
49
|
+
showPopover(): void;
|
|
50
|
+
togglePopover(force?: boolean): boolean;
|
|
47
51
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
48
52
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
49
53
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -58,11 +62,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
58
62
|
id: string;
|
|
59
63
|
readonly localName: string;
|
|
60
64
|
readonly namespaceURI: string;
|
|
61
|
-
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
62
|
-
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
63
65
|
/**
|
|
64
66
|
* Username of the logged in user
|
|
65
67
|
*/
|
|
68
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
69
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
66
70
|
outerHTML: string;
|
|
67
71
|
readonly ownerDocument: Document;
|
|
68
72
|
readonly part: DOMTokenList;
|
|
@@ -75,22 +79,36 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
75
79
|
slot: string;
|
|
76
80
|
readonly tagName: string;
|
|
77
81
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
82
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
78
83
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
79
84
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
85
|
+
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
|
80
86
|
closest<E extends Element = Element>(selectors: string): E;
|
|
87
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
81
88
|
getAttribute(qualifiedName: string): string;
|
|
82
89
|
getAttributeNS(namespace: string, localName: string): string;
|
|
90
|
+
/**
|
|
91
|
+
* Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar
|
|
92
|
+
* Control via`show-luminance-toggle-button`
|
|
93
|
+
*
|
|
94
|
+
* @remarks
|
|
95
|
+
*
|
|
96
|
+
* If the user clicks the icon when shown then this class will emit the 'luminance-icon-clicked' event
|
|
97
|
+
*/
|
|
83
98
|
getAttributeNames(): string[];
|
|
84
99
|
getAttributeNode(qualifiedName: string): Attr;
|
|
85
100
|
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
86
101
|
getBoundingClientRect(): DOMRect;
|
|
87
102
|
getClientRects(): DOMRectList;
|
|
88
103
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
89
|
-
getElementsByTagName<
|
|
90
|
-
getElementsByTagName<
|
|
104
|
+
getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
|
|
105
|
+
getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
|
|
106
|
+
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
|
107
|
+
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
|
91
108
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
92
109
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
93
110
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
111
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
94
112
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
95
113
|
hasAttribute(qualifiedName: string): boolean;
|
|
96
114
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -148,56 +166,34 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
148
166
|
normalize(): void;
|
|
149
167
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
150
168
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
151
|
-
readonly
|
|
152
|
-
readonly
|
|
153
|
-
readonly
|
|
154
|
-
readonly
|
|
155
|
-
readonly
|
|
156
|
-
readonly
|
|
157
|
-
readonly
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
readonly
|
|
167
|
-
readonly
|
|
168
|
-
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC:
|
|
169
|
-
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
170
|
-
readonly DOCUMENT_TYPE_NODE: number;
|
|
171
|
-
readonly ELEMENT_NODE: number;
|
|
172
|
-
readonly ENTITY_NODE: number;
|
|
173
|
-
readonly ENTITY_REFERENCE_NODE: number;
|
|
174
|
-
readonly NOTATION_NODE: number;
|
|
175
|
-
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
176
|
-
readonly TEXT_NODE: number;
|
|
169
|
+
readonly ELEMENT_NODE: 1;
|
|
170
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
171
|
+
readonly TEXT_NODE: 3;
|
|
172
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
173
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
174
|
+
readonly ENTITY_NODE: 6;
|
|
175
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
176
|
+
readonly COMMENT_NODE: 8;
|
|
177
|
+
readonly DOCUMENT_NODE: 9;
|
|
178
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
179
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
180
|
+
readonly NOTATION_NODE: 12;
|
|
181
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
182
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
183
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
184
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
185
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
186
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
177
187
|
dispatchEvent(event: Event): boolean;
|
|
178
|
-
ariaAtomic: string;
|
|
179
|
-
* Logs the user out of their session
|
|
180
|
-
*
|
|
181
|
-
* @public
|
|
182
|
-
*/
|
|
188
|
+
ariaAtomic: string;
|
|
183
189
|
ariaAutoComplete: string;
|
|
184
190
|
ariaBusy: string;
|
|
185
191
|
ariaChecked: string;
|
|
186
192
|
ariaColCount: string;
|
|
187
193
|
ariaColIndex: string;
|
|
188
|
-
ariaColIndexText: string; /**
|
|
189
|
-
* Changes the route of the current page
|
|
190
|
-
*
|
|
191
|
-
* @remarks
|
|
192
|
-
*
|
|
193
|
-
* Requires setup of the Router and usage of the Router
|
|
194
|
-
*
|
|
195
|
-
* @param path - string representing the new route to move to
|
|
196
|
-
*
|
|
197
|
-
* @public
|
|
198
|
-
*/
|
|
199
194
|
ariaColSpan: string;
|
|
200
195
|
ariaCurrent: string;
|
|
196
|
+
ariaDescription: string;
|
|
201
197
|
ariaDisabled: string;
|
|
202
198
|
ariaExpanded: string;
|
|
203
199
|
ariaHasPopup: string;
|
|
@@ -219,7 +215,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
219
215
|
ariaRoleDescription: string;
|
|
220
216
|
ariaRowCount: string;
|
|
221
217
|
ariaRowIndex: string;
|
|
222
|
-
ariaRowIndexText: string;
|
|
223
218
|
ariaRowSpan: string;
|
|
224
219
|
ariaSelected: string;
|
|
225
220
|
ariaSetSize: string;
|
|
@@ -244,17 +239,19 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
244
239
|
readonly lastElementChild: Element;
|
|
245
240
|
append(...nodes: (string | Node)[]): void;
|
|
246
241
|
prepend(...nodes: (string | Node)[]): void;
|
|
247
|
-
querySelector<
|
|
248
|
-
querySelector<
|
|
242
|
+
querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
|
|
243
|
+
querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
|
|
244
|
+
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
245
|
+
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
249
246
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
250
|
-
querySelectorAll<
|
|
251
|
-
querySelectorAll<
|
|
247
|
+
querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
|
|
248
|
+
querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
|
|
249
|
+
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
250
|
+
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
252
251
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
253
252
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
254
253
|
readonly assignedSlot: HTMLSlotElement;
|
|
255
|
-
|
|
256
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
257
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
254
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
258
255
|
readonly style: CSSStyleDeclaration;
|
|
259
256
|
contentEditable: string;
|
|
260
257
|
enterKeyHint: string;
|
|
@@ -267,6 +264,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
267
264
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
268
265
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
269
266
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
267
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
270
268
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
271
269
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
272
270
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -275,7 +273,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
275
273
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
276
274
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
277
275
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
276
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
278
277
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
278
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
279
279
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
280
280
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
281
281
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -308,6 +308,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
308
308
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
309
309
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
310
310
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
311
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
311
312
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
312
313
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
313
314
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -324,6 +325,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
324
325
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
325
326
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
326
327
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
328
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
327
329
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
328
330
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
329
331
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AAEnE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,KAAK,EAAE,sBAAsB,EAAuB,MAAM,4BAA4B,CAAC;AAC9F,OAAO,EAAE,IAAI,EAAE,MAAM,8BAA8B,CAAC;AAEpD,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
|
@@ -106,8 +106,8 @@ let Navigation = class Navigation extends EventEmitter(GenesisElement) {
|
|
|
106
106
|
const _super = Object.create(null, {
|
|
107
107
|
connectedCallback: { get: () => super.connectedCallback }
|
|
108
108
|
});
|
|
109
|
-
var _a;
|
|
110
109
|
return __awaiter(this, void 0, void 0, function* () {
|
|
110
|
+
var _a;
|
|
111
111
|
_super.connectedCallback.call(this);
|
|
112
112
|
logger.debug(`foundation-header is now connected to the DOM`);
|
|
113
113
|
yield this.loadRemotes();
|
|
@@ -478,11 +478,15 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
478
478
|
readonly offsetTop: number;
|
|
479
479
|
readonly offsetWidth: number;
|
|
480
480
|
outerText: string;
|
|
481
|
+
popover: string;
|
|
481
482
|
spellcheck: boolean;
|
|
482
483
|
title: string;
|
|
483
484
|
translate: boolean;
|
|
484
485
|
attachInternals(): ElementInternals;
|
|
485
486
|
click(): void;
|
|
487
|
+
hidePopover(): void;
|
|
488
|
+
showPopover(): void;
|
|
489
|
+
togglePopover(force?: boolean): boolean;
|
|
486
490
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
487
491
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
488
492
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -497,11 +501,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
497
501
|
id: string;
|
|
498
502
|
readonly localName: string;
|
|
499
503
|
readonly namespaceURI: string;
|
|
500
|
-
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
501
|
-
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
502
504
|
/**
|
|
503
505
|
* Username of the logged in user
|
|
504
506
|
*/
|
|
507
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
508
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
505
509
|
outerHTML: string;
|
|
506
510
|
readonly ownerDocument: Document;
|
|
507
511
|
readonly part: DOMTokenList;
|
|
@@ -514,22 +518,36 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
514
518
|
slot: string;
|
|
515
519
|
readonly tagName: string;
|
|
516
520
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
521
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
517
522
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
518
523
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
524
|
+
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
|
519
525
|
closest<E extends Element = Element>(selectors: string): E;
|
|
526
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
520
527
|
getAttribute(qualifiedName: string): string;
|
|
521
528
|
getAttributeNS(namespace: string, localName: string): string;
|
|
529
|
+
/**
|
|
530
|
+
* Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar
|
|
531
|
+
* Control via`show-luminance-toggle-button`
|
|
532
|
+
*
|
|
533
|
+
* @remarks
|
|
534
|
+
*
|
|
535
|
+
* If the user clicks the icon when shown then this class will emit the 'luminance-icon-clicked' event
|
|
536
|
+
*/
|
|
522
537
|
getAttributeNames(): string[];
|
|
523
538
|
getAttributeNode(qualifiedName: string): Attr;
|
|
524
539
|
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
525
540
|
getBoundingClientRect(): DOMRect;
|
|
526
541
|
getClientRects(): DOMRectList;
|
|
527
542
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
528
|
-
getElementsByTagName<
|
|
529
|
-
getElementsByTagName<
|
|
543
|
+
getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
|
|
544
|
+
getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
|
|
545
|
+
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
|
546
|
+
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
|
530
547
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
531
548
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
532
549
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
550
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
533
551
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
534
552
|
hasAttribute(qualifiedName: string): boolean;
|
|
535
553
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -587,56 +605,34 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
587
605
|
normalize(): void;
|
|
588
606
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
589
607
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
590
|
-
readonly
|
|
591
|
-
readonly
|
|
592
|
-
readonly
|
|
593
|
-
readonly
|
|
594
|
-
readonly
|
|
595
|
-
readonly
|
|
596
|
-
readonly
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
readonly
|
|
606
|
-
readonly
|
|
607
|
-
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC:
|
|
608
|
-
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
609
|
-
readonly DOCUMENT_TYPE_NODE: number;
|
|
610
|
-
readonly ELEMENT_NODE: number;
|
|
611
|
-
readonly ENTITY_NODE: number;
|
|
612
|
-
readonly ENTITY_REFERENCE_NODE: number;
|
|
613
|
-
readonly NOTATION_NODE: number;
|
|
614
|
-
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
615
|
-
readonly TEXT_NODE: number;
|
|
608
|
+
readonly ELEMENT_NODE: 1;
|
|
609
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
610
|
+
readonly TEXT_NODE: 3;
|
|
611
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
612
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
613
|
+
readonly ENTITY_NODE: 6;
|
|
614
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
615
|
+
readonly COMMENT_NODE: 8;
|
|
616
|
+
readonly DOCUMENT_NODE: 9;
|
|
617
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
618
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
619
|
+
readonly NOTATION_NODE: 12;
|
|
620
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
621
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
622
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
623
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
624
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
625
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
616
626
|
dispatchEvent(event: Event): boolean;
|
|
617
|
-
ariaAtomic: string;
|
|
618
|
-
* Logs the user out of their session
|
|
619
|
-
*
|
|
620
|
-
* @public
|
|
621
|
-
*/
|
|
627
|
+
ariaAtomic: string;
|
|
622
628
|
ariaAutoComplete: string;
|
|
623
629
|
ariaBusy: string;
|
|
624
630
|
ariaChecked: string;
|
|
625
631
|
ariaColCount: string;
|
|
626
632
|
ariaColIndex: string;
|
|
627
|
-
ariaColIndexText: string; /**
|
|
628
|
-
* Changes the route of the current page
|
|
629
|
-
*
|
|
630
|
-
* @remarks
|
|
631
|
-
*
|
|
632
|
-
* Requires setup of the Router and usage of the Router
|
|
633
|
-
*
|
|
634
|
-
* @param path - string representing the new route to move to
|
|
635
|
-
*
|
|
636
|
-
* @public
|
|
637
|
-
*/
|
|
638
633
|
ariaColSpan: string;
|
|
639
634
|
ariaCurrent: string;
|
|
635
|
+
ariaDescription: string;
|
|
640
636
|
ariaDisabled: string;
|
|
641
637
|
ariaExpanded: string;
|
|
642
638
|
ariaHasPopup: string;
|
|
@@ -658,7 +654,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
658
654
|
ariaRoleDescription: string;
|
|
659
655
|
ariaRowCount: string;
|
|
660
656
|
ariaRowIndex: string;
|
|
661
|
-
ariaRowIndexText: string;
|
|
662
657
|
ariaRowSpan: string;
|
|
663
658
|
ariaSelected: string;
|
|
664
659
|
ariaSetSize: string;
|
|
@@ -683,17 +678,19 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
683
678
|
readonly lastElementChild: Element;
|
|
684
679
|
append(...nodes: (string | Node)[]): void;
|
|
685
680
|
prepend(...nodes: (string | Node)[]): void;
|
|
686
|
-
querySelector<
|
|
687
|
-
querySelector<
|
|
681
|
+
querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
|
|
682
|
+
querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
|
|
683
|
+
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
684
|
+
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
688
685
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
689
|
-
querySelectorAll<
|
|
690
|
-
querySelectorAll<
|
|
686
|
+
querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
|
|
687
|
+
querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
|
|
688
|
+
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
689
|
+
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
691
690
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
692
691
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
693
692
|
readonly assignedSlot: HTMLSlotElement;
|
|
694
|
-
|
|
695
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
696
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
693
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
697
694
|
readonly style: CSSStyleDeclaration;
|
|
698
695
|
contentEditable: string;
|
|
699
696
|
enterKeyHint: string;
|
|
@@ -706,6 +703,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
706
703
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
707
704
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
708
705
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
706
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
709
707
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
710
708
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
711
709
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -714,7 +712,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
714
712
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
715
713
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
716
714
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
715
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
717
716
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
717
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
718
718
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
719
719
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
720
720
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -747,6 +747,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
747
747
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
748
748
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
749
749
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
750
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
750
751
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
751
752
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
752
753
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -763,6 +764,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
763
764
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
764
765
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
765
766
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
767
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
766
768
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
767
769
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
768
770
|
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.225.
|
|
4
|
+
"version": "14.225.2-alpha-a51f60c.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-header.d.ts",
|
|
@@ -77,29 +77,29 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@genesislcap/foundation-testing": "14.225.
|
|
81
|
-
"@genesislcap/genx": "14.225.
|
|
82
|
-
"@genesislcap/rollup-builder": "14.225.
|
|
83
|
-
"@genesislcap/ts-builder": "14.225.
|
|
84
|
-
"@genesislcap/uvu-playwright-builder": "14.225.
|
|
85
|
-
"@genesislcap/vite-builder": "14.225.
|
|
86
|
-
"@genesislcap/webpack-builder": "14.225.
|
|
80
|
+
"@genesislcap/foundation-testing": "14.225.2-alpha-a51f60c.0",
|
|
81
|
+
"@genesislcap/genx": "14.225.2-alpha-a51f60c.0",
|
|
82
|
+
"@genesislcap/rollup-builder": "14.225.2-alpha-a51f60c.0",
|
|
83
|
+
"@genesislcap/ts-builder": "14.225.2-alpha-a51f60c.0",
|
|
84
|
+
"@genesislcap/uvu-playwright-builder": "14.225.2-alpha-a51f60c.0",
|
|
85
|
+
"@genesislcap/vite-builder": "14.225.2-alpha-a51f60c.0",
|
|
86
|
+
"@genesislcap/webpack-builder": "14.225.2-alpha-a51f60c.0",
|
|
87
87
|
"rimraf": "^5.0.0"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@genesislcap/foundation-auth": "14.225.
|
|
91
|
-
"@genesislcap/foundation-comms": "14.225.
|
|
92
|
-
"@genesislcap/foundation-events": "14.225.
|
|
93
|
-
"@genesislcap/foundation-i18n": "14.225.
|
|
94
|
-
"@genesislcap/foundation-logger": "14.225.
|
|
95
|
-
"@genesislcap/foundation-shell": "14.225.
|
|
96
|
-
"@genesislcap/foundation-ui": "14.225.
|
|
97
|
-
"@genesislcap/foundation-user": "14.225.
|
|
98
|
-
"@genesislcap/foundation-utils": "14.225.
|
|
99
|
-
"@genesislcap/foundation-zero": "14.225.
|
|
100
|
-
"@genesislcap/rapid-design-system": "14.225.
|
|
101
|
-
"@genesislcap/web-core": "14.225.
|
|
102
|
-
"tslib": "
|
|
90
|
+
"@genesislcap/foundation-auth": "14.225.2-alpha-a51f60c.0",
|
|
91
|
+
"@genesislcap/foundation-comms": "14.225.2-alpha-a51f60c.0",
|
|
92
|
+
"@genesislcap/foundation-events": "14.225.2-alpha-a51f60c.0",
|
|
93
|
+
"@genesislcap/foundation-i18n": "14.225.2-alpha-a51f60c.0",
|
|
94
|
+
"@genesislcap/foundation-logger": "14.225.2-alpha-a51f60c.0",
|
|
95
|
+
"@genesislcap/foundation-shell": "14.225.2-alpha-a51f60c.0",
|
|
96
|
+
"@genesislcap/foundation-ui": "14.225.2-alpha-a51f60c.0",
|
|
97
|
+
"@genesislcap/foundation-user": "14.225.2-alpha-a51f60c.0",
|
|
98
|
+
"@genesislcap/foundation-utils": "14.225.2-alpha-a51f60c.0",
|
|
99
|
+
"@genesislcap/foundation-zero": "14.225.2-alpha-a51f60c.0",
|
|
100
|
+
"@genesislcap/rapid-design-system": "14.225.2-alpha-a51f60c.0",
|
|
101
|
+
"@genesislcap/web-core": "14.225.2-alpha-a51f60c.0",
|
|
102
|
+
"tslib": "2.8.1"
|
|
103
103
|
},
|
|
104
104
|
"repository": {
|
|
105
105
|
"type": "git",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"access": "public"
|
|
111
111
|
},
|
|
112
112
|
"customElements": "dist/custom-elements.json",
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "4e2f49c901b8ee0f06d4df645c355d7f6c7bde70"
|
|
114
114
|
}
|
|
File without changes
|