@babylonjs/inspector 8.31.1-preview → 8.31.2-preview

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/lib/index.d.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as react from 'react';
3
3
  import { ComponentType, ComponentProps, FunctionComponent, PropsWithChildren, HTMLProps, ElementRef, ReactNode, ReactElement } from 'react';
4
- import { IDisposable as IDisposable$1, Nullable as Nullable$1, IReadonlyObservable as IReadonlyObservable$1, Scene as Scene$1 } from '@babylonjs/core/index.js';
4
+ import { IDisposable as IDisposable$1, Nullable as Nullable$1, IReadonlyObservable as IReadonlyObservable$2, Scene as Scene$1 } from '@babylonjs/core/index.js';
5
+ import { IReadonlyObservable as IReadonlyObservable$1 } from '@babylonjs/core/Misc/observable.js';
5
6
  import { Nullable as Nullable$2 } from '@babylonjs/core/types.js';
6
7
  import { PositioningImperativeRef, OnOpenChangeData, SpinnerProps } from '@fluentui/react-components';
7
8
  export { Link } from '@fluentui/react-components';
8
9
  import { Color3 as Color3$1, Color4 as Color4$1 } from '@babylonjs/core/Maths/math.color.js';
9
10
  import { Vector3 as Vector3$1, Quaternion as Quaternion$1 } from '@babylonjs/core/Maths/math.vector.js';
10
- import { IReadonlyObservable as IReadonlyObservable$2 } from '@babylonjs/core/Misc/observable.js';
11
11
  import { IDisposable as IDisposable$2, Scene as Scene$2 } from '@babylonjs/core/scene.js';
12
12
  import { IInspectorOptions as IInspectorOptions$1 } from '@babylonjs/core/Debug/debugLayer.js';
13
13
  import { TernaryDarkMode } from 'usehooks-ts';
@@ -222,6 +222,197 @@ type ServiceDefinition<Produces extends IService<symbol>[] = [], Consumes extend
222
222
  consumes: ExtractContractIdentities<Consumes>;
223
223
  });
224
224
 
225
+ declare const SettingsContextIdentity: unique symbol;
226
+ /**
227
+ * SettingsContext provides a set of settings used across the inspector.
228
+ */
229
+ interface ISettingsContext extends IService<typeof SettingsContextIdentity> {
230
+ /**
231
+ * Use degrees instead of radians for angles.
232
+ */
233
+ useDegrees: boolean;
234
+ /**
235
+ * Ignore backfaces when picking.
236
+ */
237
+ ignoreBackfacesForPicking: boolean;
238
+ /**
239
+ * Shows the Properties pane when an entity is selected.
240
+ */
241
+ showPropertiesOnEntitySelection: boolean;
242
+ /**
243
+ * Observable that fires whenever a setting changes.
244
+ */
245
+ readonly settingsChangedObservable: IReadonlyObservable$1<ISettingsContext>;
246
+ }
247
+
248
+ /**
249
+ * Describes an item that can be added to one of the shell's toolbars.
250
+ */
251
+ type ToolbarItemDefinition = Readonly<{
252
+ /**
253
+ * A unique key for the toolbar item.
254
+ */
255
+ key: string;
256
+ /**
257
+ * The component to render for the toolbar item.
258
+ */
259
+ component: ComponentType;
260
+ /**
261
+ * An optional order for the toolbar item, relative to other items.
262
+ * Defaults to 0.
263
+ */
264
+ order?: number;
265
+ /**
266
+ * The horizontal location of the toolbar item.
267
+ * Can be either "left" or "right".
268
+ * In "compact" toolbar mode, "left" and "right" mean the "compact" toolbars at the top/bottom of the left/right side panes.
269
+ * In "full" toolbar mode, "left" and "right" mean the left side and right side of the full width toolbars above/below the side panes.
270
+ */
271
+ horizontalLocation: "left" | "right";
272
+ /**
273
+ * The vertical location of the toolbar item.
274
+ * Can be either "top" or "bottom".
275
+ */
276
+ verticalLocation: "top" | "bottom";
277
+ /**
278
+ * An optional display name for the toolbar item, used for teaching moments, tooltips, etc.
279
+ */
280
+ displayName?: string;
281
+ /**
282
+ * An optional flag to suppress the teaching moment for this toolbar item.
283
+ * Defaults to false.
284
+ * Teaching moments are more helpful for dynamically added items, possibly from extensions.
285
+ */
286
+ suppressTeachingMoment?: boolean;
287
+ }>;
288
+ /**
289
+ * Describes a side pane that can be added to the shell's left or right side.
290
+ */
291
+ type SidePaneDefinition = Readonly<{
292
+ /**
293
+ * A unique key for the side pane.
294
+ */
295
+ key: string;
296
+ /**
297
+ * An icon component to render for the pane tab.
298
+ */
299
+ icon: ComponentType;
300
+ /**
301
+ * The component to render for the side pane's content.
302
+ */
303
+ content: ComponentType;
304
+ /**
305
+ * An optional order for the side pane, relative to other panes.
306
+ * Defaults to 0.
307
+ */
308
+ order?: number;
309
+ /**
310
+ * The horizontal location of the side pane.
311
+ * Can be either "left" or "right".
312
+ */
313
+ horizontalLocation: "left" | "right";
314
+ /**
315
+ * The vertical location of the side pane.
316
+ * Can be either "top" or "bottom".
317
+ */
318
+ verticalLocation: "top" | "bottom";
319
+ /**
320
+ * An optional title for the side pane, displayed as a standardized header at the top of the pane.
321
+ */
322
+ title?: string;
323
+ /**
324
+ * An optional flag to suppress the teaching moment for this side pane.
325
+ * Defaults to false.
326
+ * Teaching moments are more helpful for dynamically added panes, possibly from extensions.
327
+ */
328
+ suppressTeachingMoment?: boolean;
329
+ }>;
330
+ type RegisteredSidePane = {
331
+ key: string;
332
+ select(): void;
333
+ };
334
+ /**
335
+ * Describes content that can be added to the shell's central area (between the side panes and toolbars - e.g. the main content).
336
+ */
337
+ type CentralContentDefinition = Readonly<{
338
+ /**
339
+ * A unique key for the central content.
340
+ */
341
+ key: string;
342
+ /**
343
+ * The component to render for the central content.
344
+ */
345
+ component: ComponentType;
346
+ /**
347
+ * An optional order for content, relative to other central content.
348
+ * Defaults to 0.
349
+ */
350
+ order?: number;
351
+ }>;
352
+ declare const ShellServiceIdentity: unique symbol;
353
+ /**
354
+ * Provides a shell for the application, including toolbars, side panes, and central content.
355
+ * This service allows adding toolbar items, side panes, and central content dynamically.
356
+ */
357
+ interface IShellService extends IService<typeof ShellServiceIdentity> {
358
+ /**
359
+ * Adds a new item to one of the shell's toolbars.
360
+ * @param item Defines the item to add.
361
+ */
362
+ addToolbarItem(item: ToolbarItemDefinition): IDisposable$1;
363
+ /**
364
+ * Adds a new side pane to the shell.
365
+ * @param pane Defines the side pane to add.
366
+ */
367
+ addSidePane(pane: SidePaneDefinition): IDisposable$1;
368
+ /**
369
+ * Adds new central content to the shell.
370
+ * @param content Defines the content area to add.
371
+ */
372
+ addCentralContent(content: CentralContentDefinition): IDisposable$1;
373
+ /**
374
+ * The side panes currently present in the shell.
375
+ */
376
+ readonly sidePanes: readonly RegisteredSidePane[];
377
+ }
378
+ type ToolbarMode = "full" | "compact";
379
+ type SidePaneMode = "both" | "right";
380
+ /**
381
+ * Options for configuring the shell service.
382
+ */
383
+ type ShellServiceOptions = {
384
+ /**
385
+ * The default width of the left side pane.
386
+ */
387
+ leftPaneDefaultWidth?: number;
388
+ /**
389
+ * The minimum width of the left side pane.
390
+ */
391
+ leftPaneMinWidth?: number;
392
+ /**
393
+ * The default width of the right side pane.
394
+ */
395
+ rightPaneDefaultWidth?: number;
396
+ /**
397
+ * The minimum width of the right side pane.
398
+ */
399
+ rightPaneMinWidth?: number;
400
+ /**
401
+ * The mode of the toolbars.
402
+ * Can be either "full" (default) or "compact".
403
+ * In "full" mode, toolbars are displayed above and below the side panes.
404
+ * In "compact" mode, toolbars are displayed at the top and bottom of the left and right side panes.
405
+ */
406
+ toolbarMode?: ToolbarMode;
407
+ /**
408
+ * The mode of the side panes.
409
+ * Can be either "both" (default) or "right".
410
+ * In "both" mode, side panes can be added to both the left and right sides.
411
+ * In "right" mode, all left panes are moved to the upper right, and all right panes are moved to the lower right.
412
+ */
413
+ sidePaneMode?: SidePaneMode;
414
+ };
415
+
225
416
  declare const SelectionServiceIdentity: unique symbol;
226
417
  /**
227
418
  * Tracks the currently selected entity.
@@ -234,9 +425,9 @@ interface ISelectionService extends IService<typeof SelectionServiceIdentity> {
234
425
  /**
235
426
  * An observable that notifies when the selected entity changes.
236
427
  */
237
- readonly onSelectedEntityChanged: IReadonlyObservable$1<void>;
428
+ readonly onSelectedEntityChanged: IReadonlyObservable$2<void>;
238
429
  }
239
- declare const SelectionServiceDefinition: ServiceDefinition<[ISelectionService], []>;
430
+ declare const SelectionServiceDefinition: ServiceDefinition<[ISelectionService], [IShellService, ISettingsContext]>;
240
431
 
241
432
  type LinkToEntityProps = {
242
433
  entity: Nullable$2<{
@@ -264,7 +455,7 @@ type EntityDisplayInfo = Partial<IDisposable$1> & Readonly<{
264
455
  /**
265
456
  * An observable that notifies when the display info (such as the name) changes.
266
457
  */
267
- onChange?: IReadonlyObservable$1<void>;
458
+ onChange?: IReadonlyObservable$2<void>;
268
459
  }>;
269
460
  type SceneExplorerSection<T extends EntityBase> = Readonly<{
270
461
  /**
@@ -299,15 +490,15 @@ type SceneExplorerSection<T extends EntityBase> = Readonly<{
299
490
  /**
300
491
  * A function that returns an array of observables for when entities are added to the scene.
301
492
  */
302
- getEntityAddedObservables: () => readonly IReadonlyObservable$1<T>[];
493
+ getEntityAddedObservables: () => readonly IReadonlyObservable$2<T>[];
303
494
  /**
304
495
  * A function that returns an array of observables for when entities are removed from the scene.
305
496
  */
306
- getEntityRemovedObservables: () => readonly IReadonlyObservable$1<T>[];
497
+ getEntityRemovedObservables: () => readonly IReadonlyObservable$2<T>[];
307
498
  /**
308
499
  * A function that returns an array of observables for when entities are moved (e.g. re-parented) within the scene.
309
500
  */
310
- getEntityMovedObservables?: () => readonly IReadonlyObservable$1<T>[];
501
+ getEntityMovedObservables?: () => readonly IReadonlyObservable$2<T>[];
311
502
  }>;
312
503
  type Command = Partial<IDisposable$1> & Readonly<{
313
504
  /**
@@ -321,7 +512,7 @@ type Command = Partial<IDisposable$1> & Readonly<{
321
512
  /**
322
513
  * An observable that notifies when the command state changes.
323
514
  */
324
- onChange?: IReadonlyObservable$1<unknown>;
515
+ onChange?: IReadonlyObservable$2<unknown>;
325
516
  }>;
326
517
  type SceneExplorerCommand = ActionCommand | ToggleCommand;
327
518
  type SceneExplorerCommandProvider<T extends EntityBase> = Readonly<{
@@ -573,7 +764,7 @@ declare function MakePropertyHook(value: unknown): typeof useVector3Property;
573
764
  * @param propertyKey The key of the function/property to intercept.
574
765
  * @returns An observable that fires when the function/property is called/set.
575
766
  */
576
- declare function useInterceptObservable<T extends object>(type: "function" | "property", target: T | null | undefined, propertyKey: keyof T): IReadonlyObservable$1<void>;
767
+ declare function useInterceptObservable<T extends object>(type: "function" | "property", target: T | null | undefined, propertyKey: keyof T): IReadonlyObservable$2<void>;
577
768
 
578
769
  /**
579
770
  * A collection of items that can be observed for changes.
@@ -585,7 +776,7 @@ declare class ObservableCollection<T> {
585
776
  /**
586
777
  * An observable that notifies observers when the collection changes.
587
778
  */
588
- get observable(): IReadonlyObservable$1<void>;
779
+ get observable(): IReadonlyObservable$2<void>;
589
780
  /**
590
781
  * The items in the collection.
591
782
  */
@@ -616,7 +807,7 @@ declare function useEventfulState<T>(accessor: () => T, element: HTMLElement | n
616
807
  * @remarks If the accessor function is not idempotent (e.g. it returns a different array or object instance each time it is called),
617
808
  * then there is a good chance it should be wrapped in a `useCallback` to prevent unnecessary re-renders or re-render infinite loops.
618
809
  */
619
- declare function useObservableState<T>(accessor: () => T, ...observables: Array<IReadonlyObservable$1 | null | undefined>): T;
810
+ declare function useObservableState<T>(accessor: () => T, ...observables: Array<IReadonlyObservable$2 | null | undefined>): T;
620
811
  /**
621
812
  * Returns a copy of the items in the collection and updates it when the collection changes.
622
813
  * @param collection The collection to observe.
@@ -637,7 +828,7 @@ declare function useOrderedObservableCollection<T extends Readonly<{
637
828
  * @param delay The polling interval in milliseconds.
638
829
  * @returns A readonly observable that can be used to subscribe to polling notifications.
639
830
  */
640
- declare function usePollingObservable(delay: number): IReadonlyObservable$1<void>;
831
+ declare function usePollingObservable(delay: number): IReadonlyObservable$2<void>;
641
832
 
642
833
  /**
643
834
  * Custom hook to manage a resource with automatic disposal. The resource is created once initially, and recreated
@@ -656,25 +847,6 @@ declare function useResource<T extends IDisposable$1>(factory: () => T): T;
656
847
  */
657
848
  declare function useAsyncResource<T extends IDisposable$1>(factory: (abortSignal: AbortSignal) => Promise<T>): T | undefined;
658
849
 
659
- declare const SettingsContextIdentity: unique symbol;
660
- /**
661
- * SettingsContext provides a set of settings used across the inspector.
662
- */
663
- interface ISettingsContext extends IService<typeof SettingsContextIdentity> {
664
- /**
665
- * Use dregrees instead of radians for angles.
666
- */
667
- useDegrees: boolean;
668
- /**
669
- * Ignore backfaces when picking
670
- */
671
- ignoreBackfacesForPicking: boolean;
672
- /**
673
- * Observable that fires whenever a setting changes.
674
- */
675
- readonly settingsChangedObservable: IReadonlyObservable$2<ISettingsContext>;
676
- }
677
-
678
850
  /**
679
851
  * Gets functions used to convert to/from display values for angles based on the current settings.
680
852
  * @param settings The settings context to use for determining if angles should be displayed in degrees or radians.
@@ -725,154 +897,6 @@ type PropertyHooks = {
725
897
  */
726
898
  declare function InterceptProperty<T extends object>(target: T, propertyKey: keyof T, hooks: PropertyHooks): IDisposable$1;
727
899
 
728
- /**
729
- * Describes an item that can be added to one of the shell's toolbars.
730
- */
731
- type ToolbarItem = Readonly<{
732
- /**
733
- * A unique key for the toolbar item.
734
- */
735
- key: string;
736
- /**
737
- * The component to render for the toolbar item.
738
- */
739
- component: ComponentType;
740
- /**
741
- * An optional order for the toolbar item, relative to other items.
742
- * Defaults to 0.
743
- */
744
- order?: number;
745
- /**
746
- * The horizontal location of the toolbar item.
747
- * Can be either "left" or "right".
748
- * In "compact" toolbar mode, "left" and "right" mean the "compact" toolbars at the top/bottom of the left/right side panes.
749
- * In "full" toolbar mode, "left" and "right" mean the left side and right side of the full width toolbars above/below the side panes.
750
- */
751
- horizontalLocation: "left" | "right";
752
- /**
753
- * The vertical location of the toolbar item.
754
- * Can be either "top" or "bottom".
755
- */
756
- verticalLocation: "top" | "bottom";
757
- /**
758
- * An optional display name for the toolbar item, used for teaching moments, tooltips, etc.
759
- */
760
- displayName?: string;
761
- /**
762
- * An optional flag to suppress the teaching moment for this toolbar item.
763
- * Defaults to false.
764
- * Teaching moments are more helpful for dynamically added items, possibly from extensions.
765
- */
766
- suppressTeachingMoment?: boolean;
767
- }>;
768
- /**
769
- * Describes a side pane that can be added to the shell's left or right side.
770
- */
771
- type SidePane = Readonly<{
772
- /**
773
- * A unique key for the side pane.
774
- */
775
- key: string;
776
- /**
777
- * An icon component to render for the pane tab.
778
- */
779
- icon: ComponentType;
780
- /**
781
- * The component to render for the side pane's content.
782
- */
783
- content: ComponentType;
784
- /**
785
- * An optional order for the side pane, relative to other panes.
786
- * Defaults to 0.
787
- */
788
- order?: number;
789
- /**
790
- * The horizontal location of the side pane.
791
- * Can be either "left" or "right".
792
- */
793
- horizontalLocation: "left" | "right";
794
- /**
795
- * The vertical location of the side pane.
796
- * Can be either "top" or "bottom".
797
- */
798
- verticalLocation: "top" | "bottom";
799
- /**
800
- * An optional title for the side pane, displayed as a standardized header at the top of the pane.
801
- */
802
- title?: string;
803
- /**
804
- * An optional flag to suppress the teaching moment for this side pane.
805
- * Defaults to false.
806
- * Teaching moments are more helpful for dynamically added panes, possibly from extensions.
807
- */
808
- suppressTeachingMoment?: boolean;
809
- }>;
810
- /**
811
- * Describes content that can be added to the shell's central area (between the side panes and toolbars - e.g. the main content).
812
- */
813
- type CentralContent = Readonly<{
814
- /**
815
- * A unique key for the central content.
816
- */
817
- key: string;
818
- /**
819
- * The component to render for the central content.
820
- */
821
- component: ComponentType;
822
- /**
823
- * An optional order for content, relative to other central content.
824
- * Defaults to 0.
825
- */
826
- order?: number;
827
- }>;
828
- declare const ShellServiceIdentity: unique symbol;
829
- /**
830
- * Provides a shell for the application, including toolbars, side panes, and central content.
831
- * This service allows adding toolbar items, side panes, and central content dynamically.
832
- */
833
- interface IShellService extends IService<typeof ShellServiceIdentity> {
834
- addToolbarItem(item: ToolbarItem): IDisposable$1;
835
- addSidePane(pane: SidePane): IDisposable$1;
836
- addCentralContent(content: CentralContent): IDisposable$1;
837
- }
838
- type ToolbarMode = "full" | "compact";
839
- type SidePaneMode = "both" | "right";
840
- /**
841
- * Options for configuring the shell service.
842
- */
843
- type ShellServiceOptions = {
844
- /**
845
- * The default width of the left side pane.
846
- */
847
- leftPaneDefaultWidth?: number;
848
- /**
849
- * The minimum width of the left side pane.
850
- */
851
- leftPaneMinWidth?: number;
852
- /**
853
- * The default width of the right side pane.
854
- */
855
- rightPaneDefaultWidth?: number;
856
- /**
857
- * The minimum width of the right side pane.
858
- */
859
- rightPaneMinWidth?: number;
860
- /**
861
- * The mode of the toolbars.
862
- * Can be either "full" (default) or "compact".
863
- * In "full" mode, toolbars are displayed above and below the side panes.
864
- * In "compact" mode, toolbars are displayed at the top and bottom of the left and right side panes.
865
- */
866
- toolbarMode?: ToolbarMode;
867
- /**
868
- * The mode of the side panes.
869
- * Can be either "both" (default) or "right".
870
- * In "both" mode, side panes can be added to both the left and right sides.
871
- * In "right" mode, all left panes are moved to the upper right, and all right panes are moved to the lower right.
872
- */
873
- sidePaneMode?: SidePaneMode;
874
- };
875
-
876
900
  declare const PropertiesServiceIdentity: unique symbol;
877
901
  type PropertiesSectionContent<EntityT> = {
878
902
  /**
@@ -914,7 +938,7 @@ interface ISceneContext extends IService<typeof SceneContextIdentity> {
914
938
  /**
915
939
  * Observable that fires whenever the current scene changes.
916
940
  */
917
- readonly currentSceneObservable: IReadonlyObservable$1<Nullable$1<Scene$1>>;
941
+ readonly currentSceneObservable: IReadonlyObservable$2<Nullable$1<Scene$1>>;
918
942
  }
919
943
 
920
944
  declare const SceneExplorerServiceIdentity: unique symbol;
@@ -71645,4 +71669,4 @@ declare const Vector3PropertyLine: FunctionComponent<TensorPropertyLineProps<Vec
71645
71669
  declare const Vector4PropertyLine: FunctionComponent<TensorPropertyLineProps<Vector4>>;
71646
71670
 
71647
71671
  export { Accordion, AccordionSection, BooleanBadgePropertyLine, BoundProperty, BuiltInsExtensionFeed, Button, ButtonLine, Checkbox, CheckboxPropertyLine, Collapse, Color3GradientComponent, Color3GradientList, Color3PropertyLine, Color4GradientComponent, Color4GradientList, Color4PropertyLine, ColorPickerPopup, ColorStepGradientComponent, ComboBox, ConstructorFactory, DebugServiceIdentity, DraggableLine, Dropdown, ExtensibleAccordion, FactorGradientComponent, FactorGradientList, FileUploadLine, GetPropertyDescriptor, HexPropertyLine, HideInspector, InfoLabel, InputHexField, InputHsvField, Inspector, InterceptFunction, InterceptProperty, IsInspectorVisible, IsPropertyReadonly, LineContainer, LinkPropertyLine, LinkToEntityPropertyLine, List, MakeDialogTeachingMoment, MakeLazyComponent, MakePopoverTeachingMoment, MakePropertyHook, MakeTeachingMoment, MessageBar, NumberDropdown, NumberDropdownPropertyLine, NumberInputPropertyLine, ObservableCollection, Pane, PlaceholderPropertyLine, PositionedPopover, PropertiesServiceIdentity, PropertyLine, QuaternionPropertyLine, RotationVectorPropertyLine, SceneContextIdentity, SceneExplorerServiceIdentity, SearchBar, SearchBox, SelectionServiceDefinition, SelectionServiceIdentity, SettingsContextIdentity, SettingsServiceIdentity, ShellServiceIdentity, ShowInspector, SidePaneContainer, SpinButton, SpinButtonPropertyLine, StatsServiceIdentity, StringDropdown, StringDropdownPropertyLine, StringifiedPropertyLine, Switch, SwitchPropertyLine, SyncedSliderInput, SyncedSliderPropertyLine, TeachingMoment, TextAreaPropertyLine, TextInput, TextInputPropertyLine, TextPropertyLine, Textarea, ToggleButton, ToolsServiceIdentity, Vector2PropertyLine, Vector3PropertyLine, Vector4PropertyLine, useAngleConverters, useAsyncResource, useColor3Property, useColor4Property, useEventfulState, useInterceptObservable, useObservableCollection, useObservableState, useOrderedObservableCollection, usePollingObservable, useProperty, useQuaternionProperty, useResource, useVector3Property };
71648
- export type { AcceptedDropdownValue, AccordionSectionProps, BasePrimitiveProps, BoundPropertyProps, BuiltInExtension, ButtonProps, CentralContent, ColorPickerProps, ColorPropertyLineProps, ComboBoxProps, DraggableLineProps, DropdownOption, DropdownProps, DynamicAccordionSection, DynamicAccordionSectionContent, EntityBase, EntityDisplayInfo, ExtensionMetadata, ExtensionModule, FunctionHooks, IDebugService, IExtensionFeed, IExtensionMetadataQuery, IPropertiesService, ISceneContext, ISceneExplorerService, ISelectionService, IService, ISettingsContext, ISettingsService, IShellService, IStatsService, IToolsService, ImmutablePrimitiveProps, InfoLabelParentProps, InfoLabelProps, InputHexProps, ListItem, NumberInputPropertyLineProps, PaneProps, PrimitiveProps, PropertyHooks, PropertyLineProps, SceneExplorerCommand, SceneExplorerCommandProvider, SceneExplorerSection, ServiceDefinition, ServiceFactory, SidePane, SpinButtonProps, SwitchProps, SyncedSliderProps, TensorPropertyLineProps, TextInputProps, TextareaProps, ToolbarItem };
71672
+ export type { AcceptedDropdownValue, AccordionSectionProps, BasePrimitiveProps, BoundPropertyProps, BuiltInExtension, ButtonProps, CentralContentDefinition, ColorPickerProps, ColorPropertyLineProps, ComboBoxProps, DraggableLineProps, DropdownOption, DropdownProps, DynamicAccordionSection, DynamicAccordionSectionContent, EntityBase, EntityDisplayInfo, ExtensionMetadata, ExtensionModule, FunctionHooks, IDebugService, IExtensionFeed, IExtensionMetadataQuery, IPropertiesService, ISceneContext, ISceneExplorerService, ISelectionService, IService, ISettingsContext, ISettingsService, IShellService, IStatsService, IToolsService, ImmutablePrimitiveProps, InfoLabelParentProps, InfoLabelProps, InputHexProps, ListItem, NumberInputPropertyLineProps, PaneProps, PrimitiveProps, PropertyHooks, PropertyLineProps, SceneExplorerCommand, SceneExplorerCommandProvider, SceneExplorerSection, ServiceDefinition, ServiceFactory, SidePaneDefinition, SpinButtonProps, SwitchProps, SyncedSliderProps, TensorPropertyLineProps, TextInputProps, TextareaProps, ToolbarItemDefinition };