@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.
Files changed (52) hide show
  1. package/README.md +36 -13
  2. package/docs/assets/custom.css +2 -2
  3. package/docs/assets/search.js +1 -1
  4. package/docs/classes/Player.Controller.html +54 -0
  5. package/docs/classes/Player.Player-1.html +9 -9
  6. package/docs/classes/Player.VideoAgentMesh.html +142 -0
  7. package/docs/classes/Player.VideoAgentScene.html +1 -0
  8. package/docs/enums/Player.InfoPanelTypeEnum.html +1 -1
  9. package/docs/enums/Player.PanoEffectEnum.html +2 -2
  10. package/docs/enums/Player.PanoTagEnum.html +1 -1
  11. package/docs/enums/Player.VreoKeyframeEnum.html +13 -13
  12. package/docs/enums/fivePlugins.CameraMovementEffect.html +1 -1
  13. package/docs/enums/fivePlugins.Rotation.html +1 -1
  14. package/docs/index.html +25 -16
  15. package/docs/interfaces/Player.CustomVreoKeyframeProps.html +1 -0
  16. package/docs/interfaces/Player.PlayerConfigs.html +3 -3
  17. package/docs/interfaces/Player.Vertex.html +1 -1
  18. package/docs/interfaces/Player.VideoAgentMeshOptions.html +1 -0
  19. package/docs/interfaces/Player.VreoKeyframe.html +1 -1
  20. package/docs/interfaces/Player.VreoUnit.html +1 -1
  21. package/docs/interfaces/Player.VreoVideo.html +1 -1
  22. package/docs/interfaces/fivePlugins.CameraMovementOptsCallback.html +1 -1
  23. package/docs/interfaces/fivePlugins.CameraMovementPluginExportType.html +3 -3
  24. package/docs/interfaces/fivePlugins.CameraMovementPluginParameterType.html +1 -1
  25. package/docs/interfaces/fivePlugins.ModelTVVideoPluginData.html +1 -1
  26. package/docs/interfaces/fivePlugins.ModelTVVideoPluginExportType.html +1 -1
  27. package/docs/interfaces/fivePlugins.ModelTVVideoPluginParameterType.html +1 -1
  28. package/docs/interfaces/react.VreoActionCallbacks.html +7 -7
  29. package/docs/interfaces/react.VreoProviderProps.html +1 -0
  30. package/docs/modules/Player.html +13 -13
  31. package/docs/modules/custom.html +3 -0
  32. package/docs/modules/fivePlugins.html +2 -2
  33. package/docs/modules/react.html +1 -1
  34. package/docs/modules.html +1 -1
  35. package/lib/Player/custom/SpatialScenePanel/index.d.ts +22 -0
  36. package/lib/Player/custom/SpatialScenePanel/index.js +207 -0
  37. package/lib/Player/index.js +17 -1
  38. package/lib/Player/modules/keyframes/InfoPanel/index.js +31 -21
  39. package/lib/Player/typings.d.ts +9 -2
  40. package/lib/react/index.d.ts +5 -1
  41. package/lib/react/index.js +1 -1
  42. package/lib/typings/VreoUnit.d.ts +2 -1
  43. package/package.json +2 -1
  44. package/resources/Player/App.tsx +1 -1
  45. package/resources/Player/custom/SpatialScenePanel/index.tsx +161 -0
  46. package/resources/Player/index.tsx +13 -1
  47. package/resources/Player/modules/keyframes/InfoPanel/index.tsx +41 -19
  48. package/resources/Player/typings.ts +12 -2
  49. package/resources/react/index.tsx +7 -2
  50. package/resources/typings/VreoUnit.ts +10 -2
  51. package/stylesheets/custom/SpatialScenePanel.css +303 -0
  52. package/stylesheets/default.css +11 -0
@@ -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;