@babylonjs/inspector 8.46.1 → 8.46.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.
|
@@ -7675,7 +7675,7 @@ export const MaterialSelector: FunctionComponent<MaterialSelectorProps>;
|
|
|
7675
7675
|
|
|
7676
7676
|
}
|
|
7677
7677
|
declare module "@babylonjs/inspector/fluent/primitives/list" {
|
|
7678
|
-
import {
|
|
7678
|
+
import { ReactElement, ReactNode } from "react";
|
|
7679
7679
|
/**
|
|
7680
7680
|
* Represents an item in a list
|
|
7681
7681
|
*/
|
|
@@ -8200,8 +8200,8 @@ type GradientListProps<T extends FactorGradient | Color3Gradient | Color4Gradien
|
|
|
8200
8200
|
label: string;
|
|
8201
8201
|
gradients: Nullable<Array<T>>;
|
|
8202
8202
|
addGradient: (step?: T) => void;
|
|
8203
|
-
removeGradient: (step: T) => void;
|
|
8204
|
-
onChange: (newGradient: T) => void;
|
|
8203
|
+
removeGradient: (step: T, index: number) => void;
|
|
8204
|
+
onChange: (newGradient: T, index: number) => void;
|
|
8205
8205
|
};
|
|
8206
8206
|
export const FactorGradientList: FunctionComponent<GradientListProps<FactorGradient>>;
|
|
8207
8207
|
export const Color3GradientList: FunctionComponent<GradientListProps<Color3Gradient>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/inspector",
|
|
3
|
-
"version": "8.46.
|
|
3
|
+
"version": "8.46.2",
|
|
4
4
|
"module": "dist/babylon.inspector.bundle.js",
|
|
5
5
|
"main": "dist/babylon.inspector.bundle.js",
|
|
6
6
|
"esnext": "dist/babylon.inspector.bundle.js",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"@types/react-dom": ">=16.0.9"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@babylonjs/addons": "^8.46.
|
|
38
|
-
"@babylonjs/core": "^8.46.
|
|
39
|
-
"@babylonjs/gui": "^8.46.
|
|
40
|
-
"@babylonjs/gui-editor": "^8.46.
|
|
41
|
-
"@babylonjs/loaders": "^8.46.
|
|
42
|
-
"@babylonjs/materials": "^8.46.
|
|
43
|
-
"@babylonjs/serializers": "^8.46.
|
|
37
|
+
"@babylonjs/addons": "^8.46.2",
|
|
38
|
+
"@babylonjs/core": "^8.46.2",
|
|
39
|
+
"@babylonjs/gui": "^8.46.2",
|
|
40
|
+
"@babylonjs/gui-editor": "^8.46.2",
|
|
41
|
+
"@babylonjs/loaders": "^8.46.2",
|
|
42
|
+
"@babylonjs/materials": "^8.46.2",
|
|
43
|
+
"@babylonjs/serializers": "^8.46.2",
|
|
44
44
|
"@dev/inspector": "1.0.0",
|
|
45
45
|
"@lts/gui": "1.0.0",
|
|
46
46
|
"react": "^18.2.0",
|