@genesislcap/foundation-events 14.226.0 → 14.226.2-alpha-bcda968.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/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
@@ -66,15 +66,11 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
66
66
|
readonly offsetTop: number;
|
67
67
|
readonly offsetWidth: number;
|
68
68
|
outerText: string;
|
69
|
-
popover: string;
|
70
69
|
spellcheck: boolean;
|
71
70
|
title: string;
|
72
71
|
translate: boolean;
|
73
72
|
attachInternals(): ElementInternals;
|
74
73
|
click(): void;
|
75
|
-
hidePopover(): void;
|
76
|
-
showPopover(): void;
|
77
|
-
togglePopover(force?: boolean): boolean;
|
78
74
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
79
75
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
80
76
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -103,12 +99,9 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
103
99
|
slot: string;
|
104
100
|
readonly tagName: string;
|
105
101
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
106
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
107
102
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
108
103
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
109
|
-
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
110
104
|
closest<E extends Element = Element>(selectors: string): E;
|
111
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
112
105
|
getAttribute(qualifiedName: string): string;
|
113
106
|
getAttributeNS(namespace: string, localName: string): string;
|
114
107
|
getAttributeNames(): string[];
|
@@ -117,14 +110,11 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
117
110
|
getBoundingClientRect(): DOMRect;
|
118
111
|
getClientRects(): DOMRectList;
|
119
112
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
120
|
-
getElementsByTagName<
|
121
|
-
getElementsByTagName<
|
122
|
-
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
123
|
-
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
113
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
114
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
124
115
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
125
116
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
126
117
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
127
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
128
118
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
129
119
|
hasAttribute(qualifiedName: string): boolean;
|
130
120
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -182,24 +172,24 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
182
172
|
normalize(): void;
|
183
173
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
184
174
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
185
|
-
readonly
|
186
|
-
readonly
|
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
|
175
|
+
readonly ATTRIBUTE_NODE: number;
|
176
|
+
readonly CDATA_SECTION_NODE: number;
|
177
|
+
readonly COMMENT_NODE: number;
|
178
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
179
|
+
readonly DOCUMENT_NODE: number;
|
180
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
181
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
182
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
183
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
184
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
185
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
186
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
187
|
+
readonly ELEMENT_NODE: number;
|
188
|
+
readonly ENTITY_NODE: number;
|
189
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
190
|
+
readonly NOTATION_NODE: number;
|
191
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
192
|
+
readonly TEXT_NODE: number;
|
203
193
|
dispatchEvent(event: Event): boolean;
|
204
194
|
ariaAtomic: string;
|
205
195
|
ariaAutoComplete: string;
|
@@ -207,9 +197,9 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
207
197
|
ariaChecked: string;
|
208
198
|
ariaColCount: string;
|
209
199
|
ariaColIndex: string;
|
200
|
+
ariaColIndexText: string;
|
210
201
|
ariaColSpan: string;
|
211
202
|
ariaCurrent: string;
|
212
|
-
ariaDescription: string;
|
213
203
|
ariaDisabled: string;
|
214
204
|
ariaExpanded: string;
|
215
205
|
ariaHasPopup: string;
|
@@ -231,6 +221,7 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
231
221
|
ariaRoleDescription: string;
|
232
222
|
ariaRowCount: string;
|
233
223
|
ariaRowIndex: string;
|
224
|
+
ariaRowIndexText: string;
|
234
225
|
ariaRowSpan: string;
|
235
226
|
ariaSelected: string;
|
236
227
|
ariaSetSize: string;
|
@@ -255,19 +246,17 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
255
246
|
readonly lastElementChild: Element;
|
256
247
|
append(...nodes: (string | Node)[]): void;
|
257
248
|
prepend(...nodes: (string | Node)[]): void;
|
258
|
-
querySelector<
|
259
|
-
querySelector<
|
260
|
-
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
261
|
-
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
249
|
+
querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
|
250
|
+
querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
|
262
251
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
263
|
-
querySelectorAll<
|
264
|
-
querySelectorAll<
|
265
|
-
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
266
|
-
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
252
|
+
querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
|
253
|
+
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
267
254
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
268
255
|
replaceChildren(...nodes: (string | Node)[]): void;
|
269
256
|
readonly assignedSlot: HTMLSlotElement;
|
270
|
-
|
257
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
258
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
259
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
271
260
|
readonly style: CSSStyleDeclaration;
|
272
261
|
contentEditable: string;
|
273
262
|
enterKeyHint: string;
|
@@ -280,7 +269,6 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
280
269
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
281
270
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
282
271
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
283
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
284
272
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
285
273
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
286
274
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -289,9 +277,7 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
289
277
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
290
278
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
291
279
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
292
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
293
280
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
294
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
295
281
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
296
282
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
297
283
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -324,7 +310,6 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
324
310
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
325
311
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
326
312
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
327
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
328
313
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
329
314
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
330
315
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -341,7 +326,6 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
|
|
341
326
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
342
327
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
343
328
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
344
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
345
329
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
346
330
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
347
331
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eventEmitterMixin.d.ts","sourceRoot":"","sources":["../../../src/eventEmitter/eventEmitterMixin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EACL,WAAW,EACX,UAAU,EACV,cAAc,EACd,kBAAkB,EAGnB,MAAM,UAAU,CAAC;AAElB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,eAAO,MAAM,YAAY
|
1
|
+
{"version":3,"file":"eventEmitterMixin.d.ts","sourceRoot":"","sources":["../../../src/eventEmitter/eventEmitterMixin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EACL,WAAW,EACX,UAAU,EACV,cAAc,EACd,kBAAkB,EAGnB,MAAM,UAAU,CAAC;AAElB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,eAAO,MAAM,YAAY;iMAYlB,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhB,CAAC"}
|