@revideo/2d 0.4.7-alpha.1027 → 0.4.7-five.1022
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.
- package/editor/editor/tsconfig.build.tsbuildinfo +1 -1
- package/editor/index.js +380 -151
- package/editor/index.js.map +1 -1
- package/lib/code/CodeCursor.d.ts +74 -74
- package/lib/code/CodeDiffer.d.ts +21 -16
- package/lib/code/CodeDiffer.js +39 -41
- package/lib/code/CodeFragment.d.ts +16 -8
- package/lib/code/CodeFragment.js +36 -36
- package/lib/code/CodeHighlighter.d.ts +59 -59
- package/lib/code/CodeHighlighter.js +1 -1
- package/lib/code/CodeMetrics.d.ts +12 -8
- package/lib/code/CodeMetrics.js +26 -24
- package/lib/code/CodeRange.d.ts +21 -5
- package/lib/code/CodeRange.js +131 -124
- package/lib/code/CodeScope.d.ts +18 -8
- package/lib/code/CodeSelection.d.ts +9 -4
- package/lib/code/CodeSelection.js +8 -8
- package/lib/code/CodeSignal.d.ts +74 -47
- package/lib/code/CodeTokenizer.d.ts +1 -1
- package/lib/code/CodeTokenizer.js +41 -41
- package/lib/code/DefaultHighlightStyle.d.ts +2 -2
- package/lib/code/DefaultHighlightStyle.js +96 -96
- package/lib/code/LezerHighlighter.d.ts +21 -19
- package/lib/code/diff.d.ts +12 -9
- package/lib/code/diff.js +218 -205
- package/lib/code/extractRange.d.ts +7 -4
- package/lib/code/extractRange.js +79 -71
- package/lib/code/index.d.ts +1 -1
- package/lib/code/index.js +1 -1
- package/lib/components/Audio.d.ts +11 -11
- package/lib/components/Bezier.d.ts +18 -18
- package/lib/components/Circle.d.ts +95 -90
- package/lib/components/Code.d.ts +244 -211
- package/lib/components/CodeBlock.d.ts +1 -1
- package/lib/components/CubicBezier.d.ts +36 -36
- package/lib/components/Curve.d.ts +208 -198
- package/lib/components/Grid.d.ts +47 -42
- package/lib/components/HlsVideo.d.ts +62 -0
- package/lib/components/HlsVideo.d.ts.map +1 -0
- package/lib/components/HlsVideo.js +169 -0
- package/lib/components/Icon.d.ts +55 -50
- package/lib/components/Img.d.ts +86 -79
- package/lib/components/Knot.d.ts +97 -78
- package/lib/components/Latex.d.ts +12 -12
- package/lib/components/Layout.d.ts +455 -413
- package/lib/components/Line.d.ts +61 -49
- package/lib/components/Media.d.ts +37 -37
- package/lib/components/Node.d.ts +1 -1
- package/lib/components/Path.d.ts +1 -1
- package/lib/components/Polygon.d.ts +60 -55
- package/lib/components/QuadBezier.d.ts +29 -29
- package/lib/components/Ray.d.ts +28 -28
- package/lib/components/Rect.d.ts +115 -108
- package/lib/components/SVG.d.ts +1 -1
- package/lib/components/Shape.d.ts +1 -1
- package/lib/components/Spline.d.ts +46 -40
- package/lib/components/Txt.d.ts +55 -44
- package/lib/components/TxtLeaf.d.ts +20 -16
- package/lib/components/Video.d.ts +0 -1
- package/lib/components/Video.d.ts.map +1 -1
- package/lib/components/Video.js +2 -7
- package/lib/components/View2D.d.ts +22 -22
- package/lib/components/index.d.ts +1 -1
- package/lib/components/types.d.ts +22 -9
- package/lib/curves/ArcSegment.d.ts +36 -24
- package/lib/curves/CircleSegment.d.ts +26 -16
- package/lib/curves/CubicBezierSegment.d.ts +18 -13
- package/lib/curves/CurveDrawingInfo.d.ts +9 -9
- package/lib/curves/CurvePoint.d.ts +13 -13
- package/lib/curves/CurveProfile.d.ts +5 -5
- package/lib/curves/CurveProfile.js +1 -1
- package/lib/curves/KnotInfo.d.ts +8 -8
- package/lib/curves/LineSegment.d.ts +19 -14
- package/lib/curves/Polynomial.d.ts +110 -110
- package/lib/curves/Polynomial2D.d.ts +20 -20
- package/lib/curves/PolynomialSegment.d.ts +42 -37
- package/lib/curves/QuadBezierSegment.d.ts +12 -12
- package/lib/curves/Segment.d.ts +12 -7
- package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
- package/lib/curves/createCurveProfileLerp.d.ts +17 -6
- package/lib/curves/getBezierSplineProfile.d.ts +8 -4
- package/lib/curves/getCircleProfile.d.ts +10 -4
- package/lib/curves/getPathProfile.d.ts +2 -2
- package/lib/curves/getPointAtDistance.d.ts +7 -4
- package/lib/curves/getPolylineProfile.d.ts +8 -4
- package/lib/curves/getRectProfile.d.ts +9 -4
- package/lib/curves/index.d.ts +1 -1
- package/lib/curves/index.js +1 -1
- package/lib/decorators/canvasStyleSignal.d.ts +3 -3
- package/lib/decorators/colorSignal.d.ts +1 -1
- package/lib/decorators/compound.d.ts +4 -2
- package/lib/decorators/computed.d.ts +1 -1
- package/lib/decorators/defaultStyle.d.ts +5 -2
- package/lib/decorators/filtersSignal.d.ts +28 -8
- package/lib/decorators/index.d.ts +1 -1
- package/lib/decorators/index.js +1 -1
- package/lib/decorators/initializers.d.ts +5 -2
- package/lib/decorators/initializers.js +18 -19
- package/lib/decorators/nodeName.d.ts +1 -1
- package/lib/decorators/nodeName.js +4 -4
- package/lib/decorators/signal.d.ts +40 -20
- package/lib/decorators/spacingSignal.d.ts +1 -1
- package/lib/decorators/vector2Signal.d.ts +13 -7
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/jsx-dev-runtime.d.ts +3 -3
- package/lib/jsx-dev-runtime.js +3 -3
- package/lib/jsx-runtime.d.ts +19 -9
- package/lib/jsx-runtime.js +18 -18
- package/lib/partials/Filter.d.ts +24 -16
- package/lib/partials/Gradient.d.ts +30 -24
- package/lib/partials/Pattern.d.ts +14 -9
- package/lib/partials/ShaderConfig.d.ts +81 -74
- package/lib/partials/index.d.ts +1 -1
- package/lib/partials/index.js +1 -1
- package/lib/partials/types.d.ts +19 -6
- package/lib/scenes/Scene2D.d.ts +42 -23
- package/lib/scenes/index.d.ts +1 -1
- package/lib/scenes/index.js +1 -1
- package/lib/scenes/makeScene2D.d.ts +7 -5
- package/lib/scenes/useScene2D.d.ts +2 -2
- package/lib/tsconfig.build.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/utils/diff.d.ts +25 -18
- package/lib/utils/diff.js +84 -87
- package/lib/utils/index.d.ts +1 -1
- package/lib/utils/index.js +1 -1
- package/lib/utils/is.d.ts +4 -2
- package/lib/utils/is.js +2 -2
- package/lib/utils/makeSignalExtensions.d.ts +11 -4
- package/lib/utils/video/mp4-parser-manager.d.ts +0 -1
- package/lib/utils/video/mp4-parser-manager.d.ts.map +1 -1
- package/lib/utils/video/mp4-parser-manager.js +4 -21
- package/lib/utils/video/mp4-parser.d.ts +63 -0
- package/lib/utils/video/mp4-parser.d.ts.map +1 -0
- package/lib/utils/video/mp4-parser.js +264 -0
- package/package.json +4 -4
- package/src/lib/components/Video.ts +1 -7
- package/src/lib/utils/video/mp4-parser-manager.ts +5 -24
- package/src/lib/utils/video/mp4-parser.ts +340 -0
- package/lib/utils/video/parser/index.d.ts +0 -2
- package/lib/utils/video/parser/index.d.ts.map +0 -1
- package/lib/utils/video/parser/index.js +0 -2
- package/lib/utils/video/parser/parser.d.ts +0 -21
- package/lib/utils/video/parser/parser.d.ts.map +0 -1
- package/lib/utils/video/parser/parser.js +0 -165
- package/lib/utils/video/parser/sampler.d.ts +0 -16
- package/lib/utils/video/parser/sampler.d.ts.map +0 -1
- package/lib/utils/video/parser/sampler.js +0 -56
- package/lib/utils/video/parser/segment.d.ts +0 -43
- package/lib/utils/video/parser/segment.d.ts.map +0 -1
- package/lib/utils/video/parser/segment.js +0 -153
- package/lib/utils/video/parser/sink.d.ts +0 -9
- package/lib/utils/video/parser/sink.d.ts.map +0 -1
- package/lib/utils/video/parser/sink.js +0 -22
- package/lib/utils/video/parser/utils.d.ts +0 -10
- package/lib/utils/video/parser/utils.d.ts.map +0 -1
- package/lib/utils/video/parser/utils.js +0 -22
- package/src/lib/utils/video/parser/index.ts +0 -1
- package/src/lib/utils/video/parser/parser.ts +0 -253
- package/src/lib/utils/video/parser/sampler.ts +0 -72
- package/src/lib/utils/video/parser/segment.ts +0 -202
- package/src/lib/utils/video/parser/sink.ts +0 -29
- package/src/lib/utils/video/parser/utils.ts +0 -31
|
@@ -1,202 +1,212 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
BBox,
|
|
3
|
+
SerializedVector2,
|
|
4
|
+
SignalValue,
|
|
5
|
+
SimpleSignal,
|
|
6
|
+
Vector2,
|
|
7
|
+
} from '@revideo/core';
|
|
8
|
+
import {CurveDrawingInfo} from '../curves/CurveDrawingInfo';
|
|
9
|
+
import {CurvePoint} from '../curves/CurvePoint';
|
|
10
|
+
import {CurveProfile} from '../curves/CurveProfile';
|
|
11
|
+
import {DesiredLength} from '../partials';
|
|
12
|
+
import {Shape, ShapeProps} from './Shape';
|
|
7
13
|
export interface CurveProps extends ShapeProps {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
14
|
+
/**
|
|
15
|
+
* {@inheritDoc Curve.closed}
|
|
16
|
+
*/
|
|
17
|
+
closed?: SignalValue<boolean>;
|
|
18
|
+
/**
|
|
19
|
+
* {@inheritDoc Curve.start}
|
|
20
|
+
*/
|
|
21
|
+
start?: SignalValue<number>;
|
|
22
|
+
/**
|
|
23
|
+
* {@inheritDoc Curve.startOffset}
|
|
24
|
+
*/
|
|
25
|
+
startOffset?: SignalValue<number>;
|
|
26
|
+
/**
|
|
27
|
+
* {@inheritDoc Curve.startArrow}
|
|
28
|
+
*/
|
|
29
|
+
startArrow?: SignalValue<boolean>;
|
|
30
|
+
/**
|
|
31
|
+
* {@inheritDoc Curve.end}
|
|
32
|
+
*/
|
|
33
|
+
end?: SignalValue<number>;
|
|
34
|
+
/**
|
|
35
|
+
* {@inheritDoc Curve.endOffset}
|
|
36
|
+
*/
|
|
37
|
+
endOffset?: SignalValue<number>;
|
|
38
|
+
/**
|
|
39
|
+
* {@inheritDoc Curve.endArrow}
|
|
40
|
+
*/
|
|
41
|
+
endArrow?: SignalValue<boolean>;
|
|
42
|
+
/**
|
|
43
|
+
* {@inheritDoc Curve.arrowSize}
|
|
44
|
+
*/
|
|
45
|
+
arrowSize?: SignalValue<number>;
|
|
40
46
|
}
|
|
41
47
|
export declare abstract class Curve extends Shape {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
48
|
+
/**
|
|
49
|
+
* Whether the curve should be closed.
|
|
50
|
+
*
|
|
51
|
+
* @remarks
|
|
52
|
+
* Closed curves have their start and end points connected.
|
|
53
|
+
*/
|
|
54
|
+
readonly closed: SimpleSignal<boolean, this>;
|
|
55
|
+
/**
|
|
56
|
+
* A percentage from the start before which the curve should be clipped.
|
|
57
|
+
*
|
|
58
|
+
* @remarks
|
|
59
|
+
* The portion of the curve that comes before the given percentage will be
|
|
60
|
+
* made invisible.
|
|
61
|
+
*
|
|
62
|
+
* This property is usefully for animating the curve appearing on the screen.
|
|
63
|
+
* The value of `0` means the very start of the curve (accounting for the
|
|
64
|
+
* {@link startOffset}) while `1` means the very end (accounting for the
|
|
65
|
+
* {@link endOffset}).
|
|
66
|
+
*/
|
|
67
|
+
readonly start: SimpleSignal<number, this>;
|
|
68
|
+
/**
|
|
69
|
+
* The offset in pixels from the start of the curve.
|
|
70
|
+
*
|
|
71
|
+
* @remarks
|
|
72
|
+
* This property lets you specify where along the defined curve the actual
|
|
73
|
+
* visible portion starts. For example, setting it to `20` will make the first
|
|
74
|
+
* 20 pixels of the curve invisible.
|
|
75
|
+
*
|
|
76
|
+
* This property is useful for trimming the curve using a fixed distance.
|
|
77
|
+
* If you want to animate the curve appearing on the screen, use {@link start}
|
|
78
|
+
* instead.
|
|
79
|
+
*/
|
|
80
|
+
readonly startOffset: SimpleSignal<number, this>;
|
|
81
|
+
/**
|
|
82
|
+
* Whether to display an arrow at the start of the visible curve.
|
|
83
|
+
*
|
|
84
|
+
* @remarks
|
|
85
|
+
* Use {@link arrowSize} to control the size of the arrow.
|
|
86
|
+
*/
|
|
87
|
+
readonly startArrow: SimpleSignal<boolean, this>;
|
|
88
|
+
/**
|
|
89
|
+
* A percentage from the start after which the curve should be clipped.
|
|
90
|
+
*
|
|
91
|
+
* @remarks
|
|
92
|
+
* The portion of the curve that comes after the given percentage will be
|
|
93
|
+
* made invisible.
|
|
94
|
+
*
|
|
95
|
+
* This property is usefully for animating the curve appearing on the screen.
|
|
96
|
+
* The value of `0` means the very start of the curve (accounting for the
|
|
97
|
+
* {@link startOffset}) while `1` means the very end (accounting for the
|
|
98
|
+
* {@link endOffset}).
|
|
99
|
+
*/
|
|
100
|
+
readonly end: SimpleSignal<number, this>;
|
|
101
|
+
/**
|
|
102
|
+
* The offset in pixels from the end of the curve.
|
|
103
|
+
*
|
|
104
|
+
* @remarks
|
|
105
|
+
* This property lets you specify where along the defined curve the actual
|
|
106
|
+
* visible portion ends. For example, setting it to `20` will make the last
|
|
107
|
+
* 20 pixels of the curve invisible.
|
|
108
|
+
*
|
|
109
|
+
* This property is useful for trimming the curve using a fixed distance.
|
|
110
|
+
* If you want to animate the curve appearing on the screen, use {@link end}
|
|
111
|
+
* instead.
|
|
112
|
+
*/
|
|
113
|
+
readonly endOffset: SimpleSignal<number, this>;
|
|
114
|
+
/**
|
|
115
|
+
* Whether to display an arrow at the end of the visible curve.
|
|
116
|
+
*
|
|
117
|
+
* @remarks
|
|
118
|
+
* Use {@link arrowSize} to control the size of the arrow.
|
|
119
|
+
*/
|
|
120
|
+
readonly endArrow: SimpleSignal<boolean, this>;
|
|
121
|
+
/**
|
|
122
|
+
* Controls the size of the end and start arrows.
|
|
123
|
+
*
|
|
124
|
+
* @remarks
|
|
125
|
+
* To make the arrows visible make sure to enable {@link startArrow} and/or
|
|
126
|
+
* {@link endArrow}.
|
|
127
|
+
*/
|
|
128
|
+
readonly arrowSize: SimpleSignal<number, this>;
|
|
129
|
+
protected canHaveSubpath: boolean;
|
|
130
|
+
protected desiredSize(): SerializedVector2<DesiredLength>;
|
|
131
|
+
constructor(props: CurveProps);
|
|
132
|
+
protected abstract childrenBBox(): BBox;
|
|
133
|
+
abstract profile(): CurveProfile;
|
|
134
|
+
/**
|
|
135
|
+
* Convert a percentage along the curve to a distance.
|
|
136
|
+
*
|
|
137
|
+
* @remarks
|
|
138
|
+
* The returned distance is given in relation to the full curve, not
|
|
139
|
+
* accounting for {@link startOffset} and {@link endOffset}.
|
|
140
|
+
*
|
|
141
|
+
* @param value - The percentage along the curve.
|
|
142
|
+
*/
|
|
143
|
+
percentageToDistance(value: number): number;
|
|
144
|
+
/**
|
|
145
|
+
* Convert a distance along the curve to a percentage.
|
|
146
|
+
*
|
|
147
|
+
* @remarks
|
|
148
|
+
* The distance should be given in relation to the full curve, not
|
|
149
|
+
* accounting for {@link startOffset} and {@link endOffset}.
|
|
150
|
+
*
|
|
151
|
+
* @param value - The distance along the curve.
|
|
152
|
+
*/
|
|
153
|
+
distanceToPercentage(value: number): number;
|
|
154
|
+
/**
|
|
155
|
+
* The base arc length of this curve.
|
|
156
|
+
*
|
|
157
|
+
* @remarks
|
|
158
|
+
* This is the entire length of this curve, not accounting for
|
|
159
|
+
* {@link startOffset | the offsets}.
|
|
160
|
+
*/
|
|
161
|
+
baseArcLength(): number;
|
|
162
|
+
/**
|
|
163
|
+
* The offset arc length of this curve.
|
|
164
|
+
*
|
|
165
|
+
* @remarks
|
|
166
|
+
* This is the length of the curve that accounts for
|
|
167
|
+
* {@link startOffset | the offsets}.
|
|
168
|
+
*/
|
|
169
|
+
offsetArcLength(): number;
|
|
170
|
+
/**
|
|
171
|
+
* The visible arc length of this curve.
|
|
172
|
+
*
|
|
173
|
+
* @remarks
|
|
174
|
+
* This arc length accounts for both the offset and the {@link start} and
|
|
175
|
+
* {@link end} properties.
|
|
176
|
+
*/
|
|
177
|
+
arcLength(): number;
|
|
178
|
+
/**
|
|
179
|
+
* The percentage of the curve that's currently visible.
|
|
180
|
+
*
|
|
181
|
+
* @remarks
|
|
182
|
+
* The returned value is the ratio between the visible length (as defined by
|
|
183
|
+
* {@link start} and {@link end}) and the offset length of the curve.
|
|
184
|
+
*/
|
|
185
|
+
completion(): number;
|
|
186
|
+
protected processSubpath(
|
|
187
|
+
_path: Path2D,
|
|
188
|
+
_startPoint: Vector2 | null,
|
|
189
|
+
_endPoint: Vector2 | null,
|
|
190
|
+
): void;
|
|
191
|
+
protected curveDrawingInfo(): CurveDrawingInfo;
|
|
192
|
+
protected getPointAtDistance(value: number): CurvePoint;
|
|
193
|
+
getPointAtPercentage(value: number): CurvePoint;
|
|
194
|
+
protected getComputedLayout(): BBox;
|
|
195
|
+
protected offsetComputedLayout(box: BBox): BBox;
|
|
196
|
+
protected getPath(): Path2D;
|
|
197
|
+
protected getCacheBBox(): BBox;
|
|
198
|
+
protected lineWidthCoefficient(): number;
|
|
199
|
+
/**
|
|
200
|
+
* Check if the path requires a profile.
|
|
201
|
+
*
|
|
202
|
+
* @remarks
|
|
203
|
+
* The profile is only required if certain features are used. Otherwise, the
|
|
204
|
+
* profile generation can be skipped, and the curve can be drawn directly
|
|
205
|
+
* using the 2D context.
|
|
206
|
+
*/
|
|
207
|
+
protected requiresProfile(): boolean;
|
|
208
|
+
protected drawShape(context: CanvasRenderingContext2D): void;
|
|
209
|
+
private drawArrows;
|
|
210
|
+
private drawArrow;
|
|
201
211
|
}
|
|
202
|
-
//# sourceMappingURL=Curve.d.ts.map
|
|
212
|
+
//# sourceMappingURL=Curve.d.ts.map
|
package/lib/components/Grid.d.ts
CHANGED
|
@@ -1,18 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
PossibleVector2,
|
|
3
|
+
SignalValue,
|
|
4
|
+
SimpleSignal,
|
|
5
|
+
Vector2Signal,
|
|
6
|
+
} from '@revideo/core';
|
|
7
|
+
import {Shape, ShapeProps} from './Shape';
|
|
3
8
|
export interface GridProps extends ShapeProps {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
/**
|
|
10
|
+
* {@inheritDoc Grid.spacing}
|
|
11
|
+
*/
|
|
12
|
+
spacing?: SignalValue<PossibleVector2>;
|
|
13
|
+
/**
|
|
14
|
+
* {@inheritDoc Grid.start}
|
|
15
|
+
*/
|
|
16
|
+
start?: SignalValue<number>;
|
|
17
|
+
/**
|
|
18
|
+
* {@inheritDoc Grid.end}
|
|
19
|
+
*/
|
|
20
|
+
end?: SignalValue<number>;
|
|
16
21
|
}
|
|
17
22
|
/**
|
|
18
23
|
* A node for drawing a two-dimensional grid.
|
|
@@ -44,32 +49,32 @@ export interface GridProps extends ShapeProps {
|
|
|
44
49
|
* ```
|
|
45
50
|
*/
|
|
46
51
|
export declare class Grid extends Shape {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
52
|
+
/**
|
|
53
|
+
* The spacing between the grid lines.
|
|
54
|
+
*/
|
|
55
|
+
readonly spacing: Vector2Signal<this>;
|
|
56
|
+
/**
|
|
57
|
+
* The percentage that should be clipped from the beginning of each grid line.
|
|
58
|
+
*
|
|
59
|
+
* @remarks
|
|
60
|
+
* The portion of each grid line that comes before the given percentage will
|
|
61
|
+
* be made invisible.
|
|
62
|
+
*
|
|
63
|
+
* This property is useful for animating the grid appearing on-screen.
|
|
64
|
+
*/
|
|
65
|
+
readonly start: SimpleSignal<number, this>;
|
|
66
|
+
/**
|
|
67
|
+
* The percentage that should be clipped from the end of each grid line.
|
|
68
|
+
*
|
|
69
|
+
* @remarks
|
|
70
|
+
* The portion of each grid line that comes after the given percentage will
|
|
71
|
+
* be made invisible.
|
|
72
|
+
*
|
|
73
|
+
* This property is useful for animating the grid appearing on-screen.
|
|
74
|
+
*/
|
|
75
|
+
readonly end: SimpleSignal<number, this>;
|
|
76
|
+
constructor(props: GridProps);
|
|
77
|
+
protected drawShape(context: CanvasRenderingContext2D): void;
|
|
78
|
+
private mapPoints;
|
|
74
79
|
}
|
|
75
|
-
//# sourceMappingURL=Grid.d.ts.map
|
|
80
|
+
//# sourceMappingURL=Grid.d.ts.map
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import {SerializedVector2, SignalValue, SimpleSignal} from '@revideo/core';
|
|
2
|
+
import {DesiredLength} from '../partials';
|
|
3
|
+
import {Media, MediaProps} from './Media';
|
|
4
|
+
export interface HlsVideoProps extends MediaProps {
|
|
5
|
+
/**
|
|
6
|
+
* {@inheritDoc Video.alpha}
|
|
7
|
+
*/
|
|
8
|
+
alpha?: SignalValue<number>;
|
|
9
|
+
/**
|
|
10
|
+
* {@inheritDoc Video.smoothing}
|
|
11
|
+
*/
|
|
12
|
+
smoothing?: SignalValue<boolean>;
|
|
13
|
+
/**
|
|
14
|
+
* {@inheritDoc Video.png}
|
|
15
|
+
*/
|
|
16
|
+
png?: SignalValue<boolean>;
|
|
17
|
+
}
|
|
18
|
+
export declare class HlsVideo extends Media {
|
|
19
|
+
/**
|
|
20
|
+
* The alpha value of this video.
|
|
21
|
+
*
|
|
22
|
+
* @remarks
|
|
23
|
+
* Unlike opacity, the alpha value affects only the video itself, leaving the
|
|
24
|
+
* fill, stroke, and children intact.
|
|
25
|
+
*/
|
|
26
|
+
readonly alpha: SimpleSignal<number, this>;
|
|
27
|
+
/**
|
|
28
|
+
* Whether the video should be smoothed.
|
|
29
|
+
*
|
|
30
|
+
* @remarks
|
|
31
|
+
* When disabled, the video will be scaled using the nearest neighbor
|
|
32
|
+
* interpolation with no smoothing. The resulting video will appear pixelated.
|
|
33
|
+
*
|
|
34
|
+
* @defaultValue true
|
|
35
|
+
*/
|
|
36
|
+
readonly smoothing: SimpleSignal<boolean, this>;
|
|
37
|
+
/**
|
|
38
|
+
* Whether the video frames should be extracted as PNGs. Uses JPEGs when
|
|
39
|
+
* set to false.
|
|
40
|
+
*
|
|
41
|
+
* @remarks
|
|
42
|
+
* PNGs have better image quality and support transparency, but they make
|
|
43
|
+
* rendering slower.
|
|
44
|
+
*
|
|
45
|
+
* @defaultValue false
|
|
46
|
+
*/
|
|
47
|
+
readonly png: SimpleSignal<boolean, this>;
|
|
48
|
+
private static readonly pool;
|
|
49
|
+
constructor(props: HlsVideoProps);
|
|
50
|
+
protected desiredSize(): SerializedVector2<DesiredLength>;
|
|
51
|
+
protected mediaElement(): HTMLVideoElement;
|
|
52
|
+
protected seekedMedia(): HTMLVideoElement;
|
|
53
|
+
protected fastSeekedMedia(): HTMLVideoElement;
|
|
54
|
+
private video;
|
|
55
|
+
protected seekedVideo(): HTMLVideoElement;
|
|
56
|
+
protected fastSeekedVideo(): HTMLVideoElement;
|
|
57
|
+
protected lastFrame: HTMLImageElement | null;
|
|
58
|
+
protected seekFunction(): Promise<HTMLVideoElement>;
|
|
59
|
+
protected draw(context: CanvasRenderingContext2D): Promise<void>;
|
|
60
|
+
protected applyFlex(): void;
|
|
61
|
+
}
|
|
62
|
+
//# sourceMappingURL=HlsVideo.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HlsVideo.d.ts","sourceRoot":"","sources":["../../src/lib/components/HlsVideo.ts"],"names":[],"mappings":"AAAA,OAAO,EAIH,iBAAiB,EACjB,WAAW,EACX,YAAY,EAEb,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAC,aAAa,EAAC,MAAM,aAAa,CAAC;AAE1C,OAAO,EAAC,KAAK,EAAE,UAAU,EAAC,MAAM,SAAS,CAAC;AAG1C,MAAM,WAAW,aAAc,SAAQ,UAAU;IAC/C;;OAEG;IACH,KAAK,CAAC,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC5B;;OAEG;IACH,SAAS,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;IACjC;;OAEG;IACH,GAAG,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;CAC5B;AAED,qBACa,QAAS,SAAQ,KAAK;IACjC;;;;;;OAMG;IACH,SAEwB,KAAK,EAAE,YAAY,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;IAE1D;;;;;;;;OAQG;IACH,SAEwB,SAAS,EAAE,YAAY,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;IAE/D;;;;;;;;;OASG;IACH,SAEwB,GAAG,EAAE,YAAY,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;IAEzD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAwC;gBAEjD,KAAK,EAAE,aAAa;cAIpB,WAAW,IAAI,iBAAiB,CAAC,aAAa,CAAC;IAalE,SAAS,CAAC,YAAY,IAAI,gBAAgB;IAI1C,SAAS,CAAC,WAAW,IAAI,gBAAgB;IAIzC,SAAS,CAAC,eAAe,IAAI,gBAAgB;IAK7C,OAAO,CAAC,KAAK;IAsCb,SAAS,CAAC,WAAW,IAAI,gBAAgB;IAoBzC,SAAS,CAAC,eAAe,IAAI,gBAAgB;IA+B7C,SAAS,CAAC,SAAS,EAAE,gBAAgB,GAAG,IAAI,CAAQ;cAGpC,YAAY;cAgBH,IAAI,CAAC,OAAO,EAAE,wBAAwB;cAwB5C,SAAS;CAO7B"}
|