@cliquify.me/timeline 6.0.9 → 7.0.0
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/constants/constants.d.ts +2 -2
- package/dist/events/canvas/scrolling.d.ts +0 -3
- package/dist/index.es.js +2330 -2203
- package/dist/index.umd.js +52 -52
- package/dist/objects/transition.d.ts +2 -0
- package/package.json +2 -2
|
@@ -2,8 +2,8 @@ export declare const GIANT_ICON_SIZE = 100;
|
|
|
2
2
|
export declare const LARGE_ICON_SIZE = 30;
|
|
3
3
|
export declare const NORMAL_ICON_SIZE = 18;
|
|
4
4
|
export declare const SMALL_ICON_SIZE = 14;
|
|
5
|
-
export declare const SPACE_TO_RESIZE_X =
|
|
6
|
-
export declare const SPACE_TO_RESIZE_Y =
|
|
5
|
+
export declare const SPACE_TO_RESIZE_X = 12;
|
|
6
|
+
export declare const SPACE_TO_RESIZE_Y = 24;
|
|
7
7
|
export declare const LARGER_FONT_SIZE = 30;
|
|
8
8
|
export declare const LARGE_FONT_SIZE = 24;
|
|
9
9
|
export declare const NORMAL_FONT_SIZE = 16;
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import { ModifiedEvent, TPointerEvent } from 'fabric';
|
|
2
1
|
import { default as Timeline } from '../../timeline';
|
|
3
2
|
|
|
4
|
-
export declare function onMouseUpForScroll(): void;
|
|
5
|
-
export declare function scrollOnMovingForScroll(this: Timeline, e: ModifiedEvent<TPointerEvent>): void;
|
|
6
3
|
export declare function addScrollEvents(timeline: Timeline): void;
|
|
7
4
|
export declare function removeScrollEvents(timeline: Timeline): void;
|