@babylonjs/inspector 8.42.0-preview → 8.43.0-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
@@ -4,7 +4,7 @@ import { ComponentType, ComponentProps, FunctionComponent, PropsWithChildren, HT
4
4
  import { IDisposable as IDisposable$1, Nullable as Nullable$1, IReadonlyObservable as IReadonlyObservable$2, Scene as Scene$1, IInspectorOptions as IInspectorOptions$1 } from '@babylonjs/core/index.js';
5
5
  import { IReadonlyObservable as IReadonlyObservable$1, Observable as Observable$1 } from '@babylonjs/core/Misc/observable.js';
6
6
  import { Nullable as Nullable$2 } from '@babylonjs/core/types.js';
7
- import { PositioningImperativeRef, OnOpenChangeData, SpinnerProps } from '@fluentui/react-components';
7
+ import { FluentProviderProps, PositioningImperativeRef, OnOpenChangeData, SpinnerProps } from '@fluentui/react-components';
8
8
  import { Color3 as Color3$1, Color4 as Color4$1 } from '@babylonjs/core/Maths/math.color.js';
9
9
  import { Vector3 as Vector3$1, Quaternion as Quaternion$1 } from '@babylonjs/core/Maths/math.vector.js';
10
10
  import { IDisposable as IDisposable$2, Scene as Scene$2 } from '@babylonjs/core/scene.js';
@@ -30,15 +30,21 @@ type BaseBoundPropertyProps<TargetT extends object, PropertyKeyT extends keyof T
30
30
  /**
31
31
  * Enhanced BoundProperty props that enforces strict nullable handling
32
32
  */
33
- type BoundPropertyProps<TargetT extends object, PropertyKeyT extends keyof TargetT, ComponentT extends ComponentType<any>> = BaseBoundPropertyProps<TargetT, PropertyKeyT, ComponentT> & (IsNullable<TargetT[PropertyKeyT]> extends true ? ComponentProps<ComponentT> extends {
33
+ type BoundPropertyProps<TargetT extends object, PropertyKeyT extends keyof TargetT, ComponentT extends ComponentType<any>> = BaseBoundPropertyProps<TargetT, PropertyKeyT, ComponentT> & (IsNullable<TargetT[PropertyKeyT]> extends true ? {
34
+ defaultValue: null;
35
+ nullable?: never;
36
+ ignoreNullable?: never;
37
+ } | (ComponentProps<ComponentT> extends {
34
38
  nullable?: boolean;
35
39
  } ? {
36
40
  nullable: true;
37
41
  defaultValue: NonNullable<TargetT[PropertyKeyT]>;
42
+ ignoreNullable?: never;
38
43
  } | {
39
44
  ignoreNullable: true;
40
45
  defaultValue: NonNullable<TargetT[PropertyKeyT]>;
41
- } : never : {});
46
+ nullable?: never;
47
+ } : never) : {});
42
48
  declare function BoundPropertyImpl<TargetT extends object, PropertyKeyT extends keyof TargetT, ComponentT extends ComponentType<any>>(props: BoundPropertyProps<TargetT, PropertyKeyT, ComponentT>, ref?: any): react_jsx_runtime.JSX.Element | null;
43
49
  /**
44
50
  * Intercepts the passed in component's target[propertyKey] with useInterceptObservable and sets component state using useObservableState.
@@ -46,7 +52,10 @@ declare function BoundPropertyImpl<TargetT extends object, PropertyKeyT extends
46
52
  *
47
53
  * NOTE: BoundProperty has strict nullable enforcement!
48
54
  *
49
- * If Target[PropertyKey] is Nullable, caller can only bind to a component that explicitly handles nullable (and caller must send nullable/defaultValue props)
55
+ * If Target[PropertyKey] is Nullable, caller has three options:
56
+ * 1. `nullable: true` + `defaultValue: NonNullable<T>` - Shows enable/disable checkbox UI
57
+ * 2. `ignoreNullable: true` + `defaultValue: NonNullable<T>` - Shows disabled state when null
58
+ * 3. `defaultValue: null` - Skips nullable handling entirely, passes value through as-is
50
59
  *
51
60
  * @param props BoundPropertyProps with strict nullable validation
52
61
  * @returns JSX element
@@ -648,6 +657,10 @@ declare function ExtensibleAccordion<ContextT = unknown>(props: PropsWithChildre
648
657
  */
649
658
  declare const SidePaneContainer: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
650
659
 
660
+ declare const Theme: FunctionComponent<FluentProviderProps & {
661
+ invert?: boolean;
662
+ }>;
663
+
651
664
  /**
652
665
  * Creates a hook for managing teaching moment state.
653
666
  * @param name The unique name of the teaching moment.
@@ -2791,7 +2804,14 @@ declare class Color4 implements Tensor<Tuple<number, 4>, IColor4Like>, IColor4Li
2791
2804
  type ColorPickerProps<C extends Color3 | Color4> = {
2792
2805
  isLinearMode?: boolean;
2793
2806
  } & PrimitiveProps<C>;
2794
- declare const ColorPickerPopup: FunctionComponent<ColorPickerProps<Color3 | Color4>>;
2807
+ declare const ColorPickerPopup: react.ForwardRefExoticComponent<{
2808
+ isLinearMode?: boolean;
2809
+ } & BasePrimitiveProps & {
2810
+ value: Color3 | Color4;
2811
+ infoLabel?: InfoLabelParentProps;
2812
+ } & {
2813
+ onChange: (value: Color3 | Color4) => void;
2814
+ } & react.RefAttributes<HTMLButtonElement>>;
2795
2815
  type InputHexProps = PrimitiveProps<Color3 | Color4> & {
2796
2816
  linearHex?: boolean;
2797
2817
  isLinearMode?: boolean;
@@ -2819,15 +2839,31 @@ type InputHsvFieldProps = PrimitiveProps<Color3 | Color4> & {
2819
2839
  */
2820
2840
  declare const InputHsvField: FunctionComponent<InputHsvFieldProps>;
2821
2841
 
2842
+ /**
2843
+ * An option object for the ComboBox with separate label and value.
2844
+ */
2845
+ type ComboBoxOption = {
2846
+ /**
2847
+ * Defines the visible part of the option
2848
+ */
2849
+ label: string;
2850
+ /**
2851
+ * Defines the value part of the option
2852
+ */
2853
+ value: string;
2854
+ };
2822
2855
  type ComboBoxProps = PrimitiveProps<string> & {
2856
+ /**
2857
+ * Label for the ComboBox
2858
+ */
2823
2859
  label: string;
2824
2860
  /**
2825
- * The list of options to display
2861
+ * Options to display as label/value pairs
2826
2862
  */
2827
- options: string[];
2863
+ options: ComboBoxOption[];
2828
2864
  };
2829
2865
  /**
2830
- * Wrapper around a Fluent ComboBox that allows for filtering options
2866
+ * Wrapper around a Fluent ComboBox that allows for filtering options.
2831
2867
  * @param props
2832
2868
  * @returns
2833
2869
  */
@@ -49753,6 +49789,12 @@ declare class FrameGraph implements IDisposable {
49753
49789
  * @returns The list of tasks of the specified type
49754
49790
  */
49755
49791
  getTasksByType<T extends FrameGraphTask>(taskType: new (...args: any[]) => T): T[];
49792
+ /**
49793
+ * Gets all tasks of a specific type, based on their class name
49794
+ * @param taskClassName Class name(s) of the task(s) to get
49795
+ * @returns The list of tasks of the specified type
49796
+ */
49797
+ getTasksByClassName<T extends FrameGraphTask>(taskClassName: string | string[]): T[];
49756
49798
  /**
49757
49799
  * Adds a task to the frame graph
49758
49800
  * @param task Task to add
@@ -50161,6 +50203,13 @@ interface IThinGlowLayerOptions extends IThinEffectLayerOptions {
50161
50203
  * Forces the merge step to be done in ldr (clamp values > 1). Default: false
50162
50204
  */
50163
50205
  ldrMerge?: boolean;
50206
+ /**
50207
+ * Exclude all meshes from the glow layer by default.
50208
+ * This is useful if you have dynamic meshes and you want to control them specifically and
50209
+ * make sure that there are no "leaking" glowing meshes.
50210
+ * Default: false
50211
+ */
50212
+ excludeByDefault?: boolean;
50164
50213
  }
50165
50214
  /**
50166
50215
  * @internal
@@ -50231,6 +50280,8 @@ declare class ThinGlowLayer extends ThinEffectLayer {
50231
50280
  getClassName(): string;
50232
50281
  protected _importShadersAsync(): Promise<void>;
50233
50282
  getEffectName(): string;
50283
+ /** @internal */
50284
+ _internalShouldRender(): boolean;
50234
50285
  _createMergeEffect(): Effect;
50235
50286
  _createTextureAndPostProcesses(): void;
50236
50287
  private _getEffectiveBlurKernelSize;
@@ -50242,11 +50293,13 @@ declare class ThinGlowLayer extends ThinEffectLayer {
50242
50293
  _addCustomEffectDefines(defines: string[]): void;
50243
50294
  /**
50244
50295
  * Add a mesh in the exclusion list to prevent it to impact or being impacted by the glow layer.
50296
+ * This will not have an effect if meshes are excluded by default (see setExcludedByDefault).
50245
50297
  * @param mesh The mesh to exclude from the glow layer
50246
50298
  */
50247
50299
  addExcludedMesh(mesh: Mesh): void;
50248
50300
  /**
50249
50301
  * Remove a mesh from the exclusion list to let it impact or being impacted by the glow layer.
50302
+ * This will not have an effect if meshes are excluded by default (see setExcludedByDefault).
50250
50303
  * @param mesh The mesh to remove
50251
50304
  */
50252
50305
  removeExcludedMesh(mesh: Mesh): void;
@@ -50260,6 +50313,12 @@ declare class ThinGlowLayer extends ThinEffectLayer {
50260
50313
  * @param mesh The mesh to remove
50261
50314
  */
50262
50315
  removeIncludedOnlyMesh(mesh: Mesh): void;
50316
+ /**
50317
+ * Set the excluded by default option.
50318
+ * If true, all meshes will be excluded by default unless they are added to the inclusion list.
50319
+ * @param value The boolean value to set the excluded by default option to
50320
+ */
50321
+ setExcludedByDefault(value: boolean): void;
50263
50322
  hasMesh(mesh: AbstractMesh): boolean;
50264
50323
  _useMeshMaterial(mesh: AbstractMesh): boolean;
50265
50324
  /**
@@ -50371,6 +50430,7 @@ declare class ThinDepthPeelingRenderer {
50371
50430
  isReady(): boolean;
50372
50431
  protected _beforeRender(): void;
50373
50432
  protected _afterRender(): void;
50433
+ protected _noTransparentMeshes(): void;
50374
50434
  /**
50375
50435
  * Renders transparent submeshes with depth peeling
50376
50436
  * @param transparentSubMeshes List of transparent meshes to render
@@ -54165,11 +54225,13 @@ declare class GlowLayer extends EffectLayer {
54165
54225
  protected _addCustomEffectDefines(defines: string[]): void;
54166
54226
  /**
54167
54227
  * Add a mesh in the exclusion list to prevent it to impact or being impacted by the glow layer.
54228
+ * This will not have an effect if meshes are excluded by default (see setExcludedByDefault).
54168
54229
  * @param mesh The mesh to exclude from the glow layer
54169
54230
  */
54170
54231
  addExcludedMesh(mesh: Mesh): void;
54171
54232
  /**
54172
54233
  * Remove a mesh from the exclusion list to let it impact or being impacted by the glow layer.
54234
+ * This will not have an effect if meshes are excluded by default (see setExcludedByDefault).
54173
54235
  * @param mesh The mesh to remove
54174
54236
  */
54175
54237
  removeExcludedMesh(mesh: Mesh): void;
@@ -54183,6 +54245,12 @@ declare class GlowLayer extends EffectLayer {
54183
54245
  * @param mesh The mesh to remove
54184
54246
  */
54185
54247
  removeIncludedOnlyMesh(mesh: Mesh): void;
54248
+ /**
54249
+ * Set the excluded by default option.
54250
+ * If true, all meshes will be excluded by default unless they are added to the inclusion list.
54251
+ * @param value The boolean value to set the excluded by default option to
54252
+ */
54253
+ setExcludedByDefault(value: boolean): void;
54186
54254
  /**
54187
54255
  * Determine if a given mesh will be used in the glow layer
54188
54256
  * @param mesh The mesh to test
@@ -72238,6 +72306,67 @@ type ButtonLineProps = Omit<ButtonProps, "label"> & {
72238
72306
  */
72239
72307
  declare const ButtonLine: FunctionComponent<ButtonLineProps>;
72240
72308
 
72309
+ type ChildWindowOptions = {
72310
+ /**
72311
+ * The default width of the child window in pixels.
72312
+ * @remarks Ignored if the ChildWindow was passed an id and previous bounds were saved.
72313
+ */
72314
+ defaultWidth?: number;
72315
+ /**
72316
+ * The default height of the child window in pixels.
72317
+ * @remarks Ignored if the ChildWindow was passed an id and previous bounds were saved.
72318
+ */
72319
+ defaultHeight?: number;
72320
+ /**
72321
+ * The default left position of the child window in pixels.
72322
+ * @remarks Ignored if the ChildWindow was passed an id and previous bounds were saved.
72323
+ */
72324
+ defaultLeft?: number;
72325
+ /**
72326
+ * The default top position of the child window in pixels.
72327
+ * @remarks Ignored if the ChildWindow was passed an id and previous bounds were saved.
72328
+ */
72329
+ defaultTop?: number;
72330
+ /**
72331
+ * The title of the child window.
72332
+ * @remarks If not provided, the id will be used instead (if any).
72333
+ */
72334
+ title?: string;
72335
+ };
72336
+ type ChildWindowProps = {
72337
+ /**
72338
+ * An optional unique identity for the child window.
72339
+ * @remarks If provided, the child window's bounds will be saved/restored using this identity.
72340
+ */
72341
+ id?: string;
72342
+ /**
72343
+ * Called when the open state of the child window changes.
72344
+ * @param isOpen Whether the child window is open.
72345
+ */
72346
+ onOpenChange?: (isOpen: boolean) => void;
72347
+ /**
72348
+ * A ref that exposes the ChildWindow imperative API.
72349
+ */
72350
+ imperativeRef?: Ref<ChildWindow>;
72351
+ };
72352
+ type ChildWindow = {
72353
+ /**
72354
+ * Opens the child window.
72355
+ * @param options Options for opening the child window.
72356
+ */
72357
+ open: (options?: ChildWindowOptions) => void;
72358
+ /**
72359
+ * Closes the child window.
72360
+ */
72361
+ close: () => void;
72362
+ };
72363
+ /**
72364
+ * Allows displaying a child window that can contain child components.
72365
+ * @param props Props for the child window.
72366
+ * @returns The child window component.
72367
+ */
72368
+ declare const ChildWindow: FunctionComponent<PropsWithChildren<ChildWindowProps>>;
72369
+
72241
72370
  type FileUploadLineProps = Omit<ButtonProps, "onClick" | "label"> & {
72242
72371
  onClick: (files: FileList) => void;
72243
72372
  label: string;
@@ -72416,5 +72545,5 @@ declare const Vector2PropertyLine: FunctionComponent<TensorPropertyLineProps<Vec
72416
72545
  declare const Vector3PropertyLine: FunctionComponent<TensorPropertyLineProps<Vector3>>;
72417
72546
  declare const Vector4PropertyLine: FunctionComponent<TensorPropertyLineProps<Vector4>>;
72418
72547
 
72419
- export { Accordion, AccordionSection, AttachDebugLayer, BooleanBadgePropertyLine, BoundProperty, BuiltInsExtensionFeed, Button, ButtonLine, Checkbox, CheckboxPropertyLine, Collapse, Color3GradientComponent, Color3GradientList, Color3PropertyLine, Color4GradientComponent, Color4GradientList, Color4PropertyLine, ColorPickerPopup, ColorStepGradientComponent, ComboBox, ConstructorFactory, ConvertOptions, DebugServiceIdentity, DetachDebugLayer, DraggableLine, Dropdown, ExtensibleAccordion, FactorGradientComponent, FactorGradientList, FileUploadLine, GetPropertyDescriptor, HexPropertyLine, InfoLabel, InputHexField, InputHsvField, Inspector, InterceptFunction, InterceptProperty, IsPropertyReadonly, LineContainer, Link, 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, useCompactMode, useEventfulState, useInterceptObservable, useObservableCollection, useObservableState, useOrderedObservableCollection, usePollingObservable, useProperty, useQuaternionProperty, useResource, useSidePaneDockOverrides, useVector3Property };
72420
- export type { AcceptedDropdownValue, AccordionProps, 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, InspectorOptions, LinkProps, ListItem, NumberInputPropertyLineProps, PaneProps, PersonMetadata, PrimitiveProps, PropertyHooks, PropertyLineProps, SceneExplorerCommand, SceneExplorerCommandProvider, SceneExplorerSection, SectionsImperativeRef, ServiceDefinition, ServiceFactory, SidePaneDefinition, SpinButtonProps, SwitchProps, SyncedSliderProps, TensorPropertyLineProps, TextInputProps, TextareaProps, ToolbarItemDefinition };
72548
+ export { Accordion, AccordionSection, AttachDebugLayer, BooleanBadgePropertyLine, BoundProperty, BuiltInsExtensionFeed, Button, ButtonLine, Checkbox, CheckboxPropertyLine, ChildWindow, Collapse, Color3GradientComponent, Color3GradientList, Color3PropertyLine, Color4GradientComponent, Color4GradientList, Color4PropertyLine, ColorPickerPopup, ColorStepGradientComponent, ComboBox, ConstructorFactory, ConvertOptions, DebugServiceIdentity, DetachDebugLayer, DraggableLine, Dropdown, ExtensibleAccordion, FactorGradientComponent, FactorGradientList, FileUploadLine, GetPropertyDescriptor, HexPropertyLine, InfoLabel, InputHexField, InputHsvField, Inspector, InterceptFunction, InterceptProperty, IsPropertyReadonly, LineContainer, Link, 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, Theme, ToggleButton, ToolsServiceIdentity, Vector2PropertyLine, Vector3PropertyLine, Vector4PropertyLine, useAngleConverters, useAsyncResource, useColor3Property, useColor4Property, useCompactMode, useEventfulState, useInterceptObservable, useObservableCollection, useObservableState, useOrderedObservableCollection, usePollingObservable, useProperty, useQuaternionProperty, useResource, useSidePaneDockOverrides, useVector3Property };
72549
+ export type { AcceptedDropdownValue, AccordionProps, AccordionSectionProps, BasePrimitiveProps, BoundPropertyProps, BuiltInExtension, ButtonProps, CentralContentDefinition, ChildWindowOptions, ChildWindowProps, ColorPickerProps, ColorPropertyLineProps, ComboBoxOption, 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, InspectorOptions, LinkProps, ListItem, NumberInputPropertyLineProps, PaneProps, PersonMetadata, PrimitiveProps, PropertyHooks, PropertyLineProps, SceneExplorerCommand, SceneExplorerCommandProvider, SceneExplorerSection, SectionsImperativeRef, ServiceDefinition, ServiceFactory, SidePaneDefinition, SpinButtonProps, SwitchProps, SyncedSliderProps, TensorPropertyLineProps, TextInputProps, TextareaProps, ToolbarItemDefinition };
package/lib/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { A as Accordion, h as AccordionSection, r as AttachDebugLayer, aF as BooleanBadgePropertyLine, v as BoundProperty, x as BuiltInsExtensionFeed, b as Button, B as ButtonLine, ac as Checkbox, e as CheckboxPropertyLine, C as Collapse, am as Color3GradientComponent, aC as Color3GradientList, aG as Color3PropertyLine, an as Color4GradientComponent, aD as Color4GradientList, aH as Color4PropertyLine, ad as ColorPickerPopup, ao as ColorStepGradientComponent, ag as ComboBox, a7 as ConstructorFactory, q as ConvertOptions, D as DebugServiceIdentity, s as DetachDebugLayer, ah as DraggableLine, ai as Dropdown, E as ExtensibleAccordion, al as FactorGradientComponent, aB as FactorGradientList, F as FileUploadLine, a3 as GetPropertyDescriptor, aI as HexPropertyLine, ap as InfoLabel, ae as InputHexField, af as InputHsvField, I as Inspector, a2 as InterceptFunction, a5 as InterceptProperty, a4 as IsPropertyReadonly, aM as LineContainer, L as Link, aK as LinkPropertyLine, w as LinkToEntityPropertyLine, aq as List, a1 as MakeDialogTeachingMoment, M as MakeLazyComponent, j as MakePopoverTeachingMoment, K as MakePropertyHook, a0 as MakeTeachingMoment, ar as MessageBar, aj as NumberDropdown, N as NumberDropdownPropertyLine, aJ as NumberInputPropertyLine, a6 as ObservableCollection, aE as Pane, aN as PlaceholderPropertyLine, as as PositionedPopover, m as PropertiesServiceIdentity, aL as PropertyLine, aS as QuaternionPropertyLine, aR as RotationVectorPropertyLine, g as SceneContextIdentity, n as SceneExplorerServiceIdentity, at as SearchBar, au as SearchBox, a9 as SelectionServiceDefinition, a8 as SelectionServiceIdentity, aa as SettingsContextIdentity, o as SettingsServiceIdentity, f as ShellServiceIdentity, ab as ShowInspector, l as SidePaneContainer, av as SpinButton, d as SpinButtonPropertyLine, p as StatsServiceIdentity, ak as StringDropdown, t as StringDropdownPropertyLine, aO as StringifiedPropertyLine, aw as Switch, S as SwitchPropertyLine, ax as SyncedSliderInput, a as SyncedSliderPropertyLine, k as TeachingMoment, aP as TextAreaPropertyLine, az as TextInput, c as TextInputPropertyLine, aQ as TextPropertyLine, ay as Textarea, aA as ToggleButton, T as ToolsServiceIdentity, aT as Vector2PropertyLine, V as Vector3PropertyLine, aU as Vector4PropertyLine, $ as useAngleConverters, Y as useAsyncResource, G as useColor3Property, H as useColor4Property, Z as useCompactMode, Q as useEventfulState, O as useInterceptObservable, R as useObservableCollection, u as useObservableState, U as useOrderedObservableCollection, W as usePollingObservable, y as useProperty, J as useQuaternionProperty, X as useResource, _ as useSidePaneDockOverrides, z as useVector3Property } from './index-BgzFAhky.js';
1
+ export { A as Accordion, h as AccordionSection, r as AttachDebugLayer, aH as BooleanBadgePropertyLine, v as BoundProperty, y as BuiltInsExtensionFeed, b as Button, B as ButtonLine, ad as Checkbox, e as CheckboxPropertyLine, aC as ChildWindow, C as Collapse, an as Color3GradientComponent, aE as Color3GradientList, aI as Color3PropertyLine, ao as Color4GradientComponent, aF as Color4GradientList, aJ as Color4PropertyLine, ae as ColorPickerPopup, ap as ColorStepGradientComponent, ah as ComboBox, a8 as ConstructorFactory, q as ConvertOptions, D as DebugServiceIdentity, s as DetachDebugLayer, ai as DraggableLine, aj as Dropdown, E as ExtensibleAccordion, am as FactorGradientComponent, aD as FactorGradientList, F as FileUploadLine, a4 as GetPropertyDescriptor, aK as HexPropertyLine, aq as InfoLabel, af as InputHexField, ag as InputHsvField, I as Inspector, a3 as InterceptFunction, a6 as InterceptProperty, a5 as IsPropertyReadonly, aO as LineContainer, L as Link, aM as LinkPropertyLine, w as LinkToEntityPropertyLine, ar as List, a2 as MakeDialogTeachingMoment, M as MakeLazyComponent, j as MakePopoverTeachingMoment, O as MakePropertyHook, a1 as MakeTeachingMoment, as as MessageBar, ak as NumberDropdown, N as NumberDropdownPropertyLine, aL as NumberInputPropertyLine, a7 as ObservableCollection, aG as Pane, aP as PlaceholderPropertyLine, at as PositionedPopover, m as PropertiesServiceIdentity, aN as PropertyLine, aU as QuaternionPropertyLine, aT as RotationVectorPropertyLine, g as SceneContextIdentity, n as SceneExplorerServiceIdentity, au as SearchBar, av as SearchBox, aa as SelectionServiceDefinition, a9 as SelectionServiceIdentity, ab as SettingsContextIdentity, o as SettingsServiceIdentity, f as ShellServiceIdentity, ac as ShowInspector, l as SidePaneContainer, aw as SpinButton, d as SpinButtonPropertyLine, p as StatsServiceIdentity, al as StringDropdown, t as StringDropdownPropertyLine, aQ as StringifiedPropertyLine, ax as Switch, S as SwitchPropertyLine, ay as SyncedSliderInput, a as SyncedSliderPropertyLine, k as TeachingMoment, aR as TextAreaPropertyLine, aA as TextInput, c as TextInputPropertyLine, aS as TextPropertyLine, az as Textarea, x as Theme, aB as ToggleButton, T as ToolsServiceIdentity, aV as Vector2PropertyLine, V as Vector3PropertyLine, aW as Vector4PropertyLine, a0 as useAngleConverters, Z as useAsyncResource, H as useColor3Property, J as useColor4Property, _ as useCompactMode, R as useEventfulState, Q as useInterceptObservable, U as useObservableCollection, u as useObservableState, W as useOrderedObservableCollection, X as usePollingObservable, z as useProperty, K as useQuaternionProperty, Y as useResource, $ as useSidePaneDockOverrides, G as useVector3Property } from './index-2Bq-qBwV.js';
2
2
  import 'react/jsx-runtime';
3
3
  import 'react';
4
4
  import '@babylonjs/core/Maths/math.color.js';
@@ -11,6 +11,7 @@ import '@babylonjs/core/Misc/typeStore.js';
11
11
  import 'usehooks-ts';
12
12
  import '@babylonjs/core/Misc/asyncLock.js';
13
13
  import '@babylonjs/core/Misc/deferred.js';
14
+ import '@babylonjs/core/Misc/logger.js';
14
15
  import '@babylonjs/core/Maths/math.scalar.functions.js';
15
16
  import '@fluentui-contrib/react-virtualizer';
16
17
  import '@babylonjs/addons/msdfText/fontAsset.js';
@@ -33,7 +34,6 @@ import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollectionStrate
33
34
  import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerSceneExtension.js';
34
35
  import '@babylonjs/core/Misc/pressureObserverWrapper.js';
35
36
  import '@babylonjs/core/Engines/abstractEngine.js';
36
- import '@babylonjs/core/Misc/logger.js';
37
37
  import 'react-dom/client';
38
38
  import '@babylonjs/core/FrameGraph/frameGraphUtils.js';
39
39
  import '@babylonjs/core/Gizmos/cameraGizmo.js';
@@ -100,12 +100,16 @@ import '@babylonjs/core/Materials/Textures/baseTexture.js';
100
100
  import '@babylonjs/core/Materials/Textures/multiRenderTarget.js';
101
101
  import '@babylonjs/core/Materials/Textures/renderTargetTexture.js';
102
102
  import '@babylonjs/core/Materials/Textures/thinTexture.js';
103
+ import '@babylonjs/core/Events/keyboardEvents.js';
104
+ import '@babylonjs/core/Events/pointerEvents.js';
105
+ import '@babylonjs/core/Materials/Textures/htmlElementTexture.js';
106
+ import '@babylonjs/core/Materials/shaderMaterial.js';
107
+ import '@babylonjs/core/Meshes/Builders/planeBuilder.js';
103
108
  import '@babylonjs/core/Lights/Clustered/clusteredLightContainer.js';
104
109
  import '@babylonjs/core/Rendering/boundingBoxRenderer.js';
105
110
  import '@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipelineManagerSceneComponent.js';
106
111
  import '@babylonjs/core/Sprites/spriteSceneComponent.js';
107
112
  import '@babylonjs/core/Materials/Textures/dynamicTexture.js';
108
- import '@babylonjs/core/Events/pointerEvents.js';
109
113
  import '@babylonjs/core/Engines/engineStore.js';
110
114
  import '@babylonjs/core/Misc/uniqueIdGenerator.js';
111
115
  import '@babylonjs/core/Debug/debugLayer.js';
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,5 +1,5 @@
1
1
  import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
2
- import { P as Popover, b as Button, c as TextInputPropertyLine, d as SpinButtonPropertyLine, e as CheckboxPropertyLine, V as Vector3PropertyLine, f as ShellServiceIdentity, g as SceneContextIdentity, u as useObservableState, A as Accordion, h as AccordionSection } from './index-BgzFAhky.js';
2
+ import { P as Popover, b as Button, c as TextInputPropertyLine, d as SpinButtonPropertyLine, e as CheckboxPropertyLine, V as Vector3PropertyLine, f as ShellServiceIdentity, g as SceneContextIdentity, u as useObservableState, A as Accordion, h as AccordionSection } from './index-2Bq-qBwV.js';
3
3
  import { SettingsRegular, CollectionsAdd20Regular } from '@fluentui/react-icons';
4
4
  import '@babylonjs/core/Particles/webgl2ParticleSystem.js';
5
5
  import { MeshBuilder } from '@babylonjs/core/Meshes/meshBuilder.js';
@@ -26,6 +26,7 @@ import '@babylonjs/core/Misc/typeStore.js';
26
26
  import 'usehooks-ts';
27
27
  import '@babylonjs/core/Misc/asyncLock.js';
28
28
  import '@babylonjs/core/Misc/deferred.js';
29
+ import '@babylonjs/core/Misc/logger.js';
29
30
  import '@babylonjs/core/Maths/math.scalar.functions.js';
30
31
  import '@fluentui-contrib/react-virtualizer';
31
32
  import '@babylonjs/addons/msdfText/fontAsset.js';
@@ -46,7 +47,6 @@ import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollectionStrate
46
47
  import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerSceneExtension.js';
47
48
  import '@babylonjs/core/Misc/pressureObserverWrapper.js';
48
49
  import '@babylonjs/core/Engines/abstractEngine.js';
49
- import '@babylonjs/core/Misc/logger.js';
50
50
  import 'react-dom/client';
51
51
  import '@babylonjs/core/FrameGraph/frameGraphUtils.js';
52
52
  import '@babylonjs/core/Gizmos/cameraGizmo.js';
@@ -107,12 +107,16 @@ import '@babylonjs/core/Materials/Textures/baseTexture.js';
107
107
  import '@babylonjs/core/Materials/Textures/multiRenderTarget.js';
108
108
  import '@babylonjs/core/Materials/Textures/renderTargetTexture.js';
109
109
  import '@babylonjs/core/Materials/Textures/thinTexture.js';
110
+ import '@babylonjs/core/Events/keyboardEvents.js';
111
+ import '@babylonjs/core/Events/pointerEvents.js';
112
+ import '@babylonjs/core/Materials/Textures/htmlElementTexture.js';
113
+ import '@babylonjs/core/Materials/shaderMaterial.js';
114
+ import '@babylonjs/core/Meshes/Builders/planeBuilder.js';
110
115
  import '@babylonjs/core/Lights/Clustered/clusteredLightContainer.js';
111
116
  import '@babylonjs/core/Rendering/boundingBoxRenderer.js';
112
117
  import '@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipelineManagerSceneComponent.js';
113
118
  import '@babylonjs/core/Sprites/spriteSceneComponent.js';
114
119
  import '@babylonjs/core/Materials/Textures/dynamicTexture.js';
115
- import '@babylonjs/core/Events/pointerEvents.js';
116
120
  import '@babylonjs/core/Engines/engineStore.js';
117
121
  import '@babylonjs/core/Misc/uniqueIdGenerator.js';
118
122
  import '@babylonjs/core/Debug/debugLayer.js';
@@ -531,4 +535,4 @@ var quickCreateToolsService = {
531
535
  };
532
536
 
533
537
  export { CreateToolsServiceDefinition, quickCreateToolsService as default };
534
- //# sourceMappingURL=quickCreateToolsService-Bg2plbI-.js.map
538
+ //# sourceMappingURL=quickCreateToolsService-DEdXDqIl.js.map