@revideo/player-react 0.10.1-alpha.1116 → 0.10.2

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.
@@ -0,0 +1,11 @@
1
+ export declare function Controls({ duration, playing, setPlaying, currentTime, setForcedTime, timeDisplayFormat, volume, setVolume, }: {
2
+ duration: number;
3
+ playing: boolean;
4
+ setPlaying: (playing: boolean) => void;
5
+ currentTime: number;
6
+ setForcedTime: (currentTime: number) => void;
7
+ timeDisplayFormat: 'MM:SS' | 'MM:SS.m' | 'MM:SS.mm';
8
+ volume: number;
9
+ setVolume: (volume: number) => void;
10
+ }): import("react/jsx-runtime").JSX.Element;
11
+ //# sourceMappingURL=controls.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"controls.d.ts","sourceRoot":"","sources":["../src/controls.tsx"],"names":[],"mappings":"AAoHA,wBAAgB,QAAQ,CAAC,EACvB,QAAQ,EACR,OAAO,EACP,UAAU,EACV,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,MAAM,EACN,SAAS,GACV,EAAE;IACD,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,iBAAiB,EAAE,OAAO,GAAG,SAAS,GAAG,UAAU,CAAC;IACpD,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC,2CAsBA"}
@@ -0,0 +1,40 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useState } from 'react';
3
+ import { MutedSoundIcon, PauseButton, PlayButton, SoundIcon } from './icons';
4
+ import { getFormattedTime } from './utils';
5
+ function PlayPause({ playing, setPlaying, }) {
6
+ return (_jsx("button", { type: "button", className: "p-1", onClick: () => setPlaying(!playing), children: playing ? _jsx(PauseButton, {}) : _jsx(PlayButton, {}) }));
7
+ }
8
+ function VolumeSlider({ volume, setVolume, }) {
9
+ const [isHovering, setIsHovering] = useState(false);
10
+ const [isInteracting, setIsInteracting] = useState(false);
11
+ const [previousVolume, setPreviousVolume] = useState(1);
12
+ const handleIconClick = () => {
13
+ if (volume > 0) {
14
+ setPreviousVolume(volume);
15
+ setVolume(0);
16
+ }
17
+ else {
18
+ setVolume(previousVolume);
19
+ }
20
+ };
21
+ return (_jsxs("div", { className: "flex items-center space-x-2 relative", onMouseEnter: () => setIsHovering(true), onMouseLeave: () => {
22
+ if (!isInteracting) {
23
+ setIsHovering(false);
24
+ }
25
+ }, children: [_jsx("div", { className: "w-6 h-6 flex items-center justify-center cursor-pointer", onClick: handleIconClick, children: volume === 0 ? _jsx(MutedSoundIcon, {}) : _jsx(SoundIcon, {}) }), (isHovering || isInteracting) && (_jsx("div", { className: "flex items-center h-1.5 whitespace-nowrap", children: _jsxs("div", { className: "relative w-20 h-1.5 bg-gray-300 rounded-full", children: [_jsx("div", { className: "absolute top-0 left-0 h-full bg-gray-100 rounded-full", style: { width: `${volume * 100}%` } }), _jsx("input", { type: "range", min: 0, max: 1, step: 0.01, value: volume, onChange: e => {
26
+ const newVolume = Number(e.target.value);
27
+ setVolume(newVolume);
28
+ if (newVolume > 0) {
29
+ setPreviousVolume(newVolume);
30
+ }
31
+ }, onMouseDown: () => setIsInteracting(true), onMouseUp: () => setIsInteracting(false), onMouseLeave: () => setIsInteracting(false), className: "absolute top-0 left-0 w-full h-full opacity-0 cursor-pointer" })] }) }))] }));
32
+ }
33
+ function Timeline({ currentTime, duration, setCurrentTime, }) {
34
+ const progressPercentage = (currentTime / duration) * 100;
35
+ return (_jsxs("div", { className: "relative flex-1 w-full h-1.5 bg-gray-300 rounded-full overflow-hidden", children: [_jsx("div", { className: "absolute top-0 left-0 h-full bg-gray-100", style: { width: `${progressPercentage}%` } }), _jsx("input", { type: "range", value: currentTime, min: 0, max: duration, step: 0.01, className: "absolute top-0 left-0 w-full h-full opacity-0 cursor-pointer", onChange: event => setCurrentTime(Number(event.target.value)) })] }));
36
+ }
37
+ export function Controls({ duration, playing, setPlaying, currentTime, setForcedTime, timeDisplayFormat, volume, setVolume, }) {
38
+ return (_jsxs("div", { className: "text-white p-4 flex-col space-y-2 bg-gradient-to-t from-gray-500 to-transparent", children: [_jsxs("div", { className: "flex items-center space-x-2", children: [_jsx(PlayPause, { playing: playing, setPlaying: setPlaying }), _jsxs("div", { className: "flex items-center space-x-2", children: [_jsx(VolumeSlider, { volume: volume, setVolume: setVolume }), _jsx("div", { children: _jsx("span", { children: getFormattedTime(currentTime, duration, timeDisplayFormat) }) })] }), _jsx("div", { className: "flex-grow" })] }), _jsx(Timeline, { currentTime: currentTime, duration: duration, setCurrentTime: setForcedTime })] }));
39
+ }
40
+ //# sourceMappingURL=controls.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"controls.js","sourceRoot":"","sources":["../src/controls.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ export declare function PlayButton(): import("react/jsx-runtime").JSX.Element;
2
+ export declare function PauseButton(): import("react/jsx-runtime").JSX.Element;
3
+ export declare function SoundIcon(): import("react/jsx-runtime").JSX.Element;
4
+ export declare function MutedSoundIcon(): import("react/jsx-runtime").JSX.Element;
5
+ //# sourceMappingURL=icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../src/icons.tsx"],"names":[],"mappings":"AAAA,wBAAgB,UAAU,4CAezB;AAED,wBAAgB,WAAW,4CAe1B;AAED,wBAAgB,SAAS,4CAaxB;AAED,wBAAgB,cAAc,4CAa7B"}
package/dist/icons.js ADDED
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export function PlayButton() {
3
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "w-6 h-6", children: _jsx("path", { fillRule: "evenodd", d: "M4.5 5.653c0-1.427 1.529-2.33 2.779-1.643l11.54 6.347c1.295.712 1.295 2.573 0 3.286L7.28 19.99c-1.25.687-2.779-.217-2.779-1.643V5.653Z", clipRule: "evenodd" }) }));
4
+ }
5
+ export function PauseButton() {
6
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "w-6 h-6", children: _jsx("path", { fillRule: "evenodd", d: "M6.75 5.25a.75.75 0 0 1 .75-.75H9a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H7.5a.75.75 0 0 1-.75-.75V5.25Zm7.5 0A.75.75 0 0 1 15 4.5h1.5a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H15a.75.75 0 0 1-.75-.75V5.25Z", clipRule: "evenodd" }) }));
7
+ }
8
+ export function SoundIcon() {
9
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "p-w-6 p-h-6", children: [_jsx("path", { d: "M18.36,19.36a1,1,0,0,1-.7-.29,1,1,0,0,1,0-1.41,8,8,0,0,0,0-11.32,1,1,0,0,1,1.41-1.41,10,10,0,0,1,0,14.14A1,1,0,0,1,18.36,19.36Z" }), _jsx("path", { d: "M15.54,16.54a1,1,0,0,1-.71-.3,1,1,0,0,1,0-1.41,4,4,0,0,0,0-5.66,1,1,0,0,1,1.41-1.41,6,6,0,0,1,0,8.48A1,1,0,0,1,15.54,16.54Z" }), _jsx("path", { d: "M11.38,4.08a1,1,0,0,0-1.09.21L6.59,8H4a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2H6.59l3.7,3.71A1,1,0,0,0,11,20a.84.84,0,0,0,.38-.08A1,1,0,0,0,12,19V5A1,1,0,0,0,11.38,4.08Z" })] }));
10
+ }
11
+ export function MutedSoundIcon() {
12
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "p-w-6 p-h-6", children: [_jsx("path", { d: "M11.38,4.08a1,1,0,0,0-1.09.21L6.59,8H4a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2H6.59l3.7,3.71A1,1,0,0,0,11,20a.84.84,0,0,0,.38-.08A1,1,0,0,0,12,19V5A1,1,0,0,0,11.38,4.08Z" }), _jsx("path", { d: "M16,15.5a1,1,0,0,1-.71-.29,1,1,0,0,1,0-1.42l5-5a1,1,0,0,1,1.42,1.42l-5,5A1,1,0,0,1,16,15.5Z" }), _jsx("path", { d: "M21,15.5a1,1,0,0,1-.71-.29l-5-5a1,1,0,0,1,1.42-1.42l5,5a1,1,0,0,1,0,1.42A1,1,0,0,1,21,15.5Z" })] }));
13
+ }
14
+ //# sourceMappingURL=icons.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icons.js","sourceRoot":"","sources":["../src/icons.tsx"],"names":[],"mappings":";AAAA,MAAM,UAAU,UAAU;IACxB,OAAO,CACL,cACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,SAAS,YAEnB,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,wIAAwI,EAC1I,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,WAAW;IACzB,OAAO,CACL,cACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,SAAS,YAEnB,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,wNAAwN,EAC1N,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,SAAS;IACvB,OAAO,CACL,eACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,aAAa,aAEvB,eAAM,CAAC,EAAC,iIAAiI,GAAG,EAC5I,eAAM,CAAC,EAAC,6HAA6H,GAAG,EACxI,eAAM,CAAC,EAAC,iKAAiK,GAAG,IACxK,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,cAAc;IAC5B,OAAO,CACL,eACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,cAAc,EACnB,SAAS,EAAC,aAAa,aAEvB,eAAM,CAAC,EAAC,iKAAiK,GAAG,EAC5K,eAAM,CAAC,EAAC,6FAA6F,GAAG,EACxG,eAAM,CAAC,EAAC,6FAA6F,GAAG,IACpG,CACP,CAAC;AACJ,CAAC"}
package/dist/index.css CHANGED
@@ -1,507 +1,2 @@
1
- /* src/index.css */
2
- .revideo-player-root {
3
- *,
4
- :after,
5
- :before {
6
- --tw-border-spacing-x:0;
7
- --tw-border-spacing-y:0;
8
- --tw-translate-x:0;
9
- --tw-translate-y:0;
10
- --tw-rotate:0;
11
- --tw-skew-x:0;
12
- --tw-skew-y:0;
13
- --tw-scale-x:1;
14
- --tw-scale-y:1;
15
- --tw-pan-x: ;
16
- --tw-pan-y: ;
17
- --tw-pinch-zoom: ;
18
- --tw-scroll-snap-strictness:proximity;
19
- --tw-gradient-from-position: ;
20
- --tw-gradient-via-position: ;
21
- --tw-gradient-to-position: ;
22
- --tw-ordinal: ;
23
- --tw-slashed-zero: ;
24
- --tw-numeric-figure: ;
25
- --tw-numeric-spacing: ;
26
- --tw-numeric-fraction: ;
27
- --tw-ring-inset: ;
28
- --tw-ring-offset-width:0px;
29
- --tw-ring-offset-color:#fff;
30
- --tw-ring-color:rgba(59,130,246,.5);
31
- --tw-ring-offset-shadow:0 0 #0000;
32
- --tw-ring-shadow:0 0 #0000;
33
- --tw-shadow:0 0 #0000;
34
- --tw-shadow-colored:0 0 #0000;
35
- --tw-blur: ;
36
- --tw-brightness: ;
37
- --tw-contrast: ;
38
- --tw-grayscale: ;
39
- --tw-hue-rotate: ;
40
- --tw-invert: ;
41
- --tw-saturate: ;
42
- --tw-sepia: ;
43
- --tw-drop-shadow: ;
44
- --tw-backdrop-blur: ;
45
- --tw-backdrop-brightness: ;
46
- --tw-backdrop-contrast: ;
47
- --tw-backdrop-grayscale: ;
48
- --tw-backdrop-hue-rotate: ;
49
- --tw-backdrop-invert: ;
50
- --tw-backdrop-opacity: ;
51
- --tw-backdrop-saturate: ;
52
- --tw-backdrop-sepia: ;
53
- --tw-contain-size: ;
54
- --tw-contain-layout: ;
55
- --tw-contain-paint: ;
56
- --tw-contain-style: ;
57
- }
58
- ::backdrop {
59
- --tw-border-spacing-x:0;
60
- --tw-border-spacing-y:0;
61
- --tw-translate-x:0;
62
- --tw-translate-y:0;
63
- --tw-rotate:0;
64
- --tw-skew-x:0;
65
- --tw-skew-y:0;
66
- --tw-scale-x:1;
67
- --tw-scale-y:1;
68
- --tw-pan-x: ;
69
- --tw-pan-y: ;
70
- --tw-pinch-zoom: ;
71
- --tw-scroll-snap-strictness:proximity;
72
- --tw-gradient-from-position: ;
73
- --tw-gradient-via-position: ;
74
- --tw-gradient-to-position: ;
75
- --tw-ordinal: ;
76
- --tw-slashed-zero: ;
77
- --tw-numeric-figure: ;
78
- --tw-numeric-spacing: ;
79
- --tw-numeric-fraction: ;
80
- --tw-ring-inset: ;
81
- --tw-ring-offset-width:0px;
82
- --tw-ring-offset-color:#fff;
83
- --tw-ring-color:rgba(59,130,246,.5);
84
- --tw-ring-offset-shadow:0 0 #0000;
85
- --tw-ring-shadow:0 0 #0000;
86
- --tw-shadow:0 0 #0000;
87
- --tw-shadow-colored:0 0 #0000;
88
- --tw-blur: ;
89
- --tw-brightness: ;
90
- --tw-contrast: ;
91
- --tw-grayscale: ;
92
- --tw-hue-rotate: ;
93
- --tw-invert: ;
94
- --tw-saturate: ;
95
- --tw-sepia: ;
96
- --tw-drop-shadow: ;
97
- --tw-backdrop-blur: ;
98
- --tw-backdrop-brightness: ;
99
- --tw-backdrop-contrast: ;
100
- --tw-backdrop-grayscale: ;
101
- --tw-backdrop-hue-rotate: ;
102
- --tw-backdrop-invert: ;
103
- --tw-backdrop-opacity: ;
104
- --tw-backdrop-saturate: ;
105
- --tw-backdrop-sepia: ;
106
- --tw-contain-size: ;
107
- --tw-contain-layout: ;
108
- --tw-contain-paint: ;
109
- --tw-contain-style: ;
110
- }
111
- *,
112
- :after,
113
- :before {
114
- border: 0 solid #e5e5e5;
115
- box-sizing: border-box;
116
- }
117
- :after,
118
- :before {
119
- --tw-content:"";
120
- }
121
- :host,
122
- html {
123
- line-height: 1.5;
124
- -webkit-text-size-adjust: 100%;
125
- font-family:
126
- ui-sans-serif,
127
- system-ui,
128
- sans-serif,
129
- Apple Color Emoji,
130
- Segoe UI Emoji,
131
- Segoe UI Symbol,
132
- Noto Color Emoji;
133
- font-feature-settings: normal;
134
- font-variation-settings: normal;
135
- -moz-tab-size: 4;
136
- -o-tab-size: 4;
137
- tab-size: 4;
138
- -webkit-tap-highlight-color: transparent;
139
- }
140
- body {
141
- line-height: inherit;
142
- margin: 0;
143
- }
144
- hr {
145
- border-top-width: 1px;
146
- color: inherit;
147
- height: 0;
148
- }
149
- abbr:where([title]) {
150
- -webkit-text-decoration: underline dotted;
151
- text-decoration: underline dotted;
152
- }
153
- h1,
154
- h2,
155
- h3,
156
- h4,
157
- h5,
158
- h6 {
159
- font-size: inherit;
160
- font-weight: inherit;
161
- }
162
- a {
163
- color: inherit;
164
- text-decoration: inherit;
165
- }
166
- b,
167
- strong {
168
- font-weight: bolder;
169
- }
170
- code,
171
- kbd,
172
- pre,
173
- samp {
174
- font-family:
175
- ui-monospace,
176
- SFMono-Regular,
177
- Menlo,
178
- Monaco,
179
- Consolas,
180
- Liberation Mono,
181
- Courier New,
182
- monospace;
183
- font-feature-settings: normal;
184
- font-size: 1em;
185
- font-variation-settings: normal;
186
- }
187
- small {
188
- font-size: 80%;
189
- }
190
- sub,
191
- sup {
192
- font-size: 75%;
193
- line-height: 0;
194
- position: relative;
195
- vertical-align: baseline;
196
- }
197
- sub {
198
- bottom: -.25em;
199
- }
200
- sup {
201
- top: -.5em;
202
- }
203
- table {
204
- border-collapse: collapse;
205
- border-color: inherit;
206
- text-indent: 0;
207
- }
208
- button,
209
- input,
210
- optgroup,
211
- select,
212
- textarea {
213
- color: inherit;
214
- font-family: inherit;
215
- font-feature-settings: inherit;
216
- font-size: 100%;
217
- font-variation-settings: inherit;
218
- font-weight: inherit;
219
- letter-spacing: inherit;
220
- line-height: inherit;
221
- margin: 0;
222
- padding: 0;
223
- }
224
- button,
225
- select {
226
- text-transform: none;
227
- }
228
- button,
229
- input:where([type=button]),
230
- input:where([type=reset]),
231
- input:where([type=submit]) {
232
- -webkit-appearance: button;
233
- background-color: transparent;
234
- background-image: none;
235
- }
236
- :-moz-focusring {
237
- outline: auto;
238
- }
239
- :-moz-ui-invalid {
240
- box-shadow: none;
241
- }
242
- progress {
243
- vertical-align: baseline;
244
- }
245
- ::-webkit-inner-spin-button,
246
- ::-webkit-outer-spin-button {
247
- height: auto;
248
- }
249
- [type=search] {
250
- -webkit-appearance: textfield;
251
- outline-offset: -2px;
252
- }
253
- ::-webkit-search-decoration {
254
- -webkit-appearance: none;
255
- }
256
- ::-webkit-file-upload-button {
257
- -webkit-appearance: button;
258
- font: inherit;
259
- }
260
- summary {
261
- display: list-item;
262
- }
263
- blockquote,
264
- dd,
265
- dl,
266
- figure,
267
- h1,
268
- h2,
269
- h3,
270
- h4,
271
- h5,
272
- h6,
273
- hr,
274
- p,
275
- pre {
276
- margin: 0;
277
- }
278
- fieldset {
279
- margin: 0;
280
- }
281
- fieldset,
282
- legend {
283
- padding: 0;
284
- }
285
- menu,
286
- ol,
287
- ul {
288
- list-style: none;
289
- margin: 0;
290
- padding: 0;
291
- }
292
- dialog {
293
- padding: 0;
294
- }
295
- textarea {
296
- resize: vertical;
297
- }
298
- input::-moz-placeholder,
299
- textarea::-moz-placeholder {
300
- color: #acacac;
301
- opacity: 1;
302
- }
303
- input::placeholder,
304
- textarea::placeholder {
305
- color: #acacac;
306
- opacity: 1;
307
- }
308
- [role=button],
309
- button {
310
- cursor: pointer;
311
- }
312
- :disabled {
313
- cursor: default;
314
- }
315
- audio,
316
- canvas,
317
- embed,
318
- iframe,
319
- img,
320
- object,
321
- svg,
322
- video {
323
- display: block;
324
- vertical-align: middle;
325
- }
326
- img,
327
- video {
328
- height: auto;
329
- max-width: 100%;
330
- }
331
- [hidden] {
332
- display: none;
333
- }
334
- }
335
- .revideo-player-root .static {
336
- position: static;
337
- }
338
- .revideo-player-root .absolute {
339
- position: absolute;
340
- }
341
- .revideo-player-root .relative {
342
- position: relative;
343
- }
344
- .revideo-player-root .bottom-0 {
345
- bottom: 0;
346
- }
347
- .revideo-player-root .left-0 {
348
- left: 0;
349
- }
350
- .revideo-player-root .top-0 {
351
- top: 0;
352
- }
353
- .revideo-player-root .block {
354
- display: block;
355
- }
356
- .revideo-player-root .flex {
357
- display: flex;
358
- }
359
- .revideo-player-root .contents {
360
- display: contents;
361
- }
362
- .revideo-player-root .h-1\.5 {
363
- height: .375rem;
364
- }
365
- .revideo-player-root .h-6 {
366
- height: 1.5rem;
367
- }
368
- .revideo-player-root .h-full {
369
- height: 100%;
370
- }
371
- .revideo-player-root .w-20 {
372
- width: 5rem;
373
- }
374
- .revideo-player-root .w-6 {
375
- width: 1.5rem;
376
- }
377
- .revideo-player-root .w-full {
378
- width: 100%;
379
- }
380
- .revideo-player-root .flex-1 {
381
- flex: 1 1 0%;
382
- }
383
- .revideo-player-root .flex-grow {
384
- flex-grow: 1;
385
- }
386
- .revideo-player-root .cursor-default {
387
- cursor: default;
388
- }
389
- .revideo-player-root .cursor-pointer {
390
- cursor: pointer;
391
- }
392
- .revideo-player-root .flex-col {
393
- flex-direction: column;
394
- }
395
- .revideo-player-root .items-center {
396
- align-items: center;
397
- }
398
- .revideo-player-root .justify-center {
399
- justify-content: center;
400
- }
401
- .revideo-player-root :is(.space-x-2 > :not([hidden]) ~ :not([hidden])) {
402
- --tw-space-x-reverse:0;
403
- margin-left: calc(.5rem*(1 - var(--tw-space-x-reverse)));
404
- margin-right: calc(.5rem*var(--tw-space-x-reverse));
405
- }
406
- .revideo-player-root :is(.space-y-2 > :not([hidden]) ~ :not([hidden])) {
407
- --tw-space-y-reverse:0;
408
- margin-bottom: calc(.5rem*var(--tw-space-y-reverse));
409
- margin-top: calc(.5rem*(1 - var(--tw-space-y-reverse)));
410
- }
411
- .revideo-player-root .overflow-hidden {
412
- overflow: hidden;
413
- }
414
- .revideo-player-root .whitespace-nowrap {
415
- white-space: nowrap;
416
- }
417
- .revideo-player-root .rounded-full {
418
- border-radius: 9999px;
419
- }
420
- .revideo-player-root .bg-gray-100 {
421
- --tw-bg-opacity:1;
422
- background-color: rgb(243 243 243/var(--tw-bg-opacity));
423
- }
424
- .revideo-player-root .bg-gray-300 {
425
- --tw-bg-opacity:1;
426
- background-color: rgb(199 199 199/var(--tw-bg-opacity));
427
- }
428
- .revideo-player-root .bg-gradient-to-t {
429
- background-image: linear-gradient(to top, var(--tw-gradient-stops));
430
- }
431
- .revideo-player-root .from-gray-500 {
432
- --tw-gradient-from:grey var(--tw-gradient-from-position);
433
- --tw-gradient-to:hsla(0,0%,50%,0) var(--tw-gradient-to-position);
434
- --tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to);
435
- }
436
- .revideo-player-root .to-transparent {
437
- --tw-gradient-to:transparent var(--tw-gradient-to-position);
438
- }
439
- .revideo-player-root .p-1 {
440
- padding: .25rem;
441
- }
442
- .revideo-player-root .p-4 {
443
- padding: 1rem;
444
- }
445
- .revideo-player-root .text-white {
446
- --tw-text-opacity:1;
447
- color: rgb(255 255 255/var(--tw-text-opacity));
448
- }
449
- .revideo-player-root .opacity-0 {
450
- opacity: 0;
451
- }
452
- .revideo-player-root .opacity-100 {
453
- opacity: 1;
454
- }
455
- .revideo-player-root .transition {
456
- transition-duration: .15s;
457
- transition-property:
458
- color,
459
- background-color,
460
- border-color,
461
- text-decoration-color,
462
- fill,
463
- stroke,
464
- opacity,
465
- box-shadow,
466
- transform,
467
- filter,
468
- -webkit-backdrop-filter;
469
- transition-property:
470
- color,
471
- background-color,
472
- border-color,
473
- text-decoration-color,
474
- fill,
475
- stroke,
476
- opacity,
477
- box-shadow,
478
- transform,
479
- filter,
480
- backdrop-filter;
481
- transition-property:
482
- color,
483
- background-color,
484
- border-color,
485
- text-decoration-color,
486
- fill,
487
- stroke,
488
- opacity,
489
- box-shadow,
490
- transform,
491
- filter,
492
- backdrop-filter,
493
- -webkit-backdrop-filter;
494
- transition-timing-function: cubic-bezier(.4, 0, .2, 1);
495
- }
496
- .revideo-player-root .transition-opacity {
497
- transition-duration: .15s;
498
- transition-property: opacity;
499
- transition-timing-function: cubic-bezier(.4, 0, .2, 1);
500
- }
501
- .revideo-player-root .duration-200 {
502
- transition-duration: .2s;
503
- }
504
- .revideo-player-root .focus\:outline-none:focus {
505
- outline: 2px solid transparent;
506
- outline-offset: 2px;
507
- }
1
+ .revideo-player-root{*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }
2
+ /*! tailwindcss v3.4.12 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e5e5;box-sizing:border-box}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#acacac;opacity:1}input::placeholder,textarea::placeholder{color:#acacac;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}}.revideo-player-root .static{position:static}.revideo-player-root .absolute{position:absolute}.revideo-player-root .relative{position:relative}.revideo-player-root .bottom-0{bottom:0}.revideo-player-root .left-0{left:0}.revideo-player-root .top-0{top:0}.revideo-player-root .block{display:block}.revideo-player-root .flex{display:flex}.revideo-player-root .contents{display:contents}.revideo-player-root .h-1\.5{height:.375rem}.revideo-player-root .h-6{height:1.5rem}.revideo-player-root .h-full{height:100%}.revideo-player-root .w-20{width:5rem}.revideo-player-root .w-6{width:1.5rem}.revideo-player-root .w-full{width:100%}.revideo-player-root .flex-1{flex:1 1 0%}.revideo-player-root .flex-grow{flex-grow:1}.revideo-player-root .cursor-default{cursor:default}.revideo-player-root .cursor-pointer{cursor:pointer}.revideo-player-root .flex-col{flex-direction:column}.revideo-player-root .items-center{align-items:center}.revideo-player-root .justify-center{justify-content:center}.revideo-player-root :is(.space-x-2>:not([hidden])~:not([hidden])){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.revideo-player-root :is(.space-y-2>:not([hidden])~:not([hidden])){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.revideo-player-root .overflow-hidden{overflow:hidden}.revideo-player-root .whitespace-nowrap{white-space:nowrap}.revideo-player-root .rounded-full{border-radius:9999px}.revideo-player-root .bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 243 243/var(--tw-bg-opacity))}.revideo-player-root .bg-gray-300{--tw-bg-opacity:1;background-color:rgb(199 199 199/var(--tw-bg-opacity))}.revideo-player-root .bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.revideo-player-root .from-gray-500{--tw-gradient-from:grey var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,50%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.revideo-player-root .to-transparent{--tw-gradient-to:transparent var(--tw-gradient-to-position)}.revideo-player-root .p-1{padding:.25rem}.revideo-player-root .p-4{padding:1rem}.revideo-player-root .text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.revideo-player-root .opacity-0{opacity:0}.revideo-player-root .opacity-100{opacity:1}.revideo-player-root .transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.revideo-player-root .transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.revideo-player-root .duration-200{transition-duration:.2s}.revideo-player-root .focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { Project, Player as Player$1 } from '@revideo/core';
2
- import React, { ComponentProps } from 'react';
3
-
1
+ import type { Player as CorePlayer, Project } from '@revideo/core';
2
+ import type { ComponentProps } from 'react';
3
+ import './index.css';
4
4
  interface RevideoPlayerProps {
5
5
  playing?: string;
6
6
  variables?: string;
@@ -33,9 +33,9 @@ interface PlayerProps {
33
33
  timeDisplayFormat?: 'MM:SS' | 'MM:SS.mm' | 'MM:SS.m';
34
34
  onDurationChange?: (duration: number) => void;
35
35
  onTimeUpdate?: (currentTime: number) => void;
36
- onPlayerReady?: (player: Player$1) => void;
36
+ onPlayerReady?: (player: CorePlayer) => void;
37
37
  onPlayerResize?: (rect: DOMRectReadOnly) => void;
38
38
  }
39
- declare function Player({ project, controls, variables, playing, currentTime, volume, looping, fps, width, height, quality, timeDisplayFormat, onDurationChange, onTimeUpdate, onPlayerReady, onPlayerResize, }: PlayerProps): React.JSX.Element;
40
-
41
- export { Player };
39
+ export declare function Player({ project, controls, variables, playing, currentTime, volume, looping, fps, width, height, quality, timeDisplayFormat, onDurationChange, onTimeUpdate, onPlayerReady, onPlayerResize, }: PlayerProps): import("react/jsx-runtime").JSX.Element;
40
+ export {};
41
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAC,MAAM,IAAI,UAAU,EAAE,OAAO,EAAC,MAAM,eAAe,CAAC;AACjE,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,OAAO,CAAC;AAG1C,OAAO,aAAa,CAAC;AAGrB,UAAU,kBAAkB;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,GAAG,CAAC;QACZ,UAAU,iBAAiB;YAEzB,gBAAgB,EAAE,kBAAkB,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC;SAC9D;KACF;CACF;AAED,UAAU,WAAW;IACnB,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAChC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,iBAAiB,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,SAAS,CAAC;IAErD,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,YAAY,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,aAAa,CAAC,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IAC7C,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,eAAe,KAAK,IAAI,CAAC;CAClD;AAED,wBAAgB,MAAM,CAAC,EACrB,OAAO,EACP,QAAe,EACf,SAAc,EACd,OAAe,EACf,WAAe,EACf,MAAU,EACV,OAAc,EACd,GAAQ,EAER,KAAiB,EACjB,MAAkB,EAClB,OAAmB,EACnB,iBAA2B,EAE3B,gBAA2B,EAC3B,YAAuB,EACvB,aAAwB,EACxB,cAAyB,GAC1B,EAAE,WAAW,2CAgMb"}