@genesislcap/foundation-progress-overlay 14.107.0 → 14.107.1-alpha-afbc4d7.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 +36 -29
- package/dist/dts/main/main.d.ts.map +1 -1
- package/package.json +7 -7
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -58,8 +58,10 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
58
58
|
slot: string;
|
|
59
59
|
readonly tagName: string;
|
|
60
60
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
61
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
61
62
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
62
63
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
64
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
63
65
|
closest<E extends Element = Element>(selectors: string): E;
|
|
64
66
|
getAttribute(qualifiedName: string): string;
|
|
65
67
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -69,11 +71,14 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
69
71
|
getBoundingClientRect(): DOMRect;
|
|
70
72
|
getClientRects(): DOMRectList;
|
|
71
73
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
72
|
-
getElementsByTagName<
|
|
73
|
-
getElementsByTagName<
|
|
74
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
75
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
76
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
77
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
74
78
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
75
79
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
76
80
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
81
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
77
82
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
78
83
|
hasAttribute(qualifiedName: string): boolean;
|
|
79
84
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -131,24 +136,24 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
131
136
|
normalize(): void;
|
|
132
137
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
|
133
138
|
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
|
|
139
|
+
readonly ELEMENT_NODE: 1;
|
|
140
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
141
|
+
readonly TEXT_NODE: 3;
|
|
142
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
143
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
144
|
+
readonly ENTITY_NODE: 6;
|
|
145
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
146
|
+
readonly COMMENT_NODE: 8;
|
|
147
|
+
readonly DOCUMENT_NODE: 9;
|
|
148
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
149
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
150
|
+
readonly NOTATION_NODE: 12;
|
|
151
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
152
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
153
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
154
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
155
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
156
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
152
157
|
dispatchEvent(event: Event): boolean;
|
|
153
158
|
ariaAtomic: string;
|
|
154
159
|
ariaAutoComplete: string;
|
|
@@ -156,7 +161,6 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
156
161
|
ariaChecked: string;
|
|
157
162
|
ariaColCount: string;
|
|
158
163
|
ariaColIndex: string;
|
|
159
|
-
ariaColIndexText: string;
|
|
160
164
|
ariaColSpan: string;
|
|
161
165
|
ariaCurrent: string;
|
|
162
166
|
ariaDisabled: string;
|
|
@@ -180,7 +184,6 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
180
184
|
ariaRoleDescription: string;
|
|
181
185
|
ariaRowCount: string;
|
|
182
186
|
ariaRowIndex: string;
|
|
183
|
-
ariaRowIndexText: string;
|
|
184
187
|
ariaRowSpan: string;
|
|
185
188
|
ariaSelected: string;
|
|
186
189
|
ariaSetSize: string;
|
|
@@ -205,17 +208,18 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
205
208
|
readonly lastElementChild: Element;
|
|
206
209
|
append(...nodes: (string | Node)[]): void;
|
|
207
210
|
prepend(...nodes: (string | Node)[]): void;
|
|
208
|
-
querySelector<
|
|
209
|
-
querySelector<
|
|
211
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
212
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
213
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
214
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
210
215
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
211
|
-
querySelectorAll<
|
|
212
|
-
querySelectorAll<
|
|
216
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
217
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
218
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
219
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
213
220
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
214
221
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
215
222
|
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
223
|
readonly style: CSSStyleDeclaration;
|
|
220
224
|
contentEditable: string;
|
|
221
225
|
enterKeyHint: string;
|
|
@@ -236,7 +240,9 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
236
240
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
237
241
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
238
242
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
243
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
239
244
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
245
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
240
246
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
241
247
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
242
248
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -269,6 +275,7 @@ declare const MainApplication_base: (new (...args: any[]) => {
|
|
|
269
275
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
270
276
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
271
277
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
278
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
272
279
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
273
280
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
274
281
|
onplaying: (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.107.0",
|
|
4
|
+
"version": "14.107.1-alpha-afbc4d7.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/tbd.js",
|
|
7
7
|
"engines": {
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
"serve": "genx serve"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@genesislcap/genx": "14.107.0",
|
|
36
|
+
"@genesislcap/genx": "14.107.1-alpha-afbc4d7.0",
|
|
37
37
|
"rimraf": "^3.0.2"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@genesislcap/foundation-logger": "14.107.0",
|
|
41
|
-
"@genesislcap/foundation-utils": "14.107.0",
|
|
42
|
-
"@genesislcap/foundation-zero": "14.107.0",
|
|
40
|
+
"@genesislcap/foundation-logger": "14.107.1-alpha-afbc4d7.0",
|
|
41
|
+
"@genesislcap/foundation-utils": "14.107.1-alpha-afbc4d7.0",
|
|
42
|
+
"@genesislcap/foundation-zero": "14.107.1-alpha-afbc4d7.0",
|
|
43
43
|
"@microsoft/fast-components": "^2.21.3",
|
|
44
44
|
"@microsoft/fast-element": "^1.7.0",
|
|
45
|
-
"tslib": "^2.
|
|
45
|
+
"tslib": "^2.6.2"
|
|
46
46
|
},
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "bb64624e9bb6cea2cad088305e8c82d088f20da4"
|
|
56
56
|
}
|