@genesislcap/foundation-progress-overlay 14.225.3 → 14.225.4-alpha-5f6eefd.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 +45 -29
- package/dist/dts/main/main.d.ts.map +1 -1
- package/package.json +12 -12
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -25,11 +25,15 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
25
25
|
readonly offsetTop: number;
|
|
26
26
|
readonly offsetWidth: number;
|
|
27
27
|
outerText: string;
|
|
28
|
+
popover: string;
|
|
28
29
|
spellcheck: boolean;
|
|
29
30
|
title: string;
|
|
30
31
|
translate: boolean;
|
|
31
32
|
attachInternals(): ElementInternals;
|
|
32
33
|
click(): void;
|
|
34
|
+
hidePopover(): void;
|
|
35
|
+
showPopover(): void;
|
|
36
|
+
togglePopover(force?: boolean): boolean;
|
|
33
37
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
34
38
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
35
39
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -58,9 +62,12 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
58
62
|
slot: string;
|
|
59
63
|
readonly tagName: string;
|
|
60
64
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
65
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
61
66
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
62
67
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
68
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
63
69
|
closest<E extends Element = Element>(selectors: string): E;
|
|
70
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
64
71
|
getAttribute(qualifiedName: string): string;
|
|
65
72
|
getAttributeNS(namespace: string, localName: string): string;
|
|
66
73
|
getAttributeNames(): string[];
|
|
@@ -69,11 +76,14 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
69
76
|
getBoundingClientRect(): DOMRect;
|
|
70
77
|
getClientRects(): DOMRectList;
|
|
71
78
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
72
|
-
getElementsByTagName<
|
|
73
|
-
getElementsByTagName<
|
|
79
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
80
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
81
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
82
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
74
83
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
75
84
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
76
85
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
86
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
77
87
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
78
88
|
hasAttribute(qualifiedName: string): boolean;
|
|
79
89
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -131,24 +141,24 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
131
141
|
normalize(): void;
|
|
132
142
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
133
143
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
|
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
|
|
144
|
+
readonly ELEMENT_NODE: 1;
|
|
145
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
146
|
+
readonly TEXT_NODE: 3;
|
|
147
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
148
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
149
|
+
readonly ENTITY_NODE: 6;
|
|
150
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
151
|
+
readonly COMMENT_NODE: 8;
|
|
152
|
+
readonly DOCUMENT_NODE: 9;
|
|
153
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
154
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
155
|
+
readonly NOTATION_NODE: 12;
|
|
156
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
157
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
158
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
159
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
160
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
161
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
152
162
|
dispatchEvent(event: Event): boolean;
|
|
153
163
|
ariaAtomic: string;
|
|
154
164
|
ariaAutoComplete: string;
|
|
@@ -156,9 +166,9 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
156
166
|
ariaChecked: string;
|
|
157
167
|
ariaColCount: string;
|
|
158
168
|
ariaColIndex: string;
|
|
159
|
-
ariaColIndexText: string;
|
|
160
169
|
ariaColSpan: string;
|
|
161
170
|
ariaCurrent: string;
|
|
171
|
+
ariaDescription: string;
|
|
162
172
|
ariaDisabled: string;
|
|
163
173
|
ariaExpanded: string;
|
|
164
174
|
ariaHasPopup: string;
|
|
@@ -180,7 +190,6 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
180
190
|
ariaRoleDescription: string;
|
|
181
191
|
ariaRowCount: string;
|
|
182
192
|
ariaRowIndex: string;
|
|
183
|
-
ariaRowIndexText: string;
|
|
184
193
|
ariaRowSpan: string;
|
|
185
194
|
ariaSelected: string;
|
|
186
195
|
ariaSetSize: string;
|
|
@@ -205,17 +214,19 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
205
214
|
readonly lastElementChild: Element;
|
|
206
215
|
append(...nodes: (string | Node)[]): void;
|
|
207
216
|
prepend(...nodes: (string | Node)[]): void;
|
|
208
|
-
querySelector<
|
|
209
|
-
querySelector<
|
|
217
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
218
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
219
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
220
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
210
221
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
211
|
-
querySelectorAll<
|
|
212
|
-
querySelectorAll<
|
|
222
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
223
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
224
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
225
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
213
226
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
214
227
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
215
228
|
readonly assignedSlot: HTMLSlotElement;
|
|
216
|
-
|
|
217
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
218
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
229
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
219
230
|
readonly style: CSSStyleDeclaration;
|
|
220
231
|
contentEditable: string;
|
|
221
232
|
enterKeyHint: string;
|
|
@@ -228,6 +239,7 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
228
239
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
229
240
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
230
241
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
242
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
231
243
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
232
244
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
233
245
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -236,7 +248,9 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
236
248
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
237
249
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
238
250
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
251
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
239
252
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
253
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
240
254
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
241
255
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
242
256
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -269,6 +283,7 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
269
283
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
270
284
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
271
285
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
286
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
272
287
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
273
288
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
274
289
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -285,6 +300,7 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
285
300
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
286
301
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
287
302
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
303
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
288
304
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
289
305
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
290
306
|
onseeking: (this: GlobalEventHandlers, ev: Event) => 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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQjF,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.225.
|
|
4
|
+
"version": "14.225.4-alpha-5f6eefd.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.225.
|
|
45
|
-
"@genesislcap/rollup-builder": "14.225.
|
|
46
|
-
"@genesislcap/ts-builder": "14.225.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "14.225.
|
|
48
|
-
"@genesislcap/vite-builder": "14.225.
|
|
49
|
-
"@genesislcap/webpack-builder": "14.225.
|
|
44
|
+
"@genesislcap/genx": "14.225.4-alpha-5f6eefd.0",
|
|
45
|
+
"@genesislcap/rollup-builder": "14.225.4-alpha-5f6eefd.0",
|
|
46
|
+
"@genesislcap/ts-builder": "14.225.4-alpha-5f6eefd.0",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "14.225.4-alpha-5f6eefd.0",
|
|
48
|
+
"@genesislcap/vite-builder": "14.225.4-alpha-5f6eefd.0",
|
|
49
|
+
"@genesislcap/webpack-builder": "14.225.4-alpha-5f6eefd.0",
|
|
50
50
|
"rimraf": "^5.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@genesislcap/foundation-logger": "14.225.
|
|
54
|
-
"@genesislcap/foundation-utils": "14.225.
|
|
55
|
-
"@genesislcap/foundation-zero": "14.225.
|
|
53
|
+
"@genesislcap/foundation-logger": "14.225.4-alpha-5f6eefd.0",
|
|
54
|
+
"@genesislcap/foundation-utils": "14.225.4-alpha-5f6eefd.0",
|
|
55
|
+
"@genesislcap/foundation-zero": "14.225.4-alpha-5f6eefd.0",
|
|
56
56
|
"@microsoft/fast-components": "2.30.6",
|
|
57
57
|
"@microsoft/fast-element": "1.14.0",
|
|
58
|
-
"tslib": "
|
|
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": "232162ffe08f1239c9af3c85819c422c4a68db00"
|
|
69
69
|
}
|