@realsee/vreo 0.2.0-alpha.1 → 0.2.0-alpha.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/README.md +36 -13
- package/docs/assets/custom.css +2 -2
- package/docs/assets/search.js +1 -1
- package/docs/classes/Player.Controller.html +54 -0
- package/docs/classes/Player.Player-1.html +9 -9
- package/docs/classes/Player.VideoAgentMesh.html +142 -0
- package/docs/classes/Player.VideoAgentScene.html +1 -0
- package/docs/enums/Player.InfoPanelTypeEnum.html +1 -1
- package/docs/enums/Player.PanoEffectEnum.html +2 -2
- package/docs/enums/Player.PanoTagEnum.html +1 -1
- package/docs/enums/Player.VreoKeyframeEnum.html +13 -13
- package/docs/enums/fivePlugins.CameraMovementEffect.html +1 -1
- package/docs/enums/fivePlugins.Rotation.html +1 -1
- package/docs/index.html +25 -16
- package/docs/interfaces/Player.CustomVreoKeyframeProps.html +1 -0
- package/docs/interfaces/Player.PlayerConfigs.html +3 -3
- package/docs/interfaces/Player.Vertex.html +1 -1
- package/docs/interfaces/Player.VideoAgentMeshOptions.html +1 -0
- package/docs/interfaces/Player.VreoKeyframe.html +1 -1
- package/docs/interfaces/Player.VreoUnit.html +1 -1
- package/docs/interfaces/Player.VreoVideo.html +1 -1
- package/docs/interfaces/fivePlugins.CameraMovementOptsCallback.html +1 -1
- package/docs/interfaces/fivePlugins.CameraMovementPluginExportType.html +3 -3
- package/docs/interfaces/fivePlugins.CameraMovementPluginParameterType.html +1 -1
- package/docs/interfaces/fivePlugins.ModelTVVideoPluginData.html +1 -1
- package/docs/interfaces/fivePlugins.ModelTVVideoPluginExportType.html +1 -1
- package/docs/interfaces/fivePlugins.ModelTVVideoPluginParameterType.html +1 -1
- package/docs/interfaces/react.VreoActionCallbacks.html +7 -7
- package/docs/interfaces/react.VreoProviderProps.html +1 -0
- package/docs/modules/Player.html +13 -13
- package/docs/modules/custom.html +3 -0
- package/docs/modules/fivePlugins.html +2 -2
- package/docs/modules/react.html +1 -1
- package/docs/modules.html +1 -1
- package/lib/Player/custom/SpatialScenePanel/index.d.ts +22 -0
- package/lib/Player/custom/SpatialScenePanel/index.js +207 -0
- package/lib/Player/index.js +17 -1
- package/lib/Player/modules/keyframes/InfoPanel/index.js +31 -21
- package/lib/Player/typings.d.ts +9 -2
- package/lib/react/index.d.ts +5 -1
- package/lib/react/index.js +1 -1
- package/lib/typings/VreoUnit.d.ts +2 -1
- package/package.json +2 -1
- package/resources/Player/App.tsx +1 -1
- package/resources/Player/custom/SpatialScenePanel/index.tsx +161 -0
- package/resources/Player/index.tsx +13 -1
- package/resources/Player/modules/keyframes/InfoPanel/index.tsx +41 -19
- package/resources/Player/typings.ts +12 -2
- package/resources/react/index.tsx +7 -2
- package/resources/typings/VreoUnit.ts +10 -2
- package/stylesheets/custom/SpatialScenePanel.css +303 -0
- package/stylesheets/default.css +11 -0
package/stylesheets/default.css
CHANGED
|
@@ -485,6 +485,13 @@
|
|
|
485
485
|
display: block;
|
|
486
486
|
}
|
|
487
487
|
|
|
488
|
+
.vreo-infoPanelWrapper {
|
|
489
|
+
flex: 1;
|
|
490
|
+
display: flex;
|
|
491
|
+
justify-content: center;
|
|
492
|
+
align-items: center;
|
|
493
|
+
}
|
|
494
|
+
|
|
488
495
|
.vreo-infoPanel {
|
|
489
496
|
width: 100%;
|
|
490
497
|
height: 100%;
|
|
@@ -532,6 +539,10 @@
|
|
|
532
539
|
background-position: center center;
|
|
533
540
|
}
|
|
534
541
|
|
|
542
|
+
.vreo-infoPanelVideo {
|
|
543
|
+
max-width: 412px;
|
|
544
|
+
}
|
|
545
|
+
|
|
535
546
|
.vreo-panel--hidden .vreo-panel-inner {
|
|
536
547
|
opacity: 0;
|
|
537
548
|
transition: opacity 0.45s;
|