@visactor/vrender-animate 1.0.0 → 1.0.1

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.
@@ -25,4 +25,5 @@ class FadeOut extends common_1.CommonOut {
25
25
  }
26
26
  }
27
27
 
28
- exports.FadeOut = FadeOut;
28
+ exports.FadeOut = FadeOut;
29
+ //# sourceMappingURL=fade.js.map
@@ -22,5 +22,4 @@ class GroupFadeOut extends common_1.CommonOut {
22
22
  }
23
23
  }
24
24
 
25
- exports.GroupFadeOut = GroupFadeOut;
26
- //# sourceMappingURL=groupFade.js.map
25
+ exports.GroupFadeOut = GroupFadeOut;
@@ -446,4 +446,5 @@ const registerCustomAnimate = () => {
446
446
  animate_executor_1.AnimateExecutor.registerBuiltInAnimate("streamLight", streamLight_1.StreamLight);
447
447
  };
448
448
 
449
- exports.registerCustomAnimate = registerCustomAnimate;
449
+ exports.registerCustomAnimate = registerCustomAnimate;
450
+ //# sourceMappingURL=register.js.map
@@ -118,5 +118,4 @@ class ScaleOut extends custom_animate_1.ACustomAnimate {
118
118
  }
119
119
  }
120
120
 
121
- exports.ScaleOut = ScaleOut;
122
- //# sourceMappingURL=scale.js.map
121
+ exports.ScaleOut = ScaleOut;
@@ -18,4 +18,5 @@ var __createBinding = this && this.__createBinding || (Object.create ? function(
18
18
  Object.defineProperty(exports, "__esModule", {
19
19
  value: !0
20
20
  }), __exportStar(require("./animation-state"), exports), __exportStar(require("./graphic-extension"), exports),
21
- __exportStar(require("./animation-states-registry"), exports);
21
+ __exportStar(require("./animation-states-registry"), exports);
22
+ //# sourceMappingURL=index.js.map
@@ -135,5 +135,4 @@ class DefaultTicker extends vutils_1.EventEmitter {
135
135
  }
136
136
  }
137
137
 
138
- exports.DefaultTicker = DefaultTicker;
139
- //# sourceMappingURL=default-ticker.js.map
138
+ exports.DefaultTicker = DefaultTicker;
package/es/custom/fade.js CHANGED
@@ -15,4 +15,5 @@ export class FadeOut extends CommonOut {
15
15
  constructor(from, to, duration, easing, params) {
16
16
  super(from, to, duration, easing, params), this.keys = [ "opacity", "fillOpacity", "strokeOpacity" ];
17
17
  }
18
- }
18
+ }
19
+ //# sourceMappingURL=fade.js.map
@@ -12,5 +12,4 @@ export class GroupFadeOut extends CommonOut {
12
12
  constructor(from, to, duration, easing, params) {
13
13
  super(from, to, duration, easing, params), this.keys = [ "baseOpacity" ];
14
14
  }
15
- }
16
- //# sourceMappingURL=groupFade.js.map
15
+ }
@@ -82,4 +82,5 @@ export const registerCustomAnimate = () => {
82
82
  AnimateExecutor.registerBuiltInAnimate("MotionPath", MotionPath), AnimateExecutor.registerBuiltInAnimate("streamLight", StreamLight);
83
83
  };
84
84
 
85
- export { ClipIn, ClipOut, FadeIn, FadeOut, GrowAngleIn, GrowAngleOut, GrowCenterIn, GrowCenterOut, GrowHeightIn, GrowHeightOut, GrowPointsIn, GrowPointsOut, GrowPointsXIn, GrowPointsXOut, GrowPointsYIn, GrowPointsYOut, GrowRadiusIn, GrowRadiusOut, GrowWidthIn, GrowWidthOut, IncreaseCount, PoptipAppear, PoptipDisappear, ScaleIn, ScaleOut, MoveIn, MoveOut, RotateIn, RotateOut, State, Update, MotionPath, LabelItemAppear, LabelItemDisappear, InputText, InputRichText, OutputRichText, SlideRichText, SlideOutRichText, SlideIn, GrowIn, SpinIn, MoveScaleIn, MoveRotateIn, SlideOut, GrowOut, SpinOut, MoveScaleOut, MoveRotateOut, StrokeIn, StrokeOut, PulseAnimate, GroupFadeIn, GroupFadeOut, FromTo, StreamLight };
85
+ export { ClipIn, ClipOut, FadeIn, FadeOut, GrowAngleIn, GrowAngleOut, GrowCenterIn, GrowCenterOut, GrowHeightIn, GrowHeightOut, GrowPointsIn, GrowPointsOut, GrowPointsXIn, GrowPointsXOut, GrowPointsYIn, GrowPointsYOut, GrowRadiusIn, GrowRadiusOut, GrowWidthIn, GrowWidthOut, IncreaseCount, PoptipAppear, PoptipDisappear, ScaleIn, ScaleOut, MoveIn, MoveOut, RotateIn, RotateOut, State, Update, MotionPath, LabelItemAppear, LabelItemDisappear, InputText, InputRichText, OutputRichText, SlideRichText, SlideOutRichText, SlideIn, GrowIn, SpinIn, MoveScaleIn, MoveRotateIn, SlideOut, GrowOut, SpinOut, MoveScaleOut, MoveRotateOut, StrokeIn, StrokeOut, PulseAnimate, GroupFadeIn, GroupFadeOut, FromTo, StreamLight };
86
+ //# sourceMappingURL=register.js.map
@@ -108,5 +108,4 @@ export class ScaleOut extends ACustomAnimate {
108
108
  attribute[key] = this.from[key] + (this.to[key] - this.from[key]) * ratio;
109
109
  })), this.target.addUpdatePositionTag(), this.target.addUpdateBoundTag();
110
110
  }
111
- }
112
- //# sourceMappingURL=scale.js.map
111
+ }
package/es/state/index.js CHANGED
@@ -2,4 +2,5 @@ export * from "./animation-state";
2
2
 
3
3
  export * from "./graphic-extension";
4
4
 
5
- export * from "./animation-states-registry";
5
+ export * from "./animation-states-registry";
6
+ //# sourceMappingURL=index.js.map
@@ -129,5 +129,4 @@ export class DefaultTicker extends EventEmitter {
129
129
  if ("performance" === this.stage.params.optimize.tickRenderMode) return !1;
130
130
  return delta < this.interval + 2 * (Math.random() - .5) * this._jitter;
131
131
  }
132
- }
133
- //# sourceMappingURL=default-ticker.js.map
132
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vrender-animate",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
5
  "sideEffects": false,
6
6
  "main": "cjs/index.js",
@@ -12,8 +12,8 @@
12
12
  "dist"
13
13
  ],
14
14
  "dependencies": {
15
- "@visactor/vutils": "1.0.4",
16
- "@visactor/vrender-core": "1.0.0"
15
+ "@visactor/vutils": "1.0.6",
16
+ "@visactor/vrender-core": "1.0.1"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@rushstack/eslint-patch": "~1.1.4",