@babylonjs/node-editor 5.0.0 → 5.0.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.
|
@@ -2163,7 +2163,7 @@ export class Vector4LineComponent extends React.Component<IVector4LineComponentP
|
|
|
2163
2163
|
export {};
|
|
2164
2164
|
|
|
2165
2165
|
}
|
|
2166
|
-
declare module "
|
|
2166
|
+
declare module "@babylonjs/node-editor/colorPicker/colorComponentEntry" {
|
|
2167
2167
|
import * as React from "react";
|
|
2168
2168
|
export interface IColorComponentEntryProps {
|
|
2169
2169
|
value: number;
|
|
@@ -2180,10 +2180,10 @@ export class ColorComponentEntry extends React.Component<IColorComponentEntryPro
|
|
|
2180
2180
|
}
|
|
2181
2181
|
|
|
2182
2182
|
}
|
|
2183
|
-
declare module "
|
|
2183
|
+
declare module "@babylonjs/node-editor/colorPicker/colorPicker" {
|
|
2184
2184
|
import * as React from "react";
|
|
2185
2185
|
import { Color3, Color4 } from "@babylonjs/core/Maths/math.color";
|
|
2186
|
-
import "
|
|
2186
|
+
import "@babylonjs/node-editor/colorPicker/colorPicker.scss";
|
|
2187
2187
|
/**
|
|
2188
2188
|
* Interface used to specify creation options for color picker
|
|
2189
2189
|
*/
|
|
@@ -2224,7 +2224,7 @@ export class ColorPicker extends React.Component<IColorPickerProps, IColorPicker
|
|
|
2224
2224
|
}
|
|
2225
2225
|
|
|
2226
2226
|
}
|
|
2227
|
-
declare module "
|
|
2227
|
+
declare module "@babylonjs/node-editor/colorPicker/hexColor" {
|
|
2228
2228
|
import * as React from "react";
|
|
2229
2229
|
export interface IHexColorProps {
|
|
2230
2230
|
value: string;
|
|
@@ -2243,7 +2243,7 @@ export class HexColor extends React.Component<IHexColorProps, {
|
|
|
2243
2243
|
}
|
|
2244
2244
|
|
|
2245
2245
|
}
|
|
2246
|
-
declare module "
|
|
2246
|
+
declare module "@babylonjs/node-editor/lines/booleanLineComponent" {
|
|
2247
2247
|
import * as React from "react";
|
|
2248
2248
|
export interface IBooleanLineComponentProps {
|
|
2249
2249
|
label: string;
|
|
@@ -2257,7 +2257,7 @@ export class BooleanLineComponent extends React.Component<IBooleanLineComponentP
|
|
|
2257
2257
|
}
|
|
2258
2258
|
|
|
2259
2259
|
}
|
|
2260
|
-
declare module "
|
|
2260
|
+
declare module "@babylonjs/node-editor/lines/buttonLineComponent" {
|
|
2261
2261
|
import * as React from "react";
|
|
2262
2262
|
export interface IButtonLineComponentProps {
|
|
2263
2263
|
label: string;
|
|
@@ -2271,11 +2271,11 @@ export class ButtonLineComponent extends React.Component<IButtonLineComponentPro
|
|
|
2271
2271
|
}
|
|
2272
2272
|
|
|
2273
2273
|
}
|
|
2274
|
-
declare module "
|
|
2274
|
+
declare module "@babylonjs/node-editor/lines/checkBoxLineComponent" {
|
|
2275
2275
|
import * as React from "react";
|
|
2276
2276
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2277
|
-
import { PropertyChangedEvent } from "
|
|
2278
|
-
|
|
2277
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2278
|
+
|
|
2279
2279
|
export interface ICheckBoxLineComponentProps {
|
|
2280
2280
|
label?: string;
|
|
2281
2281
|
target?: any;
|
|
@@ -2288,8 +2288,8 @@ export interface ICheckBoxLineComponentProps {
|
|
|
2288
2288
|
icon?: string;
|
|
2289
2289
|
iconLabel?: string;
|
|
2290
2290
|
faIcons?: {
|
|
2291
|
-
enabled:
|
|
2292
|
-
disabled:
|
|
2291
|
+
enabled: any;
|
|
2292
|
+
disabled: any;
|
|
2293
2293
|
};
|
|
2294
2294
|
large?: boolean;
|
|
2295
2295
|
}
|
|
@@ -2310,11 +2310,11 @@ export class CheckBoxLineComponent extends React.Component<ICheckBoxLineComponen
|
|
|
2310
2310
|
}
|
|
2311
2311
|
|
|
2312
2312
|
}
|
|
2313
|
-
declare module "
|
|
2313
|
+
declare module "@babylonjs/node-editor/lines/color3LineComponent" {
|
|
2314
2314
|
import * as React from "react";
|
|
2315
2315
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2316
|
-
import { PropertyChangedEvent } from "
|
|
2317
|
-
import { LockObject } from "
|
|
2316
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2317
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2318
2318
|
export interface IColor3LineComponentProps {
|
|
2319
2319
|
label: string;
|
|
2320
2320
|
target: any;
|
|
@@ -2331,11 +2331,11 @@ export class Color3LineComponent extends React.Component<IColor3LineComponentPro
|
|
|
2331
2331
|
}
|
|
2332
2332
|
|
|
2333
2333
|
}
|
|
2334
|
-
declare module "
|
|
2334
|
+
declare module "@babylonjs/node-editor/lines/color4LineComponent" {
|
|
2335
2335
|
import * as React from "react";
|
|
2336
2336
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2337
|
-
import { PropertyChangedEvent } from "
|
|
2338
|
-
import { LockObject } from "
|
|
2337
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2338
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2339
2339
|
export interface IColor4LineComponentProps {
|
|
2340
2340
|
label: string;
|
|
2341
2341
|
target?: any;
|
|
@@ -2352,12 +2352,12 @@ export class Color4LineComponent extends React.Component<IColor4LineComponentPro
|
|
|
2352
2352
|
}
|
|
2353
2353
|
|
|
2354
2354
|
}
|
|
2355
|
-
declare module "
|
|
2355
|
+
declare module "@babylonjs/node-editor/lines/colorLineComponent" {
|
|
2356
2356
|
import * as React from "react";
|
|
2357
2357
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2358
2358
|
import { Color4 } from "@babylonjs/core/Maths/math.color";
|
|
2359
|
-
import { PropertyChangedEvent } from "
|
|
2360
|
-
import { LockObject } from "
|
|
2359
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2360
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2361
2361
|
export interface IColorLineComponentProps {
|
|
2362
2362
|
label: string;
|
|
2363
2363
|
target?: any;
|
|
@@ -2395,7 +2395,7 @@ export class ColorLineComponent extends React.Component<IColorLineComponentProps
|
|
|
2395
2395
|
export {};
|
|
2396
2396
|
|
|
2397
2397
|
}
|
|
2398
|
-
declare module "
|
|
2398
|
+
declare module "@babylonjs/node-editor/lines/colorPickerComponent" {
|
|
2399
2399
|
import * as React from "react";
|
|
2400
2400
|
import { Color4, Color3 } from "@babylonjs/core/Maths/math.color";
|
|
2401
2401
|
export interface IColorPickerComponentProps {
|
|
@@ -2427,7 +2427,7 @@ export class ColorPickerLineComponent extends React.Component<IColorPickerCompon
|
|
|
2427
2427
|
export {};
|
|
2428
2428
|
|
|
2429
2429
|
}
|
|
2430
|
-
declare module "
|
|
2430
|
+
declare module "@babylonjs/node-editor/lines/draggableLineComponent" {
|
|
2431
2431
|
import * as React from "react";
|
|
2432
2432
|
export interface IButtonLineComponentProps {
|
|
2433
2433
|
data: string;
|
|
@@ -2439,7 +2439,7 @@ export class DraggableLineComponent extends React.Component<IButtonLineComponent
|
|
|
2439
2439
|
}
|
|
2440
2440
|
|
|
2441
2441
|
}
|
|
2442
|
-
declare module "
|
|
2442
|
+
declare module "@babylonjs/node-editor/lines/fileButtonLineComponent" {
|
|
2443
2443
|
import * as React from "react";
|
|
2444
2444
|
interface IFileButtonLineComponentProps {
|
|
2445
2445
|
label: string;
|
|
@@ -2459,7 +2459,7 @@ export class FileButtonLineComponent extends React.Component<IFileButtonLineComp
|
|
|
2459
2459
|
export {};
|
|
2460
2460
|
|
|
2461
2461
|
}
|
|
2462
|
-
declare module "
|
|
2462
|
+
declare module "@babylonjs/node-editor/lines/fileMultipleButtonLineComponent" {
|
|
2463
2463
|
import * as React from "react";
|
|
2464
2464
|
interface IFileMultipleButtonLineComponentProps {
|
|
2465
2465
|
label: string;
|
|
@@ -2479,11 +2479,11 @@ export class FileMultipleButtonLineComponent extends React.Component<IFileMultip
|
|
|
2479
2479
|
export {};
|
|
2480
2480
|
|
|
2481
2481
|
}
|
|
2482
|
-
declare module "
|
|
2482
|
+
declare module "@babylonjs/node-editor/lines/floatLineComponent" {
|
|
2483
2483
|
import * as React from "react";
|
|
2484
2484
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2485
|
-
import { PropertyChangedEvent } from "
|
|
2486
|
-
import { LockObject } from "
|
|
2485
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2486
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2487
2487
|
interface IFloatLineComponentProps {
|
|
2488
2488
|
label: string;
|
|
2489
2489
|
target: any;
|
|
@@ -2505,6 +2505,8 @@ interface IFloatLineComponentProps {
|
|
|
2505
2505
|
defaultValue?: number;
|
|
2506
2506
|
arrows?: boolean;
|
|
2507
2507
|
unit?: React.ReactNode;
|
|
2508
|
+
onDragStart?: (newValue: number) => void;
|
|
2509
|
+
onDragStop?: (newValue: number) => void;
|
|
2508
2510
|
}
|
|
2509
2511
|
export class FloatLineComponent extends React.Component<IFloatLineComponentProps, {
|
|
2510
2512
|
value: string;
|
|
@@ -2530,11 +2532,11 @@ export class FloatLineComponent extends React.Component<IFloatLineComponentProps
|
|
|
2530
2532
|
export {};
|
|
2531
2533
|
|
|
2532
2534
|
}
|
|
2533
|
-
declare module "
|
|
2535
|
+
declare module "@babylonjs/node-editor/lines/hexLineComponent" {
|
|
2534
2536
|
import * as React from "react";
|
|
2535
2537
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2536
|
-
import { PropertyChangedEvent } from "
|
|
2537
|
-
import { LockObject } from "
|
|
2538
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2539
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2538
2540
|
interface IHexLineComponentProps {
|
|
2539
2541
|
label: string;
|
|
2540
2542
|
target: any;
|
|
@@ -2573,7 +2575,7 @@ export class HexLineComponent extends React.Component<IHexLineComponentProps, {
|
|
|
2573
2575
|
export {};
|
|
2574
2576
|
|
|
2575
2577
|
}
|
|
2576
|
-
declare module "
|
|
2578
|
+
declare module "@babylonjs/node-editor/lines/iconButtonLineComponent" {
|
|
2577
2579
|
import * as React from "react";
|
|
2578
2580
|
export interface IIconButtonLineComponentProps {
|
|
2579
2581
|
icon: string;
|
|
@@ -2587,7 +2589,7 @@ export class IconButtonLineComponent extends React.Component<IIconButtonLineComp
|
|
|
2587
2589
|
}
|
|
2588
2590
|
|
|
2589
2591
|
}
|
|
2590
|
-
declare module "
|
|
2592
|
+
declare module "@babylonjs/node-editor/lines/iconComponent" {
|
|
2591
2593
|
import * as React from "react";
|
|
2592
2594
|
interface IIconComponentProps {
|
|
2593
2595
|
icon: string;
|
|
@@ -2599,7 +2601,7 @@ export class IconComponent extends React.Component<IIconComponentProps> {
|
|
|
2599
2601
|
export {};
|
|
2600
2602
|
|
|
2601
2603
|
}
|
|
2602
|
-
declare module "
|
|
2604
|
+
declare module "@babylonjs/node-editor/lines/indentedTextLineComponent" {
|
|
2603
2605
|
import * as React from "react";
|
|
2604
2606
|
interface IIndentedTextLineComponentProps {
|
|
2605
2607
|
value?: string;
|
|
@@ -2618,7 +2620,7 @@ export class IndentedTextLineComponent extends React.Component<IIndentedTextLine
|
|
|
2618
2620
|
export {};
|
|
2619
2621
|
|
|
2620
2622
|
}
|
|
2621
|
-
declare module "
|
|
2623
|
+
declare module "@babylonjs/node-editor/lines/inputArrowsComponent" {
|
|
2622
2624
|
import * as React from "react";
|
|
2623
2625
|
interface IInputArrowsComponentProps {
|
|
2624
2626
|
incrementValue: (amount: number) => void;
|
|
@@ -2634,16 +2636,16 @@ export class InputArrowsComponent extends React.Component<IInputArrowsComponentP
|
|
|
2634
2636
|
export {};
|
|
2635
2637
|
|
|
2636
2638
|
}
|
|
2637
|
-
declare module "
|
|
2639
|
+
declare module "@babylonjs/node-editor/lines/iSelectedLineContainer" {
|
|
2638
2640
|
export interface ISelectedLineContainer {
|
|
2639
2641
|
selectedLineContainerTitles: Array<string>;
|
|
2640
2642
|
selectedLineContainerTitlesNoFocus: Array<string>;
|
|
2641
2643
|
}
|
|
2642
2644
|
|
|
2643
2645
|
}
|
|
2644
|
-
declare module "
|
|
2646
|
+
declare module "@babylonjs/node-editor/lines/lineContainerComponent" {
|
|
2645
2647
|
import * as React from "react";
|
|
2646
|
-
import { ISelectedLineContainer } from "
|
|
2648
|
+
import { ISelectedLineContainer } from "@babylonjs/node-editor/lines/iSelectedLineContainer";
|
|
2647
2649
|
interface ILineContainerComponentProps {
|
|
2648
2650
|
selection?: ISelectedLineContainer;
|
|
2649
2651
|
title: string;
|
|
@@ -2663,15 +2665,15 @@ export class LineContainerComponent extends React.Component<ILineContainerCompon
|
|
|
2663
2665
|
export {};
|
|
2664
2666
|
|
|
2665
2667
|
}
|
|
2666
|
-
declare module "
|
|
2668
|
+
declare module "@babylonjs/node-editor/lines/linkButtonComponent" {
|
|
2667
2669
|
import * as React from "react";
|
|
2668
|
-
|
|
2670
|
+
|
|
2669
2671
|
interface ILinkButtonComponentProps {
|
|
2670
2672
|
label: string;
|
|
2671
2673
|
buttonLabel: string;
|
|
2672
2674
|
url?: string;
|
|
2673
2675
|
onClick: () => void;
|
|
2674
|
-
icon?:
|
|
2676
|
+
icon?: any;
|
|
2675
2677
|
onIconClick?: () => void;
|
|
2676
2678
|
}
|
|
2677
2679
|
export class LinkButtonComponent extends React.Component<ILinkButtonComponentProps> {
|
|
@@ -2682,13 +2684,13 @@ export class LinkButtonComponent extends React.Component<ILinkButtonComponentPro
|
|
|
2682
2684
|
export {};
|
|
2683
2685
|
|
|
2684
2686
|
}
|
|
2685
|
-
declare module "
|
|
2687
|
+
declare module "@babylonjs/node-editor/lines/messageLineComponent" {
|
|
2686
2688
|
import * as React from "react";
|
|
2687
|
-
|
|
2689
|
+
|
|
2688
2690
|
interface IMessageLineComponentProps {
|
|
2689
2691
|
text: string;
|
|
2690
2692
|
color?: string;
|
|
2691
|
-
icon?:
|
|
2693
|
+
icon?: any;
|
|
2692
2694
|
}
|
|
2693
2695
|
export class MessageLineComponent extends React.Component<IMessageLineComponentProps> {
|
|
2694
2696
|
constructor(props: IMessageLineComponentProps);
|
|
@@ -2697,7 +2699,7 @@ export class MessageLineComponent extends React.Component<IMessageLineComponentP
|
|
|
2697
2699
|
export {};
|
|
2698
2700
|
|
|
2699
2701
|
}
|
|
2700
|
-
declare module "
|
|
2702
|
+
declare module "@babylonjs/node-editor/lines/numericInputComponent" {
|
|
2701
2703
|
import * as React from "react";
|
|
2702
2704
|
interface INumericInputComponentProps {
|
|
2703
2705
|
label: string;
|
|
@@ -2726,10 +2728,10 @@ export class NumericInputComponent extends React.Component<INumericInputComponen
|
|
|
2726
2728
|
export {};
|
|
2727
2729
|
|
|
2728
2730
|
}
|
|
2729
|
-
declare module "
|
|
2731
|
+
declare module "@babylonjs/node-editor/lines/optionsLineComponent" {
|
|
2730
2732
|
import * as React from "react";
|
|
2731
2733
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2732
|
-
import { PropertyChangedEvent } from "
|
|
2734
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2733
2735
|
import { IInspectableOptions } from "@babylonjs/core/Misc/iInspectable";
|
|
2734
2736
|
export const Null_Value: number;
|
|
2735
2737
|
export interface IOptionsLineComponentProps {
|
|
@@ -2761,14 +2763,14 @@ export class OptionsLineComponent extends React.Component<IOptionsLineComponentP
|
|
|
2761
2763
|
}
|
|
2762
2764
|
|
|
2763
2765
|
}
|
|
2764
|
-
declare module "
|
|
2766
|
+
declare module "@babylonjs/node-editor/lines/popup" {
|
|
2765
2767
|
export class Popup {
|
|
2766
2768
|
static CreatePopup(title: string, windowVariableName: string, width?: number, height?: number): HTMLDivElement | null;
|
|
2767
2769
|
private static _CopyStyles;
|
|
2768
2770
|
}
|
|
2769
2771
|
|
|
2770
2772
|
}
|
|
2771
|
-
declare module "
|
|
2773
|
+
declare module "@babylonjs/node-editor/lines/radioLineComponent" {
|
|
2772
2774
|
import * as React from "react";
|
|
2773
2775
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2774
2776
|
interface IRadioButtonLineComponentProps {
|
|
@@ -2792,11 +2794,11 @@ export class RadioButtonLineComponent extends React.Component<IRadioButtonLineCo
|
|
|
2792
2794
|
export {};
|
|
2793
2795
|
|
|
2794
2796
|
}
|
|
2795
|
-
declare module "
|
|
2797
|
+
declare module "@babylonjs/node-editor/lines/sliderLineComponent" {
|
|
2796
2798
|
import * as React from "react";
|
|
2797
2799
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2798
|
-
import { PropertyChangedEvent } from "
|
|
2799
|
-
import { LockObject } from "
|
|
2800
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2801
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2800
2802
|
interface ISliderLineComponentProps {
|
|
2801
2803
|
label: string;
|
|
2802
2804
|
target?: any;
|
|
@@ -2832,8 +2834,8 @@ export class SliderLineComponent extends React.Component<ISliderLineComponentPro
|
|
|
2832
2834
|
export {};
|
|
2833
2835
|
|
|
2834
2836
|
}
|
|
2835
|
-
declare module "
|
|
2836
|
-
import { PropertyChangedEvent } from "
|
|
2837
|
+
declare module "@babylonjs/node-editor/lines/targetsProxy" {
|
|
2838
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2837
2839
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2838
2840
|
export const conflictingValuesPlaceholder = "\u2014";
|
|
2839
2841
|
/**
|
|
@@ -2846,11 +2848,11 @@ export const conflictingValuesPlaceholder = "\u2014";
|
|
|
2846
2848
|
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: Observable<PropertyChangedEvent>, getProperty?: (target: Type, property: keyof Type) => any): any;
|
|
2847
2849
|
|
|
2848
2850
|
}
|
|
2849
|
-
declare module "
|
|
2851
|
+
declare module "@babylonjs/node-editor/lines/textInputLineComponent" {
|
|
2850
2852
|
import * as React from "react";
|
|
2851
2853
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2852
|
-
import { PropertyChangedEvent } from "
|
|
2853
|
-
import { LockObject } from "
|
|
2854
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2855
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2854
2856
|
export interface ITextInputLineComponentProps {
|
|
2855
2857
|
label?: string;
|
|
2856
2858
|
lockObject?: LockObject;
|
|
@@ -2894,7 +2896,7 @@ export class TextInputLineComponent extends React.Component<ITextInputLineCompon
|
|
|
2894
2896
|
}
|
|
2895
2897
|
|
|
2896
2898
|
}
|
|
2897
|
-
declare module "
|
|
2899
|
+
declare module "@babylonjs/node-editor/lines/textLineComponent" {
|
|
2898
2900
|
import * as React from "react";
|
|
2899
2901
|
interface ITextLineComponentProps {
|
|
2900
2902
|
label?: string;
|
|
@@ -2918,7 +2920,7 @@ export class TextLineComponent extends React.Component<ITextLineComponentProps>
|
|
|
2918
2920
|
export {};
|
|
2919
2921
|
|
|
2920
2922
|
}
|
|
2921
|
-
declare module "
|
|
2923
|
+
declare module "@babylonjs/node-editor/lines/unitButton" {
|
|
2922
2924
|
/// <reference types="react" />
|
|
2923
2925
|
interface IUnitButtonProps {
|
|
2924
2926
|
unit: string;
|
|
@@ -2929,7 +2931,7 @@ export function UnitButton(props: IUnitButtonProps): JSX.Element;
|
|
|
2929
2931
|
export {};
|
|
2930
2932
|
|
|
2931
2933
|
}
|
|
2932
|
-
declare module "
|
|
2934
|
+
declare module "@babylonjs/node-editor/lines/valueLineComponent" {
|
|
2933
2935
|
import * as React from "react";
|
|
2934
2936
|
interface IValueLineComponentProps {
|
|
2935
2937
|
label: string;
|
|
@@ -2947,11 +2949,11 @@ export class ValueLineComponent extends React.Component<IValueLineComponentProps
|
|
|
2947
2949
|
export {};
|
|
2948
2950
|
|
|
2949
2951
|
}
|
|
2950
|
-
declare module "
|
|
2952
|
+
declare module "@babylonjs/node-editor/lines/vector2LineComponent" {
|
|
2951
2953
|
import * as React from "react";
|
|
2952
2954
|
import { Vector2 } from "@babylonjs/core/Maths/math.vector";
|
|
2953
2955
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2954
|
-
import { PropertyChangedEvent } from "
|
|
2956
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2955
2957
|
interface IVector2LineComponentProps {
|
|
2956
2958
|
label: string;
|
|
2957
2959
|
target: any;
|
|
@@ -2984,11 +2986,11 @@ export class Vector2LineComponent extends React.Component<IVector2LineComponentP
|
|
|
2984
2986
|
export {};
|
|
2985
2987
|
|
|
2986
2988
|
}
|
|
2987
|
-
declare module "
|
|
2989
|
+
declare module "@babylonjs/node-editor/lines/vector3LineComponent" {
|
|
2988
2990
|
import * as React from "react";
|
|
2989
2991
|
import { Vector3 } from "@babylonjs/core/Maths/math.vector";
|
|
2990
2992
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2991
|
-
import { PropertyChangedEvent } from "
|
|
2993
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2992
2994
|
interface IVector3LineComponentProps {
|
|
2993
2995
|
label: string;
|
|
2994
2996
|
target: any;
|
|
@@ -3026,11 +3028,11 @@ export class Vector3LineComponent extends React.Component<IVector3LineComponentP
|
|
|
3026
3028
|
export {};
|
|
3027
3029
|
|
|
3028
3030
|
}
|
|
3029
|
-
declare module "
|
|
3031
|
+
declare module "@babylonjs/node-editor/lines/vector4LineComponent" {
|
|
3030
3032
|
import * as React from "react";
|
|
3031
3033
|
import { Vector4 } from "@babylonjs/core/Maths/math.vector";
|
|
3032
3034
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3033
|
-
import { PropertyChangedEvent } from "
|
|
3035
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3034
3036
|
interface IVector4LineComponentProps {
|
|
3035
3037
|
label: string;
|
|
3036
3038
|
target: any;
|
|
@@ -3068,7 +3070,7 @@ export class Vector4LineComponent extends React.Component<IVector4LineComponentP
|
|
|
3068
3070
|
export {};
|
|
3069
3071
|
|
|
3070
3072
|
}
|
|
3071
|
-
declare module "
|
|
3073
|
+
declare module "@babylonjs/node-editor/propertyChangedEvent" {
|
|
3072
3074
|
export class PropertyChangedEvent {
|
|
3073
3075
|
object: any;
|
|
3074
3076
|
property: string;
|
|
@@ -3078,7 +3080,7 @@ export class PropertyChangedEvent {
|
|
|
3078
3080
|
}
|
|
3079
3081
|
|
|
3080
3082
|
}
|
|
3081
|
-
declare module "
|
|
3083
|
+
declare module "@babylonjs/node-editor/stringTools" {
|
|
3082
3084
|
export class StringTools {
|
|
3083
3085
|
private static _SaveAs;
|
|
3084
3086
|
private static _Click;
|
|
@@ -3092,11 +3094,11 @@ export class StringTools {
|
|
|
3092
3094
|
}
|
|
3093
3095
|
|
|
3094
3096
|
}
|
|
3095
|
-
declare module "
|
|
3097
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/checkboxPropertyGridComponent" {
|
|
3096
3098
|
import * as React from "react";
|
|
3097
3099
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3098
|
-
import { PropertyChangedEvent } from "
|
|
3099
|
-
import { LockObject } from "
|
|
3100
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3101
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3100
3102
|
import { Checkbox } from "@babylonjs/gui/2D/controls/checkbox";
|
|
3101
3103
|
interface ICheckboxPropertyGridComponentProps {
|
|
3102
3104
|
checkbox: Checkbox;
|
|
@@ -3110,12 +3112,12 @@ export class CheckboxPropertyGridComponent extends React.Component<ICheckboxProp
|
|
|
3110
3112
|
export {};
|
|
3111
3113
|
|
|
3112
3114
|
}
|
|
3113
|
-
declare module "
|
|
3115
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/colorPickerPropertyGridComponent" {
|
|
3114
3116
|
import * as React from "react";
|
|
3115
3117
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3116
|
-
import { PropertyChangedEvent } from "
|
|
3118
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3117
3119
|
import { ColorPicker } from "@babylonjs/gui/2D/controls/colorpicker";
|
|
3118
|
-
import { LockObject } from "
|
|
3120
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3119
3121
|
interface IColorPickerPropertyGridComponentProps {
|
|
3120
3122
|
colorPicker: ColorPicker;
|
|
3121
3123
|
lockObject: LockObject;
|
|
@@ -3128,12 +3130,12 @@ export class ColorPickerPropertyGridComponent extends React.Component<IColorPick
|
|
|
3128
3130
|
export {};
|
|
3129
3131
|
|
|
3130
3132
|
}
|
|
3131
|
-
declare module "
|
|
3133
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/commonControlPropertyGridComponent" {
|
|
3132
3134
|
import * as React from "react";
|
|
3133
3135
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3134
|
-
import { PropertyChangedEvent } from "
|
|
3136
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3135
3137
|
import { Control } from "@babylonjs/gui/2D/controls/control";
|
|
3136
|
-
import { LockObject } from "
|
|
3138
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3137
3139
|
interface ICommonControlPropertyGridComponentProps {
|
|
3138
3140
|
controls?: Control[];
|
|
3139
3141
|
control?: Control;
|
|
@@ -3148,12 +3150,12 @@ export class CommonControlPropertyGridComponent extends React.Component<ICommonC
|
|
|
3148
3150
|
export {};
|
|
3149
3151
|
|
|
3150
3152
|
}
|
|
3151
|
-
declare module "
|
|
3153
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/controlPropertyGridComponent" {
|
|
3152
3154
|
import * as React from "react";
|
|
3153
3155
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3154
|
-
import { PropertyChangedEvent } from "
|
|
3156
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3155
3157
|
import { Control } from "@babylonjs/gui/2D/controls/control";
|
|
3156
|
-
import { LockObject } from "
|
|
3158
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3157
3159
|
interface IControlPropertyGridComponentProps {
|
|
3158
3160
|
control: Control;
|
|
3159
3161
|
lockObject: LockObject;
|
|
@@ -3166,11 +3168,11 @@ export class ControlPropertyGridComponent extends React.Component<IControlProper
|
|
|
3166
3168
|
export {};
|
|
3167
3169
|
|
|
3168
3170
|
}
|
|
3169
|
-
declare module "
|
|
3171
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/ellipsePropertyGridComponent" {
|
|
3170
3172
|
import * as React from "react";
|
|
3171
3173
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3172
|
-
import { PropertyChangedEvent } from "
|
|
3173
|
-
import { LockObject } from "
|
|
3174
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3175
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3174
3176
|
import { Ellipse } from "@babylonjs/gui/2D/controls/ellipse";
|
|
3175
3177
|
interface IEllipsePropertyGridComponentProps {
|
|
3176
3178
|
ellipse: Ellipse;
|
|
@@ -3184,11 +3186,11 @@ export class EllipsePropertyGridComponent extends React.Component<IEllipseProper
|
|
|
3184
3186
|
export {};
|
|
3185
3187
|
|
|
3186
3188
|
}
|
|
3187
|
-
declare module "
|
|
3189
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/gridPropertyGridComponent" {
|
|
3188
3190
|
import * as React from "react";
|
|
3189
3191
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3190
|
-
import { PropertyChangedEvent } from "
|
|
3191
|
-
import { LockObject } from "
|
|
3192
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3193
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3192
3194
|
import { Grid } from "@babylonjs/gui/2D/controls/grid";
|
|
3193
3195
|
interface IGridPropertyGridComponentProps {
|
|
3194
3196
|
grid: Grid;
|
|
@@ -3204,11 +3206,11 @@ export class GridPropertyGridComponent extends React.Component<IGridPropertyGrid
|
|
|
3204
3206
|
export {};
|
|
3205
3207
|
|
|
3206
3208
|
}
|
|
3207
|
-
declare module "
|
|
3209
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/imageBasedSliderPropertyGridComponent" {
|
|
3208
3210
|
import * as React from "react";
|
|
3209
3211
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3210
|
-
import { PropertyChangedEvent } from "
|
|
3211
|
-
import { LockObject } from "
|
|
3212
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3213
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3212
3214
|
import { ImageBasedSlider } from "@babylonjs/gui/2D/controls/sliders/imageBasedSlider";
|
|
3213
3215
|
interface IImageBasedSliderPropertyGridComponentProps {
|
|
3214
3216
|
imageBasedSlider: ImageBasedSlider;
|
|
@@ -3222,11 +3224,11 @@ export class ImageBasedSliderPropertyGridComponent extends React.Component<IImag
|
|
|
3222
3224
|
export {};
|
|
3223
3225
|
|
|
3224
3226
|
}
|
|
3225
|
-
declare module "
|
|
3227
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/imagePropertyGridComponent" {
|
|
3226
3228
|
import * as React from "react";
|
|
3227
3229
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3228
|
-
import { PropertyChangedEvent } from "
|
|
3229
|
-
import { LockObject } from "
|
|
3230
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3231
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3230
3232
|
import { Image } from "@babylonjs/gui/2D/controls/image";
|
|
3231
3233
|
interface IImagePropertyGridComponentProps {
|
|
3232
3234
|
image: Image;
|
|
@@ -3240,12 +3242,12 @@ export class ImagePropertyGridComponent extends React.Component<IImagePropertyGr
|
|
|
3240
3242
|
export {};
|
|
3241
3243
|
|
|
3242
3244
|
}
|
|
3243
|
-
declare module "
|
|
3245
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/inputTextPropertyGridComponent" {
|
|
3244
3246
|
import * as React from "react";
|
|
3245
3247
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3246
|
-
import { PropertyChangedEvent } from "
|
|
3248
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3247
3249
|
import { InputText } from "@babylonjs/gui/2D/controls/inputText";
|
|
3248
|
-
import { LockObject } from "
|
|
3250
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3249
3251
|
interface IInputTextPropertyGridComponentProps {
|
|
3250
3252
|
inputText: InputText;
|
|
3251
3253
|
lockObject: LockObject;
|
|
@@ -3258,11 +3260,11 @@ export class InputTextPropertyGridComponent extends React.Component<IInputTextPr
|
|
|
3258
3260
|
export {};
|
|
3259
3261
|
|
|
3260
3262
|
}
|
|
3261
|
-
declare module "
|
|
3263
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/linePropertyGridComponent" {
|
|
3262
3264
|
import * as React from "react";
|
|
3263
3265
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3264
|
-
import { PropertyChangedEvent } from "
|
|
3265
|
-
import { LockObject } from "
|
|
3266
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3267
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3266
3268
|
import { Line } from "@babylonjs/gui/2D/controls/line";
|
|
3267
3269
|
interface ILinePropertyGridComponentProps {
|
|
3268
3270
|
line: Line;
|
|
@@ -3277,11 +3279,11 @@ export class LinePropertyGridComponent extends React.Component<ILinePropertyGrid
|
|
|
3277
3279
|
export {};
|
|
3278
3280
|
|
|
3279
3281
|
}
|
|
3280
|
-
declare module "
|
|
3282
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/radioButtonPropertyGridComponent" {
|
|
3281
3283
|
import * as React from "react";
|
|
3282
3284
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3283
|
-
import { PropertyChangedEvent } from "
|
|
3284
|
-
import { LockObject } from "
|
|
3285
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3286
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3285
3287
|
import { RadioButton } from "@babylonjs/gui/2D/controls/radioButton";
|
|
3286
3288
|
interface IRadioButtonPropertyGridComponentProps {
|
|
3287
3289
|
radioButtons: RadioButton[];
|
|
@@ -3295,11 +3297,11 @@ export class RadioButtonPropertyGridComponent extends React.Component<IRadioButt
|
|
|
3295
3297
|
export {};
|
|
3296
3298
|
|
|
3297
3299
|
}
|
|
3298
|
-
declare module "
|
|
3300
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/rectanglePropertyGridComponent" {
|
|
3299
3301
|
import * as React from "react";
|
|
3300
3302
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3301
|
-
import { PropertyChangedEvent } from "
|
|
3302
|
-
import { LockObject } from "
|
|
3303
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3304
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3303
3305
|
import { Rectangle } from "@babylonjs/gui/2D/controls/rectangle";
|
|
3304
3306
|
interface IRectanglePropertyGridComponentProps {
|
|
3305
3307
|
rectangle: Rectangle;
|
|
@@ -3313,11 +3315,11 @@ export class RectanglePropertyGridComponent extends React.Component<IRectanglePr
|
|
|
3313
3315
|
export {};
|
|
3314
3316
|
|
|
3315
3317
|
}
|
|
3316
|
-
declare module "
|
|
3318
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/scrollViewerPropertyGridComponent" {
|
|
3317
3319
|
import * as React from "react";
|
|
3318
3320
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3319
|
-
import { PropertyChangedEvent } from "
|
|
3320
|
-
import { LockObject } from "
|
|
3321
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3322
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3321
3323
|
import { ScrollViewer } from "@babylonjs/gui/2D/controls/scrollViewers/scrollViewer";
|
|
3322
3324
|
interface IScrollViewerPropertyGridComponentProps {
|
|
3323
3325
|
scrollViewer: ScrollViewer;
|
|
@@ -3331,11 +3333,11 @@ export class ScrollViewerPropertyGridComponent extends React.Component<IScrollVi
|
|
|
3331
3333
|
export {};
|
|
3332
3334
|
|
|
3333
3335
|
}
|
|
3334
|
-
declare module "
|
|
3336
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/sliderPropertyGridComponent" {
|
|
3335
3337
|
import * as React from "react";
|
|
3336
3338
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3337
|
-
import { PropertyChangedEvent } from "
|
|
3338
|
-
import { LockObject } from "
|
|
3339
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3340
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3339
3341
|
import { Slider } from "@babylonjs/gui/2D/controls/sliders/slider";
|
|
3340
3342
|
interface ISliderPropertyGridComponentProps {
|
|
3341
3343
|
slider: Slider;
|
|
@@ -3349,11 +3351,11 @@ export class SliderPropertyGridComponent extends React.Component<ISliderProperty
|
|
|
3349
3351
|
export {};
|
|
3350
3352
|
|
|
3351
3353
|
}
|
|
3352
|
-
declare module "
|
|
3354
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/stackPanelPropertyGridComponent" {
|
|
3353
3355
|
import * as React from "react";
|
|
3354
3356
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3355
|
-
import { PropertyChangedEvent } from "
|
|
3356
|
-
import { LockObject } from "
|
|
3357
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3358
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3357
3359
|
import { StackPanel } from "@babylonjs/gui/2D/controls/stackPanel";
|
|
3358
3360
|
interface IStackPanelPropertyGridComponentProps {
|
|
3359
3361
|
stackPanel: StackPanel;
|
|
@@ -3367,12 +3369,12 @@ export class StackPanelPropertyGridComponent extends React.Component<IStackPanel
|
|
|
3367
3369
|
export {};
|
|
3368
3370
|
|
|
3369
3371
|
}
|
|
3370
|
-
declare module "
|
|
3372
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/textBlockPropertyGridComponent" {
|
|
3371
3373
|
import * as React from "react";
|
|
3372
3374
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3373
|
-
import { PropertyChangedEvent } from "
|
|
3375
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3374
3376
|
import { TextBlock } from "@babylonjs/gui/2D/controls/textBlock";
|
|
3375
|
-
import { LockObject } from "
|
|
3377
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3376
3378
|
interface ITextBlockPropertyGridComponentProps {
|
|
3377
3379
|
textBlock: TextBlock;
|
|
3378
3380
|
lockObject: LockObject;
|
|
@@ -3385,7 +3387,7 @@ export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPr
|
|
|
3385
3387
|
export {};
|
|
3386
3388
|
|
|
3387
3389
|
}
|
|
3388
|
-
declare module "
|
|
3390
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/lockObject" {
|
|
3389
3391
|
/**
|
|
3390
3392
|
* Class used to provide lock mechanism
|
|
3391
3393
|
*/
|