drab 7.0.2 → 8.0.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.
Files changed (59) hide show
  1. package/dist/base/index.d.ts +122 -48
  2. package/dist/base/index.d.ts.map +1 -1
  3. package/dist/base/index.js +10 -7
  4. package/dist/contextmenu/index.d.ts +90 -35
  5. package/dist/contextmenu/index.d.ts.map +1 -1
  6. package/dist/define.d.ts +0 -1
  7. package/dist/define.d.ts.map +1 -1
  8. package/dist/define.js +0 -1
  9. package/dist/editor/index.d.ts +90 -35
  10. package/dist/editor/index.d.ts.map +1 -1
  11. package/dist/fullscreen/index.d.ts +90 -36
  12. package/dist/fullscreen/index.d.ts.map +1 -1
  13. package/dist/fullscreen/index.js +3 -14
  14. package/dist/index.d.ts +0 -1
  15. package/dist/index.d.ts.map +1 -1
  16. package/dist/index.js +0 -1
  17. package/dist/intersect/index.d.ts +90 -36
  18. package/dist/intersect/index.d.ts.map +1 -1
  19. package/dist/intersect/index.js +1 -11
  20. package/dist/prefetch/index.d.ts +62 -25
  21. package/dist/prefetch/index.d.ts.map +1 -1
  22. package/dist/prefetch/index.js +17 -30
  23. package/dist/share/index.d.ts +120 -47
  24. package/dist/share/index.d.ts.map +1 -1
  25. package/dist/tablesort/index.d.ts +120 -47
  26. package/dist/tablesort/index.d.ts.map +1 -1
  27. package/dist/tablesort/index.js +54 -54
  28. package/dist/tabs/index.d.ts +61 -24
  29. package/dist/tabs/index.d.ts.map +1 -1
  30. package/dist/tabs/index.js +10 -2
  31. package/dist/types/index.d.ts +0 -2
  32. package/dist/types/index.d.ts.map +1 -1
  33. package/dist/util/validate.d.ts.map +1 -1
  34. package/dist/util/validate.js +2 -1
  35. package/dist/wakelock/index.d.ts +120 -47
  36. package/dist/wakelock/index.d.ts.map +1 -1
  37. package/dist/wakelock/index.js +1 -2
  38. package/package.json +4 -4
  39. package/src/base/index.ts +10 -7
  40. package/src/contextmenu/index.ts +2 -3
  41. package/src/define.ts +0 -1
  42. package/src/editor/index.ts +1 -2
  43. package/src/fullscreen/index.ts +6 -18
  44. package/src/index.ts +0 -1
  45. package/src/intersect/index.ts +2 -14
  46. package/src/prefetch/index.ts +21 -36
  47. package/src/tablesort/index.ts +64 -63
  48. package/src/tabs/index.ts +16 -2
  49. package/src/types/index.ts +0 -2
  50. package/src/util/validate.ts +2 -1
  51. package/src/wakelock/index.ts +2 -5
  52. package/dist/dialog/define.d.ts +0 -2
  53. package/dist/dialog/define.d.ts.map +0 -1
  54. package/dist/dialog/define.js +0 -3
  55. package/dist/dialog/index.d.ts +0 -1079
  56. package/dist/dialog/index.d.ts.map +0 -1
  57. package/dist/dialog/index.js +0 -90
  58. package/src/dialog/define.ts +0 -4
  59. package/src/dialog/index.ts +0 -120
@@ -12,7 +12,7 @@ export type ShareAttributes = TriggerAttributes & ContentAttributes & ({
12
12
  });
13
13
  declare const Share_base: {
14
14
  new (...args: any[]): {
15
- "__#1@#listenerController": AbortController;
15
+ controller: AbortController;
16
16
  safeListener<T extends keyof HTMLElementEventMap>(type: T, listener: (this: HTMLElement, event: HTMLElementEventMap[T]) => any, element?: HTMLElement, options?: AddEventListenerOptions): void;
17
17
  safeListener<T extends keyof DocumentEventMap>(type: T, listener: (this: Document, event: DocumentEventMap[T]) => any, document: Document, options?: AddEventListenerOptions): void;
18
18
  safeListener<T extends keyof WindowEventMap>(type: T, listener: (this: Window, event: WindowEventMap[T]) => any, window: Window, options?: AddEventListenerOptions): void;
@@ -23,9 +23,10 @@ declare const Share_base: {
23
23
  accessKey: string;
24
24
  readonly accessKeyLabel: string;
25
25
  autocapitalize: string;
26
+ autocorrect: boolean;
26
27
  dir: string;
27
28
  draggable: boolean;
28
- hidden: boolean;
29
+ hidden: boolean | "until-found";
29
30
  inert: boolean;
30
31
  innerText: string;
31
32
  lang: string;
@@ -43,8 +44,8 @@ declare const Share_base: {
43
44
  attachInternals(): ElementInternals;
44
45
  click(): void;
45
46
  hidePopover(): void;
46
- showPopover(): void;
47
- togglePopover(options?: boolean): boolean;
47
+ showPopover(options?: ShowPopoverOptions): void;
48
+ togglePopover(options?: TogglePopoverOptions | boolean): boolean;
48
49
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
49
50
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
50
51
  removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -58,6 +59,7 @@ declare const Share_base: {
58
59
  readonly clientTop: number;
59
60
  readonly clientWidth: number;
60
61
  readonly currentCSSZoom: number;
62
+ readonly customElementRegistry: CustomElementRegistry | null;
61
63
  id: string;
62
64
  innerHTML: string;
63
65
  readonly localName: string;
@@ -108,6 +110,9 @@ declare const Share_base: {
108
110
  insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
109
111
  insertAdjacentHTML(position: InsertPosition, string: string): void;
110
112
  insertAdjacentText(where: InsertPosition, data: string): void;
113
+ matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
114
+ matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
115
+ matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
111
116
  matches(selectors: string): boolean;
112
117
  releasePointerCapture(pointerId: number): void;
113
118
  removeAttribute(qualifiedName: string): void;
@@ -130,6 +135,8 @@ declare const Share_base: {
130
135
  setPointerCapture(pointerId: number): void;
131
136
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
132
137
  webkitMatchesSelector(selectors: string): boolean;
138
+ get textContent(): string;
139
+ set textContent(value: string | null);
133
140
  readonly baseURI: string;
134
141
  readonly childNodes: NodeListOf<ChildNode>;
135
142
  readonly firstChild: ChildNode | null;
@@ -142,7 +149,6 @@ declare const Share_base: {
142
149
  readonly parentElement: HTMLElement | null;
143
150
  readonly parentNode: ParentNode | null;
144
151
  readonly previousSibling: ChildNode | null;
145
- textContent: string | null;
146
152
  appendChild<T extends Node>(node: T): T;
147
153
  cloneNode(subtree?: boolean): Node;
148
154
  compareDocumentPosition(other: Node): number;
@@ -177,6 +183,7 @@ declare const Share_base: {
177
183
  readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
178
184
  readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
179
185
  dispatchEvent(event: Event): boolean;
186
+ ariaActiveDescendantElement: Element | null;
180
187
  ariaAtomic: string | null;
181
188
  ariaAutoComplete: string | null;
182
189
  ariaBrailleLabel: string | null;
@@ -187,21 +194,28 @@ declare const Share_base: {
187
194
  ariaColIndex: string | null;
188
195
  ariaColIndexText: string | null;
189
196
  ariaColSpan: string | null;
197
+ ariaControlsElements: ReadonlyArray<Element> | null;
190
198
  ariaCurrent: string | null;
199
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
191
200
  ariaDescription: string | null;
201
+ ariaDetailsElements: ReadonlyArray<Element> | null;
192
202
  ariaDisabled: string | null;
203
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
193
204
  ariaExpanded: string | null;
205
+ ariaFlowToElements: ReadonlyArray<Element> | null;
194
206
  ariaHasPopup: string | null;
195
207
  ariaHidden: string | null;
196
208
  ariaInvalid: string | null;
197
209
  ariaKeyShortcuts: string | null;
198
210
  ariaLabel: string | null;
211
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
199
212
  ariaLevel: string | null;
200
213
  ariaLive: string | null;
201
214
  ariaModal: string | null;
202
215
  ariaMultiLine: string | null;
203
216
  ariaMultiSelectable: string | null;
204
217
  ariaOrientation: string | null;
218
+ ariaOwnsElements: ReadonlyArray<Element> | null;
205
219
  ariaPlaceholder: string | null;
206
220
  ariaPosInSet: string | null;
207
221
  ariaPressed: string | null;
@@ -234,6 +248,7 @@ declare const Share_base: {
234
248
  readonly firstElementChild: Element | null;
235
249
  readonly lastElementChild: Element | null;
236
250
  append(...nodes: (Node | string)[]): void;
251
+ moveBefore(node: Node, child: Node | null): void;
237
252
  prepend(...nodes: (Node | string)[]): void;
238
253
  querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
239
254
  querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
@@ -259,18 +274,20 @@ declare const Share_base: {
259
274
  onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
260
275
  onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
261
276
  onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
262
- onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
277
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
263
278
  onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
264
- onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
279
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
280
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
265
281
  onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
266
282
  oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
267
283
  oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
268
284
  oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
269
285
  onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
270
- onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
286
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
271
287
  onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
288
+ oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
272
289
  oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
273
- oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
290
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
274
291
  oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
275
292
  oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
276
293
  oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -290,7 +307,7 @@ declare const Share_base: {
290
307
  onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
291
308
  onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
292
309
  ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
293
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
310
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
294
311
  oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
295
312
  onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
296
313
  onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
@@ -318,6 +335,7 @@ declare const Share_base: {
318
335
  onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
319
336
  onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
320
337
  onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
338
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
339
  onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
322
340
  onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
323
341
  onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -336,7 +354,7 @@ declare const Share_base: {
336
354
  onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
337
355
  onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
356
  ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
339
- ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
357
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
340
358
  ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
341
359
  ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
342
360
  ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
@@ -354,14 +372,15 @@ declare const Share_base: {
354
372
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
355
373
  autofocus: boolean;
356
374
  readonly dataset: DOMStringMap;
357
- nonce?: string;
375
+ nonce: string;
358
376
  tabIndex: number;
359
377
  blur(): void;
360
378
  focus(options?: FocusOptions): void;
361
379
  };
362
380
  } & {
363
381
  new (...args: any[]): {
364
- event: keyof HTMLElementEventMap;
382
+ get event(): keyof HTMLElementEventMap;
383
+ set event(value: keyof HTMLElementEventMap);
365
384
  triggers<T extends HTMLElement>(instance: import("../base/index.js").Constructor<T>): NodeListOf<T>;
366
385
  triggers(): NodeListOf<HTMLElement>;
367
386
  listener<T extends keyof HTMLElementEventMap>(listener: (this: HTMLElement, e: HTMLElementEventMap[T]) => any, options?: AddEventListenerOptions): void;
@@ -369,9 +388,10 @@ declare const Share_base: {
369
388
  accessKey: string;
370
389
  readonly accessKeyLabel: string;
371
390
  autocapitalize: string;
391
+ autocorrect: boolean;
372
392
  dir: string;
373
393
  draggable: boolean;
374
- hidden: boolean;
394
+ hidden: boolean | "until-found";
375
395
  inert: boolean;
376
396
  innerText: string;
377
397
  lang: string;
@@ -389,8 +409,8 @@ declare const Share_base: {
389
409
  attachInternals(): ElementInternals;
390
410
  click(): void;
391
411
  hidePopover(): void;
392
- showPopover(): void;
393
- togglePopover(options?: boolean): boolean;
412
+ showPopover(options?: ShowPopoverOptions): void;
413
+ togglePopover(options?: TogglePopoverOptions | boolean): boolean;
394
414
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
395
415
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
396
416
  removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -404,6 +424,7 @@ declare const Share_base: {
404
424
  readonly clientTop: number;
405
425
  readonly clientWidth: number;
406
426
  readonly currentCSSZoom: number;
427
+ readonly customElementRegistry: CustomElementRegistry | null;
407
428
  id: string;
408
429
  innerHTML: string;
409
430
  readonly localName: string;
@@ -454,6 +475,9 @@ declare const Share_base: {
454
475
  insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
455
476
  insertAdjacentHTML(position: InsertPosition, string: string): void;
456
477
  insertAdjacentText(where: InsertPosition, data: string): void;
478
+ matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
479
+ matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
480
+ matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
457
481
  matches(selectors: string): boolean;
458
482
  releasePointerCapture(pointerId: number): void;
459
483
  removeAttribute(qualifiedName: string): void;
@@ -476,6 +500,8 @@ declare const Share_base: {
476
500
  setPointerCapture(pointerId: number): void;
477
501
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
478
502
  webkitMatchesSelector(selectors: string): boolean;
503
+ get textContent(): string;
504
+ set textContent(value: string | null);
479
505
  readonly baseURI: string;
480
506
  readonly childNodes: NodeListOf<ChildNode>;
481
507
  readonly firstChild: ChildNode | null;
@@ -488,7 +514,6 @@ declare const Share_base: {
488
514
  readonly parentElement: HTMLElement | null;
489
515
  readonly parentNode: ParentNode | null;
490
516
  readonly previousSibling: ChildNode | null;
491
- textContent: string | null;
492
517
  appendChild<T extends Node>(node: T): T;
493
518
  cloneNode(subtree?: boolean): Node;
494
519
  compareDocumentPosition(other: Node): number;
@@ -523,6 +548,7 @@ declare const Share_base: {
523
548
  readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
524
549
  readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
525
550
  dispatchEvent(event: Event): boolean;
551
+ ariaActiveDescendantElement: Element | null;
526
552
  ariaAtomic: string | null;
527
553
  ariaAutoComplete: string | null;
528
554
  ariaBrailleLabel: string | null;
@@ -533,21 +559,28 @@ declare const Share_base: {
533
559
  ariaColIndex: string | null;
534
560
  ariaColIndexText: string | null;
535
561
  ariaColSpan: string | null;
562
+ ariaControlsElements: ReadonlyArray<Element> | null;
536
563
  ariaCurrent: string | null;
564
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
537
565
  ariaDescription: string | null;
566
+ ariaDetailsElements: ReadonlyArray<Element> | null;
538
567
  ariaDisabled: string | null;
568
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
539
569
  ariaExpanded: string | null;
570
+ ariaFlowToElements: ReadonlyArray<Element> | null;
540
571
  ariaHasPopup: string | null;
541
572
  ariaHidden: string | null;
542
573
  ariaInvalid: string | null;
543
574
  ariaKeyShortcuts: string | null;
544
575
  ariaLabel: string | null;
576
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
545
577
  ariaLevel: string | null;
546
578
  ariaLive: string | null;
547
579
  ariaModal: string | null;
548
580
  ariaMultiLine: string | null;
549
581
  ariaMultiSelectable: string | null;
550
582
  ariaOrientation: string | null;
583
+ ariaOwnsElements: ReadonlyArray<Element> | null;
551
584
  ariaPlaceholder: string | null;
552
585
  ariaPosInSet: string | null;
553
586
  ariaPressed: string | null;
@@ -580,6 +613,7 @@ declare const Share_base: {
580
613
  readonly firstElementChild: Element | null;
581
614
  readonly lastElementChild: Element | null;
582
615
  append(...nodes: (Node | string)[]): void;
616
+ moveBefore(node: Node, child: Node | null): void;
583
617
  prepend(...nodes: (Node | string)[]): void;
584
618
  querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
585
619
  querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
@@ -605,18 +639,20 @@ declare const Share_base: {
605
639
  onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
606
640
  onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
607
641
  onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
608
- onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
642
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
609
643
  onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
610
- onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
644
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
645
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
611
646
  onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
612
647
  oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
613
648
  oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
614
649
  oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
615
650
  onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
616
- onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
651
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
617
652
  onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
653
+ oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
618
654
  oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
619
- oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
655
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
620
656
  oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
621
657
  oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
622
658
  oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -636,7 +672,7 @@ declare const Share_base: {
636
672
  onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
637
673
  onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
638
674
  ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
639
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
675
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
640
676
  oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
641
677
  onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
642
678
  onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
@@ -664,6 +700,7 @@ declare const Share_base: {
664
700
  onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
665
701
  onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
666
702
  onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
703
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
667
704
  onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
668
705
  onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
669
706
  onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -682,7 +719,7 @@ declare const Share_base: {
682
719
  onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
683
720
  onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
684
721
  ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
685
- ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
722
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
686
723
  ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
687
724
  ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
688
725
  ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
@@ -700,7 +737,7 @@ declare const Share_base: {
700
737
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
701
738
  autofocus: boolean;
702
739
  readonly dataset: DOMStringMap;
703
- nonce?: string;
740
+ nonce: string;
704
741
  tabIndex: number;
705
742
  blur(): void;
706
743
  focus(options?: FocusOptions): void;
@@ -713,9 +750,10 @@ declare const Share_base: {
713
750
  accessKey: string;
714
751
  readonly accessKeyLabel: string;
715
752
  autocapitalize: string;
753
+ autocorrect: boolean;
716
754
  dir: string;
717
755
  draggable: boolean;
718
- hidden: boolean;
756
+ hidden: boolean | "until-found";
719
757
  inert: boolean;
720
758
  innerText: string;
721
759
  lang: string;
@@ -733,8 +771,8 @@ declare const Share_base: {
733
771
  attachInternals(): ElementInternals;
734
772
  click(): void;
735
773
  hidePopover(): void;
736
- showPopover(): void;
737
- togglePopover(options?: boolean): boolean;
774
+ showPopover(options?: ShowPopoverOptions): void;
775
+ togglePopover(options?: TogglePopoverOptions | boolean): boolean;
738
776
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
739
777
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
740
778
  removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -748,6 +786,7 @@ declare const Share_base: {
748
786
  readonly clientTop: number;
749
787
  readonly clientWidth: number;
750
788
  readonly currentCSSZoom: number;
789
+ readonly customElementRegistry: CustomElementRegistry | null;
751
790
  id: string;
752
791
  innerHTML: string;
753
792
  readonly localName: string;
@@ -798,6 +837,9 @@ declare const Share_base: {
798
837
  insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
799
838
  insertAdjacentHTML(position: InsertPosition, string: string): void;
800
839
  insertAdjacentText(where: InsertPosition, data: string): void;
840
+ matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
841
+ matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
842
+ matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
801
843
  matches(selectors: string): boolean;
802
844
  releasePointerCapture(pointerId: number): void;
803
845
  removeAttribute(qualifiedName: string): void;
@@ -820,6 +862,8 @@ declare const Share_base: {
820
862
  setPointerCapture(pointerId: number): void;
821
863
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
822
864
  webkitMatchesSelector(selectors: string): boolean;
865
+ get textContent(): string;
866
+ set textContent(value: string | null);
823
867
  readonly baseURI: string;
824
868
  readonly childNodes: NodeListOf<ChildNode>;
825
869
  readonly firstChild: ChildNode | null;
@@ -832,7 +876,6 @@ declare const Share_base: {
832
876
  readonly parentElement: HTMLElement | null;
833
877
  readonly parentNode: ParentNode | null;
834
878
  readonly previousSibling: ChildNode | null;
835
- textContent: string | null;
836
879
  appendChild<T extends Node>(node: T): T;
837
880
  cloneNode(subtree?: boolean): Node;
838
881
  compareDocumentPosition(other: Node): number;
@@ -867,6 +910,7 @@ declare const Share_base: {
867
910
  readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
868
911
  readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
869
912
  dispatchEvent(event: Event): boolean;
913
+ ariaActiveDescendantElement: Element | null;
870
914
  ariaAtomic: string | null;
871
915
  ariaAutoComplete: string | null;
872
916
  ariaBrailleLabel: string | null;
@@ -877,21 +921,28 @@ declare const Share_base: {
877
921
  ariaColIndex: string | null;
878
922
  ariaColIndexText: string | null;
879
923
  ariaColSpan: string | null;
924
+ ariaControlsElements: ReadonlyArray<Element> | null;
880
925
  ariaCurrent: string | null;
926
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
881
927
  ariaDescription: string | null;
928
+ ariaDetailsElements: ReadonlyArray<Element> | null;
882
929
  ariaDisabled: string | null;
930
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
883
931
  ariaExpanded: string | null;
932
+ ariaFlowToElements: ReadonlyArray<Element> | null;
884
933
  ariaHasPopup: string | null;
885
934
  ariaHidden: string | null;
886
935
  ariaInvalid: string | null;
887
936
  ariaKeyShortcuts: string | null;
888
937
  ariaLabel: string | null;
938
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
889
939
  ariaLevel: string | null;
890
940
  ariaLive: string | null;
891
941
  ariaModal: string | null;
892
942
  ariaMultiLine: string | null;
893
943
  ariaMultiSelectable: string | null;
894
944
  ariaOrientation: string | null;
945
+ ariaOwnsElements: ReadonlyArray<Element> | null;
895
946
  ariaPlaceholder: string | null;
896
947
  ariaPosInSet: string | null;
897
948
  ariaPressed: string | null;
@@ -924,6 +975,7 @@ declare const Share_base: {
924
975
  readonly firstElementChild: Element | null;
925
976
  readonly lastElementChild: Element | null;
926
977
  append(...nodes: (Node | string)[]): void;
978
+ moveBefore(node: Node, child: Node | null): void;
927
979
  prepend(...nodes: (Node | string)[]): void;
928
980
  querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
929
981
  querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
@@ -949,18 +1001,20 @@ declare const Share_base: {
949
1001
  onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
950
1002
  onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
951
1003
  onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
952
- onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1004
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
953
1005
  onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
954
- onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1006
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1007
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
955
1008
  onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
956
1009
  oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
957
1010
  oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
958
1011
  oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
959
1012
  onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
960
- onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1013
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
961
1014
  onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1015
+ oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
962
1016
  oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
963
- oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1017
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
964
1018
  oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
965
1019
  oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
966
1020
  oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -980,7 +1034,7 @@ declare const Share_base: {
980
1034
  onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
981
1035
  onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
982
1036
  ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
983
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1037
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
984
1038
  oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
985
1039
  onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
986
1040
  onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
@@ -1008,6 +1062,7 @@ declare const Share_base: {
1008
1062
  onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1009
1063
  onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1010
1064
  onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1065
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1011
1066
  onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1012
1067
  onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
1013
1068
  onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -1026,7 +1081,7 @@ declare const Share_base: {
1026
1081
  onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1027
1082
  onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1028
1083
  ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1029
- ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1084
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1030
1085
  ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1031
1086
  ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1032
1087
  ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
@@ -1044,7 +1099,7 @@ declare const Share_base: {
1044
1099
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1045
1100
  autofocus: boolean;
1046
1101
  readonly dataset: DOMStringMap;
1047
- nonce?: string;
1102
+ nonce: string;
1048
1103
  tabIndex: number;
1049
1104
  blur(): void;
1050
1105
  focus(options?: FocusOptions): void;
@@ -1055,9 +1110,10 @@ declare const Share_base: {
1055
1110
  accessKey: string;
1056
1111
  readonly accessKeyLabel: string;
1057
1112
  autocapitalize: string;
1113
+ autocorrect: boolean;
1058
1114
  dir: string;
1059
1115
  draggable: boolean;
1060
- hidden: boolean;
1116
+ hidden: boolean | "until-found";
1061
1117
  inert: boolean;
1062
1118
  innerText: string;
1063
1119
  lang: string;
@@ -1075,8 +1131,8 @@ declare const Share_base: {
1075
1131
  attachInternals(): ElementInternals;
1076
1132
  click(): void;
1077
1133
  hidePopover(): void;
1078
- showPopover(): void;
1079
- togglePopover(options?: boolean): boolean;
1134
+ showPopover(options?: ShowPopoverOptions): void;
1135
+ togglePopover(options?: TogglePopoverOptions | boolean): boolean;
1080
1136
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1081
1137
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1082
1138
  removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -1090,6 +1146,7 @@ declare const Share_base: {
1090
1146
  readonly clientTop: number;
1091
1147
  readonly clientWidth: number;
1092
1148
  readonly currentCSSZoom: number;
1149
+ readonly customElementRegistry: CustomElementRegistry | null;
1093
1150
  id: string;
1094
1151
  innerHTML: string;
1095
1152
  readonly localName: string;
@@ -1140,6 +1197,9 @@ declare const Share_base: {
1140
1197
  insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
1141
1198
  insertAdjacentHTML(position: InsertPosition, string: string): void;
1142
1199
  insertAdjacentText(where: InsertPosition, data: string): void;
1200
+ matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
1201
+ matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
1202
+ matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
1143
1203
  matches(selectors: string): boolean;
1144
1204
  releasePointerCapture(pointerId: number): void;
1145
1205
  removeAttribute(qualifiedName: string): void;
@@ -1162,6 +1222,8 @@ declare const Share_base: {
1162
1222
  setPointerCapture(pointerId: number): void;
1163
1223
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
1164
1224
  webkitMatchesSelector(selectors: string): boolean;
1225
+ get textContent(): string;
1226
+ set textContent(value: string | null);
1165
1227
  readonly baseURI: string;
1166
1228
  readonly childNodes: NodeListOf<ChildNode>;
1167
1229
  readonly firstChild: ChildNode | null;
@@ -1174,7 +1236,6 @@ declare const Share_base: {
1174
1236
  readonly parentElement: HTMLElement | null;
1175
1237
  readonly parentNode: ParentNode | null;
1176
1238
  readonly previousSibling: ChildNode | null;
1177
- textContent: string | null;
1178
1239
  appendChild<T extends Node>(node: T): T;
1179
1240
  cloneNode(subtree?: boolean): Node;
1180
1241
  compareDocumentPosition(other: Node): number;
@@ -1209,6 +1270,7 @@ declare const Share_base: {
1209
1270
  readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
1210
1271
  readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
1211
1272
  dispatchEvent(event: Event): boolean;
1273
+ ariaActiveDescendantElement: Element | null;
1212
1274
  ariaAtomic: string | null;
1213
1275
  ariaAutoComplete: string | null;
1214
1276
  ariaBrailleLabel: string | null;
@@ -1219,21 +1281,28 @@ declare const Share_base: {
1219
1281
  ariaColIndex: string | null;
1220
1282
  ariaColIndexText: string | null;
1221
1283
  ariaColSpan: string | null;
1284
+ ariaControlsElements: ReadonlyArray<Element> | null;
1222
1285
  ariaCurrent: string | null;
1286
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
1223
1287
  ariaDescription: string | null;
1288
+ ariaDetailsElements: ReadonlyArray<Element> | null;
1224
1289
  ariaDisabled: string | null;
1290
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
1225
1291
  ariaExpanded: string | null;
1292
+ ariaFlowToElements: ReadonlyArray<Element> | null;
1226
1293
  ariaHasPopup: string | null;
1227
1294
  ariaHidden: string | null;
1228
1295
  ariaInvalid: string | null;
1229
1296
  ariaKeyShortcuts: string | null;
1230
1297
  ariaLabel: string | null;
1298
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
1231
1299
  ariaLevel: string | null;
1232
1300
  ariaLive: string | null;
1233
1301
  ariaModal: string | null;
1234
1302
  ariaMultiLine: string | null;
1235
1303
  ariaMultiSelectable: string | null;
1236
1304
  ariaOrientation: string | null;
1305
+ ariaOwnsElements: ReadonlyArray<Element> | null;
1237
1306
  ariaPlaceholder: string | null;
1238
1307
  ariaPosInSet: string | null;
1239
1308
  ariaPressed: string | null;
@@ -1266,6 +1335,7 @@ declare const Share_base: {
1266
1335
  readonly firstElementChild: Element | null;
1267
1336
  readonly lastElementChild: Element | null;
1268
1337
  append(...nodes: (Node | string)[]): void;
1338
+ moveBefore(node: Node, child: Node | null): void;
1269
1339
  prepend(...nodes: (Node | string)[]): void;
1270
1340
  querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
1271
1341
  querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
@@ -1291,18 +1361,20 @@ declare const Share_base: {
1291
1361
  onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1292
1362
  onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1293
1363
  onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1294
- onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1364
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1295
1365
  onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
1296
- onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1366
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1367
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1297
1368
  onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1298
1369
  oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1299
1370
  oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1300
1371
  oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1301
1372
  onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1302
- onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1373
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1303
1374
  onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1375
+ oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1304
1376
  oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1305
- oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1377
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1306
1378
  oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1307
1379
  oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1308
1380
  oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -1322,7 +1394,7 @@ declare const Share_base: {
1322
1394
  onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1323
1395
  onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
1324
1396
  ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1325
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1397
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
1326
1398
  oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1327
1399
  onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1328
1400
  onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
@@ -1350,6 +1422,7 @@ declare const Share_base: {
1350
1422
  onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1351
1423
  onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1352
1424
  onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1425
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1353
1426
  onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1354
1427
  onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
1355
1428
  onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -1368,7 +1441,7 @@ declare const Share_base: {
1368
1441
  onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1369
1442
  onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1370
1443
  ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1371
- ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1444
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1372
1445
  ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1373
1446
  ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1374
1447
  ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
@@ -1386,12 +1459,12 @@ declare const Share_base: {
1386
1459
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1387
1460
  autofocus: boolean;
1388
1461
  readonly dataset: DOMStringMap;
1389
- nonce?: string;
1462
+ nonce: string;
1390
1463
  tabIndex: number;
1391
1464
  blur(): void;
1392
1465
  focus(options?: FocusOptions): void;
1393
1466
  };
1394
- "__#2@#announcer": import("../index.js").Announcer;
1467
+ announcer: import("../index.js").Announcer;
1395
1468
  } & import("../base/index.js").Constructor<HTMLElement>;
1396
1469
  /**
1397
1470
  * Uses the