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.
package/babylon.inspector.d.ts
CHANGED
|
@@ -5336,6 +5336,34 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
5336
5336
|
|
|
5337
5337
|
|
|
5338
5338
|
|
|
5339
|
+
}
|
|
5340
|
+
declare module INSPECTOR {
|
|
5341
|
+
|
|
5342
|
+
|
|
5343
|
+
}
|
|
5344
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
5345
|
+
interface ILineWithFileButtonComponentProps {
|
|
5346
|
+
title: string;
|
|
5347
|
+
closed?: boolean;
|
|
5348
|
+
multiple?: boolean;
|
|
5349
|
+
label: string;
|
|
5350
|
+
iconImage: any;
|
|
5351
|
+
onIconClick: (file: File) => void;
|
|
5352
|
+
accept: string;
|
|
5353
|
+
uploadName?: string;
|
|
5354
|
+
}
|
|
5355
|
+
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
5356
|
+
isExpanded: boolean;
|
|
5357
|
+
}> {
|
|
5358
|
+
private _uploadRef;
|
|
5359
|
+
constructor(props: ILineWithFileButtonComponentProps);
|
|
5360
|
+
onChange(evt: any): void;
|
|
5361
|
+
switchExpandedState(): void;
|
|
5362
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5363
|
+
}
|
|
5364
|
+
|
|
5365
|
+
|
|
5366
|
+
|
|
5339
5367
|
}
|
|
5340
5368
|
declare module INSPECTOR {
|
|
5341
5369
|
|
|
@@ -5600,6 +5628,28 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
5600
5628
|
|
|
5601
5629
|
|
|
5602
5630
|
|
|
5631
|
+
}
|
|
5632
|
+
declare module INSPECTOR {
|
|
5633
|
+
|
|
5634
|
+
|
|
5635
|
+
}
|
|
5636
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
5637
|
+
export interface IDraggableLineWithButtonComponent {
|
|
5638
|
+
format: string;
|
|
5639
|
+
data: string;
|
|
5640
|
+
tooltip: string;
|
|
5641
|
+
iconImage: any;
|
|
5642
|
+
onIconClick: (value: string) => void;
|
|
5643
|
+
iconTitle: string;
|
|
5644
|
+
lenSuffixToRemove?: number;
|
|
5645
|
+
}
|
|
5646
|
+
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
5647
|
+
constructor(props: IDraggableLineWithButtonComponent);
|
|
5648
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
5649
|
+
}
|
|
5650
|
+
|
|
5651
|
+
|
|
5652
|
+
|
|
5603
5653
|
}
|
|
5604
5654
|
declare module INSPECTOR {
|
|
5605
5655
|
|
|
@@ -5607,6 +5657,7 @@ declare module INSPECTOR {
|
|
|
5607
5657
|
}
|
|
5608
5658
|
declare module INSPECTOR.SharedUIComponents {
|
|
5609
5659
|
export interface IButtonLineComponentProps {
|
|
5660
|
+
format: string;
|
|
5610
5661
|
data: string;
|
|
5611
5662
|
tooltip: string;
|
|
5612
5663
|
}
|
|
@@ -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
|
}
|
|
@@ -13141,6 +13183,34 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13141
13183
|
|
|
13142
13184
|
|
|
13143
13185
|
|
|
13186
|
+
}
|
|
13187
|
+
declare module INSPECTOR {
|
|
13188
|
+
|
|
13189
|
+
|
|
13190
|
+
}
|
|
13191
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
13192
|
+
interface ILineWithFileButtonComponentProps {
|
|
13193
|
+
title: string;
|
|
13194
|
+
closed?: boolean;
|
|
13195
|
+
multiple?: boolean;
|
|
13196
|
+
label: string;
|
|
13197
|
+
iconImage: any;
|
|
13198
|
+
onIconClick: (file: File) => void;
|
|
13199
|
+
accept: string;
|
|
13200
|
+
uploadName?: string;
|
|
13201
|
+
}
|
|
13202
|
+
export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
|
|
13203
|
+
isExpanded: boolean;
|
|
13204
|
+
}> {
|
|
13205
|
+
private _uploadRef;
|
|
13206
|
+
constructor(props: ILineWithFileButtonComponentProps);
|
|
13207
|
+
onChange(evt: any): void;
|
|
13208
|
+
switchExpandedState(): void;
|
|
13209
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
13210
|
+
}
|
|
13211
|
+
|
|
13212
|
+
|
|
13213
|
+
|
|
13144
13214
|
}
|
|
13145
13215
|
declare module INSPECTOR {
|
|
13146
13216
|
|
|
@@ -13405,6 +13475,28 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13405
13475
|
|
|
13406
13476
|
|
|
13407
13477
|
|
|
13478
|
+
}
|
|
13479
|
+
declare module INSPECTOR {
|
|
13480
|
+
|
|
13481
|
+
|
|
13482
|
+
}
|
|
13483
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
13484
|
+
export interface IDraggableLineWithButtonComponent {
|
|
13485
|
+
format: string;
|
|
13486
|
+
data: string;
|
|
13487
|
+
tooltip: string;
|
|
13488
|
+
iconImage: any;
|
|
13489
|
+
onIconClick: (value: string) => void;
|
|
13490
|
+
iconTitle: string;
|
|
13491
|
+
lenSuffixToRemove?: number;
|
|
13492
|
+
}
|
|
13493
|
+
export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
|
|
13494
|
+
constructor(props: IDraggableLineWithButtonComponent);
|
|
13495
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
13496
|
+
}
|
|
13497
|
+
|
|
13498
|
+
|
|
13499
|
+
|
|
13408
13500
|
}
|
|
13409
13501
|
declare module INSPECTOR {
|
|
13410
13502
|
|
|
@@ -13412,6 +13504,7 @@ declare module INSPECTOR {
|
|
|
13412
13504
|
}
|
|
13413
13505
|
declare module INSPECTOR.SharedUIComponents {
|
|
13414
13506
|
export interface IButtonLineComponentProps {
|
|
13507
|
+
format: string;
|
|
13415
13508
|
data: string;
|
|
13416
13509
|
tooltip: string;
|
|
13417
13510
|
}
|
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
|
"main": "babylon.inspector.bundle.max.js",
|
|
5
5
|
"types": "babylon.inspector.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.
|
|
18
|
-
"babylonjs-gui": "^7.
|
|
19
|
-
"babylonjs-gui-editor": "^7.
|
|
20
|
-
"babylonjs-loaders": "^7.
|
|
21
|
-
"babylonjs-materials": "^7.
|
|
22
|
-
"babylonjs-serializers": "^7.
|
|
17
|
+
"babylonjs": "^7.30.0",
|
|
18
|
+
"babylonjs-gui": "^7.30.0",
|
|
19
|
+
"babylonjs-gui-editor": "^7.30.0",
|
|
20
|
+
"babylonjs-loaders": "^7.30.0",
|
|
21
|
+
"babylonjs-materials": "^7.30.0",
|
|
22
|
+
"babylonjs-serializers": "^7.30.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@dev/build-tools": "1.0.0",
|