babylonjs-node-geometry-editor 7.28.0 → 7.29.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.
|
@@ -192,79 +192,6 @@ declare module BABYLON.NodeGeometryEditor {
|
|
|
192
192
|
}
|
|
193
193
|
|
|
194
194
|
|
|
195
|
-
interface ILineWithFileButtonComponentProps {
|
|
196
|
-
title: string;
|
|
197
|
-
closed?: boolean;
|
|
198
|
-
label: string;
|
|
199
|
-
iconImage: any;
|
|
200
|
-
onIconClick: (file: File) => void;
|
|
201
|
-
accept: string;
|
|
202
|
-
uploadName?: string;
|
|
203
|
-
}
|
|
204
|
-
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
205
|
-
isExpanded: boolean;
|
|
206
|
-
}> {
|
|
207
|
-
private _uploadRef;
|
|
208
|
-
constructor(props: ILineWithFileButtonComponentProps);
|
|
209
|
-
onChange(evt: any): void;
|
|
210
|
-
switchExpandedState(): void;
|
|
211
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
interface ILineContainerComponentProps {
|
|
216
|
-
title: string;
|
|
217
|
-
children: any[] | any;
|
|
218
|
-
closed?: boolean;
|
|
219
|
-
}
|
|
220
|
-
export class LineContainerComponent extends React.Component<ILineContainerComponentProps, {
|
|
221
|
-
isExpanded: boolean;
|
|
222
|
-
}> {
|
|
223
|
-
constructor(props: ILineContainerComponentProps);
|
|
224
|
-
switchExpandedState(): void;
|
|
225
|
-
renderHeader(): import("react/jsx-runtime").JSX.Element;
|
|
226
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
interface IFileButtonLineComponentProps {
|
|
231
|
-
label: string;
|
|
232
|
-
onClick: (file: File) => void;
|
|
233
|
-
accept: string;
|
|
234
|
-
uploadName?: string;
|
|
235
|
-
}
|
|
236
|
-
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
237
|
-
private _uploadRef;
|
|
238
|
-
constructor(props: IFileButtonLineComponentProps);
|
|
239
|
-
onChange(evt: any): void;
|
|
240
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
export interface IDraggableLineWithButtonComponent {
|
|
245
|
-
data: string;
|
|
246
|
-
tooltip: string;
|
|
247
|
-
iconImage: any;
|
|
248
|
-
onIconClick: (value: string) => void;
|
|
249
|
-
iconTitle: string;
|
|
250
|
-
lenSuffixToRemove?: number;
|
|
251
|
-
}
|
|
252
|
-
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
253
|
-
constructor(props: IDraggableLineWithButtonComponent);
|
|
254
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
export interface IButtonLineComponentProps {
|
|
259
|
-
data: string;
|
|
260
|
-
tooltip: string;
|
|
261
|
-
}
|
|
262
|
-
export class DraggableLineComponent extends React.Component<IButtonLineComponentProps> {
|
|
263
|
-
constructor(props: IButtonLineComponentProps);
|
|
264
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
|
|
268
195
|
export interface ICheckBoxLineComponentProps {
|
|
269
196
|
label: string;
|
|
270
197
|
target?: any;
|
|
@@ -2485,6 +2412,34 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2485
2412
|
|
|
2486
2413
|
|
|
2487
2414
|
|
|
2415
|
+
}
|
|
2416
|
+
declare module BABYLON.NodeGeometryEditor {
|
|
2417
|
+
|
|
2418
|
+
|
|
2419
|
+
}
|
|
2420
|
+
declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
2421
|
+
interface ILineWithFileButtonComponentProps {
|
|
2422
|
+
title: string;
|
|
2423
|
+
closed?: boolean;
|
|
2424
|
+
multiple?: boolean;
|
|
2425
|
+
label: string;
|
|
2426
|
+
iconImage: any;
|
|
2427
|
+
onIconClick: (file: File) => void;
|
|
2428
|
+
accept: string;
|
|
2429
|
+
uploadName?: string;
|
|
2430
|
+
}
|
|
2431
|
+
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
2432
|
+
isExpanded: boolean;
|
|
2433
|
+
}> {
|
|
2434
|
+
private _uploadRef;
|
|
2435
|
+
constructor(props: ILineWithFileButtonComponentProps);
|
|
2436
|
+
onChange(evt: any): void;
|
|
2437
|
+
switchExpandedState(): void;
|
|
2438
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2441
|
+
|
|
2442
|
+
|
|
2488
2443
|
}
|
|
2489
2444
|
declare module BABYLON.NodeGeometryEditor {
|
|
2490
2445
|
|
|
@@ -2749,6 +2704,28 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2749
2704
|
|
|
2750
2705
|
|
|
2751
2706
|
|
|
2707
|
+
}
|
|
2708
|
+
declare module BABYLON.NodeGeometryEditor {
|
|
2709
|
+
|
|
2710
|
+
|
|
2711
|
+
}
|
|
2712
|
+
declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
2713
|
+
export interface IDraggableLineWithButtonComponent {
|
|
2714
|
+
format: string;
|
|
2715
|
+
data: string;
|
|
2716
|
+
tooltip: string;
|
|
2717
|
+
iconImage: any;
|
|
2718
|
+
onIconClick: (value: string) => void;
|
|
2719
|
+
iconTitle: string;
|
|
2720
|
+
lenSuffixToRemove?: number;
|
|
2721
|
+
}
|
|
2722
|
+
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
2723
|
+
constructor(props: IDraggableLineWithButtonComponent);
|
|
2724
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
|
|
2728
|
+
|
|
2752
2729
|
}
|
|
2753
2730
|
declare module BABYLON.NodeGeometryEditor {
|
|
2754
2731
|
|
|
@@ -2756,6 +2733,7 @@ declare module BABYLON.NodeGeometryEditor {
|
|
|
2756
2733
|
}
|
|
2757
2734
|
declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
2758
2735
|
export interface IButtonLineComponentProps {
|
|
2736
|
+
format: string;
|
|
2759
2737
|
data: string;
|
|
2760
2738
|
tooltip: string;
|
|
2761
2739
|
}
|