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

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 (69) hide show
  1. package/lib/components/Audio.d.ts +11 -11
  2. package/lib/components/Audio.d.ts.map +1 -1
  3. package/lib/components/Audio.js +109 -115
  4. package/lib/components/Code.d.ts +211 -244
  5. package/lib/components/Code.d.ts.map +1 -1
  6. package/lib/components/Code.js +269 -317
  7. package/lib/components/CodeBlock.d.ts +67 -109
  8. package/lib/components/CodeBlock.d.ts.map +1 -1
  9. package/lib/components/CodeBlock.js +373 -414
  10. package/lib/components/Curve.js +269 -270
  11. package/lib/components/Grid.js +56 -63
  12. package/lib/components/Icon.js +50 -58
  13. package/lib/components/Img.d.ts +79 -86
  14. package/lib/components/Img.d.ts.map +1 -1
  15. package/lib/components/Img.js +181 -193
  16. package/lib/components/Knot.js +60 -81
  17. package/lib/components/Latex.js +65 -77
  18. package/lib/components/Layout.d.ts +413 -455
  19. package/lib/components/Layout.d.ts.map +1 -1
  20. package/lib/components/Layout.js +681 -666
  21. package/lib/components/Line.js +193 -216
  22. package/lib/components/Media.d.ts +35 -35
  23. package/lib/components/Media.d.ts.map +1 -1
  24. package/lib/components/Media.js +134 -135
  25. package/lib/components/Node.d.ts +830 -875
  26. package/lib/components/Node.d.ts.map +1 -1
  27. package/lib/components/Node.js +1314 -1383
  28. package/lib/components/SVG.js +541 -609
  29. package/lib/components/Shape.d.ts +35 -44
  30. package/lib/components/Shape.d.ts.map +1 -1
  31. package/lib/components/Shape.js +127 -112
  32. package/lib/components/Spline.js +175 -190
  33. package/lib/components/Txt.d.ts +44 -55
  34. package/lib/components/Txt.d.ts.map +1 -1
  35. package/lib/components/Txt.js +155 -156
  36. package/lib/components/TxtLeaf.d.ts +16 -20
  37. package/lib/components/TxtLeaf.d.ts.map +1 -1
  38. package/lib/components/TxtLeaf.js +2 -2
  39. package/lib/components/Video.d.ts +45 -41
  40. package/lib/components/Video.d.ts.map +1 -1
  41. package/lib/components/Video.js +202 -138
  42. package/lib/components/View2D.d.ts +22 -21
  43. package/lib/components/View2D.d.ts.map +1 -1
  44. package/lib/components/View2D.js +89 -98
  45. package/lib/components/index.js +1 -1
  46. package/lib/components/types.js +1 -1
  47. package/lib/curves/ArcSegment.js +94 -145
  48. package/lib/scenes/Scene2D.d.ts +23 -42
  49. package/lib/scenes/Scene2D.d.ts.map +1 -1
  50. package/lib/scenes/Scene2D.js +152 -161
  51. package/lib/scenes/index.js +1 -1
  52. package/lib/scenes/makeScene2D.js +10 -10
  53. package/lib/scenes/useScene2D.js +3 -3
  54. package/lib/tsconfig.build.tsbuildinfo +1 -1
  55. package/lib/utils/CanvasUtils.d.ts +21 -93
  56. package/package.json +5 -5
  57. package/src/lib/components/Audio.ts +2 -2
  58. package/src/lib/components/Code.ts +4 -2
  59. package/src/lib/components/CodeBlock.ts +1 -1
  60. package/src/lib/components/Img.ts +2 -2
  61. package/src/lib/components/Layout.ts +2 -2
  62. package/src/lib/components/Media.ts +3 -1
  63. package/src/lib/components/Node.ts +9 -9
  64. package/src/lib/components/Shape.ts +2 -2
  65. package/src/lib/components/Txt.ts +2 -2
  66. package/src/lib/components/TxtLeaf.ts +1 -1
  67. package/src/lib/components/Video.ts +114 -8
  68. package/src/lib/components/View2D.ts +6 -2
  69. package/src/lib/scenes/Scene2D.ts +4 -3
@@ -1,107 +1,74 @@
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';
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';
13
5
  type CodePoint = [number, number];
14
6
  type CodeRange = [CodePoint, CodePoint];
15
7
  export interface CodeProps extends ShapeProps {
16
- language?: string;
17
- children?: Code;
18
- code?: SignalValue<Code>;
19
- selection?: CodeRange[];
20
- theme?: CodeStyle;
8
+ language?: string;
9
+ children?: Code;
10
+ code?: SignalValue<Code>;
11
+ selection?: CodeRange[];
12
+ theme?: CodeStyle;
21
13
  }
22
14
  export interface CodeModification {
23
- from: Code;
24
- to: Code;
15
+ from: Code;
16
+ to: Code;
25
17
  }
26
18
  export declare class CodeBlock extends Shape {
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
- | ThreadGenerator
93
- | Promise<any>
94
- | import('@revideo/core').Promisable<any>,
95
- void,
96
- any
97
- >;
98
- protected draw(context: CanvasRenderingContext2D): void;
99
- protected selectionStrength(x: number, y: number): number;
100
- protected static selectionStrength(
101
- selection: CodeRange[],
102
- x: number,
103
- y: number,
104
- ): number;
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;
105
72
  }
106
73
  /**
107
74
  * Create a code modification that inserts a piece of code.
@@ -147,11 +114,7 @@ export declare function lines(from: number, to?: number): CodeRange[];
147
114
  * @param length - The length of the word. If omitted, the selection will cover
148
115
  * the rest of the line.
149
116
  */
150
- export declare function word(
151
- line: number,
152
- from: number,
153
- length?: number,
154
- ): CodeRange[];
117
+ export declare function word(line: number, from: number, length?: number): CodeRange[];
155
118
  /**
156
119
  * Create a custom selection range.
157
120
  *
@@ -160,11 +123,6 @@ export declare function word(
160
123
  * @param endLine - The line at which the selection ends.
161
124
  * @param endColumn - The column at which the selection ends.
162
125
  */
163
- export declare function range(
164
- startLine: number,
165
- startColumn: number,
166
- endLine: number,
167
- endColumn: number,
168
- ): CodeRange[];
126
+ export declare function range(startLine: number, startColumn: number, endLine: number, endColumn: number): CodeRange[];
169
127
  export {};
170
- //# sourceMappingURL=CodeBlock.d.ts.map
128
+ //# sourceMappingURL=CodeBlock.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"CodeBlock.d.ts","sourceRoot":"","sources":["../../src/lib/components/CodeBlock.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"CodeBlock.d.ts","sourceRoot":"","sources":["../../src/lib/components/CodeBlock.ts"],"names":[],"mappings":"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"}