@genesislcap/foundation-header 14.237.2-alpha-78ebbc0.0 → 14.238.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 +58 -46
- 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 +58 -46
- 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,14 +85,11 @@ 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;
|
|
@@ -157,39 +147,48 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
157
147
|
normalize(): void;
|
|
158
148
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
159
149
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
160
|
-
readonly
|
|
161
|
-
readonly
|
|
162
|
-
readonly
|
|
163
|
-
readonly
|
|
164
|
-
readonly
|
|
165
|
-
readonly
|
|
166
|
-
readonly
|
|
167
|
-
readonly
|
|
168
|
-
readonly
|
|
169
|
-
readonly
|
|
170
|
-
readonly
|
|
171
|
-
readonly
|
|
172
|
-
readonly
|
|
173
|
-
readonly
|
|
174
|
-
readonly
|
|
175
|
-
readonly
|
|
176
|
-
readonly
|
|
177
|
-
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;
|
|
178
168
|
dispatchEvent(event: Event): boolean;
|
|
179
169
|
ariaAtomic: string;
|
|
180
170
|
ariaAutoComplete: string;
|
|
181
171
|
ariaBusy: string;
|
|
182
172
|
ariaChecked: string;
|
|
183
173
|
ariaColCount: string;
|
|
174
|
+
/**
|
|
175
|
+
* Selects the appropriate template based on the component's state
|
|
176
|
+
* @returns \{ViewTemplate<Navigation>\}
|
|
177
|
+
*/
|
|
184
178
|
ariaColIndex: string;
|
|
179
|
+
ariaColIndexText: string;
|
|
185
180
|
ariaColSpan: string;
|
|
186
181
|
ariaCurrent: string;
|
|
187
|
-
ariaDescription: string;
|
|
188
182
|
ariaDisabled: string;
|
|
189
183
|
ariaExpanded: string;
|
|
190
184
|
ariaHasPopup: string;
|
|
191
185
|
ariaHidden: string;
|
|
192
186
|
ariaInvalid: string;
|
|
187
|
+
/**
|
|
188
|
+
* Logs the user out of their session
|
|
189
|
+
*
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
193
192
|
ariaKeyShortcuts: string;
|
|
194
193
|
ariaLabel: string;
|
|
195
194
|
ariaLevel: string;
|
|
@@ -202,10 +201,22 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
202
201
|
ariaPosInSet: string;
|
|
203
202
|
ariaPressed: string;
|
|
204
203
|
ariaReadOnly: string;
|
|
204
|
+
/**
|
|
205
|
+
* Changes the route of the current page
|
|
206
|
+
*
|
|
207
|
+
* @remarks
|
|
208
|
+
*
|
|
209
|
+
* Requires setup of the Router and usage of the Router
|
|
210
|
+
*
|
|
211
|
+
* @param path - string representing the new route to move to
|
|
212
|
+
*
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
205
215
|
ariaRequired: string;
|
|
206
216
|
ariaRoleDescription: string;
|
|
207
217
|
ariaRowCount: string;
|
|
208
218
|
ariaRowIndex: string;
|
|
219
|
+
ariaRowIndexText: string;
|
|
209
220
|
ariaRowSpan: string;
|
|
210
221
|
ariaSelected: string;
|
|
211
222
|
ariaSetSize: string;
|
|
@@ -230,32 +241,37 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
230
241
|
readonly lastElementChild: Element;
|
|
231
242
|
append(...nodes: (string | Node)[]): void;
|
|
232
243
|
prepend(...nodes: (string | Node)[]): void;
|
|
233
|
-
querySelector<
|
|
234
|
-
querySelector<
|
|
235
|
-
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
236
|
-
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
244
|
+
querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
|
|
245
|
+
querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
|
|
237
246
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
238
|
-
querySelectorAll<
|
|
239
|
-
querySelectorAll<
|
|
240
|
-
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
241
|
-
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
247
|
+
querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
|
|
248
|
+
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
|
242
249
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
243
250
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
244
251
|
readonly assignedSlot: HTMLSlotElement;
|
|
245
|
-
|
|
252
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
253
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
254
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
246
255
|
readonly style: CSSStyleDeclaration;
|
|
247
256
|
contentEditable: string;
|
|
248
257
|
enterKeyHint: string;
|
|
249
258
|
inputMode: string;
|
|
250
259
|
readonly isContentEditable: boolean;
|
|
251
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
260
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any; /**
|
|
261
|
+
* Changes the language of the application
|
|
262
|
+
*
|
|
263
|
+
* @remarks
|
|
264
|
+
*
|
|
265
|
+
* Activated when the user selects a language from the language selector that uses the I18next service.
|
|
266
|
+
*
|
|
267
|
+
* @experimental
|
|
268
|
+
*/
|
|
252
269
|
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
253
270
|
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
254
271
|
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
255
272
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
256
273
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
257
274
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
258
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
259
275
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
260
276
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
261
277
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -264,9 +280,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
264
280
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
265
281
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
266
282
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
267
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
268
283
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
269
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
270
284
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
271
285
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
272
286
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -299,7 +313,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
299
313
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
300
314
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
301
315
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
302
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
303
316
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
304
317
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
305
318
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -316,7 +329,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
316
329
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
317
330
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
318
331
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
319
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
320
332
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
321
333
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
322
334
|
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;AAG1E,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EAAE,IAAI,EAAE,MAAM,8BAA8B,CAAC;AACpD,OAAO,EAAmD,SAAS,EAAE,MAAM,uBAAuB,CAAC;AACnG,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
|
@@ -109,8 +109,8 @@ let Navigation = class Navigation extends EventEmitter(GenesisElement) {
|
|
|
109
109
|
const _super = Object.create(null, {
|
|
110
110
|
connectedCallback: { get: () => super.connectedCallback }
|
|
111
111
|
});
|
|
112
|
+
var _a;
|
|
112
113
|
return __awaiter(this, void 0, void 0, function* () {
|
|
113
|
-
var _a;
|
|
114
114
|
_super.connectedCallback.call(this);
|
|
115
115
|
logger.debug(`foundation-header is now connected to the DOM`);
|
|
116
116
|
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,14 +526,11 @@ 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;
|
|
@@ -598,39 +588,48 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
598
588
|
normalize(): void;
|
|
599
589
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
600
590
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
601
|
-
readonly
|
|
602
|
-
readonly
|
|
603
|
-
readonly
|
|
604
|
-
readonly
|
|
605
|
-
readonly
|
|
606
|
-
readonly
|
|
607
|
-
readonly
|
|
608
|
-
readonly
|
|
609
|
-
readonly
|
|
610
|
-
readonly
|
|
611
|
-
readonly
|
|
612
|
-
readonly
|
|
613
|
-
readonly
|
|
614
|
-
readonly
|
|
615
|
-
readonly
|
|
616
|
-
readonly
|
|
617
|
-
readonly
|
|
618
|
-
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;
|
|
619
609
|
dispatchEvent(event: Event): boolean;
|
|
620
610
|
ariaAtomic: string;
|
|
621
611
|
ariaAutoComplete: string;
|
|
622
612
|
ariaBusy: string;
|
|
623
613
|
ariaChecked: string;
|
|
624
614
|
ariaColCount: string;
|
|
615
|
+
/**
|
|
616
|
+
* Selects the appropriate template based on the component's state
|
|
617
|
+
* @returns \{ViewTemplate<Navigation>\}
|
|
618
|
+
*/
|
|
625
619
|
ariaColIndex: string;
|
|
620
|
+
ariaColIndexText: string;
|
|
626
621
|
ariaColSpan: string;
|
|
627
622
|
ariaCurrent: string;
|
|
628
|
-
ariaDescription: string;
|
|
629
623
|
ariaDisabled: string;
|
|
630
624
|
ariaExpanded: string;
|
|
631
625
|
ariaHasPopup: string;
|
|
632
626
|
ariaHidden: string;
|
|
633
627
|
ariaInvalid: string;
|
|
628
|
+
/**
|
|
629
|
+
* Logs the user out of their session
|
|
630
|
+
*
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
634
633
|
ariaKeyShortcuts: string;
|
|
635
634
|
ariaLabel: string;
|
|
636
635
|
ariaLevel: string;
|
|
@@ -643,10 +642,22 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
643
642
|
ariaPosInSet: string;
|
|
644
643
|
ariaPressed: string;
|
|
645
644
|
ariaReadOnly: string;
|
|
645
|
+
/**
|
|
646
|
+
* Changes the route of the current page
|
|
647
|
+
*
|
|
648
|
+
* @remarks
|
|
649
|
+
*
|
|
650
|
+
* Requires setup of the Router and usage of the Router
|
|
651
|
+
*
|
|
652
|
+
* @param path - string representing the new route to move to
|
|
653
|
+
*
|
|
654
|
+
* @public
|
|
655
|
+
*/
|
|
646
656
|
ariaRequired: string;
|
|
647
657
|
ariaRoleDescription: string;
|
|
648
658
|
ariaRowCount: string;
|
|
649
659
|
ariaRowIndex: string;
|
|
660
|
+
ariaRowIndexText: string;
|
|
650
661
|
ariaRowSpan: string;
|
|
651
662
|
ariaSelected: string;
|
|
652
663
|
ariaSetSize: string;
|
|
@@ -671,32 +682,37 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
671
682
|
readonly lastElementChild: Element;
|
|
672
683
|
append(...nodes: (string | Node)[]): void;
|
|
673
684
|
prepend(...nodes: (string | Node)[]): void;
|
|
674
|
-
querySelector<
|
|
675
|
-
querySelector<
|
|
676
|
-
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
677
|
-
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
685
|
+
querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
|
|
686
|
+
querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
|
|
678
687
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
679
|
-
querySelectorAll<
|
|
680
|
-
querySelectorAll<
|
|
681
|
-
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
682
|
-
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
688
|
+
querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
|
|
689
|
+
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
|
683
690
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
684
691
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
685
692
|
readonly assignedSlot: HTMLSlotElement;
|
|
686
|
-
|
|
693
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
694
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
695
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
687
696
|
readonly style: CSSStyleDeclaration;
|
|
688
697
|
contentEditable: string;
|
|
689
698
|
enterKeyHint: string;
|
|
690
699
|
inputMode: string;
|
|
691
700
|
readonly isContentEditable: boolean;
|
|
692
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
701
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any; /**
|
|
702
|
+
* Changes the language of the application
|
|
703
|
+
*
|
|
704
|
+
* @remarks
|
|
705
|
+
*
|
|
706
|
+
* Activated when the user selects a language from the language selector that uses the I18next service.
|
|
707
|
+
*
|
|
708
|
+
* @experimental
|
|
709
|
+
*/
|
|
693
710
|
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
694
711
|
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
695
712
|
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
696
713
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
697
714
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
698
715
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
699
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
700
716
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
701
717
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
702
718
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -705,9 +721,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
705
721
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
706
722
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
707
723
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
708
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
709
724
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
710
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
711
725
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
712
726
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
713
727
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -740,7 +754,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
740
754
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
741
755
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
742
756
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
743
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
744
757
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
745
758
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
746
759
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -757,7 +770,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
757
770
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
758
771
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
759
772
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
760
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
761
773
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
762
774
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
763
775
|
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.
|
|
4
|
+
"version": "14.238.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,30 +77,30 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@genesislcap/foundation-testing": "14.
|
|
81
|
-
"@genesislcap/genx": "14.
|
|
82
|
-
"@genesislcap/rollup-builder": "14.
|
|
83
|
-
"@genesislcap/ts-builder": "14.
|
|
84
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
85
|
-
"@genesislcap/vite-builder": "14.
|
|
86
|
-
"@genesislcap/webpack-builder": "14.
|
|
80
|
+
"@genesislcap/foundation-testing": "14.238.0",
|
|
81
|
+
"@genesislcap/genx": "14.238.0",
|
|
82
|
+
"@genesislcap/rollup-builder": "14.238.0",
|
|
83
|
+
"@genesislcap/ts-builder": "14.238.0",
|
|
84
|
+
"@genesislcap/uvu-playwright-builder": "14.238.0",
|
|
85
|
+
"@genesislcap/vite-builder": "14.238.0",
|
|
86
|
+
"@genesislcap/webpack-builder": "14.238.0",
|
|
87
87
|
"rimraf": "^5.0.0"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@genesislcap/foundation-auth": "14.
|
|
91
|
-
"@genesislcap/foundation-comms": "14.
|
|
92
|
-
"@genesislcap/foundation-events": "14.
|
|
93
|
-
"@genesislcap/foundation-i18n": "14.
|
|
94
|
-
"@genesislcap/foundation-logger": "14.
|
|
95
|
-
"@genesislcap/foundation-login": "14.
|
|
96
|
-
"@genesislcap/foundation-shell": "14.
|
|
97
|
-
"@genesislcap/foundation-ui": "14.
|
|
98
|
-
"@genesislcap/foundation-user": "14.
|
|
99
|
-
"@genesislcap/foundation-utils": "14.
|
|
100
|
-
"@genesislcap/foundation-zero": "14.
|
|
101
|
-
"@genesislcap/rapid-design-system": "14.
|
|
102
|
-
"@genesislcap/web-core": "14.
|
|
103
|
-
"tslib": "2.
|
|
90
|
+
"@genesislcap/foundation-auth": "14.238.0",
|
|
91
|
+
"@genesislcap/foundation-comms": "14.238.0",
|
|
92
|
+
"@genesislcap/foundation-events": "14.238.0",
|
|
93
|
+
"@genesislcap/foundation-i18n": "14.238.0",
|
|
94
|
+
"@genesislcap/foundation-logger": "14.238.0",
|
|
95
|
+
"@genesislcap/foundation-login": "14.238.0",
|
|
96
|
+
"@genesislcap/foundation-shell": "14.238.0",
|
|
97
|
+
"@genesislcap/foundation-ui": "14.238.0",
|
|
98
|
+
"@genesislcap/foundation-user": "14.238.0",
|
|
99
|
+
"@genesislcap/foundation-utils": "14.238.0",
|
|
100
|
+
"@genesislcap/foundation-zero": "14.238.0",
|
|
101
|
+
"@genesislcap/rapid-design-system": "14.238.0",
|
|
102
|
+
"@genesislcap/web-core": "14.238.0",
|
|
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": "2735fb5a88f2e15f101c1343ee178d80db89fc63"
|
|
115
115
|
}
|
package/docs/.gitattributes
DELETED
|
File without changes
|