@babylonjs/inspector 7.28.0 → 7.30.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.
@@ -6271,6 +6271,30 @@ export class LinkButtonComponent extends React.Component<ILinkButtonComponentPro
|
|
6271
6271
|
}
|
6272
6272
|
export {};
|
6273
6273
|
|
6274
|
+
}
|
6275
|
+
declare module "@babylonjs/inspector/lines/lineWithFileButtonComponent" {
|
6276
|
+
import * as React from "react";
|
6277
|
+
interface ILineWithFileButtonComponentProps {
|
6278
|
+
title: string;
|
6279
|
+
closed?: boolean;
|
6280
|
+
multiple?: boolean;
|
6281
|
+
label: string;
|
6282
|
+
iconImage: any;
|
6283
|
+
onIconClick: (file: File) => void;
|
6284
|
+
accept: string;
|
6285
|
+
uploadName?: string;
|
6286
|
+
}
|
6287
|
+
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
6288
|
+
isExpanded: boolean;
|
6289
|
+
}> {
|
6290
|
+
private _uploadRef;
|
6291
|
+
constructor(props: ILineWithFileButtonComponentProps);
|
6292
|
+
onChange(evt: any): void;
|
6293
|
+
switchExpandedState(): void;
|
6294
|
+
|
6295
|
+
}
|
6296
|
+
export {};
|
6297
|
+
|
6274
6298
|
}
|
6275
6299
|
declare module "@babylonjs/inspector/lines/lineContainerComponent" {
|
6276
6300
|
import * as React from "react";
|
@@ -6499,10 +6523,28 @@ export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
6499
6523
|
}
|
6500
6524
|
export {};
|
6501
6525
|
|
6526
|
+
}
|
6527
|
+
declare module "@babylonjs/inspector/lines/draggableLineWithButtonComponent" {
|
6528
|
+
import * as React from "react";
|
6529
|
+
export interface IDraggableLineWithButtonComponent {
|
6530
|
+
format: string;
|
6531
|
+
data: string;
|
6532
|
+
tooltip: string;
|
6533
|
+
iconImage: any;
|
6534
|
+
onIconClick: (value: string) => void;
|
6535
|
+
iconTitle: string;
|
6536
|
+
lenSuffixToRemove?: number;
|
6537
|
+
}
|
6538
|
+
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
6539
|
+
constructor(props: IDraggableLineWithButtonComponent);
|
6540
|
+
|
6541
|
+
}
|
6542
|
+
|
6502
6543
|
}
|
6503
6544
|
declare module "@babylonjs/inspector/lines/draggableLineComponent" {
|
6504
6545
|
import * as React from "react";
|
6505
6546
|
export interface IButtonLineComponentProps {
|
6547
|
+
format: string;
|
6506
6548
|
data: string;
|
6507
6549
|
tooltip: string;
|
6508
6550
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/inspector",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.30.0",
|
4
4
|
"module": "dist/babylon.inspector.bundle.max.js",
|
5
5
|
"main": "dist/babylon.inspector.bundle.max.js",
|
6
6
|
"typings": "dist/babylon.inspector.module.d.ts",
|
@@ -32,12 +32,12 @@
|
|
32
32
|
"@types/react-dom": ">=16.0.9"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
35
|
-
"@babylonjs/core": "^7.
|
36
|
-
"@babylonjs/gui": "^7.
|
37
|
-
"@babylonjs/gui-editor": "^7.
|
38
|
-
"@babylonjs/loaders": "^7.
|
39
|
-
"@babylonjs/materials": "^7.
|
40
|
-
"@babylonjs/serializers": "^7.
|
35
|
+
"@babylonjs/core": "^7.30.0",
|
36
|
+
"@babylonjs/gui": "^7.30.0",
|
37
|
+
"@babylonjs/gui-editor": "^7.30.0",
|
38
|
+
"@babylonjs/loaders": "^7.30.0",
|
39
|
+
"@babylonjs/materials": "^7.30.0",
|
40
|
+
"@babylonjs/serializers": "^7.30.0",
|
41
41
|
"@lts/gui": "1.0.0",
|
42
42
|
"react": "^17.0.2",
|
43
43
|
"react-dom": "^17.0.2"
|