@genesislcap/foundation-header 14.107.1-alpha-afbc4d7.0 → 14.107.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -58,10 +58,8 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
58
58
|
slot: string;
|
|
59
59
|
readonly tagName: string;
|
|
60
60
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
61
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
62
61
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
63
62
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
64
|
-
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
|
65
63
|
closest<E extends Element = Element>(selectors: string): E;
|
|
66
64
|
getAttribute(qualifiedName: string): string;
|
|
67
65
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -71,14 +69,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
71
69
|
getBoundingClientRect(): DOMRect;
|
|
72
70
|
getClientRects(): DOMRectList;
|
|
73
71
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
74
|
-
getElementsByTagName<
|
|
75
|
-
getElementsByTagName<
|
|
76
|
-
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
|
77
|
-
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
|
72
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
73
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
78
74
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
79
75
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
80
76
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
81
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
82
77
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
83
78
|
hasAttribute(qualifiedName: string): boolean;
|
|
84
79
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -98,17 +93,28 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
98
93
|
scroll(x: number, y: number): void;
|
|
99
94
|
scrollBy(options?: ScrollToOptions): void;
|
|
100
95
|
scrollBy(x: number, y: number): void;
|
|
101
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
102
|
-
|
|
96
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
97
|
+
/**
|
|
98
|
+
* Emits the event corresponding to the luminance icon being clicked
|
|
103
99
|
*
|
|
104
100
|
* @remarks
|
|
105
101
|
*
|
|
106
|
-
* Activated when the user clicks on the
|
|
102
|
+
* Activated when the user clicks on the moon icon on the navigation
|
|
107
103
|
* bar right hand side
|
|
108
104
|
*
|
|
109
105
|
* @internal
|
|
110
106
|
*/
|
|
111
107
|
scrollTo(options?: ScrollToOptions): void;
|
|
108
|
+
/**
|
|
109
|
+
* Emits the event corresponding to the luminance icon being clicked
|
|
110
|
+
*
|
|
111
|
+
* @remarks
|
|
112
|
+
*
|
|
113
|
+
* Activated when the user clicks on the moon icon on the navigation
|
|
114
|
+
* bar right hand side
|
|
115
|
+
*
|
|
116
|
+
* @internal
|
|
117
|
+
*/
|
|
112
118
|
scrollTo(x: number, y: number): void;
|
|
113
119
|
setAttribute(qualifiedName: string, value: string): void;
|
|
114
120
|
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
@@ -145,24 +151,24 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
145
151
|
normalize(): void;
|
|
146
152
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
147
153
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
148
|
-
readonly
|
|
149
|
-
readonly
|
|
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
|
|
154
|
+
readonly ATTRIBUTE_NODE: number;
|
|
155
|
+
readonly CDATA_SECTION_NODE: number;
|
|
156
|
+
readonly COMMENT_NODE: number;
|
|
157
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
158
|
+
readonly DOCUMENT_NODE: number;
|
|
159
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
160
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
161
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
162
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
163
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
164
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
165
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
166
|
+
readonly ELEMENT_NODE: number;
|
|
167
|
+
readonly ENTITY_NODE: number;
|
|
168
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
169
|
+
readonly NOTATION_NODE: number;
|
|
170
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
171
|
+
readonly TEXT_NODE: number;
|
|
166
172
|
dispatchEvent(event: Event): boolean;
|
|
167
173
|
ariaAtomic: string;
|
|
168
174
|
ariaAutoComplete: string;
|
|
@@ -170,6 +176,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
170
176
|
ariaChecked: string;
|
|
171
177
|
ariaColCount: string;
|
|
172
178
|
ariaColIndex: string;
|
|
179
|
+
ariaColIndexText: string;
|
|
173
180
|
ariaColSpan: string;
|
|
174
181
|
ariaCurrent: string;
|
|
175
182
|
ariaDisabled: string;
|
|
@@ -193,6 +200,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
193
200
|
ariaRoleDescription: string;
|
|
194
201
|
ariaRowCount: string;
|
|
195
202
|
ariaRowIndex: string;
|
|
203
|
+
ariaRowIndexText: string;
|
|
196
204
|
ariaRowSpan: string;
|
|
197
205
|
ariaSelected: string;
|
|
198
206
|
ariaSetSize: string;
|
|
@@ -217,18 +225,17 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
217
225
|
readonly lastElementChild: Element;
|
|
218
226
|
append(...nodes: (string | Node)[]): void;
|
|
219
227
|
prepend(...nodes: (string | Node)[]): void;
|
|
220
|
-
querySelector<
|
|
221
|
-
querySelector<
|
|
222
|
-
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
223
|
-
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
228
|
+
querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
|
|
229
|
+
querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
|
|
224
230
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
225
|
-
querySelectorAll<
|
|
226
|
-
querySelectorAll<
|
|
227
|
-
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
228
|
-
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
231
|
+
querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
|
|
232
|
+
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
|
229
233
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
230
234
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
231
235
|
readonly assignedSlot: HTMLSlotElement;
|
|
236
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
237
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
238
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
232
239
|
readonly style: CSSStyleDeclaration;
|
|
233
240
|
contentEditable: string;
|
|
234
241
|
enterKeyHint: string;
|
|
@@ -249,9 +256,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
249
256
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
250
257
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
251
258
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
252
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
253
259
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
254
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
255
260
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
256
261
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
257
262
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -284,7 +289,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
284
289
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
285
290
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
286
291
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
287
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
288
292
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
289
293
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
290
294
|
onplaying: (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,IAAI,EAAE,iBAAiB,EAAgB,MAAM,+BAA+B,CAAC;AAUtF;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,wBAAwB,EAAE,IAAI,CAAC;IAC/B,mBAAmB,EAAE,IAAI,CAAC;IAC1B,2BAA2B,EAAE,IAAI,CAAC;CACnC,CAAC
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,iBAAiB,EAAgB,MAAM,+BAA+B,CAAC;AAUtF;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,wBAAwB,EAAE,IAAI,CAAC;IAC/B,mBAAmB,EAAE,IAAI,CAAC;IAC1B,2BAA2B,EAAE,IAAI,CAAC;CACnC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA2MA;;;;;;;;;OASG;;IATH;;;;;;;;;OASG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA/ML;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,qBAKa,UAAW,SAAQ,eAAmC;IAC3D,IAAI,EAAG,IAAI,CAAC;IACC,iBAAiB,EAAG,iBAAiB,CAAC;IAC7C,KAAK,EAAE,OAAO,CAAS;IAEnC;;OAEG;IACgB,QAAQ,EAAE,MAAM,CAAC;IAExB,WAAW,UAAS;IAEnB,iBAAiB;IAU9B;;;;;;;OAOG;IAC8B,OAAO,EAAE,GAAG,CAAQ;IAErD;;;;;;;OAOG;IAEH,yBAAyB,EAAE,OAAO,CAAC;IAEnC;;;;;;;OAOG;IAC8D,oBAAoB,EAAE,OAAO,CAAC;IAE/F;;;;;;;OAOG;IAEH,uBAAuB,EAAE,OAAO,CAAC;IAEjC;;;;OAIG;IAEH,uBAAuB,EAAE,OAAO,CAAQ;IAExC;;;;OAIG;IAEH,WAAW,EAAE,OAAO,CAAC;IAErB;;OAEG;IACS,YAAY,EAAE,KAAK,CAAC;QAC9B,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC,CAAC;IAEH;;;;;;;;OAQG;IACG,WAAW;IAKjB,cAAc;IAId;;;;;;;;;OASG;IACU,MAAM;IAgBnB;;;;;;;;;;OAUG;IACI,UAAU,CAAC,IAAI,EAAE,MAAM;IAS9B;;;;;;;;;OASG;IACH,mBAAmB;IAInB;;;;;;;;;OASG;IACH,kBAAkB;IAIlB;;;;;;;;;OASG;IACH,aAAa;IAIb;;;;;;;;;OASG;IACH,qBAAqB;CAGtB"}
|
|
@@ -247,10 +247,8 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
247
247
|
slot: string;
|
|
248
248
|
readonly tagName: string;
|
|
249
249
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
250
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
251
250
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
252
251
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
253
|
-
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
|
254
252
|
closest<E extends Element = Element>(selectors: string): E;
|
|
255
253
|
getAttribute(qualifiedName: string): string;
|
|
256
254
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -260,14 +258,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
260
258
|
getBoundingClientRect(): DOMRect;
|
|
261
259
|
getClientRects(): DOMRectList;
|
|
262
260
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
263
|
-
getElementsByTagName<
|
|
264
|
-
getElementsByTagName<
|
|
265
|
-
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
|
266
|
-
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
|
261
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
262
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
267
263
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
268
264
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
269
265
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
270
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
271
266
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
272
267
|
hasAttribute(qualifiedName: string): boolean;
|
|
273
268
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -287,17 +282,28 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
287
282
|
scroll(x: number, y: number): void;
|
|
288
283
|
scrollBy(options?: ScrollToOptions): void;
|
|
289
284
|
scrollBy(x: number, y: number): void;
|
|
290
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
285
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
286
|
+
/**
|
|
287
|
+
* Emits the event corresponding to the luminance icon being clicked
|
|
288
|
+
*
|
|
289
|
+
* @remarks
|
|
290
|
+
*
|
|
291
|
+
* Activated when the user clicks on the moon icon on the navigation
|
|
292
|
+
* bar right hand side
|
|
293
|
+
*
|
|
294
|
+
* @internal
|
|
295
|
+
*/
|
|
300
296
|
scrollTo(options?: ScrollToOptions): void;
|
|
297
|
+
/**
|
|
298
|
+
* Emits the event corresponding to the luminance icon being clicked
|
|
299
|
+
*
|
|
300
|
+
* @remarks
|
|
301
|
+
*
|
|
302
|
+
* Activated when the user clicks on the moon icon on the navigation
|
|
303
|
+
* bar right hand side
|
|
304
|
+
*
|
|
305
|
+
* @internal
|
|
306
|
+
*/
|
|
301
307
|
scrollTo(x: number, y: number): void;
|
|
302
308
|
setAttribute(qualifiedName: string, value: string): void;
|
|
303
309
|
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
@@ -334,24 +340,24 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
334
340
|
normalize(): void;
|
|
335
341
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
336
342
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
337
|
-
readonly
|
|
338
|
-
readonly
|
|
339
|
-
readonly
|
|
340
|
-
readonly
|
|
341
|
-
readonly
|
|
342
|
-
readonly
|
|
343
|
-
readonly
|
|
344
|
-
readonly
|
|
345
|
-
readonly
|
|
346
|
-
readonly
|
|
347
|
-
readonly
|
|
348
|
-
readonly
|
|
349
|
-
readonly
|
|
350
|
-
readonly
|
|
351
|
-
readonly
|
|
352
|
-
readonly
|
|
353
|
-
readonly
|
|
354
|
-
readonly
|
|
343
|
+
readonly ATTRIBUTE_NODE: number;
|
|
344
|
+
readonly CDATA_SECTION_NODE: number;
|
|
345
|
+
readonly COMMENT_NODE: number;
|
|
346
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
347
|
+
readonly DOCUMENT_NODE: number;
|
|
348
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
349
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
350
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
351
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
352
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
353
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
354
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
355
|
+
readonly ELEMENT_NODE: number;
|
|
356
|
+
readonly ENTITY_NODE: number;
|
|
357
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
358
|
+
readonly NOTATION_NODE: number;
|
|
359
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
360
|
+
readonly TEXT_NODE: number;
|
|
355
361
|
dispatchEvent(event: Event): boolean;
|
|
356
362
|
ariaAtomic: string;
|
|
357
363
|
ariaAutoComplete: string;
|
|
@@ -359,6 +365,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
359
365
|
ariaChecked: string;
|
|
360
366
|
ariaColCount: string;
|
|
361
367
|
ariaColIndex: string;
|
|
368
|
+
ariaColIndexText: string;
|
|
362
369
|
ariaColSpan: string;
|
|
363
370
|
ariaCurrent: string;
|
|
364
371
|
ariaDisabled: string;
|
|
@@ -382,6 +389,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
382
389
|
ariaRoleDescription: string;
|
|
383
390
|
ariaRowCount: string;
|
|
384
391
|
ariaRowIndex: string;
|
|
392
|
+
ariaRowIndexText: string;
|
|
385
393
|
ariaRowSpan: string;
|
|
386
394
|
ariaSelected: string;
|
|
387
395
|
ariaSetSize: string;
|
|
@@ -406,18 +414,17 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
406
414
|
readonly lastElementChild: Element;
|
|
407
415
|
append(...nodes: (string | Node)[]): void;
|
|
408
416
|
prepend(...nodes: (string | Node)[]): void;
|
|
409
|
-
querySelector<
|
|
410
|
-
querySelector<
|
|
411
|
-
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
|
412
|
-
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
|
417
|
+
querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
|
|
418
|
+
querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
|
|
413
419
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
414
|
-
querySelectorAll<
|
|
415
|
-
querySelectorAll<
|
|
416
|
-
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
|
417
|
-
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
|
420
|
+
querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
|
|
421
|
+
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
|
418
422
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
419
423
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
420
424
|
readonly assignedSlot: HTMLSlotElement;
|
|
425
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
426
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
427
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
421
428
|
readonly style: CSSStyleDeclaration;
|
|
422
429
|
contentEditable: string;
|
|
423
430
|
enterKeyHint: string;
|
|
@@ -438,9 +445,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
438
445
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
439
446
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
440
447
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
441
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
442
448
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
443
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
444
449
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
445
450
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
446
451
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -473,7 +478,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
473
478
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
474
479
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
475
480
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
476
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
477
481
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
478
482
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
479
483
|
onplaying: (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.107.1
|
|
4
|
+
"version": "14.107.1",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-header.d.ts",
|
|
@@ -60,20 +60,20 @@
|
|
|
60
60
|
"test:debug": "genx test --debug"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@genesislcap/foundation-testing": "14.107.1
|
|
64
|
-
"@genesislcap/genx": "14.107.1
|
|
63
|
+
"@genesislcap/foundation-testing": "14.107.1",
|
|
64
|
+
"@genesislcap/genx": "14.107.1",
|
|
65
65
|
"rimraf": "^3.0.2"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@genesislcap/foundation-comms": "14.107.1
|
|
69
|
-
"@genesislcap/foundation-events": "14.107.1
|
|
70
|
-
"@genesislcap/foundation-logger": "14.107.1
|
|
71
|
-
"@genesislcap/foundation-zero": "14.107.1
|
|
68
|
+
"@genesislcap/foundation-comms": "14.107.1",
|
|
69
|
+
"@genesislcap/foundation-events": "14.107.1",
|
|
70
|
+
"@genesislcap/foundation-logger": "14.107.1",
|
|
71
|
+
"@genesislcap/foundation-zero": "14.107.1",
|
|
72
72
|
"@microsoft/fast-colors": "^5.1.4",
|
|
73
73
|
"@microsoft/fast-components": "^2.21.3",
|
|
74
74
|
"@microsoft/fast-element": "^1.7.0",
|
|
75
75
|
"@microsoft/fast-router": "^0.4.2",
|
|
76
|
-
"tslib": "^2.
|
|
76
|
+
"tslib": "^2.3.1"
|
|
77
77
|
},
|
|
78
78
|
"repository": {
|
|
79
79
|
"type": "git",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"access": "public"
|
|
85
85
|
},
|
|
86
86
|
"customElements": "dist/custom-elements.json",
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "afc294d9a52a1eac3286416444bfd29c18910490"
|
|
88
88
|
}
|