mol_dump_lib 0.0.58 → 0.0.60
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/node.d.ts +5 -0
- package/package.json +1 -1
- package/web.d.ts +5 -0
package/node.d.ts
CHANGED
|
@@ -950,11 +950,15 @@ declare namespace $ {
|
|
|
950
950
|
readonly offsetTop: number;
|
|
951
951
|
readonly offsetWidth: number;
|
|
952
952
|
outerText: string;
|
|
953
|
+
popover: string | null;
|
|
953
954
|
spellcheck: boolean;
|
|
954
955
|
title: string;
|
|
955
956
|
translate: boolean;
|
|
956
957
|
attachInternals(): ElementInternals;
|
|
957
958
|
click(): void;
|
|
959
|
+
hidePopover(): void;
|
|
960
|
+
showPopover(): void;
|
|
961
|
+
togglePopover(force?: boolean | undefined): void;
|
|
958
962
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
959
963
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
960
964
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
@@ -1219,6 +1223,7 @@ declare namespace $ {
|
|
|
1219
1223
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1220
1224
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
1221
1225
|
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1226
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1222
1227
|
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
1223
1228
|
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1224
1229
|
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
package/package.json
CHANGED
package/web.d.ts
CHANGED
|
@@ -808,11 +808,15 @@ declare namespace $ {
|
|
|
808
808
|
readonly offsetTop: number;
|
|
809
809
|
readonly offsetWidth: number;
|
|
810
810
|
outerText: string;
|
|
811
|
+
popover: string | null;
|
|
811
812
|
spellcheck: boolean;
|
|
812
813
|
title: string;
|
|
813
814
|
translate: boolean;
|
|
814
815
|
attachInternals(): ElementInternals;
|
|
815
816
|
click(): void;
|
|
817
|
+
hidePopover(): void;
|
|
818
|
+
showPopover(): void;
|
|
819
|
+
togglePopover(force?: boolean | undefined): void;
|
|
816
820
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
817
821
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
818
822
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
@@ -1077,6 +1081,7 @@ declare namespace $ {
|
|
|
1077
1081
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1078
1082
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
1079
1083
|
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1084
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1080
1085
|
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
1081
1086
|
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1082
1087
|
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|