@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.
|
@@ -311,92 +311,6 @@ export class Popup {
|
|
|
311
311
|
static _CopyStyles(sourceDoc: HTMLDocument, targetDoc: HTMLDocument): void;
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
-
}
|
|
315
|
-
declare module "@babylonjs/node-geometry-editor/sharedComponents/lineWithFileButtonComponent" {
|
|
316
|
-
import * as React from "react";
|
|
317
|
-
interface ILineWithFileButtonComponentProps {
|
|
318
|
-
title: string;
|
|
319
|
-
closed?: boolean;
|
|
320
|
-
label: string;
|
|
321
|
-
iconImage: any;
|
|
322
|
-
onIconClick: (file: File) => void;
|
|
323
|
-
accept: string;
|
|
324
|
-
uploadName?: string;
|
|
325
|
-
}
|
|
326
|
-
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
327
|
-
isExpanded: boolean;
|
|
328
|
-
}> {
|
|
329
|
-
private _uploadRef;
|
|
330
|
-
constructor(props: ILineWithFileButtonComponentProps);
|
|
331
|
-
onChange(evt: any): void;
|
|
332
|
-
switchExpandedState(): void;
|
|
333
|
-
|
|
334
|
-
}
|
|
335
|
-
export {};
|
|
336
|
-
|
|
337
|
-
}
|
|
338
|
-
declare module "@babylonjs/node-geometry-editor/sharedComponents/lineContainerComponent" {
|
|
339
|
-
import * as React from "react";
|
|
340
|
-
interface ILineContainerComponentProps {
|
|
341
|
-
title: string;
|
|
342
|
-
children: any[] | any;
|
|
343
|
-
closed?: boolean;
|
|
344
|
-
}
|
|
345
|
-
export class LineContainerComponent extends React.Component<ILineContainerComponentProps, {
|
|
346
|
-
isExpanded: boolean;
|
|
347
|
-
}> {
|
|
348
|
-
constructor(props: ILineContainerComponentProps);
|
|
349
|
-
switchExpandedState(): void;
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
}
|
|
353
|
-
export {};
|
|
354
|
-
|
|
355
|
-
}
|
|
356
|
-
declare module "@babylonjs/node-geometry-editor/sharedComponents/fileButtonLineComponent" {
|
|
357
|
-
import * as React from "react";
|
|
358
|
-
interface IFileButtonLineComponentProps {
|
|
359
|
-
label: string;
|
|
360
|
-
onClick: (file: File) => void;
|
|
361
|
-
accept: string;
|
|
362
|
-
uploadName?: string;
|
|
363
|
-
}
|
|
364
|
-
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
365
|
-
private _uploadRef;
|
|
366
|
-
constructor(props: IFileButtonLineComponentProps);
|
|
367
|
-
onChange(evt: any): void;
|
|
368
|
-
|
|
369
|
-
}
|
|
370
|
-
export {};
|
|
371
|
-
|
|
372
|
-
}
|
|
373
|
-
declare module "@babylonjs/node-geometry-editor/sharedComponents/draggableLineWithButtonComponent" {
|
|
374
|
-
import * as React from "react";
|
|
375
|
-
export interface IDraggableLineWithButtonComponent {
|
|
376
|
-
data: string;
|
|
377
|
-
tooltip: string;
|
|
378
|
-
iconImage: any;
|
|
379
|
-
onIconClick: (value: string) => void;
|
|
380
|
-
iconTitle: string;
|
|
381
|
-
lenSuffixToRemove?: number;
|
|
382
|
-
}
|
|
383
|
-
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
384
|
-
constructor(props: IDraggableLineWithButtonComponent);
|
|
385
|
-
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
}
|
|
389
|
-
declare module "@babylonjs/node-geometry-editor/sharedComponents/draggableLineComponent" {
|
|
390
|
-
import * as React from "react";
|
|
391
|
-
export interface IButtonLineComponentProps {
|
|
392
|
-
data: string;
|
|
393
|
-
tooltip: string;
|
|
394
|
-
}
|
|
395
|
-
export class DraggableLineComponent extends React.Component<IButtonLineComponentProps> {
|
|
396
|
-
constructor(props: IButtonLineComponentProps);
|
|
397
|
-
|
|
398
|
-
}
|
|
399
|
-
|
|
400
314
|
}
|
|
401
315
|
declare module "@babylonjs/node-geometry-editor/sharedComponents/checkBoxLineComponent" {
|
|
402
316
|
import * as React from "react";
|
|
@@ -2687,6 +2601,30 @@ export class LinkButtonComponent extends React.Component<ILinkButtonComponentPro
|
|
|
2687
2601
|
}
|
|
2688
2602
|
export {};
|
|
2689
2603
|
|
|
2604
|
+
}
|
|
2605
|
+
declare module "@babylonjs/node-geometry-editor/lines/lineWithFileButtonComponent" {
|
|
2606
|
+
import * as React from "react";
|
|
2607
|
+
interface ILineWithFileButtonComponentProps {
|
|
2608
|
+
title: string;
|
|
2609
|
+
closed?: boolean;
|
|
2610
|
+
multiple?: boolean;
|
|
2611
|
+
label: string;
|
|
2612
|
+
iconImage: any;
|
|
2613
|
+
onIconClick: (file: File) => void;
|
|
2614
|
+
accept: string;
|
|
2615
|
+
uploadName?: string;
|
|
2616
|
+
}
|
|
2617
|
+
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
2618
|
+
isExpanded: boolean;
|
|
2619
|
+
}> {
|
|
2620
|
+
private _uploadRef;
|
|
2621
|
+
constructor(props: ILineWithFileButtonComponentProps);
|
|
2622
|
+
onChange(evt: any): void;
|
|
2623
|
+
switchExpandedState(): void;
|
|
2624
|
+
|
|
2625
|
+
}
|
|
2626
|
+
export {};
|
|
2627
|
+
|
|
2690
2628
|
}
|
|
2691
2629
|
declare module "@babylonjs/node-geometry-editor/lines/lineContainerComponent" {
|
|
2692
2630
|
import * as React from "react";
|
|
@@ -2915,10 +2853,28 @@ export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
|
2915
2853
|
}
|
|
2916
2854
|
export {};
|
|
2917
2855
|
|
|
2856
|
+
}
|
|
2857
|
+
declare module "@babylonjs/node-geometry-editor/lines/draggableLineWithButtonComponent" {
|
|
2858
|
+
import * as React from "react";
|
|
2859
|
+
export interface IDraggableLineWithButtonComponent {
|
|
2860
|
+
format: string;
|
|
2861
|
+
data: string;
|
|
2862
|
+
tooltip: string;
|
|
2863
|
+
iconImage: any;
|
|
2864
|
+
onIconClick: (value: string) => void;
|
|
2865
|
+
iconTitle: string;
|
|
2866
|
+
lenSuffixToRemove?: number;
|
|
2867
|
+
}
|
|
2868
|
+
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
2869
|
+
constructor(props: IDraggableLineWithButtonComponent);
|
|
2870
|
+
|
|
2871
|
+
}
|
|
2872
|
+
|
|
2918
2873
|
}
|
|
2919
2874
|
declare module "@babylonjs/node-geometry-editor/lines/draggableLineComponent" {
|
|
2920
2875
|
import * as React from "react";
|
|
2921
2876
|
export interface IButtonLineComponentProps {
|
|
2877
|
+
format: string;
|
|
2922
2878
|
data: string;
|
|
2923
2879
|
tooltip: string;
|
|
2924
2880
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/node-geometry-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.29.0",
|
|
4
4
|
"main": "dist/babylon.nodeGeometryEditor.max.js",
|
|
5
5
|
"module": "dist/babylon.nodeGeometryEditor.max.js",
|
|
6
6
|
"esnext": "dist/babylon.nodeGeometryEditor.max.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@types/react-dom": ">=16.0.9"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@babylonjs/core": "^7.
|
|
26
|
+
"@babylonjs/core": "^7.29.0",
|
|
27
27
|
"react": "^17.0.2",
|
|
28
28
|
"react-dom": "^17.0.2"
|
|
29
29
|
},
|