@alirezahosseini/sibtorsh-player 0.1.12 → 0.1.14

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.
@@ -1,3 +1,4 @@
1
1
  import VideoPlayerInterface from "./interfaces/VideoPlayerInterface";
2
+ import "./styles/video-player.css";
2
3
  declare function VideoPlayer({ src, reverseSrc, poster, keySrc, onPlay, onPause }: VideoPlayerInterface): import("react/jsx-runtime").JSX.Element;
3
4
  export default VideoPlayer;
package/dist/index.d.ts CHANGED
@@ -1,6 +1,5 @@
1
+ export { default } from './VideoPlayer';
1
2
  export { default as VideoPlayer } from './VideoPlayer';
2
3
  export type { default as VideoPlayerInterface } from './interfaces/VideoPlayerInterface';
3
4
  export { default as VideoPlayerControl } from './components/VideoPlayerControl';
4
5
  export type { VideoPlayerControlInterface } from './interfaces/VideoPlayerControlInterface';
5
- import VideoPlayer from "./VideoPlayer.tsx";
6
- export default VideoPlayer;
@@ -0,0 +1 @@
1
+ .fullscreen-safari{position:absolute;background-color:#000;display:flex;justify-content:center;inset:0;z-index:999}
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.12",
6
+ "version": "0.1.14",
7
7
  "type": "module",
8
8
  "types": "dist/index.d.ts",
9
9
  "main": "dist/sibtorsh-player.umd.js",
@@ -26,8 +26,6 @@
26
26
  "hls.js": "^1.6.15",
27
27
  "lodash": "^4.17.21",
28
28
  "moment-jalaali": "^0.10.4",
29
- "react": "^19.2.0",
30
- "react-dom": "^19.2.0",
31
29
  "react-transition-group": "^4.4.5",
32
30
  "ua-parser-js": "^2.0.7"
33
31
  },