@revideo/2d 0.4.7-alpha.1024 → 0.4.7-alpha.1028

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 (164) 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 +7 -2
  59. package/lib/components/View2D.d.ts +22 -22
  60. package/lib/components/index.d.ts +1 -1
  61. package/lib/components/types.d.ts +9 -22
  62. package/lib/curves/ArcSegment.d.ts +24 -36
  63. package/lib/curves/CircleSegment.d.ts +16 -26
  64. package/lib/curves/CubicBezierSegment.d.ts +13 -18
  65. package/lib/curves/CurveDrawingInfo.d.ts +9 -9
  66. package/lib/curves/CurvePoint.d.ts +13 -13
  67. package/lib/curves/CurveProfile.d.ts +5 -5
  68. package/lib/curves/CurveProfile.js +1 -1
  69. package/lib/curves/KnotInfo.d.ts +8 -8
  70. package/lib/curves/LineSegment.d.ts +14 -19
  71. package/lib/curves/Polynomial.d.ts +110 -110
  72. package/lib/curves/Polynomial2D.d.ts +20 -20
  73. package/lib/curves/PolynomialSegment.d.ts +37 -42
  74. package/lib/curves/QuadBezierSegment.d.ts +12 -12
  75. package/lib/curves/Segment.d.ts +7 -12
  76. package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
  77. package/lib/curves/createCurveProfileLerp.d.ts +6 -17
  78. package/lib/curves/getBezierSplineProfile.d.ts +4 -8
  79. package/lib/curves/getCircleProfile.d.ts +4 -10
  80. package/lib/curves/getPathProfile.d.ts +2 -2
  81. package/lib/curves/getPointAtDistance.d.ts +4 -7
  82. package/lib/curves/getPolylineProfile.d.ts +4 -8
  83. package/lib/curves/getRectProfile.d.ts +4 -9
  84. package/lib/curves/index.d.ts +1 -1
  85. package/lib/curves/index.js +1 -1
  86. package/lib/decorators/canvasStyleSignal.d.ts +3 -3
  87. package/lib/decorators/colorSignal.d.ts +1 -1
  88. package/lib/decorators/compound.d.ts +2 -4
  89. package/lib/decorators/computed.d.ts +1 -1
  90. package/lib/decorators/defaultStyle.d.ts +2 -5
  91. package/lib/decorators/filtersSignal.d.ts +8 -28
  92. package/lib/decorators/index.d.ts +1 -1
  93. package/lib/decorators/index.js +1 -1
  94. package/lib/decorators/initializers.d.ts +2 -5
  95. package/lib/decorators/initializers.js +19 -18
  96. package/lib/decorators/nodeName.d.ts +1 -1
  97. package/lib/decorators/nodeName.js +4 -4
  98. package/lib/decorators/signal.d.ts +20 -40
  99. package/lib/decorators/spacingSignal.d.ts +1 -1
  100. package/lib/decorators/vector2Signal.d.ts +7 -13
  101. package/lib/index.d.ts +1 -1
  102. package/lib/index.js +1 -1
  103. package/lib/jsx-dev-runtime.d.ts +3 -3
  104. package/lib/jsx-dev-runtime.js +3 -3
  105. package/lib/jsx-runtime.d.ts +9 -19
  106. package/lib/jsx-runtime.js +18 -18
  107. package/lib/partials/Filter.d.ts +16 -24
  108. package/lib/partials/Gradient.d.ts +24 -30
  109. package/lib/partials/Pattern.d.ts +9 -14
  110. package/lib/partials/ShaderConfig.d.ts +74 -81
  111. package/lib/partials/index.d.ts +1 -1
  112. package/lib/partials/index.js +1 -1
  113. package/lib/partials/types.d.ts +6 -19
  114. package/lib/scenes/Scene2D.d.ts +23 -42
  115. package/lib/scenes/index.d.ts +1 -1
  116. package/lib/scenes/index.js +1 -1
  117. package/lib/scenes/makeScene2D.d.ts +5 -7
  118. package/lib/scenes/useScene2D.d.ts +2 -2
  119. package/lib/tsconfig.build.tsbuildinfo +1 -1
  120. package/lib/utils/diff.d.ts +18 -25
  121. package/lib/utils/diff.js +87 -84
  122. package/lib/utils/index.d.ts +1 -1
  123. package/lib/utils/index.js +1 -1
  124. package/lib/utils/is.d.ts +2 -4
  125. package/lib/utils/is.js +2 -2
  126. package/lib/utils/makeSignalExtensions.d.ts +4 -11
  127. package/lib/utils/video/mp4-parser-manager.d.ts +1 -0
  128. package/lib/utils/video/mp4-parser-manager.d.ts.map +1 -1
  129. package/lib/utils/video/mp4-parser-manager.js +21 -4
  130. package/lib/utils/video/parser/index.d.ts +2 -0
  131. package/lib/utils/video/parser/index.d.ts.map +1 -0
  132. package/lib/utils/video/parser/index.js +2 -0
  133. package/lib/utils/video/parser/parser.d.ts +21 -0
  134. package/lib/utils/video/parser/parser.d.ts.map +1 -0
  135. package/lib/utils/video/parser/parser.js +168 -0
  136. package/lib/utils/video/parser/sampler.d.ts +16 -0
  137. package/lib/utils/video/parser/sampler.d.ts.map +1 -0
  138. package/lib/utils/video/parser/sampler.js +56 -0
  139. package/lib/utils/video/parser/segment.d.ts +44 -0
  140. package/lib/utils/video/parser/segment.d.ts.map +1 -0
  141. package/lib/utils/video/parser/segment.js +161 -0
  142. package/lib/utils/video/parser/sink.d.ts +9 -0
  143. package/lib/utils/video/parser/sink.d.ts.map +1 -0
  144. package/lib/utils/video/parser/sink.js +22 -0
  145. package/lib/utils/video/parser/utils.d.ts +10 -0
  146. package/lib/utils/video/parser/utils.d.ts.map +1 -0
  147. package/lib/utils/video/parser/utils.js +22 -0
  148. package/package.json +4 -4
  149. package/src/lib/components/Video.ts +7 -1
  150. package/src/lib/utils/video/mp4-parser-manager.ts +24 -5
  151. package/src/lib/utils/video/parser/index.ts +1 -0
  152. package/src/lib/utils/video/parser/parser.ts +256 -0
  153. package/src/lib/utils/video/parser/sampler.ts +72 -0
  154. package/src/lib/utils/video/parser/segment.ts +211 -0
  155. package/src/lib/utils/video/parser/sink.ts +29 -0
  156. package/src/lib/utils/video/parser/utils.ts +31 -0
  157. package/lib/components/HlsVideo.d.ts +0 -62
  158. package/lib/components/HlsVideo.d.ts.map +0 -1
  159. package/lib/components/HlsVideo.js +0 -169
  160. package/lib/tsconfig.tsbuildinfo +0 -1
  161. package/lib/utils/video/mp4-parser.d.ts +0 -63
  162. package/lib/utils/video/mp4-parser.d.ts.map +0 -1
  163. package/lib/utils/video/mp4-parser.js +0 -264
  164. package/src/lib/utils/video/mp4-parser.ts +0 -340
@@ -1,14 +1,8 @@
1
- import {PossibleVector2, Signal, Vector2} from '@revideo/core';
2
- import type {Length} from '../partials';
3
- export type Vector2LengthSignal<TOwner> = Signal<
4
- PossibleVector2<Length>,
5
- Vector2,
6
- TOwner
7
- > & {
8
- x: Signal<Length, number, TOwner>;
9
- y: Signal<Length, number, TOwner>;
1
+ import { PossibleVector2, Signal, Vector2 } from '@revideo/core';
2
+ import type { Length } from '../partials';
3
+ export type Vector2LengthSignal<TOwner> = Signal<PossibleVector2<Length>, Vector2, TOwner> & {
4
+ x: Signal<Length, number, TOwner>;
5
+ y: Signal<Length, number, TOwner>;
10
6
  };
11
- export declare function vector2Signal(
12
- prefix?: string | Record<string, string>,
13
- ): PropertyDecorator;
14
- //# sourceMappingURL=vector2Signal.d.ts.map
7
+ export declare function vector2Signal(prefix?: string | Record<string, string>): PropertyDecorator;
8
+ //# sourceMappingURL=vector2Signal.d.ts.map
package/lib/index.d.ts CHANGED
@@ -6,4 +6,4 @@ export * from './jsx-runtime';
6
6
  export * from './partials';
7
7
  export * from './scenes';
8
8
  export * from './utils';
9
- //# sourceMappingURL=index.d.ts.map
9
+ //# sourceMappingURL=index.d.ts.map
package/lib/index.js CHANGED
@@ -6,4 +6,4 @@ export * from './jsx-runtime';
6
6
  export * from './partials';
7
7
  export * from './scenes';
8
8
  export * from './utils';
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvbGliL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsUUFBUSxDQUFDO0FBQ3ZCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsU0FBUyxDQUFDIn0=
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvbGliL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsUUFBUSxDQUFDO0FBQ3ZCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsU0FBUyxDQUFDIn0=
@@ -1,3 +1,3 @@
1
- import {Fragment, jsx} from './jsx-runtime';
2
- export {Fragment, jsx as jsxDEV};
3
- //# sourceMappingURL=jsx-dev-runtime.d.ts.map
1
+ import { Fragment, jsx } from './jsx-runtime';
2
+ export { Fragment, jsx as jsxDEV };
3
+ //# sourceMappingURL=jsx-dev-runtime.d.ts.map
@@ -1,3 +1,3 @@
1
- import {Fragment, jsx} from './jsx-runtime';
2
- export {Fragment, jsx as jsxDEV};
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianN4LWRldi1ydW50aW1lLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2xpYi9qc3gtZGV2LXJ1bnRpbWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFFBQVEsRUFBRSxHQUFHLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDNUMsT0FBTyxFQUFDLFFBQVEsRUFBRSxHQUFHLElBQUksTUFBTSxFQUFDLENBQUMifQ==
1
+ import { Fragment, jsx } from './jsx-runtime';
2
+ export { Fragment, jsx as jsxDEV };
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianN4LWRldi1ydW50aW1lLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2xpYi9qc3gtZGV2LXJ1bnRpbWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFFBQVEsRUFBRSxHQUFHLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDNUMsT0FBTyxFQUFDLFFBQVEsRUFBRSxHQUFHLElBQUksTUFBTSxFQUFDLENBQUMifQ==
@@ -1,22 +1,12 @@
1
- import type {
2
- ComponentChildren,
3
- FunctionComponent,
4
- JSXProps,
5
- Node,
6
- NodeConstructor,
7
- } from './components';
1
+ import type { ComponentChildren, FunctionComponent, JSXProps, Node, NodeConstructor } from './components';
8
2
  export declare namespace JSX {
9
- type Element = Node;
10
- type ElementClass = Node;
11
- interface ElementChildrenAttribute {
12
- children: any;
13
- }
3
+ type Element = Node;
4
+ type ElementClass = Node;
5
+ interface ElementChildrenAttribute {
6
+ children: any;
7
+ }
14
8
  }
15
9
  export declare const Fragment: unique symbol;
16
- export declare function jsx(
17
- type: NodeConstructor | FunctionComponent | typeof Fragment,
18
- config: JSXProps,
19
- key?: any,
20
- ): ComponentChildren;
21
- export {jsx as jsxs};
22
- //# sourceMappingURL=jsx-runtime.d.ts.map
10
+ export declare function jsx(type: NodeConstructor | FunctionComponent | typeof Fragment, config: JSXProps, key?: any): ComponentChildren;
11
+ export { jsx as jsxs };
12
+ //# sourceMappingURL=jsx-runtime.d.ts.map
@@ -1,23 +1,23 @@
1
1
  function isClassComponent(
2
- // eslint-disable-next-line @typescript-eslint/ban-types
3
- fn,
4
- ) {
5
- return !!fn.prototype?.isClass;
2
+ // eslint-disable-next-line @typescript-eslint/ban-types
3
+ fn) {
4
+ return !!fn.prototype?.isClass;
6
5
  }
7
6
  export const Fragment = Symbol.for('@revideo/2d/fragment');
8
7
  export function jsx(type, config, key) {
9
- const {ref, children, ...rest} = config;
10
- const flatChildren = Array.isArray(children) ? children.flat() : children;
11
- if (type === Fragment) {
12
- return flatChildren;
13
- }
14
- if (isClassComponent(type)) {
15
- const node = new type({...rest, children: flatChildren, key});
16
- ref?.(node);
17
- return node;
18
- } else {
19
- return type({...rest, ref, children: flatChildren, key});
20
- }
8
+ const { ref, children, ...rest } = config;
9
+ const flatChildren = Array.isArray(children) ? children.flat() : children;
10
+ if (type === Fragment) {
11
+ return flatChildren;
12
+ }
13
+ if (isClassComponent(type)) {
14
+ const node = new type({ ...rest, children: flatChildren, key });
15
+ ref?.(node);
16
+ return node;
17
+ }
18
+ else {
19
+ return type({ ...rest, ref, children: flatChildren, key });
20
+ }
21
21
  }
22
- export {jsx as jsxs};
23
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianN4LXJ1bnRpbWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvbGliL2pzeC1ydW50aW1lLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQWdCQSxTQUFTLGdCQUFnQjtBQUN2Qix3REFBd0Q7QUFDeEQsRUFBWTtJQUVaLE9BQU8sQ0FBQyxDQUFDLEVBQUUsQ0FBQyxTQUFTLEVBQUUsT0FBTyxDQUFDO0FBQ2pDLENBQUM7QUFFRCxNQUFNLENBQUMsTUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0FBQzNELE1BQU0sVUFBVSxHQUFHLENBQ2pCLElBQTJELEVBQzNELE1BQWdCLEVBQ2hCLEdBQVM7SUFFVCxNQUFNLEVBQUMsR0FBRyxFQUFFLFFBQVEsRUFBRSxHQUFHLElBQUksRUFBQyxHQUFHLE1BQU0sQ0FBQztJQUN4QyxNQUFNLFlBQVksR0FBRyxLQUFLLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQztJQUUxRSxJQUFJLElBQUksS0FBSyxRQUFRLEVBQUUsQ0FBQztRQUN0QixPQUFPLFlBQVksQ0FBQztJQUN0QixDQUFDO0lBRUQsSUFBSSxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDO1FBQzNCLE1BQU0sSUFBSSxHQUFHLElBQUksSUFBSSxDQUFDLEVBQUMsR0FBRyxJQUFJLEVBQUUsUUFBUSxFQUFFLFlBQVksRUFBRSxHQUFHLEVBQUMsQ0FBQyxDQUFDO1FBQzlELEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ1osT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO1NBQU0sQ0FBQztRQUNOLE9BQU8sSUFBSSxDQUFDLEVBQUMsR0FBRyxJQUFJLEVBQUUsR0FBRyxFQUFFLFFBQVEsRUFBRSxZQUFZLEVBQUUsR0FBRyxFQUFDLENBQUMsQ0FBQztJQUMzRCxDQUFDO0FBQ0gsQ0FBQztBQUNELE9BQU8sRUFBQyxHQUFHLElBQUksSUFBSSxFQUFDLENBQUMifQ==
22
+ export { jsx as jsxs };
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianN4LXJ1bnRpbWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvbGliL2pzeC1ydW50aW1lLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQWdCQSxTQUFTLGdCQUFnQjtBQUN2Qix3REFBd0Q7QUFDeEQsRUFBWTtJQUVaLE9BQU8sQ0FBQyxDQUFDLEVBQUUsQ0FBQyxTQUFTLEVBQUUsT0FBTyxDQUFDO0FBQ2pDLENBQUM7QUFFRCxNQUFNLENBQUMsTUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0FBQzNELE1BQU0sVUFBVSxHQUFHLENBQ2pCLElBQTJELEVBQzNELE1BQWdCLEVBQ2hCLEdBQVM7SUFFVCxNQUFNLEVBQUMsR0FBRyxFQUFFLFFBQVEsRUFBRSxHQUFHLElBQUksRUFBQyxHQUFHLE1BQU0sQ0FBQztJQUN4QyxNQUFNLFlBQVksR0FBRyxLQUFLLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQztJQUUxRSxJQUFJLElBQUksS0FBSyxRQUFRLEVBQUUsQ0FBQztRQUN0QixPQUFPLFlBQVksQ0FBQztJQUN0QixDQUFDO0lBRUQsSUFBSSxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDO1FBQzNCLE1BQU0sSUFBSSxHQUFHLElBQUksSUFBSSxDQUFDLEVBQUMsR0FBRyxJQUFJLEVBQUUsUUFBUSxFQUFFLFlBQVksRUFBRSxHQUFHLEVBQUMsQ0FBQyxDQUFDO1FBQzlELEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ1osT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO1NBQU0sQ0FBQztRQUNOLE9BQU8sSUFBSSxDQUFDLEVBQUMsR0FBRyxJQUFJLEVBQUUsR0FBRyxFQUFFLFFBQVEsRUFBRSxZQUFZLEVBQUUsR0FBRyxFQUFDLENBQUMsQ0FBQztJQUMzRCxDQUFDO0FBQ0gsQ0FBQztBQUNELE9BQU8sRUFBQyxHQUFHLElBQUksSUFBSSxFQUFDLENBQUMifQ==
@@ -1,18 +1,10 @@
1
- import {SignalValue, SimpleSignal} from '@revideo/core';
1
+ import { SignalValue, SimpleSignal } from '@revideo/core';
2
2
  /**
3
3
  * All possible CSS filter names.
4
4
  *
5
5
  * @internal
6
6
  */
7
- export type FilterName =
8
- | 'invert'
9
- | 'sepia'
10
- | 'grayscale'
11
- | 'brightness'
12
- | 'contrast'
13
- | 'saturate'
14
- | 'hue'
15
- | 'blur';
7
+ export type FilterName = 'invert' | 'sepia' | 'grayscale' | 'brightness' | 'contrast' | 'saturate' | 'hue' | 'blur';
16
8
  /**
17
9
  * Definitions of all possible CSS filters.
18
10
  *
@@ -23,21 +15,21 @@ export declare const FILTERS: Record<string, Partial<FilterProps>>;
23
15
  * A unified abstraction for all CSS filters.
24
16
  */
25
17
  export interface FilterProps {
26
- name: string;
27
- value: SignalValue<number>;
28
- unit: string;
29
- scale: number;
30
- transform: boolean;
31
- default: number;
18
+ name: string;
19
+ value: SignalValue<number>;
20
+ unit: string;
21
+ scale: number;
22
+ transform: boolean;
23
+ default: number;
32
24
  }
33
25
  export declare class Filter {
34
- get name(): string;
35
- get default(): number;
36
- readonly value: SimpleSignal<number, Filter>;
37
- private readonly props;
38
- constructor(props: Partial<FilterProps>);
39
- isActive(): boolean;
40
- serialize(matrix: DOMMatrix): string;
26
+ get name(): string;
27
+ get default(): number;
28
+ readonly value: SimpleSignal<number, Filter>;
29
+ private readonly props;
30
+ constructor(props: Partial<FilterProps>);
31
+ isActive(): boolean;
32
+ serialize(matrix: DOMMatrix): string;
41
33
  }
42
34
  /**
43
35
  * Create an {@link https://developer.mozilla.org/en-US/docs/Web/CSS/filter-function/invert | invert} filter.
@@ -87,4 +79,4 @@ export declare function hue(value?: SignalValue<number>): Filter;
87
79
  * @param value - The value of the filter in pixels.
88
80
  */
89
81
  export declare function blur(value?: SignalValue<number>): Filter;
90
- //# sourceMappingURL=Filter.d.ts.map
82
+ //# sourceMappingURL=Filter.d.ts.map
@@ -1,37 +1,31 @@
1
- import {
2
- PossibleColor,
3
- PossibleVector2,
4
- SignalValue,
5
- SimpleSignal,
6
- Vector2Signal,
7
- } from '@revideo/core';
1
+ import { PossibleColor, PossibleVector2, SignalValue, SimpleSignal, Vector2Signal } from '@revideo/core';
8
2
  export type GradientType = 'linear' | 'conic' | 'radial';
9
3
  export interface GradientStop {
10
- offset: SignalValue<number>;
11
- color: SignalValue<PossibleColor>;
4
+ offset: SignalValue<number>;
5
+ color: SignalValue<PossibleColor>;
12
6
  }
13
7
  export interface GradientProps {
14
- type?: SignalValue<GradientType>;
15
- fromX?: SignalValue<number>;
16
- fromY?: SignalValue<number>;
17
- from?: SignalValue<PossibleVector2>;
18
- toX?: SignalValue<number>;
19
- toY?: SignalValue<number>;
20
- to?: SignalValue<PossibleVector2>;
21
- angle?: SignalValue<number>;
22
- fromRadius?: SignalValue<number>;
23
- toRadius?: SignalValue<number>;
24
- stops?: GradientStop[];
8
+ type?: SignalValue<GradientType>;
9
+ fromX?: SignalValue<number>;
10
+ fromY?: SignalValue<number>;
11
+ from?: SignalValue<PossibleVector2>;
12
+ toX?: SignalValue<number>;
13
+ toY?: SignalValue<number>;
14
+ to?: SignalValue<PossibleVector2>;
15
+ angle?: SignalValue<number>;
16
+ fromRadius?: SignalValue<number>;
17
+ toRadius?: SignalValue<number>;
18
+ stops?: GradientStop[];
25
19
  }
26
20
  export declare class Gradient {
27
- readonly type: SimpleSignal<GradientType, this>;
28
- readonly from: Vector2Signal<this>;
29
- readonly to: Vector2Signal<this>;
30
- readonly angle: SimpleSignal<number, this>;
31
- readonly fromRadius: SimpleSignal<number, this>;
32
- readonly toRadius: SimpleSignal<number, this>;
33
- readonly stops: SimpleSignal<GradientStop[], this>;
34
- constructor(props: GradientProps);
35
- canvasGradient(context: CanvasRenderingContext2D): CanvasGradient;
21
+ readonly type: SimpleSignal<GradientType, this>;
22
+ readonly from: Vector2Signal<this>;
23
+ readonly to: Vector2Signal<this>;
24
+ readonly angle: SimpleSignal<number, this>;
25
+ readonly fromRadius: SimpleSignal<number, this>;
26
+ readonly toRadius: SimpleSignal<number, this>;
27
+ readonly stops: SimpleSignal<GradientStop[], this>;
28
+ constructor(props: GradientProps);
29
+ canvasGradient(context: CanvasRenderingContext2D): CanvasGradient;
36
30
  }
37
- //# sourceMappingURL=Gradient.d.ts.map
31
+ //# sourceMappingURL=Gradient.d.ts.map
@@ -1,18 +1,13 @@
1
- import {SimpleSignal} from '@revideo/core';
2
- export type CanvasRepetition =
3
- | null
4
- | 'repeat'
5
- | 'repeat-x'
6
- | 'repeat-y'
7
- | 'no-repeat';
1
+ import { SimpleSignal } from '@revideo/core';
2
+ export type CanvasRepetition = null | 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
8
3
  export interface PatternProps {
9
- image: CanvasImageSource;
10
- repetition?: CanvasRepetition;
4
+ image: CanvasImageSource;
5
+ repetition?: CanvasRepetition;
11
6
  }
12
7
  export declare class Pattern {
13
- readonly image: SimpleSignal<CanvasImageSource, this>;
14
- readonly repetition: SimpleSignal<CanvasRepetition, this>;
15
- constructor(props: PatternProps);
16
- canvasPattern(context: CanvasRenderingContext2D): CanvasPattern | null;
8
+ readonly image: SimpleSignal<CanvasImageSource, this>;
9
+ readonly repetition: SimpleSignal<CanvasRepetition, this>;
10
+ constructor(props: PatternProps);
11
+ canvasPattern(context: CanvasRenderingContext2D): CanvasPattern | null;
17
12
  }
18
- //# sourceMappingURL=Pattern.d.ts.map
13
+ //# sourceMappingURL=Pattern.d.ts.map
@@ -1,88 +1,81 @@
1
- import {SignalValue, WebGLConvertible} from '@revideo/core';
2
- import {Node} from '../components';
1
+ import { SignalValue, WebGLConvertible } from '@revideo/core';
2
+ import { Node } from '../components';
3
3
  /**
4
4
  * Describes a shader program used to apply effects to nodes.
5
5
  *
6
6
  * @experimental
7
7
  */
8
8
  export interface ShaderConfig {
9
- /**
10
- * The source code of the fragment shader.
11
- *
12
- * @example
13
- * ```glsl
14
- * #version 300 es
15
- * precision highp float;
16
- *
17
- * #include "@revideo/core/shaders/common.glsl"
18
- *
19
- * void main() {
20
- * out_color = texture(core_source_tx, source_uv);
21
- * }
22
- * ```
23
- */
24
- fragment: string;
25
- /**
26
- * Custom uniforms to be passed to the shader.
27
- *
28
- * @remarks
29
- * The keys of this object will be used as the uniform names.
30
- * The values can be either a number or an array of numbers.
31
- * The following table shows how the values will be mapped to GLSL types.
32
- *
33
- * | TypeScript | GLSL |
34
- * | ---------------------------------- | ------- |
35
- * | `number` | `float` |
36
- * | `[number, number]` | `vec2` |
37
- * | `[number, number, number]` | `vec3` |
38
- * | `[number, number, number, number]` | `vec4` |
39
- *
40
- * @example
41
- * ```ts
42
- * const shader = {
43
- * // ...
44
- * uniforms: {
45
- * my_value: () => 1,
46
- * my_vector: [1, 2, 3],
47
- * },
48
- * };
49
- * ```
50
- *
51
- * ```glsl
52
- * uniform float my_value;
53
- * uniform vec3 my_vector;
54
- * ```
55
- */
56
- uniforms?: Record<string, SignalValue<number | number[] | WebGLConvertible>>;
57
- /**
58
- * A custom hook run before the shader is used.
59
- *
60
- * @remarks
61
- * Gives you low-level access to the WebGL context and the shader program.
62
- *
63
- * @param gl - WebGL context.
64
- * @param program - The shader program.
65
- */
66
- setup?: (gl: WebGL2RenderingContext, program: WebGLProgram) => void;
67
- /**
68
- * A custom hook run after the shader is used.
69
- *
70
- * @remarks
71
- * Gives you low-level access to the WebGL context and the shader program.
72
- * Can be used to clean up resources created in the {@link setup} hook.
73
- *
74
- * @param gl - WebGL context.
75
- * @param program - The shader program.
76
- */
77
- teardown?: (gl: WebGL2RenderingContext, program: WebGLProgram) => void;
9
+ /**
10
+ * The source code of the fragment shader.
11
+ *
12
+ * @example
13
+ * ```glsl
14
+ * #version 300 es
15
+ * precision highp float;
16
+ *
17
+ * #include "@revideo/core/shaders/common.glsl"
18
+ *
19
+ * void main() {
20
+ * out_color = texture(core_source_tx, source_uv);
21
+ * }
22
+ * ```
23
+ */
24
+ fragment: string;
25
+ /**
26
+ * Custom uniforms to be passed to the shader.
27
+ *
28
+ * @remarks
29
+ * The keys of this object will be used as the uniform names.
30
+ * The values can be either a number or an array of numbers.
31
+ * The following table shows how the values will be mapped to GLSL types.
32
+ *
33
+ * | TypeScript | GLSL |
34
+ * | ---------------------------------- | ------- |
35
+ * | `number` | `float` |
36
+ * | `[number, number]` | `vec2` |
37
+ * | `[number, number, number]` | `vec3` |
38
+ * | `[number, number, number, number]` | `vec4` |
39
+ *
40
+ * @example
41
+ * ```ts
42
+ * const shader = {
43
+ * // ...
44
+ * uniforms: {
45
+ * my_value: () => 1,
46
+ * my_vector: [1, 2, 3],
47
+ * },
48
+ * };
49
+ * ```
50
+ *
51
+ * ```glsl
52
+ * uniform float my_value;
53
+ * uniform vec3 my_vector;
54
+ * ```
55
+ */
56
+ uniforms?: Record<string, SignalValue<number | number[] | WebGLConvertible>>;
57
+ /**
58
+ * A custom hook run before the shader is used.
59
+ *
60
+ * @remarks
61
+ * Gives you low-level access to the WebGL context and the shader program.
62
+ *
63
+ * @param gl - WebGL context.
64
+ * @param program - The shader program.
65
+ */
66
+ setup?: (gl: WebGL2RenderingContext, program: WebGLProgram) => void;
67
+ /**
68
+ * A custom hook run after the shader is used.
69
+ *
70
+ * @remarks
71
+ * Gives you low-level access to the WebGL context and the shader program.
72
+ * Can be used to clean up resources created in the {@link setup} hook.
73
+ *
74
+ * @param gl - WebGL context.
75
+ * @param program - The shader program.
76
+ */
77
+ teardown?: (gl: WebGL2RenderingContext, program: WebGLProgram) => void;
78
78
  }
79
- export type PossibleShaderConfig =
80
- | (ShaderConfig | string)[]
81
- | ShaderConfig
82
- | string
83
- | null;
84
- export declare function parseShader(
85
- this: Node,
86
- value: PossibleShaderConfig,
87
- ): ShaderConfig[];
88
- //# sourceMappingURL=ShaderConfig.d.ts.map
79
+ export type PossibleShaderConfig = (ShaderConfig | string)[] | ShaderConfig | string | null;
80
+ export declare function parseShader(this: Node, value: PossibleShaderConfig): ShaderConfig[];
81
+ //# sourceMappingURL=ShaderConfig.d.ts.map
@@ -2,4 +2,4 @@ export * from './Filter';
2
2
  export * from './Gradient';
3
3
  export * from './Pattern';
4
4
  export * from './types';
5
- //# sourceMappingURL=index.d.ts.map
5
+ //# sourceMappingURL=index.d.ts.map
@@ -2,4 +2,4 @@ export * from './Filter';
2
2
  export * from './Gradient';
3
3
  export * from './Pattern';
4
4
  export * from './types';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL3BhcnRpYWxzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsV0FBVyxDQUFDO0FBQzFCLGNBQWMsU0FBUyxDQUFDIn0=
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL3BhcnRpYWxzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsV0FBVyxDQUFDO0FBQzFCLGNBQWMsU0FBUyxDQUFDIn0=
@@ -1,23 +1,10 @@
1
- import {Color, PossibleColor} from '@revideo/core';
2
- import type {Gradient} from './Gradient';
3
- import type {Pattern} from './Pattern';
1
+ import { Color, PossibleColor } from '@revideo/core';
2
+ import type { Gradient } from './Gradient';
3
+ import type { Pattern } from './Pattern';
4
4
  export type FlexDirection = 'row' | 'row-reverse' | 'column' | 'column-reverse';
5
5
  export type FlexWrap = 'nowrap' | 'wrap' | 'wrap-reverse';
6
- export type FlexBasis =
7
- | Length
8
- | 'content'
9
- | 'max-content'
10
- | 'min-content'
11
- | 'fit-content'
12
- | null;
13
- export type FlexContent =
14
- | 'center'
15
- | 'start'
16
- | 'end'
17
- | 'space-between'
18
- | 'space-around'
19
- | 'space-evenly'
20
- | 'stretch';
6
+ export type FlexBasis = Length | 'content' | 'max-content' | 'min-content' | 'fit-content' | null;
7
+ export type FlexContent = 'center' | 'start' | 'end' | 'space-between' | 'space-around' | 'space-evenly' | 'stretch';
21
8
  export type FlexItems = 'center' | 'start' | 'end' | 'stretch' | 'baseline';
22
9
  export type TextWrap = boolean | 'pre';
23
10
  export type LayoutMode = boolean | null;
@@ -45,4 +32,4 @@ export type DesiredLength = Length | null;
45
32
  export type LengthLimit = Length | null | 'max-content' | 'min-content';
46
33
  export type PossibleCanvasStyle = null | PossibleColor | Gradient | Pattern;
47
34
  export type CanvasStyle = null | Color | Gradient | Pattern;
48
- //# sourceMappingURL=types.d.ts.map
35
+ //# sourceMappingURL=types.d.ts.map
@@ -1,43 +1,24 @@
1
- import {
2
- AssetInfo,
3
- FullSceneDescription,
4
- GeneratorScene,
5
- Inspectable,
6
- InspectedAttributes,
7
- InspectedElement,
8
- Scene,
9
- ThreadGeneratorFactory,
10
- Vector2,
11
- } from '@revideo/core';
12
- import {Node, View2D} from '../components';
13
- export declare class Scene2D
14
- extends GeneratorScene<View2D>
15
- implements Inspectable
16
- {
17
- private view;
18
- private registeredNodes;
19
- private readonly nodeCounters;
20
- private assetHash;
21
- constructor(
22
- description: FullSceneDescription<ThreadGeneratorFactory<View2D>>,
23
- );
24
- getView(): View2D;
25
- next(): Promise<void>;
26
- draw(context: CanvasRenderingContext2D): Promise<void>;
27
- reset(previousScene?: Scene): Promise<void>;
28
- inspectPosition(x: number, y: number): InspectedElement | null;
29
- validateInspection(element: InspectedElement | null): InspectedElement | null;
30
- inspectAttributes(element: InspectedElement): InspectedAttributes | null;
31
- drawOverlay(
32
- element: InspectedElement,
33
- matrix: DOMMatrix,
34
- context: CanvasRenderingContext2D,
35
- ): void;
36
- transformMousePosition(x: number, y: number): Vector2 | null;
37
- registerNode(node: Node, key?: string): [string, () => void];
38
- getNode(key: any): Node | null;
39
- getDetachedNodes(): Generator<Node, void, unknown>;
40
- getMediaAssets(): Array<AssetInfo>;
41
- protected recreateView(): void;
1
+ import { AssetInfo, FullSceneDescription, GeneratorScene, Inspectable, InspectedAttributes, InspectedElement, Scene, ThreadGeneratorFactory, Vector2 } from '@revideo/core';
2
+ import { Node, View2D } from '../components';
3
+ export declare class Scene2D extends GeneratorScene<View2D> implements Inspectable {
4
+ private view;
5
+ private registeredNodes;
6
+ private readonly nodeCounters;
7
+ private assetHash;
8
+ constructor(description: FullSceneDescription<ThreadGeneratorFactory<View2D>>);
9
+ getView(): View2D;
10
+ next(): Promise<void>;
11
+ draw(context: CanvasRenderingContext2D): Promise<void>;
12
+ reset(previousScene?: Scene): Promise<void>;
13
+ inspectPosition(x: number, y: number): InspectedElement | null;
14
+ validateInspection(element: InspectedElement | null): InspectedElement | null;
15
+ inspectAttributes(element: InspectedElement): InspectedAttributes | null;
16
+ drawOverlay(element: InspectedElement, matrix: DOMMatrix, context: CanvasRenderingContext2D): void;
17
+ transformMousePosition(x: number, y: number): Vector2 | null;
18
+ registerNode(node: Node, key?: string): [string, () => void];
19
+ getNode(key: any): Node | null;
20
+ getDetachedNodes(): Generator<Node, void, unknown>;
21
+ getMediaAssets(): Array<AssetInfo>;
22
+ protected recreateView(): void;
42
23
  }
43
- //# sourceMappingURL=Scene2D.d.ts.map
24
+ //# sourceMappingURL=Scene2D.d.ts.map
@@ -1,4 +1,4 @@
1
1
  export * from './Scene2D';
2
2
  export * from './makeScene2D';
3
3
  export * from './useScene2D';
4
- //# sourceMappingURL=index.d.ts.map
4
+ //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
1
  export * from './Scene2D';
2
2
  export * from './makeScene2D';
3
3
  export * from './useScene2D';
4
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL3NjZW5lcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGNBQWMsQ0FBQyJ9
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL3NjZW5lcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGNBQWMsQ0FBQyJ9
@@ -1,7 +1,5 @@
1
- import {DescriptionOf, ThreadGeneratorFactory} from '@revideo/core';
2
- import type {View2D} from '../components';
3
- import {Scene2D} from './Scene2D';
4
- export declare function makeScene2D(
5
- runner: ThreadGeneratorFactory<View2D>,
6
- ): DescriptionOf<Scene2D>;
7
- //# sourceMappingURL=makeScene2D.d.ts.map
1
+ import { DescriptionOf, ThreadGeneratorFactory } from '@revideo/core';
2
+ import type { View2D } from '../components';
3
+ import { Scene2D } from './Scene2D';
4
+ export declare function makeScene2D(runner: ThreadGeneratorFactory<View2D>): DescriptionOf<Scene2D>;
5
+ //# sourceMappingURL=makeScene2D.d.ts.map
@@ -1,3 +1,3 @@
1
- import type {Scene2D} from './Scene2D';
1
+ import type { Scene2D } from './Scene2D';
2
2
  export declare function useScene2D(): Scene2D;
3
- //# sourceMappingURL=useScene2D.d.ts.map
3
+ //# sourceMappingURL=useScene2D.d.ts.map