@revideo/2d 0.3.5-alpha.967 → 0.3.5-beta.967

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 (132) hide show
  1. package/editor/editor/tsconfig.build.tsbuildinfo +1 -1
  2. package/editor/index.js +380 -151
  3. package/editor/index.js.map +1 -1
  4. package/lib/code/CodeCursor.d.ts +74 -74
  5. package/lib/code/CodeDiffer.d.ts +21 -16
  6. package/lib/code/CodeDiffer.js +39 -41
  7. package/lib/code/CodeFragment.d.ts +16 -8
  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 +12 -8
  12. package/lib/code/CodeMetrics.js +26 -24
  13. package/lib/code/CodeRange.d.ts +21 -5
  14. package/lib/code/CodeRange.js +131 -124
  15. package/lib/code/CodeScope.d.ts +18 -8
  16. package/lib/code/CodeSelection.d.ts +9 -4
  17. package/lib/code/CodeSelection.js +8 -8
  18. package/lib/code/CodeSignal.d.ts +74 -47
  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 +21 -19
  24. package/lib/code/diff.d.ts +12 -9
  25. package/lib/code/diff.js +218 -205
  26. package/lib/code/extractRange.d.ts +7 -4
  27. package/lib/code/extractRange.js +79 -71
  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 +95 -90
  33. package/lib/components/Code.d.ts +244 -211
  34. package/lib/components/CodeBlock.d.ts +109 -67
  35. package/lib/components/CubicBezier.d.ts +36 -36
  36. package/lib/components/Curve.d.ts +208 -198
  37. package/lib/components/Grid.d.ts +47 -42
  38. package/lib/components/Icon.d.ts +55 -50
  39. package/lib/components/Img.d.ts +86 -79
  40. package/lib/components/Knot.d.ts +97 -78
  41. package/lib/components/Latex.d.ts +12 -12
  42. package/lib/components/Layout.d.ts +455 -413
  43. package/lib/components/Line.d.ts +61 -49
  44. package/lib/components/Media.d.ts +36 -36
  45. package/lib/components/Media.d.ts.map +1 -1
  46. package/lib/components/Media.js +8 -4
  47. package/lib/components/Node.d.ts +875 -830
  48. package/lib/components/Path.d.ts +35 -14
  49. package/lib/components/Polygon.d.ts +60 -55
  50. package/lib/components/QuadBezier.d.ts +29 -29
  51. package/lib/components/Ray.d.ts +28 -28
  52. package/lib/components/Rect.d.ts +115 -108
  53. package/lib/components/SVG.d.ts +165 -139
  54. package/lib/components/Shape.d.ts +44 -35
  55. package/lib/components/Spline.d.ts +46 -40
  56. package/lib/components/Txt.d.ts +55 -44
  57. package/lib/components/TxtLeaf.d.ts +20 -16
  58. package/lib/components/Video.d.ts +7 -6
  59. package/lib/components/Video.d.ts.map +1 -1
  60. package/lib/components/Video.js +7 -7
  61. package/lib/components/View2D.d.ts +22 -22
  62. package/lib/components/index.d.ts +1 -1
  63. package/lib/components/types.d.ts +22 -9
  64. package/lib/curves/ArcSegment.d.ts +36 -24
  65. package/lib/curves/CircleSegment.d.ts +26 -16
  66. package/lib/curves/CubicBezierSegment.d.ts +18 -13
  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 +19 -14
  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 +42 -37
  76. package/lib/curves/QuadBezierSegment.d.ts +12 -12
  77. package/lib/curves/Segment.d.ts +12 -7
  78. package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
  79. package/lib/curves/createCurveProfileLerp.d.ts +17 -6
  80. package/lib/curves/getBezierSplineProfile.d.ts +8 -4
  81. package/lib/curves/getCircleProfile.d.ts +10 -4
  82. package/lib/curves/getPathProfile.d.ts +2 -2
  83. package/lib/curves/getPointAtDistance.d.ts +7 -4
  84. package/lib/curves/getPolylineProfile.d.ts +8 -4
  85. package/lib/curves/getRectProfile.d.ts +9 -4
  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 +4 -2
  91. package/lib/decorators/computed.d.ts +1 -1
  92. package/lib/decorators/defaultStyle.d.ts +5 -2
  93. package/lib/decorators/filtersSignal.d.ts +28 -8
  94. package/lib/decorators/index.d.ts +1 -1
  95. package/lib/decorators/index.js +1 -1
  96. package/lib/decorators/initializers.d.ts +5 -2
  97. package/lib/decorators/initializers.js +18 -19
  98. package/lib/decorators/nodeName.d.ts +1 -1
  99. package/lib/decorators/nodeName.js +4 -4
  100. package/lib/decorators/signal.d.ts +40 -20
  101. package/lib/decorators/spacingSignal.d.ts +1 -1
  102. package/lib/decorators/vector2Signal.d.ts +13 -7
  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 +19 -9
  108. package/lib/jsx-runtime.js +18 -18
  109. package/lib/partials/Filter.d.ts +24 -16
  110. package/lib/partials/Gradient.d.ts +30 -24
  111. package/lib/partials/Pattern.d.ts +14 -9
  112. package/lib/partials/ShaderConfig.d.ts +81 -74
  113. package/lib/partials/index.d.ts +1 -1
  114. package/lib/partials/index.js +1 -1
  115. package/lib/partials/types.d.ts +19 -6
  116. package/lib/scenes/Scene2D.d.ts +42 -23
  117. package/lib/scenes/index.d.ts +1 -1
  118. package/lib/scenes/index.js +1 -1
  119. package/lib/scenes/makeScene2D.d.ts +7 -5
  120. package/lib/scenes/useScene2D.d.ts +2 -2
  121. package/lib/tsconfig.build.tsbuildinfo +1 -1
  122. package/lib/utils/CanvasUtils.d.ts +1 -1
  123. package/lib/utils/diff.d.ts +25 -18
  124. package/lib/utils/diff.js +84 -87
  125. package/lib/utils/index.d.ts +1 -1
  126. package/lib/utils/index.js +1 -1
  127. package/lib/utils/is.d.ts +4 -2
  128. package/lib/utils/is.js +2 -2
  129. package/lib/utils/makeSignalExtensions.d.ts +11 -4
  130. package/package.json +4 -4
  131. package/src/lib/components/Media.ts +2 -1
  132. package/src/lib/components/Video.ts +12 -11
@@ -1,74 +1,107 @@
1
- import { SerializedVector2, Signal, SignalValue, SimpleSignal, ThreadGenerator, TimingFunction, Vector2 } from '@revideo/core';
2
- import { Code, CodeStyle, CodeTree, Token } from 'code-fns';
3
- import { DesiredLength } from '../partials';
4
- import { Shape, ShapeProps } from './Shape';
1
+ import {
2
+ SerializedVector2,
3
+ Signal,
4
+ SignalValue,
5
+ SimpleSignal,
6
+ ThreadGenerator,
7
+ TimingFunction,
8
+ Vector2,
9
+ } from '@revideo/core';
10
+ import {Code, CodeStyle, CodeTree, Token} from 'code-fns';
11
+ import {DesiredLength} from '../partials';
12
+ import {Shape, ShapeProps} from './Shape';
5
13
  type CodePoint = [number, number];
6
14
  type CodeRange = [CodePoint, CodePoint];
7
15
  export interface CodeProps extends ShapeProps {
8
- language?: string;
9
- children?: Code;
10
- code?: SignalValue<Code>;
11
- selection?: CodeRange[];
12
- theme?: CodeStyle;
16
+ language?: string;
17
+ children?: Code;
18
+ code?: SignalValue<Code>;
19
+ selection?: CodeRange[];
20
+ theme?: CodeStyle;
13
21
  }
14
22
  export interface CodeModification {
15
- from: Code;
16
- to: Code;
23
+ from: Code;
24
+ to: Code;
17
25
  }
18
26
  export declare class CodeBlock extends Shape {
19
- private static initialized;
20
- readonly language: SimpleSignal<string, this>;
21
- readonly code: Signal<Code, CodeTree, this>;
22
- readonly theme: Signal<CodeStyle | null, CodeStyle, this>;
23
- readonly selection: SimpleSignal<CodeRange[], this>;
24
- protected tweenSelection(value: CodeRange[], duration: number, timingFunction: TimingFunction): ThreadGenerator;
25
- readonly unselectedOpacity: SimpleSignal<number, this>;
26
- private codeProgress;
27
- private selectionProgress;
28
- private oldSelection;
29
- private diffed;
30
- private currentLineCount;
31
- private newLineCount;
32
- protected getLineCountOfTokenArray(tokens: Token[]): number;
33
- lineCount(): number;
34
- protected parsed(): Token[];
35
- constructor({ children, ...rest }: CodeProps);
36
- protected characterSize(): Vector2;
37
- protected desiredSize(): SerializedVector2<DesiredLength>;
38
- protected getTokensSize(tokens: Token[]): {
39
- x: number;
40
- y: number;
41
- };
42
- protected collectAsyncResources(): void;
43
- set(strings: string[], ...rest: any[]): void;
44
- /**
45
- * Smoothly edit the code.
46
- *
47
- * @remarks
48
- * This method returns a tag function that should be used together with a
49
- * template literal to define what to edit. Expressions can be used to either
50
- * {@link insert}, {@link remove}, or {@link edit} the code.
51
- *
52
- * @example
53
- * ```ts
54
- * yield* codeBlock().edit()`
55
- * const ${edit('a', 'b')} = [${insert('1, 2, 3')}];${remove(`
56
- * // this comment will be removed`)}
57
- * `;
58
- * ```
59
- *
60
- * @param duration - The duration of the transition.
61
- * @param changeSelection - When set to `true`, the selection will be modified
62
- * to highlight the newly inserted code. Setting it
63
- * to `false` leaves the selection untouched.
64
- * Providing a custom {@link CodeRange} will select
65
- * it instead.
66
- */
67
- edit(duration?: number, changeSelection?: CodeRange[] | boolean): (strings: TemplateStringsArray, ...rest: (Code | CodeModification)[]) => ThreadGenerator;
68
- tweenCode(code: CodeTree, time: number, timingFunction: TimingFunction): Generator<void | ThreadGenerator | Promise<any> | import("@revideo/core").Promisable<any>, void, any>;
69
- protected draw(context: CanvasRenderingContext2D): Promise<void>;
70
- protected selectionStrength(x: number, y: number): number;
71
- protected static selectionStrength(selection: CodeRange[], x: number, y: number): number;
27
+ private static initialized;
28
+ readonly language: SimpleSignal<string, this>;
29
+ readonly code: Signal<Code, CodeTree, this>;
30
+ readonly theme: Signal<CodeStyle | null, CodeStyle, this>;
31
+ readonly selection: SimpleSignal<CodeRange[], this>;
32
+ protected tweenSelection(
33
+ value: CodeRange[],
34
+ duration: number,
35
+ timingFunction: TimingFunction,
36
+ ): ThreadGenerator;
37
+ readonly unselectedOpacity: SimpleSignal<number, this>;
38
+ private codeProgress;
39
+ private selectionProgress;
40
+ private oldSelection;
41
+ private diffed;
42
+ private currentLineCount;
43
+ private newLineCount;
44
+ protected getLineCountOfTokenArray(tokens: Token[]): number;
45
+ lineCount(): number;
46
+ protected parsed(): Token[];
47
+ constructor({children, ...rest}: CodeProps);
48
+ protected characterSize(): Vector2;
49
+ protected desiredSize(): SerializedVector2<DesiredLength>;
50
+ protected getTokensSize(tokens: Token[]): {
51
+ x: number;
52
+ y: number;
53
+ };
54
+ protected collectAsyncResources(): void;
55
+ set(strings: string[], ...rest: any[]): void;
56
+ /**
57
+ * Smoothly edit the code.
58
+ *
59
+ * @remarks
60
+ * This method returns a tag function that should be used together with a
61
+ * template literal to define what to edit. Expressions can be used to either
62
+ * {@link insert}, {@link remove}, or {@link edit} the code.
63
+ *
64
+ * @example
65
+ * ```ts
66
+ * yield* codeBlock().edit()`
67
+ * const ${edit('a', 'b')} = [${insert('1, 2, 3')}];${remove(`
68
+ * // this comment will be removed`)}
69
+ * `;
70
+ * ```
71
+ *
72
+ * @param duration - The duration of the transition.
73
+ * @param changeSelection - When set to `true`, the selection will be modified
74
+ * to highlight the newly inserted code. Setting it
75
+ * to `false` leaves the selection untouched.
76
+ * Providing a custom {@link CodeRange} will select
77
+ * it instead.
78
+ */
79
+ edit(
80
+ duration?: number,
81
+ changeSelection?: CodeRange[] | boolean,
82
+ ): (
83
+ strings: TemplateStringsArray,
84
+ ...rest: (Code | CodeModification)[]
85
+ ) => ThreadGenerator;
86
+ tweenCode(
87
+ code: CodeTree,
88
+ time: number,
89
+ timingFunction: TimingFunction,
90
+ ): Generator<
91
+ | void
92
+ | Promise<any>
93
+ | ThreadGenerator
94
+ | import('@revideo/core').Promisable<any>,
95
+ void,
96
+ any
97
+ >;
98
+ protected draw(context: CanvasRenderingContext2D): Promise<void>;
99
+ protected selectionStrength(x: number, y: number): number;
100
+ protected static selectionStrength(
101
+ selection: CodeRange[],
102
+ x: number,
103
+ y: number,
104
+ ): number;
72
105
  }
73
106
  /**
74
107
  * Create a code modification that inserts a piece of code.
@@ -114,7 +147,11 @@ export declare function lines(from: number, to?: number): CodeRange[];
114
147
  * @param length - The length of the word. If omitted, the selection will cover
115
148
  * the rest of the line.
116
149
  */
117
- export declare function word(line: number, from: number, length?: number): CodeRange[];
150
+ export declare function word(
151
+ line: number,
152
+ from: number,
153
+ length?: number,
154
+ ): CodeRange[];
118
155
  /**
119
156
  * Create a custom selection range.
120
157
  *
@@ -123,6 +160,11 @@ export declare function word(line: number, from: number, length?: number): CodeR
123
160
  * @param endLine - The line at which the selection ends.
124
161
  * @param endColumn - The column at which the selection ends.
125
162
  */
126
- export declare function range(startLine: number, startColumn: number, endLine: number, endColumn: number): CodeRange[];
163
+ export declare function range(
164
+ startLine: number,
165
+ startColumn: number,
166
+ endLine: number,
167
+ endColumn: number,
168
+ ): CodeRange[];
127
169
  export {};
128
- //# sourceMappingURL=CodeBlock.d.ts.map
170
+ //# sourceMappingURL=CodeBlock.d.ts.map
@@ -1,20 +1,20 @@
1
- import { PossibleVector2, SignalValue, Vector2Signal } from '@revideo/core';
2
- import { PolynomialSegment } from '../curves/PolynomialSegment';
3
- import { Bezier, BezierOverlayInfo } from './Bezier';
4
- import { CurveProps } from './Curve';
1
+ import {PossibleVector2, SignalValue, Vector2Signal} from '@revideo/core';
2
+ import {PolynomialSegment} from '../curves/PolynomialSegment';
3
+ import {Bezier, BezierOverlayInfo} from './Bezier';
4
+ import {CurveProps} from './Curve';
5
5
  export interface CubicBezierProps extends CurveProps {
6
- p0?: SignalValue<PossibleVector2>;
7
- p0X?: SignalValue<number>;
8
- p0Y?: SignalValue<number>;
9
- p1?: SignalValue<PossibleVector2>;
10
- p1X?: SignalValue<number>;
11
- p1Y?: SignalValue<number>;
12
- p2?: SignalValue<PossibleVector2>;
13
- p2X?: SignalValue<number>;
14
- p2Y?: SignalValue<number>;
15
- p3?: SignalValue<PossibleVector2>;
16
- p3X?: SignalValue<number>;
17
- p3Y?: SignalValue<number>;
6
+ p0?: SignalValue<PossibleVector2>;
7
+ p0X?: SignalValue<number>;
8
+ p0Y?: SignalValue<number>;
9
+ p1?: SignalValue<PossibleVector2>;
10
+ p1X?: SignalValue<number>;
11
+ p1Y?: SignalValue<number>;
12
+ p2?: SignalValue<PossibleVector2>;
13
+ p2X?: SignalValue<number>;
14
+ p2Y?: SignalValue<number>;
15
+ p3?: SignalValue<PossibleVector2>;
16
+ p3X?: SignalValue<number>;
17
+ p3Y?: SignalValue<number>;
18
18
  }
19
19
  /**
20
20
  * A node for drawing a cubic Bézier curve.
@@ -46,24 +46,24 @@ export interface CubicBezierProps extends CurveProps {
46
46
  * ```
47
47
  */
48
48
  export declare class CubicBezier extends Bezier {
49
- /**
50
- * The start point of the Bézier curve.
51
- */
52
- readonly p0: Vector2Signal<this>;
53
- /**
54
- * The first control point of the Bézier curve.
55
- */
56
- readonly p1: Vector2Signal<this>;
57
- /**
58
- * The second control point of the Bézier curve.
59
- */
60
- readonly p2: Vector2Signal<this>;
61
- /**
62
- * The end point of the Bézier curve.
63
- */
64
- readonly p3: Vector2Signal<this>;
65
- constructor(props: CubicBezierProps);
66
- protected segment(): PolynomialSegment;
67
- protected overlayInfo(matrix: DOMMatrix): BezierOverlayInfo;
49
+ /**
50
+ * The start point of the Bézier curve.
51
+ */
52
+ readonly p0: Vector2Signal<this>;
53
+ /**
54
+ * The first control point of the Bézier curve.
55
+ */
56
+ readonly p1: Vector2Signal<this>;
57
+ /**
58
+ * The second control point of the Bézier curve.
59
+ */
60
+ readonly p2: Vector2Signal<this>;
61
+ /**
62
+ * The end point of the Bézier curve.
63
+ */
64
+ readonly p3: Vector2Signal<this>;
65
+ constructor(props: CubicBezierProps);
66
+ protected segment(): PolynomialSegment;
67
+ protected overlayInfo(matrix: DOMMatrix): BezierOverlayInfo;
68
68
  }
69
- //# sourceMappingURL=CubicBezier.d.ts.map
69
+ //# sourceMappingURL=CubicBezier.d.ts.map