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/checkBoxLineCompo
|
|
|
2150
2150
|
import { Observable } from "babylonjs/Misc/observable";
|
|
2151
2151
|
import { PropertyChangedEvent } from "babylonjs-node-editor/sharedUiComponents/propertyChangedEvent";
|
|
2152
2152
|
export interface ICheckBoxLineComponentProps {
|
|
2153
|
-
label
|
|
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/checkBoxLineCompo
|
|
|
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/textInputLineComp
|
|
|
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/floatLineComponen
|
|
|
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;
|
|
@@ -4871,7 +4875,7 @@ declare module NODEEDITOR {
|
|
|
4871
4875
|
}
|
|
4872
4876
|
declare module NODEEDITOR {
|
|
4873
4877
|
export interface ICheckBoxLineComponentProps {
|
|
4874
|
-
label
|
|
4878
|
+
label?: string;
|
|
4875
4879
|
target?: any;
|
|
4876
4880
|
propertyName?: string;
|
|
4877
4881
|
isSelected?: () => boolean;
|
|
@@ -4881,6 +4885,8 @@ declare module NODEEDITOR {
|
|
|
4881
4885
|
disabled?: boolean;
|
|
4882
4886
|
icon?: string;
|
|
4883
4887
|
iconLabel?: string;
|
|
4888
|
+
faIcons?: {
|
|
4889
|
+
};
|
|
4884
4890
|
}
|
|
4885
4891
|
export class CheckBoxLineComponent extends React.Component<ICheckBoxLineComponentProps, {
|
|
4886
4892
|
isSelected: boolean;
|
|
@@ -4973,6 +4979,7 @@ declare module NODEEDITOR {
|
|
|
4973
4979
|
iconLabel?: string;
|
|
4974
4980
|
noUnderline?: boolean;
|
|
4975
4981
|
numbersOnly?: boolean;
|
|
4982
|
+
delayInput?: boolean;
|
|
4976
4983
|
}
|
|
4977
4984
|
export class TextInputLineComponent extends React.Component<ITextInputLineComponentProps, {
|
|
4978
4985
|
value: string;
|
|
@@ -5155,6 +5162,7 @@ declare module NODEEDITOR {
|
|
|
5155
5162
|
onEnter?: (newValue: number) => void;
|
|
5156
5163
|
icon?: string;
|
|
5157
5164
|
iconLabel?: string;
|
|
5165
|
+
defaultValue?: number;
|
|
5158
5166
|
}
|
|
5159
5167
|
export class FloatLineComponent extends React.Component<IFloatLineComponentProps, {
|
|
5160
5168
|
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.
|
|
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": "5.0.0-alpha.
|
|
14
|
+
"babylonjs": "5.0.0-alpha.64"
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"babylon.nodeEditor.max.js.map",
|