@fc3/mmcadi 0.1.50 → 0.1.52

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.
@@ -1,47 +1,30 @@
1
1
  declare class InteractionHelper {
2
- private drag_active;
3
- private drag_origin_block;
4
- private drag_placeholder;
5
- private drag_ghost;
6
- private drag_start_y;
7
- private drag_pointer_offset_y;
8
- private drag_press_timer;
9
- private swipe_active;
10
- private swipe_block;
11
- private swipe_start_x;
12
- private swipe_start_y;
13
- private swipe_content;
14
- private swipe_menu_width;
15
- private open_swipe_block;
16
- private open_swipe_content;
2
+ private drag_start_coordinate;
3
+ private drag_delay_timer;
17
4
  constructor();
18
5
  attach(): void;
19
6
  isDragging(): boolean;
20
- private getBlockElements;
21
- private getSiblingBlocks;
22
- private onPressStart;
23
- private onNativeDragStart;
24
- private onPointerMove;
25
- private onPressEnd;
26
- private beginSwipe;
27
- private closeOpenSwipeMenu;
28
- private teardownSwipe;
29
- private onGlobalTouchStart;
30
- private getSwipeMenuFor;
31
- private resetSwipeState;
32
- private ensureSwipeUI;
33
- private navigateToAddAfter;
34
- private enforceTimeVisibility;
35
- private navigateToBlockLink;
36
- private beginDrag;
37
- private updatePlaceholderPosition;
38
- private animateWithFlip;
39
- private postReposition;
40
- private computeTargetIndexPath;
41
- private updateTopLevelIndexPaths;
42
- private cleanupDragElements;
43
- private resetDragState;
44
- private clearPressTimer;
45
- private getEventPoint;
7
+ private handlePointerDown;
8
+ private scheduleDelayedDrag;
9
+ private cancelDelayedDrag;
10
+ private removeClassFromAllElements;
11
+ private beginDelayedDrag;
12
+ private handleNativeDragStart;
13
+ private handlePointerMove;
14
+ private translateDragTargetBlock;
15
+ private getGhostForBlock;
16
+ private getPreviousBlock;
17
+ private getNextBlock;
18
+ private handlePointerUp;
19
+ private handlePointerCancel;
20
+ private stopDragging;
21
+ private showFullscreenBlockingOverlay;
22
+ private hideFullscreenBlockingOverlay;
23
+ private stopDraggingAsync;
24
+ private getIndexPathSafe;
25
+ private getIndexPathForGhost;
26
+ private submitReposition;
27
+ private getEventCoordinate;
28
+ private getDragStartCoordinate;
46
29
  }
47
30
  export default InteractionHelper;