@likecoin/epub-ts 0.4.0 → 0.4.2
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/epub.cjs +3 -3
- package/dist/epub.cjs.map +1 -1
- package/dist/epub.js +48 -23
- package/dist/epub.js.map +1 -1
- package/dist/epub.umd.js +3 -3
- package/dist/epub.umd.js.map +1 -1
- package/dist/managers/default/index.d.ts +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/utils/constants.d.ts +1 -1
- package/package.json +1 -1
|
@@ -42,6 +42,7 @@ declare class DefaultViewManager implements IEventEmitter {
|
|
|
42
42
|
writingMode: string;
|
|
43
43
|
_hasScrolled: boolean;
|
|
44
44
|
_onScroll: (...args: any[]) => void;
|
|
45
|
+
_onUnload: (e: Event) => void;
|
|
45
46
|
orientationTimeout: ReturnType<typeof setTimeout> | undefined;
|
|
46
47
|
resizeTimeout: ReturnType<typeof setTimeout>;
|
|
47
48
|
afterScrolled: ReturnType<typeof setTimeout>;
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const EPUBJS_VERSION = "0.3";
|
|
2
|
-
export declare const DOM_EVENTS: readonly ["keydown", "keyup", "keypress", "mouseup", "mousedown", "mousemove", "click", "touchend", "touchstart", "touchmove"];
|
|
2
|
+
export declare const DOM_EVENTS: readonly ["keydown", "keyup", "keypress", "mouseup", "mousedown", "mousemove", "click", "dblclick", "touchend", "touchstart", "touchmove"];
|
|
3
3
|
export declare const EVENTS: {
|
|
4
4
|
readonly BOOK: {
|
|
5
5
|
readonly OPEN_FAILED: "openFailed";
|