@genesislcap/foundation-events 14.225.1-alpha-2aa9bd9.0 → 14.225.2-alpha-a51f60c.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -68,11 +68,15 @@ 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;
71
72
  spellcheck: boolean;
72
73
  title: string;
73
74
  translate: boolean;
74
75
  attachInternals(): ElementInternals;
75
76
  click(): void;
77
+ hidePopover(): void;
78
+ showPopover(): void;
79
+ togglePopover(force?: boolean): boolean;
76
80
  addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
77
81
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
78
82
  removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
@@ -101,9 +105,12 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
101
105
  slot: string;
102
106
  readonly tagName: string;
103
107
  attachShadow(init: ShadowRootInit): ShadowRoot;
108
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
104
109
  closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
105
110
  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];
106
112
  closest<E extends Element = Element>(selectors: string): E;
113
+ computedStyleMap(): StylePropertyMapReadOnly;
107
114
  getAttribute(qualifiedName: string): string;
108
115
  getAttributeNS(namespace: string, localName: string): string;
109
116
  getAttributeNames(): string[];
@@ -112,11 +119,14 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
112
119
  getBoundingClientRect(): DOMRect;
113
120
  getClientRects(): DOMRectList;
114
121
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
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]>;
122
+ getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
123
+ getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
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]>;
117
126
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
118
127
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
119
128
  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>;
120
130
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
121
131
  hasAttribute(qualifiedName: string): boolean;
122
132
  hasAttributeNS(namespace: string, localName: string): boolean;
@@ -174,24 +184,24 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
174
184
  normalize(): void;
175
185
  removeChild<T_2 extends Node>(child: T_2): T_2;
176
186
  replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
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;
187
+ readonly ELEMENT_NODE: 1;
188
+ readonly ATTRIBUTE_NODE: 2;
189
+ readonly TEXT_NODE: 3;
190
+ readonly CDATA_SECTION_NODE: 4;
191
+ readonly ENTITY_REFERENCE_NODE: 5;
192
+ readonly ENTITY_NODE: 6;
193
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
194
+ readonly COMMENT_NODE: 8;
195
+ readonly DOCUMENT_NODE: 9;
196
+ readonly DOCUMENT_TYPE_NODE: 10;
197
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
198
+ readonly NOTATION_NODE: 12;
199
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
200
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
201
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
202
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
203
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
204
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
195
205
  dispatchEvent(event: Event): boolean;
196
206
  ariaAtomic: string;
197
207
  ariaAutoComplete: string;
@@ -199,9 +209,9 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
199
209
  ariaChecked: string;
200
210
  ariaColCount: string;
201
211
  ariaColIndex: string;
202
- ariaColIndexText: string;
203
212
  ariaColSpan: string;
204
213
  ariaCurrent: string;
214
+ ariaDescription: string;
205
215
  ariaDisabled: string;
206
216
  ariaExpanded: string;
207
217
  ariaHasPopup: string;
@@ -223,7 +233,6 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
223
233
  ariaRoleDescription: string;
224
234
  ariaRowCount: string;
225
235
  ariaRowIndex: string;
226
- ariaRowIndexText: string;
227
236
  ariaRowSpan: string;
228
237
  ariaSelected: string;
229
238
  ariaSetSize: string;
@@ -248,17 +257,19 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
248
257
  readonly lastElementChild: Element;
249
258
  append(...nodes: (string | Node)[]): void;
250
259
  prepend(...nodes: (string | Node)[]): void;
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];
260
+ querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
261
+ querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
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];
253
264
  querySelector<E_1 extends Element = Element>(selectors: string): E_1;
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]>;
265
+ querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
266
+ querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
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]>;
256
269
  querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
257
270
  replaceChildren(...nodes: (string | Node)[]): void;
258
271
  readonly assignedSlot: HTMLSlotElement;
259
- oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
260
- oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
261
- onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
272
+ readonly attributeStyleMap: StylePropertyMap;
262
273
  readonly style: CSSStyleDeclaration;
263
274
  contentEditable: string;
264
275
  enterKeyHint: string;
@@ -271,6 +282,7 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
271
282
  onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
272
283
  onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
273
284
  onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
285
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
274
286
  onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
275
287
  oncancel: (this: GlobalEventHandlers, ev: Event) => any;
276
288
  oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
@@ -279,7 +291,9 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
279
291
  onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
280
292
  onclose: (this: GlobalEventHandlers, ev: Event) => any;
281
293
  oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
294
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
282
295
  oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
296
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
283
297
  ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
284
298
  ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
285
299
  ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
@@ -312,6 +326,7 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
312
326
  onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
313
327
  onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
314
328
  onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
329
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
315
330
  onpause: (this: GlobalEventHandlers, ev: Event) => any;
316
331
  onplay: (this: GlobalEventHandlers, ev: Event) => any;
317
332
  onplaying: (this: GlobalEventHandlers, ev: Event) => any;
@@ -328,6 +343,7 @@ export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget exte
328
343
  onreset: (this: GlobalEventHandlers, ev: Event) => any;
329
344
  onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
330
345
  onscroll: (this: GlobalEventHandlers, ev: Event) => any;
346
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
331
347
  onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
332
348
  onseeked: (this: GlobalEventHandlers, ev: Event) => any;
333
349
  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.225.1-alpha-2aa9bd9.0",
4
+ "version": "14.225.2-alpha-a51f60c.0",
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.225.1-alpha-2aa9bd9.0",
53
- "@genesislcap/genx": "14.225.1-alpha-2aa9bd9.0",
54
- "@genesislcap/rollup-builder": "14.225.1-alpha-2aa9bd9.0",
55
- "@genesislcap/ts-builder": "14.225.1-alpha-2aa9bd9.0",
56
- "@genesislcap/uvu-playwright-builder": "14.225.1-alpha-2aa9bd9.0",
57
- "@genesislcap/vite-builder": "14.225.1-alpha-2aa9bd9.0",
58
- "@genesislcap/webpack-builder": "14.225.1-alpha-2aa9bd9.0",
52
+ "@genesislcap/foundation-testing": "14.225.2-alpha-a51f60c.0",
53
+ "@genesislcap/genx": "14.225.2-alpha-a51f60c.0",
54
+ "@genesislcap/rollup-builder": "14.225.2-alpha-a51f60c.0",
55
+ "@genesislcap/ts-builder": "14.225.2-alpha-a51f60c.0",
56
+ "@genesislcap/uvu-playwright-builder": "14.225.2-alpha-a51f60c.0",
57
+ "@genesislcap/vite-builder": "14.225.2-alpha-a51f60c.0",
58
+ "@genesislcap/webpack-builder": "14.225.2-alpha-a51f60c.0",
59
59
  "rimraf": "^5.0.0"
60
60
  },
61
61
  "dependencies": {
62
- "@genesislcap/foundation-logger": "14.225.1-alpha-2aa9bd9.0",
62
+ "@genesislcap/foundation-logger": "14.225.2-alpha-a51f60c.0",
63
63
  "@microsoft/fast-element": "1.14.0",
64
64
  "@microsoft/fast-foundation": "2.49.6",
65
- "tslib": "^2.3.1"
65
+ "tslib": "2.8.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": "02426a5ad4f33229095ff8761661873cfdce2e7f"
75
+ "gitHead": "4e2f49c901b8ee0f06d4df645c355d7f6c7bde70"
76
76
  }