babylonjs-editor 4.5.0 → 5.4.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 (456) hide show
  1. package/.env +1 -0
  2. package/build/src/index.js +150 -0
  3. package/declaration/src/dashboard/create.d.ts +6 -0
  4. package/declaration/src/dashboard/item.d.ts +8 -0
  5. package/declaration/src/dashboard/main.d.ts +19 -0
  6. package/declaration/src/dashboard/menu.d.ts +1 -0
  7. package/declaration/src/dashboard/preload.d.ts +0 -0
  8. package/declaration/src/dashboard/progress.d.ts +17 -0
  9. package/declaration/src/dashboard/window-controls.d.ts +1 -0
  10. package/declaration/src/dashboard/window.d.ts +2 -0
  11. package/declaration/src/editor/dialogs/command-palette/camera.d.ts +4 -0
  12. package/declaration/src/editor/dialogs/command-palette/command-palette.d.ts +27 -0
  13. package/declaration/src/editor/dialogs/command-palette/light.d.ts +4 -0
  14. package/declaration/src/editor/dialogs/command-palette/material.d.ts +4 -0
  15. package/declaration/src/editor/dialogs/command-palette/mesh.d.ts +4 -0
  16. package/declaration/src/editor/dialogs/command-palette/node.d.ts +4 -0
  17. package/declaration/src/editor/dialogs/command-palette/particle-systems.d.ts +3 -0
  18. package/declaration/src/editor/dialogs/command-palette/project.d.ts +3 -0
  19. package/declaration/src/editor/dialogs/command-palette/shared-commands.d.ts +31 -0
  20. package/declaration/src/editor/dialogs/command-palette/sprite.d.ts +4 -0
  21. package/declaration/src/editor/dialogs/edit-preferences/edit-preferences.d.ts +24 -0
  22. package/declaration/src/editor/dialogs/edit-project/edit-project.d.ts +17 -0
  23. package/declaration/src/editor/dialogs/edit-project/plugins/component.d.ts +18 -0
  24. package/declaration/src/editor/dialogs/edit-project/plugins/item.d.ts +7 -0
  25. package/declaration/src/editor/dialogs/edit-project/textures/component.d.ts +9 -0
  26. package/declaration/src/editor/dialogs/generate/complete.d.ts +5 -0
  27. package/declaration/src/editor/dialogs/generate/generate-project.d.ts +24 -0
  28. package/declaration/src/editor/dialogs/generate/generate.d.ts +10 -0
  29. package/declaration/src/editor/dialogs/generate/options.d.ts +5 -0
  30. package/declaration/src/editor/layout/animation/inspector/inspector.d.ts +21 -0
  31. package/declaration/src/editor/layout/animation/timeline/key.d.ts +24 -0
  32. package/declaration/src/editor/layout/animation/timeline/timeline.d.ts +68 -0
  33. package/declaration/src/editor/layout/animation/timeline/track.d.ts +29 -0
  34. package/declaration/src/editor/layout/animation/timeline/tracker.d.ts +17 -0
  35. package/declaration/src/editor/layout/animation/toolbar.d.ts +11 -0
  36. package/declaration/src/editor/layout/animation/tools/export.d.ts +2 -0
  37. package/declaration/src/editor/layout/animation/tools/import.d.ts +3 -0
  38. package/declaration/src/editor/layout/animation/tools/properties.d.ts +6 -0
  39. package/declaration/src/editor/layout/animation/tracks/add.d.ts +7 -0
  40. package/declaration/src/editor/layout/animation/tracks/item.d.ts +11 -0
  41. package/declaration/src/editor/layout/animation/tracks/tracks.d.ts +18 -0
  42. package/declaration/src/editor/layout/animation.d.ts +53 -0
  43. package/declaration/src/editor/layout/assets-browser/events/gui.d.ts +2 -0
  44. package/declaration/src/editor/layout/assets-browser/events/material.d.ts +2 -0
  45. package/declaration/src/editor/layout/assets-browser/events/particles.d.ts +2 -0
  46. package/declaration/src/editor/layout/assets-browser/events/scene.d.ts +2 -0
  47. package/declaration/src/editor/layout/assets-browser/items/cinematic-item.d.ts +12 -0
  48. package/declaration/src/editor/layout/assets-browser/items/gui-item.d.ts +14 -0
  49. package/declaration/src/editor/layout/assets-browser/items/hdr-item.d.ts +13 -0
  50. package/declaration/src/editor/layout/assets-browser/items/image-item.d.ts +27 -0
  51. package/declaration/src/editor/layout/assets-browser/items/item.d.ts +91 -0
  52. package/declaration/src/editor/layout/assets-browser/items/json-item.d.ts +14 -0
  53. package/declaration/src/editor/layout/assets-browser/items/material-item.d.ts +26 -0
  54. package/declaration/src/editor/layout/assets-browser/items/mesh-item.d.ts +20 -0
  55. package/declaration/src/editor/layout/assets-browser/items/navmesh-item.d.ts +12 -0
  56. package/declaration/src/editor/layout/assets-browser/items/particle-system-item.d.ts +12 -0
  57. package/declaration/src/editor/layout/assets-browser/items/ragdoll.d.ts +12 -0
  58. package/declaration/src/editor/layout/assets-browser/items/scene-item.d.ts +16 -0
  59. package/declaration/src/editor/layout/assets-browser/label.d.ts +7 -0
  60. package/declaration/src/editor/layout/assets-browser/viewers/env-viewer.d.ts +1 -0
  61. package/declaration/src/editor/layout/assets-browser/viewers/material-viewer.d.ts +6 -0
  62. package/declaration/src/editor/layout/assets-browser/viewers/model-viewer.d.ts +10 -0
  63. package/declaration/src/editor/layout/assets-browser.d.ts +107 -0
  64. package/declaration/src/editor/layout/cinematic/curves/curve.d.ts +23 -0
  65. package/declaration/src/editor/layout/cinematic/curves/handle.d.ts +20 -0
  66. package/declaration/src/editor/layout/cinematic/curves/point.d.ts +16 -0
  67. package/declaration/src/editor/layout/cinematic/curves/root.d.ts +27 -0
  68. package/declaration/src/editor/layout/cinematic/curves/ticks.d.ts +9 -0
  69. package/declaration/src/editor/layout/cinematic/curves/tools/animation-group.d.ts +3 -0
  70. package/declaration/src/editor/layout/cinematic/curves/tools/property.d.ts +8 -0
  71. package/declaration/src/editor/layout/cinematic/curves/tools/sound.d.ts +2 -0
  72. package/declaration/src/editor/layout/cinematic/curves/tools/tools.d.ts +34 -0
  73. package/declaration/src/editor/layout/cinematic/curves.d.ts +21 -0
  74. package/declaration/src/editor/layout/cinematic/editor.d.ts +78 -0
  75. package/declaration/src/editor/layout/cinematic/inspector/animation-group.d.ts +8 -0
  76. package/declaration/src/editor/layout/cinematic/inspector/events/apply-impulse.d.ts +7 -0
  77. package/declaration/src/editor/layout/cinematic/inspector/events/base.d.ts +8 -0
  78. package/declaration/src/editor/layout/cinematic/inspector/events/event.d.ts +5 -0
  79. package/declaration/src/editor/layout/cinematic/inspector/events/set-enabled.d.ts +7 -0
  80. package/declaration/src/editor/layout/cinematic/inspector/key-cut.d.ts +8 -0
  81. package/declaration/src/editor/layout/cinematic/inspector/key.d.ts +9 -0
  82. package/declaration/src/editor/layout/cinematic/inspector/sound.d.ts +8 -0
  83. package/declaration/src/editor/layout/cinematic/inspector/tools.d.ts +13 -0
  84. package/declaration/src/editor/layout/cinematic/inspector.d.ts +16 -0
  85. package/declaration/src/editor/layout/cinematic/render/convert.d.ts +21 -0
  86. package/declaration/src/editor/layout/cinematic/render/dialog.d.ts +19 -0
  87. package/declaration/src/editor/layout/cinematic/render/render.d.ts +18 -0
  88. package/declaration/src/editor/layout/cinematic/render/renderer.d.ts +16 -0
  89. package/declaration/src/editor/layout/cinematic/render/tools.d.ts +21 -0
  90. package/declaration/src/editor/layout/cinematic/serialization/parse.d.ts +21 -0
  91. package/declaration/src/editor/layout/cinematic/serialization/serialize.d.ts +4 -0
  92. package/declaration/src/editor/layout/cinematic/timelines/add.d.ts +6 -0
  93. package/declaration/src/editor/layout/cinematic/timelines/keys/animation-group.d.ts +9 -0
  94. package/declaration/src/editor/layout/cinematic/timelines/keys/base.d.ts +22 -0
  95. package/declaration/src/editor/layout/cinematic/timelines/keys/event.d.ts +9 -0
  96. package/declaration/src/editor/layout/cinematic/timelines/keys/property.d.ts +9 -0
  97. package/declaration/src/editor/layout/cinematic/timelines/keys/sound.d.ts +9 -0
  98. package/declaration/src/editor/layout/cinematic/timelines/move.d.ts +18 -0
  99. package/declaration/src/editor/layout/cinematic/timelines/options.d.ts +5 -0
  100. package/declaration/src/editor/layout/cinematic/timelines/remove.d.ts +6 -0
  101. package/declaration/src/editor/layout/cinematic/timelines/tools.d.ts +4 -0
  102. package/declaration/src/editor/layout/cinematic/timelines.d.ts +26 -0
  103. package/declaration/src/editor/layout/cinematic/toolbar.d.ts +6 -0
  104. package/declaration/src/editor/layout/cinematic/tools/state.d.ts +3 -0
  105. package/declaration/src/editor/layout/cinematic/tools/sync.d.ts +6 -0
  106. package/declaration/src/editor/layout/cinematic/tools/tracks.d.ts +2 -0
  107. package/declaration/src/editor/layout/cinematic/tracker.d.ts +11 -0
  108. package/declaration/src/editor/layout/cinematic/tracks/add.d.ts +5 -0
  109. package/declaration/src/editor/layout/cinematic/tracks/animation-group.d.ts +7 -0
  110. package/declaration/src/editor/layout/cinematic/tracks/event.d.ts +7 -0
  111. package/declaration/src/editor/layout/cinematic/tracks/property.d.ts +7 -0
  112. package/declaration/src/editor/layout/cinematic/tracks/remove.d.ts +7 -0
  113. package/declaration/src/editor/layout/cinematic/tracks/sound.d.ts +7 -0
  114. package/declaration/src/editor/layout/cinematic/tracks.d.ts +21 -0
  115. package/declaration/src/editor/layout/console/progress-log.d.ts +21 -0
  116. package/declaration/src/editor/layout/console.d.ts +40 -0
  117. package/declaration/src/editor/layout/graph/export.d.ts +19 -0
  118. package/declaration/src/editor/layout/graph/graph.d.ts +18 -0
  119. package/declaration/src/editor/layout/graph/label.d.ts +7 -0
  120. package/declaration/src/editor/layout/graph/remove.d.ts +6 -0
  121. package/declaration/src/editor/layout/graph.d.ts +100 -0
  122. package/declaration/src/editor/layout/inspector/camera/arc-rotate.d.ts +12 -0
  123. package/declaration/src/editor/layout/inspector/camera/editor.d.ts +12 -0
  124. package/declaration/src/editor/layout/inspector/camera/free.d.ts +15 -0
  125. package/declaration/src/editor/layout/inspector/camera/utils/focal.d.ts +5 -0
  126. package/declaration/src/editor/layout/inspector/camera/utils/mode.d.ts +6 -0
  127. package/declaration/src/editor/layout/inspector/decals/configuration.d.ts +6 -0
  128. package/declaration/src/editor/layout/inspector/decals/decals.d.ts +36 -0
  129. package/declaration/src/editor/layout/inspector/fields/asset.d.ts +8 -0
  130. package/declaration/src/editor/layout/inspector/fields/block.d.ts +2 -0
  131. package/declaration/src/editor/layout/inspector/fields/color.d.ts +9 -0
  132. package/declaration/src/editor/layout/inspector/fields/dimensions.d.ts +10 -0
  133. package/declaration/src/editor/layout/inspector/fields/entity.d.ts +8 -0
  134. package/declaration/src/editor/layout/inspector/fields/field.d.ts +14 -0
  135. package/declaration/src/editor/layout/inspector/fields/key.d.ts +7 -0
  136. package/declaration/src/editor/layout/inspector/fields/list.d.ts +15 -0
  137. package/declaration/src/editor/layout/inspector/fields/number.d.ts +11 -0
  138. package/declaration/src/editor/layout/inspector/fields/section.d.ts +21 -0
  139. package/declaration/src/editor/layout/inspector/fields/slider.d.ts +8 -0
  140. package/declaration/src/editor/layout/inspector/fields/string.d.ts +6 -0
  141. package/declaration/src/editor/layout/inspector/fields/switch.d.ts +5 -0
  142. package/declaration/src/editor/layout/inspector/fields/texture.d.ts +37 -0
  143. package/declaration/src/editor/layout/inspector/fields/vector.d.ts +11 -0
  144. package/declaration/src/editor/layout/inspector/file/image.d.ts +5 -0
  145. package/declaration/src/editor/layout/inspector/file/markdown.d.ts +5 -0
  146. package/declaration/src/editor/layout/inspector/file/sound.d.ts +5 -0
  147. package/declaration/src/editor/layout/inspector/file.d.ts +18 -0
  148. package/declaration/src/editor/layout/inspector/gui/gui.d.ts +12 -0
  149. package/declaration/src/editor/layout/inspector/inspector.d.ts +5 -0
  150. package/declaration/src/editor/layout/inspector/light/directional.d.ts +12 -0
  151. package/declaration/src/editor/layout/inspector/light/hemispheric.d.ts +12 -0
  152. package/declaration/src/editor/layout/inspector/light/point.d.ts +12 -0
  153. package/declaration/src/editor/layout/inspector/light/shadows.d.ts +28 -0
  154. package/declaration/src/editor/layout/inspector/light/spot.d.ts +12 -0
  155. package/declaration/src/editor/layout/inspector/marketplace-asset.d.ts +40 -0
  156. package/declaration/src/editor/layout/inspector/material/cell.d.ts +11 -0
  157. package/declaration/src/editor/layout/inspector/material/components/alpha.d.ts +6 -0
  158. package/declaration/src/editor/layout/inspector/material/components/transparency.d.ts +7 -0
  159. package/declaration/src/editor/layout/inspector/material/components/utils.d.ts +11 -0
  160. package/declaration/src/editor/layout/inspector/material/fire.d.ts +11 -0
  161. package/declaration/src/editor/layout/inspector/material/gradient.d.ts +11 -0
  162. package/declaration/src/editor/layout/inspector/material/grid.d.ts +11 -0
  163. package/declaration/src/editor/layout/inspector/material/lava.d.ts +11 -0
  164. package/declaration/src/editor/layout/inspector/material/multi.d.ts +15 -0
  165. package/declaration/src/editor/layout/inspector/material/node.d.ts +19 -0
  166. package/declaration/src/editor/layout/inspector/material/normal.d.ts +11 -0
  167. package/declaration/src/editor/layout/inspector/material/pbr.d.ts +10 -0
  168. package/declaration/src/editor/layout/inspector/material/sky.d.ts +11 -0
  169. package/declaration/src/editor/layout/inspector/material/standard.d.ts +7 -0
  170. package/declaration/src/editor/layout/inspector/material/tri-planar.d.ts +11 -0
  171. package/declaration/src/editor/layout/inspector/material/water.d.ts +15 -0
  172. package/declaration/src/editor/layout/inspector/mesh/collision.d.ts +17 -0
  173. package/declaration/src/editor/layout/inspector/mesh/decal.d.ts +15 -0
  174. package/declaration/src/editor/layout/inspector/mesh/geometry/box.d.ts +7 -0
  175. package/declaration/src/editor/layout/inspector/mesh/geometry/capsule.d.ts +7 -0
  176. package/declaration/src/editor/layout/inspector/mesh/geometry/cylinder.d.ts +7 -0
  177. package/declaration/src/editor/layout/inspector/mesh/geometry/ground.d.ts +7 -0
  178. package/declaration/src/editor/layout/inspector/mesh/geometry/plane.d.ts +7 -0
  179. package/declaration/src/editor/layout/inspector/mesh/geometry/proxy.d.ts +1 -0
  180. package/declaration/src/editor/layout/inspector/mesh/geometry/sphere.d.ts +7 -0
  181. package/declaration/src/editor/layout/inspector/mesh/geometry/torus-knot.d.ts +7 -0
  182. package/declaration/src/editor/layout/inspector/mesh/geometry/torus.d.ts +7 -0
  183. package/declaration/src/editor/layout/inspector/mesh/geometry.d.ts +7 -0
  184. package/declaration/src/editor/layout/inspector/mesh/mesh.d.ts +32 -0
  185. package/declaration/src/editor/layout/inspector/mesh/physics.d.ts +12 -0
  186. package/declaration/src/editor/layout/inspector/mesh/skeleton.d.ts +12 -0
  187. package/declaration/src/editor/layout/inspector/metadata/custom-metadata.d.ts +14 -0
  188. package/declaration/src/editor/layout/inspector/particles/gpu-particle-system.d.ts +26 -0
  189. package/declaration/src/editor/layout/inspector/particles/gradient.d.ts +6 -0
  190. package/declaration/src/editor/layout/inspector/particles/node-particle-system-set.d.ts +17 -0
  191. package/declaration/src/editor/layout/inspector/particles/particle-system.d.ts +22 -0
  192. package/declaration/src/editor/layout/inspector/particles/property-gradient.d.ts +13 -0
  193. package/declaration/src/editor/layout/inspector/scene/animation-groups.d.ts +7 -0
  194. package/declaration/src/editor/layout/inspector/scene/scene.d.ts +28 -0
  195. package/declaration/src/editor/layout/inspector/script/field.d.ts +9 -0
  196. package/declaration/src/editor/layout/inspector/script/script.d.ts +18 -0
  197. package/declaration/src/editor/layout/inspector/script/tools.d.ts +20 -0
  198. package/declaration/src/editor/layout/inspector/sound/sound.d.ts +17 -0
  199. package/declaration/src/editor/layout/inspector/sound/spatial.d.ts +14 -0
  200. package/declaration/src/editor/layout/inspector/sprites/sprite-manager.d.ts +27 -0
  201. package/declaration/src/editor/layout/inspector/sprites/sprite-map.d.ts +29 -0
  202. package/declaration/src/editor/layout/inspector/sprites/sprite.d.ts +27 -0
  203. package/declaration/src/editor/layout/inspector/transform.d.ts +17 -0
  204. package/declaration/src/editor/layout/inspector.d.ts +24 -0
  205. package/declaration/src/editor/layout/marketplace-browser/footer.d.ts +11 -0
  206. package/declaration/src/editor/layout/marketplace-browser/grid.d.ts +9 -0
  207. package/declaration/src/editor/layout/marketplace-browser/import-progress.d.ts +11 -0
  208. package/declaration/src/editor/layout/marketplace-browser/item.d.ts +7 -0
  209. package/declaration/src/editor/layout/marketplace-browser/settings-dialog.d.ts +21 -0
  210. package/declaration/src/editor/layout/marketplace-browser/sidebar.d.ts +19 -0
  211. package/declaration/src/editor/layout/marketplace-browser/toolbar.d.ts +17 -0
  212. package/declaration/src/editor/layout/marketplace-browser.d.ts +36 -0
  213. package/declaration/src/editor/layout/navmesh/components/list.d.ts +10 -0
  214. package/declaration/src/editor/layout/navmesh/components/search.d.ts +5 -0
  215. package/declaration/src/editor/layout/navmesh/editor.d.ts +34 -0
  216. package/declaration/src/editor/layout/navmesh/inspector.d.ts +7 -0
  217. package/declaration/src/editor/layout/navmesh/meshes.d.ts +7 -0
  218. package/declaration/src/editor/layout/navmesh/obstacles.d.ts +7 -0
  219. package/declaration/src/editor/layout/navmesh/preview.d.ts +7 -0
  220. package/declaration/src/editor/layout/navmesh/toolbar.d.ts +5 -0
  221. package/declaration/src/editor/layout/navmesh/tools.d.ts +10 -0
  222. package/declaration/src/editor/layout/navmesh/types.d.ts +20 -0
  223. package/declaration/src/editor/layout/preview/axis.d.ts +30 -0
  224. package/declaration/src/editor/layout/preview/camera.d.ts +8 -0
  225. package/declaration/src/editor/layout/preview/gizmo.d.ts +45 -0
  226. package/declaration/src/editor/layout/preview/icons.d.ts +35 -0
  227. package/declaration/src/editor/layout/preview/import/gui.d.ts +8 -0
  228. package/declaration/src/editor/layout/preview/import/import.d.ts +9 -0
  229. package/declaration/src/editor/layout/preview/import/material.d.ts +16 -0
  230. package/declaration/src/editor/layout/preview/import/particles.d.ts +3 -0
  231. package/declaration/src/editor/layout/preview/import/progress.d.ts +11 -0
  232. package/declaration/src/editor/layout/preview/import/sound.d.ts +2 -0
  233. package/declaration/src/editor/layout/preview/import/texture.d.ts +17 -0
  234. package/declaration/src/editor/layout/preview/play.d.ts +91 -0
  235. package/declaration/src/editor/layout/preview/stats/row.d.ts +5 -0
  236. package/declaration/src/editor/layout/preview/stats/stats.d.ts +17 -0
  237. package/declaration/src/editor/layout/preview/stats/types.d.ts +28 -0
  238. package/declaration/src/editor/layout/preview.d.ts +140 -0
  239. package/declaration/src/editor/layout/ragdoll/editor.d.ts +23 -0
  240. package/declaration/src/editor/layout/ragdoll/empty.d.ts +5 -0
  241. package/declaration/src/editor/layout/ragdoll/inspector.d.ts +28 -0
  242. package/declaration/src/editor/layout/ragdoll/preview.d.ts +27 -0
  243. package/declaration/src/editor/layout/ragdoll/toolbar.d.ts +5 -0
  244. package/declaration/src/editor/layout/toolbar.d.ts +18 -0
  245. package/declaration/src/editor/layout.d.ts +84 -0
  246. package/declaration/src/editor/main.d.ts +102 -0
  247. package/declaration/src/editor/menu.d.ts +4 -0
  248. package/declaration/src/editor/nodes/camera-pan-input.d.ts +30 -0
  249. package/declaration/src/editor/nodes/camera.d.ts +50 -0
  250. package/declaration/src/editor/nodes/collision.d.ts +36 -0
  251. package/declaration/src/editor/nodes/node-particle-system.d.ts +30 -0
  252. package/declaration/src/editor/nodes/scene-link.d.ts +28 -0
  253. package/declaration/src/editor/nodes/sprite-manager.d.ts +36 -0
  254. package/declaration/src/editor/nodes/sprite-map.d.ts +38 -0
  255. package/declaration/src/editor/overrides.d.ts +1 -0
  256. package/declaration/src/editor/preload.d.ts +1 -0
  257. package/declaration/src/editor/rendering/default-pipeline.d.ts +14 -0
  258. package/declaration/src/editor/rendering/ibl-shadows.d.ts +11 -0
  259. package/declaration/src/editor/rendering/motion-blur.d.ts +11 -0
  260. package/declaration/src/editor/rendering/ssao.d.ts +11 -0
  261. package/declaration/src/editor/rendering/ssr.d.ts +11 -0
  262. package/declaration/src/editor/rendering/taa.d.ts +11 -0
  263. package/declaration/src/editor/rendering/tools.d.ts +7 -0
  264. package/declaration/src/editor/rendering/vls.d.ts +11 -0
  265. package/declaration/src/editor/window.d.ts +23 -0
  266. package/declaration/src/editor/windows/ge/index.d.ts +13 -0
  267. package/declaration/src/editor/windows/nme/index.d.ts +15 -0
  268. package/declaration/src/editor/windows/npe/index.d.ts +15 -0
  269. package/declaration/src/editor/windows/preload.d.ts +1 -0
  270. package/declaration/src/editor/windows/scene/index.d.ts +12 -0
  271. package/declaration/src/electron/assimp/assimpjs-worker.d.ts +1 -0
  272. package/declaration/src/electron/assimp/assimpjs.d.ts +1 -0
  273. package/declaration/src/electron/events/dialog.d.ts +1 -0
  274. package/declaration/src/electron/events/editor.d.ts +1 -0
  275. package/declaration/src/electron/events/export.d.ts +1 -0
  276. package/declaration/src/electron/events/shell.d.ts +1 -0
  277. package/declaration/src/electron/events/window.d.ts +1 -0
  278. package/declaration/src/electron/node-pty.d.ts +6 -0
  279. package/declaration/src/electron/oauth.d.ts +1 -0
  280. package/declaration/src/electron/protocol.d.ts +1 -0
  281. package/declaration/src/export.d.ts +85 -0
  282. package/declaration/src/index.d.ts +10 -0
  283. package/declaration/src/loader/animation.d.ts +2 -0
  284. package/declaration/src/loader/assimpjs.d.ts +42 -0
  285. package/declaration/src/loader/maps.d.ts +4 -0
  286. package/declaration/src/loader/material.d.ts +3 -0
  287. package/declaration/src/loader/mesh.d.ts +3 -0
  288. package/declaration/src/loader/node.d.ts +4 -0
  289. package/declaration/src/loader/texture.d.ts +2 -0
  290. package/declaration/src/loader/types.d.ts +64 -0
  291. package/declaration/src/project/add/camera.d.ts +4 -0
  292. package/declaration/src/project/add/configure.d.ts +3 -0
  293. package/declaration/src/project/add/light.d.ts +6 -0
  294. package/declaration/src/project/add/material.d.ts +14 -0
  295. package/declaration/src/project/add/mesh.d.ts +12 -0
  296. package/declaration/src/project/add/node.d.ts +3 -0
  297. package/declaration/src/project/add/particles.d.ts +4 -0
  298. package/declaration/src/project/add/sprite.d.ts +6 -0
  299. package/declaration/src/project/configuration.d.ts +11 -0
  300. package/declaration/src/project/export/assets.d.ts +9 -0
  301. package/declaration/src/project/export/dialog.d.ts +23 -0
  302. package/declaration/src/project/export/export.d.ts +7 -0
  303. package/declaration/src/project/export/ktx.d.ts +29 -0
  304. package/declaration/src/project/export/lod.d.ts +7 -0
  305. package/declaration/src/project/export/materials.d.ts +8 -0
  306. package/declaration/src/project/export/particles.d.ts +9 -0
  307. package/declaration/src/project/export/physics.d.ts +7 -0
  308. package/declaration/src/project/export/progress.d.ts +11 -0
  309. package/declaration/src/project/export/scripts.d.ts +2 -0
  310. package/declaration/src/project/export/texture.d.ts +6 -0
  311. package/declaration/src/project/load/default.d.ts +3 -0
  312. package/declaration/src/project/load/install.d.ts +23 -0
  313. package/declaration/src/project/load/load.d.ts +16 -0
  314. package/declaration/src/project/load/plugins/animation-groups.d.ts +4 -0
  315. package/declaration/src/project/load/plugins/cameras.d.ts +4 -0
  316. package/declaration/src/project/load/plugins/gui.d.ts +3 -0
  317. package/declaration/src/project/load/plugins/lights.d.ts +4 -0
  318. package/declaration/src/project/load/plugins/meshes.d.ts +3 -0
  319. package/declaration/src/project/load/plugins/morph-targets.d.ts +4 -0
  320. package/declaration/src/project/load/plugins/node-particle-system-sets.d.ts +4 -0
  321. package/declaration/src/project/load/plugins/particle-systems.d.ts +4 -0
  322. package/declaration/src/project/load/plugins/shadow-generators.d.ts +4 -0
  323. package/declaration/src/project/load/plugins/skeletons.d.ts +4 -0
  324. package/declaration/src/project/load/plugins/sounds.d.ts +4 -0
  325. package/declaration/src/project/load/plugins/sprite-managers.d.ts +4 -0
  326. package/declaration/src/project/load/plugins/sprite-maps.d.ts +4 -0
  327. package/declaration/src/project/load/plugins/transform-nodes.d.ts +4 -0
  328. package/declaration/src/project/load/prepare.d.ts +4 -0
  329. package/declaration/src/project/load/progress.d.ts +20 -0
  330. package/declaration/src/project/load/scene.d.ts +34 -0
  331. package/declaration/src/project/load/texture.d.ts +2 -0
  332. package/declaration/src/project/run.d.ts +3 -0
  333. package/declaration/src/project/save/dialog.d.ts +23 -0
  334. package/declaration/src/project/save/progress.d.ts +4 -0
  335. package/declaration/src/project/save/save.d.ts +4 -0
  336. package/declaration/src/project/save/scene.d.ts +2 -0
  337. package/declaration/src/project/tools/geometry.d.ts +7 -0
  338. package/declaration/src/project/tools/morph-target.d.ts +1 -0
  339. package/declaration/src/project/typings.d.ts +34 -0
  340. package/declaration/src/splash/main.d.ts +6 -0
  341. package/declaration/src/splash/preload.d.ts +0 -0
  342. package/declaration/src/tools/animation/group.d.ts +7 -0
  343. package/declaration/src/tools/animation/tools.d.ts +27 -0
  344. package/declaration/src/tools/animation/tween.d.ts +95 -0
  345. package/declaration/src/tools/augmentations.d.ts +10 -0
  346. package/declaration/src/tools/camera/focus.d.ts +7 -0
  347. package/declaration/src/tools/dialog.d.ts +14 -0
  348. package/declaration/src/tools/dom.d.ts +17 -0
  349. package/declaration/src/tools/fs.d.ts +30 -0
  350. package/declaration/src/tools/guards/material.d.ts +21 -0
  351. package/declaration/src/tools/guards/math.d.ts +26 -0
  352. package/declaration/src/tools/guards/nodes.d.ts +103 -0
  353. package/declaration/src/tools/guards/particles.d.ts +22 -0
  354. package/declaration/src/tools/guards/scene.d.ts +12 -0
  355. package/declaration/src/tools/guards/shadows.d.ts +11 -0
  356. package/declaration/src/tools/guards/sound.d.ts +6 -0
  357. package/declaration/src/tools/guards/sprites.d.ts +18 -0
  358. package/declaration/src/tools/guards/texture.d.ts +22 -0
  359. package/declaration/src/tools/ipc.d.ts +14 -0
  360. package/declaration/src/tools/light/ibl.d.ts +2 -0
  361. package/declaration/src/tools/light/shadows.d.ts +19 -0
  362. package/declaration/src/tools/local-storage.d.ts +29 -0
  363. package/declaration/src/tools/marketplaces/ambientcg.d.ts +12 -0
  364. package/declaration/src/tools/marketplaces/polyhaven.d.ts +16 -0
  365. package/declaration/src/tools/marketplaces/provider.d.ts +37 -0
  366. package/declaration/src/tools/marketplaces/registrations.d.ts +3 -0
  367. package/declaration/src/tools/marketplaces/sketchfab/settings.d.ts +8 -0
  368. package/declaration/src/tools/marketplaces/sketchfab.d.ts +29 -0
  369. package/declaration/src/tools/marketplaces/types.d.ts +79 -0
  370. package/declaration/src/tools/material/extract.d.ts +6 -0
  371. package/declaration/src/tools/material/material.d.ts +11 -0
  372. package/declaration/src/tools/material/texture.d.ts +2 -0
  373. package/declaration/src/tools/maths/projection.d.ts +2 -0
  374. package/declaration/src/tools/maths/scalar.d.ts +8 -0
  375. package/declaration/src/tools/mesh/augmentations.d.ts +7 -0
  376. package/declaration/src/tools/mesh/collision.d.ts +7 -0
  377. package/declaration/src/tools/mesh/ground.d.ts +10 -0
  378. package/declaration/src/tools/mesh/instance.d.ts +3 -0
  379. package/declaration/src/tools/node/clone.d.ts +10 -0
  380. package/declaration/src/tools/node/metadata.d.ts +55 -0
  381. package/declaration/src/tools/node/parenting.d.ts +11 -0
  382. package/declaration/src/tools/node-pty.d.ts +43 -0
  383. package/declaration/src/tools/observables.d.ts +45 -0
  384. package/declaration/src/tools/os.d.ts +10 -0
  385. package/declaration/src/tools/particles/augmentations.d.ts +7 -0
  386. package/declaration/src/tools/particles/extract.d.ts +10 -0
  387. package/declaration/src/tools/particles/metadata.d.ts +39 -0
  388. package/declaration/src/tools/particles/particle.d.ts +6 -0
  389. package/declaration/src/tools/particles/texture.d.ts +8 -0
  390. package/declaration/src/tools/physics/init.d.ts +5 -0
  391. package/declaration/src/tools/physics/serialization/aggregate.d.ts +33 -0
  392. package/declaration/src/tools/physics/shape.d.ts +7 -0
  393. package/declaration/src/tools/plugins/require.d.ts +7 -0
  394. package/declaration/src/tools/plugins/watch.d.ts +5 -0
  395. package/declaration/src/tools/process.d.ts +36 -0
  396. package/declaration/src/tools/project.d.ts +27 -0
  397. package/declaration/src/tools/property.d.ts +15 -0
  398. package/declaration/src/tools/recast/init.d.ts +2 -0
  399. package/declaration/src/tools/scene/materials.d.ts +7 -0
  400. package/declaration/src/tools/scene/play/compile.d.ts +4 -0
  401. package/declaration/src/tools/scene/play/override.d.ts +7 -0
  402. package/declaration/src/tools/scene/rename.d.ts +7 -0
  403. package/declaration/src/tools/scene/scene-link.d.ts +17 -0
  404. package/declaration/src/tools/scene/screenshot.d.ts +11 -0
  405. package/declaration/src/tools/sound/augmentations.d.ts +7 -0
  406. package/declaration/src/tools/sound/tools.d.ts +15 -0
  407. package/declaration/src/tools/sprite/augmentations.d.ts +8 -0
  408. package/declaration/src/tools/sprite/preview.d.ts +6 -0
  409. package/declaration/src/tools/sprite/tools.d.ts +4 -0
  410. package/declaration/src/tools/tools.d.ts +55 -0
  411. package/declaration/src/tools/undoredo.d.ts +24 -0
  412. package/declaration/src/tools/worker.d.ts +17 -0
  413. package/declaration/src/tools/workers/md5.d.ts +2 -0
  414. package/declaration/src/tools/workers/script.d.ts +9 -0
  415. package/declaration/src/tools/workers/thumbnail/main.d.ts +2 -0
  416. package/declaration/src/tools/workers/thumbnail/material.d.ts +2 -0
  417. package/declaration/src/tools/workers/thumbnail/mesh.d.ts +2 -0
  418. package/declaration/src/ui/color-picker.d.ts +15 -0
  419. package/declaration/src/ui/dialog.d.ts +13 -0
  420. package/declaration/src/ui/scene-asset-browser.d.ts +88 -0
  421. package/declaration/src/ui/shadcn/ui/alert-dialog.d.ts +20 -0
  422. package/declaration/src/ui/shadcn/ui/alert.d.ts +9 -0
  423. package/declaration/src/ui/shadcn/ui/badge.d.ts +9 -0
  424. package/declaration/src/ui/shadcn/ui/breadcrumb.d.ts +19 -0
  425. package/declaration/src/ui/shadcn/ui/button.d.ts +11 -0
  426. package/declaration/src/ui/shadcn/ui/checkbox.d.ts +4 -0
  427. package/declaration/src/ui/shadcn/ui/command.d.ts +82 -0
  428. package/declaration/src/ui/shadcn/ui/context-menu.d.ts +27 -0
  429. package/declaration/src/ui/shadcn/ui/dialog.d.ts +19 -0
  430. package/declaration/src/ui/shadcn/ui/dropdown-menu.d.ts +27 -0
  431. package/declaration/src/ui/shadcn/ui/field.d.ts +24 -0
  432. package/declaration/src/ui/shadcn/ui/hover-card.d.ts +6 -0
  433. package/declaration/src/ui/shadcn/ui/input.d.ts +5 -0
  434. package/declaration/src/ui/shadcn/ui/label.d.ts +5 -0
  435. package/declaration/src/ui/shadcn/ui/menubar.d.ts +31 -0
  436. package/declaration/src/ui/shadcn/ui/popover.d.ts +7 -0
  437. package/declaration/src/ui/shadcn/ui/progress.d.ts +4 -0
  438. package/declaration/src/ui/shadcn/ui/radio-group.d.ts +5 -0
  439. package/declaration/src/ui/shadcn/ui/resizable.d.ts +23 -0
  440. package/declaration/src/ui/shadcn/ui/select.d.ts +13 -0
  441. package/declaration/src/ui/shadcn/ui/separator.d.ts +4 -0
  442. package/declaration/src/ui/shadcn/ui/slider.d.ts +4 -0
  443. package/declaration/src/ui/shadcn/ui/sonner.d.ts +4 -0
  444. package/declaration/src/ui/shadcn/ui/switch.d.ts +4 -0
  445. package/declaration/src/ui/shadcn/ui/table.d.ts +10 -0
  446. package/declaration/src/ui/shadcn/ui/tabs.d.ts +7 -0
  447. package/declaration/src/ui/shadcn/ui/textarea.d.ts +3 -0
  448. package/declaration/src/ui/shadcn/ui/toggle-group.d.ts +12 -0
  449. package/declaration/src/ui/shadcn/ui/toggle.d.ts +12 -0
  450. package/declaration/src/ui/shadcn/ui/toolbar-radio-group.d.ts +5 -0
  451. package/declaration/src/ui/shadcn/ui/tooltip.d.ts +7 -0
  452. package/declaration/src/ui/spinner.d.ts +2 -0
  453. package/declaration/src/ui/toolbar.d.ts +4 -0
  454. package/declaration/src/ui/utils.d.ts +2 -0
  455. package/package.json +135 -38
  456. package/index.d.ts +0 -6126
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import * as PopoverPrimitive from "@radix-ui/react-popover";
3
+ declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
4
+ declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
5
+ declare const PopoverAnchor: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React.RefAttributes<HTMLDivElement>>;
6
+ declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
7
+ export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import * as ProgressPrimitive from "@radix-ui/react-progress";
3
+ declare const Progress: React.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
4
+ export { Progress };
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
3
+ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
4
+ declare const RadioGroupItem: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
5
+ export { RadioGroup, RadioGroupItem };
@@ -0,0 +1,23 @@
1
+ import * as ResizablePrimitive from "react-resizable-panels";
2
+ declare const ResizablePanelGroup: ({ className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => import("react/jsx-runtime").JSX.Element;
3
+ declare const ResizablePanel: import("react").ForwardRefExoticComponent<Omit<import("react").HTMLAttributes<keyof HTMLElementTagNameMap>, "id" | "onResize"> & {
4
+ className?: string | undefined;
5
+ collapsedSize?: number | undefined;
6
+ collapsible?: boolean | undefined;
7
+ defaultSize?: number | undefined;
8
+ id?: string | undefined;
9
+ maxSize?: number | undefined;
10
+ minSize?: number | undefined;
11
+ onCollapse?: ResizablePrimitive.PanelOnCollapse | undefined;
12
+ onExpand?: ResizablePrimitive.PanelOnExpand | undefined;
13
+ onResize?: ResizablePrimitive.PanelOnResize | undefined;
14
+ order?: number | undefined;
15
+ style?: object | undefined;
16
+ tagName?: keyof HTMLElementTagNameMap | undefined;
17
+ } & {
18
+ children?: import("react").ReactNode;
19
+ } & import("react").RefAttributes<ResizablePrimitive.ImperativePanelHandle>>;
20
+ declare const ResizableHandle: ({ withHandle, className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
21
+ withHandle?: boolean;
22
+ }) => import("react/jsx-runtime").JSX.Element;
23
+ export { ResizablePanelGroup, ResizablePanel, ResizableHandle };
@@ -0,0 +1,13 @@
1
+ import * as React from "react";
2
+ import * as SelectPrimitive from "@radix-ui/react-select";
3
+ declare const Select: React.FC<SelectPrimitive.SelectProps>;
4
+ declare const SelectGroup: React.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
5
+ declare const SelectValue: React.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>>;
6
+ declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
7
+ declare const SelectScrollUpButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
8
+ declare const SelectScrollDownButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
9
+ declare const SelectContent: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
10
+ declare const SelectLabel: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
11
+ declare const SelectItem: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
12
+ declare const SelectSeparator: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
13
+ export { Select, SelectGroup, SelectValue, SelectTrigger, SelectContent, SelectLabel, SelectItem, SelectSeparator, SelectScrollUpButton, SelectScrollDownButton };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import * as SeparatorPrimitive from "@radix-ui/react-separator";
3
+ declare const Separator: React.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
4
+ export { Separator };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import * as SliderPrimitive from "@radix-ui/react-slider";
3
+ declare const Slider: React.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
4
+ export { Slider };
@@ -0,0 +1,4 @@
1
+ import { Toaster as Sonner } from "sonner";
2
+ type ToasterProps = React.ComponentProps<typeof Sonner>;
3
+ declare const Toaster: ({ ...props }: ToasterProps) => import("react/jsx-runtime").JSX.Element;
4
+ export { Toaster };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import * as SwitchPrimitives from "@radix-ui/react-switch";
3
+ declare const Switch: React.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
4
+ export { Switch };
@@ -0,0 +1,10 @@
1
+ import * as React from "react";
2
+ declare const Table: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableElement> & React.RefAttributes<HTMLTableElement>>;
3
+ declare const TableHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
4
+ declare const TableBody: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
5
+ declare const TableFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
6
+ declare const TableRow: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableRowElement> & React.RefAttributes<HTMLTableRowElement>>;
7
+ declare const TableHead: React.ForwardRefExoticComponent<React.ThHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
8
+ declare const TableCell: React.ForwardRefExoticComponent<React.TdHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
9
+ declare const TableCaption: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableCaptionElement> & React.RefAttributes<HTMLTableCaptionElement>>;
10
+ export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption };
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import * as TabsPrimitive from "@radix-ui/react-tabs";
3
+ declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
4
+ declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
5
+ declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
6
+ declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
7
+ export { Tabs, TabsList, TabsTrigger, TabsContent };
@@ -0,0 +1,3 @@
1
+ import * as React from "react";
2
+ declare const Textarea: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
3
+ export { Textarea };
@@ -0,0 +1,12 @@
1
+ import * as React from "react";
2
+ import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
3
+ import { type VariantProps } from "class-variance-authority";
4
+ declare const ToggleGroup: React.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
5
+ variant?: "default" | "outline" | null | undefined;
6
+ size?: "default" | "sm" | "lg" | null | undefined;
7
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string>) & React.RefAttributes<HTMLDivElement>>;
8
+ declare const ToggleGroupItem: React.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
9
+ variant?: "default" | "outline" | null | undefined;
10
+ size?: "default" | "sm" | "lg" | null | undefined;
11
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
12
+ export { ToggleGroup, ToggleGroupItem };
@@ -0,0 +1,12 @@
1
+ import * as React from "react";
2
+ import * as TogglePrimitive from "@radix-ui/react-toggle";
3
+ import { type VariantProps } from "class-variance-authority";
4
+ declare const toggleVariants: (props?: ({
5
+ variant?: "default" | "outline" | null | undefined;
6
+ size?: "default" | "sm" | "lg" | null | undefined;
7
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
8
+ declare const Toggle: React.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
9
+ variant?: "default" | "outline" | null | undefined;
10
+ size?: "default" | "sm" | "lg" | null | undefined;
11
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
12
+ export { Toggle, toggleVariants };
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
3
+ declare const ToolbarRadioGroup: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
4
+ declare const ToolbarRadioGroupItem: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
5
+ export { ToolbarRadioGroup, ToolbarRadioGroupItem };
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import * as TooltipPrimitive from "@radix-ui/react-tooltip";
3
+ declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
4
+ declare const Tooltip: React.FC<TooltipPrimitive.TooltipProps>;
5
+ declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
6
+ declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
7
+ export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider };
@@ -0,0 +1,2 @@
1
+ import { OvalProps } from "react-loader-spinner";
2
+ export declare function SpinnerUIComponent(props: OvalProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { PropsWithChildren } from "react";
2
+ export interface IToolbarComponentProps extends PropsWithChildren {
3
+ }
4
+ export declare function ToolbarComponent(props: IToolbarComponentProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { type ClassValue } from "clsx";
2
+ export declare function cn(...inputs: ClassValue[]): string;
package/package.json CHANGED
@@ -1,40 +1,137 @@
1
1
  {
2
- "name": "babylonjs-editor",
3
- "version": "4.5.0",
4
- "description": "Babylon.js Editor is a Web Application helping artists to work with Babylon.js",
5
- "productName": "Babylon.js Editor",
6
- "typings": "index.d.ts",
7
- "repository": {
8
- "url": "https://github.com/BabylonJS/Editor/"
9
- },
10
- "author": {
11
- "name": "Julien Moreau-Mathis",
12
- "url": "https://medium.com/@Luaacro"
13
- },
14
- "scripts": {},
15
- "readme": "https://github.com/BabylonJS/Editor/blob/master/README.md",
16
- "license": "(Apache-2.0)",
17
- "devDependencies": {},
18
- "dependencies": {
19
- "@types/dat.gui": "0.7.5",
20
- "@types/fs-extra": "8.1.0",
21
- "@types/node": "13.9.0",
22
- "@types/react": "16.9.19",
23
- "@types/react-dom": "16.9.5",
24
- "typescript": "4.6.3",
25
- "babylonjs": "5.19.0",
26
- "babylonjs-gui": "5.19.0",
27
- "babylonjs-inspector": "5.19.0",
28
- "babylonjs-loaders": "5.19.0",
29
- "babylonjs-materials": "5.19.0",
30
- "babylonjs-node-editor": "5.19.0",
31
- "babylonjs-post-process": "5.19.0",
32
- "babylonjs-procedural-textures": "5.19.0",
33
- "babylonjs-serializers": "5.19.0",
34
- "@blueprintjs/core": "3.28.1",
35
- "@blueprintjs/select": "3.13.2",
36
- "react": "16.12.0",
37
- "react-dom": "16.12.0",
38
- "filenamify": "4.2.0"
39
- }
2
+ "name": "babylonjs-editor",
3
+ "version": "5.4.0-alpha.2",
4
+ "description": "Babylon.js Editor is a Web Application helping artists to work with Babylon.js",
5
+ "productName": "Babylon.js Editor",
6
+ "main": "build/src/index.js",
7
+ "typings": "declaration/src/export.d.ts",
8
+ "author": {
9
+ "name": "Julien Moreau-Mathis",
10
+ "url": "https://twitter.com/luaacro"
11
+ },
12
+ "scripts": {
13
+ "postinstall": "rimraf --glob ./node_modules/babylonjs-editor-tools ./node_modules/babylonjs-editor-cli",
14
+ "build": "tsc -p . && tailwindcss -i ./index.css -o ./build/index.css && node esbuild.mjs",
15
+ "watch": "concurrently -i \"tsc -p . --watch\" \"node esbuild.mjs --watch\" -c bgYellow.bold,bgBlue.bold --names editor-ts,editor-dependencies",
16
+ "watch-css": "tailwindcss -i ./index.css -o ./build/index.css --watch",
17
+ "watch-all": "concurrently \"yarn watch\" \"yarn watch-css\" \"node esbuild.mjs --watch\" -c bgYellow.bold,bgBlue.bold,bgGreen.bold --names editor-ts,editor-css,editor-dependencies",
18
+ "start": "electron .",
19
+ "test": "vitest run",
20
+ "watch-test": "vitest --watch",
21
+ "coverage": "vitest run --coverage"
22
+ },
23
+ "license": "(Apache-2.0)",
24
+ "devDependencies": {
25
+ "@electron/rebuild": "4.0.2",
26
+ "@types/decompress": "4.2.7",
27
+ "@types/fluent-ffmpeg": "^2.1.27",
28
+ "@types/node": "^22",
29
+ "@types/pngjs": "6.0.5",
30
+ "@types/react": "18.2.47",
31
+ "@types/react-dom": "18.2.18",
32
+ "@vitest/coverage-v8": "4.0.17",
33
+ "concurrently": "9.2.0",
34
+ "electron": "39.2.7",
35
+ "electron-builder": "26.0.12",
36
+ "electron-reloader": "1.2.3",
37
+ "postcss-import": "16.1.0",
38
+ "tailwindcss": "3.4.4",
39
+ "typescript": "5.9.3",
40
+ "vitest": "4.0.17"
41
+ },
42
+ "dependencies": {
43
+ "@babylonjs/addons": "8.56.2",
44
+ "@babylonjs/core": "8.56.2",
45
+ "@babylonjs/havok": "1.3.10",
46
+ "@blueprintjs/core": "^5.10.0",
47
+ "@blueprintjs/select": "^5.1.2",
48
+ "@emotion/react": "^11.13.3",
49
+ "@heroicons/react": "2.1.1",
50
+ "@jniac/color-xplr": "1.0.15",
51
+ "@radix-ui/react-alert-dialog": "^1.0.5",
52
+ "@radix-ui/react-checkbox": "^1.1.2",
53
+ "@radix-ui/react-context-menu": "^2.1.5",
54
+ "@radix-ui/react-dialog": "^1.0.5",
55
+ "@radix-ui/react-dropdown-menu": "^2.0.6",
56
+ "@radix-ui/react-hover-card": "1.1.14",
57
+ "@radix-ui/react-icons": "^1.3.0",
58
+ "@radix-ui/react-label": "^2.0.2",
59
+ "@radix-ui/react-menubar": "^1.0.4",
60
+ "@radix-ui/react-popover": "^1.0.7",
61
+ "@radix-ui/react-progress": "^1.0.3",
62
+ "@radix-ui/react-radio-group": "^1.1.3",
63
+ "@radix-ui/react-select": "^2.0.0",
64
+ "@radix-ui/react-separator": "^1.0.3",
65
+ "@radix-ui/react-slider": "^1.2.0",
66
+ "@radix-ui/react-slot": "^1.0.2",
67
+ "@radix-ui/react-switch": "^1.0.3",
68
+ "@radix-ui/react-tabs": "^1.0.4",
69
+ "@radix-ui/react-toggle": "^1.1.1",
70
+ "@radix-ui/react-toggle-group": "1.1.11",
71
+ "@radix-ui/react-tooltip": "^1.0.7",
72
+ "@recast-navigation/core": "0.43.0",
73
+ "@recast-navigation/generators": "0.43.0",
74
+ "@xterm/addon-fit": "0.11.0",
75
+ "@xterm/xterm": "6.1.0-beta.22",
76
+ "assimpjs": "0.0.10",
77
+ "axios": "1.13.5",
78
+ "babylonjs": "8.56.2",
79
+ "babylonjs-addons": "8.56.2",
80
+ "babylonjs-editor-cli": "latest",
81
+ "babylonjs-editor-tools": "latest",
82
+ "babylonjs-gui": "8.56.2",
83
+ "babylonjs-gui-editor": "8.56.2",
84
+ "babylonjs-loaders": "8.56.2",
85
+ "babylonjs-materials": "8.56.2",
86
+ "babylonjs-node-editor": "8.56.2",
87
+ "babylonjs-node-particle-editor": "8.56.2",
88
+ "babylonjs-post-process": "8.56.2",
89
+ "babylonjs-procedural-textures": "8.56.2",
90
+ "chokidar": "^4.0.3",
91
+ "class-variance-authority": "^0.7.0",
92
+ "clsx": "^2.1.0",
93
+ "cmdk": "^1.0.0",
94
+ "decompress": "^4.2.1",
95
+ "decompress-targz": "^4.1.1",
96
+ "dotenv": "17.2.3",
97
+ "dunder-proto": "1.0.1",
98
+ "electron-updater": "6.6.2",
99
+ "esbuild": "0.27.2",
100
+ "filenamify": "4.3.0",
101
+ "flexlayout-react": "0.7.15",
102
+ "fluent-ffmpeg": "^2.1.3",
103
+ "framer-motion": "12.23.24",
104
+ "fs-extra": "11.2.0",
105
+ "glob": "11.1.0",
106
+ "markdown-to-jsx": "7.6.2",
107
+ "math-expression-evaluator": "^2.0.6",
108
+ "md5": "2.3.0",
109
+ "motion": "12.23.24",
110
+ "next-themes": "^0.3.0",
111
+ "node-pty": "1.1.0-beta43",
112
+ "pngjs": "7.0.0",
113
+ "react": "18.2.0",
114
+ "react-awesome-reveal": "4.2.14",
115
+ "react-dom": "18.2.0",
116
+ "react-icons": "5.5.0",
117
+ "react-loader-spinner": "6.1.6",
118
+ "react-resizable-panels": "^2.1.2",
119
+ "react-selectable": "^2.1.1",
120
+ "sharp": "0.34.3",
121
+ "sonner": "^1.4.41",
122
+ "tailwind-merge": "^2.2.1",
123
+ "tailwindcss-animate": "^1.0.7",
124
+ "usehooks-ts": "^3.1.0",
125
+ "webm-muxer": "^5.0.2"
126
+ },
127
+ "build": {
128
+ "protocols": [
129
+ {
130
+ "name": "Babylon.js Editor",
131
+ "schemes": [
132
+ "babylonjs-editor"
133
+ ]
134
+ }
135
+ ]
136
+ }
40
137
  }