presenter 0.6.3 → 0.6.4
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/export.js +1 -1
- package/dist/objects/Group.d.ts +2 -0
- package/dist/objects/Path.d.ts +1 -0
- package/dist/presenter.js +1 -1
- package/dist/types/Animate.d.ts +1 -0
- package/package.json +2 -1
package/dist/types/Animate.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface Animate<T extends SlideObject> extends BaseUnitSlideAnimation {
|
|
|
7
7
|
readonly type: typeof AnimationType.ANIMATE;
|
|
8
8
|
readonly object: T;
|
|
9
9
|
readonly props: Partial<Omit<T, "objectType">>;
|
|
10
|
+
readonly delay: number;
|
|
10
11
|
readonly duration: number;
|
|
11
12
|
readonly easing: EasingFunction;
|
|
12
13
|
/** Whether animation should block future animations from starting. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "presenter",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "A JavaScript presentation library",
|
|
5
5
|
"main": "dist/presenter.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/brianyu28/presenter#readme",
|
|
36
36
|
"license": "GPL-3.0-or-later",
|
|
37
|
+
"sideEffects": false,
|
|
37
38
|
"dependencies": {
|
|
38
39
|
"d3-ease": "^3.0.1",
|
|
39
40
|
"flubber": "^0.4.2",
|