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.
package/babylon.inspector.d.ts
CHANGED
|
@@ -7417,8 +7417,8 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
7417
7417
|
label: string;
|
|
7418
7418
|
gradients: BABYLON.Nullable<Array<T>>;
|
|
7419
7419
|
addGradient: (step?: T) => void;
|
|
7420
|
-
removeGradient: (step: T) => void;
|
|
7421
|
-
onChange: (newGradient: T) => void;
|
|
7420
|
+
removeGradient: (step: T, index: number) => void;
|
|
7421
|
+
onChange: (newGradient: T, index: number) => void;
|
|
7422
7422
|
};
|
|
7423
7423
|
export var FactorGradientList: React.FunctionComponent<GradientListProps<BABYLON.FactorGradient>>;
|
|
7424
7424
|
export var Color3GradientList: React.FunctionComponent<GradientListProps<BABYLON.Color3Gradient>>;
|
|
@@ -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>>;
|
|
@@ -17172,8 +17172,8 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
17172
17172
|
label: string;
|
|
17173
17173
|
gradients: BABYLON.Nullable<Array<T>>;
|
|
17174
17174
|
addGradient: (step?: T) => void;
|
|
17175
|
-
removeGradient: (step: T) => void;
|
|
17176
|
-
onChange: (newGradient: T) => void;
|
|
17175
|
+
removeGradient: (step: T, index: number) => void;
|
|
17176
|
+
onChange: (newGradient: T, index: number) => void;
|
|
17177
17177
|
};
|
|
17178
17178
|
export var FactorGradientList: React.FunctionComponent<GradientListProps<BABYLON.FactorGradient>>;
|
|
17179
17179
|
export var Color3GradientList: React.FunctionComponent<GradientListProps<BABYLON.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
|
"main": "babylon.inspector.bundle.js",
|
|
5
5
|
"types": "babylon.inspector.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^8.46.
|
|
18
|
-
"babylonjs-addons": "^8.46.
|
|
19
|
-
"babylonjs-gui": "^8.46.
|
|
20
|
-
"babylonjs-gui-editor": "^8.46.
|
|
21
|
-
"babylonjs-loaders": "^8.46.
|
|
22
|
-
"babylonjs-materials": "^8.46.
|
|
23
|
-
"babylonjs-serializers": "^8.46.
|
|
17
|
+
"babylonjs": "^8.46.2",
|
|
18
|
+
"babylonjs-addons": "^8.46.2",
|
|
19
|
+
"babylonjs-gui": "^8.46.2",
|
|
20
|
+
"babylonjs-gui-editor": "^8.46.2",
|
|
21
|
+
"babylonjs-loaders": "^8.46.2",
|
|
22
|
+
"babylonjs-materials": "^8.46.2",
|
|
23
|
+
"babylonjs-serializers": "^8.46.2"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@dev/addons": "1.0.0",
|