@revideo/2d 0.4.7-two.1024 → 0.4.8-alpha.1032
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 +151 -380
- package/editor/index.js.map +1 -1
- package/lib/code/CodeCursor.d.ts +74 -74
- package/lib/code/CodeDiffer.d.ts +16 -21
- package/lib/code/CodeDiffer.js +41 -39
- package/lib/code/CodeFragment.d.ts +8 -16
- 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 +8 -12
- package/lib/code/CodeMetrics.js +24 -26
- package/lib/code/CodeRange.d.ts +5 -21
- package/lib/code/CodeRange.js +124 -131
- package/lib/code/CodeScope.d.ts +8 -18
- package/lib/code/CodeSelection.d.ts +4 -9
- package/lib/code/CodeSelection.js +8 -8
- package/lib/code/CodeSignal.d.ts +47 -74
- 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 +19 -21
- package/lib/code/diff.d.ts +9 -12
- package/lib/code/diff.js +205 -218
- package/lib/code/extractRange.d.ts +4 -7
- package/lib/code/extractRange.js +71 -79
- 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 +90 -95
- package/lib/components/Code.d.ts +211 -244
- package/lib/components/CodeBlock.d.ts +1 -1
- package/lib/components/CubicBezier.d.ts +36 -36
- package/lib/components/Curve.d.ts +198 -208
- package/lib/components/Grid.d.ts +42 -47
- package/lib/components/Icon.d.ts +50 -55
- package/lib/components/Img.d.ts +79 -86
- package/lib/components/Knot.d.ts +78 -97
- package/lib/components/Latex.d.ts +12 -12
- package/lib/components/Layout.d.ts +413 -455
- package/lib/components/Line.d.ts +49 -61
- 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 +55 -60
- package/lib/components/QuadBezier.d.ts +29 -29
- package/lib/components/Ray.d.ts +28 -28
- package/lib/components/Rect.d.ts +108 -115
- package/lib/components/SVG.d.ts +1 -1
- package/lib/components/Shape.d.ts +1 -1
- package/lib/components/Spline.d.ts +40 -46
- package/lib/components/Txt.d.ts +44 -55
- package/lib/components/TxtLeaf.d.ts +16 -20
- package/lib/components/Video.d.ts +1 -0
- package/lib/components/Video.d.ts.map +1 -1
- package/lib/components/Video.js +9 -3
- package/lib/components/View2D.d.ts +22 -22
- package/lib/components/index.d.ts +2 -1
- package/lib/components/index.d.ts.map +1 -1
- package/lib/components/index.js +2 -1
- package/lib/components/types.d.ts +9 -22
- package/lib/curves/ArcSegment.d.ts +24 -36
- package/lib/curves/CircleSegment.d.ts +16 -26
- package/lib/curves/CubicBezierSegment.d.ts +13 -18
- 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 +14 -19
- package/lib/curves/Polynomial.d.ts +110 -110
- package/lib/curves/Polynomial2D.d.ts +20 -20
- package/lib/curves/PolynomialSegment.d.ts +37 -42
- package/lib/curves/QuadBezierSegment.d.ts +12 -12
- package/lib/curves/Segment.d.ts +7 -12
- package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
- package/lib/curves/createCurveProfileLerp.d.ts +6 -17
- package/lib/curves/getBezierSplineProfile.d.ts +4 -8
- package/lib/curves/getCircleProfile.d.ts +4 -10
- package/lib/curves/getPathProfile.d.ts +2 -2
- package/lib/curves/getPointAtDistance.d.ts +4 -7
- package/lib/curves/getPolylineProfile.d.ts +4 -8
- package/lib/curves/getRectProfile.d.ts +4 -9
- 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 +2 -4
- package/lib/decorators/computed.d.ts +1 -1
- package/lib/decorators/defaultStyle.d.ts +2 -5
- package/lib/decorators/filtersSignal.d.ts +8 -28
- package/lib/decorators/index.d.ts +1 -1
- package/lib/decorators/index.js +1 -1
- package/lib/decorators/initializers.d.ts +2 -5
- package/lib/decorators/initializers.js +19 -18
- package/lib/decorators/nodeName.d.ts +1 -1
- package/lib/decorators/nodeName.js +4 -4
- package/lib/decorators/signal.d.ts +20 -40
- package/lib/decorators/spacingSignal.d.ts +1 -1
- package/lib/decorators/vector2Signal.d.ts +7 -13
- 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 +9 -19
- package/lib/jsx-runtime.js +18 -18
- package/lib/partials/Filter.d.ts +16 -24
- package/lib/partials/Gradient.d.ts +24 -30
- package/lib/partials/Pattern.d.ts +9 -14
- package/lib/partials/ShaderConfig.d.ts +74 -81
- package/lib/partials/index.d.ts +1 -1
- package/lib/partials/index.js +1 -1
- package/lib/partials/types.d.ts +6 -19
- package/lib/scenes/Scene2D.d.ts +24 -42
- package/lib/scenes/Scene2D.d.ts.map +1 -1
- package/lib/scenes/Scene2D.js +10 -2
- package/lib/scenes/index.d.ts +1 -1
- package/lib/scenes/index.js +1 -1
- package/lib/scenes/makeScene2D.d.ts +5 -7
- package/lib/scenes/useScene2D.d.ts +2 -2
- package/lib/tsconfig.build.tsbuildinfo +1 -1
- package/lib/utils/diff.d.ts +18 -25
- package/lib/utils/diff.js +87 -84
- package/lib/utils/index.d.ts +1 -1
- package/lib/utils/index.js +1 -1
- package/lib/utils/is.d.ts +2 -4
- package/lib/utils/is.js +2 -2
- package/lib/utils/makeSignalExtensions.d.ts +4 -11
- package/lib/utils/video/mp4-parser-manager.d.ts +1 -0
- package/lib/utils/video/mp4-parser-manager.d.ts.map +1 -1
- package/lib/utils/video/mp4-parser-manager.js +21 -4
- package/lib/utils/video/parser/index.d.ts +2 -0
- package/lib/utils/video/parser/index.d.ts.map +1 -0
- package/lib/utils/video/parser/index.js +2 -0
- package/lib/utils/video/parser/parser.d.ts +21 -0
- package/lib/utils/video/parser/parser.d.ts.map +1 -0
- package/lib/utils/video/parser/parser.js +168 -0
- package/lib/utils/video/parser/sampler.d.ts +16 -0
- package/lib/utils/video/parser/sampler.d.ts.map +1 -0
- package/lib/utils/video/parser/sampler.js +56 -0
- package/lib/utils/video/parser/segment.d.ts +44 -0
- package/lib/utils/video/parser/segment.d.ts.map +1 -0
- package/lib/utils/video/parser/segment.js +195 -0
- package/lib/utils/video/parser/sink.d.ts +9 -0
- package/lib/utils/video/parser/sink.d.ts.map +1 -0
- package/lib/utils/video/parser/sink.js +22 -0
- package/lib/utils/video/parser/utils.d.ts +10 -0
- package/lib/utils/video/parser/utils.d.ts.map +1 -0
- package/lib/utils/video/parser/utils.js +22 -0
- package/package.json +4 -4
- package/src/lib/components/Video.ts +9 -2
- package/src/lib/components/index.ts +1 -0
- package/src/lib/scenes/Scene2D.ts +11 -1
- package/src/lib/utils/video/mp4-parser-manager.ts +24 -5
- package/src/lib/utils/video/parser/index.ts +1 -0
- package/src/lib/utils/video/parser/parser.ts +256 -0
- package/src/lib/utils/video/parser/sampler.ts +72 -0
- package/src/lib/utils/video/parser/segment.ts +252 -0
- package/src/lib/utils/video/parser/sink.ts +29 -0
- package/src/lib/utils/video/parser/utils.ts +31 -0
- package/lib/components/HlsVideo.d.ts +0 -62
- package/lib/components/HlsVideo.d.ts.map +0 -1
- package/lib/components/HlsVideo.js +0 -169
- package/lib/tsconfig.tsbuildinfo +0 -1
- package/lib/utils/video/mp4-parser.d.ts +0 -63
- package/lib/utils/video/mp4-parser.d.ts.map +0 -1
- package/lib/utils/video/mp4-parser.js +0 -264
- package/src/lib/utils/video/mp4-parser.ts +0 -340
|
@@ -1,212 +1,202 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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';
|
|
1
|
+
import { BBox, SerializedVector2, SignalValue, SimpleSignal, Vector2 } from '@revideo/core';
|
|
2
|
+
import { CurveDrawingInfo } from '../curves/CurveDrawingInfo';
|
|
3
|
+
import { CurvePoint } from '../curves/CurvePoint';
|
|
4
|
+
import { CurveProfile } from '../curves/CurveProfile';
|
|
5
|
+
import { DesiredLength } from '../partials';
|
|
6
|
+
import { Shape, ShapeProps } from './Shape';
|
|
13
7
|
export interface CurveProps extends ShapeProps {
|
|
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
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
8
|
+
/**
|
|
9
|
+
* {@inheritDoc Curve.closed}
|
|
10
|
+
*/
|
|
11
|
+
closed?: SignalValue<boolean>;
|
|
12
|
+
/**
|
|
13
|
+
* {@inheritDoc Curve.start}
|
|
14
|
+
*/
|
|
15
|
+
start?: SignalValue<number>;
|
|
16
|
+
/**
|
|
17
|
+
* {@inheritDoc Curve.startOffset}
|
|
18
|
+
*/
|
|
19
|
+
startOffset?: SignalValue<number>;
|
|
20
|
+
/**
|
|
21
|
+
* {@inheritDoc Curve.startArrow}
|
|
22
|
+
*/
|
|
23
|
+
startArrow?: SignalValue<boolean>;
|
|
24
|
+
/**
|
|
25
|
+
* {@inheritDoc Curve.end}
|
|
26
|
+
*/
|
|
27
|
+
end?: SignalValue<number>;
|
|
28
|
+
/**
|
|
29
|
+
* {@inheritDoc Curve.endOffset}
|
|
30
|
+
*/
|
|
31
|
+
endOffset?: SignalValue<number>;
|
|
32
|
+
/**
|
|
33
|
+
* {@inheritDoc Curve.endArrow}
|
|
34
|
+
*/
|
|
35
|
+
endArrow?: SignalValue<boolean>;
|
|
36
|
+
/**
|
|
37
|
+
* {@inheritDoc Curve.arrowSize}
|
|
38
|
+
*/
|
|
39
|
+
arrowSize?: SignalValue<number>;
|
|
46
40
|
}
|
|
47
41
|
export declare abstract class Curve extends Shape {
|
|
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
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
protected requiresProfile(): boolean;
|
|
208
|
-
protected drawShape(context: CanvasRenderingContext2D): void;
|
|
209
|
-
private drawArrows;
|
|
210
|
-
private drawArrow;
|
|
42
|
+
/**
|
|
43
|
+
* Whether the curve should be closed.
|
|
44
|
+
*
|
|
45
|
+
* @remarks
|
|
46
|
+
* Closed curves have their start and end points connected.
|
|
47
|
+
*/
|
|
48
|
+
readonly closed: SimpleSignal<boolean, this>;
|
|
49
|
+
/**
|
|
50
|
+
* A percentage from the start before which the curve should be clipped.
|
|
51
|
+
*
|
|
52
|
+
* @remarks
|
|
53
|
+
* The portion of the curve that comes before the given percentage will be
|
|
54
|
+
* made invisible.
|
|
55
|
+
*
|
|
56
|
+
* This property is usefully for animating the curve appearing on the screen.
|
|
57
|
+
* The value of `0` means the very start of the curve (accounting for the
|
|
58
|
+
* {@link startOffset}) while `1` means the very end (accounting for the
|
|
59
|
+
* {@link endOffset}).
|
|
60
|
+
*/
|
|
61
|
+
readonly start: SimpleSignal<number, this>;
|
|
62
|
+
/**
|
|
63
|
+
* The offset in pixels from the start of the curve.
|
|
64
|
+
*
|
|
65
|
+
* @remarks
|
|
66
|
+
* This property lets you specify where along the defined curve the actual
|
|
67
|
+
* visible portion starts. For example, setting it to `20` will make the first
|
|
68
|
+
* 20 pixels of the curve invisible.
|
|
69
|
+
*
|
|
70
|
+
* This property is useful for trimming the curve using a fixed distance.
|
|
71
|
+
* If you want to animate the curve appearing on the screen, use {@link start}
|
|
72
|
+
* instead.
|
|
73
|
+
*/
|
|
74
|
+
readonly startOffset: SimpleSignal<number, this>;
|
|
75
|
+
/**
|
|
76
|
+
* Whether to display an arrow at the start of the visible curve.
|
|
77
|
+
*
|
|
78
|
+
* @remarks
|
|
79
|
+
* Use {@link arrowSize} to control the size of the arrow.
|
|
80
|
+
*/
|
|
81
|
+
readonly startArrow: SimpleSignal<boolean, this>;
|
|
82
|
+
/**
|
|
83
|
+
* A percentage from the start after which the curve should be clipped.
|
|
84
|
+
*
|
|
85
|
+
* @remarks
|
|
86
|
+
* The portion of the curve that comes after the given percentage will be
|
|
87
|
+
* made invisible.
|
|
88
|
+
*
|
|
89
|
+
* This property is usefully for animating the curve appearing on the screen.
|
|
90
|
+
* The value of `0` means the very start of the curve (accounting for the
|
|
91
|
+
* {@link startOffset}) while `1` means the very end (accounting for the
|
|
92
|
+
* {@link endOffset}).
|
|
93
|
+
*/
|
|
94
|
+
readonly end: SimpleSignal<number, this>;
|
|
95
|
+
/**
|
|
96
|
+
* The offset in pixels from the end of the curve.
|
|
97
|
+
*
|
|
98
|
+
* @remarks
|
|
99
|
+
* This property lets you specify where along the defined curve the actual
|
|
100
|
+
* visible portion ends. For example, setting it to `20` will make the last
|
|
101
|
+
* 20 pixels of the curve invisible.
|
|
102
|
+
*
|
|
103
|
+
* This property is useful for trimming the curve using a fixed distance.
|
|
104
|
+
* If you want to animate the curve appearing on the screen, use {@link end}
|
|
105
|
+
* instead.
|
|
106
|
+
*/
|
|
107
|
+
readonly endOffset: SimpleSignal<number, this>;
|
|
108
|
+
/**
|
|
109
|
+
* Whether to display an arrow at the end of the visible curve.
|
|
110
|
+
*
|
|
111
|
+
* @remarks
|
|
112
|
+
* Use {@link arrowSize} to control the size of the arrow.
|
|
113
|
+
*/
|
|
114
|
+
readonly endArrow: SimpleSignal<boolean, this>;
|
|
115
|
+
/**
|
|
116
|
+
* Controls the size of the end and start arrows.
|
|
117
|
+
*
|
|
118
|
+
* @remarks
|
|
119
|
+
* To make the arrows visible make sure to enable {@link startArrow} and/or
|
|
120
|
+
* {@link endArrow}.
|
|
121
|
+
*/
|
|
122
|
+
readonly arrowSize: SimpleSignal<number, this>;
|
|
123
|
+
protected canHaveSubpath: boolean;
|
|
124
|
+
protected desiredSize(): SerializedVector2<DesiredLength>;
|
|
125
|
+
constructor(props: CurveProps);
|
|
126
|
+
protected abstract childrenBBox(): BBox;
|
|
127
|
+
abstract profile(): CurveProfile;
|
|
128
|
+
/**
|
|
129
|
+
* Convert a percentage along the curve to a distance.
|
|
130
|
+
*
|
|
131
|
+
* @remarks
|
|
132
|
+
* The returned distance is given in relation to the full curve, not
|
|
133
|
+
* accounting for {@link startOffset} and {@link endOffset}.
|
|
134
|
+
*
|
|
135
|
+
* @param value - The percentage along the curve.
|
|
136
|
+
*/
|
|
137
|
+
percentageToDistance(value: number): number;
|
|
138
|
+
/**
|
|
139
|
+
* Convert a distance along the curve to a percentage.
|
|
140
|
+
*
|
|
141
|
+
* @remarks
|
|
142
|
+
* The distance should be given in relation to the full curve, not
|
|
143
|
+
* accounting for {@link startOffset} and {@link endOffset}.
|
|
144
|
+
*
|
|
145
|
+
* @param value - The distance along the curve.
|
|
146
|
+
*/
|
|
147
|
+
distanceToPercentage(value: number): number;
|
|
148
|
+
/**
|
|
149
|
+
* The base arc length of this curve.
|
|
150
|
+
*
|
|
151
|
+
* @remarks
|
|
152
|
+
* This is the entire length of this curve, not accounting for
|
|
153
|
+
* {@link startOffset | the offsets}.
|
|
154
|
+
*/
|
|
155
|
+
baseArcLength(): number;
|
|
156
|
+
/**
|
|
157
|
+
* The offset arc length of this curve.
|
|
158
|
+
*
|
|
159
|
+
* @remarks
|
|
160
|
+
* This is the length of the curve that accounts for
|
|
161
|
+
* {@link startOffset | the offsets}.
|
|
162
|
+
*/
|
|
163
|
+
offsetArcLength(): number;
|
|
164
|
+
/**
|
|
165
|
+
* The visible arc length of this curve.
|
|
166
|
+
*
|
|
167
|
+
* @remarks
|
|
168
|
+
* This arc length accounts for both the offset and the {@link start} and
|
|
169
|
+
* {@link end} properties.
|
|
170
|
+
*/
|
|
171
|
+
arcLength(): number;
|
|
172
|
+
/**
|
|
173
|
+
* The percentage of the curve that's currently visible.
|
|
174
|
+
*
|
|
175
|
+
* @remarks
|
|
176
|
+
* The returned value is the ratio between the visible length (as defined by
|
|
177
|
+
* {@link start} and {@link end}) and the offset length of the curve.
|
|
178
|
+
*/
|
|
179
|
+
completion(): number;
|
|
180
|
+
protected processSubpath(_path: Path2D, _startPoint: Vector2 | null, _endPoint: Vector2 | null): void;
|
|
181
|
+
protected curveDrawingInfo(): CurveDrawingInfo;
|
|
182
|
+
protected getPointAtDistance(value: number): CurvePoint;
|
|
183
|
+
getPointAtPercentage(value: number): CurvePoint;
|
|
184
|
+
protected getComputedLayout(): BBox;
|
|
185
|
+
protected offsetComputedLayout(box: BBox): BBox;
|
|
186
|
+
protected getPath(): Path2D;
|
|
187
|
+
protected getCacheBBox(): BBox;
|
|
188
|
+
protected lineWidthCoefficient(): number;
|
|
189
|
+
/**
|
|
190
|
+
* Check if the path requires a profile.
|
|
191
|
+
*
|
|
192
|
+
* @remarks
|
|
193
|
+
* The profile is only required if certain features are used. Otherwise, the
|
|
194
|
+
* profile generation can be skipped, and the curve can be drawn directly
|
|
195
|
+
* using the 2D context.
|
|
196
|
+
*/
|
|
197
|
+
protected requiresProfile(): boolean;
|
|
198
|
+
protected drawShape(context: CanvasRenderingContext2D): void;
|
|
199
|
+
private drawArrows;
|
|
200
|
+
private drawArrow;
|
|
211
201
|
}
|
|
212
|
-
//# sourceMappingURL=Curve.d.ts.map
|
|
202
|
+
//# sourceMappingURL=Curve.d.ts.map
|
package/lib/components/Grid.d.ts
CHANGED
|
@@ -1,23 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
SignalValue,
|
|
4
|
-
SimpleSignal,
|
|
5
|
-
Vector2Signal,
|
|
6
|
-
} from '@revideo/core';
|
|
7
|
-
import {Shape, ShapeProps} from './Shape';
|
|
1
|
+
import { PossibleVector2, SignalValue, SimpleSignal, Vector2Signal } from '@revideo/core';
|
|
2
|
+
import { Shape, ShapeProps } from './Shape';
|
|
8
3
|
export interface GridProps extends ShapeProps {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
4
|
+
/**
|
|
5
|
+
* {@inheritDoc Grid.spacing}
|
|
6
|
+
*/
|
|
7
|
+
spacing?: SignalValue<PossibleVector2>;
|
|
8
|
+
/**
|
|
9
|
+
* {@inheritDoc Grid.start}
|
|
10
|
+
*/
|
|
11
|
+
start?: SignalValue<number>;
|
|
12
|
+
/**
|
|
13
|
+
* {@inheritDoc Grid.end}
|
|
14
|
+
*/
|
|
15
|
+
end?: SignalValue<number>;
|
|
21
16
|
}
|
|
22
17
|
/**
|
|
23
18
|
* A node for drawing a two-dimensional grid.
|
|
@@ -49,32 +44,32 @@ export interface GridProps extends ShapeProps {
|
|
|
49
44
|
* ```
|
|
50
45
|
*/
|
|
51
46
|
export declare class Grid extends Shape {
|
|
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
|
-
|
|
47
|
+
/**
|
|
48
|
+
* The spacing between the grid lines.
|
|
49
|
+
*/
|
|
50
|
+
readonly spacing: Vector2Signal<this>;
|
|
51
|
+
/**
|
|
52
|
+
* The percentage that should be clipped from the beginning of each grid line.
|
|
53
|
+
*
|
|
54
|
+
* @remarks
|
|
55
|
+
* The portion of each grid line that comes before the given percentage will
|
|
56
|
+
* be made invisible.
|
|
57
|
+
*
|
|
58
|
+
* This property is useful for animating the grid appearing on-screen.
|
|
59
|
+
*/
|
|
60
|
+
readonly start: SimpleSignal<number, this>;
|
|
61
|
+
/**
|
|
62
|
+
* The percentage that should be clipped from the end of each grid line.
|
|
63
|
+
*
|
|
64
|
+
* @remarks
|
|
65
|
+
* The portion of each grid line that comes after the given percentage will
|
|
66
|
+
* be made invisible.
|
|
67
|
+
*
|
|
68
|
+
* This property is useful for animating the grid appearing on-screen.
|
|
69
|
+
*/
|
|
70
|
+
readonly end: SimpleSignal<number, this>;
|
|
71
|
+
constructor(props: GridProps);
|
|
72
|
+
protected drawShape(context: CanvasRenderingContext2D): void;
|
|
73
|
+
private mapPoints;
|
|
79
74
|
}
|
|
80
|
-
//# sourceMappingURL=Grid.d.ts.map
|
|
75
|
+
//# sourceMappingURL=Grid.d.ts.map
|
package/lib/components/Icon.d.ts
CHANGED
|
@@ -1,63 +1,58 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
PossibleColor,
|
|
4
|
-
SignalValue,
|
|
5
|
-
SimpleSignal,
|
|
6
|
-
} from '@revideo/core';
|
|
7
|
-
import {Img, ImgProps} from './Img';
|
|
1
|
+
import { ColorSignal, PossibleColor, SignalValue, SimpleSignal } from '@revideo/core';
|
|
2
|
+
import { Img, ImgProps } from './Img';
|
|
8
3
|
export interface IconProps extends ImgProps {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
4
|
+
/**
|
|
5
|
+
* {@inheritDoc Icon.icon}
|
|
6
|
+
*/
|
|
7
|
+
icon: SignalValue<string>;
|
|
8
|
+
/**
|
|
9
|
+
* {@inheritDoc Icon.color}
|
|
10
|
+
*/
|
|
11
|
+
color?: SignalValue<PossibleColor>;
|
|
17
12
|
}
|
|
18
13
|
/**
|
|
19
14
|
* An Icon Component that provides easy access to over 150k icons.
|
|
20
15
|
* See https://icones.js.org/collection/all for all available Icons.
|
|
21
16
|
*/
|
|
22
17
|
export declare class Icon extends Img {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
18
|
+
/**
|
|
19
|
+
* The identifier of the icon.
|
|
20
|
+
*
|
|
21
|
+
* @remarks
|
|
22
|
+
* You can find identifiers on [Icônes](https://icones.js.org).
|
|
23
|
+
* They can look like this:
|
|
24
|
+
* * `mdi:language-typescript`
|
|
25
|
+
* * `ph:anchor-simple-bold`
|
|
26
|
+
* * `ph:activity-bold`
|
|
27
|
+
*/
|
|
28
|
+
icon: SimpleSignal<string, this>;
|
|
29
|
+
/**
|
|
30
|
+
* The color of the icon
|
|
31
|
+
*
|
|
32
|
+
* @remarks
|
|
33
|
+
* Provide the color in one of the following formats:
|
|
34
|
+
* * named color like `red`, `darkgray`, …
|
|
35
|
+
* * hexadecimal string with # like `#bada55`, `#141414`
|
|
36
|
+
* Value can be either RGB or RGBA: `#bada55`, `#bada55aa` (latter is partially transparent)
|
|
37
|
+
* The shorthand version (e.g. `#abc` for `#aabbcc` is also possible.)
|
|
38
|
+
*
|
|
39
|
+
* @defaultValue 'white'
|
|
40
|
+
*/
|
|
41
|
+
color: ColorSignal<this>;
|
|
42
|
+
constructor(props: IconProps);
|
|
43
|
+
/**
|
|
44
|
+
* Create the URL that will be used as the Image source
|
|
45
|
+
* @returns Address to Iconify API for the requested Icon.
|
|
46
|
+
*/
|
|
47
|
+
protected svgUrl(): string;
|
|
48
|
+
/**
|
|
49
|
+
* overrides `Image.src` getter
|
|
50
|
+
*/
|
|
51
|
+
protected getSrc(): string;
|
|
52
|
+
/**
|
|
53
|
+
* overrides `Image.src` setter to warn the user that the value
|
|
54
|
+
* is not used
|
|
55
|
+
*/
|
|
56
|
+
protected setSrc(src: string | null): void;
|
|
62
57
|
}
|
|
63
|
-
//# sourceMappingURL=Icon.d.ts.map
|
|
58
|
+
//# sourceMappingURL=Icon.d.ts.map
|