@revideo/2d 0.4.7-two.1024 → 0.4.8-alpha.1032
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/editor/editor/tsconfig.build.tsbuildinfo +1 -1
- package/editor/index.js +151 -380
- package/editor/index.js.map +1 -1
- package/lib/code/CodeCursor.d.ts +74 -74
- package/lib/code/CodeDiffer.d.ts +16 -21
- package/lib/code/CodeDiffer.js +41 -39
- package/lib/code/CodeFragment.d.ts +8 -16
- package/lib/code/CodeFragment.js +36 -36
- package/lib/code/CodeHighlighter.d.ts +59 -59
- package/lib/code/CodeHighlighter.js +1 -1
- package/lib/code/CodeMetrics.d.ts +8 -12
- package/lib/code/CodeMetrics.js +24 -26
- package/lib/code/CodeRange.d.ts +5 -21
- package/lib/code/CodeRange.js +124 -131
- package/lib/code/CodeScope.d.ts +8 -18
- package/lib/code/CodeSelection.d.ts +4 -9
- package/lib/code/CodeSelection.js +8 -8
- package/lib/code/CodeSignal.d.ts +47 -74
- package/lib/code/CodeTokenizer.d.ts +1 -1
- package/lib/code/CodeTokenizer.js +41 -41
- package/lib/code/DefaultHighlightStyle.d.ts +2 -2
- package/lib/code/DefaultHighlightStyle.js +96 -96
- package/lib/code/LezerHighlighter.d.ts +19 -21
- package/lib/code/diff.d.ts +9 -12
- package/lib/code/diff.js +205 -218
- package/lib/code/extractRange.d.ts +4 -7
- package/lib/code/extractRange.js +71 -79
- package/lib/code/index.d.ts +1 -1
- package/lib/code/index.js +1 -1
- package/lib/components/Audio.d.ts +11 -11
- package/lib/components/Bezier.d.ts +18 -18
- package/lib/components/Circle.d.ts +90 -95
- package/lib/components/Code.d.ts +211 -244
- package/lib/components/CodeBlock.d.ts +1 -1
- package/lib/components/CubicBezier.d.ts +36 -36
- package/lib/components/Curve.d.ts +198 -208
- package/lib/components/Grid.d.ts +42 -47
- package/lib/components/Icon.d.ts +50 -55
- package/lib/components/Img.d.ts +79 -86
- package/lib/components/Knot.d.ts +78 -97
- package/lib/components/Latex.d.ts +12 -12
- package/lib/components/Layout.d.ts +413 -455
- package/lib/components/Line.d.ts +49 -61
- package/lib/components/Media.d.ts +37 -37
- package/lib/components/Node.d.ts +1 -1
- package/lib/components/Path.d.ts +1 -1
- package/lib/components/Polygon.d.ts +55 -60
- package/lib/components/QuadBezier.d.ts +29 -29
- package/lib/components/Ray.d.ts +28 -28
- package/lib/components/Rect.d.ts +108 -115
- package/lib/components/SVG.d.ts +1 -1
- package/lib/components/Shape.d.ts +1 -1
- package/lib/components/Spline.d.ts +40 -46
- package/lib/components/Txt.d.ts +44 -55
- package/lib/components/TxtLeaf.d.ts +16 -20
- package/lib/components/Video.d.ts +1 -0
- package/lib/components/Video.d.ts.map +1 -1
- package/lib/components/Video.js +9 -3
- package/lib/components/View2D.d.ts +22 -22
- package/lib/components/index.d.ts +2 -1
- package/lib/components/index.d.ts.map +1 -1
- package/lib/components/index.js +2 -1
- package/lib/components/types.d.ts +9 -22
- package/lib/curves/ArcSegment.d.ts +24 -36
- package/lib/curves/CircleSegment.d.ts +16 -26
- package/lib/curves/CubicBezierSegment.d.ts +13 -18
- package/lib/curves/CurveDrawingInfo.d.ts +9 -9
- package/lib/curves/CurvePoint.d.ts +13 -13
- package/lib/curves/CurveProfile.d.ts +5 -5
- package/lib/curves/CurveProfile.js +1 -1
- package/lib/curves/KnotInfo.d.ts +8 -8
- package/lib/curves/LineSegment.d.ts +14 -19
- package/lib/curves/Polynomial.d.ts +110 -110
- package/lib/curves/Polynomial2D.d.ts +20 -20
- package/lib/curves/PolynomialSegment.d.ts +37 -42
- package/lib/curves/QuadBezierSegment.d.ts +12 -12
- package/lib/curves/Segment.d.ts +7 -12
- package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
- package/lib/curves/createCurveProfileLerp.d.ts +6 -17
- package/lib/curves/getBezierSplineProfile.d.ts +4 -8
- package/lib/curves/getCircleProfile.d.ts +4 -10
- package/lib/curves/getPathProfile.d.ts +2 -2
- package/lib/curves/getPointAtDistance.d.ts +4 -7
- package/lib/curves/getPolylineProfile.d.ts +4 -8
- package/lib/curves/getRectProfile.d.ts +4 -9
- package/lib/curves/index.d.ts +1 -1
- package/lib/curves/index.js +1 -1
- package/lib/decorators/canvasStyleSignal.d.ts +3 -3
- package/lib/decorators/colorSignal.d.ts +1 -1
- package/lib/decorators/compound.d.ts +2 -4
- package/lib/decorators/computed.d.ts +1 -1
- package/lib/decorators/defaultStyle.d.ts +2 -5
- package/lib/decorators/filtersSignal.d.ts +8 -28
- package/lib/decorators/index.d.ts +1 -1
- package/lib/decorators/index.js +1 -1
- package/lib/decorators/initializers.d.ts +2 -5
- package/lib/decorators/initializers.js +19 -18
- package/lib/decorators/nodeName.d.ts +1 -1
- package/lib/decorators/nodeName.js +4 -4
- package/lib/decorators/signal.d.ts +20 -40
- package/lib/decorators/spacingSignal.d.ts +1 -1
- package/lib/decorators/vector2Signal.d.ts +7 -13
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/jsx-dev-runtime.d.ts +3 -3
- package/lib/jsx-dev-runtime.js +3 -3
- package/lib/jsx-runtime.d.ts +9 -19
- package/lib/jsx-runtime.js +18 -18
- package/lib/partials/Filter.d.ts +16 -24
- package/lib/partials/Gradient.d.ts +24 -30
- package/lib/partials/Pattern.d.ts +9 -14
- package/lib/partials/ShaderConfig.d.ts +74 -81
- package/lib/partials/index.d.ts +1 -1
- package/lib/partials/index.js +1 -1
- package/lib/partials/types.d.ts +6 -19
- package/lib/scenes/Scene2D.d.ts +24 -42
- package/lib/scenes/Scene2D.d.ts.map +1 -1
- package/lib/scenes/Scene2D.js +10 -2
- package/lib/scenes/index.d.ts +1 -1
- package/lib/scenes/index.js +1 -1
- package/lib/scenes/makeScene2D.d.ts +5 -7
- package/lib/scenes/useScene2D.d.ts +2 -2
- package/lib/tsconfig.build.tsbuildinfo +1 -1
- package/lib/utils/diff.d.ts +18 -25
- package/lib/utils/diff.js +87 -84
- package/lib/utils/index.d.ts +1 -1
- package/lib/utils/index.js +1 -1
- package/lib/utils/is.d.ts +2 -4
- package/lib/utils/is.js +2 -2
- package/lib/utils/makeSignalExtensions.d.ts +4 -11
- package/lib/utils/video/mp4-parser-manager.d.ts +1 -0
- package/lib/utils/video/mp4-parser-manager.d.ts.map +1 -1
- package/lib/utils/video/mp4-parser-manager.js +21 -4
- package/lib/utils/video/parser/index.d.ts +2 -0
- package/lib/utils/video/parser/index.d.ts.map +1 -0
- package/lib/utils/video/parser/index.js +2 -0
- package/lib/utils/video/parser/parser.d.ts +21 -0
- package/lib/utils/video/parser/parser.d.ts.map +1 -0
- package/lib/utils/video/parser/parser.js +168 -0
- package/lib/utils/video/parser/sampler.d.ts +16 -0
- package/lib/utils/video/parser/sampler.d.ts.map +1 -0
- package/lib/utils/video/parser/sampler.js +56 -0
- package/lib/utils/video/parser/segment.d.ts +44 -0
- package/lib/utils/video/parser/segment.d.ts.map +1 -0
- package/lib/utils/video/parser/segment.js +195 -0
- package/lib/utils/video/parser/sink.d.ts +9 -0
- package/lib/utils/video/parser/sink.d.ts.map +1 -0
- package/lib/utils/video/parser/sink.js +22 -0
- package/lib/utils/video/parser/utils.d.ts +10 -0
- package/lib/utils/video/parser/utils.d.ts.map +1 -0
- package/lib/utils/video/parser/utils.js +22 -0
- package/package.json +4 -4
- package/src/lib/components/Video.ts +9 -2
- package/src/lib/components/index.ts +1 -0
- package/src/lib/scenes/Scene2D.ts +11 -1
- package/src/lib/utils/video/mp4-parser-manager.ts +24 -5
- package/src/lib/utils/video/parser/index.ts +1 -0
- package/src/lib/utils/video/parser/parser.ts +256 -0
- package/src/lib/utils/video/parser/sampler.ts +72 -0
- package/src/lib/utils/video/parser/segment.ts +252 -0
- package/src/lib/utils/video/parser/sink.ts +29 -0
- package/src/lib/utils/video/parser/utils.ts +31 -0
- package/lib/components/HlsVideo.d.ts +0 -62
- package/lib/components/HlsVideo.d.ts.map +0 -1
- package/lib/components/HlsVideo.js +0 -169
- package/lib/tsconfig.tsbuildinfo +0 -1
- package/lib/utils/video/mp4-parser.d.ts +0 -63
- package/lib/utils/video/mp4-parser.d.ts.map +0 -1
- package/lib/utils/video/mp4-parser.js +0 -264
- package/src/lib/utils/video/mp4-parser.ts +0 -340
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import {BBox, Vector2} from '@revideo/core';
|
|
2
|
-
import {Polynomial} from './Polynomial';
|
|
1
|
+
import { BBox, Vector2 } from '@revideo/core';
|
|
2
|
+
import { Polynomial } from './Polynomial';
|
|
3
3
|
export declare class Polynomial2D {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
4
|
+
readonly c0: Vector2 | Polynomial;
|
|
5
|
+
readonly c1: Vector2 | Polynomial;
|
|
6
|
+
readonly c2?: Vector2 | undefined;
|
|
7
|
+
readonly c3?: Vector2 | undefined;
|
|
8
|
+
readonly x: Polynomial;
|
|
9
|
+
readonly y: Polynomial;
|
|
10
|
+
constructor(c0: Vector2, c1: Vector2, c2: Vector2, c3: Vector2);
|
|
11
|
+
constructor(c0: Vector2, c1: Vector2, c2: Vector2);
|
|
12
|
+
constructor(x: Polynomial, y: Polynomial);
|
|
13
|
+
eval(t: number, derivative?: number): Vector2;
|
|
14
|
+
split(u: number): [Polynomial2D, Polynomial2D];
|
|
15
|
+
differentiate(n?: number): Polynomial2D;
|
|
16
|
+
evalDerivative(t: number): Vector2;
|
|
17
|
+
/**
|
|
18
|
+
* Calculate the tight axis-aligned bounds of the curve in the unit interval.
|
|
19
|
+
*/
|
|
20
|
+
getBounds(): BBox;
|
|
21
21
|
}
|
|
22
|
-
//# sourceMappingURL=Polynomial2D.d.ts.map
|
|
22
|
+
//# sourceMappingURL=Polynomial2D.d.ts.map
|
|
@@ -1,44 +1,39 @@
|
|
|
1
|
-
import {BBox, Vector2} from '@revideo/core';
|
|
2
|
-
import {CurvePoint} from './CurvePoint';
|
|
3
|
-
import {Polynomial2D} from './Polynomial2D';
|
|
4
|
-
import {Segment} from './Segment';
|
|
5
|
-
import {UniformPolynomialCurveSampler} from './UniformPolynomialCurveSampler';
|
|
1
|
+
import { BBox, Vector2 } from '@revideo/core';
|
|
2
|
+
import { CurvePoint } from './CurvePoint';
|
|
3
|
+
import { Polynomial2D } from './Polynomial2D';
|
|
4
|
+
import { Segment } from './Segment';
|
|
5
|
+
import { UniformPolynomialCurveSampler } from './UniformPolynomialCurveSampler';
|
|
6
6
|
export declare abstract class PolynomialSegment extends Segment {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
context: CanvasRenderingContext2D | Path2D
|
|
38
|
-
start?: number,
|
|
39
|
-
end?: number,
|
|
40
|
-
move?: boolean,
|
|
41
|
-
): [CurvePoint, CurvePoint];
|
|
42
|
-
protected abstract doDraw(context: CanvasRenderingContext2D | Path2D): void;
|
|
7
|
+
protected readonly curve: Polynomial2D;
|
|
8
|
+
protected readonly length: number;
|
|
9
|
+
protected readonly pointSampler: UniformPolynomialCurveSampler;
|
|
10
|
+
get arcLength(): number;
|
|
11
|
+
abstract get points(): Vector2[];
|
|
12
|
+
protected constructor(curve: Polynomial2D, length: number);
|
|
13
|
+
getBBox(): BBox;
|
|
14
|
+
/**
|
|
15
|
+
* Evaluate the polynomial at the given t value.
|
|
16
|
+
*
|
|
17
|
+
* @param t - The t value at which to evaluate the curve.
|
|
18
|
+
*/
|
|
19
|
+
eval(t: number): CurvePoint;
|
|
20
|
+
/**
|
|
21
|
+
* Split the curve into two separate polynomials at the given t value. The two
|
|
22
|
+
* resulting curves form the same overall shape as the original curve.
|
|
23
|
+
*
|
|
24
|
+
* @param t - The t value at which to split the curve.
|
|
25
|
+
*/
|
|
26
|
+
abstract split(t: number): [PolynomialSegment, PolynomialSegment];
|
|
27
|
+
getPoint(distance: number): CurvePoint;
|
|
28
|
+
transformPoints(matrix: DOMMatrix): Vector2[];
|
|
29
|
+
/**
|
|
30
|
+
* Return the tangent of the point that sits at the provided t value on the
|
|
31
|
+
* curve.
|
|
32
|
+
*
|
|
33
|
+
* @param t - The t value at which to evaluate the curve.
|
|
34
|
+
*/
|
|
35
|
+
tangent(t: number): Vector2;
|
|
36
|
+
draw(context: CanvasRenderingContext2D | Path2D, start?: number, end?: number, move?: boolean): [CurvePoint, CurvePoint];
|
|
37
|
+
protected abstract doDraw(context: CanvasRenderingContext2D | Path2D): void;
|
|
43
38
|
}
|
|
44
|
-
//# sourceMappingURL=PolynomialSegment.d.ts.map
|
|
39
|
+
//# sourceMappingURL=PolynomialSegment.d.ts.map
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {Vector2} from '@revideo/core';
|
|
2
|
-
import {PolynomialSegment} from './PolynomialSegment';
|
|
1
|
+
import { Vector2 } from '@revideo/core';
|
|
2
|
+
import { PolynomialSegment } from './PolynomialSegment';
|
|
3
3
|
/**
|
|
4
4
|
* A spline segment representing a quadratic Bézier curve.
|
|
5
5
|
*/
|
|
6
6
|
export declare class QuadBezierSegment extends PolynomialSegment {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
7
|
+
readonly p0: Vector2;
|
|
8
|
+
readonly p1: Vector2;
|
|
9
|
+
readonly p2: Vector2;
|
|
10
|
+
private static el;
|
|
11
|
+
get points(): Vector2[];
|
|
12
|
+
constructor(p0: Vector2, p1: Vector2, p2: Vector2);
|
|
13
|
+
split(t: number): [PolynomialSegment, PolynomialSegment];
|
|
14
|
+
protected static getLength(p0: Vector2, p1: Vector2, p2: Vector2): number;
|
|
15
|
+
protected doDraw(context: CanvasRenderingContext2D | Path2D): void;
|
|
16
16
|
}
|
|
17
|
-
//# sourceMappingURL=QuadBezierSegment.d.ts.map
|
|
17
|
+
//# sourceMappingURL=QuadBezierSegment.d.ts.map
|
package/lib/curves/Segment.d.ts
CHANGED
|
@@ -1,14 +1,9 @@
|
|
|
1
|
-
import {Vector2} from '@revideo/core';
|
|
2
|
-
import {CurvePoint} from './CurvePoint';
|
|
1
|
+
import { Vector2 } from '@revideo/core';
|
|
2
|
+
import { CurvePoint } from './CurvePoint';
|
|
3
3
|
export declare abstract class Segment {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
end: number,
|
|
9
|
-
move: boolean,
|
|
10
|
-
): [CurvePoint, CurvePoint];
|
|
11
|
-
abstract getPoint(distance: number): CurvePoint;
|
|
12
|
-
abstract get arcLength(): number;
|
|
4
|
+
abstract readonly points: Vector2[];
|
|
5
|
+
abstract draw(context: CanvasRenderingContext2D | Path2D, start: number, end: number, move: boolean): [CurvePoint, CurvePoint];
|
|
6
|
+
abstract getPoint(distance: number): CurvePoint;
|
|
7
|
+
abstract get arcLength(): number;
|
|
13
8
|
}
|
|
14
|
-
//# sourceMappingURL=Segment.d.ts.map
|
|
9
|
+
//# sourceMappingURL=Segment.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {CurvePoint} from './CurvePoint';
|
|
2
|
-
import {PolynomialSegment} from './PolynomialSegment';
|
|
1
|
+
import { CurvePoint } from './CurvePoint';
|
|
2
|
+
import { PolynomialSegment } from './PolynomialSegment';
|
|
3
3
|
/**
|
|
4
4
|
* Class to uniformly sample points on a given polynomial curve.
|
|
5
5
|
*
|
|
@@ -8,36 +8,36 @@ import {PolynomialSegment} from './PolynomialSegment';
|
|
|
8
8
|
* re-parameterizes the curve by arclength.
|
|
9
9
|
*/
|
|
10
10
|
export declare class UniformPolynomialCurveSampler {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
11
|
+
private readonly curve;
|
|
12
|
+
private sampledDistances;
|
|
13
|
+
/**
|
|
14
|
+
* @param curve - The curve to sample
|
|
15
|
+
* @param samples - How many points to sample from the provided curve. The
|
|
16
|
+
* more points get sampled, the higher the resolution–and
|
|
17
|
+
* therefore precision–of the sampler.
|
|
18
|
+
*/
|
|
19
|
+
constructor(curve: PolynomialSegment, samples?: number);
|
|
20
|
+
/**
|
|
21
|
+
* Discard all previously sampled points and resample the provided number of
|
|
22
|
+
* points from the curve.
|
|
23
|
+
*
|
|
24
|
+
* @param samples - The number of points to sample.
|
|
25
|
+
*/
|
|
26
|
+
resample(samples: number): void;
|
|
27
|
+
/**
|
|
28
|
+
* Return the point at the provided distance along the sampled curve's
|
|
29
|
+
* arclength.
|
|
30
|
+
*
|
|
31
|
+
* @param distance - The distance along the curve's arclength for which to
|
|
32
|
+
* retrieve the point.
|
|
33
|
+
*/
|
|
34
|
+
pointAtDistance(distance: number): CurvePoint;
|
|
35
|
+
/**
|
|
36
|
+
* Return the t value for the point at the provided distance along the sampled
|
|
37
|
+
* curve's arc length.
|
|
38
|
+
*
|
|
39
|
+
* @param distance - The distance along the arclength
|
|
40
|
+
*/
|
|
41
|
+
distanceToT(distance: number): number;
|
|
42
42
|
}
|
|
43
|
-
//# sourceMappingURL=UniformPolynomialCurveSampler.d.ts.map
|
|
43
|
+
//# sourceMappingURL=UniformPolynomialCurveSampler.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {Vector2} from '@revideo/core';
|
|
2
|
-
import {CurveProfile} from './CurveProfile';
|
|
1
|
+
import { Vector2 } from '@revideo/core';
|
|
2
|
+
import { CurveProfile } from './CurveProfile';
|
|
3
3
|
/**
|
|
4
4
|
* Calculate polygon perimeter
|
|
5
5
|
* @param points - polygon points
|
|
@@ -13,11 +13,7 @@ export declare function polygonLength(points: Vector2[]): number;
|
|
|
13
13
|
* @param offset - offset for first polygon points
|
|
14
14
|
* @returns
|
|
15
15
|
*/
|
|
16
|
-
export declare function calculateLerpDistance(
|
|
17
|
-
points: Vector2[],
|
|
18
|
-
reference: Vector2[],
|
|
19
|
-
offset: number,
|
|
20
|
-
): number;
|
|
16
|
+
export declare function calculateLerpDistance(points: Vector2[], reference: Vector2[], offset: number): number;
|
|
21
17
|
/**
|
|
22
18
|
* Interpolate between two polygon points.
|
|
23
19
|
* @param from - source polygon points
|
|
@@ -25,19 +21,12 @@ export declare function calculateLerpDistance(
|
|
|
25
21
|
* @param value - interpolation progress
|
|
26
22
|
* @returns - new polygon points
|
|
27
23
|
*/
|
|
28
|
-
export declare function polygonPointsLerp(
|
|
29
|
-
from: Vector2[],
|
|
30
|
-
to: Vector2[],
|
|
31
|
-
value: number,
|
|
32
|
-
): Vector2[];
|
|
24
|
+
export declare function polygonPointsLerp(from: Vector2[], to: Vector2[], value: number): Vector2[];
|
|
33
25
|
/**
|
|
34
26
|
* Create interpolator to tween between two curve
|
|
35
27
|
* @param a - source curve
|
|
36
28
|
* @param b - target curve
|
|
37
29
|
* @returns - curve interpolator
|
|
38
30
|
*/
|
|
39
|
-
export declare function createCurveProfileLerp(
|
|
40
|
-
|
|
41
|
-
b: CurveProfile,
|
|
42
|
-
): (progress: number) => CurveProfile;
|
|
43
|
-
//# sourceMappingURL=createCurveProfileLerp.d.ts.map
|
|
31
|
+
export declare function createCurveProfileLerp(a: CurveProfile, b: CurveProfile): (progress: number) => CurveProfile;
|
|
32
|
+
//# sourceMappingURL=createCurveProfileLerp.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {CurveProfile} from './CurveProfile';
|
|
2
|
-
import {KnotInfo} from './KnotInfo';
|
|
1
|
+
import { CurveProfile } from './CurveProfile';
|
|
2
|
+
import { KnotInfo } from './KnotInfo';
|
|
3
3
|
/**
|
|
4
4
|
* Calculate the curve profile of a spline based on a set of knots.
|
|
5
5
|
*
|
|
@@ -8,9 +8,5 @@ import {KnotInfo} from './KnotInfo';
|
|
|
8
8
|
* @param smoothness - The desired smoothness of the spline when using auto
|
|
9
9
|
* calculated handles.
|
|
10
10
|
*/
|
|
11
|
-
export declare function getBezierSplineProfile(
|
|
12
|
-
|
|
13
|
-
closed: boolean,
|
|
14
|
-
smoothness: number,
|
|
15
|
-
): CurveProfile;
|
|
16
|
-
//# sourceMappingURL=getBezierSplineProfile.d.ts.map
|
|
11
|
+
export declare function getBezierSplineProfile(knots: KnotInfo[], closed: boolean, smoothness: number): CurveProfile;
|
|
12
|
+
//# sourceMappingURL=getBezierSplineProfile.d.ts.map
|
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
import {Vector2} from '@revideo/core';
|
|
2
|
-
import {CurveProfile} from './CurveProfile';
|
|
3
|
-
export declare function getCircleProfile(
|
|
4
|
-
|
|
5
|
-
startAngle: number,
|
|
6
|
-
endAngle: number,
|
|
7
|
-
closed: boolean,
|
|
8
|
-
counterclockwise?: boolean,
|
|
9
|
-
): CurveProfile;
|
|
10
|
-
//# sourceMappingURL=getCircleProfile.d.ts.map
|
|
1
|
+
import { Vector2 } from '@revideo/core';
|
|
2
|
+
import { CurveProfile } from './CurveProfile';
|
|
3
|
+
export declare function getCircleProfile(size: Vector2, startAngle: number, endAngle: number, closed: boolean, counterclockwise?: boolean): CurveProfile;
|
|
4
|
+
//# sourceMappingURL=getCircleProfile.d.ts.map
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {CurveProfile} from './CurveProfile';
|
|
1
|
+
import { CurveProfile } from './CurveProfile';
|
|
2
2
|
export declare function getPathProfile(data: string): CurveProfile;
|
|
3
|
-
//# sourceMappingURL=getPathProfile.d.ts.map
|
|
3
|
+
//# sourceMappingURL=getPathProfile.d.ts.map
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import {CurvePoint} from './CurvePoint';
|
|
2
|
-
import {CurveProfile} from './CurveProfile';
|
|
3
|
-
export declare function getPointAtDistance(
|
|
4
|
-
|
|
5
|
-
distance: number,
|
|
6
|
-
): CurvePoint;
|
|
7
|
-
//# sourceMappingURL=getPointAtDistance.d.ts.map
|
|
1
|
+
import { CurvePoint } from './CurvePoint';
|
|
2
|
+
import { CurveProfile } from './CurveProfile';
|
|
3
|
+
export declare function getPointAtDistance(profile: CurveProfile, distance: number): CurvePoint;
|
|
4
|
+
//# sourceMappingURL=getPointAtDistance.d.ts.map
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
import {Vector2} from '@revideo/core';
|
|
2
|
-
import {CurveProfile} from './CurveProfile';
|
|
3
|
-
export declare function getPolylineProfile(
|
|
4
|
-
|
|
5
|
-
radius: number,
|
|
6
|
-
closed: boolean,
|
|
7
|
-
): CurveProfile;
|
|
8
|
-
//# sourceMappingURL=getPolylineProfile.d.ts.map
|
|
1
|
+
import { Vector2 } from '@revideo/core';
|
|
2
|
+
import { CurveProfile } from './CurveProfile';
|
|
3
|
+
export declare function getPolylineProfile(points: readonly Vector2[], radius: number, closed: boolean): CurveProfile;
|
|
4
|
+
//# sourceMappingURL=getPolylineProfile.d.ts.map
|
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
import {BBox, Spacing} from '@revideo/core';
|
|
2
|
-
import {CurveProfile} from './CurveProfile';
|
|
3
|
-
export declare function getRectProfile(
|
|
4
|
-
|
|
5
|
-
radius: Spacing,
|
|
6
|
-
smoothCorners: boolean,
|
|
7
|
-
cornerSharpness: number,
|
|
8
|
-
): CurveProfile;
|
|
9
|
-
//# sourceMappingURL=getRectProfile.d.ts.map
|
|
1
|
+
import { BBox, Spacing } from '@revideo/core';
|
|
2
|
+
import { CurveProfile } from './CurveProfile';
|
|
3
|
+
export declare function getRectProfile(rect: BBox, radius: Spacing, smoothCorners: boolean, cornerSharpness: number): CurveProfile;
|
|
4
|
+
//# sourceMappingURL=getRectProfile.d.ts.map
|
package/lib/curves/index.d.ts
CHANGED
package/lib/curves/index.js
CHANGED
|
@@ -14,4 +14,4 @@ export * from './getCircleProfile';
|
|
|
14
14
|
export * from './getPointAtDistance';
|
|
15
15
|
export * from './getPolylineProfile';
|
|
16
16
|
export * from './getRectProfile';
|
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2N1cnZlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsa0JBQWtCLENBQUMifQ==
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2N1cnZlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsa0JBQWtCLENBQUMifQ==
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {Signal} from '@revideo/core';
|
|
2
|
-
import type {CanvasStyle, PossibleCanvasStyle} from '../partials';
|
|
1
|
+
import { Signal } from '@revideo/core';
|
|
2
|
+
import type { CanvasStyle, PossibleCanvasStyle } from '../partials';
|
|
3
3
|
export type CanvasStyleSignal<T> = Signal<PossibleCanvasStyle, CanvasStyle, T>;
|
|
4
4
|
export declare function canvasStyleSignal(): PropertyDecorator;
|
|
5
|
-
//# sourceMappingURL=canvasStyleSignal.d.ts.map
|
|
5
|
+
//# sourceMappingURL=canvasStyleSignal.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare function colorSignal(): PropertyDecorator;
|
|
2
|
-
//# sourceMappingURL=colorSignal.d.ts.map
|
|
2
|
+
//# sourceMappingURL=colorSignal.d.ts.map
|
|
@@ -22,7 +22,5 @@
|
|
|
22
22
|
* @param entries - A record mapping the property in the compound object to the
|
|
23
23
|
* corresponding property on the owner node.
|
|
24
24
|
*/
|
|
25
|
-
export declare function compound(
|
|
26
|
-
|
|
27
|
-
): PropertyDecorator;
|
|
28
|
-
//# sourceMappingURL=compound.d.ts.map
|
|
25
|
+
export declare function compound(entries: Record<string, string>): PropertyDecorator;
|
|
26
|
+
//# sourceMappingURL=compound.d.ts.map
|
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
export declare function defaultStyle<T>(
|
|
2
|
-
|
|
3
|
-
parse?: (value: string) => T,
|
|
4
|
-
): PropertyDecorator;
|
|
5
|
-
//# sourceMappingURL=defaultStyle.d.ts.map
|
|
1
|
+
export declare function defaultStyle<T>(styleName: string, parse?: (value: string) => T): PropertyDecorator;
|
|
2
|
+
//# sourceMappingURL=defaultStyle.d.ts.map
|
|
@@ -1,31 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
SimpleSignal,
|
|
6
|
-
ThreadGenerator,
|
|
7
|
-
TimingFunction,
|
|
8
|
-
} from '@revideo/core';
|
|
9
|
-
import {Filter, FilterName} from '../partials';
|
|
10
|
-
export type FiltersSignal<TOwner> = Signal<
|
|
11
|
-
Filter[],
|
|
12
|
-
Filter[],
|
|
13
|
-
TOwner,
|
|
14
|
-
FiltersSignalContext<TOwner>
|
|
15
|
-
> & {
|
|
16
|
-
[K in FilterName]: SimpleSignal<number, TOwner>;
|
|
1
|
+
import { Signal, SignalContext, SignalValue, SimpleSignal, ThreadGenerator, TimingFunction } from '@revideo/core';
|
|
2
|
+
import { Filter, FilterName } from '../partials';
|
|
3
|
+
export type FiltersSignal<TOwner> = Signal<Filter[], Filter[], TOwner, FiltersSignalContext<TOwner>> & {
|
|
4
|
+
[K in FilterName]: SimpleSignal<number, TOwner>;
|
|
17
5
|
};
|
|
18
|
-
export declare class FiltersSignalContext<TOwner> extends SignalContext<
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
TOwner
|
|
22
|
-
> {
|
|
23
|
-
constructor(initial: Filter[], owner: TOwner);
|
|
24
|
-
tweener(
|
|
25
|
-
value: SignalValue<Filter[]>,
|
|
26
|
-
duration: number,
|
|
27
|
-
timingFunction: TimingFunction,
|
|
28
|
-
): ThreadGenerator;
|
|
6
|
+
export declare class FiltersSignalContext<TOwner> extends SignalContext<Filter[], Filter[], TOwner> {
|
|
7
|
+
constructor(initial: Filter[], owner: TOwner);
|
|
8
|
+
tweener(value: SignalValue<Filter[]>, duration: number, timingFunction: TimingFunction): ThreadGenerator;
|
|
29
9
|
}
|
|
30
10
|
export declare function filtersSignal(): PropertyDecorator;
|
|
31
|
-
//# sourceMappingURL=filtersSignal.d.ts.map
|
|
11
|
+
//# sourceMappingURL=filtersSignal.d.ts.map
|
package/lib/decorators/index.js
CHANGED
|
@@ -8,4 +8,4 @@ export * from './initializers';
|
|
|
8
8
|
export * from './nodeName';
|
|
9
9
|
export * from './signal';
|
|
10
10
|
export * from './vector2Signal';
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2RlY29yYXRvcnMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFVBQVUsQ0FBQztBQUN6QixjQUFjLGlCQUFpQixDQUFDIn0=
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2RlY29yYXRvcnMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFVBQVUsQ0FBQztBQUN6QixjQUFjLGlCQUFpQixDQUFDIn0=
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
export type Initializer<T> = (instance: T, context?: any) => void;
|
|
2
|
-
export declare function addInitializer<T>(
|
|
3
|
-
target: any,
|
|
4
|
-
initializer: Initializer<T>,
|
|
5
|
-
): void;
|
|
2
|
+
export declare function addInitializer<T>(target: any, initializer: Initializer<T>): void;
|
|
6
3
|
export declare function initialize(target: any, context?: any): void;
|
|
7
|
-
//# sourceMappingURL=initializers.d.ts.map
|
|
4
|
+
//# sourceMappingURL=initializers.d.ts.map
|
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
const INITIALIZERS = Symbol.for('@revideo/2d/decorators/initializers');
|
|
2
2
|
export function addInitializer(target, initializer) {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
if (!target[INITIALIZERS]) {
|
|
4
|
+
target[INITIALIZERS] = [];
|
|
5
|
+
}
|
|
6
|
+
else if (
|
|
6
7
|
// if one of the prototypes has initializers
|
|
7
8
|
target[INITIALIZERS] &&
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
target[INITIALIZERS].push(initializer);
|
|
9
|
+
// and it's not the target object itself
|
|
10
|
+
!Object.prototype.hasOwnProperty.call(target, INITIALIZERS)) {
|
|
11
|
+
const base = Object.getPrototypeOf(target);
|
|
12
|
+
target[INITIALIZERS] = [...base[INITIALIZERS]];
|
|
13
|
+
}
|
|
14
|
+
target[INITIALIZERS].push(initializer);
|
|
15
15
|
}
|
|
16
16
|
export function initialize(target, context) {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
if (target[INITIALIZERS]) {
|
|
18
|
+
try {
|
|
19
|
+
target[INITIALIZERS].forEach((initializer) => initializer(target, context));
|
|
20
|
+
}
|
|
21
|
+
catch (e) {
|
|
22
|
+
e.inspect ?? (e.inspect = target.key);
|
|
23
|
+
throw e;
|
|
24
|
+
}
|
|
23
25
|
}
|
|
24
|
-
}
|
|
25
26
|
}
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5pdGlhbGl6ZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2xpYi9kZWNvcmF0b3JzL2luaXRpYWxpemVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFlBQVksR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7QUFJdkUsTUFBTSxVQUFVLGNBQWMsQ0FBSSxNQUFXLEVBQUUsV0FBMkI7SUFDeEUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDO1FBQzFCLE1BQU0sQ0FBQyxZQUFZLENBQUMsR0FBRyxFQUFFLENBQUM7SUFDNUIsQ0FBQztTQUFNO0lBQ0wsNENBQTRDO0lBQzVDLE1BQU0sQ0FBQyxZQUFZLENBQUM7UUFDcEIsd0NBQXdDO1FBQ3hDLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxZQUFZLENBQUMsRUFDM0QsQ0FBQztRQUNELE1BQU0sSUFBSSxHQUFHLE1BQU0sQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDM0MsTUFBTSxDQUFDLFlBQVksQ0FBQyxHQUFHLENBQUMsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQztJQUNqRCxDQUFDO0lBRUQsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztBQUN6QyxDQUFDO0FBRUQsTUFBTSxVQUFVLFVBQVUsQ0FBQyxNQUFXLEVBQUUsT0FBYTtJQUNuRCxJQUFJLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDO1FBQ3pCLElBQUksQ0FBQztZQUNILE1BQU0sQ0FBQyxZQUFZLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxXQUE2QixFQUFFLEVBQUUsQ0FDN0QsV0FBVyxDQUFDLE1BQU0sRUFBRSxPQUFPLENBQUMsQ0FDN0IsQ0FBQztRQUNKLENBQUM7UUFBQyxPQUFPLENBQU0sRUFBRSxDQUFDO1lBQ2hCLENBQUMsQ0FBQyxPQUFPLEtBQVQsQ0FBQyxDQUFDLE9BQU8sR0FBSyxNQUFNLENBQUMsR0FBRyxFQUFDO1lBQ3pCLE1BQU0sQ0FBQyxDQUFDO1FBQ1YsQ0FBQztJQUNILENBQUM7QUFDSCxDQUFDIn0=
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5pdGlhbGl6ZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2xpYi9kZWNvcmF0b3JzL2luaXRpYWxpemVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFlBQVksR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7QUFJdkUsTUFBTSxVQUFVLGNBQWMsQ0FBSSxNQUFXLEVBQUUsV0FBMkI7SUFDeEUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDO1FBQzFCLE1BQU0sQ0FBQyxZQUFZLENBQUMsR0FBRyxFQUFFLENBQUM7SUFDNUIsQ0FBQztTQUFNO0lBQ0wsNENBQTRDO0lBQzVDLE1BQU0sQ0FBQyxZQUFZLENBQUM7UUFDcEIsd0NBQXdDO1FBQ3hDLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxZQUFZLENBQUMsRUFDM0QsQ0FBQztRQUNELE1BQU0sSUFBSSxHQUFHLE1BQU0sQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDM0MsTUFBTSxDQUFDLFlBQVksQ0FBQyxHQUFHLENBQUMsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQztJQUNqRCxDQUFDO0lBRUQsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztBQUN6QyxDQUFDO0FBRUQsTUFBTSxVQUFVLFVBQVUsQ0FBQyxNQUFXLEVBQUUsT0FBYTtJQUNuRCxJQUFJLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDO1FBQ3pCLElBQUksQ0FBQztZQUNILE1BQU0sQ0FBQyxZQUFZLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxXQUE2QixFQUFFLEVBQUUsQ0FDN0QsV0FBVyxDQUFDLE1BQU0sRUFBRSxPQUFPLENBQUMsQ0FDN0IsQ0FBQztRQUNKLENBQUM7UUFBQyxPQUFPLENBQU0sRUFBRSxDQUFDO1lBQ2hCLENBQUMsQ0FBQyxPQUFPLEtBQVQsQ0FBQyxDQUFDLE9BQU8sR0FBSyxNQUFNLENBQUMsR0FBRyxFQUFDO1lBQ3pCLE1BQU0sQ0FBQyxDQUFDO1FBQ1YsQ0FBQztJQUNILENBQUM7QUFDSCxDQUFDIn0=
|
|
@@ -6,8 +6,8 @@ export const NODE_NAME = Symbol.for('@revideo/2d/nodeName');
|
|
|
6
6
|
* @internal
|
|
7
7
|
*/
|
|
8
8
|
export function nodeName(name) {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
return function (target) {
|
|
10
|
+
target.prototype[NODE_NAME] = name;
|
|
11
|
+
};
|
|
12
12
|
}
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9kZU5hbWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2RlY29yYXRvcnMvbm9kZU5hbWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxTQUFTLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0FBRTVEOztHQUVHO0FBQ0gsTUFBTSxVQUFVLFFBQVEsQ0FBQyxJQUFZO0lBQ25DLE9BQU8sVUFBVSxNQUFXO1FBQzFCLE1BQU0sQ0FBQyxTQUFTLENBQUMsU0FBUyxDQUFDLEdBQUcsSUFBSSxDQUFDO0lBQ3JDLENBQUMsQ0FBQztBQUNKLENBQUMifQ==
|
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9kZU5hbWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2RlY29yYXRvcnMvbm9kZU5hbWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxTQUFTLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0FBRTVEOztHQUVHO0FBQ0gsTUFBTSxVQUFVLFFBQVEsQ0FBQyxJQUFZO0lBQ25DLE9BQU8sVUFBVSxNQUFXO1FBQzFCLE1BQU0sQ0FBQyxTQUFTLENBQUMsU0FBUyxDQUFDLEdBQUcsSUFBSSxDQUFDO0lBQ3JDLENBQUMsQ0FBQztBQUNKLENBQUMifQ==
|