@videojs/react 0.1.0-preview.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.
- package/LICENSE +20 -0
- package/README.md +28 -0
- package/dist/FrostedSkin-t8edr5LV.d.ts +13 -0
- package/dist/FrostedSkin-t8edr5LV.d.ts.map +1 -0
- package/dist/MinimalSkin-DzHkJgW-.d.ts +13 -0
- package/dist/MinimalSkin-DzHkJgW-.d.ts.map +1 -0
- package/dist/VolumeSlider-DoR6idnJ.js +905 -0
- package/dist/VolumeSlider-DoR6idnJ.js.map +1 -0
- package/dist/frosted-BtDBmsH2.js +163 -0
- package/dist/frosted-BtDBmsH2.js.map +1 -0
- package/dist/icons-BqfV81R8.js +316 -0
- package/dist/icons-BqfV81R8.js.map +1 -0
- package/dist/icons.d.ts +71 -0
- package/dist/icons.d.ts.map +1 -0
- package/dist/icons.js +3 -0
- package/dist/index-BNR1awZq.d.ts +36 -0
- package/dist/index-BNR1awZq.d.ts.map +1 -0
- package/dist/index.d.ts +341 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +87 -0
- package/dist/index.js.map +1 -0
- package/dist/minimal-DE2x_liR.js +167 -0
- package/dist/minimal-DE2x_liR.js.map +1 -0
- package/dist/skins/frosted.css +4 -0
- package/dist/skins/frosted.d.ts +2 -0
- package/dist/skins/frosted.js +6 -0
- package/dist/skins/minimal.css +4 -0
- package/dist/skins/minimal.d.ts +2 -0
- package/dist/skins/minimal.js +6 -0
- package/dist/store-DpQF8Ges.js +124 -0
- package/dist/store-DpQF8Ges.js.map +1 -0
- package/dist/store.d.ts +2 -0
- package/dist/store.js +3 -0
- package/package.json +79 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright 2025-present Video.js contributors
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
|
14
|
+
|
|
15
|
+
------------------------------------------------------------------
|
|
16
|
+
|
|
17
|
+
Trademark Notice:
|
|
18
|
+
“Video.js” is a registered trademark of Brightcove Inc.
|
|
19
|
+
The project is maintained independently by the open-source community,
|
|
20
|
+
governed by the Video.js Technical Steering Committee.
|
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @videojs/react
|
|
2
|
+
|
|
3
|
+
[![package-badge]][package]
|
|
4
|
+
|
|
5
|
+
> **⚠️ Technical Preview - SUBJECT TO CHANGE** Not recommended for production use.
|
|
6
|
+
|
|
7
|
+
## Overview
|
|
8
|
+
|
|
9
|
+
`@videojs/react` is a comprehensive library for building media players in React applications. It
|
|
10
|
+
provides a complete set of components, hooks, and utilities for creating feature-rich, accessible
|
|
11
|
+
video and audio players with React.
|
|
12
|
+
|
|
13
|
+
## Community
|
|
14
|
+
|
|
15
|
+
If you need help with anything related to Video.js 10, or if you'd like to casually chat with other
|
|
16
|
+
members:
|
|
17
|
+
|
|
18
|
+
- [Join Discord Server][discord]
|
|
19
|
+
- [See GitHub Discussions][gh-discussions]
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
[Apache-2.0](./LICENSE)
|
|
24
|
+
|
|
25
|
+
[package]: https://www.npmjs.com/package/@videojs/react
|
|
26
|
+
[package-badge]: https://img.shields.io/npm/v/%40videojs%2Freact%40next
|
|
27
|
+
[discord]: https://discord.gg/b664Gq3pdy
|
|
28
|
+
[gh-discussions]: https://github.com/muxinc/vjs-10-monorepo/discussions
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PropsWithChildren } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/skins/frosted/FrostedSkin.d.ts
|
|
4
|
+
type SkinProps = PropsWithChildren<{
|
|
5
|
+
className?: string;
|
|
6
|
+
}>;
|
|
7
|
+
declare function FrostedSkin({
|
|
8
|
+
children,
|
|
9
|
+
className
|
|
10
|
+
}: SkinProps): JSX.Element;
|
|
11
|
+
//#endregion
|
|
12
|
+
export { FrostedSkin as t };
|
|
13
|
+
//# sourceMappingURL=FrostedSkin-t8edr5LV.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FrostedSkin-t8edr5LV.d.ts","names":[],"sources":["../src/skins/frosted/FrostedSkin.tsx"],"sourcesContent":[],"mappings":";;;KAyBK,SAAA,GAAY;;AAzBsB,CAAA,CAAA;AA6Bf,iBAAA,WAAA,CAAA;EAAA,QAAA;EAAA;AAAA,CAAA,EAA0C,SAA1C,CAAA,EAAsD,GAAA,CAAI,OAA1D"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PropsWithChildren } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/skins/minimal/MinimalSkin.d.ts
|
|
4
|
+
type SkinProps = PropsWithChildren<{
|
|
5
|
+
className?: string;
|
|
6
|
+
}>;
|
|
7
|
+
declare function MinimalSkin({
|
|
8
|
+
children,
|
|
9
|
+
className
|
|
10
|
+
}: SkinProps): JSX.Element;
|
|
11
|
+
//#endregion
|
|
12
|
+
export { MinimalSkin as t };
|
|
13
|
+
//# sourceMappingURL=MinimalSkin-DzHkJgW-.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MinimalSkin-DzHkJgW-.d.ts","names":[],"sources":["../src/skins/minimal/MinimalSkin.tsx"],"sourcesContent":[],"mappings":";;;KA0BK,SAAA,GAAY;;AA1BsB,CAAA,CAAA;AA8Bf,iBAAA,WAAA,CAAA;EAAA,QAAA;EAAA;AAAA,CAAA,EAA0C,SAA1C,CAAA,EAAsD,GAAA,CAAI,OAA1D"}
|