@genesislcap/foundation-header 14.302.1-alpha-945e484.0 → 14.302.1-alpha-ecc0cfb.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.
@@ -34,7 +34,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
34
34
  accessKey: string;
35
35
  readonly accessKeyLabel: string;
36
36
  autocapitalize: string;
37
- autocorrect: boolean;
38
37
  dir: string;
39
38
  draggable: boolean;
40
39
  hidden: boolean;
@@ -43,90 +42,83 @@ declare const Navigation_base: abstract new (...args: any[]) => {
43
42
  lang: string;
44
43
  readonly offsetHeight: number;
45
44
  readonly offsetLeft: number;
46
- readonly offsetParent: Element | null;
45
+ readonly offsetParent: Element;
47
46
  readonly offsetTop: number;
48
47
  readonly offsetWidth: number;
49
48
  outerText: string;
50
- popover: string | null;
51
49
  spellcheck: boolean;
52
50
  title: string;
53
51
  translate: boolean;
54
- writingSuggestions: string;
55
52
  attachInternals(): ElementInternals;
56
53
  click(): void;
57
- hidePopover(): void;
58
- showPopover(): void;
59
- togglePopover(options?: boolean): boolean;
60
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
54
+ addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
61
55
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
62
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
56
+ removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
63
57
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
64
58
  readonly attributes: NamedNodeMap;
65
- get classList(): DOMTokenList;
66
- set classList(value: string);
59
+ readonly classList: DOMTokenList;
67
60
  className: string;
68
61
  readonly clientHeight: number;
69
62
  readonly clientLeft: number;
70
63
  readonly clientTop: number;
71
64
  readonly clientWidth: number;
72
- readonly currentCSSZoom: number;
73
65
  id: string;
74
- innerHTML: string;
75
66
  readonly localName: string;
76
- readonly namespaceURI: string | null;
67
+ readonly namespaceURI: string;
77
68
  onfullscreenchange: (this: Element, ev: Event) => any;
78
69
  onfullscreenerror: (this: Element, ev: Event) => any;
79
70
  outerHTML: string;
80
71
  readonly ownerDocument: Document;
81
- get part(): DOMTokenList;
82
- set part(value: string);
83
- readonly prefix: string | null;
72
+ readonly part: DOMTokenList;
73
+ readonly prefix: string;
84
74
  readonly scrollHeight: number;
85
75
  scrollLeft: number;
86
76
  scrollTop: number;
87
77
  readonly scrollWidth: number;
88
- readonly shadowRoot: ShadowRoot | null;
78
+ readonly shadowRoot: ShadowRoot;
89
79
  slot: string;
90
80
  readonly tagName: string;
91
81
  attachShadow(init: ShadowRootInit): ShadowRoot;
92
- checkVisibility(options?: CheckVisibilityOptions): boolean;
93
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
94
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
95
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
82
+ closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
83
+ closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
96
84
  closest<E extends Element = Element>(selectors: string): E;
97
- computedStyleMap(): StylePropertyMapReadOnly;
98
- getAttribute(qualifiedName: string): string | null;
99
- getAttributeNS(namespace: string | null, localName: string): string | null;
85
+ getAttribute(qualifiedName: string): string;
86
+ getAttributeNS(namespace: string, localName: string): string;
100
87
  getAttributeNames(): string[];
101
- getAttributeNode(qualifiedName: string): Attr | null;
102
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
88
+ getAttributeNode(qualifiedName: string): Attr;
89
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
103
90
  getBoundingClientRect(): DOMRect;
104
- getClientRects(): DOMRectList;
91
+ getClientRects(): DOMRectList; /**
92
+ * Username of the logged in user
93
+ */
105
94
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
106
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
107
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
108
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
109
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
95
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
96
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
110
97
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
111
98
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
112
99
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
113
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
114
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
115
- getHTML(options?: GetHTMLOptions): string;
100
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
116
101
  hasAttribute(qualifiedName: string): boolean;
117
- hasAttributeNS(namespace: string | null, localName: string): boolean;
102
+ hasAttributeNS(namespace: string, localName: string): boolean;
118
103
  hasAttributes(): boolean;
119
104
  hasPointerCapture(pointerId: number): boolean;
120
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
121
- insertAdjacentHTML(position: InsertPosition, string: string): void;
105
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
106
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
122
107
  insertAdjacentText(where: InsertPosition, data: string): void;
123
- matches(selectors: string): boolean;
108
+ matches(selectors: string): boolean; /**
109
+ * Boolean attribute which controls whether to show the luminance (moon) icon on the navigation bar
110
+ * Control via`show-luminance-toggle-button`
111
+ *
112
+ * @remarks
113
+ *
114
+ * If the user clicks the icon when shown then this class will emit the 'luminance-icon-clicked' event
115
+ */
124
116
  releasePointerCapture(pointerId: number): void;
125
117
  removeAttribute(qualifiedName: string): void;
126
- removeAttributeNS(namespace: string | null, localName: string): void;
118
+ removeAttributeNS(namespace: string, localName: string): void;
127
119
  removeAttributeNode(attr: Attr): Attr;
128
120
  requestFullscreen(options?: FullscreenOptions): Promise<void>;
129
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
121
+ requestPointerLock(): void;
130
122
  scroll(options?: ScrollToOptions): void;
131
123
  scroll(x: number, y: number): void;
132
124
  scrollBy(options?: ScrollToOptions): void;
@@ -135,245 +127,233 @@ declare const Navigation_base: abstract new (...args: any[]) => {
135
127
  scrollTo(options?: ScrollToOptions): void;
136
128
  scrollTo(x: number, y: number): void;
137
129
  setAttribute(qualifiedName: string, value: string): void;
138
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
139
- setAttributeNode(attr: Attr): Attr | null;
140
- setAttributeNodeNS(attr: Attr): Attr | null;
141
- setHTMLUnsafe(html: string): void;
130
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
131
+ setAttributeNode(attr: Attr): Attr;
132
+ setAttributeNodeNS(attr: Attr): Attr;
142
133
  setPointerCapture(pointerId: number): void;
143
134
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
144
135
  webkitMatchesSelector(selectors: string): boolean;
145
- textContent: string;
146
136
  readonly baseURI: string;
147
137
  readonly childNodes: NodeListOf<ChildNode>;
148
- readonly firstChild: ChildNode | null;
138
+ readonly firstChild: ChildNode;
149
139
  readonly isConnected: boolean;
150
- readonly lastChild: ChildNode | null;
151
- readonly nextSibling: ChildNode | null;
140
+ readonly lastChild: ChildNode;
141
+ readonly nextSibling: ChildNode;
152
142
  readonly nodeName: string;
153
143
  readonly nodeType: number;
154
- nodeValue: string | null;
155
- readonly parentElement: HTMLElement | null;
156
- readonly parentNode: ParentNode | null;
157
- readonly previousSibling: ChildNode | null;
144
+ nodeValue: string;
145
+ readonly parentElement: HTMLElement;
146
+ readonly parentNode: ParentNode;
147
+ readonly previousSibling: ChildNode;
148
+ textContent: string;
158
149
  appendChild<T extends Node>(node: T): T;
159
- cloneNode(subtree?: boolean): Node;
150
+ cloneNode(deep?: boolean): Node;
160
151
  compareDocumentPosition(other: Node): number;
161
- contains(other: Node | null): boolean;
152
+ contains(other: Node): boolean;
162
153
  getRootNode(options?: GetRootNodeOptions): Node;
163
154
  hasChildNodes(): boolean;
164
- insertBefore<T extends Node>(node: T, child: Node | null): T;
165
- isDefaultNamespace(namespace: string | null): boolean;
166
- isEqualNode(otherNode: Node | null): boolean;
167
- isSameNode(otherNode: Node | null): boolean;
168
- lookupNamespaceURI(prefix: string | null): string | null;
169
- lookupPrefix(namespace: string | null): string | null;
155
+ insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
156
+ isDefaultNamespace(namespace: string): boolean;
157
+ isEqualNode(otherNode: Node): boolean;
158
+ isSameNode(otherNode: Node): boolean;
159
+ lookupNamespaceURI(prefix: string): string;
160
+ lookupPrefix(namespace: string): string;
170
161
  normalize(): void;
171
- removeChild<T extends Node>(child: T): T;
172
- replaceChild<T extends Node>(node: Node, child: T): T;
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;
162
+ removeChild<T_2 extends Node>(child: T_2): T_2;
163
+ replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
164
+ readonly ATTRIBUTE_NODE: number;
165
+ readonly CDATA_SECTION_NODE: number;
166
+ readonly COMMENT_NODE: number;
167
+ readonly DOCUMENT_FRAGMENT_NODE: number;
168
+ readonly DOCUMENT_NODE: number;
169
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
170
+ readonly DOCUMENT_POSITION_CONTAINS: number;
171
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
172
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
173
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
174
+ readonly DOCUMENT_POSITION_PRECEDING: number;
175
+ readonly DOCUMENT_TYPE_NODE: number;
176
+ readonly ELEMENT_NODE: number;
177
+ readonly ENTITY_NODE: number;
178
+ readonly ENTITY_REFERENCE_NODE: number;
179
+ readonly NOTATION_NODE: number;
180
+ readonly PROCESSING_INSTRUCTION_NODE: number;
181
+ readonly TEXT_NODE: number;
191
182
  dispatchEvent(event: Event): boolean;
192
- ariaActiveDescendantElement: Element | null;
193
- ariaAtomic: string | null;
194
- ariaAutoComplete: string | null;
195
- ariaBrailleLabel: string | null;
196
- ariaBrailleRoleDescription: string | null;
197
- ariaBusy: string | null;
198
- ariaChecked: string | null;
199
- ariaColCount: string | null;
200
- ariaColIndex: string | null;
201
- ariaColIndexText: string | null;
202
- ariaColSpan: string | null;
203
- ariaControlsElements: ReadonlyArray<Element> | null;
204
- ariaCurrent: string | null;
205
- ariaDescribedByElements: ReadonlyArray<Element> | null;
206
- ariaDescription: string | null;
207
- ariaDetailsElements: ReadonlyArray<Element> | null;
208
- ariaDisabled: string | null;
209
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
210
- ariaExpanded: string | null;
211
- ariaFlowToElements: ReadonlyArray<Element> | null;
212
- ariaHasPopup: string | null;
213
- ariaHidden: string | null;
214
- ariaInvalid: string | null;
215
- ariaKeyShortcuts: string | null;
216
- ariaLabel: string | null;
217
- ariaLabelledByElements: ReadonlyArray<Element> | null;
218
- ariaLevel: string | null;
219
- ariaLive: string | null;
220
- ariaModal: string | null;
221
- ariaMultiLine: string | null;
222
- ariaMultiSelectable: string | null;
223
- ariaOrientation: string | null;
224
- ariaOwnsElements: ReadonlyArray<Element> | null;
225
- ariaPlaceholder: string | null;
226
- ariaPosInSet: string | null;
227
- ariaPressed: string | null;
228
- ariaReadOnly: string | null;
229
- ariaRelevant: string | null;
230
- ariaRequired: string | null;
231
- ariaRoleDescription: string | null;
232
- ariaRowCount: string | null;
233
- ariaRowIndex: string | null;
234
- ariaRowIndexText: string | null;
235
- ariaRowSpan: string | null;
236
- ariaSelected: string | null;
237
- ariaSetSize: string | null;
238
- ariaSort: string | null;
239
- ariaValueMax: string | null;
240
- ariaValueMin: string | null;
241
- ariaValueNow: string | null;
242
- ariaValueText: string | null;
243
- role: string | null;
244
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
183
+ ariaAtomic: string;
184
+ ariaAutoComplete: string;
185
+ ariaBusy: string;
186
+ ariaChecked: string;
187
+ ariaColCount: string;
188
+ ariaColIndex: string;
189
+ ariaColIndexText: string; /**
190
+ * If present the defined route buttons will be rendered in the header 'routes' slot
191
+ *
192
+ * @deprecated - Use `routeNavItems` instead.
193
+ */
194
+ ariaColSpan: string;
195
+ ariaCurrent: string;
196
+ ariaDisabled: string;
197
+ ariaExpanded: string;
198
+ ariaHasPopup: string;
199
+ ariaHidden: string;
200
+ ariaInvalid: string;
201
+ ariaKeyShortcuts: string;
202
+ ariaLabel: string;
203
+ ariaLevel: string;
204
+ ariaLive: string;
205
+ ariaModal: string;
206
+ ariaMultiLine: string;
207
+ ariaMultiSelectable: string;
208
+ ariaOrientation: string;
209
+ ariaPlaceholder: string;
210
+ ariaPosInSet: string;
211
+ ariaPressed: string;
212
+ ariaReadOnly: string;
213
+ ariaRequired: string;
214
+ ariaRoleDescription: string;
215
+ ariaRowCount: string;
216
+ ariaRowIndex: string;
217
+ ariaRowIndexText: string;
218
+ ariaRowSpan: string;
219
+ ariaSelected: string;
220
+ ariaSetSize: string;
221
+ ariaSort: string;
222
+ ariaValueMax: string;
223
+ ariaValueMin: string;
224
+ ariaValueNow: string;
225
+ ariaValueText: string;
226
+ role: string;
227
+ animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
245
228
  getAnimations(options?: GetAnimationsOptions): Animation[];
246
- after(...nodes: (Node | string)[]): void;
247
- before(...nodes: (Node | string)[]): void;
229
+ after(...nodes: (string | Node)[]): void;
230
+ before(...nodes: (string | Node)[]): void;
248
231
  remove(): void;
249
- replaceWith(...nodes: (Node | string)[]): void;
250
- readonly nextElementSibling: Element | null;
251
- readonly previousElementSibling: Element | null;
232
+ replaceWith(...nodes: (string | Node)[]): void;
233
+ innerHTML: string;
234
+ readonly nextElementSibling: Element;
235
+ readonly previousElementSibling: Element;
252
236
  readonly childElementCount: number;
253
237
  readonly children: HTMLCollection;
254
- readonly firstElementChild: Element | null;
255
- readonly lastElementChild: Element | null;
256
- append(...nodes: (Node | string)[]): void;
257
- prepend(...nodes: (Node | string)[]): void;
258
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
259
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
260
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
261
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
262
- querySelector<E extends Element = Element>(selectors: string): E | null;
263
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
264
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
265
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
266
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
267
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
268
- replaceChildren(...nodes: (Node | string)[]): void;
269
- readonly assignedSlot: HTMLSlotElement | null;
270
- readonly attributeStyleMap: StylePropertyMap;
271
- get style(): CSSStyleDeclaration;
272
- set style(cssText: string);
238
+ readonly firstElementChild: Element;
239
+ readonly lastElementChild: Element;
240
+ append(...nodes: (string | Node)[]): void;
241
+ prepend(...nodes: (string | Node)[]): void;
242
+ querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
243
+ querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
244
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
245
+ querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
246
+ querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
247
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
248
+ replaceChildren(...nodes: (string | Node)[]): void;
249
+ readonly assignedSlot: HTMLSlotElement;
250
+ oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
251
+ oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
252
+ onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
253
+ readonly style: CSSStyleDeclaration;
273
254
  contentEditable: string;
274
255
  enterKeyHint: string;
275
256
  inputMode: string;
276
257
  readonly isContentEditable: boolean;
277
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
278
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
279
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
280
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
281
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
282
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
283
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
284
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
285
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
286
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
287
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
288
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
289
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
290
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
291
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
292
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
293
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
294
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
295
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
297
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
298
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
299
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
300
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
301
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
302
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
303
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
304
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
305
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
306
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
307
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
308
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
309
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
310
- onerror: OnErrorEventHandler;
311
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
312
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
313
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
314
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
315
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
316
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
317
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
318
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
319
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
320
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
322
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
323
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
324
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
325
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
326
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
327
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
328
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
329
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
330
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
331
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
332
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
334
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
336
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
337
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
338
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
339
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
340
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
341
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
342
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
343
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
344
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
345
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
348
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
349
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
350
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
351
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
352
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
353
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
354
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
355
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
356
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
357
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
358
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
359
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
361
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
362
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
363
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
364
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
365
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
366
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
367
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
368
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
369
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
370
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
371
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
372
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
373
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
374
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
375
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
376
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
258
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
259
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
260
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
261
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
262
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
263
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
264
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
265
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
266
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
267
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
268
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
269
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
270
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
271
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
272
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
273
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
274
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
275
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
276
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
277
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
278
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
279
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
280
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
281
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
282
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
283
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
284
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
285
+ onerror: OnErrorEventHandlerNonNull;
286
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
287
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
288
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
289
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
290
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
291
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any; /**
292
+ * Changes the language of the application
293
+ *
294
+ * @remarks
295
+ *
296
+ * Activated when the user selects a language from the language selector that uses the I18next service.
297
+ *
298
+ * @experimental
299
+ */
300
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
301
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
302
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
303
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
304
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
305
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
306
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
307
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
308
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
309
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
310
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
311
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
312
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
313
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
314
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
315
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
316
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
317
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
318
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
319
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
320
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
321
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
322
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
323
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
324
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
325
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
326
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
327
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
328
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
329
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
330
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
331
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
332
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
333
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
334
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
335
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
336
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
337
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
338
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
339
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
340
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
341
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
342
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
343
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
344
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
345
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
346
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
347
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
348
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
349
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
350
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
351
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
352
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
353
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
354
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
355
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
356
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
377
357
  autofocus: boolean;
378
358
  readonly dataset: DOMStringMap;
379
359
  nonce?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"main.template.d.ts","sourceRoot":"","sources":["../../../src/main/main.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAc1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AAIzC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,eAAe,EAAE,YAAY,CAAC,UAAU,CAIpD,CAAC;AA8KF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,WAAW,+BAoHvB,CAAC;AAiDF;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,mBAAmB,GAAI,WAAM,2BAIzC,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,eAAe,EAAE,YAAY,CAAC,UAAU,CAEpD,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,YAAY,+BAAc,CAAC"}
1
+ {"version":3,"file":"main.template.d.ts","sourceRoot":"","sources":["../../../src/main/main.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAc1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AAIzC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,eAAe,EAAE,YAAY,CAAC,UAAU,CAIpD,CAAC;AA8KF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,WAAW,+BAoHvB,CAAC;AAiDF;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,mBAAmB,yCAI/B,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,eAAe,EAAE,YAAY,CAAC,UAAU,CAEpD,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,YAAY,+BAAc,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../src/styles/colors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAoB,MAAM,uBAAuB,CAAC;AAEtE,eAAO,MAAM,UAAU,GAAI,KAAK,WAAW,EAAE,QAAO,MAAY,WAG/D,CAAC;AAEF,oBAAY,oBAAoB;IAC9B,IAAI,YAAY;IAChB,MAAM,YAAY;CACnB;AAED,oBAAY,QAAQ;IAClB,KAAK,YAAY;IACjB,KAAK,YAAY;IACjB,WAAW,YAAY;IAEvB,SAAS,YAAY;IAErB,UAAU,YAAY;IAEtB,QAAQ,YAAY;IACpB,UAAU,YAAY;CACvB;AAMD,eAAO,MAAM,sBAAsB,QAA+D,CAAC;AACnG,eAAO,MAAM,qBAAqB,QAA8D,CAAC;AACjG,eAAO,MAAM,mBAAmB,QAG/B,CAAC"}
1
+ {"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../src/styles/colors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAoB,MAAM,uBAAuB,CAAC;AAEtE,eAAO,MAAM,UAAU,QAAS,WAAW,UAAS,MAAM,WAGzD,CAAC;AAEF,oBAAY,oBAAoB;IAC9B,IAAI,YAAY;IAChB,MAAM,YAAY;CACnB;AAED,oBAAY,QAAQ;IAClB,KAAK,YAAY;IACjB,KAAK,YAAY;IACjB,WAAW,YAAY;IAEvB,SAAS,YAAY;IAErB,UAAU,YAAY;IAEtB,QAAQ,YAAY;IACpB,UAAU,YAAY;CACvB;AAMD,eAAO,MAAM,sBAAsB,QAA+D,CAAC;AACnG,eAAO,MAAM,qBAAqB,QAA8D,CAAC;AACjG,eAAO,MAAM,mBAAmB,QAG/B,CAAC"}