@babylonjs/node-editor 5.0.0-alpha.63 → 5.0.0-alpha.64

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.
@@ -2150,7 +2150,7 @@ declare module "@babylonjs/node-editor/sharedUiComponents/lines/checkBoxLineComp
2150
2150
  import { Observable } from "@babylonjs/core/Misc/observable";
2151
2151
  import { PropertyChangedEvent } from "@babylonjs/node-editor/sharedUiComponents/propertyChangedEvent";
2152
2152
  export interface ICheckBoxLineComponentProps {
2153
- label: string;
2153
+ label?: string;
2154
2154
  target?: any;
2155
2155
  propertyName?: string;
2156
2156
  isSelected?: () => boolean;
@@ -2160,6 +2160,8 @@ declare module "@babylonjs/node-editor/sharedUiComponents/lines/checkBoxLineComp
2160
2160
  disabled?: boolean;
2161
2161
  icon?: string;
2162
2162
  iconLabel?: string;
2163
+ faIcons?: {
2164
+ };
2163
2165
  }
2164
2166
  export class CheckBoxLineComponent extends React.Component<ICheckBoxLineComponentProps, {
2165
2167
  isSelected: boolean;
@@ -2259,6 +2261,7 @@ declare module "@babylonjs/node-editor/sharedUiComponents/lines/textInputLineCom
2259
2261
  iconLabel?: string;
2260
2262
  noUnderline?: boolean;
2261
2263
  numbersOnly?: boolean;
2264
+ delayInput?: boolean;
2262
2265
  }
2263
2266
  export class TextInputLineComponent extends React.Component<ITextInputLineComponentProps, {
2264
2267
  value: string;
@@ -2461,6 +2464,7 @@ declare module "@babylonjs/node-editor/sharedUiComponents/lines/floatLineCompone
2461
2464
  onEnter?: (newValue: number) => void;
2462
2465
  icon?: string;
2463
2466
  iconLabel?: string;
2467
+ defaultValue?: number;
2464
2468
  }
2465
2469
  export class FloatLineComponent extends React.Component<IFloatLineComponentProps, {
2466
2470
  value: string;
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-alpha.63",
7
+ "version": "5.0.0-alpha.64",
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-alpha.63",
14
+ "@babylonjs/core": "5.0.0-alpha.64",
15
15
  "tslib": "^2.3.1"
16
16
  },
17
17
  "files": [