@babylonjs/node-editor 5.0.0-rc.0 → 5.0.0-rc.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.
|
@@ -2196,8 +2196,6 @@ declare module "@babylonjs/node-editor/sharedUiComponents/lines/checkBoxLineComp
|
|
|
2196
2196
|
isDisabled?: boolean;
|
|
2197
2197
|
isConflict: boolean;
|
|
2198
2198
|
}> {
|
|
2199
|
-
private static _UniqueIdSeed;
|
|
2200
|
-
private _uniqueId;
|
|
2201
2199
|
private _localChange;
|
|
2202
2200
|
constructor(props: ICheckBoxLineComponentProps);
|
|
2203
2201
|
shouldComponentUpdate(nextProps: ICheckBoxLineComponentProps, nextState: {
|
|
@@ -2296,7 +2294,7 @@ declare module "@babylonjs/node-editor/sharedUiComponents/lines/textInputLineCom
|
|
|
2296
2294
|
import { PropertyChangedEvent } from "@babylonjs/node-editor/sharedUiComponents/propertyChangedEvent";
|
|
2297
2295
|
import { LockObject } from "@babylonjs/node-editor/sharedUiComponents/tabs/propertyGrids/lockObject";
|
|
2298
2296
|
interface ITextInputLineComponentProps {
|
|
2299
|
-
label
|
|
2297
|
+
label?: string;
|
|
2300
2298
|
lockObject: LockObject;
|
|
2301
2299
|
target?: any;
|
|
2302
2300
|
propertyName?: string;
|
|
@@ -2611,6 +2609,16 @@ declare module "@babylonjs/node-editor/sharedUiComponents/lines/iconButtonLineCo
|
|
|
2611
2609
|
render(): JSX.Element;
|
|
2612
2610
|
}
|
|
2613
2611
|
}
|
|
2612
|
+
declare module "@babylonjs/node-editor/sharedUiComponents/lines/iconComponent" {
|
|
2613
|
+
import * as React from "react";
|
|
2614
|
+
interface IIconComponentProps {
|
|
2615
|
+
icon: string;
|
|
2616
|
+
label?: string;
|
|
2617
|
+
}
|
|
2618
|
+
export class IconComponent extends React.Component<IIconComponentProps> {
|
|
2619
|
+
render(): JSX.Element;
|
|
2620
|
+
}
|
|
2621
|
+
}
|
|
2614
2622
|
declare module "@babylonjs/node-editor/sharedUiComponents/lines/indentedTextLineComponent" {
|
|
2615
2623
|
import * as React from "react";
|
|
2616
2624
|
interface IIndentedTextLineComponentProps {
|
package/package.json
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
},
|
|
5
5
|
"name": "@babylonjs/node-editor",
|
|
6
6
|
"description": "The Babylon.js node material editor.",
|
|
7
|
-
"version": "5.0.0-rc.
|
|
7
|
+
"version": "5.0.0-rc.1",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/BabylonJS/Babylon.js.git"
|
|
11
11
|
},
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@babylonjs/core": "5.0.0-rc.
|
|
14
|
+
"@babylonjs/core": "5.0.0-rc.1",
|
|
15
15
|
"tslib": "^2.3.1"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|