@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.
Files changed (170) hide show
  1. package/editor/editor/tsconfig.build.tsbuildinfo +1 -1
  2. package/editor/index.js +151 -380
  3. package/editor/index.js.map +1 -1
  4. package/lib/code/CodeCursor.d.ts +74 -74
  5. package/lib/code/CodeDiffer.d.ts +16 -21
  6. package/lib/code/CodeDiffer.js +41 -39
  7. package/lib/code/CodeFragment.d.ts +8 -16
  8. package/lib/code/CodeFragment.js +36 -36
  9. package/lib/code/CodeHighlighter.d.ts +59 -59
  10. package/lib/code/CodeHighlighter.js +1 -1
  11. package/lib/code/CodeMetrics.d.ts +8 -12
  12. package/lib/code/CodeMetrics.js +24 -26
  13. package/lib/code/CodeRange.d.ts +5 -21
  14. package/lib/code/CodeRange.js +124 -131
  15. package/lib/code/CodeScope.d.ts +8 -18
  16. package/lib/code/CodeSelection.d.ts +4 -9
  17. package/lib/code/CodeSelection.js +8 -8
  18. package/lib/code/CodeSignal.d.ts +47 -74
  19. package/lib/code/CodeTokenizer.d.ts +1 -1
  20. package/lib/code/CodeTokenizer.js +41 -41
  21. package/lib/code/DefaultHighlightStyle.d.ts +2 -2
  22. package/lib/code/DefaultHighlightStyle.js +96 -96
  23. package/lib/code/LezerHighlighter.d.ts +19 -21
  24. package/lib/code/diff.d.ts +9 -12
  25. package/lib/code/diff.js +205 -218
  26. package/lib/code/extractRange.d.ts +4 -7
  27. package/lib/code/extractRange.js +71 -79
  28. package/lib/code/index.d.ts +1 -1
  29. package/lib/code/index.js +1 -1
  30. package/lib/components/Audio.d.ts +11 -11
  31. package/lib/components/Bezier.d.ts +18 -18
  32. package/lib/components/Circle.d.ts +90 -95
  33. package/lib/components/Code.d.ts +211 -244
  34. package/lib/components/CodeBlock.d.ts +1 -1
  35. package/lib/components/CubicBezier.d.ts +36 -36
  36. package/lib/components/Curve.d.ts +198 -208
  37. package/lib/components/Grid.d.ts +42 -47
  38. package/lib/components/Icon.d.ts +50 -55
  39. package/lib/components/Img.d.ts +79 -86
  40. package/lib/components/Knot.d.ts +78 -97
  41. package/lib/components/Latex.d.ts +12 -12
  42. package/lib/components/Layout.d.ts +413 -455
  43. package/lib/components/Line.d.ts +49 -61
  44. package/lib/components/Media.d.ts +37 -37
  45. package/lib/components/Node.d.ts +1 -1
  46. package/lib/components/Path.d.ts +1 -1
  47. package/lib/components/Polygon.d.ts +55 -60
  48. package/lib/components/QuadBezier.d.ts +29 -29
  49. package/lib/components/Ray.d.ts +28 -28
  50. package/lib/components/Rect.d.ts +108 -115
  51. package/lib/components/SVG.d.ts +1 -1
  52. package/lib/components/Shape.d.ts +1 -1
  53. package/lib/components/Spline.d.ts +40 -46
  54. package/lib/components/Txt.d.ts +44 -55
  55. package/lib/components/TxtLeaf.d.ts +16 -20
  56. package/lib/components/Video.d.ts +1 -0
  57. package/lib/components/Video.d.ts.map +1 -1
  58. package/lib/components/Video.js +9 -3
  59. package/lib/components/View2D.d.ts +22 -22
  60. package/lib/components/index.d.ts +2 -1
  61. package/lib/components/index.d.ts.map +1 -1
  62. package/lib/components/index.js +2 -1
  63. package/lib/components/types.d.ts +9 -22
  64. package/lib/curves/ArcSegment.d.ts +24 -36
  65. package/lib/curves/CircleSegment.d.ts +16 -26
  66. package/lib/curves/CubicBezierSegment.d.ts +13 -18
  67. package/lib/curves/CurveDrawingInfo.d.ts +9 -9
  68. package/lib/curves/CurvePoint.d.ts +13 -13
  69. package/lib/curves/CurveProfile.d.ts +5 -5
  70. package/lib/curves/CurveProfile.js +1 -1
  71. package/lib/curves/KnotInfo.d.ts +8 -8
  72. package/lib/curves/LineSegment.d.ts +14 -19
  73. package/lib/curves/Polynomial.d.ts +110 -110
  74. package/lib/curves/Polynomial2D.d.ts +20 -20
  75. package/lib/curves/PolynomialSegment.d.ts +37 -42
  76. package/lib/curves/QuadBezierSegment.d.ts +12 -12
  77. package/lib/curves/Segment.d.ts +7 -12
  78. package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
  79. package/lib/curves/createCurveProfileLerp.d.ts +6 -17
  80. package/lib/curves/getBezierSplineProfile.d.ts +4 -8
  81. package/lib/curves/getCircleProfile.d.ts +4 -10
  82. package/lib/curves/getPathProfile.d.ts +2 -2
  83. package/lib/curves/getPointAtDistance.d.ts +4 -7
  84. package/lib/curves/getPolylineProfile.d.ts +4 -8
  85. package/lib/curves/getRectProfile.d.ts +4 -9
  86. package/lib/curves/index.d.ts +1 -1
  87. package/lib/curves/index.js +1 -1
  88. package/lib/decorators/canvasStyleSignal.d.ts +3 -3
  89. package/lib/decorators/colorSignal.d.ts +1 -1
  90. package/lib/decorators/compound.d.ts +2 -4
  91. package/lib/decorators/computed.d.ts +1 -1
  92. package/lib/decorators/defaultStyle.d.ts +2 -5
  93. package/lib/decorators/filtersSignal.d.ts +8 -28
  94. package/lib/decorators/index.d.ts +1 -1
  95. package/lib/decorators/index.js +1 -1
  96. package/lib/decorators/initializers.d.ts +2 -5
  97. package/lib/decorators/initializers.js +19 -18
  98. package/lib/decorators/nodeName.d.ts +1 -1
  99. package/lib/decorators/nodeName.js +4 -4
  100. package/lib/decorators/signal.d.ts +20 -40
  101. package/lib/decorators/spacingSignal.d.ts +1 -1
  102. package/lib/decorators/vector2Signal.d.ts +7 -13
  103. package/lib/index.d.ts +1 -1
  104. package/lib/index.js +1 -1
  105. package/lib/jsx-dev-runtime.d.ts +3 -3
  106. package/lib/jsx-dev-runtime.js +3 -3
  107. package/lib/jsx-runtime.d.ts +9 -19
  108. package/lib/jsx-runtime.js +18 -18
  109. package/lib/partials/Filter.d.ts +16 -24
  110. package/lib/partials/Gradient.d.ts +24 -30
  111. package/lib/partials/Pattern.d.ts +9 -14
  112. package/lib/partials/ShaderConfig.d.ts +74 -81
  113. package/lib/partials/index.d.ts +1 -1
  114. package/lib/partials/index.js +1 -1
  115. package/lib/partials/types.d.ts +6 -19
  116. package/lib/scenes/Scene2D.d.ts +24 -42
  117. package/lib/scenes/Scene2D.d.ts.map +1 -1
  118. package/lib/scenes/Scene2D.js +10 -2
  119. package/lib/scenes/index.d.ts +1 -1
  120. package/lib/scenes/index.js +1 -1
  121. package/lib/scenes/makeScene2D.d.ts +5 -7
  122. package/lib/scenes/useScene2D.d.ts +2 -2
  123. package/lib/tsconfig.build.tsbuildinfo +1 -1
  124. package/lib/utils/diff.d.ts +18 -25
  125. package/lib/utils/diff.js +87 -84
  126. package/lib/utils/index.d.ts +1 -1
  127. package/lib/utils/index.js +1 -1
  128. package/lib/utils/is.d.ts +2 -4
  129. package/lib/utils/is.js +2 -2
  130. package/lib/utils/makeSignalExtensions.d.ts +4 -11
  131. package/lib/utils/video/mp4-parser-manager.d.ts +1 -0
  132. package/lib/utils/video/mp4-parser-manager.d.ts.map +1 -1
  133. package/lib/utils/video/mp4-parser-manager.js +21 -4
  134. package/lib/utils/video/parser/index.d.ts +2 -0
  135. package/lib/utils/video/parser/index.d.ts.map +1 -0
  136. package/lib/utils/video/parser/index.js +2 -0
  137. package/lib/utils/video/parser/parser.d.ts +21 -0
  138. package/lib/utils/video/parser/parser.d.ts.map +1 -0
  139. package/lib/utils/video/parser/parser.js +168 -0
  140. package/lib/utils/video/parser/sampler.d.ts +16 -0
  141. package/lib/utils/video/parser/sampler.d.ts.map +1 -0
  142. package/lib/utils/video/parser/sampler.js +56 -0
  143. package/lib/utils/video/parser/segment.d.ts +44 -0
  144. package/lib/utils/video/parser/segment.d.ts.map +1 -0
  145. package/lib/utils/video/parser/segment.js +195 -0
  146. package/lib/utils/video/parser/sink.d.ts +9 -0
  147. package/lib/utils/video/parser/sink.d.ts.map +1 -0
  148. package/lib/utils/video/parser/sink.js +22 -0
  149. package/lib/utils/video/parser/utils.d.ts +10 -0
  150. package/lib/utils/video/parser/utils.d.ts.map +1 -0
  151. package/lib/utils/video/parser/utils.js +22 -0
  152. package/package.json +4 -4
  153. package/src/lib/components/Video.ts +9 -2
  154. package/src/lib/components/index.ts +1 -0
  155. package/src/lib/scenes/Scene2D.ts +11 -1
  156. package/src/lib/utils/video/mp4-parser-manager.ts +24 -5
  157. package/src/lib/utils/video/parser/index.ts +1 -0
  158. package/src/lib/utils/video/parser/parser.ts +256 -0
  159. package/src/lib/utils/video/parser/sampler.ts +72 -0
  160. package/src/lib/utils/video/parser/segment.ts +252 -0
  161. package/src/lib/utils/video/parser/sink.ts +29 -0
  162. package/src/lib/utils/video/parser/utils.ts +31 -0
  163. package/lib/components/HlsVideo.d.ts +0 -62
  164. package/lib/components/HlsVideo.d.ts.map +0 -1
  165. package/lib/components/HlsVideo.js +0 -169
  166. package/lib/tsconfig.tsbuildinfo +0 -1
  167. package/lib/utils/video/mp4-parser.d.ts +0 -63
  168. package/lib/utils/video/mp4-parser.d.ts.map +0 -1
  169. package/lib/utils/video/mp4-parser.js +0 -264
  170. 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
- 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;
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
- 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(
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
- 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;
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
@@ -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
- abstract readonly points: Vector2[];
5
- abstract draw(
6
- context: CanvasRenderingContext2D | Path2D,
7
- start: number,
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
- 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;
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
- a: CurveProfile,
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
- knots: KnotInfo[],
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
- size: Vector2,
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
- profile: CurveProfile,
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
- points: readonly Vector2[],
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
- rect: BBox,
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
@@ -14,4 +14,4 @@ export * from './getCircleProfile';
14
14
  export * from './getPointAtDistance';
15
15
  export * from './getPolylineProfile';
16
16
  export * from './getRectProfile';
17
- //# sourceMappingURL=index.d.ts.map
17
+ //# sourceMappingURL=index.d.ts.map
@@ -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
- entries: Record<string, string>,
27
- ): PropertyDecorator;
28
- //# sourceMappingURL=compound.d.ts.map
25
+ export declare function compound(entries: Record<string, string>): PropertyDecorator;
26
+ //# sourceMappingURL=compound.d.ts.map
@@ -6,4 +6,4 @@
6
6
  * See {@link createComputed} for more information.
7
7
  */
8
8
  export declare function computed(): MethodDecorator;
9
- //# sourceMappingURL=computed.d.ts.map
9
+ //# sourceMappingURL=computed.d.ts.map
@@ -1,5 +1,2 @@
1
- export declare function defaultStyle<T>(
2
- styleName: string,
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
- Signal,
3
- SignalContext,
4
- SignalValue,
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
- Filter[],
20
- Filter[],
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
@@ -8,4 +8,4 @@ export * from './initializers';
8
8
  export * from './nodeName';
9
9
  export * from './signal';
10
10
  export * from './vector2Signal';
11
- //# sourceMappingURL=index.d.ts.map
11
+ //# sourceMappingURL=index.d.ts.map
@@ -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
- if (!target[INITIALIZERS]) {
4
- target[INITIALIZERS] = [];
5
- } else if (
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
- // and it's not the target object itself
9
- !Object.prototype.hasOwnProperty.call(target, INITIALIZERS)
10
- ) {
11
- const base = Object.getPrototypeOf(target);
12
- target[INITIALIZERS] = [...base[INITIALIZERS]];
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
- if (target[INITIALIZERS]) {
18
- try {
19
- target[INITIALIZERS].forEach(initializer => initializer(target, context));
20
- } catch (e) {
21
- e.inspect ?? (e.inspect = target.key);
22
- throw e;
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,4 +6,4 @@ export declare const NODE_NAME: unique symbol;
6
6
  * @internal
7
7
  */
8
8
  export declare function nodeName(name: string): (target: any) => void;
9
- //# sourceMappingURL=nodeName.d.ts.map
9
+ //# sourceMappingURL=nodeName.d.ts.map
@@ -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
- return function (target) {
10
- target.prototype[NODE_NAME] = name;
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==