@babylonjs/node-editor 5.0.0-rc.9 → 5.0.2
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.
|
@@ -1798,7 +1798,8 @@ export {};
|
|
|
1798
1798
|
}
|
|
1799
1799
|
declare module "@babylonjs/node-editor/sharedComponents/matrixLineComponent" {
|
|
1800
1800
|
import * as React from "react";
|
|
1801
|
-
import { Vector3,
|
|
1801
|
+
import { Vector3, Vector4 } from "@babylonjs/core/Maths/math.vector";
|
|
1802
|
+
import { Matrix } from "@babylonjs/core/Maths/math.vector";
|
|
1802
1803
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
1803
1804
|
import { PropertyChangedEvent } from "@babylonjs/node-editor/sharedComponents/propertyChangedEvent";
|
|
1804
1805
|
import { GlobalState } from "@babylonjs/node-editor/globalState";
|
|
@@ -2162,7 +2163,7 @@ export class Vector4LineComponent extends React.Component<IVector4LineComponentP
|
|
|
2162
2163
|
export {};
|
|
2163
2164
|
|
|
2164
2165
|
}
|
|
2165
|
-
declare module "
|
|
2166
|
+
declare module "@babylonjs/node-editor/colorPicker/colorComponentEntry" {
|
|
2166
2167
|
import * as React from "react";
|
|
2167
2168
|
export interface IColorComponentEntryProps {
|
|
2168
2169
|
value: number;
|
|
@@ -2179,10 +2180,10 @@ export class ColorComponentEntry extends React.Component<IColorComponentEntryPro
|
|
|
2179
2180
|
}
|
|
2180
2181
|
|
|
2181
2182
|
}
|
|
2182
|
-
declare module "
|
|
2183
|
+
declare module "@babylonjs/node-editor/colorPicker/colorPicker" {
|
|
2183
2184
|
import * as React from "react";
|
|
2184
2185
|
import { Color3, Color4 } from "@babylonjs/core/Maths/math.color";
|
|
2185
|
-
import "
|
|
2186
|
+
import "@babylonjs/node-editor/colorPicker/colorPicker.scss";
|
|
2186
2187
|
/**
|
|
2187
2188
|
* Interface used to specify creation options for color picker
|
|
2188
2189
|
*/
|
|
@@ -2223,7 +2224,7 @@ export class ColorPicker extends React.Component<IColorPickerProps, IColorPicker
|
|
|
2223
2224
|
}
|
|
2224
2225
|
|
|
2225
2226
|
}
|
|
2226
|
-
declare module "
|
|
2227
|
+
declare module "@babylonjs/node-editor/colorPicker/hexColor" {
|
|
2227
2228
|
import * as React from "react";
|
|
2228
2229
|
export interface IHexColorProps {
|
|
2229
2230
|
value: string;
|
|
@@ -2242,7 +2243,7 @@ export class HexColor extends React.Component<IHexColorProps, {
|
|
|
2242
2243
|
}
|
|
2243
2244
|
|
|
2244
2245
|
}
|
|
2245
|
-
declare module "
|
|
2246
|
+
declare module "@babylonjs/node-editor/lines/booleanLineComponent" {
|
|
2246
2247
|
import * as React from "react";
|
|
2247
2248
|
export interface IBooleanLineComponentProps {
|
|
2248
2249
|
label: string;
|
|
@@ -2256,7 +2257,7 @@ export class BooleanLineComponent extends React.Component<IBooleanLineComponentP
|
|
|
2256
2257
|
}
|
|
2257
2258
|
|
|
2258
2259
|
}
|
|
2259
|
-
declare module "
|
|
2260
|
+
declare module "@babylonjs/node-editor/lines/buttonLineComponent" {
|
|
2260
2261
|
import * as React from "react";
|
|
2261
2262
|
export interface IButtonLineComponentProps {
|
|
2262
2263
|
label: string;
|
|
@@ -2270,11 +2271,11 @@ export class ButtonLineComponent extends React.Component<IButtonLineComponentPro
|
|
|
2270
2271
|
}
|
|
2271
2272
|
|
|
2272
2273
|
}
|
|
2273
|
-
declare module "
|
|
2274
|
+
declare module "@babylonjs/node-editor/lines/checkBoxLineComponent" {
|
|
2274
2275
|
import * as React from "react";
|
|
2275
2276
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2276
|
-
import { PropertyChangedEvent } from "
|
|
2277
|
-
|
|
2277
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2278
|
+
|
|
2278
2279
|
export interface ICheckBoxLineComponentProps {
|
|
2279
2280
|
label?: string;
|
|
2280
2281
|
target?: any;
|
|
@@ -2287,9 +2288,10 @@ export interface ICheckBoxLineComponentProps {
|
|
|
2287
2288
|
icon?: string;
|
|
2288
2289
|
iconLabel?: string;
|
|
2289
2290
|
faIcons?: {
|
|
2290
|
-
enabled:
|
|
2291
|
-
disabled:
|
|
2291
|
+
enabled: any;
|
|
2292
|
+
disabled: any;
|
|
2292
2293
|
};
|
|
2294
|
+
large?: boolean;
|
|
2293
2295
|
}
|
|
2294
2296
|
export class CheckBoxLineComponent extends React.Component<ICheckBoxLineComponentProps, {
|
|
2295
2297
|
isSelected: boolean;
|
|
@@ -2308,11 +2310,11 @@ export class CheckBoxLineComponent extends React.Component<ICheckBoxLineComponen
|
|
|
2308
2310
|
}
|
|
2309
2311
|
|
|
2310
2312
|
}
|
|
2311
|
-
declare module "
|
|
2313
|
+
declare module "@babylonjs/node-editor/lines/color3LineComponent" {
|
|
2312
2314
|
import * as React from "react";
|
|
2313
2315
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2314
|
-
import { PropertyChangedEvent } from "
|
|
2315
|
-
import { LockObject } from "
|
|
2316
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2317
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2316
2318
|
export interface IColor3LineComponentProps {
|
|
2317
2319
|
label: string;
|
|
2318
2320
|
target: any;
|
|
@@ -2329,11 +2331,11 @@ export class Color3LineComponent extends React.Component<IColor3LineComponentPro
|
|
|
2329
2331
|
}
|
|
2330
2332
|
|
|
2331
2333
|
}
|
|
2332
|
-
declare module "
|
|
2334
|
+
declare module "@babylonjs/node-editor/lines/color4LineComponent" {
|
|
2333
2335
|
import * as React from "react";
|
|
2334
2336
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2335
|
-
import { PropertyChangedEvent } from "
|
|
2336
|
-
import { LockObject } from "
|
|
2337
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2338
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2337
2339
|
export interface IColor4LineComponentProps {
|
|
2338
2340
|
label: string;
|
|
2339
2341
|
target?: any;
|
|
@@ -2350,12 +2352,12 @@ export class Color4LineComponent extends React.Component<IColor4LineComponentPro
|
|
|
2350
2352
|
}
|
|
2351
2353
|
|
|
2352
2354
|
}
|
|
2353
|
-
declare module "
|
|
2355
|
+
declare module "@babylonjs/node-editor/lines/colorLineComponent" {
|
|
2354
2356
|
import * as React from "react";
|
|
2355
2357
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2356
2358
|
import { Color4 } from "@babylonjs/core/Maths/math.color";
|
|
2357
|
-
import { PropertyChangedEvent } from "
|
|
2358
|
-
import { LockObject } from "
|
|
2359
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2360
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2359
2361
|
export interface IColorLineComponentProps {
|
|
2360
2362
|
label: string;
|
|
2361
2363
|
target?: any;
|
|
@@ -2393,7 +2395,7 @@ export class ColorLineComponent extends React.Component<IColorLineComponentProps
|
|
|
2393
2395
|
export {};
|
|
2394
2396
|
|
|
2395
2397
|
}
|
|
2396
|
-
declare module "
|
|
2398
|
+
declare module "@babylonjs/node-editor/lines/colorPickerComponent" {
|
|
2397
2399
|
import * as React from "react";
|
|
2398
2400
|
import { Color4, Color3 } from "@babylonjs/core/Maths/math.color";
|
|
2399
2401
|
export interface IColorPickerComponentProps {
|
|
@@ -2425,7 +2427,7 @@ export class ColorPickerLineComponent extends React.Component<IColorPickerCompon
|
|
|
2425
2427
|
export {};
|
|
2426
2428
|
|
|
2427
2429
|
}
|
|
2428
|
-
declare module "
|
|
2430
|
+
declare module "@babylonjs/node-editor/lines/draggableLineComponent" {
|
|
2429
2431
|
import * as React from "react";
|
|
2430
2432
|
export interface IButtonLineComponentProps {
|
|
2431
2433
|
data: string;
|
|
@@ -2437,7 +2439,7 @@ export class DraggableLineComponent extends React.Component<IButtonLineComponent
|
|
|
2437
2439
|
}
|
|
2438
2440
|
|
|
2439
2441
|
}
|
|
2440
|
-
declare module "
|
|
2442
|
+
declare module "@babylonjs/node-editor/lines/fileButtonLineComponent" {
|
|
2441
2443
|
import * as React from "react";
|
|
2442
2444
|
interface IFileButtonLineComponentProps {
|
|
2443
2445
|
label: string;
|
|
@@ -2457,7 +2459,7 @@ export class FileButtonLineComponent extends React.Component<IFileButtonLineComp
|
|
|
2457
2459
|
export {};
|
|
2458
2460
|
|
|
2459
2461
|
}
|
|
2460
|
-
declare module "
|
|
2462
|
+
declare module "@babylonjs/node-editor/lines/fileMultipleButtonLineComponent" {
|
|
2461
2463
|
import * as React from "react";
|
|
2462
2464
|
interface IFileMultipleButtonLineComponentProps {
|
|
2463
2465
|
label: string;
|
|
@@ -2477,11 +2479,11 @@ export class FileMultipleButtonLineComponent extends React.Component<IFileMultip
|
|
|
2477
2479
|
export {};
|
|
2478
2480
|
|
|
2479
2481
|
}
|
|
2480
|
-
declare module "
|
|
2482
|
+
declare module "@babylonjs/node-editor/lines/floatLineComponent" {
|
|
2481
2483
|
import * as React from "react";
|
|
2482
2484
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2483
|
-
import { PropertyChangedEvent } from "
|
|
2484
|
-
import { LockObject } from "
|
|
2485
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2486
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2485
2487
|
interface IFloatLineComponentProps {
|
|
2486
2488
|
label: string;
|
|
2487
2489
|
target: any;
|
|
@@ -2501,12 +2503,14 @@ interface IFloatLineComponentProps {
|
|
|
2501
2503
|
icon?: string;
|
|
2502
2504
|
iconLabel?: string;
|
|
2503
2505
|
defaultValue?: number;
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2506
|
+
arrows?: boolean;
|
|
2507
|
+
unit?: React.ReactNode;
|
|
2508
|
+
onDragStart?: (newValue: number) => void;
|
|
2509
|
+
onDragStop?: (newValue: number) => void;
|
|
2507
2510
|
}
|
|
2508
2511
|
export class FloatLineComponent extends React.Component<IFloatLineComponentProps, {
|
|
2509
2512
|
value: string;
|
|
2513
|
+
dragging: boolean;
|
|
2510
2514
|
}> {
|
|
2511
2515
|
private _localChange;
|
|
2512
2516
|
private _store;
|
|
@@ -2515,21 +2519,24 @@ export class FloatLineComponent extends React.Component<IFloatLineComponentProps
|
|
|
2515
2519
|
getValueString(value: any): string;
|
|
2516
2520
|
shouldComponentUpdate(nextProps: IFloatLineComponentProps, nextState: {
|
|
2517
2521
|
value: string;
|
|
2522
|
+
dragging: boolean;
|
|
2518
2523
|
}): boolean;
|
|
2519
2524
|
raiseOnPropertyChanged(newValue: number, previousValue: number): void;
|
|
2520
2525
|
updateValue(valueString: string): void;
|
|
2521
2526
|
lock(): void;
|
|
2522
2527
|
unlock(): void;
|
|
2528
|
+
incrementValue(amount: number): void;
|
|
2529
|
+
onKeyDown(event: React.KeyboardEvent): void;
|
|
2523
2530
|
render(): JSX.Element;
|
|
2524
2531
|
}
|
|
2525
2532
|
export {};
|
|
2526
2533
|
|
|
2527
2534
|
}
|
|
2528
|
-
declare module "
|
|
2535
|
+
declare module "@babylonjs/node-editor/lines/hexLineComponent" {
|
|
2529
2536
|
import * as React from "react";
|
|
2530
2537
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2531
|
-
import { PropertyChangedEvent } from "
|
|
2532
|
-
import { LockObject } from "
|
|
2538
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2539
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2533
2540
|
interface IHexLineComponentProps {
|
|
2534
2541
|
label: string;
|
|
2535
2542
|
target: any;
|
|
@@ -2568,7 +2575,7 @@ export class HexLineComponent extends React.Component<IHexLineComponentProps, {
|
|
|
2568
2575
|
export {};
|
|
2569
2576
|
|
|
2570
2577
|
}
|
|
2571
|
-
declare module "
|
|
2578
|
+
declare module "@babylonjs/node-editor/lines/iconButtonLineComponent" {
|
|
2572
2579
|
import * as React from "react";
|
|
2573
2580
|
export interface IIconButtonLineComponentProps {
|
|
2574
2581
|
icon: string;
|
|
@@ -2582,7 +2589,7 @@ export class IconButtonLineComponent extends React.Component<IIconButtonLineComp
|
|
|
2582
2589
|
}
|
|
2583
2590
|
|
|
2584
2591
|
}
|
|
2585
|
-
declare module "
|
|
2592
|
+
declare module "@babylonjs/node-editor/lines/iconComponent" {
|
|
2586
2593
|
import * as React from "react";
|
|
2587
2594
|
interface IIconComponentProps {
|
|
2588
2595
|
icon: string;
|
|
@@ -2594,7 +2601,7 @@ export class IconComponent extends React.Component<IIconComponentProps> {
|
|
|
2594
2601
|
export {};
|
|
2595
2602
|
|
|
2596
2603
|
}
|
|
2597
|
-
declare module "
|
|
2604
|
+
declare module "@babylonjs/node-editor/lines/indentedTextLineComponent" {
|
|
2598
2605
|
import * as React from "react";
|
|
2599
2606
|
interface IIndentedTextLineComponentProps {
|
|
2600
2607
|
value?: string;
|
|
@@ -2613,7 +2620,7 @@ export class IndentedTextLineComponent extends React.Component<IIndentedTextLine
|
|
|
2613
2620
|
export {};
|
|
2614
2621
|
|
|
2615
2622
|
}
|
|
2616
|
-
declare module "
|
|
2623
|
+
declare module "@babylonjs/node-editor/lines/inputArrowsComponent" {
|
|
2617
2624
|
import * as React from "react";
|
|
2618
2625
|
interface IInputArrowsComponentProps {
|
|
2619
2626
|
incrementValue: (amount: number) => void;
|
|
@@ -2623,21 +2630,22 @@ export class InputArrowsComponent extends React.Component<IInputArrowsComponentP
|
|
|
2623
2630
|
private _arrowsRef;
|
|
2624
2631
|
private _drag;
|
|
2625
2632
|
private _releaseListener;
|
|
2633
|
+
private _lockChangeListener;
|
|
2626
2634
|
render(): JSX.Element;
|
|
2627
2635
|
}
|
|
2628
2636
|
export {};
|
|
2629
2637
|
|
|
2630
2638
|
}
|
|
2631
|
-
declare module "
|
|
2639
|
+
declare module "@babylonjs/node-editor/lines/iSelectedLineContainer" {
|
|
2632
2640
|
export interface ISelectedLineContainer {
|
|
2633
2641
|
selectedLineContainerTitles: Array<string>;
|
|
2634
2642
|
selectedLineContainerTitlesNoFocus: Array<string>;
|
|
2635
2643
|
}
|
|
2636
2644
|
|
|
2637
2645
|
}
|
|
2638
|
-
declare module "
|
|
2646
|
+
declare module "@babylonjs/node-editor/lines/lineContainerComponent" {
|
|
2639
2647
|
import * as React from "react";
|
|
2640
|
-
import { ISelectedLineContainer } from "
|
|
2648
|
+
import { ISelectedLineContainer } from "@babylonjs/node-editor/lines/iSelectedLineContainer";
|
|
2641
2649
|
interface ILineContainerComponentProps {
|
|
2642
2650
|
selection?: ISelectedLineContainer;
|
|
2643
2651
|
title: string;
|
|
@@ -2657,15 +2665,15 @@ export class LineContainerComponent extends React.Component<ILineContainerCompon
|
|
|
2657
2665
|
export {};
|
|
2658
2666
|
|
|
2659
2667
|
}
|
|
2660
|
-
declare module "
|
|
2668
|
+
declare module "@babylonjs/node-editor/lines/linkButtonComponent" {
|
|
2661
2669
|
import * as React from "react";
|
|
2662
|
-
|
|
2670
|
+
|
|
2663
2671
|
interface ILinkButtonComponentProps {
|
|
2664
2672
|
label: string;
|
|
2665
2673
|
buttonLabel: string;
|
|
2666
2674
|
url?: string;
|
|
2667
2675
|
onClick: () => void;
|
|
2668
|
-
icon?:
|
|
2676
|
+
icon?: any;
|
|
2669
2677
|
onIconClick?: () => void;
|
|
2670
2678
|
}
|
|
2671
2679
|
export class LinkButtonComponent extends React.Component<ILinkButtonComponentProps> {
|
|
@@ -2676,13 +2684,13 @@ export class LinkButtonComponent extends React.Component<ILinkButtonComponentPro
|
|
|
2676
2684
|
export {};
|
|
2677
2685
|
|
|
2678
2686
|
}
|
|
2679
|
-
declare module "
|
|
2687
|
+
declare module "@babylonjs/node-editor/lines/messageLineComponent" {
|
|
2680
2688
|
import * as React from "react";
|
|
2681
|
-
|
|
2689
|
+
|
|
2682
2690
|
interface IMessageLineComponentProps {
|
|
2683
2691
|
text: string;
|
|
2684
2692
|
color?: string;
|
|
2685
|
-
icon?:
|
|
2693
|
+
icon?: any;
|
|
2686
2694
|
}
|
|
2687
2695
|
export class MessageLineComponent extends React.Component<IMessageLineComponentProps> {
|
|
2688
2696
|
constructor(props: IMessageLineComponentProps);
|
|
@@ -2691,7 +2699,7 @@ export class MessageLineComponent extends React.Component<IMessageLineComponentP
|
|
|
2691
2699
|
export {};
|
|
2692
2700
|
|
|
2693
2701
|
}
|
|
2694
|
-
declare module "
|
|
2702
|
+
declare module "@babylonjs/node-editor/lines/numericInputComponent" {
|
|
2695
2703
|
import * as React from "react";
|
|
2696
2704
|
interface INumericInputComponentProps {
|
|
2697
2705
|
label: string;
|
|
@@ -2720,10 +2728,10 @@ export class NumericInputComponent extends React.Component<INumericInputComponen
|
|
|
2720
2728
|
export {};
|
|
2721
2729
|
|
|
2722
2730
|
}
|
|
2723
|
-
declare module "
|
|
2731
|
+
declare module "@babylonjs/node-editor/lines/optionsLineComponent" {
|
|
2724
2732
|
import * as React from "react";
|
|
2725
2733
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2726
|
-
import { PropertyChangedEvent } from "
|
|
2734
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2727
2735
|
import { IInspectableOptions } from "@babylonjs/core/Misc/iInspectable";
|
|
2728
2736
|
export const Null_Value: number;
|
|
2729
2737
|
export interface IOptionsLineComponentProps {
|
|
@@ -2755,14 +2763,14 @@ export class OptionsLineComponent extends React.Component<IOptionsLineComponentP
|
|
|
2755
2763
|
}
|
|
2756
2764
|
|
|
2757
2765
|
}
|
|
2758
|
-
declare module "
|
|
2766
|
+
declare module "@babylonjs/node-editor/lines/popup" {
|
|
2759
2767
|
export class Popup {
|
|
2760
2768
|
static CreatePopup(title: string, windowVariableName: string, width?: number, height?: number): HTMLDivElement | null;
|
|
2761
2769
|
private static _CopyStyles;
|
|
2762
2770
|
}
|
|
2763
2771
|
|
|
2764
2772
|
}
|
|
2765
|
-
declare module "
|
|
2773
|
+
declare module "@babylonjs/node-editor/lines/radioLineComponent" {
|
|
2766
2774
|
import * as React from "react";
|
|
2767
2775
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2768
2776
|
interface IRadioButtonLineComponentProps {
|
|
@@ -2786,11 +2794,11 @@ export class RadioButtonLineComponent extends React.Component<IRadioButtonLineCo
|
|
|
2786
2794
|
export {};
|
|
2787
2795
|
|
|
2788
2796
|
}
|
|
2789
|
-
declare module "
|
|
2797
|
+
declare module "@babylonjs/node-editor/lines/sliderLineComponent" {
|
|
2790
2798
|
import * as React from "react";
|
|
2791
2799
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2792
|
-
import { PropertyChangedEvent } from "
|
|
2793
|
-
import { LockObject } from "
|
|
2800
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2801
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2794
2802
|
interface ISliderLineComponentProps {
|
|
2795
2803
|
label: string;
|
|
2796
2804
|
target?: any;
|
|
@@ -2808,6 +2816,7 @@ interface ISliderLineComponentProps {
|
|
|
2808
2816
|
icon?: string;
|
|
2809
2817
|
iconLabel?: string;
|
|
2810
2818
|
lockObject?: LockObject;
|
|
2819
|
+
unit?: React.ReactNode;
|
|
2811
2820
|
}
|
|
2812
2821
|
export class SliderLineComponent extends React.Component<ISliderLineComponentProps, {
|
|
2813
2822
|
value: number;
|
|
@@ -2825,8 +2834,8 @@ export class SliderLineComponent extends React.Component<ISliderLineComponentPro
|
|
|
2825
2834
|
export {};
|
|
2826
2835
|
|
|
2827
2836
|
}
|
|
2828
|
-
declare module "
|
|
2829
|
-
import { PropertyChangedEvent } from "
|
|
2837
|
+
declare module "@babylonjs/node-editor/lines/targetsProxy" {
|
|
2838
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2830
2839
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2831
2840
|
export const conflictingValuesPlaceholder = "\u2014";
|
|
2832
2841
|
/**
|
|
@@ -2839,12 +2848,12 @@ export const conflictingValuesPlaceholder = "\u2014";
|
|
|
2839
2848
|
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: Observable<PropertyChangedEvent>, getProperty?: (target: Type, property: keyof Type) => any): any;
|
|
2840
2849
|
|
|
2841
2850
|
}
|
|
2842
|
-
declare module "
|
|
2851
|
+
declare module "@babylonjs/node-editor/lines/textInputLineComponent" {
|
|
2843
2852
|
import * as React from "react";
|
|
2844
2853
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2845
|
-
import { PropertyChangedEvent } from "
|
|
2846
|
-
import { LockObject } from "
|
|
2847
|
-
interface ITextInputLineComponentProps {
|
|
2854
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2855
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
2856
|
+
export interface ITextInputLineComponentProps {
|
|
2848
2857
|
label?: string;
|
|
2849
2858
|
lockObject?: LockObject;
|
|
2850
2859
|
target?: any;
|
|
@@ -2857,9 +2866,6 @@ interface ITextInputLineComponentProps {
|
|
|
2857
2866
|
noUnderline?: boolean;
|
|
2858
2867
|
numbersOnly?: boolean;
|
|
2859
2868
|
delayInput?: boolean;
|
|
2860
|
-
unit?: string;
|
|
2861
|
-
onUnitClicked?: (unit: string) => void;
|
|
2862
|
-
unitLocked?: boolean;
|
|
2863
2869
|
arrows?: boolean;
|
|
2864
2870
|
arrowsIncrement?: (amount: number) => void;
|
|
2865
2871
|
step?: number;
|
|
@@ -2868,6 +2874,7 @@ interface ITextInputLineComponentProps {
|
|
|
2868
2874
|
min?: number;
|
|
2869
2875
|
max?: number;
|
|
2870
2876
|
placeholder?: string;
|
|
2877
|
+
unit?: React.ReactNode;
|
|
2871
2878
|
}
|
|
2872
2879
|
export class TextInputLineComponent extends React.Component<ITextInputLineComponentProps, {
|
|
2873
2880
|
value: string;
|
|
@@ -2881,15 +2888,15 @@ export class TextInputLineComponent extends React.Component<ITextInputLineCompon
|
|
|
2881
2888
|
dragging: boolean;
|
|
2882
2889
|
}): boolean;
|
|
2883
2890
|
raiseOnPropertyChanged(newValue: string, previousValue: string): void;
|
|
2891
|
+
getCurrentNumericValue(value: string): number;
|
|
2884
2892
|
updateValue(value: string): void;
|
|
2885
2893
|
incrementValue(amount: number): void;
|
|
2886
2894
|
onKeyDown(event: React.KeyboardEvent): void;
|
|
2887
2895
|
render(): JSX.Element;
|
|
2888
2896
|
}
|
|
2889
|
-
export {};
|
|
2890
2897
|
|
|
2891
2898
|
}
|
|
2892
|
-
declare module "
|
|
2899
|
+
declare module "@babylonjs/node-editor/lines/textLineComponent" {
|
|
2893
2900
|
import * as React from "react";
|
|
2894
2901
|
interface ITextLineComponentProps {
|
|
2895
2902
|
label?: string;
|
|
@@ -2913,7 +2920,18 @@ export class TextLineComponent extends React.Component<ITextLineComponentProps>
|
|
|
2913
2920
|
export {};
|
|
2914
2921
|
|
|
2915
2922
|
}
|
|
2916
|
-
declare module "
|
|
2923
|
+
declare module "@babylonjs/node-editor/lines/unitButton" {
|
|
2924
|
+
/// <reference types="react" />
|
|
2925
|
+
interface IUnitButtonProps {
|
|
2926
|
+
unit: string;
|
|
2927
|
+
locked?: boolean;
|
|
2928
|
+
onClick?: (unit: string) => void;
|
|
2929
|
+
}
|
|
2930
|
+
export function UnitButton(props: IUnitButtonProps): JSX.Element;
|
|
2931
|
+
export {};
|
|
2932
|
+
|
|
2933
|
+
}
|
|
2934
|
+
declare module "@babylonjs/node-editor/lines/valueLineComponent" {
|
|
2917
2935
|
import * as React from "react";
|
|
2918
2936
|
interface IValueLineComponentProps {
|
|
2919
2937
|
label: string;
|
|
@@ -2931,11 +2949,11 @@ export class ValueLineComponent extends React.Component<IValueLineComponentProps
|
|
|
2931
2949
|
export {};
|
|
2932
2950
|
|
|
2933
2951
|
}
|
|
2934
|
-
declare module "
|
|
2952
|
+
declare module "@babylonjs/node-editor/lines/vector2LineComponent" {
|
|
2935
2953
|
import * as React from "react";
|
|
2936
2954
|
import { Vector2 } from "@babylonjs/core/Maths/math.vector";
|
|
2937
2955
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2938
|
-
import { PropertyChangedEvent } from "
|
|
2956
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2939
2957
|
interface IVector2LineComponentProps {
|
|
2940
2958
|
label: string;
|
|
2941
2959
|
target: any;
|
|
@@ -2968,11 +2986,11 @@ export class Vector2LineComponent extends React.Component<IVector2LineComponentP
|
|
|
2968
2986
|
export {};
|
|
2969
2987
|
|
|
2970
2988
|
}
|
|
2971
|
-
declare module "
|
|
2989
|
+
declare module "@babylonjs/node-editor/lines/vector3LineComponent" {
|
|
2972
2990
|
import * as React from "react";
|
|
2973
2991
|
import { Vector3 } from "@babylonjs/core/Maths/math.vector";
|
|
2974
2992
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2975
|
-
import { PropertyChangedEvent } from "
|
|
2993
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
2976
2994
|
interface IVector3LineComponentProps {
|
|
2977
2995
|
label: string;
|
|
2978
2996
|
target: any;
|
|
@@ -3010,11 +3028,11 @@ export class Vector3LineComponent extends React.Component<IVector3LineComponentP
|
|
|
3010
3028
|
export {};
|
|
3011
3029
|
|
|
3012
3030
|
}
|
|
3013
|
-
declare module "
|
|
3031
|
+
declare module "@babylonjs/node-editor/lines/vector4LineComponent" {
|
|
3014
3032
|
import * as React from "react";
|
|
3015
3033
|
import { Vector4 } from "@babylonjs/core/Maths/math.vector";
|
|
3016
3034
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3017
|
-
import { PropertyChangedEvent } from "
|
|
3035
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3018
3036
|
interface IVector4LineComponentProps {
|
|
3019
3037
|
label: string;
|
|
3020
3038
|
target: any;
|
|
@@ -3052,7 +3070,7 @@ export class Vector4LineComponent extends React.Component<IVector4LineComponentP
|
|
|
3052
3070
|
export {};
|
|
3053
3071
|
|
|
3054
3072
|
}
|
|
3055
|
-
declare module "
|
|
3073
|
+
declare module "@babylonjs/node-editor/propertyChangedEvent" {
|
|
3056
3074
|
export class PropertyChangedEvent {
|
|
3057
3075
|
object: any;
|
|
3058
3076
|
property: string;
|
|
@@ -3062,7 +3080,7 @@ export class PropertyChangedEvent {
|
|
|
3062
3080
|
}
|
|
3063
3081
|
|
|
3064
3082
|
}
|
|
3065
|
-
declare module "
|
|
3083
|
+
declare module "@babylonjs/node-editor/stringTools" {
|
|
3066
3084
|
export class StringTools {
|
|
3067
3085
|
private static _SaveAs;
|
|
3068
3086
|
private static _Click;
|
|
@@ -3076,11 +3094,11 @@ export class StringTools {
|
|
|
3076
3094
|
}
|
|
3077
3095
|
|
|
3078
3096
|
}
|
|
3079
|
-
declare module "
|
|
3097
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/checkboxPropertyGridComponent" {
|
|
3080
3098
|
import * as React from "react";
|
|
3081
3099
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3082
|
-
import { PropertyChangedEvent } from "
|
|
3083
|
-
import { LockObject } from "
|
|
3100
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3101
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3084
3102
|
import { Checkbox } from "@babylonjs/gui/2D/controls/checkbox";
|
|
3085
3103
|
interface ICheckboxPropertyGridComponentProps {
|
|
3086
3104
|
checkbox: Checkbox;
|
|
@@ -3094,12 +3112,12 @@ export class CheckboxPropertyGridComponent extends React.Component<ICheckboxProp
|
|
|
3094
3112
|
export {};
|
|
3095
3113
|
|
|
3096
3114
|
}
|
|
3097
|
-
declare module "
|
|
3115
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/colorPickerPropertyGridComponent" {
|
|
3098
3116
|
import * as React from "react";
|
|
3099
3117
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3100
|
-
import { PropertyChangedEvent } from "
|
|
3118
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3101
3119
|
import { ColorPicker } from "@babylonjs/gui/2D/controls/colorpicker";
|
|
3102
|
-
import { LockObject } from "
|
|
3120
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3103
3121
|
interface IColorPickerPropertyGridComponentProps {
|
|
3104
3122
|
colorPicker: ColorPicker;
|
|
3105
3123
|
lockObject: LockObject;
|
|
@@ -3112,12 +3130,12 @@ export class ColorPickerPropertyGridComponent extends React.Component<IColorPick
|
|
|
3112
3130
|
export {};
|
|
3113
3131
|
|
|
3114
3132
|
}
|
|
3115
|
-
declare module "
|
|
3133
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/commonControlPropertyGridComponent" {
|
|
3116
3134
|
import * as React from "react";
|
|
3117
3135
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3118
|
-
import { PropertyChangedEvent } from "
|
|
3136
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3119
3137
|
import { Control } from "@babylonjs/gui/2D/controls/control";
|
|
3120
|
-
import { LockObject } from "
|
|
3138
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3121
3139
|
interface ICommonControlPropertyGridComponentProps {
|
|
3122
3140
|
controls?: Control[];
|
|
3123
3141
|
control?: Control;
|
|
@@ -3132,12 +3150,12 @@ export class CommonControlPropertyGridComponent extends React.Component<ICommonC
|
|
|
3132
3150
|
export {};
|
|
3133
3151
|
|
|
3134
3152
|
}
|
|
3135
|
-
declare module "
|
|
3153
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/controlPropertyGridComponent" {
|
|
3136
3154
|
import * as React from "react";
|
|
3137
3155
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3138
|
-
import { PropertyChangedEvent } from "
|
|
3156
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3139
3157
|
import { Control } from "@babylonjs/gui/2D/controls/control";
|
|
3140
|
-
import { LockObject } from "
|
|
3158
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3141
3159
|
interface IControlPropertyGridComponentProps {
|
|
3142
3160
|
control: Control;
|
|
3143
3161
|
lockObject: LockObject;
|
|
@@ -3150,11 +3168,11 @@ export class ControlPropertyGridComponent extends React.Component<IControlProper
|
|
|
3150
3168
|
export {};
|
|
3151
3169
|
|
|
3152
3170
|
}
|
|
3153
|
-
declare module "
|
|
3171
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/ellipsePropertyGridComponent" {
|
|
3154
3172
|
import * as React from "react";
|
|
3155
3173
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3156
|
-
import { PropertyChangedEvent } from "
|
|
3157
|
-
import { LockObject } from "
|
|
3174
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3175
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3158
3176
|
import { Ellipse } from "@babylonjs/gui/2D/controls/ellipse";
|
|
3159
3177
|
interface IEllipsePropertyGridComponentProps {
|
|
3160
3178
|
ellipse: Ellipse;
|
|
@@ -3168,11 +3186,11 @@ export class EllipsePropertyGridComponent extends React.Component<IEllipseProper
|
|
|
3168
3186
|
export {};
|
|
3169
3187
|
|
|
3170
3188
|
}
|
|
3171
|
-
declare module "
|
|
3189
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/gridPropertyGridComponent" {
|
|
3172
3190
|
import * as React from "react";
|
|
3173
3191
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3174
|
-
import { PropertyChangedEvent } from "
|
|
3175
|
-
import { LockObject } from "
|
|
3192
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3193
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3176
3194
|
import { Grid } from "@babylonjs/gui/2D/controls/grid";
|
|
3177
3195
|
interface IGridPropertyGridComponentProps {
|
|
3178
3196
|
grid: Grid;
|
|
@@ -3188,11 +3206,11 @@ export class GridPropertyGridComponent extends React.Component<IGridPropertyGrid
|
|
|
3188
3206
|
export {};
|
|
3189
3207
|
|
|
3190
3208
|
}
|
|
3191
|
-
declare module "
|
|
3209
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/imageBasedSliderPropertyGridComponent" {
|
|
3192
3210
|
import * as React from "react";
|
|
3193
3211
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3194
|
-
import { PropertyChangedEvent } from "
|
|
3195
|
-
import { LockObject } from "
|
|
3212
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3213
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3196
3214
|
import { ImageBasedSlider } from "@babylonjs/gui/2D/controls/sliders/imageBasedSlider";
|
|
3197
3215
|
interface IImageBasedSliderPropertyGridComponentProps {
|
|
3198
3216
|
imageBasedSlider: ImageBasedSlider;
|
|
@@ -3206,11 +3224,11 @@ export class ImageBasedSliderPropertyGridComponent extends React.Component<IImag
|
|
|
3206
3224
|
export {};
|
|
3207
3225
|
|
|
3208
3226
|
}
|
|
3209
|
-
declare module "
|
|
3227
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/imagePropertyGridComponent" {
|
|
3210
3228
|
import * as React from "react";
|
|
3211
3229
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3212
|
-
import { PropertyChangedEvent } from "
|
|
3213
|
-
import { LockObject } from "
|
|
3230
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3231
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3214
3232
|
import { Image } from "@babylonjs/gui/2D/controls/image";
|
|
3215
3233
|
interface IImagePropertyGridComponentProps {
|
|
3216
3234
|
image: Image;
|
|
@@ -3224,12 +3242,12 @@ export class ImagePropertyGridComponent extends React.Component<IImagePropertyGr
|
|
|
3224
3242
|
export {};
|
|
3225
3243
|
|
|
3226
3244
|
}
|
|
3227
|
-
declare module "
|
|
3245
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/inputTextPropertyGridComponent" {
|
|
3228
3246
|
import * as React from "react";
|
|
3229
3247
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3230
|
-
import { PropertyChangedEvent } from "
|
|
3248
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3231
3249
|
import { InputText } from "@babylonjs/gui/2D/controls/inputText";
|
|
3232
|
-
import { LockObject } from "
|
|
3250
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3233
3251
|
interface IInputTextPropertyGridComponentProps {
|
|
3234
3252
|
inputText: InputText;
|
|
3235
3253
|
lockObject: LockObject;
|
|
@@ -3242,11 +3260,11 @@ export class InputTextPropertyGridComponent extends React.Component<IInputTextPr
|
|
|
3242
3260
|
export {};
|
|
3243
3261
|
|
|
3244
3262
|
}
|
|
3245
|
-
declare module "
|
|
3263
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/linePropertyGridComponent" {
|
|
3246
3264
|
import * as React from "react";
|
|
3247
3265
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3248
|
-
import { PropertyChangedEvent } from "
|
|
3249
|
-
import { LockObject } from "
|
|
3266
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3267
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3250
3268
|
import { Line } from "@babylonjs/gui/2D/controls/line";
|
|
3251
3269
|
interface ILinePropertyGridComponentProps {
|
|
3252
3270
|
line: Line;
|
|
@@ -3261,11 +3279,11 @@ export class LinePropertyGridComponent extends React.Component<ILinePropertyGrid
|
|
|
3261
3279
|
export {};
|
|
3262
3280
|
|
|
3263
3281
|
}
|
|
3264
|
-
declare module "
|
|
3282
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/radioButtonPropertyGridComponent" {
|
|
3265
3283
|
import * as React from "react";
|
|
3266
3284
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3267
|
-
import { PropertyChangedEvent } from "
|
|
3268
|
-
import { LockObject } from "
|
|
3285
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3286
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3269
3287
|
import { RadioButton } from "@babylonjs/gui/2D/controls/radioButton";
|
|
3270
3288
|
interface IRadioButtonPropertyGridComponentProps {
|
|
3271
3289
|
radioButtons: RadioButton[];
|
|
@@ -3279,11 +3297,11 @@ export class RadioButtonPropertyGridComponent extends React.Component<IRadioButt
|
|
|
3279
3297
|
export {};
|
|
3280
3298
|
|
|
3281
3299
|
}
|
|
3282
|
-
declare module "
|
|
3300
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/rectanglePropertyGridComponent" {
|
|
3283
3301
|
import * as React from "react";
|
|
3284
3302
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3285
|
-
import { PropertyChangedEvent } from "
|
|
3286
|
-
import { LockObject } from "
|
|
3303
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3304
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3287
3305
|
import { Rectangle } from "@babylonjs/gui/2D/controls/rectangle";
|
|
3288
3306
|
interface IRectanglePropertyGridComponentProps {
|
|
3289
3307
|
rectangle: Rectangle;
|
|
@@ -3297,11 +3315,11 @@ export class RectanglePropertyGridComponent extends React.Component<IRectanglePr
|
|
|
3297
3315
|
export {};
|
|
3298
3316
|
|
|
3299
3317
|
}
|
|
3300
|
-
declare module "
|
|
3318
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/scrollViewerPropertyGridComponent" {
|
|
3301
3319
|
import * as React from "react";
|
|
3302
3320
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3303
|
-
import { PropertyChangedEvent } from "
|
|
3304
|
-
import { LockObject } from "
|
|
3321
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3322
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3305
3323
|
import { ScrollViewer } from "@babylonjs/gui/2D/controls/scrollViewers/scrollViewer";
|
|
3306
3324
|
interface IScrollViewerPropertyGridComponentProps {
|
|
3307
3325
|
scrollViewer: ScrollViewer;
|
|
@@ -3315,11 +3333,11 @@ export class ScrollViewerPropertyGridComponent extends React.Component<IScrollVi
|
|
|
3315
3333
|
export {};
|
|
3316
3334
|
|
|
3317
3335
|
}
|
|
3318
|
-
declare module "
|
|
3336
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/sliderPropertyGridComponent" {
|
|
3319
3337
|
import * as React from "react";
|
|
3320
3338
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3321
|
-
import { PropertyChangedEvent } from "
|
|
3322
|
-
import { LockObject } from "
|
|
3339
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3340
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3323
3341
|
import { Slider } from "@babylonjs/gui/2D/controls/sliders/slider";
|
|
3324
3342
|
interface ISliderPropertyGridComponentProps {
|
|
3325
3343
|
slider: Slider;
|
|
@@ -3333,11 +3351,11 @@ export class SliderPropertyGridComponent extends React.Component<ISliderProperty
|
|
|
3333
3351
|
export {};
|
|
3334
3352
|
|
|
3335
3353
|
}
|
|
3336
|
-
declare module "
|
|
3354
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/stackPanelPropertyGridComponent" {
|
|
3337
3355
|
import * as React from "react";
|
|
3338
3356
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3339
|
-
import { PropertyChangedEvent } from "
|
|
3340
|
-
import { LockObject } from "
|
|
3357
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3358
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3341
3359
|
import { StackPanel } from "@babylonjs/gui/2D/controls/stackPanel";
|
|
3342
3360
|
interface IStackPanelPropertyGridComponentProps {
|
|
3343
3361
|
stackPanel: StackPanel;
|
|
@@ -3351,12 +3369,12 @@ export class StackPanelPropertyGridComponent extends React.Component<IStackPanel
|
|
|
3351
3369
|
export {};
|
|
3352
3370
|
|
|
3353
3371
|
}
|
|
3354
|
-
declare module "
|
|
3372
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/gui/textBlockPropertyGridComponent" {
|
|
3355
3373
|
import * as React from "react";
|
|
3356
3374
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
3357
|
-
import { PropertyChangedEvent } from "
|
|
3375
|
+
import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEvent";
|
|
3358
3376
|
import { TextBlock } from "@babylonjs/gui/2D/controls/textBlock";
|
|
3359
|
-
import { LockObject } from "
|
|
3377
|
+
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
|
3360
3378
|
interface ITextBlockPropertyGridComponentProps {
|
|
3361
3379
|
textBlock: TextBlock;
|
|
3362
3380
|
lockObject: LockObject;
|
|
@@ -3369,7 +3387,7 @@ export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPr
|
|
|
3369
3387
|
export {};
|
|
3370
3388
|
|
|
3371
3389
|
}
|
|
3372
|
-
declare module "
|
|
3390
|
+
declare module "@babylonjs/node-editor/tabs/propertyGrids/lockObject" {
|
|
3373
3391
|
/**
|
|
3374
3392
|
* Class used to provide lock mechanism
|
|
3375
3393
|
*/
|