@genesislcap/foundation-events 14.225.4-alpha-5f6eefd.0 → 14.226.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/dts/eventEmitter/eventEmitterMixin.d.ts +29 -45
- package/dist/dts/eventEmitter/eventEmitterMixin.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/foundation-events.api.json +132 -496
- package/dist/foundation-events.d.ts +29 -45
- package/docs/api/foundation-events.createinputemitter.md +1 -4
- package/docs/api/foundation-events.createselectemitter.md +1 -4
- package/docs/api/foundation-events.customevent.md +1 -12
- package/docs/api/foundation-events.eventemitter.md +30 -56
- package/docs/api/foundation-events.eventemitterdi.md +1 -1
- package/docs/api/foundation-events.getbaseemitargs.md +1 -12
- package/docs/api/foundation-events.md +6 -11
- package/docs/api/foundation-events.registeremitter.md +1 -5
- package/docs/{api-report.md.api.md → api-report.md} +29 -45
- package/package.json +11 -11
@@ -68,15 +68,11 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
68
68
|
readonly offsetTop: number;
|
69
69
|
readonly offsetWidth: number;
|
70
70
|
outerText: string;
|
71
|
-
popover: string;
|
72
71
|
spellcheck: boolean;
|
73
72
|
title: string;
|
74
73
|
translate: boolean;
|
75
74
|
attachInternals(): ElementInternals;
|
76
75
|
click(): void;
|
77
|
-
hidePopover(): void;
|
78
|
-
showPopover(): void;
|
79
|
-
togglePopover(force?: boolean): boolean;
|
80
76
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
81
77
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
82
78
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -105,12 +101,9 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
105
101
|
slot: string;
|
106
102
|
readonly tagName: string;
|
107
103
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
108
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
109
104
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
110
105
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
111
|
-
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
112
106
|
closest<E extends Element = Element>(selectors: string): E;
|
113
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
114
107
|
getAttribute(qualifiedName: string): string;
|
115
108
|
getAttributeNS(namespace: string, localName: string): string;
|
116
109
|
getAttributeNames(): string[];
|
@@ -119,14 +112,11 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
119
112
|
getBoundingClientRect(): DOMRect;
|
120
113
|
getClientRects(): DOMRectList;
|
121
114
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
122
|
-
getElementsByTagName<
|
123
|
-
getElementsByTagName<
|
124
|
-
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
125
|
-
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
115
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
116
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
126
117
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
127
118
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
128
119
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
129
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
130
120
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
131
121
|
hasAttribute(qualifiedName: string): boolean;
|
132
122
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -184,24 +174,24 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
184
174
|
normalize(): void;
|
185
175
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
186
176
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
187
|
-
readonly
|
188
|
-
readonly
|
189
|
-
readonly
|
190
|
-
readonly
|
191
|
-
readonly
|
192
|
-
readonly
|
193
|
-
readonly
|
194
|
-
readonly
|
195
|
-
readonly
|
196
|
-
readonly
|
197
|
-
readonly
|
198
|
-
readonly
|
199
|
-
readonly
|
200
|
-
readonly
|
201
|
-
readonly
|
202
|
-
readonly
|
203
|
-
readonly
|
204
|
-
readonly
|
177
|
+
readonly ATTRIBUTE_NODE: number;
|
178
|
+
readonly CDATA_SECTION_NODE: number;
|
179
|
+
readonly COMMENT_NODE: number;
|
180
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
181
|
+
readonly DOCUMENT_NODE: number;
|
182
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
183
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
184
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
185
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
186
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
187
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
188
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
189
|
+
readonly ELEMENT_NODE: number;
|
190
|
+
readonly ENTITY_NODE: number;
|
191
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
192
|
+
readonly NOTATION_NODE: number;
|
193
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
194
|
+
readonly TEXT_NODE: number;
|
205
195
|
dispatchEvent(event: Event): boolean;
|
206
196
|
ariaAtomic: string;
|
207
197
|
ariaAutoComplete: string;
|
@@ -209,9 +199,9 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
209
199
|
ariaChecked: string;
|
210
200
|
ariaColCount: string;
|
211
201
|
ariaColIndex: string;
|
202
|
+
ariaColIndexText: string;
|
212
203
|
ariaColSpan: string;
|
213
204
|
ariaCurrent: string;
|
214
|
-
ariaDescription: string;
|
215
205
|
ariaDisabled: string;
|
216
206
|
ariaExpanded: string;
|
217
207
|
ariaHasPopup: string;
|
@@ -233,6 +223,7 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
233
223
|
ariaRoleDescription: string;
|
234
224
|
ariaRowCount: string;
|
235
225
|
ariaRowIndex: string;
|
226
|
+
ariaRowIndexText: string;
|
236
227
|
ariaRowSpan: string;
|
237
228
|
ariaSelected: string;
|
238
229
|
ariaSetSize: string;
|
@@ -257,19 +248,17 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
257
248
|
readonly lastElementChild: Element;
|
258
249
|
append(...nodes: (string | Node)[]): void;
|
259
250
|
prepend(...nodes: (string | Node)[]): void;
|
260
|
-
querySelector<
|
261
|
-
querySelector<
|
262
|
-
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
263
|
-
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
251
|
+
querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
|
252
|
+
querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
|
264
253
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
265
|
-
querySelectorAll<
|
266
|
-
querySelectorAll<
|
267
|
-
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
268
|
-
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
254
|
+
querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
|
255
|
+
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
269
256
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
270
257
|
replaceChildren(...nodes: (string | Node)[]): void;
|
271
258
|
readonly assignedSlot: HTMLSlotElement;
|
272
|
-
|
259
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
260
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
261
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
273
262
|
readonly style: CSSStyleDeclaration;
|
274
263
|
contentEditable: string;
|
275
264
|
enterKeyHint: string;
|
@@ -282,7 +271,6 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
282
271
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
283
272
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
284
273
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
285
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
286
274
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
287
275
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
288
276
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -291,9 +279,7 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
291
279
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
292
280
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
293
281
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
294
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
295
282
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
296
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
297
283
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
298
284
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
299
285
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -326,7 +312,6 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
326
312
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
327
313
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
328
314
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
329
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
330
315
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
331
316
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
332
317
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -343,7 +328,6 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
|
|
343
328
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
344
329
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
345
330
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
346
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
347
331
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
348
332
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
349
333
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@genesislcap/foundation-events",
|
3
3
|
"description": "Genesis Foundation Events",
|
4
|
-
"version": "14.
|
4
|
+
"version": "14.226.1",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -49,20 +49,20 @@
|
|
49
49
|
}
|
50
50
|
},
|
51
51
|
"devDependencies": {
|
52
|
-
"@genesislcap/foundation-testing": "14.
|
53
|
-
"@genesislcap/genx": "14.
|
54
|
-
"@genesislcap/rollup-builder": "14.
|
55
|
-
"@genesislcap/ts-builder": "14.
|
56
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
57
|
-
"@genesislcap/vite-builder": "14.
|
58
|
-
"@genesislcap/webpack-builder": "14.
|
52
|
+
"@genesislcap/foundation-testing": "14.226.1",
|
53
|
+
"@genesislcap/genx": "14.226.1",
|
54
|
+
"@genesislcap/rollup-builder": "14.226.1",
|
55
|
+
"@genesislcap/ts-builder": "14.226.1",
|
56
|
+
"@genesislcap/uvu-playwright-builder": "14.226.1",
|
57
|
+
"@genesislcap/vite-builder": "14.226.1",
|
58
|
+
"@genesislcap/webpack-builder": "14.226.1",
|
59
59
|
"rimraf": "^5.0.0"
|
60
60
|
},
|
61
61
|
"dependencies": {
|
62
|
-
"@genesislcap/foundation-logger": "14.
|
62
|
+
"@genesislcap/foundation-logger": "14.226.1",
|
63
63
|
"@microsoft/fast-element": "1.14.0",
|
64
64
|
"@microsoft/fast-foundation": "2.49.6",
|
65
|
-
"tslib": "2.
|
65
|
+
"tslib": "^2.3.1"
|
66
66
|
},
|
67
67
|
"repository": {
|
68
68
|
"type": "git",
|
@@ -72,5 +72,5 @@
|
|
72
72
|
"publishConfig": {
|
73
73
|
"access": "public"
|
74
74
|
},
|
75
|
-
"gitHead": "
|
75
|
+
"gitHead": "e691c1741d135edca5271f338f62df8154efb99c"
|
76
76
|
}
|