@genesislcap/foundation-progress-overlay 14.302.0 → 14.302.1-alpha-945e484.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 +258 -217
- package/dist/dts/main/main.d.ts.map +1 -1
- package/package.json +12 -12
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -3,16 +3,17 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
3
3
|
pendingCount: number;
|
|
4
4
|
resolvedCount: number;
|
|
5
5
|
hasPendingChildren: boolean;
|
|
6
|
-
|
|
6
|
+
get progress(): number;
|
|
7
7
|
connectedCallback(): void;
|
|
8
8
|
disconnectedCallback(): void;
|
|
9
9
|
onPendingState({ detail }: import("@genesislcap/foundation-utils").PendingStateEvent): Promise<void>;
|
|
10
10
|
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
11
|
-
$emit(type: string, detail?: any, options?: Omit<CustomEventInit
|
|
11
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
|
|
12
12
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
13
13
|
accessKey: string;
|
|
14
14
|
readonly accessKeyLabel: string;
|
|
15
15
|
autocapitalize: string;
|
|
16
|
+
autocorrect: boolean;
|
|
16
17
|
dir: string;
|
|
17
18
|
draggable: boolean;
|
|
18
19
|
hidden: boolean;
|
|
@@ -21,74 +22,90 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
21
22
|
lang: string;
|
|
22
23
|
readonly offsetHeight: number;
|
|
23
24
|
readonly offsetLeft: number;
|
|
24
|
-
readonly offsetParent: Element;
|
|
25
|
+
readonly offsetParent: Element | null;
|
|
25
26
|
readonly offsetTop: number;
|
|
26
27
|
readonly offsetWidth: number;
|
|
27
28
|
outerText: string;
|
|
29
|
+
popover: string | null;
|
|
28
30
|
spellcheck: boolean;
|
|
29
31
|
title: string;
|
|
30
32
|
translate: boolean;
|
|
33
|
+
writingSuggestions: string;
|
|
31
34
|
attachInternals(): ElementInternals;
|
|
32
35
|
click(): void;
|
|
36
|
+
hidePopover(): void;
|
|
37
|
+
showPopover(): void;
|
|
38
|
+
togglePopover(options?: boolean): boolean;
|
|
33
39
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
34
40
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
35
|
-
removeEventListener<
|
|
41
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
36
42
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
37
43
|
readonly attributes: NamedNodeMap;
|
|
38
|
-
|
|
44
|
+
get classList(): DOMTokenList;
|
|
45
|
+
set classList(value: string): any;
|
|
39
46
|
className: string;
|
|
40
47
|
readonly clientHeight: number;
|
|
41
48
|
readonly clientLeft: number;
|
|
42
49
|
readonly clientTop: number;
|
|
43
50
|
readonly clientWidth: number;
|
|
51
|
+
readonly currentCSSZoom: number;
|
|
44
52
|
id: string;
|
|
53
|
+
innerHTML: string;
|
|
45
54
|
readonly localName: string;
|
|
46
|
-
readonly namespaceURI: string;
|
|
55
|
+
readonly namespaceURI: string | null;
|
|
47
56
|
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
48
57
|
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
49
58
|
outerHTML: string;
|
|
50
59
|
readonly ownerDocument: Document;
|
|
51
|
-
|
|
52
|
-
|
|
60
|
+
get part(): DOMTokenList;
|
|
61
|
+
set part(value: string): any;
|
|
62
|
+
readonly prefix: string | null;
|
|
53
63
|
readonly scrollHeight: number;
|
|
54
64
|
scrollLeft: number;
|
|
55
65
|
scrollTop: number;
|
|
56
66
|
readonly scrollWidth: number;
|
|
57
|
-
readonly shadowRoot: ShadowRoot;
|
|
67
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
58
68
|
slot: string;
|
|
59
69
|
readonly tagName: string;
|
|
60
70
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
61
|
-
|
|
62
|
-
closest<
|
|
71
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
72
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
|
|
73
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
|
74
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
|
63
75
|
closest<E extends Element = Element>(selectors: string): E;
|
|
64
|
-
|
|
65
|
-
|
|
76
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
77
|
+
getAttribute(qualifiedName: string): string | null;
|
|
78
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
66
79
|
getAttributeNames(): string[];
|
|
67
|
-
getAttributeNode(qualifiedName: string): Attr;
|
|
68
|
-
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
80
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
81
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
69
82
|
getBoundingClientRect(): DOMRect;
|
|
70
83
|
getClientRects(): DOMRectList;
|
|
71
84
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
72
|
-
getElementsByTagName<
|
|
73
|
-
getElementsByTagName<
|
|
85
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
86
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
87
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
88
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
74
89
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
75
90
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
76
91
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
77
|
-
getElementsByTagNameNS(
|
|
92
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
93
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
94
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
78
95
|
hasAttribute(qualifiedName: string): boolean;
|
|
79
|
-
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
96
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
80
97
|
hasAttributes(): boolean;
|
|
81
98
|
hasPointerCapture(pointerId: number): boolean;
|
|
82
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
83
|
-
insertAdjacentHTML(position: InsertPosition,
|
|
99
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
100
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
84
101
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
85
102
|
matches(selectors: string): boolean;
|
|
86
103
|
releasePointerCapture(pointerId: number): void;
|
|
87
104
|
removeAttribute(qualifiedName: string): void;
|
|
88
|
-
removeAttributeNS(namespace: string, localName: string): void;
|
|
105
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
89
106
|
removeAttributeNode(attr: Attr): Attr;
|
|
90
107
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
91
|
-
requestPointerLock(): void
|
|
108
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
92
109
|
scroll(options?: ScrollToOptions): void;
|
|
93
110
|
scroll(x: number, y: number): void;
|
|
94
111
|
scrollBy(options?: ScrollToOptions): void;
|
|
@@ -97,221 +114,245 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
97
114
|
scrollTo(options?: ScrollToOptions): void;
|
|
98
115
|
scrollTo(x: number, y: number): void;
|
|
99
116
|
setAttribute(qualifiedName: string, value: string): void;
|
|
100
|
-
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
101
|
-
setAttributeNode(attr: Attr): Attr;
|
|
102
|
-
setAttributeNodeNS(attr: Attr): Attr;
|
|
117
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
118
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
119
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
120
|
+
setHTMLUnsafe(html: string): void;
|
|
103
121
|
setPointerCapture(pointerId: number): void;
|
|
104
122
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
105
123
|
webkitMatchesSelector(selectors: string): boolean;
|
|
124
|
+
textContent: string;
|
|
106
125
|
readonly baseURI: string;
|
|
107
126
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
108
|
-
readonly firstChild: ChildNode;
|
|
127
|
+
readonly firstChild: ChildNode | null;
|
|
109
128
|
readonly isConnected: boolean;
|
|
110
|
-
readonly lastChild: ChildNode;
|
|
111
|
-
readonly nextSibling: ChildNode;
|
|
129
|
+
readonly lastChild: ChildNode | null;
|
|
130
|
+
readonly nextSibling: ChildNode | null;
|
|
112
131
|
readonly nodeName: string;
|
|
113
132
|
readonly nodeType: number;
|
|
114
|
-
nodeValue: string;
|
|
115
|
-
readonly parentElement: HTMLElement;
|
|
116
|
-
readonly parentNode: ParentNode;
|
|
117
|
-
readonly previousSibling: ChildNode;
|
|
118
|
-
textContent: string;
|
|
133
|
+
nodeValue: string | null;
|
|
134
|
+
readonly parentElement: HTMLElement | null;
|
|
135
|
+
readonly parentNode: ParentNode | null;
|
|
136
|
+
readonly previousSibling: ChildNode | null;
|
|
119
137
|
appendChild<T extends Node>(node: T): T;
|
|
120
|
-
cloneNode(
|
|
138
|
+
cloneNode(subtree?: boolean): Node;
|
|
121
139
|
compareDocumentPosition(other: Node): number;
|
|
122
|
-
contains(other: Node): boolean;
|
|
140
|
+
contains(other: Node | null): boolean;
|
|
123
141
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
124
142
|
hasChildNodes(): boolean;
|
|
125
|
-
insertBefore<
|
|
126
|
-
isDefaultNamespace(namespace: string): boolean;
|
|
127
|
-
isEqualNode(otherNode: Node): boolean;
|
|
128
|
-
isSameNode(otherNode: Node): boolean;
|
|
129
|
-
lookupNamespaceURI(prefix: string): string;
|
|
130
|
-
lookupPrefix(namespace: string): string;
|
|
143
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
144
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
145
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
146
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
147
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
148
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
131
149
|
normalize(): void;
|
|
132
|
-
removeChild<
|
|
133
|
-
replaceChild<
|
|
134
|
-
readonly
|
|
135
|
-
readonly
|
|
136
|
-
readonly
|
|
137
|
-
readonly
|
|
138
|
-
readonly
|
|
139
|
-
readonly
|
|
140
|
-
readonly
|
|
141
|
-
readonly
|
|
142
|
-
readonly
|
|
143
|
-
readonly
|
|
144
|
-
readonly
|
|
145
|
-
readonly
|
|
146
|
-
readonly
|
|
147
|
-
readonly
|
|
148
|
-
readonly
|
|
149
|
-
readonly
|
|
150
|
-
readonly
|
|
151
|
-
readonly
|
|
150
|
+
removeChild<T extends Node>(child: T): T;
|
|
151
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
152
|
+
readonly ELEMENT_NODE: 1;
|
|
153
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
154
|
+
readonly TEXT_NODE: 3;
|
|
155
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
156
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
157
|
+
readonly ENTITY_NODE: 6;
|
|
158
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
159
|
+
readonly COMMENT_NODE: 8;
|
|
160
|
+
readonly DOCUMENT_NODE: 9;
|
|
161
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
162
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
163
|
+
readonly NOTATION_NODE: 12;
|
|
164
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
165
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
166
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
167
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
168
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
169
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
152
170
|
dispatchEvent(event: Event): boolean;
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
171
|
+
ariaActiveDescendantElement: Element | null;
|
|
172
|
+
ariaAtomic: string | null;
|
|
173
|
+
ariaAutoComplete: string | null;
|
|
174
|
+
ariaBrailleLabel: string | null;
|
|
175
|
+
ariaBrailleRoleDescription: string | null;
|
|
176
|
+
ariaBusy: string | null;
|
|
177
|
+
ariaChecked: string | null;
|
|
178
|
+
ariaColCount: string | null;
|
|
179
|
+
ariaColIndex: string | null;
|
|
180
|
+
ariaColIndexText: string | null;
|
|
181
|
+
ariaColSpan: string | null;
|
|
182
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
183
|
+
ariaCurrent: string | null;
|
|
184
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
185
|
+
ariaDescription: string | null;
|
|
186
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
187
|
+
ariaDisabled: string | null;
|
|
188
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
189
|
+
ariaExpanded: string | null;
|
|
190
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
191
|
+
ariaHasPopup: string | null;
|
|
192
|
+
ariaHidden: string | null;
|
|
193
|
+
ariaInvalid: string | null;
|
|
194
|
+
ariaKeyShortcuts: string | null;
|
|
195
|
+
ariaLabel: string | null;
|
|
196
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
197
|
+
ariaLevel: string | null;
|
|
198
|
+
ariaLive: string | null;
|
|
199
|
+
ariaModal: string | null;
|
|
200
|
+
ariaMultiLine: string | null;
|
|
201
|
+
ariaMultiSelectable: string | null;
|
|
202
|
+
ariaOrientation: string | null;
|
|
203
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
204
|
+
ariaPlaceholder: string | null;
|
|
205
|
+
ariaPosInSet: string | null;
|
|
206
|
+
ariaPressed: string | null;
|
|
207
|
+
ariaReadOnly: string | null;
|
|
208
|
+
ariaRelevant: string | null;
|
|
209
|
+
ariaRequired: string | null;
|
|
210
|
+
ariaRoleDescription: string | null;
|
|
211
|
+
ariaRowCount: string | null;
|
|
212
|
+
ariaRowIndex: string | null;
|
|
213
|
+
ariaRowIndexText: string | null;
|
|
214
|
+
ariaRowSpan: string | null;
|
|
215
|
+
ariaSelected: string | null;
|
|
216
|
+
ariaSetSize: string | null;
|
|
217
|
+
ariaSort: string | null;
|
|
218
|
+
ariaValueMax: string | null;
|
|
219
|
+
ariaValueMin: string | null;
|
|
220
|
+
ariaValueNow: string | null;
|
|
221
|
+
ariaValueText: string | null;
|
|
222
|
+
role: string | null;
|
|
223
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
194
224
|
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
195
|
-
after(...nodes: (
|
|
196
|
-
before(...nodes: (
|
|
225
|
+
after(...nodes: (Node | string)[]): void;
|
|
226
|
+
before(...nodes: (Node | string)[]): void;
|
|
197
227
|
remove(): void;
|
|
198
|
-
replaceWith(...nodes: (
|
|
199
|
-
|
|
200
|
-
readonly
|
|
201
|
-
readonly previousElementSibling: Element;
|
|
228
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
229
|
+
readonly nextElementSibling: Element | null;
|
|
230
|
+
readonly previousElementSibling: Element | null;
|
|
202
231
|
readonly childElementCount: number;
|
|
203
232
|
readonly children: HTMLCollection;
|
|
204
|
-
readonly firstElementChild: Element;
|
|
205
|
-
readonly lastElementChild: Element;
|
|
206
|
-
append(...nodes: (
|
|
207
|
-
prepend(...nodes: (
|
|
208
|
-
querySelector<
|
|
209
|
-
querySelector<
|
|
210
|
-
querySelector<
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
querySelectorAll<
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
readonly
|
|
233
|
+
readonly firstElementChild: Element | null;
|
|
234
|
+
readonly lastElementChild: Element | null;
|
|
235
|
+
append(...nodes: (Node | string)[]): void;
|
|
236
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
237
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
238
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
239
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
240
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
241
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
242
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
243
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
244
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
245
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
246
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
247
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
248
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
249
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
250
|
+
get style(): CSSStyleDeclaration;
|
|
251
|
+
set style(cssText: string): any;
|
|
220
252
|
contentEditable: string;
|
|
221
253
|
enterKeyHint: string;
|
|
222
254
|
inputMode: string;
|
|
223
255
|
readonly isContentEditable: boolean;
|
|
224
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
225
|
-
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
226
|
-
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
227
|
-
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
228
|
-
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
229
|
-
onauxclick: (this: GlobalEventHandlers, ev:
|
|
230
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
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
|
-
|
|
256
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
257
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
258
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
259
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
260
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
261
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
262
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
263
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
264
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
265
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
266
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
267
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
268
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
269
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
270
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
271
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
272
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
273
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
274
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
275
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
276
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
277
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
278
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
279
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
280
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
281
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
282
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
283
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
284
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
285
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
286
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
287
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
288
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
289
|
+
onerror: OnErrorEventHandler;
|
|
290
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
291
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
292
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
293
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
294
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
295
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
296
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
297
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
298
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
299
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
300
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
301
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
302
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
303
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
304
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
305
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
306
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
307
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
308
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
309
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
310
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
311
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
312
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
313
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
314
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
315
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
316
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
317
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
318
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
319
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
320
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
321
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
322
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
323
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
324
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
325
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
326
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
327
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
328
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
329
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
330
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
331
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
332
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
333
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
334
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
335
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
336
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
337
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
338
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
339
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
340
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
341
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
342
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
343
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
344
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
345
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
346
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
347
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
348
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
349
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
350
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
351
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
352
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
353
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
354
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
355
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
315
356
|
autofocus: boolean;
|
|
316
357
|
readonly dataset: DOMStringMap;
|
|
317
358
|
nonce?: string;
|
|
@@ -323,7 +364,7 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
323
364
|
new (): HTMLElement;
|
|
324
365
|
prototype: HTMLElement;
|
|
325
366
|
}>(BaseType: TBase): new () => InstanceType<TBase> & FASTElement;
|
|
326
|
-
define<TType extends Function>(type: TType, nameOrDef?: string | import("@microsoft/fast-element").PartialFASTElementDefinition): TType;
|
|
367
|
+
define<TType extends Function>(type: TType, nameOrDef?: string | import("@microsoft/fast-element").PartialFASTElementDefinition | undefined): TType;
|
|
327
368
|
};
|
|
328
369
|
export declare class MainApplication extends MainApplication_base {
|
|
329
370
|
provider: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAA6B,MAAM,yBAAyB,CAAC
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAA6B,MAAM,yBAAyB,CAAC;;;;;;;;;;8BAgC07C,CAAC,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAAk7B,CAAC;4IAAqK,CAAC;wFAAwI,CAAC;+IAA+L,CAAC;2FAAwI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAA4mC,CAAC;;;;;;;;;;;;;;;;;;;;;;;mBAA8hE,CAAC;;;;;;;;;;;;;6BAA4xB,CAAC;8BAAuE,CAAC;kBAA4D,CAAC;;oBAA8F,CAAC;;sBAAkG,CAAC;oBAAkE,CAAC;;;;;;;;gDAAme,CAAC;;;;;;;;;;;;;;;;qBAAisB,CAAC;;;uBAAkJ,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAA+gH,CAAC;yBAA8E,CAAC;UAAoD,GAAG;WAAgD,GAAG;;gBAA6E,GAAG;;;;;;;WAA4V,GAAG;YAAiD,GAAG;;;;;;;;;;;oBAAupC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAiiO,CAAC;cAA6F,CAAC;eAA8F,CAAC;gBAA+F,CAAC;;;;;;;;;;;;;;SAAulC,CAAC;;;iBAA+E,CAAC;;;;;;;;AAxB/9sB,qBAKa,eAAgB,SAAQ,oBAAyB;IAChD,QAAQ,EAAG,GAAG,CAAC;IAEpB,iBAAiB,IAAI,IAAI;YAMlB,WAAW;IAIzB,eAAe;CAKhB"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-progress-overlay",
|
|
3
3
|
"description": "Genesis Foundation Progress Overlay",
|
|
4
|
-
"version": "14.302.0",
|
|
4
|
+
"version": "14.302.1-alpha-945e484.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/tbd.js",
|
|
7
7
|
"engines": {
|
|
@@ -41,21 +41,21 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@genesislcap/genx": "14.302.0",
|
|
45
|
-
"@genesislcap/rollup-builder": "14.302.0",
|
|
46
|
-
"@genesislcap/ts-builder": "14.302.0",
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "14.302.0",
|
|
48
|
-
"@genesislcap/vite-builder": "14.302.0",
|
|
49
|
-
"@genesislcap/webpack-builder": "14.302.0",
|
|
44
|
+
"@genesislcap/genx": "14.302.1-alpha-945e484.0",
|
|
45
|
+
"@genesislcap/rollup-builder": "14.302.1-alpha-945e484.0",
|
|
46
|
+
"@genesislcap/ts-builder": "14.302.1-alpha-945e484.0",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "14.302.1-alpha-945e484.0",
|
|
48
|
+
"@genesislcap/vite-builder": "14.302.1-alpha-945e484.0",
|
|
49
|
+
"@genesislcap/webpack-builder": "14.302.1-alpha-945e484.0",
|
|
50
50
|
"rimraf": "^5.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@genesislcap/foundation-logger": "14.302.0",
|
|
54
|
-
"@genesislcap/foundation-utils": "14.302.0",
|
|
55
|
-
"@genesislcap/foundation-zero": "14.302.0",
|
|
53
|
+
"@genesislcap/foundation-logger": "14.302.1-alpha-945e484.0",
|
|
54
|
+
"@genesislcap/foundation-utils": "14.302.1-alpha-945e484.0",
|
|
55
|
+
"@genesislcap/foundation-zero": "14.302.1-alpha-945e484.0",
|
|
56
56
|
"@microsoft/fast-components": "2.30.6",
|
|
57
57
|
"@microsoft/fast-element": "1.14.0",
|
|
58
|
-
"tslib": "^2.
|
|
58
|
+
"tslib": "^2.8.1"
|
|
59
59
|
},
|
|
60
60
|
"repository": {
|
|
61
61
|
"type": "git",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "5ef35131a2b18fc635a5dca47647fa0438d21798"
|
|
69
69
|
}
|