@genesislcap/foundation-header 14.71.0 → 14.71.1-auth-mf.2
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 +328 -0
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/foundation-header.d.ts +328 -0
- package/package.json +8 -8
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -10,6 +10,334 @@ export type NavEventDetailMap = {
|
|
|
10
10
|
};
|
|
11
11
|
declare const Navigation_base: abstract new (...args: any[]) => {
|
|
12
12
|
$emit<K extends "luminance-icon-clicked" | "misc-icon-clicked" | "notification-icon-clicked">(...args: NavEventDetailMap[K] extends void ? [type: K, options?: import("@genesislcap/foundation-events").EmitOptions] : [type: K, detail: NavEventDetailMap[K], options?: import("@genesislcap/foundation-events").EmitOptions]): import("@genesislcap/foundation-events").EmitReturn;
|
|
13
|
+
accessKey: string;
|
|
14
|
+
readonly accessKeyLabel: string;
|
|
15
|
+
autocapitalize: string;
|
|
16
|
+
dir: string;
|
|
17
|
+
draggable: boolean;
|
|
18
|
+
hidden: boolean;
|
|
19
|
+
inert: boolean;
|
|
20
|
+
innerText: string;
|
|
21
|
+
lang: string;
|
|
22
|
+
readonly offsetHeight: number;
|
|
23
|
+
readonly offsetLeft: number;
|
|
24
|
+
readonly offsetParent: Element;
|
|
25
|
+
readonly offsetTop: number;
|
|
26
|
+
readonly offsetWidth: number;
|
|
27
|
+
outerText: string;
|
|
28
|
+
spellcheck: boolean;
|
|
29
|
+
title: string;
|
|
30
|
+
translate: boolean;
|
|
31
|
+
attachInternals(): ElementInternals;
|
|
32
|
+
click(): void;
|
|
33
|
+
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
34
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
35
|
+
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
36
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
37
|
+
readonly attributes: NamedNodeMap;
|
|
38
|
+
readonly classList: DOMTokenList;
|
|
39
|
+
className: string;
|
|
40
|
+
readonly clientHeight: number;
|
|
41
|
+
readonly clientLeft: number;
|
|
42
|
+
readonly clientTop: number;
|
|
43
|
+
readonly clientWidth: number;
|
|
44
|
+
id: string;
|
|
45
|
+
readonly localName: string;
|
|
46
|
+
readonly namespaceURI: string;
|
|
47
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
48
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
49
|
+
outerHTML: string;
|
|
50
|
+
readonly ownerDocument: Document;
|
|
51
|
+
readonly part: DOMTokenList;
|
|
52
|
+
readonly prefix: string;
|
|
53
|
+
readonly scrollHeight: number;
|
|
54
|
+
scrollLeft: number;
|
|
55
|
+
scrollTop: number;
|
|
56
|
+
readonly scrollWidth: number;
|
|
57
|
+
readonly shadowRoot: ShadowRoot;
|
|
58
|
+
slot: string;
|
|
59
|
+
readonly tagName: string;
|
|
60
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
61
|
+
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
62
|
+
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
63
|
+
closest<E extends Element = Element>(selectors: string): E;
|
|
64
|
+
getAttribute(qualifiedName: string): string;
|
|
65
|
+
getAttributeNS(namespace: string, localName: string): string;
|
|
66
|
+
getAttributeNames(): string[];
|
|
67
|
+
getAttributeNode(qualifiedName: string): Attr;
|
|
68
|
+
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
69
|
+
getBoundingClientRect(): DOMRect;
|
|
70
|
+
getClientRects(): DOMRectList;
|
|
71
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
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]>;
|
|
74
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
75
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
76
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
77
|
+
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
78
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
79
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
80
|
+
hasAttributes(): boolean;
|
|
81
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
82
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
83
|
+
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
84
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
85
|
+
matches(selectors: string): boolean;
|
|
86
|
+
releasePointerCapture(pointerId: number): void;
|
|
87
|
+
removeAttribute(qualifiedName: string): void;
|
|
88
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
|
89
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
90
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
91
|
+
requestPointerLock(): void;
|
|
92
|
+
scroll(options?: ScrollToOptions): void;
|
|
93
|
+
scroll(x: number, y: number): void;
|
|
94
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
95
|
+
scrollBy(x: number, y: number): void;
|
|
96
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
97
|
+
/**
|
|
98
|
+
* Emits the event corresponding to the luminance icon being clicked
|
|
99
|
+
*
|
|
100
|
+
* @remarks
|
|
101
|
+
*
|
|
102
|
+
* Activated when the user clicks on the moon icon on the navigation
|
|
103
|
+
* bar right hand side
|
|
104
|
+
*
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
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
|
+
*/
|
|
118
|
+
scrollTo(x: number, y: number): void;
|
|
119
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
120
|
+
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
121
|
+
setAttributeNode(attr: Attr): Attr;
|
|
122
|
+
setAttributeNodeNS(attr: Attr): Attr;
|
|
123
|
+
setPointerCapture(pointerId: number): void;
|
|
124
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
125
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
126
|
+
readonly baseURI: string;
|
|
127
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
128
|
+
readonly firstChild: ChildNode;
|
|
129
|
+
readonly isConnected: boolean;
|
|
130
|
+
readonly lastChild: ChildNode;
|
|
131
|
+
readonly nextSibling: ChildNode;
|
|
132
|
+
readonly nodeName: string;
|
|
133
|
+
readonly nodeType: number;
|
|
134
|
+
nodeValue: string;
|
|
135
|
+
readonly parentElement: HTMLElement;
|
|
136
|
+
readonly parentNode: ParentNode;
|
|
137
|
+
readonly previousSibling: ChildNode;
|
|
138
|
+
textContent: string;
|
|
139
|
+
appendChild<T extends Node>(node: T): T;
|
|
140
|
+
cloneNode(deep?: boolean): Node;
|
|
141
|
+
compareDocumentPosition(other: Node): number;
|
|
142
|
+
contains(other: Node): boolean;
|
|
143
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
144
|
+
hasChildNodes(): boolean;
|
|
145
|
+
insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
|
|
146
|
+
isDefaultNamespace(namespace: string): boolean;
|
|
147
|
+
isEqualNode(otherNode: Node): boolean;
|
|
148
|
+
isSameNode(otherNode: Node): boolean;
|
|
149
|
+
lookupNamespaceURI(prefix: string): string;
|
|
150
|
+
lookupPrefix(namespace: string): string;
|
|
151
|
+
normalize(): void;
|
|
152
|
+
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
153
|
+
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
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;
|
|
172
|
+
dispatchEvent(event: Event): boolean;
|
|
173
|
+
ariaAtomic: string;
|
|
174
|
+
ariaAutoComplete: string;
|
|
175
|
+
ariaBusy: string;
|
|
176
|
+
ariaChecked: string;
|
|
177
|
+
ariaColCount: string;
|
|
178
|
+
ariaColIndex: string;
|
|
179
|
+
ariaColIndexText: string;
|
|
180
|
+
ariaColSpan: string;
|
|
181
|
+
ariaCurrent: string;
|
|
182
|
+
ariaDisabled: string;
|
|
183
|
+
ariaExpanded: string;
|
|
184
|
+
ariaHasPopup: string;
|
|
185
|
+
ariaHidden: string;
|
|
186
|
+
ariaInvalid: string;
|
|
187
|
+
ariaKeyShortcuts: string;
|
|
188
|
+
ariaLabel: string;
|
|
189
|
+
ariaLevel: string;
|
|
190
|
+
ariaLive: string;
|
|
191
|
+
ariaModal: string;
|
|
192
|
+
ariaMultiLine: string;
|
|
193
|
+
ariaMultiSelectable: string;
|
|
194
|
+
ariaOrientation: string;
|
|
195
|
+
ariaPlaceholder: string;
|
|
196
|
+
ariaPosInSet: string;
|
|
197
|
+
ariaPressed: string;
|
|
198
|
+
ariaReadOnly: string;
|
|
199
|
+
ariaRequired: string;
|
|
200
|
+
ariaRoleDescription: string;
|
|
201
|
+
ariaRowCount: string;
|
|
202
|
+
ariaRowIndex: string;
|
|
203
|
+
ariaRowIndexText: string;
|
|
204
|
+
ariaRowSpan: string;
|
|
205
|
+
ariaSelected: string;
|
|
206
|
+
ariaSetSize: string;
|
|
207
|
+
ariaSort: string;
|
|
208
|
+
ariaValueMax: string;
|
|
209
|
+
ariaValueMin: string;
|
|
210
|
+
ariaValueNow: string;
|
|
211
|
+
ariaValueText: string;
|
|
212
|
+
role: string;
|
|
213
|
+
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
|
214
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
215
|
+
after(...nodes: (string | Node)[]): void;
|
|
216
|
+
before(...nodes: (string | Node)[]): void;
|
|
217
|
+
remove(): void;
|
|
218
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
|
219
|
+
innerHTML: string;
|
|
220
|
+
readonly nextElementSibling: Element;
|
|
221
|
+
readonly previousElementSibling: Element;
|
|
222
|
+
readonly childElementCount: number;
|
|
223
|
+
readonly children: HTMLCollection;
|
|
224
|
+
readonly firstElementChild: Element;
|
|
225
|
+
readonly lastElementChild: Element;
|
|
226
|
+
append(...nodes: (string | Node)[]): void;
|
|
227
|
+
prepend(...nodes: (string | Node)[]): void;
|
|
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];
|
|
230
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
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]>;
|
|
233
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
234
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
|
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;
|
|
239
|
+
readonly style: CSSStyleDeclaration;
|
|
240
|
+
contentEditable: string;
|
|
241
|
+
enterKeyHint: string;
|
|
242
|
+
inputMode: string;
|
|
243
|
+
readonly isContentEditable: boolean;
|
|
244
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
245
|
+
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
246
|
+
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
247
|
+
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
248
|
+
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
249
|
+
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
250
|
+
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
251
|
+
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
252
|
+
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
253
|
+
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
254
|
+
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
|
255
|
+
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
256
|
+
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
257
|
+
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
258
|
+
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
259
|
+
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
260
|
+
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
261
|
+
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
262
|
+
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
263
|
+
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
264
|
+
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
265
|
+
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
266
|
+
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
267
|
+
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
268
|
+
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
269
|
+
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
|
270
|
+
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
|
271
|
+
onerror: OnErrorEventHandlerNonNull;
|
|
272
|
+
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
273
|
+
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
|
274
|
+
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
275
|
+
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
|
276
|
+
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
|
277
|
+
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
278
|
+
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
279
|
+
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
280
|
+
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
|
281
|
+
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
282
|
+
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
283
|
+
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
284
|
+
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
285
|
+
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
286
|
+
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
287
|
+
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
288
|
+
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
289
|
+
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
290
|
+
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
291
|
+
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
292
|
+
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
293
|
+
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
294
|
+
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
295
|
+
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
296
|
+
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
297
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
298
|
+
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
299
|
+
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
300
|
+
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
301
|
+
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
302
|
+
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
303
|
+
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
|
|
304
|
+
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
305
|
+
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
306
|
+
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
307
|
+
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
308
|
+
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
309
|
+
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
310
|
+
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
311
|
+
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
|
312
|
+
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
313
|
+
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
314
|
+
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
315
|
+
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
|
316
|
+
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
|
317
|
+
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
318
|
+
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
|
319
|
+
ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
320
|
+
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
321
|
+
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
322
|
+
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
323
|
+
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
324
|
+
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
325
|
+
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
326
|
+
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
327
|
+
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
328
|
+
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
329
|
+
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
|
330
|
+
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
331
|
+
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
|
332
|
+
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
333
|
+
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
334
|
+
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
|
335
|
+
autofocus: boolean;
|
|
336
|
+
readonly dataset: DOMStringMap;
|
|
337
|
+
nonce?: string;
|
|
338
|
+
tabIndex: number;
|
|
339
|
+
blur(): void;
|
|
340
|
+
focus(options?: FocusOptions): void;
|
|
13
341
|
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
14
342
|
connectedCallback(): void;
|
|
15
343
|
disconnectedCallback(): void;
|
|
@@ -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"}
|
|
@@ -199,6 +199,334 @@ export declare class Navigation extends Navigation_base {
|
|
|
199
199
|
|
|
200
200
|
declare const Navigation_base: abstract new (...args: any[]) => {
|
|
201
201
|
$emit<K extends "luminance-icon-clicked" | "misc-icon-clicked" | "notification-icon-clicked">(...args: NavEventDetailMap[K] extends void ? [type: K, options?: EmitOptions] : [type: K, detail: NavEventDetailMap[K], options?: EmitOptions]): EmitReturn;
|
|
202
|
+
accessKey: string;
|
|
203
|
+
readonly accessKeyLabel: string;
|
|
204
|
+
autocapitalize: string;
|
|
205
|
+
dir: string;
|
|
206
|
+
draggable: boolean;
|
|
207
|
+
hidden: boolean;
|
|
208
|
+
inert: boolean;
|
|
209
|
+
innerText: string;
|
|
210
|
+
lang: string;
|
|
211
|
+
readonly offsetHeight: number;
|
|
212
|
+
readonly offsetLeft: number;
|
|
213
|
+
readonly offsetParent: Element;
|
|
214
|
+
readonly offsetTop: number;
|
|
215
|
+
readonly offsetWidth: number;
|
|
216
|
+
outerText: string;
|
|
217
|
+
spellcheck: boolean;
|
|
218
|
+
title: string;
|
|
219
|
+
translate: boolean;
|
|
220
|
+
attachInternals(): ElementInternals;
|
|
221
|
+
click(): void;
|
|
222
|
+
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
223
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
224
|
+
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
225
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
226
|
+
readonly attributes: NamedNodeMap;
|
|
227
|
+
readonly classList: DOMTokenList;
|
|
228
|
+
className: string;
|
|
229
|
+
readonly clientHeight: number;
|
|
230
|
+
readonly clientLeft: number;
|
|
231
|
+
readonly clientTop: number;
|
|
232
|
+
readonly clientWidth: number;
|
|
233
|
+
id: string;
|
|
234
|
+
readonly localName: string;
|
|
235
|
+
readonly namespaceURI: string;
|
|
236
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
237
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
238
|
+
outerHTML: string;
|
|
239
|
+
readonly ownerDocument: Document;
|
|
240
|
+
readonly part: DOMTokenList;
|
|
241
|
+
readonly prefix: string;
|
|
242
|
+
readonly scrollHeight: number;
|
|
243
|
+
scrollLeft: number;
|
|
244
|
+
scrollTop: number;
|
|
245
|
+
readonly scrollWidth: number;
|
|
246
|
+
readonly shadowRoot: ShadowRoot;
|
|
247
|
+
slot: string;
|
|
248
|
+
readonly tagName: string;
|
|
249
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
250
|
+
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
|
251
|
+
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
252
|
+
closest<E extends Element = Element>(selectors: string): E;
|
|
253
|
+
getAttribute(qualifiedName: string): string;
|
|
254
|
+
getAttributeNS(namespace: string, localName: string): string;
|
|
255
|
+
getAttributeNames(): string[];
|
|
256
|
+
getAttributeNode(qualifiedName: string): Attr;
|
|
257
|
+
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
258
|
+
getBoundingClientRect(): DOMRect;
|
|
259
|
+
getClientRects(): DOMRectList;
|
|
260
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
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]>;
|
|
263
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
264
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
265
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
266
|
+
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
267
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
268
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
269
|
+
hasAttributes(): boolean;
|
|
270
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
271
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
272
|
+
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
273
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
274
|
+
matches(selectors: string): boolean;
|
|
275
|
+
releasePointerCapture(pointerId: number): void;
|
|
276
|
+
removeAttribute(qualifiedName: string): void;
|
|
277
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
|
278
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
279
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
280
|
+
requestPointerLock(): void;
|
|
281
|
+
scroll(options?: ScrollToOptions): void;
|
|
282
|
+
scroll(x: number, y: number): void;
|
|
283
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
284
|
+
scrollBy(x: number, y: number): void;
|
|
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
|
+
*/
|
|
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
|
+
*/
|
|
307
|
+
scrollTo(x: number, y: number): void;
|
|
308
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
309
|
+
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
310
|
+
setAttributeNode(attr: Attr): Attr;
|
|
311
|
+
setAttributeNodeNS(attr: Attr): Attr;
|
|
312
|
+
setPointerCapture(pointerId: number): void;
|
|
313
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
314
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
315
|
+
readonly baseURI: string;
|
|
316
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
317
|
+
readonly firstChild: ChildNode;
|
|
318
|
+
readonly isConnected: boolean;
|
|
319
|
+
readonly lastChild: ChildNode;
|
|
320
|
+
readonly nextSibling: ChildNode;
|
|
321
|
+
readonly nodeName: string;
|
|
322
|
+
readonly nodeType: number;
|
|
323
|
+
nodeValue: string;
|
|
324
|
+
readonly parentElement: HTMLElement;
|
|
325
|
+
readonly parentNode: ParentNode;
|
|
326
|
+
readonly previousSibling: ChildNode;
|
|
327
|
+
textContent: string;
|
|
328
|
+
appendChild<T extends Node>(node: T): T;
|
|
329
|
+
cloneNode(deep?: boolean): Node;
|
|
330
|
+
compareDocumentPosition(other: Node): number;
|
|
331
|
+
contains(other: Node): boolean;
|
|
332
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
333
|
+
hasChildNodes(): boolean;
|
|
334
|
+
insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
|
|
335
|
+
isDefaultNamespace(namespace: string): boolean;
|
|
336
|
+
isEqualNode(otherNode: Node): boolean;
|
|
337
|
+
isSameNode(otherNode: Node): boolean;
|
|
338
|
+
lookupNamespaceURI(prefix: string): string;
|
|
339
|
+
lookupPrefix(namespace: string): string;
|
|
340
|
+
normalize(): void;
|
|
341
|
+
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
342
|
+
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
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;
|
|
361
|
+
dispatchEvent(event: Event): boolean;
|
|
362
|
+
ariaAtomic: string;
|
|
363
|
+
ariaAutoComplete: string;
|
|
364
|
+
ariaBusy: string;
|
|
365
|
+
ariaChecked: string;
|
|
366
|
+
ariaColCount: string;
|
|
367
|
+
ariaColIndex: string;
|
|
368
|
+
ariaColIndexText: string;
|
|
369
|
+
ariaColSpan: string;
|
|
370
|
+
ariaCurrent: string;
|
|
371
|
+
ariaDisabled: string;
|
|
372
|
+
ariaExpanded: string;
|
|
373
|
+
ariaHasPopup: string;
|
|
374
|
+
ariaHidden: string;
|
|
375
|
+
ariaInvalid: string;
|
|
376
|
+
ariaKeyShortcuts: string;
|
|
377
|
+
ariaLabel: string;
|
|
378
|
+
ariaLevel: string;
|
|
379
|
+
ariaLive: string;
|
|
380
|
+
ariaModal: string;
|
|
381
|
+
ariaMultiLine: string;
|
|
382
|
+
ariaMultiSelectable: string;
|
|
383
|
+
ariaOrientation: string;
|
|
384
|
+
ariaPlaceholder: string;
|
|
385
|
+
ariaPosInSet: string;
|
|
386
|
+
ariaPressed: string;
|
|
387
|
+
ariaReadOnly: string;
|
|
388
|
+
ariaRequired: string;
|
|
389
|
+
ariaRoleDescription: string;
|
|
390
|
+
ariaRowCount: string;
|
|
391
|
+
ariaRowIndex: string;
|
|
392
|
+
ariaRowIndexText: string;
|
|
393
|
+
ariaRowSpan: string;
|
|
394
|
+
ariaSelected: string;
|
|
395
|
+
ariaSetSize: string;
|
|
396
|
+
ariaSort: string;
|
|
397
|
+
ariaValueMax: string;
|
|
398
|
+
ariaValueMin: string;
|
|
399
|
+
ariaValueNow: string;
|
|
400
|
+
ariaValueText: string;
|
|
401
|
+
role: string;
|
|
402
|
+
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
|
403
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
404
|
+
after(...nodes: (string | Node)[]): void;
|
|
405
|
+
before(...nodes: (string | Node)[]): void;
|
|
406
|
+
remove(): void;
|
|
407
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
|
408
|
+
innerHTML: string;
|
|
409
|
+
readonly nextElementSibling: Element;
|
|
410
|
+
readonly previousElementSibling: Element;
|
|
411
|
+
readonly childElementCount: number;
|
|
412
|
+
readonly children: HTMLCollection;
|
|
413
|
+
readonly firstElementChild: Element;
|
|
414
|
+
readonly lastElementChild: Element;
|
|
415
|
+
append(...nodes: (string | Node)[]): void;
|
|
416
|
+
prepend(...nodes: (string | Node)[]): void;
|
|
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];
|
|
419
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
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]>;
|
|
422
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
423
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
|
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;
|
|
428
|
+
readonly style: CSSStyleDeclaration;
|
|
429
|
+
contentEditable: string;
|
|
430
|
+
enterKeyHint: string;
|
|
431
|
+
inputMode: string;
|
|
432
|
+
readonly isContentEditable: boolean;
|
|
433
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
434
|
+
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
435
|
+
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
436
|
+
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
437
|
+
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
438
|
+
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
439
|
+
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
440
|
+
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
441
|
+
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
442
|
+
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
443
|
+
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
|
444
|
+
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
445
|
+
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
446
|
+
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
447
|
+
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
448
|
+
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
449
|
+
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
450
|
+
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
451
|
+
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
452
|
+
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
453
|
+
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
454
|
+
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
455
|
+
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
456
|
+
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
457
|
+
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
458
|
+
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
|
459
|
+
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
|
460
|
+
onerror: OnErrorEventHandlerNonNull;
|
|
461
|
+
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
462
|
+
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
|
463
|
+
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
464
|
+
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
|
465
|
+
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
|
466
|
+
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
467
|
+
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
468
|
+
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
469
|
+
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
|
470
|
+
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
471
|
+
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
472
|
+
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
473
|
+
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
474
|
+
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
475
|
+
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
476
|
+
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
477
|
+
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
478
|
+
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
479
|
+
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
480
|
+
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
481
|
+
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
482
|
+
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
483
|
+
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
484
|
+
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
485
|
+
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
486
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
487
|
+
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
488
|
+
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
489
|
+
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
490
|
+
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
491
|
+
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
492
|
+
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
|
|
493
|
+
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
494
|
+
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
495
|
+
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
496
|
+
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
497
|
+
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
498
|
+
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
499
|
+
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
500
|
+
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
|
501
|
+
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
502
|
+
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
503
|
+
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
504
|
+
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
|
505
|
+
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
|
506
|
+
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
507
|
+
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
|
508
|
+
ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
509
|
+
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
510
|
+
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
511
|
+
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
512
|
+
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
513
|
+
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
514
|
+
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
515
|
+
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
516
|
+
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
517
|
+
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
518
|
+
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
|
519
|
+
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
520
|
+
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
|
521
|
+
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
522
|
+
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
523
|
+
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
|
524
|
+
autofocus: boolean;
|
|
525
|
+
readonly dataset: DOMStringMap;
|
|
526
|
+
nonce?: string;
|
|
527
|
+
tabIndex: number;
|
|
528
|
+
blur(): void;
|
|
529
|
+
focus(options?: FocusOptions): void;
|
|
202
530
|
readonly $fastController: Controller;
|
|
203
531
|
connectedCallback(): void;
|
|
204
532
|
disconnectedCallback(): void;
|
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.71.
|
|
4
|
+
"version": "14.71.1-auth-mf.2",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-header.d.ts",
|
|
@@ -50,15 +50,15 @@
|
|
|
50
50
|
"test:debug": "genx test --debug"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@genesislcap/foundation-testing": "14.71.
|
|
54
|
-
"@genesislcap/genx": "14.71.
|
|
53
|
+
"@genesislcap/foundation-testing": "14.71.1-auth-mf.2",
|
|
54
|
+
"@genesislcap/genx": "14.71.1-auth-mf.2",
|
|
55
55
|
"rimraf": "^3.0.2"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@genesislcap/foundation-comms": "14.71.
|
|
59
|
-
"@genesislcap/foundation-events": "14.71.
|
|
60
|
-
"@genesislcap/foundation-utils": "14.71.
|
|
61
|
-
"@genesislcap/foundation-zero": "14.71.
|
|
58
|
+
"@genesislcap/foundation-comms": "14.71.1-auth-mf.2",
|
|
59
|
+
"@genesislcap/foundation-events": "14.71.1-auth-mf.2",
|
|
60
|
+
"@genesislcap/foundation-utils": "14.71.1-auth-mf.2",
|
|
61
|
+
"@genesislcap/foundation-zero": "14.71.1-auth-mf.2",
|
|
62
62
|
"@microsoft/fast-colors": "^5.1.4",
|
|
63
63
|
"@microsoft/fast-components": "^2.21.3",
|
|
64
64
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"access": "public"
|
|
75
75
|
},
|
|
76
76
|
"customElements": "dist/custom-elements.json",
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "4f9582f0af3144d3a7193d47617f9ff668e9c676"
|
|
78
78
|
}
|