openvideo 0.2.7 → 0.2.8
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/animation/presets.d.ts +2 -0
- package/dist/animation/types.d.ts +9 -0
- package/dist/{browserAll-BD7Md8lf.js → browserAll-BRIWzNRE.js} +2 -2
- package/dist/{index-C8AGBOoN.js → index-DoARYsuw.js} +6860 -6782
- package/dist/index.es.js +1 -1
- package/dist/index.umd.js +319 -319
- package/dist/sprite/base-sprite.d.ts +1 -0
- package/dist/sprite/pixi-sprite-renderer.d.ts +1 -0
- package/dist/{webworkerAll-CySMcdYd.js → webworkerAll-gb7teQp3.js} +1 -1
- package/package.json +1 -1
|
@@ -8,6 +8,8 @@ export declare const zoomIn: AnimationFactory;
|
|
|
8
8
|
export declare const zoomOut: AnimationFactory;
|
|
9
9
|
export declare const blurIn: AnimationFactory;
|
|
10
10
|
export declare const blurOut: AnimationFactory;
|
|
11
|
+
export declare const motionBlurIn: AnimationFactory;
|
|
12
|
+
export declare const motionBlurOut: AnimationFactory;
|
|
11
13
|
export declare const charFadeIn: AnimationFactory;
|
|
12
14
|
export declare const charSlideUp: AnimationFactory;
|
|
13
15
|
export declare const charTypewriter: AnimationFactory;
|
|
@@ -12,6 +12,7 @@ export interface AnimationProps {
|
|
|
12
12
|
blur?: number;
|
|
13
13
|
brightness?: number;
|
|
14
14
|
mirror?: number;
|
|
15
|
+
motionBlur?: number;
|
|
15
16
|
}
|
|
16
17
|
export interface AnimationOptions {
|
|
17
18
|
duration: number;
|
|
@@ -52,6 +53,7 @@ export interface AnimationTransform {
|
|
|
52
53
|
blur?: number;
|
|
53
54
|
brightness?: number;
|
|
54
55
|
mirror?: number;
|
|
56
|
+
motionBlur?: number;
|
|
55
57
|
}
|
|
56
58
|
export interface KeyframeData {
|
|
57
59
|
[key: string]: Partial<AnimationProps & {
|
|
@@ -143,4 +145,11 @@ export declare const ANIMATABLE_PROPERTIES: {
|
|
|
143
145
|
readonly step: 1;
|
|
144
146
|
readonly default: 0;
|
|
145
147
|
};
|
|
148
|
+
readonly motionBlur: {
|
|
149
|
+
readonly label: "Motion Blur";
|
|
150
|
+
readonly min: 0;
|
|
151
|
+
readonly max: 500;
|
|
152
|
+
readonly step: 1;
|
|
153
|
+
readonly default: 0;
|
|
154
|
+
};
|
|
146
155
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { e as a, A as e, C as i, a as s, E as t, F as n, D as d } from "./index-
|
|
2
|
-
import "./webworkerAll-
|
|
1
|
+
import { e as a, A as e, C as i, a as s, E as t, F as n, D as d } from "./index-DoARYsuw.js";
|
|
2
|
+
import "./webworkerAll-gb7teQp3.js";
|
|
3
3
|
a.add(e);
|
|
4
4
|
a.mixin(i, s);
|
|
5
5
|
a.add(t);
|