babylonjs-inspector 7.20.1 → 7.21.1
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.
|
@@ -228,11 +228,13 @@ export class GlobalState {
|
|
|
228
228
|
validationResults: Nullable<IGLTFValidationResults>;
|
|
229
229
|
onValidationResultsUpdatedObservable: Observable<Nullable<IGLTFValidationResults>>;
|
|
230
230
|
onExtensionLoadedObservable: Observable<IGLTFLoaderExtension>;
|
|
231
|
+
glTFLoaderOverrideExtensionsConfig: boolean;
|
|
231
232
|
glTFLoaderExtensionDefaults: {
|
|
232
233
|
[name: string]: {
|
|
233
234
|
[key: string]: any;
|
|
234
235
|
};
|
|
235
236
|
};
|
|
237
|
+
glTFLoaderOverrideConfig: boolean;
|
|
236
238
|
glTFLoaderDefaults: {
|
|
237
239
|
[key: string]: any;
|
|
238
240
|
};
|
|
@@ -1491,8 +1493,13 @@ interface IGLTFComponentProps {
|
|
|
1491
1493
|
globalState: GlobalState;
|
|
1492
1494
|
lockObject: LockObject;
|
|
1493
1495
|
}
|
|
1494
|
-
|
|
1496
|
+
interface IGLTFComponentState {
|
|
1497
|
+
showGLTFLoaderOptions: boolean;
|
|
1498
|
+
showGLTFExtensionOptions: boolean;
|
|
1499
|
+
}
|
|
1500
|
+
export class GLTFComponent extends React.Component<IGLTFComponentProps, IGLTFComponentState> {
|
|
1495
1501
|
private _onValidationResultsUpdatedObserver;
|
|
1502
|
+
constructor(props: IGLTFComponentProps);
|
|
1496
1503
|
openValidationDetails(): void;
|
|
1497
1504
|
prepareText(singularForm: string, count: number): string;
|
|
1498
1505
|
componentDidMount(): void;
|
|
@@ -7897,11 +7904,13 @@ declare module INSPECTOR {
|
|
|
7897
7904
|
validationResults: BABYLON.Nullable<BABYLON.GLTF2.IGLTFValidationResults>;
|
|
7898
7905
|
onValidationResultsUpdatedObservable: BABYLON.Observable<BABYLON.Nullable<BABYLON.GLTF2.IGLTFValidationResults>>;
|
|
7899
7906
|
onExtensionLoadedObservable: BABYLON.Observable<BABYLON.IGLTFLoaderExtension>;
|
|
7907
|
+
glTFLoaderOverrideExtensionsConfig: boolean;
|
|
7900
7908
|
glTFLoaderExtensionDefaults: {
|
|
7901
7909
|
[name: string]: {
|
|
7902
7910
|
[key: string]: any;
|
|
7903
7911
|
};
|
|
7904
7912
|
};
|
|
7913
|
+
glTFLoaderOverrideConfig: boolean;
|
|
7905
7914
|
glTFLoaderDefaults: {
|
|
7906
7915
|
[key: string]: any;
|
|
7907
7916
|
};
|
|
@@ -8935,8 +8944,13 @@ declare module INSPECTOR {
|
|
|
8935
8944
|
globalState: GlobalState;
|
|
8936
8945
|
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
8937
8946
|
}
|
|
8938
|
-
|
|
8947
|
+
interface IGLTFComponentState {
|
|
8948
|
+
showGLTFLoaderOptions: boolean;
|
|
8949
|
+
showGLTFExtensionOptions: boolean;
|
|
8950
|
+
}
|
|
8951
|
+
export class GLTFComponent extends React.Component<IGLTFComponentProps, IGLTFComponentState> {
|
|
8939
8952
|
private _onValidationResultsUpdatedObserver;
|
|
8953
|
+
constructor(props: IGLTFComponentProps);
|
|
8940
8954
|
openValidationDetails(): void;
|
|
8941
8955
|
prepareText(singularForm: string, count: number): string;
|
|
8942
8956
|
componentDidMount(): void;
|
|
@@ -11331,6 +11345,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11331
11345
|
}
|
|
11332
11346
|
declare module INSPECTOR {
|
|
11333
11347
|
|
|
11348
|
+
|
|
11334
11349
|
}
|
|
11335
11350
|
declare module INSPECTOR.SharedUIComponents {
|
|
11336
11351
|
export class PropertyChangedEvent {
|
|
@@ -11346,6 +11361,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11346
11361
|
}
|
|
11347
11362
|
declare module INSPECTOR {
|
|
11348
11363
|
|
|
11364
|
+
|
|
11349
11365
|
}
|
|
11350
11366
|
declare module INSPECTOR.SharedUIComponents {
|
|
11351
11367
|
export function copyCommandToClipboard(strCommand: string): void;
|
|
@@ -11359,6 +11375,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11359
11375
|
}
|
|
11360
11376
|
declare module INSPECTOR {
|
|
11361
11377
|
|
|
11378
|
+
|
|
11362
11379
|
}
|
|
11363
11380
|
declare module INSPECTOR.SharedUIComponents {
|
|
11364
11381
|
/**
|
|
@@ -11376,6 +11393,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11376
11393
|
}
|
|
11377
11394
|
declare module INSPECTOR {
|
|
11378
11395
|
|
|
11396
|
+
|
|
11379
11397
|
}
|
|
11380
11398
|
declare module INSPECTOR.SharedUIComponents {
|
|
11381
11399
|
interface ITextBlockPropertyGridComponentProps {
|
|
@@ -11393,6 +11411,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11393
11411
|
}
|
|
11394
11412
|
declare module INSPECTOR {
|
|
11395
11413
|
|
|
11414
|
+
|
|
11396
11415
|
}
|
|
11397
11416
|
declare module INSPECTOR.SharedUIComponents {
|
|
11398
11417
|
interface IStackPanelPropertyGridComponentProps {
|
|
@@ -11410,6 +11429,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11410
11429
|
}
|
|
11411
11430
|
declare module INSPECTOR {
|
|
11412
11431
|
|
|
11432
|
+
|
|
11413
11433
|
}
|
|
11414
11434
|
declare module INSPECTOR.SharedUIComponents {
|
|
11415
11435
|
interface ISliderPropertyGridComponentProps {
|
|
@@ -11427,6 +11447,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11427
11447
|
}
|
|
11428
11448
|
declare module INSPECTOR {
|
|
11429
11449
|
|
|
11450
|
+
|
|
11430
11451
|
}
|
|
11431
11452
|
declare module INSPECTOR.SharedUIComponents {
|
|
11432
11453
|
interface IScrollViewerPropertyGridComponentProps {
|
|
@@ -11444,6 +11465,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11444
11465
|
}
|
|
11445
11466
|
declare module INSPECTOR {
|
|
11446
11467
|
|
|
11468
|
+
|
|
11447
11469
|
}
|
|
11448
11470
|
declare module INSPECTOR.SharedUIComponents {
|
|
11449
11471
|
interface IRectanglePropertyGridComponentProps {
|
|
@@ -11461,6 +11483,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11461
11483
|
}
|
|
11462
11484
|
declare module INSPECTOR {
|
|
11463
11485
|
|
|
11486
|
+
|
|
11464
11487
|
}
|
|
11465
11488
|
declare module INSPECTOR.SharedUIComponents {
|
|
11466
11489
|
interface IRadioButtonPropertyGridComponentProps {
|
|
@@ -11478,6 +11501,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11478
11501
|
}
|
|
11479
11502
|
declare module INSPECTOR {
|
|
11480
11503
|
|
|
11504
|
+
|
|
11481
11505
|
}
|
|
11482
11506
|
declare module INSPECTOR.SharedUIComponents {
|
|
11483
11507
|
interface ILinePropertyGridComponentProps {
|
|
@@ -11496,6 +11520,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11496
11520
|
}
|
|
11497
11521
|
declare module INSPECTOR {
|
|
11498
11522
|
|
|
11523
|
+
|
|
11499
11524
|
}
|
|
11500
11525
|
declare module INSPECTOR.SharedUIComponents {
|
|
11501
11526
|
interface IInputTextPropertyGridComponentProps {
|
|
@@ -11513,6 +11538,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11513
11538
|
}
|
|
11514
11539
|
declare module INSPECTOR {
|
|
11515
11540
|
|
|
11541
|
+
|
|
11516
11542
|
}
|
|
11517
11543
|
declare module INSPECTOR.SharedUIComponents {
|
|
11518
11544
|
interface IImagePropertyGridComponentProps {
|
|
@@ -11530,6 +11556,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11530
11556
|
}
|
|
11531
11557
|
declare module INSPECTOR {
|
|
11532
11558
|
|
|
11559
|
+
|
|
11533
11560
|
}
|
|
11534
11561
|
declare module INSPECTOR.SharedUIComponents {
|
|
11535
11562
|
interface IImageBasedSliderPropertyGridComponentProps {
|
|
@@ -11547,6 +11574,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11547
11574
|
}
|
|
11548
11575
|
declare module INSPECTOR {
|
|
11549
11576
|
|
|
11577
|
+
|
|
11550
11578
|
}
|
|
11551
11579
|
declare module INSPECTOR.SharedUIComponents {
|
|
11552
11580
|
interface IGridPropertyGridComponentProps {
|
|
@@ -11566,6 +11594,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11566
11594
|
}
|
|
11567
11595
|
declare module INSPECTOR {
|
|
11568
11596
|
|
|
11597
|
+
|
|
11569
11598
|
}
|
|
11570
11599
|
declare module INSPECTOR.SharedUIComponents {
|
|
11571
11600
|
interface IEllipsePropertyGridComponentProps {
|
|
@@ -11583,6 +11612,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11583
11612
|
}
|
|
11584
11613
|
declare module INSPECTOR {
|
|
11585
11614
|
|
|
11615
|
+
|
|
11586
11616
|
}
|
|
11587
11617
|
declare module INSPECTOR.SharedUIComponents {
|
|
11588
11618
|
interface IControlPropertyGridComponentProps {
|
|
@@ -11600,6 +11630,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11600
11630
|
}
|
|
11601
11631
|
declare module INSPECTOR {
|
|
11602
11632
|
|
|
11633
|
+
|
|
11603
11634
|
}
|
|
11604
11635
|
declare module INSPECTOR.SharedUIComponents {
|
|
11605
11636
|
interface ICommonControlPropertyGridComponentProps {
|
|
@@ -11619,6 +11650,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11619
11650
|
}
|
|
11620
11651
|
declare module INSPECTOR {
|
|
11621
11652
|
|
|
11653
|
+
|
|
11622
11654
|
}
|
|
11623
11655
|
declare module INSPECTOR.SharedUIComponents {
|
|
11624
11656
|
interface IColorPickerPropertyGridComponentProps {
|
|
@@ -11636,6 +11668,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11636
11668
|
}
|
|
11637
11669
|
declare module INSPECTOR {
|
|
11638
11670
|
|
|
11671
|
+
|
|
11639
11672
|
}
|
|
11640
11673
|
declare module INSPECTOR.SharedUIComponents {
|
|
11641
11674
|
interface ICheckboxPropertyGridComponentProps {
|
|
@@ -11653,6 +11686,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11653
11686
|
}
|
|
11654
11687
|
declare module INSPECTOR {
|
|
11655
11688
|
|
|
11689
|
+
|
|
11656
11690
|
}
|
|
11657
11691
|
declare module INSPECTOR.SharedUIComponents {
|
|
11658
11692
|
export class TypeLedger {
|
|
@@ -11665,6 +11699,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11665
11699
|
}
|
|
11666
11700
|
declare module INSPECTOR {
|
|
11667
11701
|
|
|
11702
|
+
|
|
11668
11703
|
}
|
|
11669
11704
|
declare module INSPECTOR.SharedUIComponents {
|
|
11670
11705
|
export const IsFramePortData: (variableToCheck: any) => variableToCheck is INSPECTOR.SharedUIComponents.FramePortData;
|
|
@@ -11675,6 +11710,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11675
11710
|
}
|
|
11676
11711
|
declare module INSPECTOR {
|
|
11677
11712
|
|
|
11713
|
+
|
|
11678
11714
|
}
|
|
11679
11715
|
declare module INSPECTOR.SharedUIComponents {
|
|
11680
11716
|
export class StateManager {
|
|
@@ -11728,6 +11764,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11728
11764
|
}
|
|
11729
11765
|
declare module INSPECTOR {
|
|
11730
11766
|
|
|
11767
|
+
|
|
11731
11768
|
}
|
|
11732
11769
|
declare module INSPECTOR.SharedUIComponents {
|
|
11733
11770
|
export interface ISearchBoxComponentProps {
|
|
@@ -11758,6 +11795,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11758
11795
|
}
|
|
11759
11796
|
declare module INSPECTOR {
|
|
11760
11797
|
|
|
11798
|
+
|
|
11761
11799
|
}
|
|
11762
11800
|
declare module INSPECTOR.SharedUIComponents {
|
|
11763
11801
|
export class PropertyLedger {
|
|
@@ -11772,6 +11810,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11772
11810
|
}
|
|
11773
11811
|
declare module INSPECTOR {
|
|
11774
11812
|
|
|
11813
|
+
|
|
11775
11814
|
}
|
|
11776
11815
|
declare module INSPECTOR.SharedUIComponents {
|
|
11777
11816
|
export class NodePort {
|
|
@@ -11807,6 +11846,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11807
11846
|
}
|
|
11808
11847
|
declare module INSPECTOR {
|
|
11809
11848
|
|
|
11849
|
+
|
|
11810
11850
|
}
|
|
11811
11851
|
declare module INSPECTOR.SharedUIComponents {
|
|
11812
11852
|
export class NodeLink {
|
|
@@ -11841,6 +11881,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11841
11881
|
}
|
|
11842
11882
|
declare module INSPECTOR {
|
|
11843
11883
|
|
|
11884
|
+
|
|
11844
11885
|
}
|
|
11845
11886
|
declare module INSPECTOR.SharedUIComponents {
|
|
11846
11887
|
export class NodeLedger {
|
|
@@ -11853,6 +11894,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11853
11894
|
}
|
|
11854
11895
|
declare module INSPECTOR {
|
|
11855
11896
|
|
|
11897
|
+
|
|
11856
11898
|
}
|
|
11857
11899
|
declare module INSPECTOR.SharedUIComponents {
|
|
11858
11900
|
/// <reference types="react" />
|
|
@@ -11936,6 +11978,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11936
11978
|
}
|
|
11937
11979
|
declare module INSPECTOR {
|
|
11938
11980
|
|
|
11981
|
+
|
|
11939
11982
|
}
|
|
11940
11983
|
declare module INSPECTOR.SharedUIComponents {
|
|
11941
11984
|
export enum FramePortPosition {
|
|
@@ -12090,6 +12133,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12090
12133
|
}
|
|
12091
12134
|
declare module INSPECTOR {
|
|
12092
12135
|
|
|
12136
|
+
|
|
12093
12137
|
}
|
|
12094
12138
|
declare module INSPECTOR.SharedUIComponents {
|
|
12095
12139
|
export interface IGraphCanvasComponentProps {
|
|
@@ -12207,6 +12251,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12207
12251
|
}
|
|
12208
12252
|
declare module INSPECTOR {
|
|
12209
12253
|
|
|
12254
|
+
|
|
12210
12255
|
}
|
|
12211
12256
|
declare module INSPECTOR.SharedUIComponents {
|
|
12212
12257
|
export class FrameNodePort extends INSPECTOR.SharedUIComponents.NodePort {
|
|
@@ -12232,6 +12277,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12232
12277
|
}
|
|
12233
12278
|
declare module INSPECTOR {
|
|
12234
12279
|
|
|
12280
|
+
|
|
12235
12281
|
}
|
|
12236
12282
|
declare module INSPECTOR.SharedUIComponents {
|
|
12237
12283
|
export class DisplayLedger {
|
|
@@ -12245,6 +12291,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12245
12291
|
}
|
|
12246
12292
|
declare module INSPECTOR {
|
|
12247
12293
|
|
|
12294
|
+
|
|
12248
12295
|
}
|
|
12249
12296
|
declare module INSPECTOR.SharedUIComponents {
|
|
12250
12297
|
export type FramePortData = {
|
|
@@ -12257,6 +12304,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12257
12304
|
}
|
|
12258
12305
|
declare module INSPECTOR {
|
|
12259
12306
|
|
|
12307
|
+
|
|
12260
12308
|
}
|
|
12261
12309
|
declare module INSPECTOR.SharedUIComponents {
|
|
12262
12310
|
export interface ISelectionChangedOptions {
|
|
@@ -12270,6 +12318,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12270
12318
|
}
|
|
12271
12319
|
declare module INSPECTOR {
|
|
12272
12320
|
|
|
12321
|
+
|
|
12273
12322
|
}
|
|
12274
12323
|
declare module INSPECTOR.SharedUIComponents {
|
|
12275
12324
|
export interface IPropertyComponentProps {
|
|
@@ -12282,6 +12331,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12282
12331
|
}
|
|
12283
12332
|
declare module INSPECTOR {
|
|
12284
12333
|
|
|
12334
|
+
|
|
12285
12335
|
}
|
|
12286
12336
|
declare module INSPECTOR.SharedUIComponents {
|
|
12287
12337
|
export enum PortDataDirection {
|
|
@@ -12316,6 +12366,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12316
12366
|
}
|
|
12317
12367
|
declare module INSPECTOR {
|
|
12318
12368
|
|
|
12369
|
+
|
|
12319
12370
|
}
|
|
12320
12371
|
declare module INSPECTOR.SharedUIComponents {
|
|
12321
12372
|
export interface INodeLocationInfo {
|
|
@@ -12350,6 +12401,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12350
12401
|
}
|
|
12351
12402
|
declare module INSPECTOR {
|
|
12352
12403
|
|
|
12404
|
+
|
|
12353
12405
|
}
|
|
12354
12406
|
declare module INSPECTOR.SharedUIComponents {
|
|
12355
12407
|
export interface INodeData {
|
|
@@ -12375,6 +12427,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12375
12427
|
}
|
|
12376
12428
|
declare module INSPECTOR {
|
|
12377
12429
|
|
|
12430
|
+
|
|
12378
12431
|
}
|
|
12379
12432
|
declare module INSPECTOR.SharedUIComponents {
|
|
12380
12433
|
export interface INodeContainer {
|
|
@@ -12387,6 +12440,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12387
12440
|
}
|
|
12388
12441
|
declare module INSPECTOR {
|
|
12389
12442
|
|
|
12443
|
+
|
|
12390
12444
|
}
|
|
12391
12445
|
declare module INSPECTOR.SharedUIComponents {
|
|
12392
12446
|
export interface VisualContentDescription {
|
|
@@ -12408,6 +12462,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12408
12462
|
}
|
|
12409
12463
|
declare module INSPECTOR {
|
|
12410
12464
|
|
|
12465
|
+
|
|
12411
12466
|
}
|
|
12412
12467
|
declare module INSPECTOR.SharedUIComponents {
|
|
12413
12468
|
interface IVector4LineComponentProps {
|
|
@@ -12452,6 +12507,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12452
12507
|
}
|
|
12453
12508
|
declare module INSPECTOR {
|
|
12454
12509
|
|
|
12510
|
+
|
|
12455
12511
|
}
|
|
12456
12512
|
declare module INSPECTOR.SharedUIComponents {
|
|
12457
12513
|
interface IVector3LineComponentProps {
|
|
@@ -12496,6 +12552,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12496
12552
|
}
|
|
12497
12553
|
declare module INSPECTOR {
|
|
12498
12554
|
|
|
12555
|
+
|
|
12499
12556
|
}
|
|
12500
12557
|
declare module INSPECTOR.SharedUIComponents {
|
|
12501
12558
|
interface IVector2LineComponentProps {
|
|
@@ -12534,6 +12591,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12534
12591
|
}
|
|
12535
12592
|
declare module INSPECTOR {
|
|
12536
12593
|
|
|
12594
|
+
|
|
12537
12595
|
}
|
|
12538
12596
|
declare module INSPECTOR.SharedUIComponents {
|
|
12539
12597
|
interface IValueLineComponentProps {
|
|
@@ -12555,6 +12613,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12555
12613
|
}
|
|
12556
12614
|
declare module INSPECTOR {
|
|
12557
12615
|
|
|
12616
|
+
|
|
12558
12617
|
}
|
|
12559
12618
|
declare module INSPECTOR.SharedUIComponents {
|
|
12560
12619
|
interface IUnitButtonProps {
|
|
@@ -12569,6 +12628,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12569
12628
|
}
|
|
12570
12629
|
declare module INSPECTOR {
|
|
12571
12630
|
|
|
12631
|
+
|
|
12572
12632
|
}
|
|
12573
12633
|
declare module INSPECTOR.SharedUIComponents {
|
|
12574
12634
|
interface ITextLineComponentProps {
|
|
@@ -12596,6 +12656,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12596
12656
|
}
|
|
12597
12657
|
declare module INSPECTOR {
|
|
12598
12658
|
|
|
12659
|
+
|
|
12599
12660
|
}
|
|
12600
12661
|
declare module INSPECTOR.SharedUIComponents {
|
|
12601
12662
|
export interface ITextInputLineComponentProps {
|
|
@@ -12650,6 +12711,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12650
12711
|
}
|
|
12651
12712
|
declare module INSPECTOR {
|
|
12652
12713
|
|
|
12714
|
+
|
|
12653
12715
|
}
|
|
12654
12716
|
declare module INSPECTOR.SharedUIComponents {
|
|
12655
12717
|
export const conflictingValuesPlaceholder = "\u2014";
|
|
@@ -12667,6 +12729,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12667
12729
|
}
|
|
12668
12730
|
declare module INSPECTOR {
|
|
12669
12731
|
|
|
12732
|
+
|
|
12670
12733
|
}
|
|
12671
12734
|
declare module INSPECTOR.SharedUIComponents {
|
|
12672
12735
|
interface ISliderLineComponentProps {
|
|
@@ -12708,6 +12771,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12708
12771
|
}
|
|
12709
12772
|
declare module INSPECTOR {
|
|
12710
12773
|
|
|
12774
|
+
|
|
12711
12775
|
}
|
|
12712
12776
|
declare module INSPECTOR.SharedUIComponents {
|
|
12713
12777
|
interface IRadioButtonLineComponentProps {
|
|
@@ -12734,6 +12798,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12734
12798
|
}
|
|
12735
12799
|
declare module INSPECTOR {
|
|
12736
12800
|
|
|
12801
|
+
|
|
12737
12802
|
}
|
|
12738
12803
|
declare module INSPECTOR.SharedUIComponents {
|
|
12739
12804
|
export class Popup {
|
|
@@ -12746,6 +12811,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12746
12811
|
}
|
|
12747
12812
|
declare module INSPECTOR {
|
|
12748
12813
|
|
|
12814
|
+
|
|
12749
12815
|
}
|
|
12750
12816
|
declare module INSPECTOR.SharedUIComponents {
|
|
12751
12817
|
export var Null_Value: number;
|
|
@@ -12788,6 +12854,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12788
12854
|
}
|
|
12789
12855
|
declare module INSPECTOR {
|
|
12790
12856
|
|
|
12857
|
+
|
|
12791
12858
|
}
|
|
12792
12859
|
declare module INSPECTOR.SharedUIComponents {
|
|
12793
12860
|
interface INumericInputProps {
|
|
@@ -12824,6 +12891,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12824
12891
|
}
|
|
12825
12892
|
declare module INSPECTOR {
|
|
12826
12893
|
|
|
12894
|
+
|
|
12827
12895
|
}
|
|
12828
12896
|
declare module INSPECTOR.SharedUIComponents {
|
|
12829
12897
|
interface IMessageLineComponentProps {
|
|
@@ -12841,6 +12909,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12841
12909
|
}
|
|
12842
12910
|
declare module INSPECTOR {
|
|
12843
12911
|
|
|
12912
|
+
|
|
12844
12913
|
}
|
|
12845
12914
|
declare module INSPECTOR.SharedUIComponents {
|
|
12846
12915
|
interface IMatrixLineComponentProps {
|
|
@@ -12878,6 +12947,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12878
12947
|
}
|
|
12879
12948
|
declare module INSPECTOR {
|
|
12880
12949
|
|
|
12950
|
+
|
|
12881
12951
|
}
|
|
12882
12952
|
declare module INSPECTOR.SharedUIComponents {
|
|
12883
12953
|
interface ILinkButtonComponentProps {
|
|
@@ -12899,6 +12969,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12899
12969
|
}
|
|
12900
12970
|
declare module INSPECTOR {
|
|
12901
12971
|
|
|
12972
|
+
|
|
12902
12973
|
}
|
|
12903
12974
|
declare module INSPECTOR.SharedUIComponents {
|
|
12904
12975
|
interface ILineContainerComponentProps {
|
|
@@ -12923,6 +12994,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12923
12994
|
}
|
|
12924
12995
|
declare module INSPECTOR {
|
|
12925
12996
|
|
|
12997
|
+
|
|
12926
12998
|
}
|
|
12927
12999
|
declare module INSPECTOR.SharedUIComponents {
|
|
12928
13000
|
interface IInputArrowsComponentProps {
|
|
@@ -12942,6 +13014,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12942
13014
|
}
|
|
12943
13015
|
declare module INSPECTOR {
|
|
12944
13016
|
|
|
13017
|
+
|
|
12945
13018
|
}
|
|
12946
13019
|
declare module INSPECTOR.SharedUIComponents {
|
|
12947
13020
|
interface IIndentedTextLineComponentProps {
|
|
@@ -12964,6 +13037,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12964
13037
|
}
|
|
12965
13038
|
declare module INSPECTOR {
|
|
12966
13039
|
|
|
13040
|
+
|
|
12967
13041
|
}
|
|
12968
13042
|
declare module INSPECTOR.SharedUIComponents {
|
|
12969
13043
|
interface IIconComponentProps {
|
|
@@ -12979,6 +13053,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12979
13053
|
}
|
|
12980
13054
|
declare module INSPECTOR {
|
|
12981
13055
|
|
|
13056
|
+
|
|
12982
13057
|
}
|
|
12983
13058
|
declare module INSPECTOR.SharedUIComponents {
|
|
12984
13059
|
export interface IIconButtonLineComponentProps {
|
|
@@ -12997,6 +13072,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12997
13072
|
}
|
|
12998
13073
|
declare module INSPECTOR {
|
|
12999
13074
|
|
|
13075
|
+
|
|
13000
13076
|
}
|
|
13001
13077
|
declare module INSPECTOR.SharedUIComponents {
|
|
13002
13078
|
export interface ISelectedLineContainer {
|
|
@@ -13009,6 +13085,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13009
13085
|
}
|
|
13010
13086
|
declare module INSPECTOR {
|
|
13011
13087
|
|
|
13088
|
+
|
|
13012
13089
|
}
|
|
13013
13090
|
declare module INSPECTOR.SharedUIComponents {
|
|
13014
13091
|
interface IHexLineComponentProps {
|
|
@@ -13052,6 +13129,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13052
13129
|
}
|
|
13053
13130
|
declare module INSPECTOR {
|
|
13054
13131
|
|
|
13132
|
+
|
|
13055
13133
|
}
|
|
13056
13134
|
declare module INSPECTOR.SharedUIComponents {
|
|
13057
13135
|
interface IFloatLineComponentProps {
|
|
@@ -13107,6 +13185,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13107
13185
|
}
|
|
13108
13186
|
declare module INSPECTOR {
|
|
13109
13187
|
|
|
13188
|
+
|
|
13110
13189
|
}
|
|
13111
13190
|
declare module INSPECTOR.SharedUIComponents {
|
|
13112
13191
|
interface IFileMultipleButtonLineComponentProps {
|
|
@@ -13130,6 +13209,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13130
13209
|
}
|
|
13131
13210
|
declare module INSPECTOR {
|
|
13132
13211
|
|
|
13212
|
+
|
|
13133
13213
|
}
|
|
13134
13214
|
declare module INSPECTOR.SharedUIComponents {
|
|
13135
13215
|
interface IFileButtonLineProps {
|
|
@@ -13153,6 +13233,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13153
13233
|
}
|
|
13154
13234
|
declare module INSPECTOR {
|
|
13155
13235
|
|
|
13236
|
+
|
|
13156
13237
|
}
|
|
13157
13238
|
declare module INSPECTOR.SharedUIComponents {
|
|
13158
13239
|
export interface IButtonLineComponentProps {
|
|
@@ -13169,6 +13250,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13169
13250
|
}
|
|
13170
13251
|
declare module INSPECTOR {
|
|
13171
13252
|
|
|
13253
|
+
|
|
13172
13254
|
}
|
|
13173
13255
|
declare module INSPECTOR.SharedUIComponents {
|
|
13174
13256
|
export interface IColorPickerLineProps {
|
|
@@ -13204,6 +13286,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13204
13286
|
}
|
|
13205
13287
|
declare module INSPECTOR {
|
|
13206
13288
|
|
|
13289
|
+
|
|
13207
13290
|
}
|
|
13208
13291
|
declare module INSPECTOR.SharedUIComponents {
|
|
13209
13292
|
export interface IColorLineProps {
|
|
@@ -13246,6 +13329,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13246
13329
|
}
|
|
13247
13330
|
declare module INSPECTOR {
|
|
13248
13331
|
|
|
13332
|
+
|
|
13249
13333
|
}
|
|
13250
13334
|
declare module INSPECTOR.SharedUIComponents {
|
|
13251
13335
|
export interface IColor4LineComponentProps {
|
|
@@ -13268,6 +13352,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13268
13352
|
}
|
|
13269
13353
|
declare module INSPECTOR {
|
|
13270
13354
|
|
|
13355
|
+
|
|
13271
13356
|
}
|
|
13272
13357
|
declare module INSPECTOR.SharedUIComponents {
|
|
13273
13358
|
export interface IColor3LineComponentProps {
|
|
@@ -13290,6 +13375,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13290
13375
|
}
|
|
13291
13376
|
declare module INSPECTOR {
|
|
13292
13377
|
|
|
13378
|
+
|
|
13293
13379
|
}
|
|
13294
13380
|
declare module INSPECTOR.SharedUIComponents {
|
|
13295
13381
|
export interface ICheckBoxLineComponentProps {
|
|
@@ -13331,6 +13417,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13331
13417
|
}
|
|
13332
13418
|
declare module INSPECTOR {
|
|
13333
13419
|
|
|
13420
|
+
|
|
13334
13421
|
}
|
|
13335
13422
|
declare module INSPECTOR.SharedUIComponents {
|
|
13336
13423
|
export interface IButtonLineComponentProps {
|
|
@@ -13350,6 +13437,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13350
13437
|
}
|
|
13351
13438
|
declare module INSPECTOR {
|
|
13352
13439
|
|
|
13440
|
+
|
|
13353
13441
|
}
|
|
13354
13442
|
declare module INSPECTOR.SharedUIComponents {
|
|
13355
13443
|
export interface IBooleanLineComponentProps {
|
|
@@ -13368,6 +13456,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13368
13456
|
}
|
|
13369
13457
|
declare module INSPECTOR {
|
|
13370
13458
|
|
|
13459
|
+
|
|
13371
13460
|
}
|
|
13372
13461
|
declare module INSPECTOR.SharedUIComponents {
|
|
13373
13462
|
export function ClassNames(names: any, styleObject: any): string;
|
|
@@ -13378,6 +13467,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13378
13467
|
}
|
|
13379
13468
|
declare module INSPECTOR {
|
|
13380
13469
|
|
|
13470
|
+
|
|
13381
13471
|
}
|
|
13382
13472
|
declare module INSPECTOR.SharedUIComponents {
|
|
13383
13473
|
/// <reference types="react" />
|
|
@@ -13394,6 +13484,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13394
13484
|
}
|
|
13395
13485
|
declare module INSPECTOR {
|
|
13396
13486
|
|
|
13487
|
+
|
|
13397
13488
|
}
|
|
13398
13489
|
declare module INSPECTOR.SharedUIComponents {
|
|
13399
13490
|
export interface ITextInputProps {
|
|
@@ -13415,6 +13506,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13415
13506
|
}
|
|
13416
13507
|
declare module INSPECTOR {
|
|
13417
13508
|
|
|
13509
|
+
|
|
13418
13510
|
}
|
|
13419
13511
|
declare module INSPECTOR.SharedUIComponents {
|
|
13420
13512
|
export interface MessageDialogProps {
|
|
@@ -13429,6 +13521,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13429
13521
|
}
|
|
13430
13522
|
declare module INSPECTOR {
|
|
13431
13523
|
|
|
13524
|
+
|
|
13432
13525
|
}
|
|
13433
13526
|
declare module INSPECTOR.SharedUIComponents {
|
|
13434
13527
|
export type LabelProps = {
|
|
@@ -13443,6 +13536,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13443
13536
|
}
|
|
13444
13537
|
declare module INSPECTOR {
|
|
13445
13538
|
|
|
13539
|
+
|
|
13446
13540
|
}
|
|
13447
13541
|
declare module INSPECTOR.SharedUIComponents {
|
|
13448
13542
|
/// <reference types="react" />
|
|
@@ -13457,6 +13551,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13457
13551
|
}
|
|
13458
13552
|
declare module INSPECTOR {
|
|
13459
13553
|
|
|
13554
|
+
|
|
13460
13555
|
}
|
|
13461
13556
|
declare module INSPECTOR.SharedUIComponents {
|
|
13462
13557
|
/// <reference types="react" />
|
|
@@ -13476,6 +13571,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13476
13571
|
}
|
|
13477
13572
|
declare module INSPECTOR {
|
|
13478
13573
|
|
|
13574
|
+
|
|
13479
13575
|
}
|
|
13480
13576
|
declare module INSPECTOR.SharedUIComponents {
|
|
13481
13577
|
/**
|
|
@@ -13489,6 +13585,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13489
13585
|
}
|
|
13490
13586
|
declare module INSPECTOR {
|
|
13491
13587
|
|
|
13588
|
+
|
|
13492
13589
|
}
|
|
13493
13590
|
declare module INSPECTOR.SharedUIComponents {
|
|
13494
13591
|
export type IVisualRecordsType = Record<string, {
|
|
@@ -13564,6 +13661,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13564
13661
|
}
|
|
13565
13662
|
declare module INSPECTOR {
|
|
13566
13663
|
|
|
13664
|
+
|
|
13567
13665
|
}
|
|
13568
13666
|
declare module INSPECTOR.SharedUIComponents {
|
|
13569
13667
|
export interface IGraphContainerProps {
|
|
@@ -13582,6 +13680,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13582
13680
|
}
|
|
13583
13681
|
declare module INSPECTOR {
|
|
13584
13682
|
|
|
13683
|
+
|
|
13585
13684
|
}
|
|
13586
13685
|
declare module INSPECTOR.SharedUIComponents {
|
|
13587
13686
|
export interface IGraphNodeProps {
|
|
@@ -13602,6 +13701,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13602
13701
|
}
|
|
13603
13702
|
declare module INSPECTOR {
|
|
13604
13703
|
|
|
13704
|
+
|
|
13605
13705
|
}
|
|
13606
13706
|
declare module INSPECTOR.SharedUIComponents {
|
|
13607
13707
|
/**
|
|
@@ -13625,6 +13725,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13625
13725
|
}
|
|
13626
13726
|
declare module INSPECTOR {
|
|
13627
13727
|
|
|
13728
|
+
|
|
13628
13729
|
}
|
|
13629
13730
|
declare module INSPECTOR.SharedUIComponents {
|
|
13630
13731
|
/**
|
|
@@ -13674,6 +13775,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13674
13775
|
}
|
|
13675
13776
|
declare module INSPECTOR {
|
|
13676
13777
|
|
|
13778
|
+
|
|
13677
13779
|
}
|
|
13678
13780
|
declare module INSPECTOR.SharedUIComponents {
|
|
13679
13781
|
/// <reference types="react" />
|
|
@@ -13692,6 +13794,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13692
13794
|
}
|
|
13693
13795
|
declare module INSPECTOR {
|
|
13694
13796
|
|
|
13797
|
+
|
|
13695
13798
|
}
|
|
13696
13799
|
declare module INSPECTOR.SharedUIComponents {
|
|
13697
13800
|
export interface IGraphContainerProps {
|
|
@@ -13709,6 +13812,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13709
13812
|
}
|
|
13710
13813
|
declare module INSPECTOR {
|
|
13711
13814
|
|
|
13815
|
+
|
|
13712
13816
|
}
|
|
13713
13817
|
declare module INSPECTOR.SharedUIComponents {
|
|
13714
13818
|
/**
|
|
@@ -13760,6 +13864,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13760
13864
|
}
|
|
13761
13865
|
declare module INSPECTOR {
|
|
13762
13866
|
|
|
13867
|
+
|
|
13763
13868
|
}
|
|
13764
13869
|
declare module INSPECTOR.SharedUIComponents {
|
|
13765
13870
|
/**
|
|
@@ -13787,6 +13892,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13787
13892
|
}
|
|
13788
13893
|
declare module INSPECTOR {
|
|
13789
13894
|
|
|
13895
|
+
|
|
13790
13896
|
}
|
|
13791
13897
|
declare module INSPECTOR.SharedUIComponents {
|
|
13792
13898
|
interface INumericInputComponentProps {
|
|
@@ -13823,6 +13929,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13823
13929
|
}
|
|
13824
13930
|
declare module INSPECTOR {
|
|
13825
13931
|
|
|
13932
|
+
|
|
13826
13933
|
}
|
|
13827
13934
|
declare module INSPECTOR.SharedUIComponents {
|
|
13828
13935
|
export interface IFileButtonLineComponentProps {
|
|
@@ -13846,6 +13953,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13846
13953
|
}
|
|
13847
13954
|
declare module INSPECTOR {
|
|
13848
13955
|
|
|
13956
|
+
|
|
13849
13957
|
}
|
|
13850
13958
|
declare module INSPECTOR.SharedUIComponents {
|
|
13851
13959
|
export interface IColorPickerLineComponentProps {
|
|
@@ -13883,6 +13991,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13883
13991
|
}
|
|
13884
13992
|
declare module INSPECTOR {
|
|
13885
13993
|
|
|
13994
|
+
|
|
13886
13995
|
}
|
|
13887
13996
|
declare module INSPECTOR.SharedUIComponents {
|
|
13888
13997
|
export interface IColorLineComponentProps {
|
|
@@ -13925,6 +14034,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13925
14034
|
}
|
|
13926
14035
|
declare module INSPECTOR {
|
|
13927
14036
|
|
|
14037
|
+
|
|
13928
14038
|
}
|
|
13929
14039
|
declare module INSPECTOR.SharedUIComponents {
|
|
13930
14040
|
/**
|
|
@@ -13961,6 +14071,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13961
14071
|
}
|
|
13962
14072
|
declare module INSPECTOR {
|
|
13963
14073
|
|
|
14074
|
+
|
|
13964
14075
|
}
|
|
13965
14076
|
declare module INSPECTOR.SharedUIComponents {
|
|
13966
14077
|
export type LayoutTab = {
|
|
@@ -14050,6 +14161,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14050
14161
|
}
|
|
14051
14162
|
declare module INSPECTOR {
|
|
14052
14163
|
|
|
14164
|
+
|
|
14053
14165
|
}
|
|
14054
14166
|
declare module INSPECTOR.SharedUIComponents {
|
|
14055
14167
|
/// <reference types="react" />
|
|
@@ -14069,6 +14181,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14069
14181
|
}
|
|
14070
14182
|
declare module INSPECTOR {
|
|
14071
14183
|
|
|
14184
|
+
|
|
14072
14185
|
}
|
|
14073
14186
|
declare module INSPECTOR.SharedUIComponents {
|
|
14074
14187
|
/**
|
|
@@ -14105,6 +14218,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14105
14218
|
}
|
|
14106
14219
|
declare module INSPECTOR {
|
|
14107
14220
|
|
|
14221
|
+
|
|
14108
14222
|
}
|
|
14109
14223
|
declare module INSPECTOR.SharedUIComponents {
|
|
14110
14224
|
/**
|
|
@@ -14147,6 +14261,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14147
14261
|
}
|
|
14148
14262
|
declare module INSPECTOR {
|
|
14149
14263
|
|
|
14264
|
+
|
|
14150
14265
|
}
|
|
14151
14266
|
declare module INSPECTOR.SharedUIComponents {
|
|
14152
14267
|
/**
|
|
@@ -14195,6 +14310,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14195
14310
|
}
|
|
14196
14311
|
declare module INSPECTOR {
|
|
14197
14312
|
|
|
14313
|
+
|
|
14198
14314
|
}
|
|
14199
14315
|
declare module INSPECTOR.SharedUIComponents {
|
|
14200
14316
|
/**
|
|
@@ -14219,6 +14335,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14219
14335
|
}
|
|
14220
14336
|
declare module INSPECTOR {
|
|
14221
14337
|
|
|
14338
|
+
|
|
14222
14339
|
}
|
|
14223
14340
|
declare module INSPECTOR.SharedUIComponents {
|
|
14224
14341
|
/**
|
|
@@ -14237,6 +14354,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14237
14354
|
}
|
|
14238
14355
|
declare module INSPECTOR {
|
|
14239
14356
|
|
|
14357
|
+
|
|
14240
14358
|
}
|
|
14241
14359
|
declare module INSPECTOR.SharedUIComponents {
|
|
14242
14360
|
/**
|
|
@@ -14265,6 +14383,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14265
14383
|
}
|
|
14266
14384
|
declare module INSPECTOR {
|
|
14267
14385
|
|
|
14386
|
+
|
|
14268
14387
|
}
|
|
14269
14388
|
declare module INSPECTOR.SharedUIComponents {
|
|
14270
14389
|
/**
|
|
@@ -14292,6 +14411,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14292
14411
|
}
|
|
14293
14412
|
declare module INSPECTOR {
|
|
14294
14413
|
|
|
14414
|
+
|
|
14295
14415
|
}
|
|
14296
14416
|
declare module INSPECTOR.SharedUIComponents {
|
|
14297
14417
|
/**
|
|
@@ -14316,6 +14436,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14316
14436
|
}
|
|
14317
14437
|
declare module INSPECTOR {
|
|
14318
14438
|
|
|
14439
|
+
|
|
14319
14440
|
}
|
|
14320
14441
|
declare module INSPECTOR.SharedUIComponents {
|
|
14321
14442
|
/**
|
|
@@ -14347,6 +14468,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14347
14468
|
}
|
|
14348
14469
|
declare module INSPECTOR {
|
|
14349
14470
|
|
|
14471
|
+
|
|
14350
14472
|
}
|
|
14351
14473
|
declare module INSPECTOR.SharedUIComponents {
|
|
14352
14474
|
export interface IHexColorProps {
|
|
@@ -14373,6 +14495,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14373
14495
|
}
|
|
14374
14496
|
declare module INSPECTOR {
|
|
14375
14497
|
|
|
14498
|
+
|
|
14376
14499
|
}
|
|
14377
14500
|
declare module INSPECTOR.SharedUIComponents {
|
|
14378
14501
|
/**
|
|
@@ -14421,6 +14544,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14421
14544
|
}
|
|
14422
14545
|
declare module INSPECTOR {
|
|
14423
14546
|
|
|
14547
|
+
|
|
14424
14548
|
}
|
|
14425
14549
|
declare module INSPECTOR.SharedUIComponents {
|
|
14426
14550
|
export interface IColorComponentEntryProps {
|
|
@@ -14445,6 +14569,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14445
14569
|
}
|
|
14446
14570
|
declare module INSPECTOR {
|
|
14447
14571
|
|
|
14572
|
+
|
|
14448
14573
|
}
|
|
14449
14574
|
declare module INSPECTOR.SharedUIComponents {
|
|
14450
14575
|
interface ICommandDropdownComponentProps {
|
|
@@ -14477,6 +14602,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14477
14602
|
}
|
|
14478
14603
|
declare module INSPECTOR {
|
|
14479
14604
|
|
|
14605
|
+
|
|
14480
14606
|
}
|
|
14481
14607
|
declare module INSPECTOR.SharedUIComponents {
|
|
14482
14608
|
export interface ICommandButtonComponentProps {
|
|
@@ -14495,6 +14621,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14495
14621
|
}
|
|
14496
14622
|
declare module INSPECTOR {
|
|
14497
14623
|
|
|
14624
|
+
|
|
14498
14625
|
}
|
|
14499
14626
|
declare module INSPECTOR.SharedUIComponents {
|
|
14500
14627
|
export interface ICommandBarComponentProps {
|
|
@@ -14518,6 +14645,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14518
14645
|
}
|
|
14519
14646
|
declare module INSPECTOR {
|
|
14520
14647
|
|
|
14648
|
+
|
|
14521
14649
|
}
|
|
14522
14650
|
declare module INSPECTOR.SharedUIComponents {
|
|
14523
14651
|
export interface IHexColorProps {
|
|
@@ -14544,6 +14672,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14544
14672
|
}
|
|
14545
14673
|
declare module INSPECTOR {
|
|
14546
14674
|
|
|
14675
|
+
|
|
14547
14676
|
}
|
|
14548
14677
|
declare module INSPECTOR.SharedUIComponents {
|
|
14549
14678
|
/**
|
|
@@ -14591,6 +14720,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14591
14720
|
}
|
|
14592
14721
|
declare module INSPECTOR {
|
|
14593
14722
|
|
|
14723
|
+
|
|
14594
14724
|
}
|
|
14595
14725
|
declare module INSPECTOR.SharedUIComponents {
|
|
14596
14726
|
export interface IColorComponentEntryProps {
|
|
@@ -14615,6 +14745,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14615
14745
|
}
|
|
14616
14746
|
declare module INSPECTOR {
|
|
14617
14747
|
|
|
14748
|
+
|
|
14618
14749
|
}
|
|
14619
14750
|
|
|
14620
14751
|
|