@revideo/2d 0.2.1 → 0.2.2

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 (198) hide show
  1. package/lib/code/CodeCursor.d.ts +74 -74
  2. package/lib/code/CodeCursor.js +286 -352
  3. package/lib/code/CodeDiffer.d.ts +16 -21
  4. package/lib/code/CodeDiffer.js +41 -39
  5. package/lib/code/CodeFragment.d.ts +8 -16
  6. package/lib/code/CodeFragment.js +36 -36
  7. package/lib/code/CodeHighlighter.d.ts +59 -59
  8. package/lib/code/CodeHighlighter.js +1 -1
  9. package/lib/code/CodeMetrics.d.ts +8 -12
  10. package/lib/code/CodeMetrics.js +24 -26
  11. package/lib/code/CodeRange.d.ts +5 -21
  12. package/lib/code/CodeRange.js +124 -131
  13. package/lib/code/CodeScope.d.ts +8 -18
  14. package/lib/code/CodeScope.js +61 -59
  15. package/lib/code/CodeSelection.d.ts +4 -9
  16. package/lib/code/CodeSelection.js +8 -8
  17. package/lib/code/CodeSignal.d.ts +47 -74
  18. package/lib/code/CodeSignal.js +189 -206
  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/LezerHighlighter.js +101 -101
  25. package/lib/code/diff.d.ts +9 -12
  26. package/lib/code/diff.js +205 -218
  27. package/lib/code/extractRange.d.ts +4 -7
  28. package/lib/code/extractRange.js +71 -79
  29. package/lib/code/index.d.ts +1 -1
  30. package/lib/code/index.js +1 -1
  31. package/lib/components/Audio.d.ts +11 -11
  32. package/lib/components/Audio.js +109 -115
  33. package/lib/components/Bezier.d.ts +18 -18
  34. package/lib/components/Bezier.js +75 -86
  35. package/lib/components/Circle.d.ts +90 -95
  36. package/lib/components/Circle.js +74 -85
  37. package/lib/components/Code.d.ts +211 -244
  38. package/lib/components/Code.js +269 -317
  39. package/lib/components/CodeBlock.d.ts +67 -109
  40. package/lib/components/CodeBlock.js +373 -414
  41. package/lib/components/CubicBezier.d.ts +36 -36
  42. package/lib/components/CubicBezier.js +49 -52
  43. package/lib/components/Curve.d.ts +198 -208
  44. package/lib/components/Curve.js +269 -270
  45. package/lib/components/Grid.d.ts +42 -47
  46. package/lib/components/Grid.js +56 -63
  47. package/lib/components/Icon.d.ts +50 -55
  48. package/lib/components/Icon.js +50 -58
  49. package/lib/components/Img.d.ts +79 -86
  50. package/lib/components/Img.js +181 -193
  51. package/lib/components/Knot.d.ts +78 -97
  52. package/lib/components/Knot.js +60 -81
  53. package/lib/components/Latex.d.ts +12 -12
  54. package/lib/components/Latex.js +65 -77
  55. package/lib/components/Layout.d.ts +413 -455
  56. package/lib/components/Layout.js +681 -666
  57. package/lib/components/Line.d.ts +49 -61
  58. package/lib/components/Line.js +193 -216
  59. package/lib/components/Media.d.ts +35 -35
  60. package/lib/components/Media.js +134 -135
  61. package/lib/components/Node.d.ts +830 -875
  62. package/lib/components/Node.js +1314 -1383
  63. package/lib/components/Path.d.ts +14 -35
  64. package/lib/components/Path.js +89 -100
  65. package/lib/components/Polygon.d.ts +55 -60
  66. package/lib/components/Polygon.js +66 -71
  67. package/lib/components/QuadBezier.d.ts +29 -29
  68. package/lib/components/QuadBezier.js +45 -50
  69. package/lib/components/Ray.d.ts +28 -28
  70. package/lib/components/Ray.js +64 -71
  71. package/lib/components/Rect.d.ts +108 -115
  72. package/lib/components/Rect.js +72 -78
  73. package/lib/components/SVG.d.ts +139 -165
  74. package/lib/components/SVG.js +541 -609
  75. package/lib/components/Shape.d.ts +35 -44
  76. package/lib/components/Shape.js +127 -112
  77. package/lib/components/Spline.d.ts +40 -46
  78. package/lib/components/Spline.js +175 -190
  79. package/lib/components/Txt.d.ts +44 -55
  80. package/lib/components/Txt.js +155 -156
  81. package/lib/components/TxtLeaf.d.ts +16 -20
  82. package/lib/components/TxtLeaf.js +158 -177
  83. package/lib/components/Video.d.ts +41 -41
  84. package/lib/components/Video.js +135 -138
  85. package/lib/components/View2D.d.ts +21 -21
  86. package/lib/components/View2D.js +85 -98
  87. package/lib/components/index.d.ts +1 -1
  88. package/lib/components/index.js +1 -1
  89. package/lib/components/types.d.ts +9 -22
  90. package/lib/components/types.js +1 -1
  91. package/lib/curves/ArcSegment.d.ts +24 -36
  92. package/lib/curves/ArcSegment.js +94 -145
  93. package/lib/curves/CircleSegment.d.ts +16 -26
  94. package/lib/curves/CircleSegment.js +49 -56
  95. package/lib/curves/CubicBezierSegment.d.ts +13 -18
  96. package/lib/curves/CubicBezierSegment.js +46 -79
  97. package/lib/curves/CurveDrawingInfo.d.ts +9 -9
  98. package/lib/curves/CurveDrawingInfo.js +1 -1
  99. package/lib/curves/CurvePoint.d.ts +13 -13
  100. package/lib/curves/CurvePoint.js +1 -1
  101. package/lib/curves/CurveProfile.d.ts +5 -5
  102. package/lib/curves/CurveProfile.js +1 -1
  103. package/lib/curves/KnotInfo.d.ts +8 -8
  104. package/lib/curves/KnotInfo.js +1 -1
  105. package/lib/curves/LineSegment.d.ts +14 -19
  106. package/lib/curves/LineSegment.js +42 -42
  107. package/lib/curves/Polynomial.d.ts +110 -110
  108. package/lib/curves/Polynomial.js +239 -249
  109. package/lib/curves/Polynomial2D.d.ts +20 -20
  110. package/lib/curves/Polynomial2D.js +42 -46
  111. package/lib/curves/PolynomialSegment.d.ts +37 -42
  112. package/lib/curves/PolynomialSegment.js +81 -83
  113. package/lib/curves/QuadBezierSegment.d.ts +12 -12
  114. package/lib/curves/QuadBezierSegment.js +41 -71
  115. package/lib/curves/Segment.d.ts +7 -12
  116. package/lib/curves/Segment.js +3 -2
  117. package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
  118. package/lib/curves/UniformPolynomialCurveSampler.js +62 -68
  119. package/lib/curves/createCurveProfileLerp.d.ts +6 -17
  120. package/lib/curves/createCurveProfileLerp.js +208 -211
  121. package/lib/curves/getBezierSplineProfile.d.ts +4 -8
  122. package/lib/curves/getBezierSplineProfile.js +101 -145
  123. package/lib/curves/getCircleProfile.d.ts +4 -10
  124. package/lib/curves/getCircleProfile.js +40 -72
  125. package/lib/curves/getPathProfile.d.ts +2 -2
  126. package/lib/curves/getPathProfile.js +112 -135
  127. package/lib/curves/getPointAtDistance.d.ts +4 -7
  128. package/lib/curves/getPointAtDistance.js +12 -12
  129. package/lib/curves/getPolylineProfile.d.ts +4 -8
  130. package/lib/curves/getPolylineProfile.js +54 -67
  131. package/lib/curves/getRectProfile.d.ts +4 -9
  132. package/lib/curves/getRectProfile.js +52 -117
  133. package/lib/curves/index.d.ts +1 -1
  134. package/lib/curves/index.js +1 -1
  135. package/lib/decorators/canvasStyleSignal.d.ts +3 -3
  136. package/lib/decorators/canvasStyleSignal.js +10 -10
  137. package/lib/decorators/colorSignal.d.ts +1 -1
  138. package/lib/decorators/colorSignal.js +7 -7
  139. package/lib/decorators/compound.d.ts +2 -4
  140. package/lib/decorators/compound.js +23 -43
  141. package/lib/decorators/computed.d.ts +1 -1
  142. package/lib/decorators/computed.js +9 -9
  143. package/lib/decorators/defaultStyle.d.ts +2 -5
  144. package/lib/decorators/defaultStyle.js +11 -11
  145. package/lib/decorators/filtersSignal.d.ts +8 -28
  146. package/lib/decorators/filtersSignal.js +64 -87
  147. package/lib/decorators/index.d.ts +1 -1
  148. package/lib/decorators/index.js +1 -1
  149. package/lib/decorators/initializers.d.ts +2 -5
  150. package/lib/decorators/initializers.js +19 -18
  151. package/lib/decorators/nodeName.d.ts +1 -1
  152. package/lib/decorators/nodeName.js +4 -4
  153. package/lib/decorators/signal.d.ts +20 -40
  154. package/lib/decorators/signal.js +104 -113
  155. package/lib/decorators/spacingSignal.d.ts +1 -1
  156. package/lib/decorators/spacingSignal.js +13 -13
  157. package/lib/decorators/vector2Signal.d.ts +7 -13
  158. package/lib/decorators/vector2Signal.js +13 -15
  159. package/lib/index.d.ts +1 -1
  160. package/lib/index.js +1 -1
  161. package/lib/jsx-dev-runtime.d.ts +3 -3
  162. package/lib/jsx-dev-runtime.js +3 -3
  163. package/lib/jsx-runtime.d.ts +9 -19
  164. package/lib/jsx-runtime.js +18 -18
  165. package/lib/partials/Filter.d.ts +16 -24
  166. package/lib/partials/Filter.js +69 -69
  167. package/lib/partials/Gradient.d.ts +24 -30
  168. package/lib/partials/Gradient.js +58 -69
  169. package/lib/partials/Pattern.d.ts +9 -14
  170. package/lib/partials/Pattern.js +24 -30
  171. package/lib/partials/ShaderConfig.d.ts +74 -81
  172. package/lib/partials/ShaderConfig.js +23 -22
  173. package/lib/partials/index.d.ts +1 -1
  174. package/lib/partials/index.js +1 -1
  175. package/lib/partials/types.d.ts +6 -19
  176. package/lib/partials/types.js +1 -1
  177. package/lib/scenes/Scene2D.d.ts +23 -42
  178. package/lib/scenes/Scene2D.js +151 -161
  179. package/lib/scenes/index.d.ts +1 -1
  180. package/lib/scenes/index.js +1 -1
  181. package/lib/scenes/makeScene2D.d.ts +5 -7
  182. package/lib/scenes/makeScene2D.js +10 -10
  183. package/lib/scenes/useScene2D.d.ts +2 -2
  184. package/lib/scenes/useScene2D.js +3 -3
  185. package/lib/utils/CanvasUtils.d.ts +21 -93
  186. package/lib/utils/CanvasUtils.js +105 -186
  187. package/lib/utils/diff.d.ts +18 -25
  188. package/lib/utils/diff.js +87 -84
  189. package/lib/utils/index.d.ts +1 -1
  190. package/lib/utils/index.js +1 -1
  191. package/lib/utils/is.d.ts +2 -4
  192. package/lib/utils/is.js +2 -2
  193. package/lib/utils/makeSignalExtensions.d.ts +4 -11
  194. package/lib/utils/makeSignalExtensions.js +17 -17
  195. package/package.json +4 -4
  196. package/lib/components/AudioTest.d.ts +0 -99
  197. package/lib/components/AudioTest.d.ts.map +0 -1
  198. package/lib/components/AudioTest.js +0 -281
@@ -1,82 +1,76 @@
1
- var __decorate =
2
- (this && this.__decorate) ||
3
- function (decorators, target, key, desc) {
4
- var c = arguments.length,
5
- r =
6
- c < 3
7
- ? target
8
- : desc === null
9
- ? (desc = Object.getOwnPropertyDescriptor(target, key))
10
- : desc,
11
- d;
12
- if (typeof Reflect === 'object' && typeof Reflect.decorate === 'function')
13
- r = Reflect.decorate(decorators, target, key, desc);
14
- else
15
- for (var i = decorators.length - 1; i >= 0; i--)
16
- if ((d = decorators[i]))
17
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
5
  return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
20
- import {BBox} from '@revideo/core';
21
- import {getRectProfile} from '../curves/getRectProfile';
22
- import {computed, initial, nodeName, signal} from '../decorators';
23
- import {spacingSignal} from '../decorators/spacingSignal';
24
- import {drawRoundRect} from '../utils';
25
- import {Curve} from './Curve';
6
+ };
7
+ import { BBox, } from '@revideo/core';
8
+ import { getRectProfile } from '../curves/getRectProfile';
9
+ import { computed, initial, nodeName, signal } from '../decorators';
10
+ import { spacingSignal } from '../decorators/spacingSignal';
11
+ import { drawRoundRect } from '../utils';
12
+ import { Curve } from './Curve';
26
13
  let Rect = class Rect extends Curve {
27
- constructor(props) {
28
- super(props);
29
- }
30
- profile() {
31
- return getRectProfile(
32
- this.childrenBBox(),
33
- this.radius(),
34
- this.smoothCorners(),
35
- this.cornerSharpness(),
36
- );
37
- }
38
- desiredSize() {
39
- return {
40
- x: this.width.context.getter(),
41
- y: this.height.context.getter(),
42
- };
43
- }
44
- offsetComputedLayout(box) {
45
- return box;
46
- }
47
- childrenBBox() {
48
- return BBox.fromSizeCentered(this.computedSize());
49
- }
50
- getPath() {
51
- if (this.requiresProfile()) {
52
- return this.curveDrawingInfo().path;
14
+ constructor(props) {
15
+ super(props);
16
+ }
17
+ profile() {
18
+ return getRectProfile(this.childrenBBox(), this.radius(), this.smoothCorners(), this.cornerSharpness());
19
+ }
20
+ desiredSize() {
21
+ return {
22
+ x: this.width.context.getter(),
23
+ y: this.height.context.getter(),
24
+ };
25
+ }
26
+ offsetComputedLayout(box) {
27
+ return box;
28
+ }
29
+ childrenBBox() {
30
+ return BBox.fromSizeCentered(this.computedSize());
31
+ }
32
+ getPath() {
33
+ if (this.requiresProfile()) {
34
+ return this.curveDrawingInfo().path;
35
+ }
36
+ const path = new Path2D();
37
+ const radius = this.radius();
38
+ const smoothCorners = this.smoothCorners();
39
+ const cornerSharpness = this.cornerSharpness();
40
+ const box = BBox.fromSizeCentered(this.size());
41
+ drawRoundRect(path, box, radius, smoothCorners, cornerSharpness);
42
+ return path;
43
+ }
44
+ getCacheBBox() {
45
+ return super.getCacheBBox().expand(this.rippleSize());
46
+ }
47
+ getRipplePath() {
48
+ const path = new Path2D();
49
+ const rippleSize = this.rippleSize();
50
+ const radius = this.radius().addScalar(rippleSize);
51
+ const smoothCorners = this.smoothCorners();
52
+ const cornerSharpness = this.cornerSharpness();
53
+ const box = BBox.fromSizeCentered(this.size()).expand(rippleSize);
54
+ drawRoundRect(path, box, radius, smoothCorners, cornerSharpness);
55
+ return path;
53
56
  }
54
- const path = new Path2D();
55
- const radius = this.radius();
56
- const smoothCorners = this.smoothCorners();
57
- const cornerSharpness = this.cornerSharpness();
58
- const box = BBox.fromSizeCentered(this.size());
59
- drawRoundRect(path, box, radius, smoothCorners, cornerSharpness);
60
- return path;
61
- }
62
- getCacheBBox() {
63
- return super.getCacheBBox().expand(this.rippleSize());
64
- }
65
- getRipplePath() {
66
- const path = new Path2D();
67
- const rippleSize = this.rippleSize();
68
- const radius = this.radius().addScalar(rippleSize);
69
- const smoothCorners = this.smoothCorners();
70
- const cornerSharpness = this.cornerSharpness();
71
- const box = BBox.fromSizeCentered(this.size()).expand(rippleSize);
72
- drawRoundRect(path, box, radius, smoothCorners, cornerSharpness);
73
- return path;
74
- }
75
57
  };
76
- __decorate([spacingSignal('radius')], Rect.prototype, 'radius', void 0);
77
- __decorate([initial(false), signal()], Rect.prototype, 'smoothCorners', void 0);
78
- __decorate([initial(0.6), signal()], Rect.prototype, 'cornerSharpness', void 0);
79
- __decorate([computed()], Rect.prototype, 'profile', null);
80
- Rect = __decorate([nodeName('Rect')], Rect);
81
- export {Rect};
82
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUmVjdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9saWIvY29tcG9uZW50cy9SZWN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUFBLE9BQU8sRUFDTCxJQUFJLEdBTUwsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFDLGNBQWMsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ3hELE9BQU8sRUFBQyxRQUFRLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDbEUsT0FBTyxFQUFDLGFBQWEsRUFBQyxNQUFNLDZCQUE2QixDQUFDO0FBRTFELE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSxVQUFVLENBQUM7QUFDdkMsT0FBTyxFQUFDLEtBQUssRUFBYSxNQUFNLFNBQVMsQ0FBQztBQW9CbkMsSUFBTSxJQUFJLEdBQVYsTUFBTSxJQUFLLFNBQVEsS0FBSztJQTZGN0IsWUFBbUIsS0FBZ0I7UUFDakMsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2YsQ0FBQztJQUdNLE9BQU87UUFDWixPQUFPLGNBQWMsQ0FDbkIsSUFBSSxDQUFDLFlBQVksRUFBRSxFQUNuQixJQUFJLENBQUMsTUFBTSxFQUFFLEVBQ2IsSUFBSSxDQUFDLGFBQWEsRUFBRSxFQUNwQixJQUFJLENBQUMsZUFBZSxFQUFFLENBQ3ZCLENBQUM7SUFDSixDQUFDO0lBRWtCLFdBQVc7UUFDNUIsT0FBTztZQUNMLENBQUMsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxNQUFNLEVBQUU7WUFDOUIsQ0FBQyxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLE1BQU0sRUFBRTtTQUNoQyxDQUFDO0lBQ0osQ0FBQztJQUVrQixvQkFBb0IsQ0FBQyxHQUFTO1FBQy9DLE9BQU8sR0FBRyxDQUFDO0lBQ2IsQ0FBQztJQUVrQixZQUFZO1FBQzdCLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQyxDQUFDO0lBQ3BELENBQUM7SUFFa0IsT0FBTztRQUN4QixJQUFJLElBQUksQ0FBQyxlQUFlLEVBQUUsRUFBRSxDQUFDO1lBQzNCLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixFQUFFLENBQUMsSUFBSSxDQUFDO1FBQ3RDLENBQUM7UUFFRCxNQUFNLElBQUksR0FBRyxJQUFJLE1BQU0sRUFBRSxDQUFDO1FBQzFCLE1BQU0sTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQztRQUM3QixNQUFNLGFBQWEsR0FBRyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDM0MsTUFBTSxlQUFlLEdBQUcsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBQy9DLE1BQU0sR0FBRyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQztRQUMvQyxhQUFhLENBQUMsSUFBSSxFQUFFLEdBQUcsRUFBRSxNQUFNLEVBQUUsYUFBYSxFQUFFLGVBQWUsQ0FBQyxDQUFDO1FBRWpFLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQztJQUVrQixZQUFZO1FBQzdCLE9BQU8sS0FBSyxDQUFDLFlBQVksRUFBRSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBRWtCLGFBQWE7UUFDOUIsTUFBTSxJQUFJLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztRQUMxQixNQUFNLFVBQVUsR0FBRyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7UUFDckMsTUFBTSxNQUFNLEdBQUcsSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDLFNBQVMsQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUNuRCxNQUFNLGFBQWEsR0FBRyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDM0MsTUFBTSxlQUFlLEdBQUcsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBQy9DLE1BQU0sR0FBRyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7UUFDbEUsYUFBYSxDQUFDLElBQUksRUFBRSxHQUFHLEVBQUUsTUFBTSxFQUFFLGFBQWEsRUFBRSxlQUFlLENBQUMsQ0FBQztRQUVqRSxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7Q0FDRixDQUFBO0FBaEh5QjtJQUR2QixhQUFhLENBQUMsUUFBUSxDQUFDO29DQUM0QjtBQTJCNUI7SUFGdkIsT0FBTyxDQUFDLEtBQUssQ0FBQztJQUNkLE1BQU0sRUFBRTsyQ0FDMEQ7QUF3QjNDO0lBRnZCLE9BQU8sQ0FBQyxHQUFHLENBQUM7SUFDWixNQUFNLEVBQUU7NkNBQzJEO0FBTzdEO0lBRE4sUUFBUSxFQUFFO21DQVFWO0FBekdVLElBQUk7SUFEaEIsUUFBUSxDQUFDLE1BQU0sQ0FBQztHQUNKLElBQUksQ0F3SmhCIn0=
58
+ __decorate([
59
+ spacingSignal('radius')
60
+ ], Rect.prototype, "radius", void 0);
61
+ __decorate([
62
+ initial(false),
63
+ signal()
64
+ ], Rect.prototype, "smoothCorners", void 0);
65
+ __decorate([
66
+ initial(0.6),
67
+ signal()
68
+ ], Rect.prototype, "cornerSharpness", void 0);
69
+ __decorate([
70
+ computed()
71
+ ], Rect.prototype, "profile", null);
72
+ Rect = __decorate([
73
+ nodeName('Rect')
74
+ ], Rect);
75
+ export { Rect };
76
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUmVjdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9saWIvY29tcG9uZW50cy9SZWN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUFBLE9BQU8sRUFDTCxJQUFJLEdBTUwsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFDLGNBQWMsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ3hELE9BQU8sRUFBQyxRQUFRLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDbEUsT0FBTyxFQUFDLGFBQWEsRUFBQyxNQUFNLDZCQUE2QixDQUFDO0FBRTFELE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSxVQUFVLENBQUM7QUFDdkMsT0FBTyxFQUFDLEtBQUssRUFBYSxNQUFNLFNBQVMsQ0FBQztBQW9CbkMsSUFBTSxJQUFJLEdBQVYsTUFBTSxJQUFLLFNBQVEsS0FBSztJQTZGN0IsWUFBbUIsS0FBZ0I7UUFDakMsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2YsQ0FBQztJQUdNLE9BQU87UUFDWixPQUFPLGNBQWMsQ0FDbkIsSUFBSSxDQUFDLFlBQVksRUFBRSxFQUNuQixJQUFJLENBQUMsTUFBTSxFQUFFLEVBQ2IsSUFBSSxDQUFDLGFBQWEsRUFBRSxFQUNwQixJQUFJLENBQUMsZUFBZSxFQUFFLENBQ3ZCLENBQUM7SUFDSixDQUFDO0lBRWtCLFdBQVc7UUFDNUIsT0FBTztZQUNMLENBQUMsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxNQUFNLEVBQUU7WUFDOUIsQ0FBQyxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLE1BQU0sRUFBRTtTQUNoQyxDQUFDO0lBQ0osQ0FBQztJQUVrQixvQkFBb0IsQ0FBQyxHQUFTO1FBQy9DLE9BQU8sR0FBRyxDQUFDO0lBQ2IsQ0FBQztJQUVrQixZQUFZO1FBQzdCLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQyxDQUFDO0lBQ3BELENBQUM7SUFFa0IsT0FBTztRQUN4QixJQUFJLElBQUksQ0FBQyxlQUFlLEVBQUUsRUFBRSxDQUFDO1lBQzNCLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixFQUFFLENBQUMsSUFBSSxDQUFDO1FBQ3RDLENBQUM7UUFFRCxNQUFNLElBQUksR0FBRyxJQUFJLE1BQU0sRUFBRSxDQUFDO1FBQzFCLE1BQU0sTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQztRQUM3QixNQUFNLGFBQWEsR0FBRyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDM0MsTUFBTSxlQUFlLEdBQUcsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBQy9DLE1BQU0sR0FBRyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQztRQUMvQyxhQUFhLENBQUMsSUFBSSxFQUFFLEdBQUcsRUFBRSxNQUFNLEVBQUUsYUFBYSxFQUFFLGVBQWUsQ0FBQyxDQUFDO1FBRWpFLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQztJQUVrQixZQUFZO1FBQzdCLE9BQU8sS0FBSyxDQUFDLFlBQVksRUFBRSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQztJQUN4RCxDQUFDO0lBRWtCLGFBQWE7UUFDOUIsTUFBTSxJQUFJLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztRQUMxQixNQUFNLFVBQVUsR0FBRyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7UUFDckMsTUFBTSxNQUFNLEdBQUcsSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDLFNBQVMsQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUNuRCxNQUFNLGFBQWEsR0FBRyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDM0MsTUFBTSxlQUFlLEdBQUcsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBQy9DLE1BQU0sR0FBRyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7UUFDbEUsYUFBYSxDQUFDLElBQUksRUFBRSxHQUFHLEVBQUUsTUFBTSxFQUFFLGFBQWEsRUFBRSxlQUFlLENBQUMsQ0FBQztRQUVqRSxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7Q0FDRixDQUFBO0FBaEh5QjtJQUR2QixhQUFhLENBQUMsUUFBUSxDQUFDO29DQUM0QjtBQTJCNUI7SUFGdkIsT0FBTyxDQUFDLEtBQUssQ0FBQztJQUNkLE1BQU0sRUFBRTsyQ0FDMEQ7QUF3QjNDO0lBRnZCLE9BQU8sQ0FBQyxHQUFHLENBQUM7SUFDWixNQUFNLEVBQUU7NkNBQzJEO0FBTzdEO0lBRE4sUUFBUSxFQUFFO21DQVFWO0FBekdVLElBQUk7SUFEaEIsUUFBUSxDQUFDLE1BQU0sQ0FBQztHQUNKLElBQUksQ0F3SmhCIn0=
@@ -1,21 +1,14 @@
1
- import {
2
- SerializedVector2,
3
- SignalValue,
4
- SimpleSignal,
5
- ThreadGenerator,
6
- TimingFunction,
7
- Vector2,
8
- } from '@revideo/core';
9
- import {DesiredLength} from '../partials';
10
- import {Node, NodeProps} from './Node';
11
- import {Shape, ShapeProps} from './Shape';
1
+ import { SerializedVector2, SignalValue, SimpleSignal, ThreadGenerator, TimingFunction, Vector2 } from '@revideo/core';
2
+ import { DesiredLength } from '../partials';
3
+ import { Node, NodeProps } from './Node';
4
+ import { Shape, ShapeProps } from './Shape';
12
5
  /**
13
6
  * Represent SVG shape.
14
7
  * This only used single time because `node` may have reference to parent SVG renderer.
15
8
  */
16
9
  export interface SVGShape {
17
- id: string;
18
- shape: Node;
10
+ id: string;
11
+ shape: Node;
19
12
  }
20
13
  /**
21
14
  * Data of SVGShape.
@@ -23,18 +16,18 @@ export interface SVGShape {
23
16
  * This must build into SVGShape
24
17
  */
25
18
  export interface SVGShapeData {
26
- id: string;
27
- type: new (props: NodeProps) => Node;
28
- props: ShapeProps;
29
- children?: SVGShapeData[];
19
+ id: string;
20
+ type: new (props: NodeProps) => Node;
21
+ props: ShapeProps;
22
+ children?: SVGShapeData[];
30
23
  }
31
24
  /**
32
25
  * Represent SVG document that contains SVG shapes.
33
26
  * This only used single time because `nodes` have reference to parent SVG renderer.
34
27
  */
35
28
  export interface SVGDocument {
36
- size: Vector2;
37
- nodes: SVGShape[];
29
+ size: Vector2;
30
+ nodes: SVGShape[];
38
31
  }
39
32
  /**
40
33
  * Data of SVGDocument.
@@ -42,11 +35,11 @@ export interface SVGDocument {
42
35
  * This must build into SVGDocument
43
36
  */
44
37
  export interface SVGDocumentData {
45
- size: Vector2;
46
- nodes: SVGShapeData[];
38
+ size: Vector2;
39
+ nodes: SVGShapeData[];
47
40
  }
48
41
  export interface SVGProps extends ShapeProps {
49
- svg: SignalValue<string>;
42
+ svg: SignalValue<string>;
50
43
  }
51
44
  /**
52
45
  A Node for drawing and animating SVG images.
@@ -55,147 +48,128 @@ A Node for drawing and animating SVG images.
55
48
  If you're not interested in animating SVG, you can use {@link Img} instead.
56
49
  */
57
50
  export declare class SVG extends Shape {
58
- protected static containerElement: HTMLDivElement;
59
- private static svgNodesPool;
60
- /**
61
- * SVG string to be rendered
62
- */
63
- readonly svg: SimpleSignal<string, this>;
64
- /**
65
- * Child to wrap all SVG node
66
- */
67
- wrapper: Node;
68
- private lastTweenTargetSrc;
69
- private lastTweenTargetDocument;
70
- constructor(props: SVGProps);
71
- /**
72
- * Get all SVG nodes with the given id.
73
- * @param id - An id to query.
74
- */
75
- getChildrenById(id: string): Node[];
76
- protected desiredSize(): SerializedVector2<DesiredLength>;
77
- protected getCurrentSize(): {
78
- x: number | null;
79
- y: number | null;
80
- };
81
- protected calculateWrapperScale(
82
- documentSize: Vector2,
83
- parentSize: SerializedVector2<number | null>,
84
- ): Vector2;
85
- /**
86
- * Convert `SVGDocumentData` to `SVGDocument`.
87
- * @param data - `SVGDocumentData` to convert.
88
- */
89
- protected buildDocument(data: SVGDocumentData): SVGDocument;
90
- /**
91
- * Convert `SVGShapeData` to `SVGShape`.
92
- * @param data - `SVGShapeData` to convert.
93
- */
94
- protected buildShape({id, type, props, children}: SVGShapeData): SVGShape;
95
- /**
96
- * Convert an SVG string to `SVGDocument`.
97
- * @param svg - An SVG string to be parsed.
98
- */
99
- protected parseSVG(svg: string): SVGDocument;
100
- /**
101
- * Create a tweening list to tween between two SVG nodes.
102
- * @param from - The initial node,
103
- * @param to - The final node.
104
- * @param duration - The duration of the tween.
105
- * @param timing - The timing function.
106
- */
107
- protected generateTransformer(
108
- from: Node,
109
- to: Node,
110
- duration: number,
111
- timing: TimingFunction,
112
- ): Generator<ThreadGenerator>;
113
- protected tweenSvg(
114
- value: SignalValue<string>,
115
- time: number,
116
- timingFunction: TimingFunction,
117
- ): Generator<
118
- | void
119
- | ThreadGenerator
120
- | Promise<any>
121
- | import('@revideo/core').Promisable<any>,
122
- void,
123
- any
124
- >;
125
- private wrapperScale;
126
- /**
127
- * Get the current `SVGDocument`.
128
- */
129
- private document;
130
- /**
131
- * Get current document nodes.
132
- */
133
- private documentNodes;
134
- /**
135
- * Convert SVG colors in Shape properties to Motion Canvas colors.
136
- * @param param - Shape properties.
137
- * @returns Converted Shape properties.
138
- */
139
- private processElementStyle;
140
- /**
141
- * Parse an SVG string as `SVGDocumentData`.
142
- * @param svg - And SVG string to be parsed.
143
- * @returns `SVGDocumentData` that can be used to build SVGDocument.
144
- */
145
- protected static parseSVGData(svg: string): SVGDocumentData;
146
- /**
147
- * Get position, rotation and scale from Matrix transformation as Shape properties
148
- * @param transform - Matrix transformation
149
- * @returns MotionCanvas Shape properties
150
- */
151
- protected static getMatrixTransformation(transform: DOMMatrix): ShapeProps;
152
- /**
153
- * Convert an SVG color into a Motion Canvas color.
154
- * @param color - SVG color.
155
- * @returns Motion Canvas color.
156
- */
157
- private static processSVGColor;
158
- /**
159
- * Get the final transformation matrix for the given SVG element.
160
- * @param element - SVG element.
161
- * @param parentTransform - The transformation matrix of the parent.
162
- */
163
- private static getElementTransformation;
164
- private static parseLineCap;
165
- private static parseLineJoin;
166
- private static parseLineDash;
167
- private static parseDashOffset;
168
- private static parseOpacity;
169
- /**
170
- * Convert the SVG element's style to a Motion Canvas Shape properties.
171
- * @param element - An SVG element whose style should be converted.
172
- * @param inheritedStyle - The parent style that should be inherited.
173
- */
174
- private static getElementStyle;
175
- /**
176
- * Extract `SVGShapeData` list from the SVG element's children.
177
- * This will not extract the current element's shape.
178
- * @param element - An element whose children will be extracted.
179
- * @param svgRoot - The SVG root ("svg" tag) of the element.
180
- * @param parentTransform - The transformation matrix applied to the parent.
181
- * @param inheritedStyle - The style of the current SVG `element` that the children should inherit.
182
- */
183
- private static extractGroupNodes;
184
- /**
185
- * Parse a number from an SVG element attribute.
186
- * @param element - SVG element whose attribute will be parsed.
187
- * @param name - The name of the attribute to parse.
188
- * @returns a parsed number or `0` if the attribute is not defined.
189
- */
190
- private static parseNumberAttribute;
191
- /**
192
- * Extract `SVGShapeData` list from the SVG element.
193
- * This will also recursively extract shapes from its children.
194
- * @param child - An SVG element to extract.
195
- * @param svgRoot - The SVG root ("svg" tag) of the element.
196
- * @param parentTransform - The transformation matrix applied to the parent.
197
- * @param inheritedStyle - The style of the parent SVG element that the element should inherit.
198
- */
199
- private static extractElementNodes;
51
+ protected static containerElement: HTMLDivElement;
52
+ private static svgNodesPool;
53
+ /**
54
+ * SVG string to be rendered
55
+ */
56
+ readonly svg: SimpleSignal<string, this>;
57
+ /**
58
+ * Child to wrap all SVG node
59
+ */
60
+ wrapper: Node;
61
+ private lastTweenTargetSrc;
62
+ private lastTweenTargetDocument;
63
+ constructor(props: SVGProps);
64
+ /**
65
+ * Get all SVG nodes with the given id.
66
+ * @param id - An id to query.
67
+ */
68
+ getChildrenById(id: string): Node[];
69
+ protected desiredSize(): SerializedVector2<DesiredLength>;
70
+ protected getCurrentSize(): {
71
+ x: number | null;
72
+ y: number | null;
73
+ };
74
+ protected calculateWrapperScale(documentSize: Vector2, parentSize: SerializedVector2<number | null>): Vector2;
75
+ /**
76
+ * Convert `SVGDocumentData` to `SVGDocument`.
77
+ * @param data - `SVGDocumentData` to convert.
78
+ */
79
+ protected buildDocument(data: SVGDocumentData): SVGDocument;
80
+ /**
81
+ * Convert `SVGShapeData` to `SVGShape`.
82
+ * @param data - `SVGShapeData` to convert.
83
+ */
84
+ protected buildShape({ id, type, props, children }: SVGShapeData): SVGShape;
85
+ /**
86
+ * Convert an SVG string to `SVGDocument`.
87
+ * @param svg - An SVG string to be parsed.
88
+ */
89
+ protected parseSVG(svg: string): SVGDocument;
90
+ /**
91
+ * Create a tweening list to tween between two SVG nodes.
92
+ * @param from - The initial node,
93
+ * @param to - The final node.
94
+ * @param duration - The duration of the tween.
95
+ * @param timing - The timing function.
96
+ */
97
+ protected generateTransformer(from: Node, to: Node, duration: number, timing: TimingFunction): Generator<ThreadGenerator>;
98
+ protected tweenSvg(value: SignalValue<string>, time: number, timingFunction: TimingFunction): Generator<void | ThreadGenerator | Promise<any> | import("@revideo/core").Promisable<any>, void, any>;
99
+ private wrapperScale;
100
+ /**
101
+ * Get the current `SVGDocument`.
102
+ */
103
+ private document;
104
+ /**
105
+ * Get current document nodes.
106
+ */
107
+ private documentNodes;
108
+ /**
109
+ * Convert SVG colors in Shape properties to Motion Canvas colors.
110
+ * @param param - Shape properties.
111
+ * @returns Converted Shape properties.
112
+ */
113
+ private processElementStyle;
114
+ /**
115
+ * Parse an SVG string as `SVGDocumentData`.
116
+ * @param svg - And SVG string to be parsed.
117
+ * @returns `SVGDocumentData` that can be used to build SVGDocument.
118
+ */
119
+ protected static parseSVGData(svg: string): SVGDocumentData;
120
+ /**
121
+ * Get position, rotation and scale from Matrix transformation as Shape properties
122
+ * @param transform - Matrix transformation
123
+ * @returns MotionCanvas Shape properties
124
+ */
125
+ protected static getMatrixTransformation(transform: DOMMatrix): ShapeProps;
126
+ /**
127
+ * Convert an SVG color into a Motion Canvas color.
128
+ * @param color - SVG color.
129
+ * @returns Motion Canvas color.
130
+ */
131
+ private static processSVGColor;
132
+ /**
133
+ * Get the final transformation matrix for the given SVG element.
134
+ * @param element - SVG element.
135
+ * @param parentTransform - The transformation matrix of the parent.
136
+ */
137
+ private static getElementTransformation;
138
+ private static parseLineCap;
139
+ private static parseLineJoin;
140
+ private static parseLineDash;
141
+ private static parseDashOffset;
142
+ private static parseOpacity;
143
+ /**
144
+ * Convert the SVG element's style to a Motion Canvas Shape properties.
145
+ * @param element - An SVG element whose style should be converted.
146
+ * @param inheritedStyle - The parent style that should be inherited.
147
+ */
148
+ private static getElementStyle;
149
+ /**
150
+ * Extract `SVGShapeData` list from the SVG element's children.
151
+ * This will not extract the current element's shape.
152
+ * @param element - An element whose children will be extracted.
153
+ * @param svgRoot - The SVG root ("svg" tag) of the element.
154
+ * @param parentTransform - The transformation matrix applied to the parent.
155
+ * @param inheritedStyle - The style of the current SVG `element` that the children should inherit.
156
+ */
157
+ private static extractGroupNodes;
158
+ /**
159
+ * Parse a number from an SVG element attribute.
160
+ * @param element - SVG element whose attribute will be parsed.
161
+ * @param name - The name of the attribute to parse.
162
+ * @returns a parsed number or `0` if the attribute is not defined.
163
+ */
164
+ private static parseNumberAttribute;
165
+ /**
166
+ * Extract `SVGShapeData` list from the SVG element.
167
+ * This will also recursively extract shapes from its children.
168
+ * @param child - An SVG element to extract.
169
+ * @param svgRoot - The SVG root ("svg" tag) of the element.
170
+ * @param parentTransform - The transformation matrix applied to the parent.
171
+ * @param inheritedStyle - The style of the parent SVG element that the element should inherit.
172
+ */
173
+ private static extractElementNodes;
200
174
  }
201
- //# sourceMappingURL=SVG.d.ts.map
175
+ //# sourceMappingURL=SVG.d.ts.map