babylonjs-editor 5.4.1-alpha.0 → 5.4.1-alpha.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.
@@ -0,0 +1,12 @@
1
+ import { Component, ReactNode } from "react";
2
+ import { ClusteredLightContainer } from "babylonjs";
3
+ import { IEditorInspectorImplementationProps } from "../inspector";
4
+ export declare class EditorClusteredLightContainerInspector extends Component<IEditorInspectorImplementationProps<ClusteredLightContainer>> {
5
+ /**
6
+ * Returns whether or not the given object is supported by this inspector.
7
+ * @param object defines the object to check.
8
+ * @returns true if the object is supported by this inspector.
9
+ */
10
+ static IsSupported(object: unknown): boolean;
11
+ render(): ReactNode;
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-editor",
3
- "version": "5.4.1-alpha.0",
3
+ "version": "5.4.1-alpha.1",
4
4
  "description": "Babylon.js Editor is a Web Application helping artists to work with Babylon.js",
5
5
  "productName": "Babylon.js Editor",
6
6
  "main": "build/src/index.js",