@revideo/2d 0.2.6-alpha.904 → 0.2.6-alpha.906

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 (158) 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/Bezier.d.ts +18 -18
  32. package/lib/components/Bezier.js +75 -86
  33. package/lib/components/Circle.d.ts +90 -95
  34. package/lib/components/Circle.js +74 -85
  35. package/lib/components/CubicBezier.d.ts +36 -36
  36. package/lib/components/CubicBezier.js +49 -52
  37. package/lib/components/Curve.d.ts +198 -208
  38. package/lib/components/Grid.d.ts +42 -47
  39. package/lib/components/Icon.d.ts +50 -55
  40. package/lib/components/Knot.d.ts +78 -97
  41. package/lib/components/Latex.d.ts +12 -12
  42. package/lib/components/Line.d.ts +49 -61
  43. package/lib/components/Path.d.ts +14 -35
  44. package/lib/components/Path.js +89 -100
  45. package/lib/components/Polygon.d.ts +55 -60
  46. package/lib/components/Polygon.js +66 -71
  47. package/lib/components/QuadBezier.d.ts +29 -29
  48. package/lib/components/QuadBezier.js +45 -50
  49. package/lib/components/Ray.d.ts +28 -28
  50. package/lib/components/Ray.js +64 -71
  51. package/lib/components/Rect.d.ts +108 -115
  52. package/lib/components/Rect.js +72 -78
  53. package/lib/components/SVG.d.ts +139 -165
  54. package/lib/components/Spline.d.ts +40 -46
  55. package/lib/components/Video.d.ts.map +1 -1
  56. package/lib/components/Video.js +7 -2
  57. package/lib/components/index.d.ts +1 -1
  58. package/lib/components/types.d.ts +9 -22
  59. package/lib/curves/ArcSegment.d.ts +24 -36
  60. package/lib/curves/CircleSegment.d.ts +16 -26
  61. package/lib/curves/CircleSegment.js +49 -56
  62. package/lib/curves/CubicBezierSegment.d.ts +13 -18
  63. package/lib/curves/CubicBezierSegment.js +46 -79
  64. package/lib/curves/CurveDrawingInfo.d.ts +9 -9
  65. package/lib/curves/CurveDrawingInfo.js +1 -1
  66. package/lib/curves/CurvePoint.d.ts +13 -13
  67. package/lib/curves/CurvePoint.js +1 -1
  68. package/lib/curves/CurveProfile.d.ts +5 -5
  69. package/lib/curves/CurveProfile.js +1 -1
  70. package/lib/curves/KnotInfo.d.ts +8 -8
  71. package/lib/curves/KnotInfo.js +1 -1
  72. package/lib/curves/LineSegment.d.ts +14 -19
  73. package/lib/curves/LineSegment.js +42 -42
  74. package/lib/curves/Polynomial.d.ts +110 -110
  75. package/lib/curves/Polynomial.js +239 -249
  76. package/lib/curves/Polynomial2D.d.ts +20 -20
  77. package/lib/curves/Polynomial2D.js +42 -46
  78. package/lib/curves/PolynomialSegment.d.ts +37 -42
  79. package/lib/curves/PolynomialSegment.js +81 -83
  80. package/lib/curves/QuadBezierSegment.d.ts +12 -12
  81. package/lib/curves/QuadBezierSegment.js +41 -71
  82. package/lib/curves/Segment.d.ts +7 -12
  83. package/lib/curves/Segment.js +3 -2
  84. package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
  85. package/lib/curves/UniformPolynomialCurveSampler.js +62 -68
  86. package/lib/curves/createCurveProfileLerp.d.ts +6 -17
  87. package/lib/curves/createCurveProfileLerp.js +208 -211
  88. package/lib/curves/getBezierSplineProfile.d.ts +4 -8
  89. package/lib/curves/getBezierSplineProfile.js +101 -145
  90. package/lib/curves/getCircleProfile.d.ts +4 -10
  91. package/lib/curves/getCircleProfile.js +40 -72
  92. package/lib/curves/getPathProfile.d.ts +2 -2
  93. package/lib/curves/getPathProfile.js +112 -135
  94. package/lib/curves/getPointAtDistance.d.ts +4 -7
  95. package/lib/curves/getPointAtDistance.js +12 -12
  96. package/lib/curves/getPolylineProfile.d.ts +4 -8
  97. package/lib/curves/getPolylineProfile.js +54 -67
  98. package/lib/curves/getRectProfile.d.ts +4 -9
  99. package/lib/curves/getRectProfile.js +52 -117
  100. package/lib/curves/index.d.ts +1 -1
  101. package/lib/curves/index.js +1 -1
  102. package/lib/decorators/canvasStyleSignal.d.ts +3 -3
  103. package/lib/decorators/canvasStyleSignal.js +10 -10
  104. package/lib/decorators/colorSignal.d.ts +1 -1
  105. package/lib/decorators/colorSignal.js +7 -7
  106. package/lib/decorators/compound.d.ts +2 -4
  107. package/lib/decorators/compound.js +23 -43
  108. package/lib/decorators/computed.d.ts +1 -1
  109. package/lib/decorators/computed.js +9 -9
  110. package/lib/decorators/defaultStyle.d.ts +2 -5
  111. package/lib/decorators/defaultStyle.js +11 -11
  112. package/lib/decorators/filtersSignal.d.ts +8 -28
  113. package/lib/decorators/filtersSignal.js +64 -87
  114. package/lib/decorators/index.d.ts +1 -1
  115. package/lib/decorators/index.js +1 -1
  116. package/lib/decorators/initializers.d.ts +2 -5
  117. package/lib/decorators/initializers.js +19 -18
  118. package/lib/decorators/nodeName.d.ts +1 -1
  119. package/lib/decorators/nodeName.js +4 -4
  120. package/lib/decorators/signal.d.ts +20 -40
  121. package/lib/decorators/signal.js +104 -113
  122. package/lib/decorators/spacingSignal.d.ts +1 -1
  123. package/lib/decorators/spacingSignal.js +13 -13
  124. package/lib/decorators/vector2Signal.d.ts +7 -13
  125. package/lib/decorators/vector2Signal.js +13 -15
  126. package/lib/index.d.ts +1 -1
  127. package/lib/index.js +1 -1
  128. package/lib/jsx-dev-runtime.d.ts +3 -3
  129. package/lib/jsx-dev-runtime.js +3 -3
  130. package/lib/jsx-runtime.d.ts +9 -19
  131. package/lib/jsx-runtime.js +18 -18
  132. package/lib/partials/Filter.d.ts +16 -24
  133. package/lib/partials/Filter.js +69 -69
  134. package/lib/partials/Gradient.d.ts +24 -30
  135. package/lib/partials/Gradient.js +58 -69
  136. package/lib/partials/Pattern.d.ts +9 -14
  137. package/lib/partials/Pattern.js +24 -30
  138. package/lib/partials/ShaderConfig.d.ts +74 -81
  139. package/lib/partials/ShaderConfig.js +23 -22
  140. package/lib/partials/index.d.ts +1 -1
  141. package/lib/partials/index.js +1 -1
  142. package/lib/partials/types.d.ts +6 -19
  143. package/lib/partials/types.js +1 -1
  144. package/lib/scenes/index.d.ts +1 -1
  145. package/lib/scenes/makeScene2D.d.ts +5 -7
  146. package/lib/scenes/useScene2D.d.ts +2 -2
  147. package/lib/tsconfig.build.tsbuildinfo +1 -1
  148. package/lib/utils/CanvasUtils.js +105 -186
  149. package/lib/utils/diff.d.ts +18 -25
  150. package/lib/utils/diff.js +87 -84
  151. package/lib/utils/index.d.ts +1 -1
  152. package/lib/utils/index.js +1 -1
  153. package/lib/utils/is.d.ts +2 -4
  154. package/lib/utils/is.js +2 -2
  155. package/lib/utils/makeSignalExtensions.d.ts +4 -11
  156. package/lib/utils/makeSignalExtensions.js +17 -17
  157. package/package.json +4 -4
  158. package/src/lib/components/Video.ts +7 -1
@@ -1,14 +1,14 @@
1
- import {Vector2} from '@revideo/core';
2
- import {Code} from '../components';
3
- import {CodeScope} from './CodeScope';
1
+ import { Vector2 } from '@revideo/core';
2
+ import { Code } from '../components';
3
+ import { CodeScope } from './CodeScope';
4
4
  export interface CodeFragmentDrawingInfo {
5
- text: string;
6
- position: Vector2;
7
- characterSize: Vector2;
8
- cursor: Vector2;
9
- fill: string;
10
- time: number;
11
- alpha: number;
5
+ text: string;
6
+ position: Vector2;
7
+ characterSize: Vector2;
8
+ cursor: Vector2;
9
+ fill: string;
10
+ time: number;
11
+ alpha: number;
12
12
  }
13
13
  /**
14
14
  * A stateful class for recursively traversing a code scope.
@@ -16,68 +16,68 @@ export interface CodeFragmentDrawingInfo {
16
16
  * @internal
17
17
  */
18
18
  export declare class CodeCursor {
19
- private readonly node;
20
- cursor: Vector2;
21
- beforeCursor: Vector2;
22
- afterCursor: Vector2;
23
- beforeIndex: number;
24
- afterIndex: number;
25
- private context;
26
- private monoWidth;
27
- private maxWidth;
28
- private lineHeight;
29
- private fallbackFill;
30
- private caches;
31
- private highlighter;
32
- private selection;
33
- private selectionProgress;
34
- private globalProgress;
35
- private fragmentDrawingInfo;
36
- private fontHeight;
37
- private verticalOffset;
38
- constructor(node: Code);
39
- /**
40
- * Prepare the cursor for the next traversal.
41
- *
42
- * @param context - The context used to measure and draw the code.
43
- */
44
- setupMeasure(context: CanvasRenderingContext2D): void;
45
- setupDraw(context: CanvasRenderingContext2D): void;
46
- /**
47
- * Measure the desired size of the code scope.
48
- *
49
- * @remarks
50
- * The result can be retrieved with {@link getSize}.
51
- *
52
- * @param scope - The code scope to measure.
53
- */
54
- measureSize(scope: CodeScope): void;
55
- /**
56
- * Get the size measured by the cursor.
57
- */
58
- getSize(): {
59
- x: number;
60
- y: number;
61
- };
62
- /**
63
- * Get the drawing information created by the cursor.
64
- */
65
- getDrawingInfo(): {
66
- fragments: CodeFragmentDrawingInfo[];
67
- verticalOffset: number;
68
- fontHeight: number;
69
- };
70
- /**
71
- * Draw the given code scope.
72
- *
73
- * @param scope - The code scope to draw.
74
- */
75
- drawScope(scope: CodeScope): void;
76
- private drawToken;
77
- private calculateWidth;
78
- private calculateMaxWidth;
79
- private currentProgress;
80
- private processSelection;
81
- private isSelected;
19
+ private readonly node;
20
+ cursor: Vector2;
21
+ beforeCursor: Vector2;
22
+ afterCursor: Vector2;
23
+ beforeIndex: number;
24
+ afterIndex: number;
25
+ private context;
26
+ private monoWidth;
27
+ private maxWidth;
28
+ private lineHeight;
29
+ private fallbackFill;
30
+ private caches;
31
+ private highlighter;
32
+ private selection;
33
+ private selectionProgress;
34
+ private globalProgress;
35
+ private fragmentDrawingInfo;
36
+ private fontHeight;
37
+ private verticalOffset;
38
+ constructor(node: Code);
39
+ /**
40
+ * Prepare the cursor for the next traversal.
41
+ *
42
+ * @param context - The context used to measure and draw the code.
43
+ */
44
+ setupMeasure(context: CanvasRenderingContext2D): void;
45
+ setupDraw(context: CanvasRenderingContext2D): void;
46
+ /**
47
+ * Measure the desired size of the code scope.
48
+ *
49
+ * @remarks
50
+ * The result can be retrieved with {@link getSize}.
51
+ *
52
+ * @param scope - The code scope to measure.
53
+ */
54
+ measureSize(scope: CodeScope): void;
55
+ /**
56
+ * Get the size measured by the cursor.
57
+ */
58
+ getSize(): {
59
+ x: number;
60
+ y: number;
61
+ };
62
+ /**
63
+ * Get the drawing information created by the cursor.
64
+ */
65
+ getDrawingInfo(): {
66
+ fragments: CodeFragmentDrawingInfo[];
67
+ verticalOffset: number;
68
+ fontHeight: number;
69
+ };
70
+ /**
71
+ * Draw the given code scope.
72
+ *
73
+ * @param scope - The code scope to draw.
74
+ */
75
+ drawScope(scope: CodeScope): void;
76
+ private drawToken;
77
+ private calculateWidth;
78
+ private calculateMaxWidth;
79
+ private currentProgress;
80
+ private processSelection;
81
+ private isSelected;
82
82
  }
83
- //# sourceMappingURL=CodeCursor.d.ts.map
83
+ //# sourceMappingURL=CodeCursor.d.ts.map