@cliquify.me/timeline 3.1.11 → 3.1.12
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/events/canvas/internal.d.ts +4 -3
- package/dist/index.es.js +4257 -4172
- package/dist/index.umd.js +68 -68
- package/dist/mixins/track-items.d.ts +1 -1
- package/dist/mixins/transitions.d.ts +1 -1
- package/dist/utils/group-by-transition.d.ts +1 -1
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Canvas, FabricObject } from 'fabric';
|
|
2
2
|
import { Placeholder, Track } from '../../objects';
|
|
3
3
|
|
|
4
|
-
interface MovingState {
|
|
4
|
+
export interface MovingState {
|
|
5
5
|
canvas: Canvas | null;
|
|
6
6
|
enableGuideRedraw: boolean;
|
|
7
7
|
isPointerOverHelperTrack: boolean;
|
|
@@ -28,8 +28,9 @@ interface MovingState {
|
|
|
28
28
|
index: number;
|
|
29
29
|
}>;
|
|
30
30
|
isDragOver: boolean;
|
|
31
|
-
|
|
31
|
+
initialTrackPoints: number[];
|
|
32
|
+
updateItemsInTrack: string | null;
|
|
33
|
+
orderNormalTrack: boolean;
|
|
32
34
|
}
|
|
33
35
|
export declare const getState: () => MovingState;
|
|
34
36
|
export declare const setState: (updates: Partial<MovingState>) => void;
|
|
35
|
-
export {};
|