vendor: update dependency
parent
1b5282b605
commit
a791e79319
|
@ -79,7 +79,7 @@
|
|||
|
||||
return (
|
||||
<div className={'flex h-dvh w-screen flex-col items-center justify-center'}>
|
||||
<PromogameGame loadingComponent={Loading} className={'h-full w-full'} apiUrl={import.meta.env.VITE_API_URL} />
|
||||
<PromogamePlayer loadingComponent={Loading} className={'h-full w-full'} apiUrl={import.meta.env.VITE_API_URL} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
"dependencies": {
|
||||
"clsx": "^2.1.1",
|
||||
"parse-path": "^7.0.0",
|
||||
"promogame-player": "^0.0.2",
|
||||
"promogame-player": "^0.0.4",
|
||||
"prop-types": "^15.8.1",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
|
|
|
@ -15,8 +15,8 @@ importers:
|
|||
specifier: ^7.0.0
|
||||
version: 7.1.0
|
||||
promogame-player:
|
||||
specifier: ^0.0.2
|
||||
version: 0.0.2(@babel/core@7.27.1)(@types/react@18.3.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
||||
specifier: ^0.0.4
|
||||
version: 0.0.4(@babel/core@7.27.1)(@types/react@18.3.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
||||
prop-types:
|
||||
specifier: ^15.8.1
|
||||
version: 15.8.1
|
||||
|
@ -1500,8 +1500,8 @@ packages:
|
|||
resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
|
||||
engines: {node: '>= 0.8'}
|
||||
|
||||
promogame-player@0.0.2:
|
||||
resolution: {integrity: sha512-FQupqscBvZB4oSKkV+gLV5Msz5sSBv4p7Js6eOs2Y47WQqPpwLbHCFcGxe8tlVYMNrTaqqZ7yTB/KxhjlDrcEA==}
|
||||
promogame-player@0.0.4:
|
||||
resolution: {integrity: sha512-IN3y4HRL7BN/jFezvjoRHNVx553mlj5dmK/WlAzC2CbTutVEmeIsvsJ+6EEabZK2aeHYW7YjYi2xgSTWB3mW+Q==}
|
||||
peerDependencies:
|
||||
react: '*'
|
||||
react-dom: '*'
|
||||
|
@ -3254,7 +3254,7 @@ snapshots:
|
|||
|
||||
pretty-hrtime@1.0.3: {}
|
||||
|
||||
promogame-player@0.0.2(@babel/core@7.27.1)(@types/react@18.3.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
|
||||
promogame-player@0.0.4(@babel/core@7.27.1)(@types/react@18.3.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
|
||||
dependencies:
|
||||
'@apollo/client': 3.13.8(@types/react@18.3.21)(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
||||
'@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import {PromogameGame} from "promogame-player";
|
||||
import {PromogamePlayer} from "promogame-player";
|
||||
|
||||
export default function MainApp() {
|
||||
const Loading = ({ progress }: { progress: number }) => {
|
||||
|
@ -11,7 +11,7 @@ export default function MainApp() {
|
|||
|
||||
return (
|
||||
<div className={'flex h-dvh w-screen flex-col items-center justify-center'}>
|
||||
<PromogameGame loadingComponent={Loading} className={'h-full w-full'} apiUrl={import.meta.env.VITE_API_URL} />
|
||||
<PromogamePlayer loadingComponent={Loading} className={'h-full w-full'} apiUrl={import.meta.env.VITE_API_URL} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue