@babylonjs/inspector 5.0.0-rc.3 → 5.0.0-rc.4
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.
@@ -1048,7 +1048,6 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/colorLineComponent
|
|
1048
1048
|
interface IColorLineComponentState {
|
1049
1049
|
isExpanded: boolean;
|
1050
1050
|
color: Color4;
|
1051
|
-
colorString: string;
|
1052
1051
|
}
|
1053
1052
|
export class ColorLineComponent extends React.Component<IColorLineComponentProps, IColorLineComponentState> {
|
1054
1053
|
constructor(props: IColorLineComponentProps);
|
@@ -1056,20 +1055,14 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/colorLineComponent
|
|
1056
1055
|
getValue(props?: Readonly<IColorLineComponentProps> & Readonly<{
|
1057
1056
|
children?: React.ReactNode;
|
1058
1057
|
}>): Color4;
|
1059
|
-
getValueAsString(props?: Readonly<IColorLineComponentProps> & Readonly<{
|
1060
|
-
children?: React.ReactNode;
|
1061
|
-
}>): string;
|
1062
1058
|
setColorFromString(colorString: string): void;
|
1063
|
-
setColor(
|
1064
|
-
updateColor(newColor: Color4): void;
|
1059
|
+
setColor(newColor: Color4): void;
|
1065
1060
|
switchExpandState(): void;
|
1066
1061
|
updateStateR(value: number): void;
|
1067
1062
|
updateStateG(value: number): void;
|
1068
1063
|
updateStateB(value: number): void;
|
1069
1064
|
updateStateA(value: number): void;
|
1070
1065
|
copyToClipboard(): void;
|
1071
|
-
get colorString(): string;
|
1072
|
-
set colorString(_: string);
|
1073
1066
|
private convertToColor;
|
1074
1067
|
private toColor3;
|
1075
1068
|
render(): JSX.Element;
|
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
},
|
5
5
|
"name": "@babylonjs/inspector",
|
6
6
|
"description": "The Babylon.js inspector.",
|
7
|
-
"version": "5.0.0-rc.
|
7
|
+
"version": "5.0.0-rc.4",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
10
|
"url": "https://github.com/BabylonJS/Babylon.js.git"
|
@@ -27,12 +27,12 @@
|
|
27
27
|
],
|
28
28
|
"license": "Apache-2.0",
|
29
29
|
"dependencies": {
|
30
|
-
"@babylonjs/core": "5.0.0-rc.
|
31
|
-
"@babylonjs/gui": "5.0.0-rc.
|
32
|
-
"@babylonjs/loaders": "5.0.0-rc.
|
33
|
-
"@babylonjs/materials": "5.0.0-rc.
|
34
|
-
"@babylonjs/serializers": "5.0.0-rc.
|
35
|
-
"babylonjs-gltf2interface": "5.0.0-rc.
|
30
|
+
"@babylonjs/core": "5.0.0-rc.4",
|
31
|
+
"@babylonjs/gui": "5.0.0-rc.4",
|
32
|
+
"@babylonjs/loaders": "5.0.0-rc.4",
|
33
|
+
"@babylonjs/materials": "5.0.0-rc.4",
|
34
|
+
"@babylonjs/serializers": "5.0.0-rc.4",
|
35
|
+
"babylonjs-gltf2interface": "5.0.0-rc.4",
|
36
36
|
"tslib": "^2.3.1"
|
37
37
|
},
|
38
38
|
"peerDependencies": {
|