babylonjs-node-editor 7.28.0 → 7.30.0
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.nodeEditor.d.ts +51 -74
- package/babylon.nodeEditor.js +1 -1
- package/babylon.nodeEditor.js.map +1 -1
- package/babylon.nodeEditor.max.js +288 -260
- package/babylon.nodeEditor.module.d.ts +93 -161
- package/package.json +2 -2
package/babylon.nodeEditor.d.ts
CHANGED
|
@@ -217,80 +217,6 @@ declare module BABYLON.NodeEditor {
|
|
|
217
217
|
}
|
|
218
218
|
|
|
219
219
|
|
|
220
|
-
interface ILineWithFileButtonComponentProps {
|
|
221
|
-
title: string;
|
|
222
|
-
closed?: boolean;
|
|
223
|
-
multiple?: boolean;
|
|
224
|
-
label: string;
|
|
225
|
-
iconImage: any;
|
|
226
|
-
onIconClick: (file: File) => void;
|
|
227
|
-
accept: string;
|
|
228
|
-
uploadName?: string;
|
|
229
|
-
}
|
|
230
|
-
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
231
|
-
isExpanded: boolean;
|
|
232
|
-
}> {
|
|
233
|
-
private _uploadRef;
|
|
234
|
-
constructor(props: ILineWithFileButtonComponentProps);
|
|
235
|
-
onChange(evt: any): void;
|
|
236
|
-
switchExpandedState(): void;
|
|
237
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
interface ILineContainerComponentProps {
|
|
242
|
-
title: string;
|
|
243
|
-
children: any[] | any;
|
|
244
|
-
closed?: boolean;
|
|
245
|
-
}
|
|
246
|
-
export class LineContainerComponent extends React.Component<ILineContainerComponentProps, {
|
|
247
|
-
isExpanded: boolean;
|
|
248
|
-
}> {
|
|
249
|
-
constructor(props: ILineContainerComponentProps);
|
|
250
|
-
switchExpandedState(): void;
|
|
251
|
-
renderHeader(): import("react/jsx-runtime").JSX.Element;
|
|
252
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
interface IFileButtonLineComponentProps {
|
|
257
|
-
label: string;
|
|
258
|
-
onClick: (file: File) => void;
|
|
259
|
-
accept: string;
|
|
260
|
-
uploadName?: string;
|
|
261
|
-
}
|
|
262
|
-
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
263
|
-
private _uploadRef;
|
|
264
|
-
constructor(props: IFileButtonLineComponentProps);
|
|
265
|
-
onChange(evt: any): void;
|
|
266
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
export interface IDraggableLineWithButtonComponent {
|
|
271
|
-
data: string;
|
|
272
|
-
tooltip: string;
|
|
273
|
-
iconImage: any;
|
|
274
|
-
onIconClick: (value: string) => void;
|
|
275
|
-
iconTitle: string;
|
|
276
|
-
lenSuffixToRemove?: number;
|
|
277
|
-
}
|
|
278
|
-
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
279
|
-
constructor(props: IDraggableLineWithButtonComponent);
|
|
280
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
export interface IButtonLineComponentProps {
|
|
285
|
-
data: string;
|
|
286
|
-
tooltip: string;
|
|
287
|
-
}
|
|
288
|
-
export class DraggableLineComponent extends React.Component<IButtonLineComponentProps> {
|
|
289
|
-
constructor(props: IButtonLineComponentProps);
|
|
290
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
|
|
294
220
|
export interface ICheckBoxLineComponentProps {
|
|
295
221
|
label: string;
|
|
296
222
|
target?: any;
|
|
@@ -2748,6 +2674,34 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2748
2674
|
|
|
2749
2675
|
|
|
2750
2676
|
|
|
2677
|
+
}
|
|
2678
|
+
declare module BABYLON.NodeEditor {
|
|
2679
|
+
|
|
2680
|
+
|
|
2681
|
+
}
|
|
2682
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2683
|
+
interface ILineWithFileButtonComponentProps {
|
|
2684
|
+
title: string;
|
|
2685
|
+
closed?: boolean;
|
|
2686
|
+
multiple?: boolean;
|
|
2687
|
+
label: string;
|
|
2688
|
+
iconImage: any;
|
|
2689
|
+
onIconClick: (file: File) => void;
|
|
2690
|
+
accept: string;
|
|
2691
|
+
uploadName?: string;
|
|
2692
|
+
}
|
|
2693
|
+
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
2694
|
+
isExpanded: boolean;
|
|
2695
|
+
}> {
|
|
2696
|
+
private _uploadRef;
|
|
2697
|
+
constructor(props: ILineWithFileButtonComponentProps);
|
|
2698
|
+
onChange(evt: any): void;
|
|
2699
|
+
switchExpandedState(): void;
|
|
2700
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
|
|
2704
|
+
|
|
2751
2705
|
}
|
|
2752
2706
|
declare module BABYLON.NodeEditor {
|
|
2753
2707
|
|
|
@@ -3012,6 +2966,28 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
3012
2966
|
|
|
3013
2967
|
|
|
3014
2968
|
|
|
2969
|
+
}
|
|
2970
|
+
declare module BABYLON.NodeEditor {
|
|
2971
|
+
|
|
2972
|
+
|
|
2973
|
+
}
|
|
2974
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2975
|
+
export interface IDraggableLineWithButtonComponent {
|
|
2976
|
+
format: string;
|
|
2977
|
+
data: string;
|
|
2978
|
+
tooltip: string;
|
|
2979
|
+
iconImage: any;
|
|
2980
|
+
onIconClick: (value: string) => void;
|
|
2981
|
+
iconTitle: string;
|
|
2982
|
+
lenSuffixToRemove?: number;
|
|
2983
|
+
}
|
|
2984
|
+
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
2985
|
+
constructor(props: IDraggableLineWithButtonComponent);
|
|
2986
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
2987
|
+
}
|
|
2988
|
+
|
|
2989
|
+
|
|
2990
|
+
|
|
3015
2991
|
}
|
|
3016
2992
|
declare module BABYLON.NodeEditor {
|
|
3017
2993
|
|
|
@@ -3019,6 +2995,7 @@ declare module BABYLON.NodeEditor {
|
|
|
3019
2995
|
}
|
|
3020
2996
|
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
3021
2997
|
export interface IButtonLineComponentProps {
|
|
2998
|
+
format: string;
|
|
3022
2999
|
data: string;
|
|
3023
3000
|
tooltip: string;
|
|
3024
3001
|
}
|