@reactvision/react-viro 2.42.0 → 2.43.1

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 (475) hide show
  1. package/README.md +12 -6
  2. package/android/react_viro/react_viro-release.aar +0 -0
  3. package/components/AR/ViroARPlaneSelector.tsx +76 -37
  4. package/components/Utilities/ViroVersion.ts +1 -1
  5. package/dist/components/AR/ViroARPlaneSelector.d.ts +1 -1
  6. package/dist/components/AR/ViroARPlaneSelector.js +46 -18
  7. package/dist/components/Utilities/ViroVersion.d.ts +1 -1
  8. package/dist/components/Utilities/ViroVersion.js +1 -1
  9. package/dist/dynamic-index.d.ts +11 -0
  10. package/dist/dynamic-index.js +28 -0
  11. package/dist/examples/AutoDetectionExample.d.ts +10 -0
  12. package/dist/examples/AutoDetectionExample.js +91 -0
  13. package/dist/fabric-interop/NativeViro.d.ts +42 -0
  14. package/dist/fabric-interop/NativeViro.js +262 -0
  15. package/dist/fabric-interop/ViroEventsManager.d.ts +83 -0
  16. package/dist/fabric-interop/ViroEventsManager.js +222 -0
  17. package/dist/fabric-interop/ViroFabricContainer.d.ts +34 -0
  18. package/dist/fabric-interop/ViroFabricContainer.js +200 -0
  19. package/dist/fabric-interop/android/src/main/js/specs/ViroFabricContainerViewNativeComponent.d.ts +35 -0
  20. package/dist/fabric-interop/android/src/main/js/specs/ViroFabricContainerViewNativeComponent.js +20 -0
  21. package/dist/fabric-interop/components/AR/ViroARPlane.d.ts +22 -0
  22. package/dist/fabric-interop/components/AR/ViroARPlane.js +95 -0
  23. package/dist/fabric-interop/components/AR/ViroARPlaneSelector.d.ts +43 -0
  24. package/dist/fabric-interop/components/AR/ViroARPlaneSelector.js +152 -0
  25. package/dist/fabric-interop/components/AR/ViroARTrackingTargets.d.ts +55 -0
  26. package/dist/fabric-interop/components/AR/ViroARTrackingTargets.js +85 -0
  27. package/dist/fabric-interop/components/AR/ViroCommonProps.d.ts +91 -0
  28. package/dist/fabric-interop/components/AR/ViroCommonProps.js +7 -0
  29. package/dist/fabric-interop/components/Animation/ViroAnimations.d.ts +48 -0
  30. package/dist/fabric-interop/components/Animation/ViroAnimations.js +64 -0
  31. package/dist/fabric-interop/components/Material/ViroMaterials.d.ts +66 -0
  32. package/dist/fabric-interop/components/Material/ViroMaterials.js +85 -0
  33. package/dist/fabric-interop/components/Types/ViroEvents.d.ts +202 -0
  34. package/dist/fabric-interop/components/Types/ViroEvents.js +53 -0
  35. package/dist/fabric-interop/components/Types/ViroUtils.d.ts +137 -0
  36. package/dist/fabric-interop/components/Types/ViroUtils.js +7 -0
  37. package/dist/fabric-interop/components/Viro360Image.d.ts +23 -0
  38. package/dist/fabric-interop/components/Viro360Image.js +45 -0
  39. package/dist/fabric-interop/components/Viro360Video.d.ts +29 -0
  40. package/dist/fabric-interop/components/Viro360Video.js +47 -0
  41. package/dist/fabric-interop/components/Viro3DObject.d.ts +60 -0
  42. package/dist/fabric-interop/components/Viro3DObject.js +49 -0
  43. package/dist/fabric-interop/components/Viro3DSceneNavigator.d.ts +49 -0
  44. package/dist/fabric-interop/components/Viro3DSceneNavigator.js +388 -0
  45. package/dist/fabric-interop/components/ViroARCamera.d.ts +29 -0
  46. package/dist/fabric-interop/components/ViroARCamera.js +64 -0
  47. package/dist/fabric-interop/components/ViroARImageMarker.d.ts +21 -0
  48. package/dist/fabric-interop/components/ViroARImageMarker.js +71 -0
  49. package/dist/fabric-interop/components/ViroARObjectMarker.d.ts +21 -0
  50. package/dist/fabric-interop/components/ViroARObjectMarker.js +71 -0
  51. package/dist/fabric-interop/components/ViroARPlane.d.ts +24 -0
  52. package/dist/fabric-interop/components/ViroARPlane.js +88 -0
  53. package/dist/fabric-interop/components/ViroARScene.d.ts +29 -0
  54. package/dist/fabric-interop/components/ViroARScene.js +89 -0
  55. package/dist/fabric-interop/components/ViroARSceneNavigator.d.ts +29 -0
  56. package/dist/fabric-interop/components/ViroARSceneNavigator.js +76 -0
  57. package/dist/fabric-interop/components/ViroAmbientLight.d.ts +19 -0
  58. package/dist/fabric-interop/components/ViroAmbientLight.js +46 -0
  59. package/dist/fabric-interop/components/ViroAnimatedComponent.d.ts +24 -0
  60. package/dist/fabric-interop/components/ViroAnimatedComponent.js +63 -0
  61. package/dist/fabric-interop/components/ViroAnimatedImage.d.ts +28 -0
  62. package/dist/fabric-interop/components/ViroAnimatedImage.js +49 -0
  63. package/dist/fabric-interop/components/ViroBox.d.ts +20 -0
  64. package/dist/fabric-interop/components/ViroBox.js +47 -0
  65. package/dist/fabric-interop/components/ViroButton.d.ts +32 -0
  66. package/dist/fabric-interop/components/ViroButton.js +92 -0
  67. package/dist/fabric-interop/components/ViroCamera.d.ts +17 -0
  68. package/dist/fabric-interop/components/ViroCamera.js +30 -0
  69. package/dist/fabric-interop/components/ViroController.d.ts +19 -0
  70. package/dist/fabric-interop/components/ViroController.js +64 -0
  71. package/dist/fabric-interop/components/ViroDirectionalLight.d.ts +28 -0
  72. package/dist/fabric-interop/components/ViroDirectionalLight.js +55 -0
  73. package/dist/fabric-interop/components/ViroFlexView.d.ts +36 -0
  74. package/dist/fabric-interop/components/ViroFlexView.js +97 -0
  75. package/dist/fabric-interop/components/ViroGeometry.d.ts +23 -0
  76. package/dist/fabric-interop/components/ViroGeometry.js +50 -0
  77. package/dist/fabric-interop/components/ViroGlobal.d.ts +45 -0
  78. package/dist/fabric-interop/components/ViroGlobal.js +20 -0
  79. package/dist/fabric-interop/components/ViroImage.d.ts +29 -0
  80. package/dist/fabric-interop/components/ViroImage.js +52 -0
  81. package/dist/fabric-interop/components/ViroLightingEnvironment.d.ts +19 -0
  82. package/dist/fabric-interop/components/ViroLightingEnvironment.js +44 -0
  83. package/dist/fabric-interop/components/ViroMaterialVideo.d.ts +30 -0
  84. package/dist/fabric-interop/components/ViroMaterialVideo.js +48 -0
  85. package/dist/fabric-interop/components/ViroNode.d.ts +36 -0
  86. package/dist/fabric-interop/components/ViroNode.js +28 -0
  87. package/dist/fabric-interop/components/ViroOmniLight.d.ts +21 -0
  88. package/dist/fabric-interop/components/ViroOmniLight.js +48 -0
  89. package/dist/fabric-interop/components/ViroOrbitCamera.d.ts +17 -0
  90. package/dist/fabric-interop/components/ViroOrbitCamera.js +30 -0
  91. package/dist/fabric-interop/components/ViroParticleEmitter.d.ts +51 -0
  92. package/dist/fabric-interop/components/ViroParticleEmitter.js +50 -0
  93. package/dist/fabric-interop/components/ViroPolygon.d.ts +20 -0
  94. package/dist/fabric-interop/components/ViroPolygon.js +47 -0
  95. package/dist/fabric-interop/components/ViroPolyline.d.ts +19 -0
  96. package/dist/fabric-interop/components/ViroPolyline.js +46 -0
  97. package/dist/fabric-interop/components/ViroPortal.d.ts +16 -0
  98. package/dist/fabric-interop/components/ViroPortal.js +73 -0
  99. package/dist/fabric-interop/components/ViroPortalScene.d.ts +16 -0
  100. package/dist/fabric-interop/components/ViroPortalScene.js +29 -0
  101. package/dist/fabric-interop/components/ViroQuad.d.ts +39 -0
  102. package/dist/fabric-interop/components/ViroQuad.js +49 -0
  103. package/dist/fabric-interop/components/ViroScene.d.ts +29 -0
  104. package/dist/fabric-interop/components/ViroScene.js +103 -0
  105. package/dist/fabric-interop/components/ViroSceneNavigator.d.ts +23 -0
  106. package/dist/fabric-interop/components/ViroSceneNavigator.js +73 -0
  107. package/dist/fabric-interop/components/ViroSkyBox.d.ts +39 -0
  108. package/dist/fabric-interop/components/ViroSkyBox.js +44 -0
  109. package/dist/fabric-interop/components/ViroSound.d.ts +23 -0
  110. package/dist/fabric-interop/components/ViroSound.js +46 -0
  111. package/dist/fabric-interop/components/ViroSoundField.d.ts +24 -0
  112. package/dist/fabric-interop/components/ViroSoundField.js +47 -0
  113. package/dist/fabric-interop/components/ViroSpatialSound.d.ts +27 -0
  114. package/dist/fabric-interop/components/ViroSpatialSound.js +50 -0
  115. package/dist/fabric-interop/components/ViroSphere.d.ts +22 -0
  116. package/dist/fabric-interop/components/ViroSphere.js +49 -0
  117. package/dist/fabric-interop/components/ViroSpinner.d.ts +18 -0
  118. package/dist/fabric-interop/components/ViroSpinner.js +45 -0
  119. package/dist/fabric-interop/components/ViroSpotLight.d.ts +30 -0
  120. package/dist/fabric-interop/components/ViroSpotLight.js +57 -0
  121. package/dist/fabric-interop/components/ViroSurface.d.ts +38 -0
  122. package/dist/fabric-interop/components/ViroSurface.js +48 -0
  123. package/dist/fabric-interop/components/ViroText.d.ts +36 -0
  124. package/dist/fabric-interop/components/ViroText.js +59 -0
  125. package/dist/fabric-interop/components/ViroUtils.d.ts +63 -0
  126. package/dist/fabric-interop/components/ViroUtils.js +140 -0
  127. package/dist/fabric-interop/components/ViroVRSceneNavigator.d.ts +25 -0
  128. package/dist/fabric-interop/components/ViroVRSceneNavigator.js +73 -0
  129. package/dist/fabric-interop/components/ViroVideo.d.ts +32 -0
  130. package/dist/fabric-interop/components/ViroVideo.js +52 -0
  131. package/dist/fabric-interop/components/index.d.ts +62 -0
  132. package/dist/fabric-interop/components/index.js +144 -0
  133. package/dist/fabric-interop/examples/BasicSceneExample.d.ts +11 -0
  134. package/dist/fabric-interop/examples/BasicSceneExample.js +244 -0
  135. package/dist/fabric-interop/examples/ComprehensiveExample.d.ts +13 -0
  136. package/dist/fabric-interop/examples/ComprehensiveExample.js +327 -0
  137. package/dist/fabric-interop/examples/SimpleARExample.d.ts +8 -0
  138. package/dist/fabric-interop/examples/SimpleARExample.js +62 -0
  139. package/dist/fabric-interop/index.d.ts +14 -0
  140. package/dist/fabric-interop/index.js +117 -0
  141. package/dist/fabric-interop/specs/ViroEventsTurboModule.d.ts +19 -0
  142. package/dist/fabric-interop/specs/ViroEventsTurboModule.js +11 -0
  143. package/dist/fabric-interop/test/BasicFunctionalityTest.d.ts +9 -0
  144. package/dist/fabric-interop/test/BasicFunctionalityTest.js +222 -0
  145. package/dist/fabric.d.ts +13 -0
  146. package/dist/fabric.js +29 -0
  147. package/dist/plugins/withViro.d.ts +3 -0
  148. package/dist/plugins/withViro.js +19 -0
  149. package/dist/plugins/withViroAndroid.js +24 -20
  150. package/dist/plugins/withViroIos.js +20 -2
  151. package/dynamic-index-source.d.ts +77 -0
  152. package/dynamic-index.ts +41 -0
  153. package/fabric-interop/NativeViro.ts +335 -0
  154. package/fabric-interop/README.md +282 -0
  155. package/fabric-interop/ViroEventsManager.js +257 -0
  156. package/fabric-interop/ViroFabricContainer.tsx +273 -0
  157. package/fabric-interop/components/AR/ViroARPlane.tsx +108 -0
  158. package/fabric-interop/components/AR/ViroARPlaneSelector.tsx +185 -0
  159. package/fabric-interop/components/AR/ViroARTrackingTargets.ts +108 -0
  160. package/fabric-interop/components/AR/ViroCommonProps.ts +140 -0
  161. package/fabric-interop/components/Animation/ViroAnimations.ts +96 -0
  162. package/fabric-interop/components/Material/ViroMaterials.ts +127 -0
  163. package/fabric-interop/components/Resources/viro_spinner_1.png +0 -0
  164. package/fabric-interop/components/Resources/viro_spinner_1_w.png +0 -0
  165. package/fabric-interop/components/Resources/viro_spinner_1a.png +0 -0
  166. package/fabric-interop/components/Resources/viro_spinner_1a_w.png +0 -0
  167. package/fabric-interop/components/Types/ViroEvents.ts +285 -0
  168. package/fabric-interop/components/Types/ViroUtils.ts +160 -0
  169. package/fabric-interop/components/Viro360Image.tsx +70 -0
  170. package/fabric-interop/components/Viro360Video.tsx +78 -0
  171. package/fabric-interop/components/Viro3DObject.tsx +122 -0
  172. package/fabric-interop/components/Viro3DSceneNavigator.tsx +503 -0
  173. package/fabric-interop/components/ViroARCamera.tsx +105 -0
  174. package/fabric-interop/components/ViroARImageMarker.tsx +98 -0
  175. package/fabric-interop/components/ViroARObjectMarker.tsx +100 -0
  176. package/fabric-interop/components/ViroARPlane.tsx +120 -0
  177. package/fabric-interop/components/ViroARScene.tsx +127 -0
  178. package/fabric-interop/components/ViroARSceneNavigator.tsx +82 -0
  179. package/fabric-interop/components/ViroAmbientLight.tsx +62 -0
  180. package/fabric-interop/components/ViroAnimatedComponent.tsx +91 -0
  181. package/fabric-interop/components/ViroAnimatedImage.tsx +81 -0
  182. package/fabric-interop/components/ViroBox.tsx +72 -0
  183. package/fabric-interop/components/ViroButton.tsx +125 -0
  184. package/fabric-interop/components/ViroCamera.tsx +45 -0
  185. package/fabric-interop/components/ViroController.tsx +87 -0
  186. package/fabric-interop/components/ViroDirectionalLight.tsx +84 -0
  187. package/fabric-interop/components/ViroFlexView.tsx +146 -0
  188. package/fabric-interop/components/ViroGeometry.tsx +78 -0
  189. package/fabric-interop/components/ViroGlobal.ts +114 -0
  190. package/fabric-interop/components/ViroImage.tsx +85 -0
  191. package/fabric-interop/components/ViroLightingEnvironment.tsx +63 -0
  192. package/fabric-interop/components/ViroMaterialVideo.tsx +82 -0
  193. package/fabric-interop/components/ViroNode.tsx +62 -0
  194. package/fabric-interop/components/ViroOmniLight.tsx +66 -0
  195. package/fabric-interop/components/ViroOrbitCamera.tsx +45 -0
  196. package/fabric-interop/components/ViroParticleEmitter.tsx +111 -0
  197. package/fabric-interop/components/ViroPolygon.tsx +72 -0
  198. package/fabric-interop/components/ViroPolyline.tsx +71 -0
  199. package/fabric-interop/components/ViroPortal.tsx +91 -0
  200. package/fabric-interop/components/ViroPortalScene.tsx +43 -0
  201. package/fabric-interop/components/ViroQuad.tsx +82 -0
  202. package/fabric-interop/components/ViroScene.tsx +117 -0
  203. package/fabric-interop/components/ViroSceneNavigator.tsx +71 -0
  204. package/fabric-interop/components/ViroSkyBox.tsx +75 -0
  205. package/fabric-interop/components/ViroSound.tsx +71 -0
  206. package/fabric-interop/components/ViroSoundField.tsx +75 -0
  207. package/fabric-interop/components/ViroSpatialSound.tsx +81 -0
  208. package/fabric-interop/components/ViroSphere.tsx +75 -0
  209. package/fabric-interop/components/ViroSpinner.tsx +63 -0
  210. package/fabric-interop/components/ViroSpotLight.tsx +86 -0
  211. package/fabric-interop/components/ViroSurface.tsx +80 -0
  212. package/fabric-interop/components/ViroText.tsx +114 -0
  213. package/fabric-interop/components/ViroUtils.ts +208 -0
  214. package/fabric-interop/components/ViroVRSceneNavigator.tsx +75 -0
  215. package/fabric-interop/components/ViroVideo.tsx +91 -0
  216. package/fabric-interop/components/index.ts +94 -0
  217. package/fabric-interop/dist/NativeViro.d.ts +43 -0
  218. package/fabric-interop/dist/NativeViro.d.ts.map +1 -0
  219. package/fabric-interop/dist/NativeViro.js +263 -0
  220. package/fabric-interop/dist/NativeViro.js.map +1 -0
  221. package/fabric-interop/dist/ViroFabricContainer.d.ts +35 -0
  222. package/fabric-interop/dist/ViroFabricContainer.d.ts.map +1 -0
  223. package/fabric-interop/dist/ViroFabricContainer.js +201 -0
  224. package/fabric-interop/dist/ViroFabricContainer.js.map +1 -0
  225. package/fabric-interop/dist/components/AR/ViroARPlane.d.ts +23 -0
  226. package/fabric-interop/dist/components/AR/ViroARPlane.d.ts.map +1 -0
  227. package/fabric-interop/dist/components/AR/ViroARPlane.js +96 -0
  228. package/fabric-interop/dist/components/AR/ViroARPlane.js.map +1 -0
  229. package/fabric-interop/dist/components/AR/ViroARPlaneSelector.d.ts +44 -0
  230. package/fabric-interop/dist/components/AR/ViroARPlaneSelector.d.ts.map +1 -0
  231. package/fabric-interop/dist/components/AR/ViroARPlaneSelector.js +156 -0
  232. package/fabric-interop/dist/components/AR/ViroARPlaneSelector.js.map +1 -0
  233. package/fabric-interop/dist/components/AR/ViroARTrackingTargets.d.ts +56 -0
  234. package/fabric-interop/dist/components/AR/ViroARTrackingTargets.d.ts.map +1 -0
  235. package/fabric-interop/dist/components/AR/ViroARTrackingTargets.js +86 -0
  236. package/fabric-interop/dist/components/AR/ViroARTrackingTargets.js.map +1 -0
  237. package/fabric-interop/dist/components/AR/ViroCommonProps.d.ts +92 -0
  238. package/fabric-interop/dist/components/AR/ViroCommonProps.d.ts.map +1 -0
  239. package/fabric-interop/dist/components/AR/ViroCommonProps.js +8 -0
  240. package/fabric-interop/dist/components/AR/ViroCommonProps.js.map +1 -0
  241. package/fabric-interop/dist/components/Animation/ViroAnimations.d.ts +49 -0
  242. package/fabric-interop/dist/components/Animation/ViroAnimations.d.ts.map +1 -0
  243. package/fabric-interop/dist/components/Animation/ViroAnimations.js +65 -0
  244. package/fabric-interop/dist/components/Animation/ViroAnimations.js.map +1 -0
  245. package/fabric-interop/dist/components/Material/ViroMaterials.d.ts +67 -0
  246. package/fabric-interop/dist/components/Material/ViroMaterials.d.ts.map +1 -0
  247. package/fabric-interop/dist/components/Material/ViroMaterials.js +86 -0
  248. package/fabric-interop/dist/components/Material/ViroMaterials.js.map +1 -0
  249. package/fabric-interop/dist/components/Types/ViroEvents.d.ts +203 -0
  250. package/fabric-interop/dist/components/Types/ViroEvents.d.ts.map +1 -0
  251. package/fabric-interop/dist/components/Types/ViroEvents.js +54 -0
  252. package/fabric-interop/dist/components/Types/ViroEvents.js.map +1 -0
  253. package/fabric-interop/dist/components/Types/ViroUtils.d.ts +138 -0
  254. package/fabric-interop/dist/components/Types/ViroUtils.d.ts.map +1 -0
  255. package/fabric-interop/dist/components/Types/ViroUtils.js +8 -0
  256. package/fabric-interop/dist/components/Types/ViroUtils.js.map +1 -0
  257. package/fabric-interop/dist/components/Viro360Image.d.ts +24 -0
  258. package/fabric-interop/dist/components/Viro360Image.d.ts.map +1 -0
  259. package/fabric-interop/dist/components/Viro360Image.js +47 -0
  260. package/fabric-interop/dist/components/Viro360Image.js.map +1 -0
  261. package/fabric-interop/dist/components/Viro360Video.d.ts +30 -0
  262. package/fabric-interop/dist/components/Viro360Video.d.ts.map +1 -0
  263. package/fabric-interop/dist/components/Viro360Video.js +49 -0
  264. package/fabric-interop/dist/components/Viro360Video.js.map +1 -0
  265. package/fabric-interop/dist/components/Viro3DObject.d.ts +61 -0
  266. package/fabric-interop/dist/components/Viro3DObject.d.ts.map +1 -0
  267. package/fabric-interop/dist/components/Viro3DObject.js +51 -0
  268. package/fabric-interop/dist/components/Viro3DObject.js.map +1 -0
  269. package/fabric-interop/dist/components/Viro3DSceneNavigator.d.ts +50 -0
  270. package/fabric-interop/dist/components/Viro3DSceneNavigator.d.ts.map +1 -0
  271. package/fabric-interop/dist/components/Viro3DSceneNavigator.js +389 -0
  272. package/fabric-interop/dist/components/Viro3DSceneNavigator.js.map +1 -0
  273. package/fabric-interop/dist/components/ViroARCamera.d.ts +30 -0
  274. package/fabric-interop/dist/components/ViroARCamera.d.ts.map +1 -0
  275. package/fabric-interop/dist/components/ViroARCamera.js +65 -0
  276. package/fabric-interop/dist/components/ViroARCamera.js.map +1 -0
  277. package/fabric-interop/dist/components/ViroARImageMarker.d.ts +22 -0
  278. package/fabric-interop/dist/components/ViroARImageMarker.d.ts.map +1 -0
  279. package/fabric-interop/dist/components/ViroARImageMarker.js +72 -0
  280. package/fabric-interop/dist/components/ViroARImageMarker.js.map +1 -0
  281. package/fabric-interop/dist/components/ViroARObjectMarker.d.ts +22 -0
  282. package/fabric-interop/dist/components/ViroARObjectMarker.d.ts.map +1 -0
  283. package/fabric-interop/dist/components/ViroARObjectMarker.js +72 -0
  284. package/fabric-interop/dist/components/ViroARObjectMarker.js.map +1 -0
  285. package/fabric-interop/dist/components/ViroARPlane.d.ts +25 -0
  286. package/fabric-interop/dist/components/ViroARPlane.d.ts.map +1 -0
  287. package/fabric-interop/dist/components/ViroARPlane.js +89 -0
  288. package/fabric-interop/dist/components/ViroARPlane.js.map +1 -0
  289. package/fabric-interop/dist/components/ViroARScene.d.ts +30 -0
  290. package/fabric-interop/dist/components/ViroARScene.d.ts.map +1 -0
  291. package/fabric-interop/dist/components/ViroARScene.js +90 -0
  292. package/fabric-interop/dist/components/ViroARScene.js.map +1 -0
  293. package/fabric-interop/dist/components/ViroARSceneNavigator.d.ts +30 -0
  294. package/fabric-interop/dist/components/ViroARSceneNavigator.d.ts.map +1 -0
  295. package/fabric-interop/dist/components/ViroARSceneNavigator.js +78 -0
  296. package/fabric-interop/dist/components/ViroARSceneNavigator.js.map +1 -0
  297. package/fabric-interop/dist/components/ViroAmbientLight.d.ts +20 -0
  298. package/fabric-interop/dist/components/ViroAmbientLight.d.ts.map +1 -0
  299. package/fabric-interop/dist/components/ViroAmbientLight.js +48 -0
  300. package/fabric-interop/dist/components/ViroAmbientLight.js.map +1 -0
  301. package/fabric-interop/dist/components/ViroAnimatedComponent.d.ts +25 -0
  302. package/fabric-interop/dist/components/ViroAnimatedComponent.d.ts.map +1 -0
  303. package/fabric-interop/dist/components/ViroAnimatedComponent.js +65 -0
  304. package/fabric-interop/dist/components/ViroAnimatedComponent.js.map +1 -0
  305. package/fabric-interop/dist/components/ViroAnimatedImage.d.ts +29 -0
  306. package/fabric-interop/dist/components/ViroAnimatedImage.d.ts.map +1 -0
  307. package/fabric-interop/dist/components/ViroAnimatedImage.js +51 -0
  308. package/fabric-interop/dist/components/ViroAnimatedImage.js.map +1 -0
  309. package/fabric-interop/dist/components/ViroBox.d.ts +21 -0
  310. package/fabric-interop/dist/components/ViroBox.d.ts.map +1 -0
  311. package/fabric-interop/dist/components/ViroBox.js +49 -0
  312. package/fabric-interop/dist/components/ViroBox.js.map +1 -0
  313. package/fabric-interop/dist/components/ViroButton.d.ts +33 -0
  314. package/fabric-interop/dist/components/ViroButton.d.ts.map +1 -0
  315. package/fabric-interop/dist/components/ViroButton.js +94 -0
  316. package/fabric-interop/dist/components/ViroButton.js.map +1 -0
  317. package/fabric-interop/dist/components/ViroCamera.d.ts +18 -0
  318. package/fabric-interop/dist/components/ViroCamera.d.ts.map +1 -0
  319. package/fabric-interop/dist/components/ViroCamera.js +31 -0
  320. package/fabric-interop/dist/components/ViroCamera.js.map +1 -0
  321. package/fabric-interop/dist/components/ViroController.d.ts +20 -0
  322. package/fabric-interop/dist/components/ViroController.d.ts.map +1 -0
  323. package/fabric-interop/dist/components/ViroController.js +65 -0
  324. package/fabric-interop/dist/components/ViroController.js.map +1 -0
  325. package/fabric-interop/dist/components/ViroDirectionalLight.d.ts +29 -0
  326. package/fabric-interop/dist/components/ViroDirectionalLight.d.ts.map +1 -0
  327. package/fabric-interop/dist/components/ViroDirectionalLight.js +57 -0
  328. package/fabric-interop/dist/components/ViroDirectionalLight.js.map +1 -0
  329. package/fabric-interop/dist/components/ViroFlexView.d.ts +37 -0
  330. package/fabric-interop/dist/components/ViroFlexView.d.ts.map +1 -0
  331. package/fabric-interop/dist/components/ViroFlexView.js +98 -0
  332. package/fabric-interop/dist/components/ViroFlexView.js.map +1 -0
  333. package/fabric-interop/dist/components/ViroGeometry.d.ts +24 -0
  334. package/fabric-interop/dist/components/ViroGeometry.d.ts.map +1 -0
  335. package/fabric-interop/dist/components/ViroGeometry.js +52 -0
  336. package/fabric-interop/dist/components/ViroGeometry.js.map +1 -0
  337. package/fabric-interop/dist/components/ViroGlobal.d.ts +46 -0
  338. package/fabric-interop/dist/components/ViroGlobal.d.ts.map +1 -0
  339. package/fabric-interop/dist/components/ViroGlobal.js +21 -0
  340. package/fabric-interop/dist/components/ViroGlobal.js.map +1 -0
  341. package/fabric-interop/dist/components/ViroImage.d.ts +30 -0
  342. package/fabric-interop/dist/components/ViroImage.d.ts.map +1 -0
  343. package/fabric-interop/dist/components/ViroImage.js +54 -0
  344. package/fabric-interop/dist/components/ViroImage.js.map +1 -0
  345. package/fabric-interop/dist/components/ViroLightingEnvironment.d.ts +20 -0
  346. package/fabric-interop/dist/components/ViroLightingEnvironment.d.ts.map +1 -0
  347. package/fabric-interop/dist/components/ViroLightingEnvironment.js +46 -0
  348. package/fabric-interop/dist/components/ViroLightingEnvironment.js.map +1 -0
  349. package/fabric-interop/dist/components/ViroMaterialVideo.d.ts +31 -0
  350. package/fabric-interop/dist/components/ViroMaterialVideo.d.ts.map +1 -0
  351. package/fabric-interop/dist/components/ViroMaterialVideo.js +50 -0
  352. package/fabric-interop/dist/components/ViroMaterialVideo.js.map +1 -0
  353. package/fabric-interop/dist/components/ViroNode.d.ts +37 -0
  354. package/fabric-interop/dist/components/ViroNode.d.ts.map +1 -0
  355. package/fabric-interop/dist/components/ViroNode.js +29 -0
  356. package/fabric-interop/dist/components/ViroNode.js.map +1 -0
  357. package/fabric-interop/dist/components/ViroOmniLight.d.ts +22 -0
  358. package/fabric-interop/dist/components/ViroOmniLight.d.ts.map +1 -0
  359. package/fabric-interop/dist/components/ViroOmniLight.js +50 -0
  360. package/fabric-interop/dist/components/ViroOmniLight.js.map +1 -0
  361. package/fabric-interop/dist/components/ViroOrbitCamera.d.ts +18 -0
  362. package/fabric-interop/dist/components/ViroOrbitCamera.d.ts.map +1 -0
  363. package/fabric-interop/dist/components/ViroOrbitCamera.js +31 -0
  364. package/fabric-interop/dist/components/ViroOrbitCamera.js.map +1 -0
  365. package/fabric-interop/dist/components/ViroParticleEmitter.d.ts +52 -0
  366. package/fabric-interop/dist/components/ViroParticleEmitter.d.ts.map +1 -0
  367. package/fabric-interop/dist/components/ViroParticleEmitter.js +52 -0
  368. package/fabric-interop/dist/components/ViroParticleEmitter.js.map +1 -0
  369. package/fabric-interop/dist/components/ViroPolygon.d.ts +21 -0
  370. package/fabric-interop/dist/components/ViroPolygon.d.ts.map +1 -0
  371. package/fabric-interop/dist/components/ViroPolygon.js +49 -0
  372. package/fabric-interop/dist/components/ViroPolygon.js.map +1 -0
  373. package/fabric-interop/dist/components/ViroPolyline.d.ts +20 -0
  374. package/fabric-interop/dist/components/ViroPolyline.d.ts.map +1 -0
  375. package/fabric-interop/dist/components/ViroPolyline.js +48 -0
  376. package/fabric-interop/dist/components/ViroPolyline.js.map +1 -0
  377. package/fabric-interop/dist/components/ViroPortal.d.ts +17 -0
  378. package/fabric-interop/dist/components/ViroPortal.d.ts.map +1 -0
  379. package/fabric-interop/dist/components/ViroPortal.js +74 -0
  380. package/fabric-interop/dist/components/ViroPortal.js.map +1 -0
  381. package/fabric-interop/dist/components/ViroPortalScene.d.ts +17 -0
  382. package/fabric-interop/dist/components/ViroPortalScene.d.ts.map +1 -0
  383. package/fabric-interop/dist/components/ViroPortalScene.js +30 -0
  384. package/fabric-interop/dist/components/ViroPortalScene.js.map +1 -0
  385. package/fabric-interop/dist/components/ViroQuad.d.ts +40 -0
  386. package/fabric-interop/dist/components/ViroQuad.d.ts.map +1 -0
  387. package/fabric-interop/dist/components/ViroQuad.js +51 -0
  388. package/fabric-interop/dist/components/ViroQuad.js.map +1 -0
  389. package/fabric-interop/dist/components/ViroScene.d.ts +30 -0
  390. package/fabric-interop/dist/components/ViroScene.d.ts.map +1 -0
  391. package/fabric-interop/dist/components/ViroScene.js +105 -0
  392. package/fabric-interop/dist/components/ViroScene.js.map +1 -0
  393. package/fabric-interop/dist/components/ViroSceneNavigator.d.ts +24 -0
  394. package/fabric-interop/dist/components/ViroSceneNavigator.d.ts.map +1 -0
  395. package/fabric-interop/dist/components/ViroSceneNavigator.js +74 -0
  396. package/fabric-interop/dist/components/ViroSceneNavigator.js.map +1 -0
  397. package/fabric-interop/dist/components/ViroSkyBox.d.ts +40 -0
  398. package/fabric-interop/dist/components/ViroSkyBox.d.ts.map +1 -0
  399. package/fabric-interop/dist/components/ViroSkyBox.js +46 -0
  400. package/fabric-interop/dist/components/ViroSkyBox.js.map +1 -0
  401. package/fabric-interop/dist/components/ViroSound.d.ts +24 -0
  402. package/fabric-interop/dist/components/ViroSound.d.ts.map +1 -0
  403. package/fabric-interop/dist/components/ViroSound.js +48 -0
  404. package/fabric-interop/dist/components/ViroSound.js.map +1 -0
  405. package/fabric-interop/dist/components/ViroSoundField.d.ts +25 -0
  406. package/fabric-interop/dist/components/ViroSoundField.d.ts.map +1 -0
  407. package/fabric-interop/dist/components/ViroSoundField.js +49 -0
  408. package/fabric-interop/dist/components/ViroSoundField.js.map +1 -0
  409. package/fabric-interop/dist/components/ViroSpatialSound.d.ts +28 -0
  410. package/fabric-interop/dist/components/ViroSpatialSound.d.ts.map +1 -0
  411. package/fabric-interop/dist/components/ViroSpatialSound.js +52 -0
  412. package/fabric-interop/dist/components/ViroSpatialSound.js.map +1 -0
  413. package/fabric-interop/dist/components/ViroSphere.d.ts +23 -0
  414. package/fabric-interop/dist/components/ViroSphere.d.ts.map +1 -0
  415. package/fabric-interop/dist/components/ViroSphere.js +51 -0
  416. package/fabric-interop/dist/components/ViroSphere.js.map +1 -0
  417. package/fabric-interop/dist/components/ViroSpinner.d.ts +19 -0
  418. package/fabric-interop/dist/components/ViroSpinner.d.ts.map +1 -0
  419. package/fabric-interop/dist/components/ViroSpinner.js +47 -0
  420. package/fabric-interop/dist/components/ViroSpinner.js.map +1 -0
  421. package/fabric-interop/dist/components/ViroSpotLight.d.ts +31 -0
  422. package/fabric-interop/dist/components/ViroSpotLight.d.ts.map +1 -0
  423. package/fabric-interop/dist/components/ViroSpotLight.js +59 -0
  424. package/fabric-interop/dist/components/ViroSpotLight.js.map +1 -0
  425. package/fabric-interop/dist/components/ViroSurface.d.ts +39 -0
  426. package/fabric-interop/dist/components/ViroSurface.d.ts.map +1 -0
  427. package/fabric-interop/dist/components/ViroSurface.js +50 -0
  428. package/fabric-interop/dist/components/ViroSurface.js.map +1 -0
  429. package/fabric-interop/dist/components/ViroText.d.ts +37 -0
  430. package/fabric-interop/dist/components/ViroText.d.ts.map +1 -0
  431. package/fabric-interop/dist/components/ViroText.js +61 -0
  432. package/fabric-interop/dist/components/ViroText.js.map +1 -0
  433. package/fabric-interop/dist/components/ViroUtils.d.ts +64 -0
  434. package/fabric-interop/dist/components/ViroUtils.d.ts.map +1 -0
  435. package/fabric-interop/dist/components/ViroUtils.js +141 -0
  436. package/fabric-interop/dist/components/ViroUtils.js.map +1 -0
  437. package/fabric-interop/dist/components/ViroVRSceneNavigator.d.ts +26 -0
  438. package/fabric-interop/dist/components/ViroVRSceneNavigator.d.ts.map +1 -0
  439. package/fabric-interop/dist/components/ViroVRSceneNavigator.js +74 -0
  440. package/fabric-interop/dist/components/ViroVRSceneNavigator.js.map +1 -0
  441. package/fabric-interop/dist/components/ViroVideo.d.ts +33 -0
  442. package/fabric-interop/dist/components/ViroVideo.d.ts.map +1 -0
  443. package/fabric-interop/dist/components/ViroVideo.js +54 -0
  444. package/fabric-interop/dist/components/ViroVideo.js.map +1 -0
  445. package/fabric-interop/dist/components/index.d.ts +63 -0
  446. package/fabric-interop/dist/components/index.d.ts.map +1 -0
  447. package/fabric-interop/dist/components/index.js +145 -0
  448. package/fabric-interop/dist/components/index.js.map +1 -0
  449. package/fabric-interop/dist/index.d.ts +15 -0
  450. package/fabric-interop/dist/index.d.ts.map +1 -0
  451. package/fabric-interop/dist/index.js +118 -0
  452. package/fabric-interop/dist/index.js.map +1 -0
  453. package/fabric-interop/dist/specs/ViroEventsTurboModule.d.ts +20 -0
  454. package/fabric-interop/dist/specs/ViroEventsTurboModule.d.ts.map +1 -0
  455. package/fabric-interop/dist/specs/ViroEventsTurboModule.js +12 -0
  456. package/fabric-interop/dist/specs/ViroEventsTurboModule.js.map +1 -0
  457. package/fabric-interop/examples/BasicSceneExample.tsx +287 -0
  458. package/fabric-interop/examples/ComprehensiveExample.tsx +441 -0
  459. package/fabric-interop/examples/SimpleARExample.tsx +95 -0
  460. package/fabric-interop/global.d.ts +14 -0
  461. package/fabric-interop/index.ts +107 -0
  462. package/fabric-interop/metro.config.js +12 -0
  463. package/fabric-interop/package.json +40 -0
  464. package/fabric-interop/react-native.config.js +22 -0
  465. package/fabric-interop/scripts/validate-build.js +393 -0
  466. package/fabric-interop/scripts/validate-implementation.js +272 -0
  467. package/fabric-interop/specs/README.md +22 -0
  468. package/fabric-interop/specs/ViroEventsTurboModule.ts +27 -0
  469. package/fabric-interop/test/BasicFunctionalityTest.tsx +243 -0
  470. package/fabric-interop/tsconfig.json +38 -0
  471. package/fabric.d.ts +5 -0
  472. package/fabric.ts +14 -0
  473. package/ios/ViroReact.podspec +51 -11
  474. package/package.json +33 -20
  475. package/scripts/copy-types.js +46 -0
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ /**
3
+ * ViroDirectionalLight
4
+ *
5
+ * A component for adding directional lighting to a scene.
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.ViroDirectionalLight = void 0;
9
+ const ViroUtils_1 = require("./ViroUtils");
10
+ /**
11
+ * ViroDirectionalLight is a component for adding directional lighting to a scene.
12
+ * Directional light is a type of light that illuminates all objects in the scene
13
+ * from a specific direction, similar to sunlight.
14
+ */
15
+ const ViroDirectionalLight = (props) => {
16
+ var _a;
17
+ // Convert common props to the format expected by the native code
18
+ const nativeProps = {
19
+ ...(0, ViroUtils_1.convertCommonProps)(props),
20
+ color: props.color,
21
+ intensity: props.intensity,
22
+ temperature: props.temperature,
23
+ direction: props.direction,
24
+ influenceBitMask: props.influenceBitMask,
25
+ castsShadow: props.castsShadow,
26
+ shadowOpacity: props.shadowOpacity,
27
+ shadowOrthographicSize: props.shadowOrthographicSize,
28
+ shadowOrthographicPosition: props.shadowOrthographicPosition,
29
+ shadowMapSize: props.shadowMapSize,
30
+ shadowBias: props.shadowBias,
31
+ shadowNearZ: props.shadowNearZ,
32
+ shadowFarZ: props.shadowFarZ,
33
+ };
34
+ // Create the node (parent will be determined by context)
35
+ const nodeId = (0, ViroUtils_1.useViroNode)("directionalLight", nativeProps);
36
+ // Register event handlers using our new event system
37
+ (0, ViroUtils_1.useViroEventListeners)(nodeId, {
38
+ onHover: props.onHover,
39
+ onClick: props.onClick,
40
+ onClickState: props.onClickState,
41
+ onTouch: props.onTouch,
42
+ onScroll: props.onScroll,
43
+ onSwipe: props.onSwipe,
44
+ onDrag: props.onDrag,
45
+ onPinch: props.onPinch,
46
+ onRotate: props.onRotate,
47
+ onFuse: typeof props.onFuse === "function"
48
+ ? props.onFuse
49
+ : (_a = props.onFuse) === null || _a === void 0 ? void 0 : _a.callback,
50
+ onCollision: props.onCollision,
51
+ onTransformUpdate: props.onTransformUpdate,
52
+ });
53
+ // Component doesn't have children, so just return null
54
+ return null;
55
+ };
56
+ exports.ViroDirectionalLight = ViroDirectionalLight;
57
+ //# sourceMappingURL=ViroDirectionalLight.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroDirectionalLight.js","sourceRoot":"","sources":["../../components/ViroDirectionalLight.tsx"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAGH,2CAKqB;AAsBrB;;;;GAIG;AACI,MAAM,oBAAoB,GAAwC,CACvE,KAAK,EACL,EAAE;;IACF,iEAAiE;IACjE,MAAM,WAAW,GAAG;QAClB,GAAG,IAAA,8BAAkB,EAAC,KAAK,CAAC;QAC5B,KAAK,EAAE,KAAK,CAAC,KAAK;QAClB,SAAS,EAAE,KAAK,CAAC,SAAS;QAC1B,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,SAAS,EAAE,KAAK,CAAC,SAAS;QAC1B,gBAAgB,EAAE,KAAK,CAAC,gBAAgB;QACxC,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,aAAa,EAAE,KAAK,CAAC,aAAa;QAClC,sBAAsB,EAAE,KAAK,CAAC,sBAAsB;QACpD,0BAA0B,EAAE,KAAK,CAAC,0BAA0B;QAC5D,aAAa,EAAE,KAAK,CAAC,aAAa;QAClC,UAAU,EAAE,KAAK,CAAC,UAAU;QAC5B,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,UAAU,EAAE,KAAK,CAAC,UAAU;KAC7B,CAAC;IAEF,yDAAyD;IACzD,MAAM,MAAM,GAAG,IAAA,uBAAW,EAAC,kBAAkB,EAAE,WAAW,CAAC,CAAC;IAC5D,qDAAqD;IACrD,IAAA,iCAAqB,EAAC,MAAM,EAAE;QAC5B,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,YAAY,EAAE,KAAK,CAAC,YAAY;QAChC,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,MAAM,EACJ,OAAO,KAAK,CAAC,MAAM,KAAK,UAAU;YAChC,CAAC,CAAC,KAAK,CAAC,MAAM;YACd,CAAC,CAAC,MAAA,KAAK,CAAC,MAAM,0CAAE,QAAQ;QAC5B,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,iBAAiB,EAAE,KAAK,CAAC,iBAAiB;KAC3C,CAAC,CAAC;IAEH,uDAAuD;IACvD,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AA5CW,QAAA,oBAAoB,wBA4C/B"}
@@ -0,0 +1,37 @@
1
+ /**
2
+ * ViroFlexView
3
+ *
4
+ * A component for creating flexible layouts in 3D space.
5
+ */
6
+ import React from "react";
7
+ import { ViroCommonProps } from "./ViroUtils";
8
+ export interface ViroFlexViewProps extends ViroCommonProps {
9
+ width?: number;
10
+ height?: number;
11
+ flex?: number;
12
+ flexDirection?: "row" | "column";
13
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around";
14
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch";
15
+ padding?: number;
16
+ paddingTop?: number;
17
+ paddingBottom?: number;
18
+ paddingLeft?: number;
19
+ paddingRight?: number;
20
+ margin?: number;
21
+ marginTop?: number;
22
+ marginBottom?: number;
23
+ marginLeft?: number;
24
+ marginRight?: number;
25
+ backgroundColor?: string;
26
+ borderRadius?: number;
27
+ borderWidth?: number;
28
+ borderColor?: string;
29
+ materials?: string | string[];
30
+ children?: React.ReactNode;
31
+ }
32
+ /**
33
+ * ViroFlexView is a component for creating flexible layouts in 3D space.
34
+ * It allows you to arrange child components using flexbox-like layout rules.
35
+ */
36
+ export declare const ViroFlexView: React.FC<ViroFlexViewProps>;
37
+ //# sourceMappingURL=ViroFlexView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroFlexView.d.ts","sourceRoot":"","sources":["../../components/ViroFlexView.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,eAAe,EAKhB,MAAM,aAAa,CAAC;AAGrB,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IAExD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,aAAa,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC;IACjC,cAAc,CAAC,EACX,YAAY,GACZ,UAAU,GACV,QAAQ,GACR,eAAe,GACf,cAAc,CAAC;IACnB,UAAU,CAAC,EAAE,YAAY,GAAG,UAAU,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC9D,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IAGrB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IAGrB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAG9B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAsFpD,CAAC"}
@@ -0,0 +1,98 @@
1
+ "use strict";
2
+ /**
3
+ * ViroFlexView
4
+ *
5
+ * A component for creating flexible layouts in 3D space.
6
+ */
7
+ var __importDefault = (this && this.__importDefault) || function (mod) {
8
+ return (mod && mod.__esModule) ? mod : { "default": mod };
9
+ };
10
+ Object.defineProperty(exports, "__esModule", { value: true });
11
+ exports.ViroFlexView = void 0;
12
+ const react_1 = __importDefault(require("react"));
13
+ const ViroUtils_1 = require("./ViroUtils");
14
+ const ViroGlobal_1 = require("./ViroGlobal");
15
+ /**
16
+ * ViroFlexView is a component for creating flexible layouts in 3D space.
17
+ * It allows you to arrange child components using flexbox-like layout rules.
18
+ */
19
+ const ViroFlexView = (props) => {
20
+ // Convert common props to the format expected by the native code
21
+ const nativeProps = {
22
+ ...(0, ViroUtils_1.convertCommonProps)(props),
23
+ width: props.width,
24
+ height: props.height,
25
+ flex: props.flex,
26
+ flexDirection: props.flexDirection,
27
+ justifyContent: props.justifyContent,
28
+ alignItems: props.alignItems,
29
+ padding: props.padding,
30
+ paddingTop: props.paddingTop,
31
+ paddingBottom: props.paddingBottom,
32
+ paddingLeft: props.paddingLeft,
33
+ paddingRight: props.paddingRight,
34
+ margin: props.margin,
35
+ marginTop: props.marginTop,
36
+ marginBottom: props.marginBottom,
37
+ marginLeft: props.marginLeft,
38
+ marginRight: props.marginRight,
39
+ backgroundColor: props.backgroundColor,
40
+ borderRadius: props.borderRadius,
41
+ borderWidth: props.borderWidth,
42
+ borderColor: props.borderColor,
43
+ materials: props.materials,
44
+ };
45
+ // Create the node (parent will be determined by context)
46
+ const nodeId = (0, ViroUtils_1.useViroNode)("flexView", nativeProps);
47
+ // Register event handlers
48
+ react_1.default.useEffect(() => {
49
+ const nativeViro = (0, ViroGlobal_1.getNativeViro)();
50
+ if (!nativeViro)
51
+ return;
52
+ const eventHandlers = [
53
+ { name: "onHover", handler: props.onHover },
54
+ { name: "onClick", handler: props.onClick },
55
+ { name: "onClickState", handler: props.onClickState },
56
+ { name: "onTouch", handler: props.onTouch },
57
+ { name: "onDrag", handler: props.onDrag },
58
+ { name: "onPinch", handler: props.onPinch },
59
+ { name: "onRotate", handler: props.onRotate },
60
+ ];
61
+ // Register all event handlers and store callback IDs for cleanup
62
+ const registeredCallbacks = eventHandlers
63
+ .filter(({ handler }) => !!handler)
64
+ .map(({ name, handler }) => {
65
+ const callbackId = `${nodeId}_${name}`;
66
+ // Register the callback in the global registry
67
+ if (typeof global !== "undefined" && global.registerViroEventCallback) {
68
+ global.registerViroEventCallback(callbackId, handler);
69
+ }
70
+ // Register with native code
71
+ nativeViro.registerEventCallback(nodeId, name, callbackId);
72
+ return { name, callbackId };
73
+ });
74
+ // Cleanup when unmounting
75
+ return () => {
76
+ const nativeViro = (0, ViroGlobal_1.getNativeViro)();
77
+ if (!nativeViro)
78
+ return;
79
+ // Unregister all event handlers
80
+ registeredCallbacks.forEach(({ name, callbackId }) => {
81
+ nativeViro.unregisterEventCallback(nodeId, name, callbackId);
82
+ });
83
+ };
84
+ }, [
85
+ nodeId,
86
+ props.onHover,
87
+ props.onClick,
88
+ props.onClickState,
89
+ props.onTouch,
90
+ props.onDrag,
91
+ props.onPinch,
92
+ props.onRotate,
93
+ ]);
94
+ // Render children with this flex view as their parent
95
+ return (<ViroUtils_1.ViroContextProvider value={nodeId}>{props.children}</ViroUtils_1.ViroContextProvider>);
96
+ };
97
+ exports.ViroFlexView = ViroFlexView;
98
+ //# sourceMappingURL=ViroFlexView.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroFlexView.js","sourceRoot":"","sources":["../../components/ViroFlexView.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,24 @@
1
+ /**
2
+ * ViroGeometry
3
+ *
4
+ * A component for rendering custom 3D geometry.
5
+ */
6
+ import React from "react";
7
+ import { ViroCommonProps } from "./ViroUtils";
8
+ export interface ViroGeometryProps extends ViroCommonProps {
9
+ vertices: [number, number, number][];
10
+ normals?: [number, number, number][];
11
+ texcoords?: [number, number][];
12
+ triangleIndices: number[][];
13
+ materials?: string | string[];
14
+ lightReceivingBitMask?: number;
15
+ shadowCastingBitMask?: number;
16
+ type?: "Dynamic" | "Kinematic" | "Static";
17
+ }
18
+ /**
19
+ * ViroGeometry is a component for rendering custom 3D geometry.
20
+ * It allows you to create custom 3D shapes by specifying vertices, normals,
21
+ * texture coordinates, and triangle indices.
22
+ */
23
+ export declare const ViroGeometry: React.FC<ViroGeometryProps>;
24
+ //# sourceMappingURL=ViroGeometry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroGeometry.d.ts","sourceRoot":"","sources":["../../components/ViroGeometry.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,eAAe,EAIhB,MAAM,aAAa,CAAC;AAGrB,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IAExD,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IACrC,OAAO,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IACrC,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IAC/B,eAAe,EAAE,MAAM,EAAE,EAAE,CAAC;IAG5B,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAG9B,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAG9B,IAAI,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAC;CAC3C;AAED;;;;GAIG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAuCpD,CAAC"}
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ /**
3
+ * ViroGeometry
4
+ *
5
+ * A component for rendering custom 3D geometry.
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.ViroGeometry = void 0;
9
+ const ViroUtils_1 = require("./ViroUtils");
10
+ /**
11
+ * ViroGeometry is a component for rendering custom 3D geometry.
12
+ * It allows you to create custom 3D shapes by specifying vertices, normals,
13
+ * texture coordinates, and triangle indices.
14
+ */
15
+ const ViroGeometry = (props) => {
16
+ var _a;
17
+ // Convert common props to the format expected by the native code
18
+ const nativeProps = {
19
+ ...(0, ViroUtils_1.convertCommonProps)(props),
20
+ vertices: props.vertices,
21
+ normals: props.normals,
22
+ texcoords: props.texcoords,
23
+ triangleIndices: props.triangleIndices,
24
+ materials: props.materials,
25
+ lightReceivingBitMask: props.lightReceivingBitMask,
26
+ shadowCastingBitMask: props.shadowCastingBitMask,
27
+ type: props.type,
28
+ };
29
+ // Create the node (parent will be determined by context)
30
+ const nodeId = (0, ViroUtils_1.useViroNode)("geometry", nativeProps);
31
+ // Register event handlers using our new event system
32
+ (0, ViroUtils_1.useViroEventListeners)(nodeId, {
33
+ onHover: props.onHover,
34
+ onClick: props.onClick,
35
+ onClickState: props.onClickState,
36
+ onTouch: props.onTouch,
37
+ onScroll: props.onScroll,
38
+ onSwipe: props.onSwipe,
39
+ onDrag: props.onDrag,
40
+ onPinch: props.onPinch,
41
+ onRotate: props.onRotate,
42
+ onFuse: typeof props.onFuse === "function"
43
+ ? props.onFuse
44
+ : (_a = props.onFuse) === null || _a === void 0 ? void 0 : _a.callback,
45
+ onCollision: props.onCollision,
46
+ onTransformUpdate: props.onTransformUpdate,
47
+ });
48
+ // Component doesn't have children, so just return null
49
+ return null;
50
+ };
51
+ exports.ViroGeometry = ViroGeometry;
52
+ //# sourceMappingURL=ViroGeometry.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroGeometry.js","sourceRoot":"","sources":["../../components/ViroGeometry.tsx"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAGH,2CAKqB;AAqBrB;;;;GAIG;AACI,MAAM,YAAY,GAAgC,CAAC,KAAK,EAAE,EAAE;;IACjE,iEAAiE;IACjE,MAAM,WAAW,GAAG;QAClB,GAAG,IAAA,8BAAkB,EAAC,KAAK,CAAC;QAC5B,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,SAAS,EAAE,KAAK,CAAC,SAAS;QAC1B,eAAe,EAAE,KAAK,CAAC,eAAe;QACtC,SAAS,EAAE,KAAK,CAAC,SAAS;QAC1B,qBAAqB,EAAE,KAAK,CAAC,qBAAqB;QAClD,oBAAoB,EAAE,KAAK,CAAC,oBAAoB;QAChD,IAAI,EAAE,KAAK,CAAC,IAAI;KACjB,CAAC;IAEF,yDAAyD;IACzD,MAAM,MAAM,GAAG,IAAA,uBAAW,EAAC,UAAU,EAAE,WAAW,CAAC,CAAC;IAGpD,qDAAqD;IACrD,IAAA,iCAAqB,EAAC,MAAM,EAAE;QAC5B,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,YAAY,EAAE,KAAK,CAAC,YAAY;QAChC,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,MAAM,EACJ,OAAO,KAAK,CAAC,MAAM,KAAK,UAAU;YAChC,CAAC,CAAC,KAAK,CAAC,MAAM;YACd,CAAC,CAAC,MAAA,KAAK,CAAC,MAAM,0CAAE,QAAQ;QAC5B,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,iBAAiB,EAAE,KAAK,CAAC,iBAAiB;KAC3C,CAAC,CAAC;IAEH,uDAAuD;IACvD,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAvCW,QAAA,YAAY,gBAuCvB"}
@@ -0,0 +1,46 @@
1
+ /**
2
+ * ViroGlobal
3
+ *
4
+ * A utility to provide type-safe access to the global NativeViro object.
5
+ */
6
+ declare global {
7
+ var NativeViro: any;
8
+ }
9
+ export interface NativeViroType {
10
+ createViroNode: (nodeId: string, nodeType: string, props: Record<string, any>) => void;
11
+ updateViroNode: (nodeId: string, props: Record<string, any>) => void;
12
+ deleteViroNode: (nodeId: string) => void;
13
+ addViroNodeChild: (parentId: string, childId: string) => void;
14
+ removeViroNodeChild: (parentId: string, childId: string) => void;
15
+ registerEventCallback: (nodeId: string, eventName: string, callbackId: string) => void;
16
+ unregisterEventCallback: (nodeId: string, eventName: string, callbackId: string) => void;
17
+ createViroMaterial: (materialName: string, properties: Record<string, any>) => void;
18
+ updateViroMaterial: (materialName: string, properties: Record<string, any>) => void;
19
+ createViroAnimation: (animationName: string, properties: Record<string, any>) => void;
20
+ executeViroAnimation: (nodeId: string, animationName: string, options: Record<string, any>) => void;
21
+ createViroScene: (sceneId: string, sceneType: string, props: Record<string, any>) => void;
22
+ activateViroScene: (sceneId: string) => void;
23
+ deactivateViroScene: (sceneId: string) => void;
24
+ destroyViroScene: (sceneId: string) => void;
25
+ getViroSceneState: (sceneId: string) => string | null;
26
+ getViroMemoryStats: () => Record<string, any> | null;
27
+ performViroMemoryCleanup: () => void;
28
+ setViroARPlaneDetection: (config: {
29
+ enabled?: boolean;
30
+ alignment?: string;
31
+ horizontal?: boolean;
32
+ vertical?: boolean;
33
+ }) => void;
34
+ setViroARImageTargets: (targets: Record<string, any>) => void;
35
+ recenterTracking: (nodeId: string) => void;
36
+ project: (nodeId: string, point: [number, number, number]) => Promise<[number, number, number]>;
37
+ unproject: (nodeId: string, point: [number, number, number]) => Promise<[number, number, number]>;
38
+ initialize: (config?: {
39
+ debug?: boolean;
40
+ arEnabled?: boolean;
41
+ worldAlignment?: string;
42
+ }) => Promise<boolean>;
43
+ }
44
+ export declare function getNativeViro(): NativeViroType | null;
45
+ export declare function isNativeViroAvailable(): boolean;
46
+ //# sourceMappingURL=ViroGlobal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroGlobal.d.ts","sourceRoot":"","sources":["../../components/ViroGlobal.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ /**
3
+ * ViroGlobal
4
+ *
5
+ * A utility to provide type-safe access to the global NativeViro object.
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.getNativeViro = getNativeViro;
9
+ exports.isNativeViroAvailable = isNativeViroAvailable;
10
+ // Get the NativeViro object with type safety
11
+ function getNativeViro() {
12
+ if (typeof global !== "undefined" && global.NativeViro) {
13
+ return global.NativeViro;
14
+ }
15
+ return null;
16
+ }
17
+ // Check if NativeViro is available
18
+ function isNativeViroAvailable() {
19
+ return getNativeViro() !== null;
20
+ }
21
+ //# sourceMappingURL=ViroGlobal.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroGlobal.js","sourceRoot":"","sources":["../../components/ViroGlobal.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;AAmGH,sCAKC;AAGD,sDAEC;AAXD,6CAA6C;AAC7C,SAAgB,aAAa;IAC3B,IAAI,OAAO,MAAM,KAAK,WAAW,IAAI,MAAM,CAAC,UAAU,EAAE,CAAC;QACvD,OAAO,MAAM,CAAC,UAA4B,CAAC;IAC7C,CAAC;IACD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,mCAAmC;AACnC,SAAgB,qBAAqB;IACnC,OAAO,aAAa,EAAE,KAAK,IAAI,CAAC;AAClC,CAAC"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * ViroImage
3
+ *
4
+ * A component for displaying 2D images in 3D space.
5
+ */
6
+ import React from "react";
7
+ import { ViroCommonProps } from "./ViroUtils";
8
+ export interface ViroImageProps extends ViroCommonProps {
9
+ source: {
10
+ uri: string;
11
+ } | number;
12
+ width?: number;
13
+ height?: number;
14
+ resizeMode?: "ScaleToFill" | "ScaleToFit" | "StretchToFill";
15
+ imageClipMode?: "None" | "ClipToBounds";
16
+ stereoMode?: "LeftRight" | "RightLeft" | "TopBottom" | "BottomTop" | "None";
17
+ format?: "RGBA8" | "RGB565";
18
+ mipmap?: boolean;
19
+ placeholderSource?: {
20
+ uri: string;
21
+ } | number;
22
+ materials?: string | string[];
23
+ lightReceivingBitMask?: number;
24
+ shadowCastingBitMask?: number;
25
+ }
26
+ /**
27
+ * ViroImage is a component for displaying 2D images in 3D space.
28
+ */
29
+ export declare const ViroImage: React.FC<ViroImageProps>;
30
+ //# sourceMappingURL=ViroImage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroImage.d.ts","sourceRoot":"","sources":["../../components/ViroImage.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,eAAe,EAIhB,MAAM,aAAa,CAAC;AAGrB,MAAM,WAAW,cAAe,SAAQ,eAAe;IAErD,MAAM,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,GAAG,MAAM,CAAC;IAGjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,aAAa,GAAG,YAAY,GAAG,eAAe,CAAC;IAC5D,aAAa,CAAC,EAAE,MAAM,GAAG,cAAc,CAAC;IACxC,UAAU,CAAC,EAAE,WAAW,GAAG,WAAW,GAAG,WAAW,GAAG,WAAW,GAAG,MAAM,CAAC;IAC5E,MAAM,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;IAC5B,MAAM,CAAC,EAAE,OAAO,CAAC;IAGjB,iBAAiB,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,GAAG,MAAM,CAAC;IAG7C,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAG9B,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,oBAAoB,CAAC,EAAE,MAAM,CAAC;CAC/B;AAED;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CA0C9C,CAAC"}
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ /**
3
+ * ViroImage
4
+ *
5
+ * A component for displaying 2D images in 3D space.
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.ViroImage = void 0;
9
+ const ViroUtils_1 = require("./ViroUtils");
10
+ /**
11
+ * ViroImage is a component for displaying 2D images in 3D space.
12
+ */
13
+ const ViroImage = (props) => {
14
+ var _a;
15
+ // Convert common props to the format expected by the native code
16
+ const nativeProps = {
17
+ ...(0, ViroUtils_1.convertCommonProps)(props),
18
+ source: props.source,
19
+ width: props.width,
20
+ height: props.height,
21
+ resizeMode: props.resizeMode,
22
+ imageClipMode: props.imageClipMode,
23
+ stereoMode: props.stereoMode,
24
+ format: props.format,
25
+ mipmap: props.mipmap,
26
+ placeholderSource: props.placeholderSource,
27
+ materials: props.materials,
28
+ lightReceivingBitMask: props.lightReceivingBitMask,
29
+ shadowCastingBitMask: props.shadowCastingBitMask,
30
+ };
31
+ // Create the node (parent will be determined by context)
32
+ const nodeId = (0, ViroUtils_1.useViroNode)("image", nativeProps);
33
+ // Register event handlers using our new event system
34
+ (0, ViroUtils_1.useViroEventListeners)(nodeId, {
35
+ onHover: props.onHover,
36
+ onClick: props.onClick,
37
+ onClickState: props.onClickState,
38
+ onTouch: props.onTouch,
39
+ onScroll: props.onScroll,
40
+ onSwipe: props.onSwipe,
41
+ onDrag: props.onDrag,
42
+ onPinch: props.onPinch,
43
+ onRotate: props.onRotate,
44
+ onFuse: typeof props.onFuse === "function"
45
+ ? props.onFuse
46
+ : (_a = props.onFuse) === null || _a === void 0 ? void 0 : _a.callback,
47
+ onCollision: props.onCollision,
48
+ onTransformUpdate: props.onTransformUpdate,
49
+ });
50
+ // Image doesn't have children, so just return null
51
+ return null;
52
+ };
53
+ exports.ViroImage = ViroImage;
54
+ //# sourceMappingURL=ViroImage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroImage.js","sourceRoot":"","sources":["../../components/ViroImage.tsx"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAGH,2CAKqB;AA2BrB;;GAEG;AACI,MAAM,SAAS,GAA6B,CAAC,KAAK,EAAE,EAAE;;IAC3D,iEAAiE;IACjE,MAAM,WAAW,GAAG;QAClB,GAAG,IAAA,8BAAkB,EAAC,KAAK,CAAC;QAC5B,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,KAAK,EAAE,KAAK,CAAC,KAAK;QAClB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,UAAU,EAAE,KAAK,CAAC,UAAU;QAC5B,aAAa,EAAE,KAAK,CAAC,aAAa;QAClC,UAAU,EAAE,KAAK,CAAC,UAAU;QAC5B,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,iBAAiB,EAAE,KAAK,CAAC,iBAAiB;QAC1C,SAAS,EAAE,KAAK,CAAC,SAAS;QAC1B,qBAAqB,EAAE,KAAK,CAAC,qBAAqB;QAClD,oBAAoB,EAAE,KAAK,CAAC,oBAAoB;KACjD,CAAC;IAEF,yDAAyD;IACzD,MAAM,MAAM,GAAG,IAAA,uBAAW,EAAC,OAAO,EAAE,WAAW,CAAC,CAAC;IAEjD,qDAAqD;IACrD,IAAA,iCAAqB,EAAC,MAAM,EAAE;QAC5B,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,YAAY,EAAE,KAAK,CAAC,YAAY;QAChC,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,MAAM,EACJ,OAAO,KAAK,CAAC,MAAM,KAAK,UAAU;YAChC,CAAC,CAAC,KAAK,CAAC,MAAM;YACd,CAAC,CAAC,MAAA,KAAK,CAAC,MAAM,0CAAE,QAAQ;QAC5B,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,iBAAiB,EAAE,KAAK,CAAC,iBAAiB;KAC3C,CAAC,CAAC;IAEH,mDAAmD;IACnD,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AA1CW,QAAA,SAAS,aA0CpB"}
@@ -0,0 +1,20 @@
1
+ /**
2
+ * ViroLightingEnvironment
3
+ *
4
+ * A component for setting up environment-based lighting using HDR images.
5
+ */
6
+ import React from "react";
7
+ import { ViroCommonProps } from "./ViroUtils";
8
+ export interface ViroLightingEnvironmentProps extends ViroCommonProps {
9
+ source: {
10
+ uri: string;
11
+ } | number;
12
+ intensity?: number;
13
+ rotation?: [number, number, number];
14
+ }
15
+ /**
16
+ * ViroLightingEnvironment is a component for setting up environment-based lighting using HDR images.
17
+ * It provides realistic lighting and reflections based on a 360-degree HDR environment map.
18
+ */
19
+ export declare const ViroLightingEnvironment: React.FC<ViroLightingEnvironmentProps>;
20
+ //# sourceMappingURL=ViroLightingEnvironment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroLightingEnvironment.d.ts","sourceRoot":"","sources":["../../components/ViroLightingEnvironment.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,eAAe,EAIhB,MAAM,aAAa,CAAC;AAGrB,MAAM,WAAW,4BAA6B,SAAQ,eAAe;IAEnE,MAAM,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,GAAG,MAAM,CAAC;IAGjC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;CACrC;AAED;;;GAGG;AACH,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CAkC1E,CAAC"}
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ /**
3
+ * ViroLightingEnvironment
4
+ *
5
+ * A component for setting up environment-based lighting using HDR images.
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.ViroLightingEnvironment = void 0;
9
+ const ViroUtils_1 = require("./ViroUtils");
10
+ /**
11
+ * ViroLightingEnvironment is a component for setting up environment-based lighting using HDR images.
12
+ * It provides realistic lighting and reflections based on a 360-degree HDR environment map.
13
+ */
14
+ const ViroLightingEnvironment = (props) => {
15
+ var _a;
16
+ // Convert common props to the format expected by the native code
17
+ const nativeProps = {
18
+ ...(0, ViroUtils_1.convertCommonProps)(props),
19
+ source: props.source,
20
+ intensity: props.intensity,
21
+ rotation: props.rotation,
22
+ };
23
+ // Create the node (parent will be determined by context)
24
+ const nodeId = (0, ViroUtils_1.useViroNode)("lightingEnvironment", nativeProps);
25
+ // Register event handlers using our new event system
26
+ (0, ViroUtils_1.useViroEventListeners)(nodeId, {
27
+ onHover: props.onHover,
28
+ onClick: props.onClick,
29
+ onClickState: props.onClickState,
30
+ onTouch: props.onTouch,
31
+ onScroll: props.onScroll,
32
+ onSwipe: props.onSwipe,
33
+ onDrag: props.onDrag,
34
+ onPinch: props.onPinch,
35
+ onRotate: props.onRotate,
36
+ onFuse: typeof props.onFuse === "function"
37
+ ? props.onFuse
38
+ : (_a = props.onFuse) === null || _a === void 0 ? void 0 : _a.callback,
39
+ onCollision: props.onCollision,
40
+ onTransformUpdate: props.onTransformUpdate,
41
+ });
42
+ // Component doesn't have children, so just return null
43
+ return null;
44
+ };
45
+ exports.ViroLightingEnvironment = ViroLightingEnvironment;
46
+ //# sourceMappingURL=ViroLightingEnvironment.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroLightingEnvironment.js","sourceRoot":"","sources":["../../components/ViroLightingEnvironment.tsx"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAGH,2CAKqB;AAYrB;;;GAGG;AACI,MAAM,uBAAuB,GAA2C,CAC7E,KAAK,EACL,EAAE;;IACF,iEAAiE;IACjE,MAAM,WAAW,GAAG;QAClB,GAAG,IAAA,8BAAkB,EAAC,KAAK,CAAC;QAC5B,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,SAAS,EAAE,KAAK,CAAC,SAAS;QAC1B,QAAQ,EAAE,KAAK,CAAC,QAAQ;KACzB,CAAC;IAEF,yDAAyD;IACzD,MAAM,MAAM,GAAG,IAAA,uBAAW,EAAC,qBAAqB,EAAE,WAAW,CAAC,CAAC;IAC/D,qDAAqD;IACrD,IAAA,iCAAqB,EAAC,MAAM,EAAE;QAC5B,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,YAAY,EAAE,KAAK,CAAC,YAAY;QAChC,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,MAAM,EACJ,OAAO,KAAK,CAAC,MAAM,KAAK,UAAU;YAChC,CAAC,CAAC,KAAK,CAAC,MAAM;YACd,CAAC,CAAC,MAAA,KAAK,CAAC,MAAM,0CAAE,QAAQ;QAC5B,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,iBAAiB,EAAE,KAAK,CAAC,iBAAiB;KAC3C,CAAC,CAAC;IAEH,uDAAuD;IACvD,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAlCW,QAAA,uBAAuB,2BAkClC"}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * ViroMaterialVideo
3
+ *
4
+ * A component for using video as a material texture.
5
+ */
6
+ import React from "react";
7
+ import { ViroCommonProps } from "./ViroUtils";
8
+ export interface ViroMaterialVideoProps extends ViroCommonProps {
9
+ material: string;
10
+ source: {
11
+ uri: string;
12
+ } | number;
13
+ paused?: boolean;
14
+ loop?: boolean;
15
+ muted?: boolean;
16
+ volume?: number;
17
+ stereoMode?: "LeftRight" | "RightLeft" | "TopBottom" | "BottomTop" | "None";
18
+ onLoadStart?: () => void;
19
+ onLoadEnd?: () => void;
20
+ onBufferStart?: () => void;
21
+ onBufferEnd?: () => void;
22
+ onFinish?: () => void;
23
+ onUpdateTime?: (currentTime: number, totalTime: number) => void;
24
+ onError?: (error: string) => void;
25
+ }
26
+ /**
27
+ * ViroMaterialVideo is a component for using video as a material texture.
28
+ * It allows video content to be applied as a texture to 3D objects.
29
+ */
30
+ export declare const ViroMaterialVideo: React.FC<ViroMaterialVideoProps>;
31
+ //# sourceMappingURL=ViroMaterialVideo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroMaterialVideo.d.ts","sourceRoot":"","sources":["../../components/ViroMaterialVideo.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,eAAe,EAIhB,MAAM,aAAa,CAAC;AAGrB,MAAM,WAAW,sBAAuB,SAAQ,eAAe;IAE7D,QAAQ,EAAE,MAAM,CAAC;IAGjB,MAAM,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,GAAG,MAAM,CAAC;IAGjC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,WAAW,GAAG,WAAW,GAAG,WAAW,GAAG,WAAW,GAAG,MAAM,CAAC;IAG5E,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;IAC3B,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,YAAY,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAChE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC;AAED;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAsC9D,CAAC"}
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ /**
3
+ * ViroMaterialVideo
4
+ *
5
+ * A component for using video as a material texture.
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.ViroMaterialVideo = void 0;
9
+ const ViroUtils_1 = require("./ViroUtils");
10
+ /**
11
+ * ViroMaterialVideo is a component for using video as a material texture.
12
+ * It allows video content to be applied as a texture to 3D objects.
13
+ */
14
+ const ViroMaterialVideo = (props) => {
15
+ var _a;
16
+ // Convert common props to the format expected by the native code
17
+ const nativeProps = {
18
+ ...(0, ViroUtils_1.convertCommonProps)(props),
19
+ material: props.material,
20
+ source: props.source,
21
+ paused: props.paused,
22
+ loop: props.loop,
23
+ muted: props.muted,
24
+ volume: props.volume,
25
+ stereoMode: props.stereoMode,
26
+ };
27
+ // Create the node (parent will be determined by context)
28
+ const nodeId = (0, ViroUtils_1.useViroNode)("materialVideo", nativeProps);
29
+ // Register event handlers using our new event system
30
+ (0, ViroUtils_1.useViroEventListeners)(nodeId, {
31
+ onHover: props.onHover,
32
+ onClick: props.onClick,
33
+ onClickState: props.onClickState,
34
+ onTouch: props.onTouch,
35
+ onScroll: props.onScroll,
36
+ onSwipe: props.onSwipe,
37
+ onDrag: props.onDrag,
38
+ onPinch: props.onPinch,
39
+ onRotate: props.onRotate,
40
+ onFuse: typeof props.onFuse === "function"
41
+ ? props.onFuse
42
+ : (_a = props.onFuse) === null || _a === void 0 ? void 0 : _a.callback,
43
+ onCollision: props.onCollision,
44
+ onTransformUpdate: props.onTransformUpdate,
45
+ });
46
+ // Component doesn't have children, so just return null
47
+ return null;
48
+ };
49
+ exports.ViroMaterialVideo = ViroMaterialVideo;
50
+ //# sourceMappingURL=ViroMaterialVideo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViroMaterialVideo.js","sourceRoot":"","sources":["../../components/ViroMaterialVideo.tsx"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAGH,2CAKqB;AA2BrB;;;GAGG;AACI,MAAM,iBAAiB,GAAqC,CAAC,KAAK,EAAE,EAAE;;IAC3E,iEAAiE;IACjE,MAAM,WAAW,GAAG;QAClB,GAAG,IAAA,8BAAkB,EAAC,KAAK,CAAC;QAC5B,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,IAAI,EAAE,KAAK,CAAC,IAAI;QAChB,KAAK,EAAE,KAAK,CAAC,KAAK;QAClB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,UAAU,EAAE,KAAK,CAAC,UAAU;KAC7B,CAAC;IAEF,yDAAyD;IACzD,MAAM,MAAM,GAAG,IAAA,uBAAW,EAAC,eAAe,EAAE,WAAW,CAAC,CAAC;IAGzD,qDAAqD;IACrD,IAAA,iCAAqB,EAAC,MAAM,EAAE;QAC5B,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,YAAY,EAAE,KAAK,CAAC,YAAY;QAChC,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,QAAQ,EAAE,KAAK,CAAC,QAAQ;QACxB,MAAM,EACJ,OAAO,KAAK,CAAC,MAAM,KAAK,UAAU;YAChC,CAAC,CAAC,KAAK,CAAC,MAAM;YACd,CAAC,CAAC,MAAA,KAAK,CAAC,MAAM,0CAAE,QAAQ;QAC5B,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,iBAAiB,EAAE,KAAK,CAAC,iBAAiB;KAC3C,CAAC,CAAC;IAEH,uDAAuD;IACvD,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAtCW,QAAA,iBAAiB,qBAsC5B"}