@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.
- package/dist/dts/main/main.d.ts +238 -258
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/dts/main/main.template.d.ts.map +1 -1
- package/dist/dts/styles/colors.d.ts.map +1 -1
- package/dist/dts/styles/styles.d.ts.map +1 -1
- package/dist/dts/tags/tags.d.ts.map +1 -1
- package/dist/esm/main/main.js +1 -1
- package/dist/foundation-header.api.json +1 -1
- package/dist/foundation-header.d.ts +238 -258
- package/dist/tsdoc-metadata.json +1 -1
- package/docs/api/foundation-header.configure.md +3 -33
- package/docs/api/foundation-header.foundationheader.md +3 -29
- package/docs/api/foundation-header.headerconfig.md +3 -41
- package/docs/api/foundation-header.md +25 -225
- package/docs/api/foundation-header.navigation.changelanguage.md +3 -31
- package/docs/api/foundation-header.navigation.handlenavbuttonclick.md +3 -33
- package/docs/api/foundation-header.navigation.md +35 -574
- package/docs/api/foundation-header.navigation.navigateto.md +3 -33
- package/docs/api/foundation-header.navigation.tolocalisedtext.md +3 -31
- package/docs/api/foundation-header.rapidheader.md +3 -29
- package/docs/api/index.md +3 -21
- package/package.json +23 -23
- package/docs/api-report.md.api.md +0 -197
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -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
|
|
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
|
-
|
|
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<
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
82
|
-
|
|
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
|
|
78
|
+
readonly shadowRoot: ShadowRoot;
|
|
89
79
|
slot: string;
|
|
90
80
|
readonly tagName: string;
|
|
91
81
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
92
|
-
|
|
93
|
-
closest<
|
|
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
|
-
|
|
98
|
-
|
|
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
|
|
102
|
-
getAttributeNodeNS(namespace: string
|
|
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<
|
|
107
|
-
getElementsByTagName<
|
|
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(
|
|
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
|
|
102
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
118
103
|
hasAttributes(): boolean;
|
|
119
104
|
hasPointerCapture(pointerId: number): boolean;
|
|
120
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element
|
|
121
|
-
insertAdjacentHTML(position: InsertPosition,
|
|
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
|
|
118
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
|
127
119
|
removeAttributeNode(attr: Attr): Attr;
|
|
128
120
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
129
|
-
requestPointerLock(
|
|
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
|
|
139
|
-
setAttributeNode(attr: Attr): Attr
|
|
140
|
-
setAttributeNodeNS(attr: Attr): Attr
|
|
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
|
|
138
|
+
readonly firstChild: ChildNode;
|
|
149
139
|
readonly isConnected: boolean;
|
|
150
|
-
readonly lastChild: ChildNode
|
|
151
|
-
readonly nextSibling: ChildNode
|
|
140
|
+
readonly lastChild: ChildNode;
|
|
141
|
+
readonly nextSibling: ChildNode;
|
|
152
142
|
readonly nodeName: string;
|
|
153
143
|
readonly nodeType: number;
|
|
154
|
-
nodeValue: string
|
|
155
|
-
readonly parentElement: HTMLElement
|
|
156
|
-
readonly parentNode: ParentNode
|
|
157
|
-
readonly previousSibling: ChildNode
|
|
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(
|
|
150
|
+
cloneNode(deep?: boolean): Node;
|
|
160
151
|
compareDocumentPosition(other: Node): number;
|
|
161
|
-
contains(other: Node
|
|
152
|
+
contains(other: Node): boolean;
|
|
162
153
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
163
154
|
hasChildNodes(): boolean;
|
|
164
|
-
insertBefore<
|
|
165
|
-
isDefaultNamespace(namespace: string
|
|
166
|
-
isEqualNode(otherNode: Node
|
|
167
|
-
isSameNode(otherNode: Node
|
|
168
|
-
lookupNamespaceURI(prefix: string
|
|
169
|
-
lookupPrefix(namespace: string
|
|
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<
|
|
172
|
-
replaceChild<
|
|
173
|
-
readonly
|
|
174
|
-
readonly
|
|
175
|
-
readonly
|
|
176
|
-
readonly
|
|
177
|
-
readonly
|
|
178
|
-
readonly
|
|
179
|
-
readonly
|
|
180
|
-
readonly
|
|
181
|
-
readonly
|
|
182
|
-
readonly
|
|
183
|
-
readonly
|
|
184
|
-
readonly
|
|
185
|
-
readonly
|
|
186
|
-
readonly
|
|
187
|
-
readonly
|
|
188
|
-
readonly
|
|
189
|
-
readonly
|
|
190
|
-
readonly
|
|
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
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
ariaCurrent: string
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
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: (
|
|
247
|
-
before(...nodes: (
|
|
229
|
+
after(...nodes: (string | Node)[]): void;
|
|
230
|
+
before(...nodes: (string | Node)[]): void;
|
|
248
231
|
remove(): void;
|
|
249
|
-
replaceWith(...nodes: (
|
|
250
|
-
|
|
251
|
-
readonly
|
|
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
|
|
255
|
-
readonly lastElementChild: Element
|
|
256
|
-
append(...nodes: (
|
|
257
|
-
prepend(...nodes: (
|
|
258
|
-
querySelector<
|
|
259
|
-
querySelector<
|
|
260
|
-
querySelector<
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
querySelectorAll<
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
readonly
|
|
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: (
|
|
278
|
-
onanimationcancel: (
|
|
279
|
-
onanimationend: (
|
|
280
|
-
onanimationiteration: (
|
|
281
|
-
onanimationstart: (
|
|
282
|
-
onauxclick: (
|
|
283
|
-
onbeforeinput: (
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
onpointerup: (
|
|
344
|
-
onprogress: (
|
|
345
|
-
onratechange: (
|
|
346
|
-
onreset: (
|
|
347
|
-
onresize: (
|
|
348
|
-
onscroll: (
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
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":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AAEnE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,EAAe,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAE1E,OAAO,EAAsB,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACxF,OAAO,EAAE,IAAI,EAAE,MAAM,8BAA8B,CAAC;AACpD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAQ,SAAS,EAA6C,MAAM,uBAAuB,CAAC;AAEnG,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAMhD;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,wBAAwB,EAAE,IAAI,CAAC;IAC/B,gBAAgB,EAAE,IAAI,CAAC;IACvB,mBAAmB,EAAE,IAAI,CAAC;IAC1B,2BAA2B,EAAE,IAAI,CAAC;IAClC,kBAAkB,EAAE,IAAI,CAAC;IACzB,oBAAoB,EAAE;QAAE,IAAI,EAAE,sBAAsB,CAAC;QAAC,OAAO,EAAE,GAAG,CAAA;KAAE,CAAC;CACtE,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"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"}
|
|
@@ -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,
|
|
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,
|
|
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"}
|