babylonjs-gui-editor 6.47.0 → 6.48.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.guiEditor.d.ts +126 -131
- package/babylon.guiEditor.js +1 -1
- package/babylon.guiEditor.js.map +1 -1
- package/babylon.guiEditor.max.js +23 -23
- package/babylon.guiEditor.module.d.ts +248 -258
- package/package.json +3 -3
|
@@ -11,7 +11,7 @@ export class CommandBarComponent extends React.Component<ICommandBarComponentPro
|
|
|
11
11
|
private _stopUpdating;
|
|
12
12
|
private _lockObject;
|
|
13
13
|
constructor(props: ICommandBarComponentProps);
|
|
14
|
-
|
|
14
|
+
|
|
15
15
|
}
|
|
16
16
|
export {};
|
|
17
17
|
|
|
@@ -32,7 +32,7 @@ interface ICommandButtonComponentProps {
|
|
|
32
32
|
}
|
|
33
33
|
export class CommandButtonComponent extends React.Component<ICommandButtonComponentProps> {
|
|
34
34
|
constructor(props: ICommandButtonComponentProps);
|
|
35
|
-
|
|
35
|
+
|
|
36
36
|
}
|
|
37
37
|
export {};
|
|
38
38
|
|
|
@@ -64,7 +64,7 @@ export class CommandDropdownComponent extends React.Component<ICommandDropdownCo
|
|
|
64
64
|
activeState: string;
|
|
65
65
|
}> {
|
|
66
66
|
constructor(props: ICommandDropdownComponentProps);
|
|
67
|
-
|
|
67
|
+
|
|
68
68
|
}
|
|
69
69
|
export {};
|
|
70
70
|
|
|
@@ -84,7 +84,7 @@ export class GuiListComponent extends React.Component<IGuiListComponentProps, {
|
|
|
84
84
|
constructor(props: IGuiListComponentProps);
|
|
85
85
|
componentWillUnmount(): void;
|
|
86
86
|
filterContent(filter: string): void;
|
|
87
|
-
|
|
87
|
+
|
|
88
88
|
}
|
|
89
89
|
export {};
|
|
90
90
|
|
|
@@ -107,7 +107,7 @@ export class LogComponent extends React.Component<ILogComponentProps, {
|
|
|
107
107
|
constructor(props: ILogComponentProps);
|
|
108
108
|
componentDidMount(): void;
|
|
109
109
|
componentDidUpdate(): void;
|
|
110
|
-
|
|
110
|
+
|
|
111
111
|
}
|
|
112
112
|
export {};
|
|
113
113
|
|
|
@@ -130,7 +130,7 @@ export class ParentingPropertyGridComponent extends React.Component<IParentingPr
|
|
|
130
130
|
updateGridPosition(): void;
|
|
131
131
|
getCellInfo(): void;
|
|
132
132
|
private _changeCell;
|
|
133
|
-
|
|
133
|
+
|
|
134
134
|
}
|
|
135
135
|
export {};
|
|
136
136
|
|
|
@@ -152,7 +152,7 @@ interface IButtonPropertyGridComponentProps {
|
|
|
152
152
|
}
|
|
153
153
|
export class ButtonPropertyGridComponent extends React.Component<IButtonPropertyGridComponentProps> {
|
|
154
154
|
constructor(props: IButtonPropertyGridComponentProps);
|
|
155
|
-
|
|
155
|
+
|
|
156
156
|
}
|
|
157
157
|
export {};
|
|
158
158
|
|
|
@@ -173,7 +173,7 @@ interface ICheckboxPropertyGridComponentProps {
|
|
|
173
173
|
}
|
|
174
174
|
export class CheckboxPropertyGridComponent extends React.Component<ICheckboxPropertyGridComponentProps> {
|
|
175
175
|
constructor(props: ICheckboxPropertyGridComponentProps);
|
|
176
|
-
|
|
176
|
+
|
|
177
177
|
}
|
|
178
178
|
export {};
|
|
179
179
|
|
|
@@ -194,7 +194,7 @@ interface IColorPickerPropertyGridComponentProps {
|
|
|
194
194
|
}
|
|
195
195
|
export class ColorPickerPropertyGridComponent extends React.Component<IColorPickerPropertyGridComponentProps> {
|
|
196
196
|
constructor(props: IColorPickerPropertyGridComponentProps);
|
|
197
|
-
|
|
197
|
+
|
|
198
198
|
}
|
|
199
199
|
export {};
|
|
200
200
|
|
|
@@ -243,7 +243,7 @@ export class CommonControlPropertyGridComponent extends React.Component<ICommonC
|
|
|
243
243
|
value: string;
|
|
244
244
|
id: string;
|
|
245
245
|
}[];
|
|
246
|
-
|
|
246
|
+
|
|
247
247
|
}
|
|
248
248
|
export {};
|
|
249
249
|
|
|
@@ -258,7 +258,7 @@ interface IContainerPropertyGridComponentProps {
|
|
|
258
258
|
onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
|
|
259
259
|
}
|
|
260
260
|
export class ContainerPropertyGridComponent extends React.Component<IContainerPropertyGridComponentProps> {
|
|
261
|
-
|
|
261
|
+
|
|
262
262
|
}
|
|
263
263
|
export {};
|
|
264
264
|
|
|
@@ -279,7 +279,7 @@ interface IControlPropertyGridComponentProps {
|
|
|
279
279
|
}
|
|
280
280
|
export class ControlPropertyGridComponent extends React.Component<IControlPropertyGridComponentProps> {
|
|
281
281
|
constructor(props: IControlPropertyGridComponentProps);
|
|
282
|
-
|
|
282
|
+
|
|
283
283
|
}
|
|
284
284
|
export {};
|
|
285
285
|
|
|
@@ -300,7 +300,7 @@ interface IDisplayGridPropertyGridComponentProps {
|
|
|
300
300
|
}
|
|
301
301
|
export class DisplayGridPropertyGridComponent extends React.Component<IDisplayGridPropertyGridComponentProps> {
|
|
302
302
|
constructor(props: IDisplayGridPropertyGridComponentProps);
|
|
303
|
-
|
|
303
|
+
|
|
304
304
|
}
|
|
305
305
|
export {};
|
|
306
306
|
|
|
@@ -321,7 +321,7 @@ interface IEllipsePropertyGridComponentProps {
|
|
|
321
321
|
}
|
|
322
322
|
export class EllipsePropertyGridComponent extends React.Component<IEllipsePropertyGridComponentProps> {
|
|
323
323
|
constructor(props: IEllipsePropertyGridComponentProps);
|
|
324
|
-
|
|
324
|
+
|
|
325
325
|
}
|
|
326
326
|
export {};
|
|
327
327
|
|
|
@@ -356,10 +356,10 @@ export class GridPropertyGridComponent extends React.Component<IGridPropertyGrid
|
|
|
356
356
|
private _editedColumn;
|
|
357
357
|
private _rowChild;
|
|
358
358
|
private _columnChild;
|
|
359
|
-
|
|
359
|
+
|
|
360
360
|
setRowValues(): void;
|
|
361
361
|
setColumnValues(): void;
|
|
362
|
-
|
|
362
|
+
|
|
363
363
|
parsePercentage(value: string): number;
|
|
364
364
|
isCloseTo(value: number, expected: number, epsilon?: number): boolean;
|
|
365
365
|
adjustPercentages(definitions: string[], editFlags: boolean[]): string[];
|
|
@@ -368,7 +368,7 @@ export class GridPropertyGridComponent extends React.Component<IGridPropertyGrid
|
|
|
368
368
|
checkValue(value: string, percent: boolean): string;
|
|
369
369
|
checkPercentage(value: string): boolean;
|
|
370
370
|
resetValues(): void;
|
|
371
|
-
|
|
371
|
+
|
|
372
372
|
}
|
|
373
373
|
export {};
|
|
374
374
|
|
|
@@ -389,7 +389,7 @@ interface IImageBasedSliderPropertyGridComponentProps {
|
|
|
389
389
|
}
|
|
390
390
|
export class ImageBasedSliderPropertyGridComponent extends React.Component<IImageBasedSliderPropertyGridComponentProps> {
|
|
391
391
|
constructor(props: IImageBasedSliderPropertyGridComponentProps);
|
|
392
|
-
|
|
392
|
+
|
|
393
393
|
}
|
|
394
394
|
export {};
|
|
395
395
|
|
|
@@ -417,7 +417,7 @@ export class ImagePropertyGridComponent extends React.Component<IImagePropertyGr
|
|
|
417
417
|
toggleAnimations(on: boolean): void;
|
|
418
418
|
getMaxCells(): number;
|
|
419
419
|
updateCellSize(): void;
|
|
420
|
-
|
|
420
|
+
|
|
421
421
|
}
|
|
422
422
|
export {};
|
|
423
423
|
|
|
@@ -438,7 +438,7 @@ interface IInputTextPropertyGridComponentProps {
|
|
|
438
438
|
}
|
|
439
439
|
export class InputTextPropertyGridComponent extends React.Component<IInputTextPropertyGridComponentProps> {
|
|
440
440
|
constructor(props: IInputTextPropertyGridComponentProps);
|
|
441
|
-
|
|
441
|
+
|
|
442
442
|
}
|
|
443
443
|
export {};
|
|
444
444
|
|
|
@@ -460,7 +460,7 @@ interface ILinePropertyGridComponentProps {
|
|
|
460
460
|
export class LinePropertyGridComponent extends React.Component<ILinePropertyGridComponentProps> {
|
|
461
461
|
constructor(props: ILinePropertyGridComponentProps);
|
|
462
462
|
onDashChange(value: string): void;
|
|
463
|
-
|
|
463
|
+
|
|
464
464
|
}
|
|
465
465
|
export {};
|
|
466
466
|
|
|
@@ -481,7 +481,7 @@ interface IRadioButtonPropertyGridComponentProps {
|
|
|
481
481
|
}
|
|
482
482
|
export class RadioButtonPropertyGridComponent extends React.Component<IRadioButtonPropertyGridComponentProps> {
|
|
483
483
|
constructor(props: IRadioButtonPropertyGridComponentProps);
|
|
484
|
-
|
|
484
|
+
|
|
485
485
|
}
|
|
486
486
|
export {};
|
|
487
487
|
|
|
@@ -502,7 +502,7 @@ interface IRectanglePropertyGridComponentProps {
|
|
|
502
502
|
}
|
|
503
503
|
export class RectanglePropertyGridComponent extends React.Component<IRectanglePropertyGridComponentProps> {
|
|
504
504
|
constructor(props: IRectanglePropertyGridComponentProps);
|
|
505
|
-
|
|
505
|
+
|
|
506
506
|
}
|
|
507
507
|
export {};
|
|
508
508
|
|
|
@@ -523,7 +523,7 @@ interface IScrollViewerPropertyGridComponentProps {
|
|
|
523
523
|
}
|
|
524
524
|
export class ScrollViewerPropertyGridComponent extends React.Component<IScrollViewerPropertyGridComponentProps> {
|
|
525
525
|
constructor(props: IScrollViewerPropertyGridComponentProps);
|
|
526
|
-
|
|
526
|
+
|
|
527
527
|
}
|
|
528
528
|
export {};
|
|
529
529
|
|
|
@@ -544,7 +544,7 @@ interface ISliderGenericPropertyGridComponentProps {
|
|
|
544
544
|
}
|
|
545
545
|
export class SliderGenericPropertyGridComponent extends React.Component<ISliderGenericPropertyGridComponentProps> {
|
|
546
546
|
constructor(props: ISliderGenericPropertyGridComponentProps);
|
|
547
|
-
|
|
547
|
+
|
|
548
548
|
}
|
|
549
549
|
export {};
|
|
550
550
|
|
|
@@ -563,7 +563,7 @@ interface ISliderPropertyGridComponentProps {
|
|
|
563
563
|
}
|
|
564
564
|
export class SliderPropertyGridComponent extends React.Component<ISliderPropertyGridComponentProps> {
|
|
565
565
|
constructor(props: ISliderPropertyGridComponentProps);
|
|
566
|
-
|
|
566
|
+
|
|
567
567
|
}
|
|
568
568
|
export {};
|
|
569
569
|
|
|
@@ -584,7 +584,7 @@ interface IStackPanelPropertyGridComponentProps {
|
|
|
584
584
|
}
|
|
585
585
|
export class StackPanelPropertyGridComponent extends React.Component<IStackPanelPropertyGridComponentProps> {
|
|
586
586
|
constructor(props: IStackPanelPropertyGridComponentProps);
|
|
587
|
-
|
|
587
|
+
|
|
588
588
|
}
|
|
589
589
|
export {};
|
|
590
590
|
|
|
@@ -605,7 +605,7 @@ interface ITextBlockPropertyGridComponentProps {
|
|
|
605
605
|
}
|
|
606
606
|
export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPropertyGridComponentProps> {
|
|
607
607
|
constructor(props: ITextBlockPropertyGridComponentProps);
|
|
608
|
-
|
|
608
|
+
|
|
609
609
|
}
|
|
610
610
|
export {};
|
|
611
611
|
|
|
@@ -641,16 +641,16 @@ export class PropertyTabComponent extends React.Component<IPropertyTabComponentP
|
|
|
641
641
|
saveToSnippetServerHelper: (content: string, adt: AdvancedDynamicTexture) => Promise<string>;
|
|
642
642
|
saveToSnippetServer: () => Promise<void>;
|
|
643
643
|
loadFromSnippet(): void;
|
|
644
|
-
|
|
644
|
+
|
|
645
645
|
/**
|
|
646
646
|
* returns the class name of a list of controls if they share a class, or an empty string if not
|
|
647
647
|
* @param nodes the list of controls to check
|
|
648
648
|
* @returns the class name of a list of controls if they share a class, or an empty string if not
|
|
649
649
|
*/
|
|
650
650
|
getControlsCommonClassName(nodes: Control[]): string;
|
|
651
|
-
|
|
651
|
+
|
|
652
652
|
renderControlIcon(nodes: Control[]): string;
|
|
653
|
-
|
|
653
|
+
|
|
654
654
|
}
|
|
655
655
|
export {};
|
|
656
656
|
|
|
@@ -682,7 +682,7 @@ export class ControlTreeItemComponent extends React.Component<IControlTreeItemCo
|
|
|
682
682
|
highlight(): void;
|
|
683
683
|
switchVisibility(): void;
|
|
684
684
|
onRename(name: string): void;
|
|
685
|
-
|
|
685
|
+
|
|
686
686
|
}
|
|
687
687
|
export {};
|
|
688
688
|
|
|
@@ -703,7 +703,7 @@ export class ExtensionsComponent extends React.Component<IExtensionsComponentPro
|
|
|
703
703
|
showPopup(): void;
|
|
704
704
|
componentDidMount(): void;
|
|
705
705
|
componentDidUpdate(): void;
|
|
706
|
-
|
|
706
|
+
|
|
707
707
|
}
|
|
708
708
|
export {};
|
|
709
709
|
|
|
@@ -720,7 +720,7 @@ interface ISceneExplorerFilterComponentProps {
|
|
|
720
720
|
}
|
|
721
721
|
export class SceneExplorerFilterComponent extends React.Component<ISceneExplorerFilterComponentProps> {
|
|
722
722
|
constructor(props: ISceneExplorerFilterComponentProps);
|
|
723
|
-
|
|
723
|
+
|
|
724
724
|
}
|
|
725
725
|
interface ISceneExplorerComponentProps {
|
|
726
726
|
scene?: Scene;
|
|
@@ -753,10 +753,10 @@ export class SceneExplorerComponent extends React.Component<ISceneExplorerCompon
|
|
|
753
753
|
found?: boolean;
|
|
754
754
|
}): boolean;
|
|
755
755
|
processKeys(keyEvent: React.KeyboardEvent<HTMLDivElement>): void;
|
|
756
|
-
|
|
756
|
+
|
|
757
757
|
onClose(): void;
|
|
758
758
|
onPopup(): void;
|
|
759
|
-
|
|
759
|
+
|
|
760
760
|
}
|
|
761
761
|
export {};
|
|
762
762
|
|
|
@@ -792,8 +792,8 @@ export class TreeItemComponent extends React.Component<ITreeItemComponentProps,
|
|
|
792
792
|
isExpanded: boolean;
|
|
793
793
|
}): boolean;
|
|
794
794
|
expandAll(expand: boolean): void;
|
|
795
|
-
|
|
796
|
-
|
|
795
|
+
|
|
796
|
+
|
|
797
797
|
}
|
|
798
798
|
|
|
799
799
|
}
|
|
@@ -814,7 +814,7 @@ export class TreeItemLabelComponent extends React.Component<ITreeItemLabelCompon
|
|
|
814
814
|
constructor(props: ITreeItemLabelComponentProps);
|
|
815
815
|
onClick(): void;
|
|
816
816
|
onBlur(): void;
|
|
817
|
-
|
|
817
|
+
|
|
818
818
|
}
|
|
819
819
|
export {};
|
|
820
820
|
|
|
@@ -860,8 +860,8 @@ export class TreeItemSelectableComponent extends React.Component<ITreeItemSelect
|
|
|
860
860
|
scrollIntoView(): void;
|
|
861
861
|
componentWillUnmount(): void;
|
|
862
862
|
onSelect(): void;
|
|
863
|
-
|
|
864
|
-
|
|
863
|
+
|
|
864
|
+
|
|
865
865
|
dragOver(event: React.DragEvent<HTMLDivElement>): void;
|
|
866
866
|
updateDragOverLocation(event: React.DragEvent<HTMLDivElement>): void;
|
|
867
867
|
drop(): void;
|
|
@@ -888,7 +888,7 @@ interface IArtBoardState {
|
|
|
888
888
|
export class ArtBoardComponent extends React.Component<IArtBoardProps, IArtBoardState> {
|
|
889
889
|
constructor(props: IArtBoardProps);
|
|
890
890
|
update(): void;
|
|
891
|
-
|
|
891
|
+
|
|
892
892
|
}
|
|
893
893
|
export {};
|
|
894
894
|
|
|
@@ -996,13 +996,12 @@ export class GizmoGeneric extends React.Component<IGuiGizmoProps, IGuiGizmoState
|
|
|
996
996
|
private _updateNodeFromLocalBounds;
|
|
997
997
|
private _beginDraggingScalePoint;
|
|
998
998
|
private _beginRotate;
|
|
999
|
-
|
|
999
|
+
|
|
1000
1000
|
}
|
|
1001
1001
|
export {};
|
|
1002
1002
|
|
|
1003
1003
|
}
|
|
1004
1004
|
declare module "babylonjs-gui-editor/diagram/gizmoLine" {
|
|
1005
|
-
/// <reference types="react" />
|
|
1006
1005
|
import { GlobalState } from "babylonjs-gui-editor/globalState";
|
|
1007
1006
|
import { Line } from "babylonjs-gui/2D/controls/line";
|
|
1008
1007
|
interface IGizmoLineProps {
|
|
@@ -1015,7 +1014,7 @@ interface IGizmoLineProps {
|
|
|
1015
1014
|
* @param props the properties of the gizmo
|
|
1016
1015
|
* @returns a gizmo line
|
|
1017
1016
|
*/
|
|
1018
|
-
|
|
1017
|
+
|
|
1019
1018
|
export {};
|
|
1020
1019
|
|
|
1021
1020
|
}
|
|
@@ -1049,7 +1048,7 @@ interface IGizmoScalePointProps {
|
|
|
1049
1048
|
canRotate: boolean;
|
|
1050
1049
|
allowClickOnPivot?: boolean;
|
|
1051
1050
|
}
|
|
1052
|
-
|
|
1051
|
+
|
|
1053
1052
|
export {};
|
|
1054
1053
|
|
|
1055
1054
|
}
|
|
@@ -1065,7 +1064,7 @@ export class GizmoWrapper extends React.Component<IGizmoWrapperProps> {
|
|
|
1065
1064
|
observer: Nullable<Observer<void>>;
|
|
1066
1065
|
componentWillMount(): void;
|
|
1067
1066
|
componentWillUnmount(): void;
|
|
1068
|
-
|
|
1067
|
+
|
|
1069
1068
|
}
|
|
1070
1069
|
|
|
1071
1070
|
}
|
|
@@ -1188,7 +1187,7 @@ export class WorkbenchComponent extends React.Component<IWorkbenchComponentProps
|
|
|
1188
1187
|
zoomDrag(event: React.MouseEvent): void;
|
|
1189
1188
|
zooming(delta: number): void;
|
|
1190
1189
|
zeroIfClose(vec: Vector3): void;
|
|
1191
|
-
|
|
1190
|
+
|
|
1192
1191
|
}
|
|
1193
1192
|
|
|
1194
1193
|
}
|
|
@@ -1489,14 +1488,14 @@ export class WorkbenchEditor extends React.Component<IGraphEditorProps, IGraphEd
|
|
|
1489
1488
|
createPopupWindow: (title: string, windowVariableName: string, width?: number, height?: number) => Window | null;
|
|
1490
1489
|
copyStyles: (sourceDoc: HTMLDocument, targetDoc: HTMLDocument) => void;
|
|
1491
1490
|
switchExpandedState(): void;
|
|
1492
|
-
|
|
1491
|
+
|
|
1493
1492
|
onCreate(value: string): Control;
|
|
1494
|
-
|
|
1493
|
+
|
|
1495
1494
|
createToolbarHelper(ct: {
|
|
1496
1495
|
className: string;
|
|
1497
1496
|
icon: string;
|
|
1498
|
-
|
|
1499
|
-
|
|
1497
|
+
|
|
1498
|
+
|
|
1500
1499
|
}
|
|
1501
1500
|
export {};
|
|
1502
1501
|
|
|
@@ -1518,7 +1517,7 @@ export class ColorComponentEntry extends React.Component<IColorComponentEntryPro
|
|
|
1518
1517
|
updateValue(valueString: string): void;
|
|
1519
1518
|
lock(): void;
|
|
1520
1519
|
unlock(): void;
|
|
1521
|
-
|
|
1520
|
+
|
|
1522
1521
|
}
|
|
1523
1522
|
|
|
1524
1523
|
}
|
|
@@ -1564,7 +1563,7 @@ export class ColorPicker extends React.Component<IColorPickerProps, IColorPicker
|
|
|
1564
1563
|
private _evaluateHue;
|
|
1565
1564
|
componentDidUpdate(): void;
|
|
1566
1565
|
raiseOnColorChanged(): void;
|
|
1567
|
-
|
|
1566
|
+
|
|
1568
1567
|
}
|
|
1569
1568
|
|
|
1570
1569
|
}
|
|
@@ -1587,7 +1586,7 @@ export class HexColor extends React.Component<IHexColorProps, {
|
|
|
1587
1586
|
lock(): void;
|
|
1588
1587
|
unlock(): void;
|
|
1589
1588
|
updateHexValue(valueString: string): void;
|
|
1590
|
-
|
|
1589
|
+
|
|
1591
1590
|
}
|
|
1592
1591
|
|
|
1593
1592
|
}
|
|
@@ -1648,7 +1647,7 @@ export class CommandDropdownComponent extends React.Component<ICommandDropdownCo
|
|
|
1648
1647
|
activeState: string;
|
|
1649
1648
|
}> {
|
|
1650
1649
|
constructor(props: ICommandDropdownComponentProps);
|
|
1651
|
-
|
|
1650
|
+
|
|
1652
1651
|
}
|
|
1653
1652
|
export {};
|
|
1654
1653
|
|
|
@@ -1689,7 +1688,7 @@ export class ColorComponentEntry extends React.Component<IColorComponentEntryPro
|
|
|
1689
1688
|
updateValue(valueString: string): void;
|
|
1690
1689
|
lock(): void;
|
|
1691
1690
|
unlock(): void;
|
|
1692
|
-
|
|
1691
|
+
|
|
1693
1692
|
}
|
|
1694
1693
|
|
|
1695
1694
|
}
|
|
@@ -1735,7 +1734,7 @@ export class ColorPicker extends React.Component<IColorPickerProps, IColorPicker
|
|
|
1735
1734
|
private _evaluateHue;
|
|
1736
1735
|
componentDidUpdate(): void;
|
|
1737
1736
|
raiseOnColorChanged(): void;
|
|
1738
|
-
|
|
1737
|
+
|
|
1739
1738
|
}
|
|
1740
1739
|
|
|
1741
1740
|
}
|
|
@@ -1758,7 +1757,7 @@ export class HexColor extends React.Component<IHexColorProps, {
|
|
|
1758
1757
|
lock(): void;
|
|
1759
1758
|
unlock(): void;
|
|
1760
1759
|
updateHexValue(valueString: string): void;
|
|
1761
|
-
|
|
1760
|
+
|
|
1762
1761
|
}
|
|
1763
1762
|
|
|
1764
1763
|
}
|
|
@@ -2198,7 +2197,7 @@ export class ColorLineComponent extends React.Component<IColorLineComponentProps
|
|
|
2198
2197
|
copyToClipboard(): void;
|
|
2199
2198
|
private _convertToColor;
|
|
2200
2199
|
private _toColor3;
|
|
2201
|
-
|
|
2200
|
+
|
|
2202
2201
|
}
|
|
2203
2202
|
export {};
|
|
2204
2203
|
|
|
@@ -2234,7 +2233,7 @@ export class ColorPickerLineComponent extends React.Component<IColorPickerCompon
|
|
|
2234
2233
|
}>): string;
|
|
2235
2234
|
componentDidUpdate(): void;
|
|
2236
2235
|
componentDidMount(): void;
|
|
2237
|
-
|
|
2236
|
+
|
|
2238
2237
|
}
|
|
2239
2238
|
export {};
|
|
2240
2239
|
|
|
@@ -2254,7 +2253,7 @@ export class FileButtonLineComponent extends React.Component<IFileButtonLineComp
|
|
|
2254
2253
|
private _uploadInputRef;
|
|
2255
2254
|
constructor(props: IFileButtonLineComponentProps);
|
|
2256
2255
|
onChange(evt: any): void;
|
|
2257
|
-
|
|
2256
|
+
|
|
2258
2257
|
}
|
|
2259
2258
|
|
|
2260
2259
|
}
|
|
@@ -2287,13 +2286,12 @@ export class NumericInputComponent extends React.Component<INumericInputComponen
|
|
|
2287
2286
|
onBlur(): void;
|
|
2288
2287
|
incrementValue(amount: number): void;
|
|
2289
2288
|
onKeyDown(evt: React.KeyboardEvent<HTMLInputElement>): void;
|
|
2290
|
-
|
|
2289
|
+
|
|
2291
2290
|
}
|
|
2292
2291
|
export {};
|
|
2293
2292
|
|
|
2294
2293
|
}
|
|
2295
2294
|
declare module "babylonjs-gui-editor/components/lines/OptionsLineComponent" {
|
|
2296
|
-
/// <reference types="react" />
|
|
2297
2295
|
/**
|
|
2298
2296
|
* This components represents an options menu with optional
|
|
2299
2297
|
* customizable properties. Option IDs should be unique.
|
|
@@ -2312,7 +2310,7 @@ export interface IOptionsLineComponentProps {
|
|
|
2312
2310
|
validateNewOptionValue?: (newOptionValue: string) => boolean;
|
|
2313
2311
|
addOptionText?: string;
|
|
2314
2312
|
}
|
|
2315
|
-
|
|
2313
|
+
|
|
2316
2314
|
|
|
2317
2315
|
}
|
|
2318
2316
|
declare module "babylonjs-gui-editor/components/MessageDialog" {
|
|
@@ -2561,7 +2559,7 @@ export interface INodeRendererProps {
|
|
|
2561
2559
|
* @param props
|
|
2562
2560
|
* @returns
|
|
2563
2561
|
*/
|
|
2564
|
-
|
|
2562
|
+
|
|
2565
2563
|
|
|
2566
2564
|
}
|
|
2567
2565
|
declare module "babylonjs-gui-editor/components/reactGraphSystem/useGraphContext" {
|
|
@@ -2573,7 +2571,6 @@ export const useGraphContext: () => import("babylonjs-gui-editor/components/reac
|
|
|
2573
2571
|
|
|
2574
2572
|
}
|
|
2575
2573
|
declare module "babylonjs-gui-editor/components/TextInputWithSubmit" {
|
|
2576
|
-
/// <reference types="react" />
|
|
2577
2574
|
export interface ITextInputProps {
|
|
2578
2575
|
label?: string;
|
|
2579
2576
|
placeholder?: string;
|
|
@@ -2586,7 +2583,7 @@ export interface ITextInputProps {
|
|
|
2586
2583
|
* @param props properties
|
|
2587
2584
|
* @returns TextInputWithSubmit element
|
|
2588
2585
|
*/
|
|
2589
|
-
|
|
2586
|
+
|
|
2590
2587
|
|
|
2591
2588
|
}
|
|
2592
2589
|
declare module "babylonjs-gui-editor/components/Toggle" {
|
|
@@ -2610,7 +2607,7 @@ export interface IBooleanLineComponentProps {
|
|
|
2610
2607
|
}
|
|
2611
2608
|
export class BooleanLineComponent extends React.Component<IBooleanLineComponentProps> {
|
|
2612
2609
|
constructor(props: IBooleanLineComponentProps);
|
|
2613
|
-
|
|
2610
|
+
|
|
2614
2611
|
}
|
|
2615
2612
|
|
|
2616
2613
|
}
|
|
@@ -2625,7 +2622,7 @@ export interface IButtonLineComponentProps {
|
|
|
2625
2622
|
}
|
|
2626
2623
|
export class ButtonLineComponent extends React.Component<IButtonLineComponentProps> {
|
|
2627
2624
|
constructor(props: IButtonLineComponentProps);
|
|
2628
|
-
|
|
2625
|
+
|
|
2629
2626
|
}
|
|
2630
2627
|
|
|
2631
2628
|
}
|
|
@@ -2664,7 +2661,7 @@ export class CheckBoxLineComponent extends React.Component<ICheckBoxLineComponen
|
|
|
2664
2661
|
isConflict: boolean;
|
|
2665
2662
|
}): boolean;
|
|
2666
2663
|
onChange(): void;
|
|
2667
|
-
|
|
2664
|
+
|
|
2668
2665
|
}
|
|
2669
2666
|
|
|
2670
2667
|
}
|
|
@@ -2685,7 +2682,7 @@ export interface IColor3LineComponentProps {
|
|
|
2685
2682
|
onChange?: () => void;
|
|
2686
2683
|
}
|
|
2687
2684
|
export class Color3LineComponent extends React.Component<IColor3LineComponentProps> {
|
|
2688
|
-
|
|
2685
|
+
|
|
2689
2686
|
}
|
|
2690
2687
|
|
|
2691
2688
|
}
|
|
@@ -2706,7 +2703,7 @@ export interface IColor4LineComponentProps {
|
|
|
2706
2703
|
lockObject: LockObject;
|
|
2707
2704
|
}
|
|
2708
2705
|
export class Color4LineComponent extends React.Component<IColor4LineComponentProps> {
|
|
2709
|
-
|
|
2706
|
+
|
|
2710
2707
|
}
|
|
2711
2708
|
|
|
2712
2709
|
}
|
|
@@ -2748,7 +2745,7 @@ export class ColorLineComponent extends React.Component<IColorLineComponentProps
|
|
|
2748
2745
|
copyToClipboard(): void;
|
|
2749
2746
|
private _convertToColor;
|
|
2750
2747
|
private _toColor3;
|
|
2751
|
-
|
|
2748
|
+
|
|
2752
2749
|
}
|
|
2753
2750
|
export {};
|
|
2754
2751
|
|
|
@@ -2782,7 +2779,7 @@ export class ColorPickerLineComponent extends React.Component<IColorPickerCompon
|
|
|
2782
2779
|
}>): string;
|
|
2783
2780
|
componentDidUpdate(): void;
|
|
2784
2781
|
componentDidMount(): void;
|
|
2785
|
-
|
|
2782
|
+
|
|
2786
2783
|
}
|
|
2787
2784
|
export {};
|
|
2788
2785
|
|
|
@@ -2795,7 +2792,7 @@ export interface IButtonLineComponentProps {
|
|
|
2795
2792
|
}
|
|
2796
2793
|
export class DraggableLineComponent extends React.Component<IButtonLineComponentProps> {
|
|
2797
2794
|
constructor(props: IButtonLineComponentProps);
|
|
2798
|
-
|
|
2795
|
+
|
|
2799
2796
|
}
|
|
2800
2797
|
|
|
2801
2798
|
}
|
|
@@ -2814,7 +2811,7 @@ export class FileButtonLineComponent extends React.Component<IFileButtonLineComp
|
|
|
2814
2811
|
private _uploadInputRef;
|
|
2815
2812
|
constructor(props: IFileButtonLineComponentProps);
|
|
2816
2813
|
onChange(evt: any): void;
|
|
2817
|
-
|
|
2814
|
+
|
|
2818
2815
|
}
|
|
2819
2816
|
export {};
|
|
2820
2817
|
|
|
@@ -2834,7 +2831,7 @@ export class FileMultipleButtonLineComponent extends React.Component<IFileMultip
|
|
|
2834
2831
|
private _uploadInputRef;
|
|
2835
2832
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
|
2836
2833
|
onChange(evt: any): void;
|
|
2837
|
-
|
|
2834
|
+
|
|
2838
2835
|
}
|
|
2839
2836
|
export {};
|
|
2840
2837
|
|
|
@@ -2888,7 +2885,7 @@ export class FloatLineComponent extends React.Component<IFloatLineComponentProps
|
|
|
2888
2885
|
unlock(): void;
|
|
2889
2886
|
incrementValue(amount: number, processStep?: boolean): void;
|
|
2890
2887
|
onKeyDown(event: React.KeyboardEvent<HTMLInputElement>): void;
|
|
2891
|
-
|
|
2888
|
+
|
|
2892
2889
|
}
|
|
2893
2890
|
export {};
|
|
2894
2891
|
|
|
@@ -2931,7 +2928,7 @@ export class HexLineComponent extends React.Component<IHexLineComponentProps, {
|
|
|
2931
2928
|
updateValue(valueString: string, raisePropertyChanged: boolean): void;
|
|
2932
2929
|
lock(): void;
|
|
2933
2930
|
unlock(): void;
|
|
2934
|
-
|
|
2931
|
+
|
|
2935
2932
|
}
|
|
2936
2933
|
export {};
|
|
2937
2934
|
|
|
@@ -2946,7 +2943,7 @@ export interface IIconButtonLineComponentProps {
|
|
|
2946
2943
|
}
|
|
2947
2944
|
export class IconButtonLineComponent extends React.Component<IIconButtonLineComponentProps> {
|
|
2948
2945
|
constructor(props: IIconButtonLineComponentProps);
|
|
2949
|
-
|
|
2946
|
+
|
|
2950
2947
|
}
|
|
2951
2948
|
|
|
2952
2949
|
}
|
|
@@ -2957,7 +2954,7 @@ interface IIconComponentProps {
|
|
|
2957
2954
|
label?: string;
|
|
2958
2955
|
}
|
|
2959
2956
|
export class IconComponent extends React.Component<IIconComponentProps> {
|
|
2960
|
-
|
|
2957
|
+
|
|
2961
2958
|
}
|
|
2962
2959
|
export {};
|
|
2963
2960
|
|
|
@@ -2975,8 +2972,8 @@ interface IIndentedTextLineComponentProps {
|
|
|
2975
2972
|
export class IndentedTextLineComponent extends React.Component<IIndentedTextLineComponentProps> {
|
|
2976
2973
|
constructor(props: IIndentedTextLineComponentProps);
|
|
2977
2974
|
onLink(): void;
|
|
2978
|
-
|
|
2979
|
-
|
|
2975
|
+
|
|
2976
|
+
|
|
2980
2977
|
}
|
|
2981
2978
|
export {};
|
|
2982
2979
|
|
|
@@ -2992,7 +2989,7 @@ export class InputArrowsComponent extends React.Component<IInputArrowsComponentP
|
|
|
2992
2989
|
private _drag;
|
|
2993
2990
|
private _releaseListener;
|
|
2994
2991
|
private _lockChangeListener;
|
|
2995
|
-
|
|
2992
|
+
|
|
2996
2993
|
}
|
|
2997
2994
|
export {};
|
|
2998
2995
|
|
|
@@ -3019,9 +3016,9 @@ export class LineContainerComponent extends React.Component<ILineContainerCompon
|
|
|
3019
3016
|
}> {
|
|
3020
3017
|
constructor(props: ILineContainerComponentProps);
|
|
3021
3018
|
switchExpandedState(): void;
|
|
3022
|
-
|
|
3019
|
+
|
|
3023
3020
|
componentDidMount(): void;
|
|
3024
|
-
|
|
3021
|
+
|
|
3025
3022
|
}
|
|
3026
3023
|
export {};
|
|
3027
3024
|
|
|
@@ -3040,7 +3037,7 @@ interface ILinkButtonComponentProps {
|
|
|
3040
3037
|
export class LinkButtonComponent extends React.Component<ILinkButtonComponentProps> {
|
|
3041
3038
|
constructor(props: ILinkButtonComponentProps);
|
|
3042
3039
|
onLink(): void;
|
|
3043
|
-
|
|
3040
|
+
|
|
3044
3041
|
}
|
|
3045
3042
|
export {};
|
|
3046
3043
|
|
|
@@ -3079,7 +3076,7 @@ export class MatrixLineComponent extends React.Component<IMatrixLineComponentPro
|
|
|
3079
3076
|
updateMatrix(): void;
|
|
3080
3077
|
updateRow(value: Vector4, row: number): void;
|
|
3081
3078
|
updateBasedOnMode(value: number): void;
|
|
3082
|
-
|
|
3079
|
+
|
|
3083
3080
|
}
|
|
3084
3081
|
export {};
|
|
3085
3082
|
|
|
@@ -3094,7 +3091,7 @@ interface IMessageLineComponentProps {
|
|
|
3094
3091
|
}
|
|
3095
3092
|
export class MessageLineComponent extends React.Component<IMessageLineComponentProps> {
|
|
3096
3093
|
constructor(props: IMessageLineComponentProps);
|
|
3097
|
-
|
|
3094
|
+
|
|
3098
3095
|
}
|
|
3099
3096
|
export {};
|
|
3100
3097
|
|
|
@@ -3128,7 +3125,7 @@ export class NumericInputComponent extends React.Component<INumericInputComponen
|
|
|
3128
3125
|
onBlur(): void;
|
|
3129
3126
|
incrementValue(amount: number): void;
|
|
3130
3127
|
onKeyDown(evt: React.KeyboardEvent<HTMLInputElement>): void;
|
|
3131
|
-
|
|
3128
|
+
|
|
3132
3129
|
}
|
|
3133
3130
|
export {};
|
|
3134
3131
|
|
|
@@ -3169,7 +3166,7 @@ export class OptionsLineComponent extends React.Component<IOptionsLineComponentP
|
|
|
3169
3166
|
raiseOnPropertyChanged(newValue: number, previousValue: number): void;
|
|
3170
3167
|
setValue(value: string | number): void;
|
|
3171
3168
|
updateValue(valueString: string): void;
|
|
3172
|
-
|
|
3169
|
+
|
|
3173
3170
|
}
|
|
3174
3171
|
|
|
3175
3172
|
}
|
|
@@ -3199,7 +3196,7 @@ export class RadioButtonLineComponent extends React.Component<IRadioButtonLineCo
|
|
|
3199
3196
|
componentDidMount(): void;
|
|
3200
3197
|
componentWillUnmount(): void;
|
|
3201
3198
|
onChange(): void;
|
|
3202
|
-
|
|
3199
|
+
|
|
3203
3200
|
}
|
|
3204
3201
|
export {};
|
|
3205
3202
|
|
|
@@ -3239,7 +3236,7 @@ export class SliderLineComponent extends React.Component<ISliderLineComponentPro
|
|
|
3239
3236
|
onChange(newValueString: any): void;
|
|
3240
3237
|
onInput(newValueString: any): void;
|
|
3241
3238
|
prepareDataToRead(value: number): number;
|
|
3242
|
-
|
|
3239
|
+
|
|
3243
3240
|
}
|
|
3244
3241
|
export {};
|
|
3245
3242
|
|
|
@@ -3307,7 +3304,7 @@ export class TextInputLineComponent extends React.Component<ITextInputLineCompon
|
|
|
3307
3304
|
updateValue(value: string, valueToValidate?: string): void;
|
|
3308
3305
|
incrementValue(amount: number): void;
|
|
3309
3306
|
onKeyDown(event: React.KeyboardEvent): void;
|
|
3310
|
-
|
|
3307
|
+
|
|
3311
3308
|
}
|
|
3312
3309
|
|
|
3313
3310
|
}
|
|
@@ -3329,20 +3326,19 @@ interface ITextLineComponentProps {
|
|
|
3329
3326
|
export class TextLineComponent extends React.Component<ITextLineComponentProps> {
|
|
3330
3327
|
constructor(props: ITextLineComponentProps);
|
|
3331
3328
|
onLink(): void;
|
|
3332
|
-
|
|
3333
|
-
|
|
3329
|
+
|
|
3330
|
+
|
|
3334
3331
|
}
|
|
3335
3332
|
export {};
|
|
3336
3333
|
|
|
3337
3334
|
}
|
|
3338
3335
|
declare module "babylonjs-gui-editor/lines/unitButton" {
|
|
3339
|
-
/// <reference types="react" />
|
|
3340
3336
|
interface IUnitButtonProps {
|
|
3341
3337
|
unit: string;
|
|
3342
3338
|
locked?: boolean;
|
|
3343
3339
|
onClick?: (unit: string) => void;
|
|
3344
3340
|
}
|
|
3345
|
-
|
|
3341
|
+
|
|
3346
3342
|
export {};
|
|
3347
3343
|
|
|
3348
3344
|
}
|
|
@@ -3359,7 +3355,7 @@ interface IValueLineComponentProps {
|
|
|
3359
3355
|
}
|
|
3360
3356
|
export class ValueLineComponent extends React.Component<IValueLineComponentProps> {
|
|
3361
3357
|
constructor(props: IValueLineComponentProps);
|
|
3362
|
-
|
|
3358
|
+
|
|
3363
3359
|
}
|
|
3364
3360
|
export {};
|
|
3365
3361
|
|
|
@@ -3398,7 +3394,7 @@ export class Vector2LineComponent extends React.Component<IVector2LineComponentP
|
|
|
3398
3394
|
raiseOnPropertyChanged(previousValue: Vector2): void;
|
|
3399
3395
|
updateStateX(value: number): void;
|
|
3400
3396
|
updateStateY(value: number): void;
|
|
3401
|
-
|
|
3397
|
+
|
|
3402
3398
|
}
|
|
3403
3399
|
export {};
|
|
3404
3400
|
|
|
@@ -3442,7 +3438,7 @@ export class Vector3LineComponent extends React.Component<IVector3LineComponentP
|
|
|
3442
3438
|
updateStateX(value: number): void;
|
|
3443
3439
|
updateStateY(value: number): void;
|
|
3444
3440
|
updateStateZ(value: number): void;
|
|
3445
|
-
|
|
3441
|
+
|
|
3446
3442
|
}
|
|
3447
3443
|
export {};
|
|
3448
3444
|
|
|
@@ -3487,7 +3483,7 @@ export class Vector4LineComponent extends React.Component<IVector4LineComponentP
|
|
|
3487
3483
|
updateStateY(value: number): void;
|
|
3488
3484
|
updateStateZ(value: number): void;
|
|
3489
3485
|
updateStateW(value: number): void;
|
|
3490
|
-
|
|
3486
|
+
|
|
3491
3487
|
}
|
|
3492
3488
|
export {};
|
|
3493
3489
|
|
|
@@ -3647,7 +3643,7 @@ export class GraphCanvasComponent extends React.Component<IGraphCanvasComponentP
|
|
|
3647
3643
|
processEditorData(editorData: IEditorData): void;
|
|
3648
3644
|
reOrganize(editorData?: Nullable<IEditorData>, isImportingAFrame?: boolean): void;
|
|
3649
3645
|
addFrame(frameData: IFrameData): void;
|
|
3650
|
-
|
|
3646
|
+
|
|
3651
3647
|
}
|
|
3652
3648
|
|
|
3653
3649
|
}
|
|
@@ -4142,7 +4138,7 @@ export class SearchBoxComponent extends React.Component<ISearchBoxComponentProps
|
|
|
4142
4138
|
onFilterChange(evt: React.ChangeEvent<HTMLInputElement>): void;
|
|
4143
4139
|
onNewNodeRequested(name: string): void;
|
|
4144
4140
|
onKeyDown(evt: React.KeyboardEvent): void;
|
|
4145
|
-
|
|
4141
|
+
|
|
4146
4142
|
}
|
|
4147
4143
|
|
|
4148
4144
|
}
|
|
@@ -4367,13 +4363,12 @@ export const Default: StoryObj<typeof NumericInputComponent>;
|
|
|
4367
4363
|
|
|
4368
4364
|
}
|
|
4369
4365
|
declare module "babylonjs-gui-editor/stories/lines/OptionsLineComponent.stories" {
|
|
4370
|
-
/// <reference types="react" />
|
|
4371
4366
|
|
|
4372
4367
|
const _default: {
|
|
4373
|
-
component: (props: import("babylonjs-gui-editor/components/lines/OptionsLineComponent").IOptionsLineComponentProps) => JSX.Element;
|
|
4368
|
+
component: (props: import("babylonjs-gui-editor/components/lines/OptionsLineComponent").IOptionsLineComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
4374
4369
|
};
|
|
4375
4370
|
export default _default;
|
|
4376
|
-
|
|
4371
|
+
|
|
4377
4372
|
export const Default: StoryObj<typeof RenderComponent>;
|
|
4378
4373
|
export const WithCustomOptions: StoryObj<typeof RenderComponent>;
|
|
4379
4374
|
export const WithValidation: StoryObj<typeof RenderComponent>;
|
|
@@ -4430,7 +4425,7 @@ interface ICheckboxPropertyGridComponentProps {
|
|
|
4430
4425
|
}
|
|
4431
4426
|
export class CheckboxPropertyGridComponent extends React.Component<ICheckboxPropertyGridComponentProps> {
|
|
4432
4427
|
constructor(props: ICheckboxPropertyGridComponentProps);
|
|
4433
|
-
|
|
4428
|
+
|
|
4434
4429
|
}
|
|
4435
4430
|
export {};
|
|
4436
4431
|
|
|
@@ -4448,7 +4443,7 @@ interface IColorPickerPropertyGridComponentProps {
|
|
|
4448
4443
|
}
|
|
4449
4444
|
export class ColorPickerPropertyGridComponent extends React.Component<IColorPickerPropertyGridComponentProps> {
|
|
4450
4445
|
constructor(props: IColorPickerPropertyGridComponentProps);
|
|
4451
|
-
|
|
4446
|
+
|
|
4452
4447
|
}
|
|
4453
4448
|
export {};
|
|
4454
4449
|
|
|
@@ -4467,8 +4462,8 @@ interface ICommonControlPropertyGridComponentProps {
|
|
|
4467
4462
|
}
|
|
4468
4463
|
export class CommonControlPropertyGridComponent extends React.Component<ICommonControlPropertyGridComponentProps> {
|
|
4469
4464
|
constructor(props: ICommonControlPropertyGridComponentProps);
|
|
4470
|
-
|
|
4471
|
-
|
|
4465
|
+
|
|
4466
|
+
|
|
4472
4467
|
}
|
|
4473
4468
|
export {};
|
|
4474
4469
|
|
|
@@ -4486,7 +4481,7 @@ interface IControlPropertyGridComponentProps {
|
|
|
4486
4481
|
}
|
|
4487
4482
|
export class ControlPropertyGridComponent extends React.Component<IControlPropertyGridComponentProps> {
|
|
4488
4483
|
constructor(props: IControlPropertyGridComponentProps);
|
|
4489
|
-
|
|
4484
|
+
|
|
4490
4485
|
}
|
|
4491
4486
|
export {};
|
|
4492
4487
|
|
|
@@ -4504,7 +4499,7 @@ interface IEllipsePropertyGridComponentProps {
|
|
|
4504
4499
|
}
|
|
4505
4500
|
export class EllipsePropertyGridComponent extends React.Component<IEllipsePropertyGridComponentProps> {
|
|
4506
4501
|
constructor(props: IEllipsePropertyGridComponentProps);
|
|
4507
|
-
|
|
4502
|
+
|
|
4508
4503
|
}
|
|
4509
4504
|
export {};
|
|
4510
4505
|
|
|
@@ -4522,9 +4517,9 @@ interface IGridPropertyGridComponentProps {
|
|
|
4522
4517
|
}
|
|
4523
4518
|
export class GridPropertyGridComponent extends React.Component<IGridPropertyGridComponentProps> {
|
|
4524
4519
|
constructor(props: IGridPropertyGridComponentProps);
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4520
|
+
|
|
4521
|
+
|
|
4522
|
+
|
|
4528
4523
|
}
|
|
4529
4524
|
export {};
|
|
4530
4525
|
|
|
@@ -4542,7 +4537,7 @@ interface IImageBasedSliderPropertyGridComponentProps {
|
|
|
4542
4537
|
}
|
|
4543
4538
|
export class ImageBasedSliderPropertyGridComponent extends React.Component<IImageBasedSliderPropertyGridComponentProps> {
|
|
4544
4539
|
constructor(props: IImageBasedSliderPropertyGridComponentProps);
|
|
4545
|
-
|
|
4540
|
+
|
|
4546
4541
|
}
|
|
4547
4542
|
export {};
|
|
4548
4543
|
|
|
@@ -4560,7 +4555,7 @@ interface IImagePropertyGridComponentProps {
|
|
|
4560
4555
|
}
|
|
4561
4556
|
export class ImagePropertyGridComponent extends React.Component<IImagePropertyGridComponentProps> {
|
|
4562
4557
|
constructor(props: IImagePropertyGridComponentProps);
|
|
4563
|
-
|
|
4558
|
+
|
|
4564
4559
|
}
|
|
4565
4560
|
export {};
|
|
4566
4561
|
|
|
@@ -4578,7 +4573,7 @@ interface IInputTextPropertyGridComponentProps {
|
|
|
4578
4573
|
}
|
|
4579
4574
|
export class InputTextPropertyGridComponent extends React.Component<IInputTextPropertyGridComponentProps> {
|
|
4580
4575
|
constructor(props: IInputTextPropertyGridComponentProps);
|
|
4581
|
-
|
|
4576
|
+
|
|
4582
4577
|
}
|
|
4583
4578
|
export {};
|
|
4584
4579
|
|
|
@@ -4597,7 +4592,7 @@ interface ILinePropertyGridComponentProps {
|
|
|
4597
4592
|
export class LinePropertyGridComponent extends React.Component<ILinePropertyGridComponentProps> {
|
|
4598
4593
|
constructor(props: ILinePropertyGridComponentProps);
|
|
4599
4594
|
onDashChange(value: string): void;
|
|
4600
|
-
|
|
4595
|
+
|
|
4601
4596
|
}
|
|
4602
4597
|
export {};
|
|
4603
4598
|
|
|
@@ -4615,7 +4610,7 @@ interface IRadioButtonPropertyGridComponentProps {
|
|
|
4615
4610
|
}
|
|
4616
4611
|
export class RadioButtonPropertyGridComponent extends React.Component<IRadioButtonPropertyGridComponentProps> {
|
|
4617
4612
|
constructor(props: IRadioButtonPropertyGridComponentProps);
|
|
4618
|
-
|
|
4613
|
+
|
|
4619
4614
|
}
|
|
4620
4615
|
export {};
|
|
4621
4616
|
|
|
@@ -4633,7 +4628,7 @@ interface IRectanglePropertyGridComponentProps {
|
|
|
4633
4628
|
}
|
|
4634
4629
|
export class RectanglePropertyGridComponent extends React.Component<IRectanglePropertyGridComponentProps> {
|
|
4635
4630
|
constructor(props: IRectanglePropertyGridComponentProps);
|
|
4636
|
-
|
|
4631
|
+
|
|
4637
4632
|
}
|
|
4638
4633
|
export {};
|
|
4639
4634
|
|
|
@@ -4651,7 +4646,7 @@ interface IScrollViewerPropertyGridComponentProps {
|
|
|
4651
4646
|
}
|
|
4652
4647
|
export class ScrollViewerPropertyGridComponent extends React.Component<IScrollViewerPropertyGridComponentProps> {
|
|
4653
4648
|
constructor(props: IScrollViewerPropertyGridComponentProps);
|
|
4654
|
-
|
|
4649
|
+
|
|
4655
4650
|
}
|
|
4656
4651
|
export {};
|
|
4657
4652
|
|
|
@@ -4669,7 +4664,7 @@ interface ISliderPropertyGridComponentProps {
|
|
|
4669
4664
|
}
|
|
4670
4665
|
export class SliderPropertyGridComponent extends React.Component<ISliderPropertyGridComponentProps> {
|
|
4671
4666
|
constructor(props: ISliderPropertyGridComponentProps);
|
|
4672
|
-
|
|
4667
|
+
|
|
4673
4668
|
}
|
|
4674
4669
|
export {};
|
|
4675
4670
|
|
|
@@ -4687,7 +4682,7 @@ interface IStackPanelPropertyGridComponentProps {
|
|
|
4687
4682
|
}
|
|
4688
4683
|
export class StackPanelPropertyGridComponent extends React.Component<IStackPanelPropertyGridComponentProps> {
|
|
4689
4684
|
constructor(props: IStackPanelPropertyGridComponentProps);
|
|
4690
|
-
|
|
4685
|
+
|
|
4691
4686
|
}
|
|
4692
4687
|
export {};
|
|
4693
4688
|
|
|
@@ -4705,7 +4700,7 @@ interface ITextBlockPropertyGridComponentProps {
|
|
|
4705
4700
|
}
|
|
4706
4701
|
export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPropertyGridComponentProps> {
|
|
4707
4702
|
constructor(props: ITextBlockPropertyGridComponentProps);
|
|
4708
|
-
|
|
4703
|
+
|
|
4709
4704
|
}
|
|
4710
4705
|
export {};
|
|
4711
4706
|
|
|
@@ -4737,7 +4732,7 @@ declare module BABYLON {
|
|
|
4737
4732
|
private _stopUpdating;
|
|
4738
4733
|
private _lockObject;
|
|
4739
4734
|
constructor(props: ICommandBarComponentProps);
|
|
4740
|
-
render(): JSX.Element;
|
|
4735
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4741
4736
|
}
|
|
4742
4737
|
|
|
4743
4738
|
|
|
@@ -4755,7 +4750,7 @@ declare module BABYLON {
|
|
|
4755
4750
|
}
|
|
4756
4751
|
export class CommandButtonComponent extends React.Component<ICommandButtonComponentProps> {
|
|
4757
4752
|
constructor(props: ICommandButtonComponentProps);
|
|
4758
|
-
render(): JSX.Element;
|
|
4753
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4759
4754
|
}
|
|
4760
4755
|
|
|
4761
4756
|
|
|
@@ -4783,7 +4778,7 @@ declare module BABYLON {
|
|
|
4783
4778
|
activeState: string;
|
|
4784
4779
|
}> {
|
|
4785
4780
|
constructor(props: ICommandDropdownComponentProps);
|
|
4786
|
-
render(): JSX.Element;
|
|
4781
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4787
4782
|
}
|
|
4788
4783
|
|
|
4789
4784
|
|
|
@@ -4798,7 +4793,7 @@ declare module BABYLON {
|
|
|
4798
4793
|
constructor(props: IGuiListComponentProps);
|
|
4799
4794
|
componentWillUnmount(): void;
|
|
4800
4795
|
filterContent(filter: string): void;
|
|
4801
|
-
render(): JSX.Element;
|
|
4796
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4802
4797
|
}
|
|
4803
4798
|
|
|
4804
4799
|
|
|
@@ -4816,7 +4811,7 @@ declare module BABYLON {
|
|
|
4816
4811
|
constructor(props: ILogComponentProps);
|
|
4817
4812
|
componentDidMount(): void;
|
|
4818
4813
|
componentDidUpdate(): void;
|
|
4819
|
-
render(): JSX.Element;
|
|
4814
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4820
4815
|
}
|
|
4821
4816
|
|
|
4822
4817
|
|
|
@@ -4832,7 +4827,7 @@ declare module BABYLON {
|
|
|
4832
4827
|
updateGridPosition(): void;
|
|
4833
4828
|
getCellInfo(): void;
|
|
4834
4829
|
private _changeCell;
|
|
4835
|
-
render(): JSX.Element;
|
|
4830
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4836
4831
|
}
|
|
4837
4832
|
|
|
4838
4833
|
|
|
@@ -4846,7 +4841,7 @@ declare module BABYLON {
|
|
|
4846
4841
|
}
|
|
4847
4842
|
export class ButtonPropertyGridComponent extends React.Component<IButtonPropertyGridComponentProps> {
|
|
4848
4843
|
constructor(props: IButtonPropertyGridComponentProps);
|
|
4849
|
-
render(): JSX.Element;
|
|
4844
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4850
4845
|
}
|
|
4851
4846
|
|
|
4852
4847
|
|
|
@@ -4859,7 +4854,7 @@ declare module BABYLON {
|
|
|
4859
4854
|
}
|
|
4860
4855
|
export class CheckboxPropertyGridComponent extends React.Component<ICheckboxPropertyGridComponentProps> {
|
|
4861
4856
|
constructor(props: ICheckboxPropertyGridComponentProps);
|
|
4862
|
-
render(): JSX.Element;
|
|
4857
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4863
4858
|
}
|
|
4864
4859
|
|
|
4865
4860
|
|
|
@@ -4872,7 +4867,7 @@ declare module BABYLON {
|
|
|
4872
4867
|
}
|
|
4873
4868
|
export class ColorPickerPropertyGridComponent extends React.Component<IColorPickerPropertyGridComponentProps> {
|
|
4874
4869
|
constructor(props: IColorPickerPropertyGridComponentProps);
|
|
4875
|
-
render(): JSX.Element;
|
|
4870
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4876
4871
|
}
|
|
4877
4872
|
|
|
4878
4873
|
|
|
@@ -4912,7 +4907,7 @@ declare module BABYLON {
|
|
|
4912
4907
|
value: string;
|
|
4913
4908
|
id: string;
|
|
4914
4909
|
}[];
|
|
4915
|
-
render(): JSX.Element;
|
|
4910
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4916
4911
|
}
|
|
4917
4912
|
|
|
4918
4913
|
|
|
@@ -4921,7 +4916,7 @@ declare module BABYLON {
|
|
|
4921
4916
|
onPropertyChangedObservable?: Observable<BABYLON.GuiEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
4922
4917
|
}
|
|
4923
4918
|
export class ContainerPropertyGridComponent extends React.Component<IContainerPropertyGridComponentProps> {
|
|
4924
|
-
render(): JSX.Element;
|
|
4919
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4925
4920
|
}
|
|
4926
4921
|
|
|
4927
4922
|
|
|
@@ -4934,7 +4929,7 @@ declare module BABYLON {
|
|
|
4934
4929
|
}
|
|
4935
4930
|
export class ControlPropertyGridComponent extends React.Component<IControlPropertyGridComponentProps> {
|
|
4936
4931
|
constructor(props: IControlPropertyGridComponentProps);
|
|
4937
|
-
render(): JSX.Element;
|
|
4932
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4938
4933
|
}
|
|
4939
4934
|
|
|
4940
4935
|
|
|
@@ -4947,7 +4942,7 @@ declare module BABYLON {
|
|
|
4947
4942
|
}
|
|
4948
4943
|
export class DisplayGridPropertyGridComponent extends React.Component<IDisplayGridPropertyGridComponentProps> {
|
|
4949
4944
|
constructor(props: IDisplayGridPropertyGridComponentProps);
|
|
4950
|
-
render(): JSX.Element;
|
|
4945
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4951
4946
|
}
|
|
4952
4947
|
|
|
4953
4948
|
|
|
@@ -4960,7 +4955,7 @@ declare module BABYLON {
|
|
|
4960
4955
|
}
|
|
4961
4956
|
export class EllipsePropertyGridComponent extends React.Component<IEllipsePropertyGridComponentProps> {
|
|
4962
4957
|
constructor(props: IEllipsePropertyGridComponentProps);
|
|
4963
|
-
render(): JSX.Element;
|
|
4958
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
4964
4959
|
}
|
|
4965
4960
|
|
|
4966
4961
|
|
|
@@ -4987,10 +4982,10 @@ declare module BABYLON {
|
|
|
4987
4982
|
private _editedColumn;
|
|
4988
4983
|
private _rowChild;
|
|
4989
4984
|
private _columnChild;
|
|
4990
|
-
renderRows(): JSX.Element[];
|
|
4985
|
+
renderRows(): import("react/jsx-runtime").JSX.Element[];
|
|
4991
4986
|
setRowValues(): void;
|
|
4992
4987
|
setColumnValues(): void;
|
|
4993
|
-
renderColumns(): JSX.Element[];
|
|
4988
|
+
renderColumns(): import("react/jsx-runtime").JSX.Element[];
|
|
4994
4989
|
parsePercentage(value: string): number;
|
|
4995
4990
|
isCloseTo(value: number, expected: number, epsilon?: number): boolean;
|
|
4996
4991
|
adjustPercentages(definitions: string[], editFlags: boolean[]): string[];
|
|
@@ -4999,7 +4994,7 @@ declare module BABYLON {
|
|
|
4999
4994
|
checkValue(value: string, percent: boolean): string;
|
|
5000
4995
|
checkPercentage(value: string): boolean;
|
|
5001
4996
|
resetValues(): void;
|
|
5002
|
-
render(): JSX.Element;
|
|
4997
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5003
4998
|
}
|
|
5004
4999
|
|
|
5005
5000
|
|
|
@@ -5012,7 +5007,7 @@ declare module BABYLON {
|
|
|
5012
5007
|
}
|
|
5013
5008
|
export class ImageBasedSliderPropertyGridComponent extends React.Component<IImageBasedSliderPropertyGridComponentProps> {
|
|
5014
5009
|
constructor(props: IImageBasedSliderPropertyGridComponentProps);
|
|
5015
|
-
render(): JSX.Element;
|
|
5010
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5016
5011
|
}
|
|
5017
5012
|
|
|
5018
5013
|
|
|
@@ -5032,7 +5027,7 @@ declare module BABYLON {
|
|
|
5032
5027
|
toggleAnimations(on: boolean): void;
|
|
5033
5028
|
getMaxCells(): number;
|
|
5034
5029
|
updateCellSize(): void;
|
|
5035
|
-
render(): JSX.Element;
|
|
5030
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5036
5031
|
}
|
|
5037
5032
|
|
|
5038
5033
|
|
|
@@ -5045,7 +5040,7 @@ declare module BABYLON {
|
|
|
5045
5040
|
}
|
|
5046
5041
|
export class InputTextPropertyGridComponent extends React.Component<IInputTextPropertyGridComponentProps> {
|
|
5047
5042
|
constructor(props: IInputTextPropertyGridComponentProps);
|
|
5048
|
-
render(): JSX.Element;
|
|
5043
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5049
5044
|
}
|
|
5050
5045
|
|
|
5051
5046
|
|
|
@@ -5059,7 +5054,7 @@ declare module BABYLON {
|
|
|
5059
5054
|
export class LinePropertyGridComponent extends React.Component<ILinePropertyGridComponentProps> {
|
|
5060
5055
|
constructor(props: ILinePropertyGridComponentProps);
|
|
5061
5056
|
onDashChange(value: string): void;
|
|
5062
|
-
render(): JSX.Element;
|
|
5057
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5063
5058
|
}
|
|
5064
5059
|
|
|
5065
5060
|
|
|
@@ -5072,7 +5067,7 @@ declare module BABYLON {
|
|
|
5072
5067
|
}
|
|
5073
5068
|
export class RadioButtonPropertyGridComponent extends React.Component<IRadioButtonPropertyGridComponentProps> {
|
|
5074
5069
|
constructor(props: IRadioButtonPropertyGridComponentProps);
|
|
5075
|
-
render(): JSX.Element;
|
|
5070
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5076
5071
|
}
|
|
5077
5072
|
|
|
5078
5073
|
|
|
@@ -5085,7 +5080,7 @@ declare module BABYLON {
|
|
|
5085
5080
|
}
|
|
5086
5081
|
export class RectanglePropertyGridComponent extends React.Component<IRectanglePropertyGridComponentProps> {
|
|
5087
5082
|
constructor(props: IRectanglePropertyGridComponentProps);
|
|
5088
|
-
render(): JSX.Element;
|
|
5083
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5089
5084
|
}
|
|
5090
5085
|
|
|
5091
5086
|
|
|
@@ -5098,7 +5093,7 @@ declare module BABYLON {
|
|
|
5098
5093
|
}
|
|
5099
5094
|
export class ScrollViewerPropertyGridComponent extends React.Component<IScrollViewerPropertyGridComponentProps> {
|
|
5100
5095
|
constructor(props: IScrollViewerPropertyGridComponentProps);
|
|
5101
|
-
render(): JSX.Element;
|
|
5096
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5102
5097
|
}
|
|
5103
5098
|
|
|
5104
5099
|
|
|
@@ -5111,7 +5106,7 @@ declare module BABYLON {
|
|
|
5111
5106
|
}
|
|
5112
5107
|
export class SliderGenericPropertyGridComponent extends React.Component<ISliderGenericPropertyGridComponentProps> {
|
|
5113
5108
|
constructor(props: ISliderGenericPropertyGridComponentProps);
|
|
5114
|
-
render(): JSX.Element;
|
|
5109
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5115
5110
|
}
|
|
5116
5111
|
|
|
5117
5112
|
|
|
@@ -5122,7 +5117,7 @@ declare module BABYLON {
|
|
|
5122
5117
|
}
|
|
5123
5118
|
export class SliderPropertyGridComponent extends React.Component<ISliderPropertyGridComponentProps> {
|
|
5124
5119
|
constructor(props: ISliderPropertyGridComponentProps);
|
|
5125
|
-
render(): JSX.Element;
|
|
5120
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5126
5121
|
}
|
|
5127
5122
|
|
|
5128
5123
|
|
|
@@ -5135,7 +5130,7 @@ declare module BABYLON {
|
|
|
5135
5130
|
}
|
|
5136
5131
|
export class StackPanelPropertyGridComponent extends React.Component<IStackPanelPropertyGridComponentProps> {
|
|
5137
5132
|
constructor(props: IStackPanelPropertyGridComponentProps);
|
|
5138
|
-
render(): JSX.Element;
|
|
5133
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5139
5134
|
}
|
|
5140
5135
|
|
|
5141
5136
|
|
|
@@ -5148,7 +5143,7 @@ declare module BABYLON {
|
|
|
5148
5143
|
}
|
|
5149
5144
|
export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPropertyGridComponentProps> {
|
|
5150
5145
|
constructor(props: ITextBlockPropertyGridComponentProps);
|
|
5151
|
-
render(): JSX.Element;
|
|
5146
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5152
5147
|
}
|
|
5153
5148
|
|
|
5154
5149
|
|
|
@@ -5177,16 +5172,16 @@ declare module BABYLON {
|
|
|
5177
5172
|
saveToSnippetServerHelper: (content: string, adt: BABYLON.GUI.AdvancedDynamicTexture) => Promise<string>;
|
|
5178
5173
|
saveToSnippetServer: () => Promise<void>;
|
|
5179
5174
|
loadFromSnippet(): void;
|
|
5180
|
-
renderNode(nodes: BABYLON.GUI.Control[]): JSX.Element;
|
|
5175
|
+
renderNode(nodes: BABYLON.GUI.Control[]): import("react/jsx-runtime").JSX.Element;
|
|
5181
5176
|
/**
|
|
5182
5177
|
* returns the class name of a list of controls if they share a class, or an empty string if not
|
|
5183
5178
|
* @param nodes the list of controls to check
|
|
5184
5179
|
* @returns the class name of a list of controls if they share a class, or an empty string if not
|
|
5185
5180
|
*/
|
|
5186
5181
|
getControlsCommonClassName(nodes: BABYLON.GUI.Control[]): string;
|
|
5187
|
-
renderProperties(nodes: BABYLON.GUI.Control[]): JSX.Element | undefined;
|
|
5182
|
+
renderProperties(nodes: BABYLON.GUI.Control[]): import("react/jsx-runtime").JSX.Element | undefined;
|
|
5188
5183
|
renderControlIcon(nodes: BABYLON.GUI.Control[]): string;
|
|
5189
|
-
render(): JSX.Element | null;
|
|
5184
|
+
render(): import("react/jsx-runtime").JSX.Element | null;
|
|
5190
5185
|
}
|
|
5191
5186
|
|
|
5192
5187
|
|
|
@@ -5211,7 +5206,7 @@ declare module BABYLON {
|
|
|
5211
5206
|
highlight(): void;
|
|
5212
5207
|
switchVisibility(): void;
|
|
5213
5208
|
onRename(name: string): void;
|
|
5214
|
-
render(): JSX.Element;
|
|
5209
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5215
5210
|
}
|
|
5216
5211
|
|
|
5217
5212
|
|
|
@@ -5228,7 +5223,7 @@ declare module BABYLON {
|
|
|
5228
5223
|
showPopup(): void;
|
|
5229
5224
|
componentDidMount(): void;
|
|
5230
5225
|
componentDidUpdate(): void;
|
|
5231
|
-
render(): JSX.Element | null;
|
|
5226
|
+
render(): import("react/jsx-runtime").JSX.Element | null;
|
|
5232
5227
|
}
|
|
5233
5228
|
|
|
5234
5229
|
|
|
@@ -5237,7 +5232,7 @@ declare module BABYLON {
|
|
|
5237
5232
|
}
|
|
5238
5233
|
export class SceneExplorerFilterComponent extends React.Component<ISceneExplorerFilterComponentProps> {
|
|
5239
5234
|
constructor(props: ISceneExplorerFilterComponentProps);
|
|
5240
|
-
render(): JSX.Element;
|
|
5235
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5241
5236
|
}
|
|
5242
5237
|
interface ISceneExplorerComponentProps {
|
|
5243
5238
|
scene?: Scene;
|
|
@@ -5270,10 +5265,10 @@ declare module BABYLON {
|
|
|
5270
5265
|
found?: boolean;
|
|
5271
5266
|
}): boolean;
|
|
5272
5267
|
processKeys(keyEvent: React.KeyboardEvent<HTMLDivElement>): void;
|
|
5273
|
-
renderContent(): JSX.Element | null;
|
|
5268
|
+
renderContent(): import("react/jsx-runtime").JSX.Element | null;
|
|
5274
5269
|
onClose(): void;
|
|
5275
5270
|
onPopup(): void;
|
|
5276
|
-
render(): JSX.Element;
|
|
5271
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5277
5272
|
}
|
|
5278
5273
|
|
|
5279
5274
|
|
|
@@ -5303,8 +5298,8 @@ declare module BABYLON {
|
|
|
5303
5298
|
isExpanded: boolean;
|
|
5304
5299
|
}): boolean;
|
|
5305
5300
|
expandAll(expand: boolean): void;
|
|
5306
|
-
renderContextMenu(): JSX.Element | null;
|
|
5307
|
-
render(): JSX.Element;
|
|
5301
|
+
renderContextMenu(): import("react/jsx-runtime").JSX.Element | null;
|
|
5302
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5308
5303
|
}
|
|
5309
5304
|
|
|
5310
5305
|
|
|
@@ -5323,7 +5318,7 @@ declare module BABYLON {
|
|
|
5323
5318
|
constructor(props: ITreeItemLabelComponentProps);
|
|
5324
5319
|
onClick(): void;
|
|
5325
5320
|
onBlur(): void;
|
|
5326
|
-
render(): JSX.Element;
|
|
5321
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5327
5322
|
}
|
|
5328
5323
|
|
|
5329
5324
|
|
|
@@ -5362,8 +5357,8 @@ declare module BABYLON {
|
|
|
5362
5357
|
scrollIntoView(): void;
|
|
5363
5358
|
componentWillUnmount(): void;
|
|
5364
5359
|
onSelect(): void;
|
|
5365
|
-
renderChildren(isExpanded: boolean, offset?: boolean): (JSX.Element | null)[] | null;
|
|
5366
|
-
render(): JSX.Element | (JSX.Element | null)[] | null;
|
|
5360
|
+
renderChildren(isExpanded: boolean, offset?: boolean): (import("react/jsx-runtime").JSX.Element | null)[] | null;
|
|
5361
|
+
render(): import("react/jsx-runtime").JSX.Element | (import("react/jsx-runtime").JSX.Element | null)[] | null;
|
|
5367
5362
|
dragOver(event: React.DragEvent<HTMLDivElement>): void;
|
|
5368
5363
|
updateDragOverLocation(event: React.DragEvent<HTMLDivElement>): void;
|
|
5369
5364
|
drop(): void;
|
|
@@ -5385,7 +5380,7 @@ declare module BABYLON {
|
|
|
5385
5380
|
export class ArtBoardComponent extends React.Component<IArtBoardProps, IArtBoardState> {
|
|
5386
5381
|
constructor(props: IArtBoardProps);
|
|
5387
5382
|
update(): void;
|
|
5388
|
-
render(): JSX.Element;
|
|
5383
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5389
5384
|
}
|
|
5390
5385
|
|
|
5391
5386
|
|
|
@@ -5478,11 +5473,10 @@ declare module BABYLON {
|
|
|
5478
5473
|
private _updateNodeFromLocalBounds;
|
|
5479
5474
|
private _beginDraggingScalePoint;
|
|
5480
5475
|
private _beginRotate;
|
|
5481
|
-
render(): JSX.Element;
|
|
5476
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5482
5477
|
}
|
|
5483
5478
|
|
|
5484
5479
|
|
|
5485
|
-
/// <reference types="react" />
|
|
5486
5480
|
interface IGizmoLineProps {
|
|
5487
5481
|
globalState: GlobalState;
|
|
5488
5482
|
control: BABYLON.GUI.Line;
|
|
@@ -5493,7 +5487,7 @@ declare module BABYLON {
|
|
|
5493
5487
|
* @param props the properties of the gizmo
|
|
5494
5488
|
* @returns a gizmo line
|
|
5495
5489
|
*/
|
|
5496
|
-
export function GizmoLine(props: IGizmoLineProps): JSX.Element;
|
|
5490
|
+
export function GizmoLine(props: IGizmoLineProps): import("react/jsx-runtime").JSX.Element;
|
|
5497
5491
|
|
|
5498
5492
|
|
|
5499
5493
|
export enum ScalePointPosition {
|
|
@@ -5523,7 +5517,7 @@ declare module BABYLON {
|
|
|
5523
5517
|
canRotate: boolean;
|
|
5524
5518
|
allowClickOnPivot?: boolean;
|
|
5525
5519
|
}
|
|
5526
|
-
export function GizmoScalePoint(props: IGizmoScalePointProps): JSX.Element;
|
|
5520
|
+
export function GizmoScalePoint(props: IGizmoScalePointProps): import("react/jsx-runtime").JSX.Element;
|
|
5527
5521
|
|
|
5528
5522
|
|
|
5529
5523
|
export interface IGizmoWrapperProps {
|
|
@@ -5533,7 +5527,7 @@ declare module BABYLON {
|
|
|
5533
5527
|
observer: Nullable<Observer<void>>;
|
|
5534
5528
|
componentWillMount(): void;
|
|
5535
5529
|
componentWillUnmount(): void;
|
|
5536
|
-
render(): JSX.Element;
|
|
5530
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5537
5531
|
}
|
|
5538
5532
|
|
|
5539
5533
|
|
|
@@ -5647,7 +5641,7 @@ declare module BABYLON {
|
|
|
5647
5641
|
zoomDrag(event: React.MouseEvent): void;
|
|
5648
5642
|
zooming(delta: number): void;
|
|
5649
5643
|
zeroIfClose(vec: Vector3): void;
|
|
5650
|
-
render(): JSX.Element;
|
|
5644
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5651
5645
|
}
|
|
5652
5646
|
|
|
5653
5647
|
|
|
@@ -5893,14 +5887,14 @@ declare module BABYLON {
|
|
|
5893
5887
|
createPopupWindow: (title: string, windowVariableName: string, width?: number, height?: number) => Window | null;
|
|
5894
5888
|
copyStyles: (sourceDoc: HTMLDocument, targetDoc: HTMLDocument) => void;
|
|
5895
5889
|
switchExpandedState(): void;
|
|
5896
|
-
render(): JSX.Element;
|
|
5890
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5897
5891
|
onCreate(value: string): BABYLON.GUI.Control;
|
|
5898
|
-
createBlackLine(): JSX.Element;
|
|
5892
|
+
createBlackLine(): import("react/jsx-runtime").JSX.Element;
|
|
5899
5893
|
createToolbarHelper(ct: {
|
|
5900
5894
|
className: string;
|
|
5901
5895
|
icon: string;
|
|
5902
|
-
}[]): JSX.Element[];
|
|
5903
|
-
createToolbar(): JSX.Element;
|
|
5896
|
+
}[]): import("react/jsx-runtime").JSX.Element[];
|
|
5897
|
+
createToolbar(): import("react/jsx-runtime").JSX.Element;
|
|
5904
5898
|
}
|
|
5905
5899
|
|
|
5906
5900
|
|
|
@@ -5921,7 +5915,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
5921
5915
|
updateValue(valueString: string): void;
|
|
5922
5916
|
lock(): void;
|
|
5923
5917
|
unlock(): void;
|
|
5924
|
-
render(): JSX.Element;
|
|
5918
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5925
5919
|
}
|
|
5926
5920
|
|
|
5927
5921
|
|
|
@@ -5968,7 +5962,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
5968
5962
|
private _evaluateHue;
|
|
5969
5963
|
componentDidUpdate(): void;
|
|
5970
5964
|
raiseOnColorChanged(): void;
|
|
5971
|
-
render(): JSX.Element;
|
|
5965
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5972
5966
|
}
|
|
5973
5967
|
|
|
5974
5968
|
|
|
@@ -5994,7 +5988,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
5994
5988
|
lock(): void;
|
|
5995
5989
|
unlock(): void;
|
|
5996
5990
|
updateHexValue(valueString: string): void;
|
|
5997
|
-
render(): JSX.Element;
|
|
5991
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5998
5992
|
}
|
|
5999
5993
|
|
|
6000
5994
|
|
|
@@ -6067,7 +6061,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6067
6061
|
activeState: string;
|
|
6068
6062
|
}> {
|
|
6069
6063
|
constructor(props: ICommandDropdownComponentProps);
|
|
6070
|
-
render(): JSX.Element;
|
|
6064
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
6071
6065
|
}
|
|
6072
6066
|
|
|
6073
6067
|
|
|
@@ -6120,7 +6114,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6120
6114
|
updateValue(valueString: string): void;
|
|
6121
6115
|
lock(): void;
|
|
6122
6116
|
unlock(): void;
|
|
6123
|
-
render(): JSX.Element;
|
|
6117
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
6124
6118
|
}
|
|
6125
6119
|
|
|
6126
6120
|
|
|
@@ -6168,7 +6162,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6168
6162
|
private _evaluateHue;
|
|
6169
6163
|
componentDidUpdate(): void;
|
|
6170
6164
|
raiseOnColorChanged(): void;
|
|
6171
|
-
render(): JSX.Element;
|
|
6165
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
6172
6166
|
}
|
|
6173
6167
|
|
|
6174
6168
|
|
|
@@ -6194,7 +6188,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6194
6188
|
lock(): void;
|
|
6195
6189
|
unlock(): void;
|
|
6196
6190
|
updateHexValue(valueString: string): void;
|
|
6197
|
-
render(): JSX.Element;
|
|
6191
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
6198
6192
|
}
|
|
6199
6193
|
|
|
6200
6194
|
|
|
@@ -6686,7 +6680,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6686
6680
|
copyToClipboard(): void;
|
|
6687
6681
|
private _convertToColor;
|
|
6688
6682
|
private _toColor3;
|
|
6689
|
-
render(): JSX.Element;
|
|
6683
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
6690
6684
|
}
|
|
6691
6685
|
|
|
6692
6686
|
|
|
@@ -6723,7 +6717,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6723
6717
|
}>): string;
|
|
6724
6718
|
componentDidUpdate(): void;
|
|
6725
6719
|
componentDidMount(): void;
|
|
6726
|
-
render(): JSX.Element;
|
|
6720
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
6727
6721
|
}
|
|
6728
6722
|
|
|
6729
6723
|
|
|
@@ -6746,7 +6740,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6746
6740
|
private _uploadInputRef;
|
|
6747
6741
|
constructor(props: IFileButtonLineComponentProps);
|
|
6748
6742
|
onChange(evt: any): void;
|
|
6749
|
-
render(): JSX.Element;
|
|
6743
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
6750
6744
|
}
|
|
6751
6745
|
|
|
6752
6746
|
|
|
@@ -6782,7 +6776,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6782
6776
|
onBlur(): void;
|
|
6783
6777
|
incrementValue(amount: number): void;
|
|
6784
6778
|
onKeyDown(evt: React.KeyboardEvent<HTMLInputElement>): void;
|
|
6785
|
-
render(): JSX.Element;
|
|
6779
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
6786
6780
|
}
|
|
6787
6781
|
|
|
6788
6782
|
|
|
@@ -6792,8 +6786,7 @@ declare module BABYLON {
|
|
|
6792
6786
|
|
|
6793
6787
|
}
|
|
6794
6788
|
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
6795
|
-
|
|
6796
|
-
/**
|
|
6789
|
+
/**
|
|
6797
6790
|
* This components represents an options menu with optional
|
|
6798
6791
|
* customizable properties. Option IDs should be unique.
|
|
6799
6792
|
*/
|
|
@@ -6811,7 +6804,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6811
6804
|
validateNewOptionValue?: (newOptionValue: string) => boolean;
|
|
6812
6805
|
addOptionText?: string;
|
|
6813
6806
|
}
|
|
6814
|
-
export const OptionsLineComponent: (props: IOptionsLineComponentProps) => JSX.Element;
|
|
6807
|
+
export const OptionsLineComponent: (props: IOptionsLineComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
6815
6808
|
|
|
6816
6809
|
|
|
6817
6810
|
|
|
@@ -7096,7 +7089,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7096
7089
|
* @param props
|
|
7097
7090
|
* @returns
|
|
7098
7091
|
*/
|
|
7099
|
-
export const NodeRenderer: (props: INodeRendererProps) => JSX.Element;
|
|
7092
|
+
export const NodeRenderer: (props: INodeRendererProps) => import("react/jsx-runtime").JSX.Element;
|
|
7100
7093
|
|
|
7101
7094
|
|
|
7102
7095
|
|
|
@@ -7118,8 +7111,7 @@ declare module BABYLON {
|
|
|
7118
7111
|
|
|
7119
7112
|
}
|
|
7120
7113
|
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
7121
|
-
|
|
7122
|
-
export interface ITextInputProps {
|
|
7114
|
+
export interface ITextInputProps {
|
|
7123
7115
|
label?: string;
|
|
7124
7116
|
placeholder?: string;
|
|
7125
7117
|
submitValue: (newValue: string) => void;
|
|
@@ -7131,7 +7123,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7131
7123
|
* @param props properties
|
|
7132
7124
|
* @returns TextInputWithSubmit element
|
|
7133
7125
|
*/
|
|
7134
|
-
export const TextInputWithSubmit: (props: ITextInputProps) => JSX.Element;
|
|
7126
|
+
export const TextInputWithSubmit: (props: ITextInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
7135
7127
|
|
|
7136
7128
|
|
|
7137
7129
|
|
|
@@ -7164,7 +7156,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7164
7156
|
}
|
|
7165
7157
|
export class BooleanLineComponent extends React.Component<IBooleanLineComponentProps> {
|
|
7166
7158
|
constructor(props: IBooleanLineComponentProps);
|
|
7167
|
-
render(): JSX.Element;
|
|
7159
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7168
7160
|
}
|
|
7169
7161
|
|
|
7170
7162
|
|
|
@@ -7183,7 +7175,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7183
7175
|
}
|
|
7184
7176
|
export class ButtonLineComponent extends React.Component<IButtonLineComponentProps> {
|
|
7185
7177
|
constructor(props: IButtonLineComponentProps);
|
|
7186
|
-
render(): JSX.Element;
|
|
7178
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7187
7179
|
}
|
|
7188
7180
|
|
|
7189
7181
|
|
|
@@ -7223,7 +7215,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7223
7215
|
isConflict: boolean;
|
|
7224
7216
|
}): boolean;
|
|
7225
7217
|
onChange(): void;
|
|
7226
|
-
render(): JSX.Element;
|
|
7218
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7227
7219
|
}
|
|
7228
7220
|
|
|
7229
7221
|
|
|
@@ -7245,7 +7237,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7245
7237
|
onChange?: () => void;
|
|
7246
7238
|
}
|
|
7247
7239
|
export class Color3LineComponent extends React.Component<IColor3LineComponentProps> {
|
|
7248
|
-
render(): JSX.Element;
|
|
7240
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7249
7241
|
}
|
|
7250
7242
|
|
|
7251
7243
|
|
|
@@ -7267,7 +7259,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7267
7259
|
lockObject: BABYLON.GuiEditor.SharedUIComponents.LockObject;
|
|
7268
7260
|
}
|
|
7269
7261
|
export class Color4LineComponent extends React.Component<IColor4LineComponentProps> {
|
|
7270
|
-
render(): JSX.Element;
|
|
7262
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7271
7263
|
}
|
|
7272
7264
|
|
|
7273
7265
|
|
|
@@ -7309,7 +7301,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7309
7301
|
copyToClipboard(): void;
|
|
7310
7302
|
private _convertToColor;
|
|
7311
7303
|
private _toColor3;
|
|
7312
|
-
render(): JSX.Element;
|
|
7304
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7313
7305
|
}
|
|
7314
7306
|
|
|
7315
7307
|
|
|
@@ -7344,7 +7336,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7344
7336
|
}>): string;
|
|
7345
7337
|
componentDidUpdate(): void;
|
|
7346
7338
|
componentDidMount(): void;
|
|
7347
|
-
render(): JSX.Element;
|
|
7339
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7348
7340
|
}
|
|
7349
7341
|
|
|
7350
7342
|
|
|
@@ -7360,7 +7352,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7360
7352
|
}
|
|
7361
7353
|
export class DraggableLineComponent extends React.Component<IButtonLineComponentProps> {
|
|
7362
7354
|
constructor(props: IButtonLineComponentProps);
|
|
7363
|
-
render(): JSX.Element;
|
|
7355
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7364
7356
|
}
|
|
7365
7357
|
|
|
7366
7358
|
|
|
@@ -7383,7 +7375,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7383
7375
|
private _uploadInputRef;
|
|
7384
7376
|
constructor(props: IFileButtonLineComponentProps);
|
|
7385
7377
|
onChange(evt: any): void;
|
|
7386
|
-
render(): JSX.Element;
|
|
7378
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7387
7379
|
}
|
|
7388
7380
|
|
|
7389
7381
|
|
|
@@ -7406,7 +7398,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7406
7398
|
private _uploadInputRef;
|
|
7407
7399
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
|
7408
7400
|
onChange(evt: any): void;
|
|
7409
|
-
render(): JSX.Element;
|
|
7401
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7410
7402
|
}
|
|
7411
7403
|
|
|
7412
7404
|
|
|
@@ -7460,7 +7452,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7460
7452
|
unlock(): void;
|
|
7461
7453
|
incrementValue(amount: number, processStep?: boolean): void;
|
|
7462
7454
|
onKeyDown(event: React.KeyboardEvent<HTMLInputElement>): void;
|
|
7463
|
-
render(): JSX.Element;
|
|
7455
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7464
7456
|
}
|
|
7465
7457
|
|
|
7466
7458
|
|
|
@@ -7503,7 +7495,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7503
7495
|
updateValue(valueString: string, raisePropertyChanged: boolean): void;
|
|
7504
7496
|
lock(): void;
|
|
7505
7497
|
unlock(): void;
|
|
7506
|
-
render(): JSX.Element;
|
|
7498
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7507
7499
|
}
|
|
7508
7500
|
|
|
7509
7501
|
|
|
@@ -7521,7 +7513,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7521
7513
|
}
|
|
7522
7514
|
export class IconButtonLineComponent extends React.Component<IIconButtonLineComponentProps> {
|
|
7523
7515
|
constructor(props: IIconButtonLineComponentProps);
|
|
7524
|
-
render(): JSX.Element;
|
|
7516
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7525
7517
|
}
|
|
7526
7518
|
|
|
7527
7519
|
|
|
@@ -7536,7 +7528,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7536
7528
|
label?: string;
|
|
7537
7529
|
}
|
|
7538
7530
|
export class IconComponent extends React.Component<IIconComponentProps> {
|
|
7539
|
-
render(): JSX.Element;
|
|
7531
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7540
7532
|
}
|
|
7541
7533
|
|
|
7542
7534
|
|
|
@@ -7557,8 +7549,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7557
7549
|
export class IndentedTextLineComponent extends React.Component<IIndentedTextLineComponentProps> {
|
|
7558
7550
|
constructor(props: IIndentedTextLineComponentProps);
|
|
7559
7551
|
onLink(): void;
|
|
7560
|
-
renderContent(): JSX.Element;
|
|
7561
|
-
render(): JSX.Element;
|
|
7552
|
+
renderContent(): import("react/jsx-runtime").JSX.Element;
|
|
7553
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7562
7554
|
}
|
|
7563
7555
|
|
|
7564
7556
|
|
|
@@ -7577,7 +7569,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7577
7569
|
private _drag;
|
|
7578
7570
|
private _releaseListener;
|
|
7579
7571
|
private _lockChangeListener;
|
|
7580
|
-
render(): JSX.Element;
|
|
7572
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7581
7573
|
}
|
|
7582
7574
|
|
|
7583
7575
|
|
|
@@ -7611,9 +7603,9 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7611
7603
|
}> {
|
|
7612
7604
|
constructor(props: ILineContainerComponentProps);
|
|
7613
7605
|
switchExpandedState(): void;
|
|
7614
|
-
renderHeader(): JSX.Element;
|
|
7606
|
+
renderHeader(): import("react/jsx-runtime").JSX.Element;
|
|
7615
7607
|
componentDidMount(): void;
|
|
7616
|
-
render(): JSX.Element;
|
|
7608
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7617
7609
|
}
|
|
7618
7610
|
|
|
7619
7611
|
|
|
@@ -7634,7 +7626,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7634
7626
|
export class LinkButtonComponent extends React.Component<ILinkButtonComponentProps> {
|
|
7635
7627
|
constructor(props: ILinkButtonComponentProps);
|
|
7636
7628
|
onLink(): void;
|
|
7637
|
-
render(): JSX.Element;
|
|
7629
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7638
7630
|
}
|
|
7639
7631
|
|
|
7640
7632
|
|
|
@@ -7671,7 +7663,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7671
7663
|
updateMatrix(): void;
|
|
7672
7664
|
updateRow(value: Vector4, row: number): void;
|
|
7673
7665
|
updateBasedOnMode(value: number): void;
|
|
7674
|
-
render(): JSX.Element;
|
|
7666
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7675
7667
|
}
|
|
7676
7668
|
|
|
7677
7669
|
|
|
@@ -7688,7 +7680,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7688
7680
|
}
|
|
7689
7681
|
export class MessageLineComponent extends React.Component<IMessageLineComponentProps> {
|
|
7690
7682
|
constructor(props: IMessageLineComponentProps);
|
|
7691
|
-
render(): JSX.Element;
|
|
7683
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7692
7684
|
}
|
|
7693
7685
|
|
|
7694
7686
|
|
|
@@ -7724,7 +7716,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7724
7716
|
onBlur(): void;
|
|
7725
7717
|
incrementValue(amount: number): void;
|
|
7726
7718
|
onKeyDown(evt: React.KeyboardEvent<HTMLInputElement>): void;
|
|
7727
|
-
render(): JSX.Element;
|
|
7719
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7728
7720
|
}
|
|
7729
7721
|
|
|
7730
7722
|
|
|
@@ -7765,7 +7757,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7765
7757
|
raiseOnPropertyChanged(newValue: number, previousValue: number): void;
|
|
7766
7758
|
setValue(value: string | number): void;
|
|
7767
7759
|
updateValue(valueString: string): void;
|
|
7768
|
-
render(): JSX.Element;
|
|
7760
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7769
7761
|
}
|
|
7770
7762
|
|
|
7771
7763
|
|
|
@@ -7803,7 +7795,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7803
7795
|
componentDidMount(): void;
|
|
7804
7796
|
componentWillUnmount(): void;
|
|
7805
7797
|
onChange(): void;
|
|
7806
|
-
render(): JSX.Element;
|
|
7798
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7807
7799
|
}
|
|
7808
7800
|
|
|
7809
7801
|
|
|
@@ -7843,7 +7835,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7843
7835
|
onChange(newValueString: any): void;
|
|
7844
7836
|
onInput(newValueString: any): void;
|
|
7845
7837
|
prepareDataToRead(value: number): number;
|
|
7846
|
-
render(): JSX.Element;
|
|
7838
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7847
7839
|
}
|
|
7848
7840
|
|
|
7849
7841
|
|
|
@@ -7914,7 +7906,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7914
7906
|
updateValue(value: string, valueToValidate?: string): void;
|
|
7915
7907
|
incrementValue(amount: number): void;
|
|
7916
7908
|
onKeyDown(event: React.KeyboardEvent): void;
|
|
7917
|
-
render(): JSX.Element;
|
|
7909
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7918
7910
|
}
|
|
7919
7911
|
|
|
7920
7912
|
|
|
@@ -7940,8 +7932,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7940
7932
|
export class TextLineComponent extends React.Component<ITextLineComponentProps> {
|
|
7941
7933
|
constructor(props: ITextLineComponentProps);
|
|
7942
7934
|
onLink(): void;
|
|
7943
|
-
renderContent(): JSX.Element | null;
|
|
7944
|
-
render(): JSX.Element;
|
|
7935
|
+
renderContent(): import("react/jsx-runtime").JSX.Element | null;
|
|
7936
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7945
7937
|
}
|
|
7946
7938
|
|
|
7947
7939
|
|
|
@@ -7951,13 +7943,12 @@ declare module BABYLON {
|
|
|
7951
7943
|
|
|
7952
7944
|
}
|
|
7953
7945
|
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
7954
|
-
|
|
7955
|
-
interface IUnitButtonProps {
|
|
7946
|
+
interface IUnitButtonProps {
|
|
7956
7947
|
unit: string;
|
|
7957
7948
|
locked?: boolean;
|
|
7958
7949
|
onClick?: (unit: string) => void;
|
|
7959
7950
|
}
|
|
7960
|
-
export function UnitButton(props: IUnitButtonProps): JSX.Element;
|
|
7951
|
+
export function UnitButton(props: IUnitButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
7961
7952
|
|
|
7962
7953
|
|
|
7963
7954
|
|
|
@@ -7977,7 +7968,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7977
7968
|
}
|
|
7978
7969
|
export class ValueLineComponent extends React.Component<IValueLineComponentProps> {
|
|
7979
7970
|
constructor(props: IValueLineComponentProps);
|
|
7980
|
-
render(): JSX.Element;
|
|
7971
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
7981
7972
|
}
|
|
7982
7973
|
|
|
7983
7974
|
|
|
@@ -8015,7 +8006,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
8015
8006
|
raiseOnPropertyChanged(previousValue: Vector2): void;
|
|
8016
8007
|
updateStateX(value: number): void;
|
|
8017
8008
|
updateStateY(value: number): void;
|
|
8018
|
-
render(): JSX.Element;
|
|
8009
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
8019
8010
|
}
|
|
8020
8011
|
|
|
8021
8012
|
|
|
@@ -8058,7 +8049,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
8058
8049
|
updateStateX(value: number): void;
|
|
8059
8050
|
updateStateY(value: number): void;
|
|
8060
8051
|
updateStateZ(value: number): void;
|
|
8061
|
-
render(): JSX.Element;
|
|
8052
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
8062
8053
|
}
|
|
8063
8054
|
|
|
8064
8055
|
|
|
@@ -8102,7 +8093,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
8102
8093
|
updateStateY(value: number): void;
|
|
8103
8094
|
updateStateZ(value: number): void;
|
|
8104
8095
|
updateStateW(value: number): void;
|
|
8105
|
-
render(): JSX.Element;
|
|
8096
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
8106
8097
|
}
|
|
8107
8098
|
|
|
8108
8099
|
|
|
@@ -8257,7 +8248,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
8257
8248
|
processEditorData(editorData: BABYLON.GuiEditor.SharedUIComponents.IEditorData): void;
|
|
8258
8249
|
reOrganize(editorData?: Nullable<BABYLON.GuiEditor.SharedUIComponents.IEditorData>, isImportingAFrame?: boolean): void;
|
|
8259
8250
|
addFrame(frameData: BABYLON.GuiEditor.SharedUIComponents.IFrameData): void;
|
|
8260
|
-
render(): JSX.Element;
|
|
8251
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
8261
8252
|
}
|
|
8262
8253
|
|
|
8263
8254
|
|
|
@@ -8770,7 +8761,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
8770
8761
|
onFilterChange(evt: React.ChangeEvent<HTMLInputElement>): void;
|
|
8771
8762
|
onNewNodeRequested(name: string): void;
|
|
8772
8763
|
onKeyDown(evt: React.KeyboardEvent): void;
|
|
8773
|
-
render(): JSX.Element | null;
|
|
8764
|
+
render(): import("react/jsx-runtime").JSX.Element | null;
|
|
8774
8765
|
}
|
|
8775
8766
|
|
|
8776
8767
|
|
|
@@ -9028,11 +9019,10 @@ declare module BABYLON {
|
|
|
9028
9019
|
|
|
9029
9020
|
}
|
|
9030
9021
|
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
9031
|
-
|
|
9032
|
-
|
|
9033
|
-
component: (props: => JSX.Element;
|
|
9022
|
+
var _default: {
|
|
9023
|
+
component: (props: JSX.Element;
|
|
9034
9024
|
};
|
|
9035
|
-
const RenderComponent: (args: any) => JSX.Element;
|
|
9025
|
+
const RenderComponent: (args: any) => import("react/jsx-runtime").JSX.Element;
|
|
9036
9026
|
export var Default: StoryObj<typeof RenderComponent>;
|
|
9037
9027
|
export var WithCustomOptions: StoryObj<typeof RenderComponent>;
|
|
9038
9028
|
export var WithValidation: StoryObj<typeof RenderComponent>;
|
|
@@ -9100,7 +9090,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9100
9090
|
}
|
|
9101
9091
|
export class CheckboxPropertyGridComponent extends React.Component<ICheckboxPropertyGridComponentProps> {
|
|
9102
9092
|
constructor(props: ICheckboxPropertyGridComponentProps);
|
|
9103
|
-
render(): JSX.Element;
|
|
9093
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9104
9094
|
}
|
|
9105
9095
|
|
|
9106
9096
|
|
|
@@ -9117,7 +9107,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9117
9107
|
}
|
|
9118
9108
|
export class ColorPickerPropertyGridComponent extends React.Component<IColorPickerPropertyGridComponentProps> {
|
|
9119
9109
|
constructor(props: IColorPickerPropertyGridComponentProps);
|
|
9120
|
-
render(): JSX.Element;
|
|
9110
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9121
9111
|
}
|
|
9122
9112
|
|
|
9123
9113
|
|
|
@@ -9135,8 +9125,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9135
9125
|
}
|
|
9136
9126
|
export class CommonControlPropertyGridComponent extends React.Component<ICommonControlPropertyGridComponentProps> {
|
|
9137
9127
|
constructor(props: ICommonControlPropertyGridComponentProps);
|
|
9138
|
-
renderGridInformation(control: BABYLON.GUI.Control): JSX.Element | null;
|
|
9139
|
-
render(): JSX.Element | undefined;
|
|
9128
|
+
renderGridInformation(control: BABYLON.GUI.Control): import("react/jsx-runtime").JSX.Element | null;
|
|
9129
|
+
render(): import("react/jsx-runtime").JSX.Element | undefined;
|
|
9140
9130
|
}
|
|
9141
9131
|
|
|
9142
9132
|
|
|
@@ -9153,7 +9143,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9153
9143
|
}
|
|
9154
9144
|
export class ControlPropertyGridComponent extends React.Component<IControlPropertyGridComponentProps> {
|
|
9155
9145
|
constructor(props: IControlPropertyGridComponentProps);
|
|
9156
|
-
render(): JSX.Element;
|
|
9146
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9157
9147
|
}
|
|
9158
9148
|
|
|
9159
9149
|
|
|
@@ -9170,7 +9160,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9170
9160
|
}
|
|
9171
9161
|
export class EllipsePropertyGridComponent extends React.Component<IEllipsePropertyGridComponentProps> {
|
|
9172
9162
|
constructor(props: IEllipsePropertyGridComponentProps);
|
|
9173
|
-
render(): JSX.Element;
|
|
9163
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9174
9164
|
}
|
|
9175
9165
|
|
|
9176
9166
|
|
|
@@ -9187,9 +9177,9 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9187
9177
|
}
|
|
9188
9178
|
export class GridPropertyGridComponent extends React.Component<IGridPropertyGridComponentProps> {
|
|
9189
9179
|
constructor(props: IGridPropertyGridComponentProps);
|
|
9190
|
-
renderRows(): JSX.Element[];
|
|
9191
|
-
renderColumns(): JSX.Element[];
|
|
9192
|
-
render(): JSX.Element;
|
|
9180
|
+
renderRows(): import("react/jsx-runtime").JSX.Element[];
|
|
9181
|
+
renderColumns(): import("react/jsx-runtime").JSX.Element[];
|
|
9182
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9193
9183
|
}
|
|
9194
9184
|
|
|
9195
9185
|
|
|
@@ -9206,7 +9196,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9206
9196
|
}
|
|
9207
9197
|
export class ImageBasedSliderPropertyGridComponent extends React.Component<IImageBasedSliderPropertyGridComponentProps> {
|
|
9208
9198
|
constructor(props: IImageBasedSliderPropertyGridComponentProps);
|
|
9209
|
-
render(): JSX.Element;
|
|
9199
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9210
9200
|
}
|
|
9211
9201
|
|
|
9212
9202
|
|
|
@@ -9223,7 +9213,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9223
9213
|
}
|
|
9224
9214
|
export class ImagePropertyGridComponent extends React.Component<IImagePropertyGridComponentProps> {
|
|
9225
9215
|
constructor(props: IImagePropertyGridComponentProps);
|
|
9226
|
-
render(): JSX.Element;
|
|
9216
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9227
9217
|
}
|
|
9228
9218
|
|
|
9229
9219
|
|
|
@@ -9240,7 +9230,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9240
9230
|
}
|
|
9241
9231
|
export class InputTextPropertyGridComponent extends React.Component<IInputTextPropertyGridComponentProps> {
|
|
9242
9232
|
constructor(props: IInputTextPropertyGridComponentProps);
|
|
9243
|
-
render(): JSX.Element;
|
|
9233
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9244
9234
|
}
|
|
9245
9235
|
|
|
9246
9236
|
|
|
@@ -9258,7 +9248,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9258
9248
|
export class LinePropertyGridComponent extends React.Component<ILinePropertyGridComponentProps> {
|
|
9259
9249
|
constructor(props: ILinePropertyGridComponentProps);
|
|
9260
9250
|
onDashChange(value: string): void;
|
|
9261
|
-
render(): JSX.Element;
|
|
9251
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9262
9252
|
}
|
|
9263
9253
|
|
|
9264
9254
|
|
|
@@ -9275,7 +9265,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9275
9265
|
}
|
|
9276
9266
|
export class RadioButtonPropertyGridComponent extends React.Component<IRadioButtonPropertyGridComponentProps> {
|
|
9277
9267
|
constructor(props: IRadioButtonPropertyGridComponentProps);
|
|
9278
|
-
render(): JSX.Element;
|
|
9268
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9279
9269
|
}
|
|
9280
9270
|
|
|
9281
9271
|
|
|
@@ -9292,7 +9282,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9292
9282
|
}
|
|
9293
9283
|
export class RectanglePropertyGridComponent extends React.Component<IRectanglePropertyGridComponentProps> {
|
|
9294
9284
|
constructor(props: IRectanglePropertyGridComponentProps);
|
|
9295
|
-
render(): JSX.Element;
|
|
9285
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9296
9286
|
}
|
|
9297
9287
|
|
|
9298
9288
|
|
|
@@ -9309,7 +9299,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9309
9299
|
}
|
|
9310
9300
|
export class ScrollViewerPropertyGridComponent extends React.Component<IScrollViewerPropertyGridComponentProps> {
|
|
9311
9301
|
constructor(props: IScrollViewerPropertyGridComponentProps);
|
|
9312
|
-
render(): JSX.Element;
|
|
9302
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9313
9303
|
}
|
|
9314
9304
|
|
|
9315
9305
|
|
|
@@ -9326,7 +9316,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9326
9316
|
}
|
|
9327
9317
|
export class SliderPropertyGridComponent extends React.Component<ISliderPropertyGridComponentProps> {
|
|
9328
9318
|
constructor(props: ISliderPropertyGridComponentProps);
|
|
9329
|
-
render(): JSX.Element;
|
|
9319
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9330
9320
|
}
|
|
9331
9321
|
|
|
9332
9322
|
|
|
@@ -9343,7 +9333,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9343
9333
|
}
|
|
9344
9334
|
export class StackPanelPropertyGridComponent extends React.Component<IStackPanelPropertyGridComponentProps> {
|
|
9345
9335
|
constructor(props: IStackPanelPropertyGridComponentProps);
|
|
9346
|
-
render(): JSX.Element;
|
|
9336
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9347
9337
|
}
|
|
9348
9338
|
|
|
9349
9339
|
|
|
@@ -9360,7 +9350,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9360
9350
|
}
|
|
9361
9351
|
export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPropertyGridComponentProps> {
|
|
9362
9352
|
constructor(props: ITextBlockPropertyGridComponentProps);
|
|
9363
|
-
render(): JSX.Element;
|
|
9353
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9364
9354
|
}
|
|
9365
9355
|
|
|
9366
9356
|
|