Tracking de l'application VApp (IHM du jeu)

This commit is contained in:
2025-05-11 18:04:12 +02:00
commit 89e9db9b62
17763 changed files with 3718499 additions and 0 deletions

59
VApp/node_modules/@videojs-player/vue/CHANGELOG.md generated vendored Normal file
View File

@ -0,0 +1,59 @@
# Changelog
All notable changes to this project will be documented in this file.
### v1.0.0 (2022-08-15)
- chore: release v1.0.0
### v1.0.0-beta.5 (2022-08-14)
- fix: video.js types
### v1.0.0-beta.4 (2022-08-07)
- feat: improve `initClassName`
### v1.0.0-beta.3 (2022-08-07)
- feat: `class` will now work from the beginning
### v1.0.0-beta.2 (2022-08-06)
- feat: normalize prop name `playsinline` and `crossorigin`
- fix: prop name confusion `playsInline` > `playsinline`
### v1.0.0-beta.0 (2022-08-06)
- fix: prop `class` type
- fix: player `updateClassNames`
- fix: remove prop `restoreEl` `Element` type
### v0.3.0 (2022-08-05)
- fix: player `dispose` error
- feat: add new event `unmounted`
### v0.2.1 (2022-08-05)
- fix: preprocessing of prop `class`
### v0.1.3 (2022-08-03)
- feat: `state.fullscreen` > `state.isFullscreen`
- feat: add new state `isInPictureInPicture`
- feat: add new state `isLive`
- fix: state `playbackRate`
### v0.1.1 (2022-07-30)
- feat: new prop `disablePictureInPicture`
- feat: new [div ingest](https://videojs.com/guides/embeds/#player-div-ingest) type
### v0.1.0 (2022-07-28)
- feat: full support for the Video.js API
- feat: responsive support for props
- feat: partial prop two-way binding support
- feat: fully customizable control panel
- feat: externally available player states

6
VApp/node_modules/@videojs-player/vue/README.md generated vendored Normal file
View File

@ -0,0 +1,6 @@
# @videojs-player/vue
Video.js player component for Vue.
- [Documentation](https://github.com/surmon-china/videojs-player)
- [Changelog](./CHANGELOG.md)

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

51
VApp/node_modules/@videojs-player/vue/package.json generated vendored Normal file
View File

@ -0,0 +1,51 @@
{
"name": "@videojs-player/vue",
"description": "Video.js component for Vue",
"version": "1.0.0",
"private": false,
"license": "MIT",
"author": "Surmon",
"keywords": [
"vue-video-player",
"vue video player",
"video player",
"vue player",
"vue video"
],
"homepage": "https://github.surmon.me/videojs-player",
"repository": {
"type": "git",
"url": "https://github.com/surmon-china/videojs-player.git",
"directory": "packages/vue"
},
"files": [
"dist",
"CHANGELOG.md"
],
"main": "./dist/videojs-player.cjs.js",
"module": "./dist/videojs-player.esm.js",
"types": "./dist/videojs-player.esm.d.ts",
"exports": {
".": {
"require": "./dist/videojs-player.cjs.js",
"import": "./dist/videojs-player.esm.js",
"types": "./dist/videojs-player.esm.d.ts"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"scripts": {
"dev": "vite",
"build": "libundler"
},
"peerDependencies": {
"@types/video.js": "7.x",
"video.js": "7.x",
"vue": "3.x"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.0.0",
"@vue/test-utils": "^2.0.0",
"vue": "^3.2.31"
}
}