@genesislcap/foundation-header 14.225.3 → 14.225.4-alpha-5f6eefd.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/custom-elements.json +6 -6
- package/dist/dts/main/main.d.ts +67 -37
- 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 +67 -37
- package/dist/tsdoc-metadata.json +1 -1
- package/docs/.gitattributes +2 -0
- package/package.json +23 -23
- /package/docs/{api-report.md → api-report.md.api.md} +0 -0
|
@@ -2292,6 +2292,12 @@
|
|
|
2292
2292
|
"declarations": [],
|
|
2293
2293
|
"exports": []
|
|
2294
2294
|
},
|
|
2295
|
+
{
|
|
2296
|
+
"kind": "javascript-module",
|
|
2297
|
+
"path": "src/templates/rapid.template.ts",
|
|
2298
|
+
"declarations": [],
|
|
2299
|
+
"exports": []
|
|
2300
|
+
},
|
|
2295
2301
|
{
|
|
2296
2302
|
"kind": "javascript-module",
|
|
2297
2303
|
"path": "src/utils/index.ts",
|
|
@@ -2326,12 +2332,6 @@
|
|
|
2326
2332
|
}
|
|
2327
2333
|
}
|
|
2328
2334
|
]
|
|
2329
|
-
},
|
|
2330
|
-
{
|
|
2331
|
-
"kind": "javascript-module",
|
|
2332
|
-
"path": "src/templates/rapid.template.ts",
|
|
2333
|
-
"declarations": [],
|
|
2334
|
-
"exports": []
|
|
2335
2335
|
}
|
|
2336
2336
|
]
|
|
2337
2337
|
}
|
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -41,11 +41,15 @@ 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;
|
|
44
45
|
spellcheck: boolean;
|
|
45
46
|
title: string;
|
|
46
47
|
translate: boolean;
|
|
47
48
|
attachInternals(): ElementInternals;
|
|
48
49
|
click(): void;
|
|
50
|
+
hidePopover(): void;
|
|
51
|
+
showPopover(): void;
|
|
52
|
+
togglePopover(force?: boolean): boolean;
|
|
49
53
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
50
54
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
51
55
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -74,9 +78,12 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
74
78
|
slot: string;
|
|
75
79
|
readonly tagName: string;
|
|
76
80
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
81
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
77
82
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
78
83
|
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];
|
|
79
85
|
closest<E extends Element = Element>(selectors: string): E;
|
|
86
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
80
87
|
getAttribute(qualifiedName: string): string;
|
|
81
88
|
getAttributeNS(namespace: string, localName: string): string;
|
|
82
89
|
getAttributeNames(): string[];
|
|
@@ -85,17 +92,25 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
85
92
|
getBoundingClientRect(): DOMRect;
|
|
86
93
|
getClientRects(): DOMRectList;
|
|
87
94
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
88
|
-
getElementsByTagName<
|
|
89
|
-
getElementsByTagName<
|
|
95
|
+
getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
|
|
96
|
+
getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
|
|
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]>;
|
|
90
99
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
91
100
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
92
101
|
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>;
|
|
93
103
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
94
104
|
hasAttribute(qualifiedName: string): boolean;
|
|
95
105
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
96
106
|
hasAttributes(): boolean;
|
|
97
107
|
hasPointerCapture(pointerId: number): boolean;
|
|
98
108
|
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
|
+
*/
|
|
99
114
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
100
115
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
101
116
|
matches(selectors: string): boolean;
|
|
@@ -107,8 +122,12 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
107
122
|
requestPointerLock(): void;
|
|
108
123
|
scroll(options?: ScrollToOptions): void;
|
|
109
124
|
scroll(x: number, y: number): void;
|
|
110
|
-
scrollBy(options?: ScrollToOptions): void;
|
|
111
|
-
|
|
125
|
+
scrollBy(options?: ScrollToOptions): void; /**
|
|
126
|
+
* Object which defines the language options to be displayed in the language selector
|
|
127
|
+
*/
|
|
128
|
+
scrollBy(x: number, y: number): void; /**
|
|
129
|
+
* Object which defines the language options to be displayed in the language selector
|
|
130
|
+
*/
|
|
112
131
|
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
113
132
|
scrollTo(options?: ScrollToOptions): void;
|
|
114
133
|
scrollTo(x: number, y: number): void;
|
|
@@ -123,7 +142,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
123
142
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
124
143
|
readonly firstChild: ChildNode;
|
|
125
144
|
readonly isConnected: boolean;
|
|
126
|
-
readonly lastChild: ChildNode;
|
|
145
|
+
readonly lastChild: ChildNode; /**
|
|
146
|
+
* @internal
|
|
147
|
+
*/
|
|
127
148
|
readonly nextSibling: ChildNode;
|
|
128
149
|
readonly nodeName: string;
|
|
129
150
|
readonly nodeType: number;
|
|
@@ -137,7 +158,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
137
158
|
compareDocumentPosition(other: Node): number;
|
|
138
159
|
contains(other: Node): boolean;
|
|
139
160
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
140
|
-
hasChildNodes(): boolean;
|
|
161
|
+
hasChildNodes(): boolean; /**
|
|
162
|
+
* If present the defined {@link @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems} will be rendered in the header 'routes' slot
|
|
163
|
+
*/
|
|
141
164
|
insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
|
|
142
165
|
isDefaultNamespace(namespace: string): boolean;
|
|
143
166
|
isEqualNode(otherNode: Node): boolean;
|
|
@@ -147,24 +170,24 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
147
170
|
normalize(): void;
|
|
148
171
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
149
172
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
150
|
-
readonly
|
|
151
|
-
readonly
|
|
152
|
-
readonly
|
|
153
|
-
readonly
|
|
154
|
-
readonly
|
|
155
|
-
readonly
|
|
156
|
-
readonly
|
|
157
|
-
readonly
|
|
158
|
-
readonly
|
|
159
|
-
readonly
|
|
160
|
-
readonly
|
|
161
|
-
readonly
|
|
162
|
-
readonly
|
|
163
|
-
readonly
|
|
164
|
-
readonly
|
|
165
|
-
readonly
|
|
166
|
-
readonly
|
|
167
|
-
readonly
|
|
173
|
+
readonly ELEMENT_NODE: 1;
|
|
174
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
175
|
+
readonly TEXT_NODE: 3;
|
|
176
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
177
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
178
|
+
readonly ENTITY_NODE: 6;
|
|
179
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
180
|
+
readonly COMMENT_NODE: 8;
|
|
181
|
+
readonly DOCUMENT_NODE: 9;
|
|
182
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
183
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
184
|
+
readonly NOTATION_NODE: 12;
|
|
185
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
186
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
187
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
188
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
189
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
190
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
168
191
|
dispatchEvent(event: Event): boolean;
|
|
169
192
|
ariaAtomic: string;
|
|
170
193
|
ariaAutoComplete: string;
|
|
@@ -172,9 +195,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
172
195
|
ariaChecked: string;
|
|
173
196
|
ariaColCount: string;
|
|
174
197
|
ariaColIndex: string;
|
|
175
|
-
ariaColIndexText: string;
|
|
176
198
|
ariaColSpan: string;
|
|
177
199
|
ariaCurrent: string;
|
|
200
|
+
ariaDescription: string;
|
|
178
201
|
ariaDisabled: string;
|
|
179
202
|
ariaExpanded: string;
|
|
180
203
|
ariaHasPopup: string;
|
|
@@ -196,7 +219,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
196
219
|
ariaRoleDescription: string;
|
|
197
220
|
ariaRowCount: string;
|
|
198
221
|
ariaRowIndex: string;
|
|
199
|
-
ariaRowIndexText: string;
|
|
200
222
|
ariaRowSpan: string;
|
|
201
223
|
ariaSelected: string;
|
|
202
224
|
ariaSetSize: string;
|
|
@@ -216,11 +238,12 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
216
238
|
readonly nextElementSibling: Element;
|
|
217
239
|
readonly previousElementSibling: Element;
|
|
218
240
|
readonly childElementCount: number; /**
|
|
219
|
-
*
|
|
241
|
+
* Emits the event corresponding to the miscellaneous icon being clicked
|
|
220
242
|
*
|
|
221
|
-
* @
|
|
222
|
-
*
|
|
223
|
-
*
|
|
243
|
+
* @remarks
|
|
244
|
+
*
|
|
245
|
+
* Activated when the user clicks on the menu icon on the navigation
|
|
246
|
+
* bar right hand side
|
|
224
247
|
*
|
|
225
248
|
* @internal
|
|
226
249
|
*/
|
|
@@ -229,17 +252,19 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
229
252
|
readonly lastElementChild: Element;
|
|
230
253
|
append(...nodes: (string | Node)[]): void;
|
|
231
254
|
prepend(...nodes: (string | Node)[]): void;
|
|
232
|
-
querySelector<
|
|
233
|
-
querySelector<
|
|
255
|
+
querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
|
|
256
|
+
querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
|
|
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];
|
|
234
259
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
235
|
-
querySelectorAll<
|
|
236
|
-
querySelectorAll<
|
|
260
|
+
querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
|
|
261
|
+
querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
|
|
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]>;
|
|
237
264
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
238
265
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
239
266
|
readonly assignedSlot: HTMLSlotElement;
|
|
240
|
-
|
|
241
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
242
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
267
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
243
268
|
readonly style: CSSStyleDeclaration;
|
|
244
269
|
contentEditable: string;
|
|
245
270
|
enterKeyHint: string;
|
|
@@ -252,6 +277,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
252
277
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
253
278
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
254
279
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
280
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
255
281
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
256
282
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
257
283
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -260,7 +286,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
260
286
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
261
287
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
262
288
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
289
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
263
290
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
291
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
264
292
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
265
293
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
266
294
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -293,6 +321,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
293
321
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
294
322
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
295
323
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
324
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
296
325
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
297
326
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
298
327
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -309,6 +338,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
309
338
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
310
339
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
311
340
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
341
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
312
342
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
313
343
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
314
344
|
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;
|
|
112
111
|
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,11 +482,15 @@ 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;
|
|
485
486
|
spellcheck: boolean;
|
|
486
487
|
title: string;
|
|
487
488
|
translate: boolean;
|
|
488
489
|
attachInternals(): ElementInternals;
|
|
489
490
|
click(): void;
|
|
491
|
+
hidePopover(): void;
|
|
492
|
+
showPopover(): void;
|
|
493
|
+
togglePopover(force?: boolean): boolean;
|
|
490
494
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
491
495
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
492
496
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -515,9 +519,12 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
515
519
|
slot: string;
|
|
516
520
|
readonly tagName: string;
|
|
517
521
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
522
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
518
523
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
519
524
|
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];
|
|
520
526
|
closest<E extends Element = Element>(selectors: string): E;
|
|
527
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
521
528
|
getAttribute(qualifiedName: string): string;
|
|
522
529
|
getAttributeNS(namespace: string, localName: string): string;
|
|
523
530
|
getAttributeNames(): string[];
|
|
@@ -526,17 +533,25 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
526
533
|
getBoundingClientRect(): DOMRect;
|
|
527
534
|
getClientRects(): DOMRectList;
|
|
528
535
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
529
|
-
getElementsByTagName<
|
|
530
|
-
getElementsByTagName<
|
|
536
|
+
getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
|
|
537
|
+
getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
|
|
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]>;
|
|
531
540
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
532
541
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
533
542
|
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>;
|
|
534
544
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
535
545
|
hasAttribute(qualifiedName: string): boolean;
|
|
536
546
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
537
547
|
hasAttributes(): boolean;
|
|
538
548
|
hasPointerCapture(pointerId: number): boolean;
|
|
539
549
|
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
|
+
*/
|
|
540
555
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
541
556
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
542
557
|
matches(selectors: string): boolean;
|
|
@@ -548,8 +563,12 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
548
563
|
requestPointerLock(): void;
|
|
549
564
|
scroll(options?: ScrollToOptions): void;
|
|
550
565
|
scroll(x: number, y: number): void;
|
|
551
|
-
scrollBy(options?: ScrollToOptions): void;
|
|
552
|
-
|
|
566
|
+
scrollBy(options?: ScrollToOptions): void; /**
|
|
567
|
+
* Object which defines the language options to be displayed in the language selector
|
|
568
|
+
*/
|
|
569
|
+
scrollBy(x: number, y: number): void; /**
|
|
570
|
+
* Object which defines the language options to be displayed in the language selector
|
|
571
|
+
*/
|
|
553
572
|
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
554
573
|
scrollTo(options?: ScrollToOptions): void;
|
|
555
574
|
scrollTo(x: number, y: number): void;
|
|
@@ -564,7 +583,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
564
583
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
565
584
|
readonly firstChild: ChildNode;
|
|
566
585
|
readonly isConnected: boolean;
|
|
567
|
-
readonly lastChild: ChildNode;
|
|
586
|
+
readonly lastChild: ChildNode; /**
|
|
587
|
+
* @internal
|
|
588
|
+
*/
|
|
568
589
|
readonly nextSibling: ChildNode;
|
|
569
590
|
readonly nodeName: string;
|
|
570
591
|
readonly nodeType: number;
|
|
@@ -578,7 +599,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
578
599
|
compareDocumentPosition(other: Node): number;
|
|
579
600
|
contains(other: Node): boolean;
|
|
580
601
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
581
|
-
hasChildNodes(): boolean;
|
|
602
|
+
hasChildNodes(): boolean; /**
|
|
603
|
+
* If present the defined {@link @genesislcap/foundation-ui#FoundationRouteNavItem | FoundationRouteNavItems} will be rendered in the header 'routes' slot
|
|
604
|
+
*/
|
|
582
605
|
insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
|
|
583
606
|
isDefaultNamespace(namespace: string): boolean;
|
|
584
607
|
isEqualNode(otherNode: Node): boolean;
|
|
@@ -588,24 +611,24 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
588
611
|
normalize(): void;
|
|
589
612
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
590
613
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
591
|
-
readonly
|
|
592
|
-
readonly
|
|
593
|
-
readonly
|
|
594
|
-
readonly
|
|
595
|
-
readonly
|
|
596
|
-
readonly
|
|
597
|
-
readonly
|
|
598
|
-
readonly
|
|
599
|
-
readonly
|
|
600
|
-
readonly
|
|
601
|
-
readonly
|
|
602
|
-
readonly
|
|
603
|
-
readonly
|
|
604
|
-
readonly
|
|
605
|
-
readonly
|
|
606
|
-
readonly
|
|
607
|
-
readonly
|
|
608
|
-
readonly
|
|
614
|
+
readonly ELEMENT_NODE: 1;
|
|
615
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
616
|
+
readonly TEXT_NODE: 3;
|
|
617
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
618
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
619
|
+
readonly ENTITY_NODE: 6;
|
|
620
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
621
|
+
readonly COMMENT_NODE: 8;
|
|
622
|
+
readonly DOCUMENT_NODE: 9;
|
|
623
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
624
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
625
|
+
readonly NOTATION_NODE: 12;
|
|
626
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
627
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
628
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
629
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
630
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
631
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
609
632
|
dispatchEvent(event: Event): boolean;
|
|
610
633
|
ariaAtomic: string;
|
|
611
634
|
ariaAutoComplete: string;
|
|
@@ -613,9 +636,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
613
636
|
ariaChecked: string;
|
|
614
637
|
ariaColCount: string;
|
|
615
638
|
ariaColIndex: string;
|
|
616
|
-
ariaColIndexText: string;
|
|
617
639
|
ariaColSpan: string;
|
|
618
640
|
ariaCurrent: string;
|
|
641
|
+
ariaDescription: string;
|
|
619
642
|
ariaDisabled: string;
|
|
620
643
|
ariaExpanded: string;
|
|
621
644
|
ariaHasPopup: string;
|
|
@@ -637,7 +660,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
637
660
|
ariaRoleDescription: string;
|
|
638
661
|
ariaRowCount: string;
|
|
639
662
|
ariaRowIndex: string;
|
|
640
|
-
ariaRowIndexText: string;
|
|
641
663
|
ariaRowSpan: string;
|
|
642
664
|
ariaSelected: string;
|
|
643
665
|
ariaSetSize: string;
|
|
@@ -657,11 +679,12 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
657
679
|
readonly nextElementSibling: Element;
|
|
658
680
|
readonly previousElementSibling: Element;
|
|
659
681
|
readonly childElementCount: number; /**
|
|
660
|
-
*
|
|
682
|
+
* Emits the event corresponding to the miscellaneous icon being clicked
|
|
683
|
+
*
|
|
684
|
+
* @remarks
|
|
661
685
|
*
|
|
662
|
-
*
|
|
663
|
-
*
|
|
664
|
-
* can close the menu to return to normal flow.
|
|
686
|
+
* Activated when the user clicks on the menu icon on the navigation
|
|
687
|
+
* bar right hand side
|
|
665
688
|
*
|
|
666
689
|
* @internal
|
|
667
690
|
*/
|
|
@@ -670,17 +693,19 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
670
693
|
readonly lastElementChild: Element;
|
|
671
694
|
append(...nodes: (string | Node)[]): void;
|
|
672
695
|
prepend(...nodes: (string | Node)[]): void;
|
|
673
|
-
querySelector<
|
|
674
|
-
querySelector<
|
|
696
|
+
querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
|
|
697
|
+
querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
|
|
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];
|
|
675
700
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
676
|
-
querySelectorAll<
|
|
677
|
-
querySelectorAll<
|
|
701
|
+
querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
|
|
702
|
+
querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
|
|
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]>;
|
|
678
705
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
679
706
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
680
707
|
readonly assignedSlot: HTMLSlotElement;
|
|
681
|
-
|
|
682
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
683
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
708
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
684
709
|
readonly style: CSSStyleDeclaration;
|
|
685
710
|
contentEditable: string;
|
|
686
711
|
enterKeyHint: string;
|
|
@@ -693,6 +718,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
693
718
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
694
719
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
695
720
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
721
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
696
722
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
697
723
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
698
724
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -701,7 +727,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
701
727
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
702
728
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
703
729
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
730
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
704
731
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
732
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
705
733
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
706
734
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
707
735
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -734,6 +762,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
734
762
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
735
763
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
736
764
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
765
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
737
766
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
738
767
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
739
768
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -750,6 +779,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
750
779
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
751
780
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
752
781
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
782
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
753
783
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
754
784
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
755
785
|
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.4-alpha-5f6eefd.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.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.4-alpha-5f6eefd.0",
|
|
81
|
+
"@genesislcap/genx": "14.225.4-alpha-5f6eefd.0",
|
|
82
|
+
"@genesislcap/rollup-builder": "14.225.4-alpha-5f6eefd.0",
|
|
83
|
+
"@genesislcap/ts-builder": "14.225.4-alpha-5f6eefd.0",
|
|
84
|
+
"@genesislcap/uvu-playwright-builder": "14.225.4-alpha-5f6eefd.0",
|
|
85
|
+
"@genesislcap/vite-builder": "14.225.4-alpha-5f6eefd.0",
|
|
86
|
+
"@genesislcap/webpack-builder": "14.225.4-alpha-5f6eefd.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-login": "14.225.
|
|
96
|
-
"@genesislcap/foundation-shell": "14.225.
|
|
97
|
-
"@genesislcap/foundation-ui": "14.225.
|
|
98
|
-
"@genesislcap/foundation-user": "14.225.
|
|
99
|
-
"@genesislcap/foundation-utils": "14.225.
|
|
100
|
-
"@genesislcap/foundation-zero": "14.225.
|
|
101
|
-
"@genesislcap/rapid-design-system": "14.225.
|
|
102
|
-
"@genesislcap/web-core": "14.225.
|
|
103
|
-
"tslib": "
|
|
90
|
+
"@genesislcap/foundation-auth": "14.225.4-alpha-5f6eefd.0",
|
|
91
|
+
"@genesislcap/foundation-comms": "14.225.4-alpha-5f6eefd.0",
|
|
92
|
+
"@genesislcap/foundation-events": "14.225.4-alpha-5f6eefd.0",
|
|
93
|
+
"@genesislcap/foundation-i18n": "14.225.4-alpha-5f6eefd.0",
|
|
94
|
+
"@genesislcap/foundation-logger": "14.225.4-alpha-5f6eefd.0",
|
|
95
|
+
"@genesislcap/foundation-login": "14.225.4-alpha-5f6eefd.0",
|
|
96
|
+
"@genesislcap/foundation-shell": "14.225.4-alpha-5f6eefd.0",
|
|
97
|
+
"@genesislcap/foundation-ui": "14.225.4-alpha-5f6eefd.0",
|
|
98
|
+
"@genesislcap/foundation-user": "14.225.4-alpha-5f6eefd.0",
|
|
99
|
+
"@genesislcap/foundation-utils": "14.225.4-alpha-5f6eefd.0",
|
|
100
|
+
"@genesislcap/foundation-zero": "14.225.4-alpha-5f6eefd.0",
|
|
101
|
+
"@genesislcap/rapid-design-system": "14.225.4-alpha-5f6eefd.0",
|
|
102
|
+
"@genesislcap/web-core": "14.225.4-alpha-5f6eefd.0",
|
|
103
|
+
"tslib": "2.8.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": "232162ffe08f1239c9af3c85819c422c4a68db00"
|
|
115
115
|
}
|
|
File without changes
|