babylonjs-inspector 7.20.0 → 7.21.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.
|
@@ -85,6 +85,12 @@ export class Inspector {
|
|
|
85
85
|
static MarkLineContainerTitleForHighlighting(title: string): void;
|
|
86
86
|
static MarkMultipleLineContainerTitlesForHighlighting(titles: string[]): void;
|
|
87
87
|
private static _CopyStyles;
|
|
88
|
+
private static _SceneExplorerOptions;
|
|
89
|
+
private static _InspectorOptions;
|
|
90
|
+
private static _EmbedOptions;
|
|
91
|
+
static PopupEmbed(): void;
|
|
92
|
+
static PopupSceneExplorer(): void;
|
|
93
|
+
static PopupInspector(): void;
|
|
88
94
|
private static _CreateSceneExplorer;
|
|
89
95
|
private static _CreateActionTabs;
|
|
90
96
|
private static _CreateEmbedHost;
|
|
@@ -222,11 +228,13 @@ export class GlobalState {
|
|
|
222
228
|
validationResults: Nullable<IGLTFValidationResults>;
|
|
223
229
|
onValidationResultsUpdatedObservable: Observable<Nullable<IGLTFValidationResults>>;
|
|
224
230
|
onExtensionLoadedObservable: Observable<IGLTFLoaderExtension>;
|
|
231
|
+
glTFLoaderOverrideExtensionsConfig: boolean;
|
|
225
232
|
glTFLoaderExtensionDefaults: {
|
|
226
233
|
[name: string]: {
|
|
227
234
|
[key: string]: any;
|
|
228
235
|
};
|
|
229
236
|
};
|
|
237
|
+
glTFLoaderOverrideConfig: boolean;
|
|
230
238
|
glTFLoaderDefaults: {
|
|
231
239
|
[key: string]: any;
|
|
232
240
|
};
|
|
@@ -1485,8 +1493,13 @@ interface IGLTFComponentProps {
|
|
|
1485
1493
|
globalState: GlobalState;
|
|
1486
1494
|
lockObject: LockObject;
|
|
1487
1495
|
}
|
|
1488
|
-
|
|
1496
|
+
interface IGLTFComponentState {
|
|
1497
|
+
showGLTFLoaderOptions: boolean;
|
|
1498
|
+
showGLTFExtensionOptions: boolean;
|
|
1499
|
+
}
|
|
1500
|
+
export class GLTFComponent extends React.Component<IGLTFComponentProps, IGLTFComponentState> {
|
|
1489
1501
|
private _onValidationResultsUpdatedObserver;
|
|
1502
|
+
constructor(props: IGLTFComponentProps);
|
|
1490
1503
|
openValidationDetails(): void;
|
|
1491
1504
|
prepareText(singularForm: string, count: number): string;
|
|
1492
1505
|
componentDidMount(): void;
|
|
@@ -7777,6 +7790,12 @@ declare module INSPECTOR {
|
|
|
7777
7790
|
static MarkLineContainerTitleForHighlighting(title: string): void;
|
|
7778
7791
|
static MarkMultipleLineContainerTitlesForHighlighting(titles: string[]): void;
|
|
7779
7792
|
private static _CopyStyles;
|
|
7793
|
+
private static _SceneExplorerOptions;
|
|
7794
|
+
private static _InspectorOptions;
|
|
7795
|
+
private static _EmbedOptions;
|
|
7796
|
+
static PopupEmbed(): void;
|
|
7797
|
+
static PopupSceneExplorer(): void;
|
|
7798
|
+
static PopupInspector(): void;
|
|
7780
7799
|
private static _CreateSceneExplorer;
|
|
7781
7800
|
private static _CreateActionTabs;
|
|
7782
7801
|
private static _CreateEmbedHost;
|
|
@@ -7885,11 +7904,13 @@ declare module INSPECTOR {
|
|
|
7885
7904
|
validationResults: BABYLON.Nullable<BABYLON.GLTF2.IGLTFValidationResults>;
|
|
7886
7905
|
onValidationResultsUpdatedObservable: BABYLON.Observable<BABYLON.Nullable<BABYLON.GLTF2.IGLTFValidationResults>>;
|
|
7887
7906
|
onExtensionLoadedObservable: BABYLON.Observable<BABYLON.IGLTFLoaderExtension>;
|
|
7907
|
+
glTFLoaderOverrideExtensionsConfig: boolean;
|
|
7888
7908
|
glTFLoaderExtensionDefaults: {
|
|
7889
7909
|
[name: string]: {
|
|
7890
7910
|
[key: string]: any;
|
|
7891
7911
|
};
|
|
7892
7912
|
};
|
|
7913
|
+
glTFLoaderOverrideConfig: boolean;
|
|
7893
7914
|
glTFLoaderDefaults: {
|
|
7894
7915
|
[key: string]: any;
|
|
7895
7916
|
};
|
|
@@ -8923,8 +8944,13 @@ declare module INSPECTOR {
|
|
|
8923
8944
|
globalState: GlobalState;
|
|
8924
8945
|
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
8925
8946
|
}
|
|
8926
|
-
|
|
8947
|
+
interface IGLTFComponentState {
|
|
8948
|
+
showGLTFLoaderOptions: boolean;
|
|
8949
|
+
showGLTFExtensionOptions: boolean;
|
|
8950
|
+
}
|
|
8951
|
+
export class GLTFComponent extends React.Component<IGLTFComponentProps, IGLTFComponentState> {
|
|
8927
8952
|
private _onValidationResultsUpdatedObserver;
|
|
8953
|
+
constructor(props: IGLTFComponentProps);
|
|
8928
8954
|
openValidationDetails(): void;
|
|
8929
8955
|
prepareText(singularForm: string, count: number): string;
|
|
8930
8956
|
componentDidMount(): void;
|
|
@@ -11319,6 +11345,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11319
11345
|
}
|
|
11320
11346
|
declare module INSPECTOR {
|
|
11321
11347
|
|
|
11348
|
+
|
|
11322
11349
|
}
|
|
11323
11350
|
declare module INSPECTOR.SharedUIComponents {
|
|
11324
11351
|
export class PropertyChangedEvent {
|
|
@@ -11334,6 +11361,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11334
11361
|
}
|
|
11335
11362
|
declare module INSPECTOR {
|
|
11336
11363
|
|
|
11364
|
+
|
|
11337
11365
|
}
|
|
11338
11366
|
declare module INSPECTOR.SharedUIComponents {
|
|
11339
11367
|
export function copyCommandToClipboard(strCommand: string): void;
|
|
@@ -11347,6 +11375,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11347
11375
|
}
|
|
11348
11376
|
declare module INSPECTOR {
|
|
11349
11377
|
|
|
11378
|
+
|
|
11350
11379
|
}
|
|
11351
11380
|
declare module INSPECTOR.SharedUIComponents {
|
|
11352
11381
|
/**
|
|
@@ -11364,6 +11393,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11364
11393
|
}
|
|
11365
11394
|
declare module INSPECTOR {
|
|
11366
11395
|
|
|
11396
|
+
|
|
11367
11397
|
}
|
|
11368
11398
|
declare module INSPECTOR.SharedUIComponents {
|
|
11369
11399
|
interface ITextBlockPropertyGridComponentProps {
|
|
@@ -11381,6 +11411,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11381
11411
|
}
|
|
11382
11412
|
declare module INSPECTOR {
|
|
11383
11413
|
|
|
11414
|
+
|
|
11384
11415
|
}
|
|
11385
11416
|
declare module INSPECTOR.SharedUIComponents {
|
|
11386
11417
|
interface IStackPanelPropertyGridComponentProps {
|
|
@@ -11398,6 +11429,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11398
11429
|
}
|
|
11399
11430
|
declare module INSPECTOR {
|
|
11400
11431
|
|
|
11432
|
+
|
|
11401
11433
|
}
|
|
11402
11434
|
declare module INSPECTOR.SharedUIComponents {
|
|
11403
11435
|
interface ISliderPropertyGridComponentProps {
|
|
@@ -11415,6 +11447,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11415
11447
|
}
|
|
11416
11448
|
declare module INSPECTOR {
|
|
11417
11449
|
|
|
11450
|
+
|
|
11418
11451
|
}
|
|
11419
11452
|
declare module INSPECTOR.SharedUIComponents {
|
|
11420
11453
|
interface IScrollViewerPropertyGridComponentProps {
|
|
@@ -11432,6 +11465,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11432
11465
|
}
|
|
11433
11466
|
declare module INSPECTOR {
|
|
11434
11467
|
|
|
11468
|
+
|
|
11435
11469
|
}
|
|
11436
11470
|
declare module INSPECTOR.SharedUIComponents {
|
|
11437
11471
|
interface IRectanglePropertyGridComponentProps {
|
|
@@ -11449,6 +11483,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11449
11483
|
}
|
|
11450
11484
|
declare module INSPECTOR {
|
|
11451
11485
|
|
|
11486
|
+
|
|
11452
11487
|
}
|
|
11453
11488
|
declare module INSPECTOR.SharedUIComponents {
|
|
11454
11489
|
interface IRadioButtonPropertyGridComponentProps {
|
|
@@ -11466,6 +11501,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11466
11501
|
}
|
|
11467
11502
|
declare module INSPECTOR {
|
|
11468
11503
|
|
|
11504
|
+
|
|
11469
11505
|
}
|
|
11470
11506
|
declare module INSPECTOR.SharedUIComponents {
|
|
11471
11507
|
interface ILinePropertyGridComponentProps {
|
|
@@ -11484,6 +11520,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11484
11520
|
}
|
|
11485
11521
|
declare module INSPECTOR {
|
|
11486
11522
|
|
|
11523
|
+
|
|
11487
11524
|
}
|
|
11488
11525
|
declare module INSPECTOR.SharedUIComponents {
|
|
11489
11526
|
interface IInputTextPropertyGridComponentProps {
|
|
@@ -11501,6 +11538,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11501
11538
|
}
|
|
11502
11539
|
declare module INSPECTOR {
|
|
11503
11540
|
|
|
11541
|
+
|
|
11504
11542
|
}
|
|
11505
11543
|
declare module INSPECTOR.SharedUIComponents {
|
|
11506
11544
|
interface IImagePropertyGridComponentProps {
|
|
@@ -11518,6 +11556,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11518
11556
|
}
|
|
11519
11557
|
declare module INSPECTOR {
|
|
11520
11558
|
|
|
11559
|
+
|
|
11521
11560
|
}
|
|
11522
11561
|
declare module INSPECTOR.SharedUIComponents {
|
|
11523
11562
|
interface IImageBasedSliderPropertyGridComponentProps {
|
|
@@ -11535,6 +11574,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11535
11574
|
}
|
|
11536
11575
|
declare module INSPECTOR {
|
|
11537
11576
|
|
|
11577
|
+
|
|
11538
11578
|
}
|
|
11539
11579
|
declare module INSPECTOR.SharedUIComponents {
|
|
11540
11580
|
interface IGridPropertyGridComponentProps {
|
|
@@ -11554,6 +11594,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11554
11594
|
}
|
|
11555
11595
|
declare module INSPECTOR {
|
|
11556
11596
|
|
|
11597
|
+
|
|
11557
11598
|
}
|
|
11558
11599
|
declare module INSPECTOR.SharedUIComponents {
|
|
11559
11600
|
interface IEllipsePropertyGridComponentProps {
|
|
@@ -11571,6 +11612,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11571
11612
|
}
|
|
11572
11613
|
declare module INSPECTOR {
|
|
11573
11614
|
|
|
11615
|
+
|
|
11574
11616
|
}
|
|
11575
11617
|
declare module INSPECTOR.SharedUIComponents {
|
|
11576
11618
|
interface IControlPropertyGridComponentProps {
|
|
@@ -11588,6 +11630,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11588
11630
|
}
|
|
11589
11631
|
declare module INSPECTOR {
|
|
11590
11632
|
|
|
11633
|
+
|
|
11591
11634
|
}
|
|
11592
11635
|
declare module INSPECTOR.SharedUIComponents {
|
|
11593
11636
|
interface ICommonControlPropertyGridComponentProps {
|
|
@@ -11607,6 +11650,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11607
11650
|
}
|
|
11608
11651
|
declare module INSPECTOR {
|
|
11609
11652
|
|
|
11653
|
+
|
|
11610
11654
|
}
|
|
11611
11655
|
declare module INSPECTOR.SharedUIComponents {
|
|
11612
11656
|
interface IColorPickerPropertyGridComponentProps {
|
|
@@ -11624,6 +11668,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11624
11668
|
}
|
|
11625
11669
|
declare module INSPECTOR {
|
|
11626
11670
|
|
|
11671
|
+
|
|
11627
11672
|
}
|
|
11628
11673
|
declare module INSPECTOR.SharedUIComponents {
|
|
11629
11674
|
interface ICheckboxPropertyGridComponentProps {
|
|
@@ -11641,6 +11686,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11641
11686
|
}
|
|
11642
11687
|
declare module INSPECTOR {
|
|
11643
11688
|
|
|
11689
|
+
|
|
11644
11690
|
}
|
|
11645
11691
|
declare module INSPECTOR.SharedUIComponents {
|
|
11646
11692
|
export class TypeLedger {
|
|
@@ -11653,6 +11699,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11653
11699
|
}
|
|
11654
11700
|
declare module INSPECTOR {
|
|
11655
11701
|
|
|
11702
|
+
|
|
11656
11703
|
}
|
|
11657
11704
|
declare module INSPECTOR.SharedUIComponents {
|
|
11658
11705
|
export const IsFramePortData: (variableToCheck: any) => variableToCheck is INSPECTOR.SharedUIComponents.FramePortData;
|
|
@@ -11663,6 +11710,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11663
11710
|
}
|
|
11664
11711
|
declare module INSPECTOR {
|
|
11665
11712
|
|
|
11713
|
+
|
|
11666
11714
|
}
|
|
11667
11715
|
declare module INSPECTOR.SharedUIComponents {
|
|
11668
11716
|
export class StateManager {
|
|
@@ -11716,6 +11764,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11716
11764
|
}
|
|
11717
11765
|
declare module INSPECTOR {
|
|
11718
11766
|
|
|
11767
|
+
|
|
11719
11768
|
}
|
|
11720
11769
|
declare module INSPECTOR.SharedUIComponents {
|
|
11721
11770
|
export interface ISearchBoxComponentProps {
|
|
@@ -11746,6 +11795,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11746
11795
|
}
|
|
11747
11796
|
declare module INSPECTOR {
|
|
11748
11797
|
|
|
11798
|
+
|
|
11749
11799
|
}
|
|
11750
11800
|
declare module INSPECTOR.SharedUIComponents {
|
|
11751
11801
|
export class PropertyLedger {
|
|
@@ -11760,6 +11810,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11760
11810
|
}
|
|
11761
11811
|
declare module INSPECTOR {
|
|
11762
11812
|
|
|
11813
|
+
|
|
11763
11814
|
}
|
|
11764
11815
|
declare module INSPECTOR.SharedUIComponents {
|
|
11765
11816
|
export class NodePort {
|
|
@@ -11795,6 +11846,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11795
11846
|
}
|
|
11796
11847
|
declare module INSPECTOR {
|
|
11797
11848
|
|
|
11849
|
+
|
|
11798
11850
|
}
|
|
11799
11851
|
declare module INSPECTOR.SharedUIComponents {
|
|
11800
11852
|
export class NodeLink {
|
|
@@ -11829,6 +11881,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11829
11881
|
}
|
|
11830
11882
|
declare module INSPECTOR {
|
|
11831
11883
|
|
|
11884
|
+
|
|
11832
11885
|
}
|
|
11833
11886
|
declare module INSPECTOR.SharedUIComponents {
|
|
11834
11887
|
export class NodeLedger {
|
|
@@ -11841,6 +11894,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11841
11894
|
}
|
|
11842
11895
|
declare module INSPECTOR {
|
|
11843
11896
|
|
|
11897
|
+
|
|
11844
11898
|
}
|
|
11845
11899
|
declare module INSPECTOR.SharedUIComponents {
|
|
11846
11900
|
/// <reference types="react" />
|
|
@@ -11924,6 +11978,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11924
11978
|
}
|
|
11925
11979
|
declare module INSPECTOR {
|
|
11926
11980
|
|
|
11981
|
+
|
|
11927
11982
|
}
|
|
11928
11983
|
declare module INSPECTOR.SharedUIComponents {
|
|
11929
11984
|
export enum FramePortPosition {
|
|
@@ -12078,6 +12133,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12078
12133
|
}
|
|
12079
12134
|
declare module INSPECTOR {
|
|
12080
12135
|
|
|
12136
|
+
|
|
12081
12137
|
}
|
|
12082
12138
|
declare module INSPECTOR.SharedUIComponents {
|
|
12083
12139
|
export interface IGraphCanvasComponentProps {
|
|
@@ -12195,6 +12251,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12195
12251
|
}
|
|
12196
12252
|
declare module INSPECTOR {
|
|
12197
12253
|
|
|
12254
|
+
|
|
12198
12255
|
}
|
|
12199
12256
|
declare module INSPECTOR.SharedUIComponents {
|
|
12200
12257
|
export class FrameNodePort extends INSPECTOR.SharedUIComponents.NodePort {
|
|
@@ -12220,6 +12277,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12220
12277
|
}
|
|
12221
12278
|
declare module INSPECTOR {
|
|
12222
12279
|
|
|
12280
|
+
|
|
12223
12281
|
}
|
|
12224
12282
|
declare module INSPECTOR.SharedUIComponents {
|
|
12225
12283
|
export class DisplayLedger {
|
|
@@ -12233,6 +12291,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12233
12291
|
}
|
|
12234
12292
|
declare module INSPECTOR {
|
|
12235
12293
|
|
|
12294
|
+
|
|
12236
12295
|
}
|
|
12237
12296
|
declare module INSPECTOR.SharedUIComponents {
|
|
12238
12297
|
export type FramePortData = {
|
|
@@ -12245,6 +12304,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12245
12304
|
}
|
|
12246
12305
|
declare module INSPECTOR {
|
|
12247
12306
|
|
|
12307
|
+
|
|
12248
12308
|
}
|
|
12249
12309
|
declare module INSPECTOR.SharedUIComponents {
|
|
12250
12310
|
export interface ISelectionChangedOptions {
|
|
@@ -12258,6 +12318,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12258
12318
|
}
|
|
12259
12319
|
declare module INSPECTOR {
|
|
12260
12320
|
|
|
12321
|
+
|
|
12261
12322
|
}
|
|
12262
12323
|
declare module INSPECTOR.SharedUIComponents {
|
|
12263
12324
|
export interface IPropertyComponentProps {
|
|
@@ -12270,6 +12331,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12270
12331
|
}
|
|
12271
12332
|
declare module INSPECTOR {
|
|
12272
12333
|
|
|
12334
|
+
|
|
12273
12335
|
}
|
|
12274
12336
|
declare module INSPECTOR.SharedUIComponents {
|
|
12275
12337
|
export enum PortDataDirection {
|
|
@@ -12304,6 +12366,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12304
12366
|
}
|
|
12305
12367
|
declare module INSPECTOR {
|
|
12306
12368
|
|
|
12369
|
+
|
|
12307
12370
|
}
|
|
12308
12371
|
declare module INSPECTOR.SharedUIComponents {
|
|
12309
12372
|
export interface INodeLocationInfo {
|
|
@@ -12338,6 +12401,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12338
12401
|
}
|
|
12339
12402
|
declare module INSPECTOR {
|
|
12340
12403
|
|
|
12404
|
+
|
|
12341
12405
|
}
|
|
12342
12406
|
declare module INSPECTOR.SharedUIComponents {
|
|
12343
12407
|
export interface INodeData {
|
|
@@ -12363,6 +12427,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12363
12427
|
}
|
|
12364
12428
|
declare module INSPECTOR {
|
|
12365
12429
|
|
|
12430
|
+
|
|
12366
12431
|
}
|
|
12367
12432
|
declare module INSPECTOR.SharedUIComponents {
|
|
12368
12433
|
export interface INodeContainer {
|
|
@@ -12375,6 +12440,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12375
12440
|
}
|
|
12376
12441
|
declare module INSPECTOR {
|
|
12377
12442
|
|
|
12443
|
+
|
|
12378
12444
|
}
|
|
12379
12445
|
declare module INSPECTOR.SharedUIComponents {
|
|
12380
12446
|
export interface VisualContentDescription {
|
|
@@ -12396,6 +12462,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12396
12462
|
}
|
|
12397
12463
|
declare module INSPECTOR {
|
|
12398
12464
|
|
|
12465
|
+
|
|
12399
12466
|
}
|
|
12400
12467
|
declare module INSPECTOR.SharedUIComponents {
|
|
12401
12468
|
interface IVector4LineComponentProps {
|
|
@@ -12440,6 +12507,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12440
12507
|
}
|
|
12441
12508
|
declare module INSPECTOR {
|
|
12442
12509
|
|
|
12510
|
+
|
|
12443
12511
|
}
|
|
12444
12512
|
declare module INSPECTOR.SharedUIComponents {
|
|
12445
12513
|
interface IVector3LineComponentProps {
|
|
@@ -12484,6 +12552,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12484
12552
|
}
|
|
12485
12553
|
declare module INSPECTOR {
|
|
12486
12554
|
|
|
12555
|
+
|
|
12487
12556
|
}
|
|
12488
12557
|
declare module INSPECTOR.SharedUIComponents {
|
|
12489
12558
|
interface IVector2LineComponentProps {
|
|
@@ -12522,6 +12591,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12522
12591
|
}
|
|
12523
12592
|
declare module INSPECTOR {
|
|
12524
12593
|
|
|
12594
|
+
|
|
12525
12595
|
}
|
|
12526
12596
|
declare module INSPECTOR.SharedUIComponents {
|
|
12527
12597
|
interface IValueLineComponentProps {
|
|
@@ -12543,6 +12613,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12543
12613
|
}
|
|
12544
12614
|
declare module INSPECTOR {
|
|
12545
12615
|
|
|
12616
|
+
|
|
12546
12617
|
}
|
|
12547
12618
|
declare module INSPECTOR.SharedUIComponents {
|
|
12548
12619
|
interface IUnitButtonProps {
|
|
@@ -12557,6 +12628,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12557
12628
|
}
|
|
12558
12629
|
declare module INSPECTOR {
|
|
12559
12630
|
|
|
12631
|
+
|
|
12560
12632
|
}
|
|
12561
12633
|
declare module INSPECTOR.SharedUIComponents {
|
|
12562
12634
|
interface ITextLineComponentProps {
|
|
@@ -12584,6 +12656,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12584
12656
|
}
|
|
12585
12657
|
declare module INSPECTOR {
|
|
12586
12658
|
|
|
12659
|
+
|
|
12587
12660
|
}
|
|
12588
12661
|
declare module INSPECTOR.SharedUIComponents {
|
|
12589
12662
|
export interface ITextInputLineComponentProps {
|
|
@@ -12638,6 +12711,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12638
12711
|
}
|
|
12639
12712
|
declare module INSPECTOR {
|
|
12640
12713
|
|
|
12714
|
+
|
|
12641
12715
|
}
|
|
12642
12716
|
declare module INSPECTOR.SharedUIComponents {
|
|
12643
12717
|
export const conflictingValuesPlaceholder = "\u2014";
|
|
@@ -12655,6 +12729,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12655
12729
|
}
|
|
12656
12730
|
declare module INSPECTOR {
|
|
12657
12731
|
|
|
12732
|
+
|
|
12658
12733
|
}
|
|
12659
12734
|
declare module INSPECTOR.SharedUIComponents {
|
|
12660
12735
|
interface ISliderLineComponentProps {
|
|
@@ -12696,6 +12771,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12696
12771
|
}
|
|
12697
12772
|
declare module INSPECTOR {
|
|
12698
12773
|
|
|
12774
|
+
|
|
12699
12775
|
}
|
|
12700
12776
|
declare module INSPECTOR.SharedUIComponents {
|
|
12701
12777
|
interface IRadioButtonLineComponentProps {
|
|
@@ -12722,6 +12798,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12722
12798
|
}
|
|
12723
12799
|
declare module INSPECTOR {
|
|
12724
12800
|
|
|
12801
|
+
|
|
12725
12802
|
}
|
|
12726
12803
|
declare module INSPECTOR.SharedUIComponents {
|
|
12727
12804
|
export class Popup {
|
|
@@ -12734,6 +12811,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12734
12811
|
}
|
|
12735
12812
|
declare module INSPECTOR {
|
|
12736
12813
|
|
|
12814
|
+
|
|
12737
12815
|
}
|
|
12738
12816
|
declare module INSPECTOR.SharedUIComponents {
|
|
12739
12817
|
export var Null_Value: number;
|
|
@@ -12776,6 +12854,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12776
12854
|
}
|
|
12777
12855
|
declare module INSPECTOR {
|
|
12778
12856
|
|
|
12857
|
+
|
|
12779
12858
|
}
|
|
12780
12859
|
declare module INSPECTOR.SharedUIComponents {
|
|
12781
12860
|
interface INumericInputProps {
|
|
@@ -12812,6 +12891,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12812
12891
|
}
|
|
12813
12892
|
declare module INSPECTOR {
|
|
12814
12893
|
|
|
12894
|
+
|
|
12815
12895
|
}
|
|
12816
12896
|
declare module INSPECTOR.SharedUIComponents {
|
|
12817
12897
|
interface IMessageLineComponentProps {
|
|
@@ -12829,6 +12909,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12829
12909
|
}
|
|
12830
12910
|
declare module INSPECTOR {
|
|
12831
12911
|
|
|
12912
|
+
|
|
12832
12913
|
}
|
|
12833
12914
|
declare module INSPECTOR.SharedUIComponents {
|
|
12834
12915
|
interface IMatrixLineComponentProps {
|
|
@@ -12866,6 +12947,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12866
12947
|
}
|
|
12867
12948
|
declare module INSPECTOR {
|
|
12868
12949
|
|
|
12950
|
+
|
|
12869
12951
|
}
|
|
12870
12952
|
declare module INSPECTOR.SharedUIComponents {
|
|
12871
12953
|
interface ILinkButtonComponentProps {
|
|
@@ -12887,6 +12969,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12887
12969
|
}
|
|
12888
12970
|
declare module INSPECTOR {
|
|
12889
12971
|
|
|
12972
|
+
|
|
12890
12973
|
}
|
|
12891
12974
|
declare module INSPECTOR.SharedUIComponents {
|
|
12892
12975
|
interface ILineContainerComponentProps {
|
|
@@ -12911,6 +12994,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12911
12994
|
}
|
|
12912
12995
|
declare module INSPECTOR {
|
|
12913
12996
|
|
|
12997
|
+
|
|
12914
12998
|
}
|
|
12915
12999
|
declare module INSPECTOR.SharedUIComponents {
|
|
12916
13000
|
interface IInputArrowsComponentProps {
|
|
@@ -12930,6 +13014,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12930
13014
|
}
|
|
12931
13015
|
declare module INSPECTOR {
|
|
12932
13016
|
|
|
13017
|
+
|
|
12933
13018
|
}
|
|
12934
13019
|
declare module INSPECTOR.SharedUIComponents {
|
|
12935
13020
|
interface IIndentedTextLineComponentProps {
|
|
@@ -12952,6 +13037,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12952
13037
|
}
|
|
12953
13038
|
declare module INSPECTOR {
|
|
12954
13039
|
|
|
13040
|
+
|
|
12955
13041
|
}
|
|
12956
13042
|
declare module INSPECTOR.SharedUIComponents {
|
|
12957
13043
|
interface IIconComponentProps {
|
|
@@ -12967,6 +13053,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12967
13053
|
}
|
|
12968
13054
|
declare module INSPECTOR {
|
|
12969
13055
|
|
|
13056
|
+
|
|
12970
13057
|
}
|
|
12971
13058
|
declare module INSPECTOR.SharedUIComponents {
|
|
12972
13059
|
export interface IIconButtonLineComponentProps {
|
|
@@ -12985,6 +13072,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12985
13072
|
}
|
|
12986
13073
|
declare module INSPECTOR {
|
|
12987
13074
|
|
|
13075
|
+
|
|
12988
13076
|
}
|
|
12989
13077
|
declare module INSPECTOR.SharedUIComponents {
|
|
12990
13078
|
export interface ISelectedLineContainer {
|
|
@@ -12997,6 +13085,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12997
13085
|
}
|
|
12998
13086
|
declare module INSPECTOR {
|
|
12999
13087
|
|
|
13088
|
+
|
|
13000
13089
|
}
|
|
13001
13090
|
declare module INSPECTOR.SharedUIComponents {
|
|
13002
13091
|
interface IHexLineComponentProps {
|
|
@@ -13040,6 +13129,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13040
13129
|
}
|
|
13041
13130
|
declare module INSPECTOR {
|
|
13042
13131
|
|
|
13132
|
+
|
|
13043
13133
|
}
|
|
13044
13134
|
declare module INSPECTOR.SharedUIComponents {
|
|
13045
13135
|
interface IFloatLineComponentProps {
|
|
@@ -13095,6 +13185,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13095
13185
|
}
|
|
13096
13186
|
declare module INSPECTOR {
|
|
13097
13187
|
|
|
13188
|
+
|
|
13098
13189
|
}
|
|
13099
13190
|
declare module INSPECTOR.SharedUIComponents {
|
|
13100
13191
|
interface IFileMultipleButtonLineComponentProps {
|
|
@@ -13118,6 +13209,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13118
13209
|
}
|
|
13119
13210
|
declare module INSPECTOR {
|
|
13120
13211
|
|
|
13212
|
+
|
|
13121
13213
|
}
|
|
13122
13214
|
declare module INSPECTOR.SharedUIComponents {
|
|
13123
13215
|
interface IFileButtonLineProps {
|
|
@@ -13141,6 +13233,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13141
13233
|
}
|
|
13142
13234
|
declare module INSPECTOR {
|
|
13143
13235
|
|
|
13236
|
+
|
|
13144
13237
|
}
|
|
13145
13238
|
declare module INSPECTOR.SharedUIComponents {
|
|
13146
13239
|
export interface IButtonLineComponentProps {
|
|
@@ -13157,6 +13250,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13157
13250
|
}
|
|
13158
13251
|
declare module INSPECTOR {
|
|
13159
13252
|
|
|
13253
|
+
|
|
13160
13254
|
}
|
|
13161
13255
|
declare module INSPECTOR.SharedUIComponents {
|
|
13162
13256
|
export interface IColorPickerLineProps {
|
|
@@ -13192,6 +13286,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13192
13286
|
}
|
|
13193
13287
|
declare module INSPECTOR {
|
|
13194
13288
|
|
|
13289
|
+
|
|
13195
13290
|
}
|
|
13196
13291
|
declare module INSPECTOR.SharedUIComponents {
|
|
13197
13292
|
export interface IColorLineProps {
|
|
@@ -13234,6 +13329,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13234
13329
|
}
|
|
13235
13330
|
declare module INSPECTOR {
|
|
13236
13331
|
|
|
13332
|
+
|
|
13237
13333
|
}
|
|
13238
13334
|
declare module INSPECTOR.SharedUIComponents {
|
|
13239
13335
|
export interface IColor4LineComponentProps {
|
|
@@ -13256,6 +13352,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13256
13352
|
}
|
|
13257
13353
|
declare module INSPECTOR {
|
|
13258
13354
|
|
|
13355
|
+
|
|
13259
13356
|
}
|
|
13260
13357
|
declare module INSPECTOR.SharedUIComponents {
|
|
13261
13358
|
export interface IColor3LineComponentProps {
|
|
@@ -13278,6 +13375,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13278
13375
|
}
|
|
13279
13376
|
declare module INSPECTOR {
|
|
13280
13377
|
|
|
13378
|
+
|
|
13281
13379
|
}
|
|
13282
13380
|
declare module INSPECTOR.SharedUIComponents {
|
|
13283
13381
|
export interface ICheckBoxLineComponentProps {
|
|
@@ -13319,6 +13417,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13319
13417
|
}
|
|
13320
13418
|
declare module INSPECTOR {
|
|
13321
13419
|
|
|
13420
|
+
|
|
13322
13421
|
}
|
|
13323
13422
|
declare module INSPECTOR.SharedUIComponents {
|
|
13324
13423
|
export interface IButtonLineComponentProps {
|
|
@@ -13338,6 +13437,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13338
13437
|
}
|
|
13339
13438
|
declare module INSPECTOR {
|
|
13340
13439
|
|
|
13440
|
+
|
|
13341
13441
|
}
|
|
13342
13442
|
declare module INSPECTOR.SharedUIComponents {
|
|
13343
13443
|
export interface IBooleanLineComponentProps {
|
|
@@ -13356,6 +13456,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13356
13456
|
}
|
|
13357
13457
|
declare module INSPECTOR {
|
|
13358
13458
|
|
|
13459
|
+
|
|
13359
13460
|
}
|
|
13360
13461
|
declare module INSPECTOR.SharedUIComponents {
|
|
13361
13462
|
export function ClassNames(names: any, styleObject: any): string;
|
|
@@ -13366,6 +13467,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13366
13467
|
}
|
|
13367
13468
|
declare module INSPECTOR {
|
|
13368
13469
|
|
|
13470
|
+
|
|
13369
13471
|
}
|
|
13370
13472
|
declare module INSPECTOR.SharedUIComponents {
|
|
13371
13473
|
/// <reference types="react" />
|
|
@@ -13382,6 +13484,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13382
13484
|
}
|
|
13383
13485
|
declare module INSPECTOR {
|
|
13384
13486
|
|
|
13487
|
+
|
|
13385
13488
|
}
|
|
13386
13489
|
declare module INSPECTOR.SharedUIComponents {
|
|
13387
13490
|
export interface ITextInputProps {
|
|
@@ -13403,6 +13506,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13403
13506
|
}
|
|
13404
13507
|
declare module INSPECTOR {
|
|
13405
13508
|
|
|
13509
|
+
|
|
13406
13510
|
}
|
|
13407
13511
|
declare module INSPECTOR.SharedUIComponents {
|
|
13408
13512
|
export interface MessageDialogProps {
|
|
@@ -13417,6 +13521,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13417
13521
|
}
|
|
13418
13522
|
declare module INSPECTOR {
|
|
13419
13523
|
|
|
13524
|
+
|
|
13420
13525
|
}
|
|
13421
13526
|
declare module INSPECTOR.SharedUIComponents {
|
|
13422
13527
|
export type LabelProps = {
|
|
@@ -13431,6 +13536,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13431
13536
|
}
|
|
13432
13537
|
declare module INSPECTOR {
|
|
13433
13538
|
|
|
13539
|
+
|
|
13434
13540
|
}
|
|
13435
13541
|
declare module INSPECTOR.SharedUIComponents {
|
|
13436
13542
|
/// <reference types="react" />
|
|
@@ -13445,6 +13551,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13445
13551
|
}
|
|
13446
13552
|
declare module INSPECTOR {
|
|
13447
13553
|
|
|
13554
|
+
|
|
13448
13555
|
}
|
|
13449
13556
|
declare module INSPECTOR.SharedUIComponents {
|
|
13450
13557
|
/// <reference types="react" />
|
|
@@ -13464,6 +13571,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13464
13571
|
}
|
|
13465
13572
|
declare module INSPECTOR {
|
|
13466
13573
|
|
|
13574
|
+
|
|
13467
13575
|
}
|
|
13468
13576
|
declare module INSPECTOR.SharedUIComponents {
|
|
13469
13577
|
/**
|
|
@@ -13477,6 +13585,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13477
13585
|
}
|
|
13478
13586
|
declare module INSPECTOR {
|
|
13479
13587
|
|
|
13588
|
+
|
|
13480
13589
|
}
|
|
13481
13590
|
declare module INSPECTOR.SharedUIComponents {
|
|
13482
13591
|
export type IVisualRecordsType = Record<string, {
|
|
@@ -13552,6 +13661,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13552
13661
|
}
|
|
13553
13662
|
declare module INSPECTOR {
|
|
13554
13663
|
|
|
13664
|
+
|
|
13555
13665
|
}
|
|
13556
13666
|
declare module INSPECTOR.SharedUIComponents {
|
|
13557
13667
|
export interface IGraphContainerProps {
|
|
@@ -13570,6 +13680,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13570
13680
|
}
|
|
13571
13681
|
declare module INSPECTOR {
|
|
13572
13682
|
|
|
13683
|
+
|
|
13573
13684
|
}
|
|
13574
13685
|
declare module INSPECTOR.SharedUIComponents {
|
|
13575
13686
|
export interface IGraphNodeProps {
|
|
@@ -13590,6 +13701,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13590
13701
|
}
|
|
13591
13702
|
declare module INSPECTOR {
|
|
13592
13703
|
|
|
13704
|
+
|
|
13593
13705
|
}
|
|
13594
13706
|
declare module INSPECTOR.SharedUIComponents {
|
|
13595
13707
|
/**
|
|
@@ -13613,6 +13725,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13613
13725
|
}
|
|
13614
13726
|
declare module INSPECTOR {
|
|
13615
13727
|
|
|
13728
|
+
|
|
13616
13729
|
}
|
|
13617
13730
|
declare module INSPECTOR.SharedUIComponents {
|
|
13618
13731
|
/**
|
|
@@ -13662,6 +13775,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13662
13775
|
}
|
|
13663
13776
|
declare module INSPECTOR {
|
|
13664
13777
|
|
|
13778
|
+
|
|
13665
13779
|
}
|
|
13666
13780
|
declare module INSPECTOR.SharedUIComponents {
|
|
13667
13781
|
/// <reference types="react" />
|
|
@@ -13680,6 +13794,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13680
13794
|
}
|
|
13681
13795
|
declare module INSPECTOR {
|
|
13682
13796
|
|
|
13797
|
+
|
|
13683
13798
|
}
|
|
13684
13799
|
declare module INSPECTOR.SharedUIComponents {
|
|
13685
13800
|
export interface IGraphContainerProps {
|
|
@@ -13697,6 +13812,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13697
13812
|
}
|
|
13698
13813
|
declare module INSPECTOR {
|
|
13699
13814
|
|
|
13815
|
+
|
|
13700
13816
|
}
|
|
13701
13817
|
declare module INSPECTOR.SharedUIComponents {
|
|
13702
13818
|
/**
|
|
@@ -13748,6 +13864,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13748
13864
|
}
|
|
13749
13865
|
declare module INSPECTOR {
|
|
13750
13866
|
|
|
13867
|
+
|
|
13751
13868
|
}
|
|
13752
13869
|
declare module INSPECTOR.SharedUIComponents {
|
|
13753
13870
|
/**
|
|
@@ -13775,6 +13892,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13775
13892
|
}
|
|
13776
13893
|
declare module INSPECTOR {
|
|
13777
13894
|
|
|
13895
|
+
|
|
13778
13896
|
}
|
|
13779
13897
|
declare module INSPECTOR.SharedUIComponents {
|
|
13780
13898
|
interface INumericInputComponentProps {
|
|
@@ -13811,6 +13929,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13811
13929
|
}
|
|
13812
13930
|
declare module INSPECTOR {
|
|
13813
13931
|
|
|
13932
|
+
|
|
13814
13933
|
}
|
|
13815
13934
|
declare module INSPECTOR.SharedUIComponents {
|
|
13816
13935
|
export interface IFileButtonLineComponentProps {
|
|
@@ -13834,6 +13953,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13834
13953
|
}
|
|
13835
13954
|
declare module INSPECTOR {
|
|
13836
13955
|
|
|
13956
|
+
|
|
13837
13957
|
}
|
|
13838
13958
|
declare module INSPECTOR.SharedUIComponents {
|
|
13839
13959
|
export interface IColorPickerLineComponentProps {
|
|
@@ -13871,6 +13991,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13871
13991
|
}
|
|
13872
13992
|
declare module INSPECTOR {
|
|
13873
13993
|
|
|
13994
|
+
|
|
13874
13995
|
}
|
|
13875
13996
|
declare module INSPECTOR.SharedUIComponents {
|
|
13876
13997
|
export interface IColorLineComponentProps {
|
|
@@ -13913,6 +14034,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13913
14034
|
}
|
|
13914
14035
|
declare module INSPECTOR {
|
|
13915
14036
|
|
|
14037
|
+
|
|
13916
14038
|
}
|
|
13917
14039
|
declare module INSPECTOR.SharedUIComponents {
|
|
13918
14040
|
/**
|
|
@@ -13949,6 +14071,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
13949
14071
|
}
|
|
13950
14072
|
declare module INSPECTOR {
|
|
13951
14073
|
|
|
14074
|
+
|
|
13952
14075
|
}
|
|
13953
14076
|
declare module INSPECTOR.SharedUIComponents {
|
|
13954
14077
|
export type LayoutTab = {
|
|
@@ -14038,6 +14161,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14038
14161
|
}
|
|
14039
14162
|
declare module INSPECTOR {
|
|
14040
14163
|
|
|
14164
|
+
|
|
14041
14165
|
}
|
|
14042
14166
|
declare module INSPECTOR.SharedUIComponents {
|
|
14043
14167
|
/// <reference types="react" />
|
|
@@ -14057,6 +14181,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14057
14181
|
}
|
|
14058
14182
|
declare module INSPECTOR {
|
|
14059
14183
|
|
|
14184
|
+
|
|
14060
14185
|
}
|
|
14061
14186
|
declare module INSPECTOR.SharedUIComponents {
|
|
14062
14187
|
/**
|
|
@@ -14093,6 +14218,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14093
14218
|
}
|
|
14094
14219
|
declare module INSPECTOR {
|
|
14095
14220
|
|
|
14221
|
+
|
|
14096
14222
|
}
|
|
14097
14223
|
declare module INSPECTOR.SharedUIComponents {
|
|
14098
14224
|
/**
|
|
@@ -14135,6 +14261,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14135
14261
|
}
|
|
14136
14262
|
declare module INSPECTOR {
|
|
14137
14263
|
|
|
14264
|
+
|
|
14138
14265
|
}
|
|
14139
14266
|
declare module INSPECTOR.SharedUIComponents {
|
|
14140
14267
|
/**
|
|
@@ -14183,6 +14310,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14183
14310
|
}
|
|
14184
14311
|
declare module INSPECTOR {
|
|
14185
14312
|
|
|
14313
|
+
|
|
14186
14314
|
}
|
|
14187
14315
|
declare module INSPECTOR.SharedUIComponents {
|
|
14188
14316
|
/**
|
|
@@ -14207,6 +14335,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14207
14335
|
}
|
|
14208
14336
|
declare module INSPECTOR {
|
|
14209
14337
|
|
|
14338
|
+
|
|
14210
14339
|
}
|
|
14211
14340
|
declare module INSPECTOR.SharedUIComponents {
|
|
14212
14341
|
/**
|
|
@@ -14225,6 +14354,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14225
14354
|
}
|
|
14226
14355
|
declare module INSPECTOR {
|
|
14227
14356
|
|
|
14357
|
+
|
|
14228
14358
|
}
|
|
14229
14359
|
declare module INSPECTOR.SharedUIComponents {
|
|
14230
14360
|
/**
|
|
@@ -14253,6 +14383,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14253
14383
|
}
|
|
14254
14384
|
declare module INSPECTOR {
|
|
14255
14385
|
|
|
14386
|
+
|
|
14256
14387
|
}
|
|
14257
14388
|
declare module INSPECTOR.SharedUIComponents {
|
|
14258
14389
|
/**
|
|
@@ -14280,6 +14411,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14280
14411
|
}
|
|
14281
14412
|
declare module INSPECTOR {
|
|
14282
14413
|
|
|
14414
|
+
|
|
14283
14415
|
}
|
|
14284
14416
|
declare module INSPECTOR.SharedUIComponents {
|
|
14285
14417
|
/**
|
|
@@ -14304,6 +14436,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14304
14436
|
}
|
|
14305
14437
|
declare module INSPECTOR {
|
|
14306
14438
|
|
|
14439
|
+
|
|
14307
14440
|
}
|
|
14308
14441
|
declare module INSPECTOR.SharedUIComponents {
|
|
14309
14442
|
/**
|
|
@@ -14335,6 +14468,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14335
14468
|
}
|
|
14336
14469
|
declare module INSPECTOR {
|
|
14337
14470
|
|
|
14471
|
+
|
|
14338
14472
|
}
|
|
14339
14473
|
declare module INSPECTOR.SharedUIComponents {
|
|
14340
14474
|
export interface IHexColorProps {
|
|
@@ -14361,6 +14495,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14361
14495
|
}
|
|
14362
14496
|
declare module INSPECTOR {
|
|
14363
14497
|
|
|
14498
|
+
|
|
14364
14499
|
}
|
|
14365
14500
|
declare module INSPECTOR.SharedUIComponents {
|
|
14366
14501
|
/**
|
|
@@ -14409,6 +14544,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14409
14544
|
}
|
|
14410
14545
|
declare module INSPECTOR {
|
|
14411
14546
|
|
|
14547
|
+
|
|
14412
14548
|
}
|
|
14413
14549
|
declare module INSPECTOR.SharedUIComponents {
|
|
14414
14550
|
export interface IColorComponentEntryProps {
|
|
@@ -14433,6 +14569,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14433
14569
|
}
|
|
14434
14570
|
declare module INSPECTOR {
|
|
14435
14571
|
|
|
14572
|
+
|
|
14436
14573
|
}
|
|
14437
14574
|
declare module INSPECTOR.SharedUIComponents {
|
|
14438
14575
|
interface ICommandDropdownComponentProps {
|
|
@@ -14465,6 +14602,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14465
14602
|
}
|
|
14466
14603
|
declare module INSPECTOR {
|
|
14467
14604
|
|
|
14605
|
+
|
|
14468
14606
|
}
|
|
14469
14607
|
declare module INSPECTOR.SharedUIComponents {
|
|
14470
14608
|
export interface ICommandButtonComponentProps {
|
|
@@ -14483,6 +14621,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14483
14621
|
}
|
|
14484
14622
|
declare module INSPECTOR {
|
|
14485
14623
|
|
|
14624
|
+
|
|
14486
14625
|
}
|
|
14487
14626
|
declare module INSPECTOR.SharedUIComponents {
|
|
14488
14627
|
export interface ICommandBarComponentProps {
|
|
@@ -14506,6 +14645,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14506
14645
|
}
|
|
14507
14646
|
declare module INSPECTOR {
|
|
14508
14647
|
|
|
14648
|
+
|
|
14509
14649
|
}
|
|
14510
14650
|
declare module INSPECTOR.SharedUIComponents {
|
|
14511
14651
|
export interface IHexColorProps {
|
|
@@ -14532,6 +14672,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14532
14672
|
}
|
|
14533
14673
|
declare module INSPECTOR {
|
|
14534
14674
|
|
|
14675
|
+
|
|
14535
14676
|
}
|
|
14536
14677
|
declare module INSPECTOR.SharedUIComponents {
|
|
14537
14678
|
/**
|
|
@@ -14579,6 +14720,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14579
14720
|
}
|
|
14580
14721
|
declare module INSPECTOR {
|
|
14581
14722
|
|
|
14723
|
+
|
|
14582
14724
|
}
|
|
14583
14725
|
declare module INSPECTOR.SharedUIComponents {
|
|
14584
14726
|
export interface IColorComponentEntryProps {
|
|
@@ -14603,6 +14745,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14603
14745
|
}
|
|
14604
14746
|
declare module INSPECTOR {
|
|
14605
14747
|
|
|
14748
|
+
|
|
14606
14749
|
}
|
|
14607
14750
|
|
|
14608
14751
|
|