@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.
@@ -3,16 +3,17 @@ declare const MainApplication_base: (new (...args: any[]) => {
3
3
  pendingCount: number;
4
4
  resolvedCount: number;
5
5
  hasPendingChildren: boolean;
6
- readonly progress: number;
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<any>, "detail">): boolean | void;
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<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
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
- readonly classList: DOMTokenList;
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
- readonly part: DOMTokenList;
52
- readonly prefix: string;
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
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
62
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
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
- getAttribute(qualifiedName: string): string;
65
- getAttributeNS(namespace: string, localName: string): string;
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<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
73
- getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
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(namespace: string, localName: string): HTMLCollectionOf<Element>;
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, text: string): void;
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(deep?: boolean): Node;
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<T_1 extends Node>(node: T_1, child: Node): T_1;
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<T_2 extends Node>(child: T_2): T_2;
133
- replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
134
- readonly ATTRIBUTE_NODE: number;
135
- readonly CDATA_SECTION_NODE: number;
136
- readonly COMMENT_NODE: number;
137
- readonly DOCUMENT_FRAGMENT_NODE: number;
138
- readonly DOCUMENT_NODE: number;
139
- readonly DOCUMENT_POSITION_CONTAINED_BY: number;
140
- readonly DOCUMENT_POSITION_CONTAINS: number;
141
- readonly DOCUMENT_POSITION_DISCONNECTED: number;
142
- readonly DOCUMENT_POSITION_FOLLOWING: number;
143
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
144
- readonly DOCUMENT_POSITION_PRECEDING: number;
145
- readonly DOCUMENT_TYPE_NODE: number;
146
- readonly ELEMENT_NODE: number;
147
- readonly ENTITY_NODE: number;
148
- readonly ENTITY_REFERENCE_NODE: number;
149
- readonly NOTATION_NODE: number;
150
- readonly PROCESSING_INSTRUCTION_NODE: number;
151
- readonly TEXT_NODE: number;
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
- ariaAtomic: string;
154
- ariaAutoComplete: string;
155
- ariaBusy: string;
156
- ariaChecked: string;
157
- ariaColCount: string;
158
- ariaColIndex: string;
159
- ariaColIndexText: string;
160
- ariaColSpan: string;
161
- ariaCurrent: string;
162
- ariaDisabled: string;
163
- ariaExpanded: string;
164
- ariaHasPopup: string;
165
- ariaHidden: string;
166
- ariaInvalid: string;
167
- ariaKeyShortcuts: string;
168
- ariaLabel: string;
169
- ariaLevel: string;
170
- ariaLive: string;
171
- ariaModal: string;
172
- ariaMultiLine: string;
173
- ariaMultiSelectable: string;
174
- ariaOrientation: string;
175
- ariaPlaceholder: string;
176
- ariaPosInSet: string;
177
- ariaPressed: string;
178
- ariaReadOnly: string;
179
- ariaRequired: string;
180
- ariaRoleDescription: string;
181
- ariaRowCount: string;
182
- ariaRowIndex: string;
183
- ariaRowIndexText: string;
184
- ariaRowSpan: string;
185
- ariaSelected: string;
186
- ariaSetSize: string;
187
- ariaSort: string;
188
- ariaValueMax: string;
189
- ariaValueMin: string;
190
- ariaValueNow: string;
191
- ariaValueText: string;
192
- role: string;
193
- animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
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: (string | Node)[]): void;
196
- before(...nodes: (string | Node)[]): void;
225
+ after(...nodes: (Node | string)[]): void;
226
+ before(...nodes: (Node | string)[]): void;
197
227
  remove(): void;
198
- replaceWith(...nodes: (string | Node)[]): void;
199
- innerHTML: string;
200
- readonly nextElementSibling: Element;
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: (string | Node)[]): void;
207
- prepend(...nodes: (string | Node)[]): void;
208
- querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
209
- querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
210
- querySelector<E_1 extends Element = Element>(selectors: string): E_1;
211
- querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
212
- querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
213
- querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
214
- replaceChildren(...nodes: (string | Node)[]): void;
215
- readonly assignedSlot: HTMLSlotElement;
216
- oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
217
- oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
218
- onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
219
- readonly style: CSSStyleDeclaration;
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: MouseEvent) => any;
230
- onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
231
- onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
232
- oncancel: (this: GlobalEventHandlers, ev: Event) => any;
233
- oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
234
- oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
235
- onchange: (this: GlobalEventHandlers, ev: Event) => any;
236
- onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
237
- onclose: (this: GlobalEventHandlers, ev: Event) => any;
238
- oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
239
- oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
240
- ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
241
- ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
242
- ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
243
- ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
244
- ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
245
- ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
246
- ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
247
- ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
248
- ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
249
- onemptied: (this: GlobalEventHandlers, ev: Event) => any;
250
- onended: (this: GlobalEventHandlers, ev: Event) => any;
251
- onerror: OnErrorEventHandlerNonNull;
252
- onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
253
- onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
254
- ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
255
- oninput: (this: GlobalEventHandlers, ev: Event) => any;
256
- oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
257
- onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
258
- onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
259
- onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
260
- onload: (this: GlobalEventHandlers, ev: Event) => any;
261
- onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
262
- onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
263
- onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
264
- onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
265
- onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
266
- onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
267
- onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
268
- onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
269
- onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
270
- onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
271
- onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
272
- onpause: (this: GlobalEventHandlers, ev: Event) => any;
273
- onplay: (this: GlobalEventHandlers, ev: Event) => any;
274
- onplaying: (this: GlobalEventHandlers, ev: Event) => any;
275
- onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
276
- onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
277
- onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
278
- onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
279
- onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
280
- onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
281
- onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
282
- onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
283
- onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
284
- onratechange: (this: GlobalEventHandlers, ev: Event) => any;
285
- onreset: (this: GlobalEventHandlers, ev: Event) => any;
286
- onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
287
- onscroll: (this: GlobalEventHandlers, ev: Event) => any;
288
- onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
289
- onseeked: (this: GlobalEventHandlers, ev: Event) => any;
290
- onseeking: (this: GlobalEventHandlers, ev: Event) => any;
291
- onselect: (this: GlobalEventHandlers, ev: Event) => any;
292
- onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
293
- onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
294
- onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
295
- onstalled: (this: GlobalEventHandlers, ev: Event) => any;
296
- onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
297
- onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
298
- ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
299
- ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
300
- ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
301
- ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
302
- ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
303
- ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
304
- ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
305
- ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
306
- ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
307
- ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
308
- onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
309
- onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
310
- onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
311
- onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
312
- onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
313
- onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
314
- onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQjF,qBAKa,eAAgB,SAAQ,oBAAyB;IAChD,QAAQ,EAAG,GAAG,CAAC;IAEpB,iBAAiB,IAAI,IAAI;YAMlB,WAAW;IAIzB,eAAe;CAKhB"}
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.3.1"
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": "f52f52aa356a14a591ce6a1551f0c0391781d3f9"
68
+ "gitHead": "5ef35131a2b18fc635a5dca47647fa0438d21798"
69
69
  }