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
|
@@ -364,93 +364,6 @@ export class Popup {
|
|
|
364
364
|
static _CopyStyles(sourceDoc: HTMLDocument, targetDoc: HTMLDocument): void;
|
|
365
365
|
}
|
|
366
366
|
|
|
367
|
-
}
|
|
368
|
-
declare module "babylonjs-node-editor/sharedComponents/lineWithFileButtonComponent" {
|
|
369
|
-
import * as React from "react";
|
|
370
|
-
interface ILineWithFileButtonComponentProps {
|
|
371
|
-
title: string;
|
|
372
|
-
closed?: boolean;
|
|
373
|
-
multiple?: boolean;
|
|
374
|
-
label: string;
|
|
375
|
-
iconImage: any;
|
|
376
|
-
onIconClick: (file: File) => void;
|
|
377
|
-
accept: string;
|
|
378
|
-
uploadName?: string;
|
|
379
|
-
}
|
|
380
|
-
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
381
|
-
isExpanded: boolean;
|
|
382
|
-
}> {
|
|
383
|
-
private _uploadRef;
|
|
384
|
-
constructor(props: ILineWithFileButtonComponentProps);
|
|
385
|
-
onChange(evt: any): void;
|
|
386
|
-
switchExpandedState(): void;
|
|
387
|
-
|
|
388
|
-
}
|
|
389
|
-
export {};
|
|
390
|
-
|
|
391
|
-
}
|
|
392
|
-
declare module "babylonjs-node-editor/sharedComponents/lineContainerComponent" {
|
|
393
|
-
import * as React from "react";
|
|
394
|
-
interface ILineContainerComponentProps {
|
|
395
|
-
title: string;
|
|
396
|
-
children: any[] | any;
|
|
397
|
-
closed?: boolean;
|
|
398
|
-
}
|
|
399
|
-
export class LineContainerComponent extends React.Component<ILineContainerComponentProps, {
|
|
400
|
-
isExpanded: boolean;
|
|
401
|
-
}> {
|
|
402
|
-
constructor(props: ILineContainerComponentProps);
|
|
403
|
-
switchExpandedState(): void;
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
}
|
|
407
|
-
export {};
|
|
408
|
-
|
|
409
|
-
}
|
|
410
|
-
declare module "babylonjs-node-editor/sharedComponents/fileButtonLineComponent" {
|
|
411
|
-
import * as React from "react";
|
|
412
|
-
interface IFileButtonLineComponentProps {
|
|
413
|
-
label: string;
|
|
414
|
-
onClick: (file: File) => void;
|
|
415
|
-
accept: string;
|
|
416
|
-
uploadName?: string;
|
|
417
|
-
}
|
|
418
|
-
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
419
|
-
private _uploadRef;
|
|
420
|
-
constructor(props: IFileButtonLineComponentProps);
|
|
421
|
-
onChange(evt: any): void;
|
|
422
|
-
|
|
423
|
-
}
|
|
424
|
-
export {};
|
|
425
|
-
|
|
426
|
-
}
|
|
427
|
-
declare module "babylonjs-node-editor/sharedComponents/draggableLineWithButtonComponent" {
|
|
428
|
-
import * as React from "react";
|
|
429
|
-
export interface IDraggableLineWithButtonComponent {
|
|
430
|
-
data: string;
|
|
431
|
-
tooltip: string;
|
|
432
|
-
iconImage: any;
|
|
433
|
-
onIconClick: (value: string) => void;
|
|
434
|
-
iconTitle: string;
|
|
435
|
-
lenSuffixToRemove?: number;
|
|
436
|
-
}
|
|
437
|
-
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
438
|
-
constructor(props: IDraggableLineWithButtonComponent);
|
|
439
|
-
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
}
|
|
443
|
-
declare module "babylonjs-node-editor/sharedComponents/draggableLineComponent" {
|
|
444
|
-
import * as React from "react";
|
|
445
|
-
export interface IButtonLineComponentProps {
|
|
446
|
-
data: string;
|
|
447
|
-
tooltip: string;
|
|
448
|
-
}
|
|
449
|
-
export class DraggableLineComponent extends React.Component<IButtonLineComponentProps> {
|
|
450
|
-
constructor(props: IButtonLineComponentProps);
|
|
451
|
-
|
|
452
|
-
}
|
|
453
|
-
|
|
454
367
|
}
|
|
455
368
|
declare module "babylonjs-node-editor/sharedComponents/checkBoxLineComponent" {
|
|
456
369
|
import * as React from "react";
|
|
@@ -3059,6 +2972,30 @@ export class LinkButtonComponent extends React.Component<ILinkButtonComponentPro
|
|
|
3059
2972
|
}
|
|
3060
2973
|
export {};
|
|
3061
2974
|
|
|
2975
|
+
}
|
|
2976
|
+
declare module "babylonjs-node-editor/lines/lineWithFileButtonComponent" {
|
|
2977
|
+
import * as React from "react";
|
|
2978
|
+
interface ILineWithFileButtonComponentProps {
|
|
2979
|
+
title: string;
|
|
2980
|
+
closed?: boolean;
|
|
2981
|
+
multiple?: boolean;
|
|
2982
|
+
label: string;
|
|
2983
|
+
iconImage: any;
|
|
2984
|
+
onIconClick: (file: File) => void;
|
|
2985
|
+
accept: string;
|
|
2986
|
+
uploadName?: string;
|
|
2987
|
+
}
|
|
2988
|
+
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
2989
|
+
isExpanded: boolean;
|
|
2990
|
+
}> {
|
|
2991
|
+
private _uploadRef;
|
|
2992
|
+
constructor(props: ILineWithFileButtonComponentProps);
|
|
2993
|
+
onChange(evt: any): void;
|
|
2994
|
+
switchExpandedState(): void;
|
|
2995
|
+
|
|
2996
|
+
}
|
|
2997
|
+
export {};
|
|
2998
|
+
|
|
3062
2999
|
}
|
|
3063
3000
|
declare module "babylonjs-node-editor/lines/lineContainerComponent" {
|
|
3064
3001
|
import * as React from "react";
|
|
@@ -3287,10 +3224,28 @@ export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
|
3287
3224
|
}
|
|
3288
3225
|
export {};
|
|
3289
3226
|
|
|
3227
|
+
}
|
|
3228
|
+
declare module "babylonjs-node-editor/lines/draggableLineWithButtonComponent" {
|
|
3229
|
+
import * as React from "react";
|
|
3230
|
+
export interface IDraggableLineWithButtonComponent {
|
|
3231
|
+
format: string;
|
|
3232
|
+
data: string;
|
|
3233
|
+
tooltip: string;
|
|
3234
|
+
iconImage: any;
|
|
3235
|
+
onIconClick: (value: string) => void;
|
|
3236
|
+
iconTitle: string;
|
|
3237
|
+
lenSuffixToRemove?: number;
|
|
3238
|
+
}
|
|
3239
|
+
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
3240
|
+
constructor(props: IDraggableLineWithButtonComponent);
|
|
3241
|
+
|
|
3242
|
+
}
|
|
3243
|
+
|
|
3290
3244
|
}
|
|
3291
3245
|
declare module "babylonjs-node-editor/lines/draggableLineComponent" {
|
|
3292
3246
|
import * as React from "react";
|
|
3293
3247
|
export interface IButtonLineComponentProps {
|
|
3248
|
+
format: string;
|
|
3294
3249
|
data: string;
|
|
3295
3250
|
tooltip: string;
|
|
3296
3251
|
}
|
|
@@ -4810,80 +4765,6 @@ declare module BABYLON.NodeEditor {
|
|
|
4810
4765
|
}
|
|
4811
4766
|
|
|
4812
4767
|
|
|
4813
|
-
interface ILineWithFileButtonComponentProps {
|
|
4814
|
-
title: string;
|
|
4815
|
-
closed?: boolean;
|
|
4816
|
-
multiple?: boolean;
|
|
4817
|
-
label: string;
|
|
4818
|
-
iconImage: any;
|
|
4819
|
-
onIconClick: (file: File) => void;
|
|
4820
|
-
accept: string;
|
|
4821
|
-
uploadName?: string;
|
|
4822
|
-
}
|
|
4823
|
-
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
4824
|
-
isExpanded: boolean;
|
|
4825
|
-
}> {
|
|
4826
|
-
private _uploadRef;
|
|
4827
|
-
constructor(props: ILineWithFileButtonComponentProps);
|
|
4828
|
-
onChange(evt: any): void;
|
|
4829
|
-
switchExpandedState(): void;
|
|
4830
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
4831
|
-
}
|
|
4832
|
-
|
|
4833
|
-
|
|
4834
|
-
interface ILineContainerComponentProps {
|
|
4835
|
-
title: string;
|
|
4836
|
-
children: any[] | any;
|
|
4837
|
-
closed?: boolean;
|
|
4838
|
-
}
|
|
4839
|
-
export class LineContainerComponent extends React.Component<ILineContainerComponentProps, {
|
|
4840
|
-
isExpanded: boolean;
|
|
4841
|
-
}> {
|
|
4842
|
-
constructor(props: ILineContainerComponentProps);
|
|
4843
|
-
switchExpandedState(): void;
|
|
4844
|
-
renderHeader(): import("react/jsx-runtime").JSX.Element;
|
|
4845
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
4846
|
-
}
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
interface IFileButtonLineComponentProps {
|
|
4850
|
-
label: string;
|
|
4851
|
-
onClick: (file: File) => void;
|
|
4852
|
-
accept: string;
|
|
4853
|
-
uploadName?: string;
|
|
4854
|
-
}
|
|
4855
|
-
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
4856
|
-
private _uploadRef;
|
|
4857
|
-
constructor(props: IFileButtonLineComponentProps);
|
|
4858
|
-
onChange(evt: any): void;
|
|
4859
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
4860
|
-
}
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
export interface IDraggableLineWithButtonComponent {
|
|
4864
|
-
data: string;
|
|
4865
|
-
tooltip: string;
|
|
4866
|
-
iconImage: any;
|
|
4867
|
-
onIconClick: (value: string) => void;
|
|
4868
|
-
iconTitle: string;
|
|
4869
|
-
lenSuffixToRemove?: number;
|
|
4870
|
-
}
|
|
4871
|
-
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
4872
|
-
constructor(props: IDraggableLineWithButtonComponent);
|
|
4873
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
4874
|
-
}
|
|
4875
|
-
|
|
4876
|
-
|
|
4877
|
-
export interface IButtonLineComponentProps {
|
|
4878
|
-
data: string;
|
|
4879
|
-
tooltip: string;
|
|
4880
|
-
}
|
|
4881
|
-
export class DraggableLineComponent extends React.Component<IButtonLineComponentProps> {
|
|
4882
|
-
constructor(props: IButtonLineComponentProps);
|
|
4883
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
4884
|
-
}
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
4768
|
export interface ICheckBoxLineComponentProps {
|
|
4888
4769
|
label: string;
|
|
4889
4770
|
target?: any;
|
|
@@ -7341,6 +7222,34 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
7341
7222
|
|
|
7342
7223
|
|
|
7343
7224
|
|
|
7225
|
+
}
|
|
7226
|
+
declare module BABYLON.NodeEditor {
|
|
7227
|
+
|
|
7228
|
+
|
|
7229
|
+
}
|
|
7230
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
7231
|
+
interface ILineWithFileButtonComponentProps {
|
|
7232
|
+
title: string;
|
|
7233
|
+
closed?: boolean;
|
|
7234
|
+
multiple?: boolean;
|
|
7235
|
+
label: string;
|
|
7236
|
+
iconImage: any;
|
|
7237
|
+
onIconClick: (file: File) => void;
|
|
7238
|
+
accept: string;
|
|
7239
|
+
uploadName?: string;
|
|
7240
|
+
}
|
|
7241
|
+
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
7242
|
+
isExpanded: boolean;
|
|
7243
|
+
}> {
|
|
7244
|
+
private _uploadRef;
|
|
7245
|
+
constructor(props: ILineWithFileButtonComponentProps);
|
|
7246
|
+
onChange(evt: any): void;
|
|
7247
|
+
switchExpandedState(): void;
|
|
7248
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7249
|
+
}
|
|
7250
|
+
|
|
7251
|
+
|
|
7252
|
+
|
|
7344
7253
|
}
|
|
7345
7254
|
declare module BABYLON.NodeEditor {
|
|
7346
7255
|
|
|
@@ -7605,6 +7514,28 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
7605
7514
|
|
|
7606
7515
|
|
|
7607
7516
|
|
|
7517
|
+
}
|
|
7518
|
+
declare module BABYLON.NodeEditor {
|
|
7519
|
+
|
|
7520
|
+
|
|
7521
|
+
}
|
|
7522
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
7523
|
+
export interface IDraggableLineWithButtonComponent {
|
|
7524
|
+
format: string;
|
|
7525
|
+
data: string;
|
|
7526
|
+
tooltip: string;
|
|
7527
|
+
iconImage: any;
|
|
7528
|
+
onIconClick: (value: string) => void;
|
|
7529
|
+
iconTitle: string;
|
|
7530
|
+
lenSuffixToRemove?: number;
|
|
7531
|
+
}
|
|
7532
|
+
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
7533
|
+
constructor(props: IDraggableLineWithButtonComponent);
|
|
7534
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7535
|
+
}
|
|
7536
|
+
|
|
7537
|
+
|
|
7538
|
+
|
|
7608
7539
|
}
|
|
7609
7540
|
declare module BABYLON.NodeEditor {
|
|
7610
7541
|
|
|
@@ -7612,6 +7543,7 @@ declare module BABYLON.NodeEditor {
|
|
|
7612
7543
|
}
|
|
7613
7544
|
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
7614
7545
|
export interface IButtonLineComponentProps {
|
|
7546
|
+
format: string;
|
|
7615
7547
|
data: string;
|
|
7616
7548
|
tooltip: string;
|
|
7617
7549
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.30.0",
|
|
4
4
|
"main": "babylon.nodeEditor.js",
|
|
5
5
|
"types": "babylon.nodeEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.
|
|
17
|
+
"babylonjs": "^7.30.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|