@ones-editor/editor 2.1.1-beta.54 → 2.1.1-beta.55

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.
@@ -12,8 +12,8 @@ export declare class RootContainer {
12
12
  destroy(): void;
13
13
  handleContextMenu: (event: MouseEvent) => void;
14
14
  handleResize: () => void;
15
- handleClick: (event: MouseEvent | TouchEvent) => void;
16
- handleBlockClick: (event: MouseEvent | TouchEvent, block: BlockElement, elem: Element) => void;
15
+ handleClick: (event: MouseEvent) => void;
16
+ handleBlockClick: (event: MouseEvent, block: BlockElement, elem: Element) => void;
17
17
  handleDblClick: (event: MouseEvent) => void;
18
18
  handleMouseDown: (event: TouchEvent | MouseEvent) => void;
19
19
  handleMouseMove: (event: MouseEvent) => void;
@@ -9,11 +9,11 @@ export declare class OnesEditorMobileHelper implements OnesEditorCustom {
9
9
  private longPressTriggered;
10
10
  private gripper;
11
11
  private cursorToolbar;
12
+ private isMoving;
12
13
  constructor(editor: OnesEditor);
13
14
  destroy(): void;
14
15
  handleSelectionChange: () => void;
15
- handleLongPress: (event: TouchEvent) => void;
16
- private isMoving;
16
+ handleLongPress: (event: TouchEvent) => boolean;
17
17
  handleTouchMove: (event: TouchEvent) => void;
18
18
  handleTouchStart: (event: TouchEvent) => void;
19
19
  handleTouchEnd: (event: TouchEvent) => void;