@babylonjs/inspector 8.50.2 → 8.50.4
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/{extensionsListService-mLeB6usr.js → extensionsListService-CSNgtWE2.js} +3 -2
- package/lib/{extensionsListService-mLeB6usr.js.map → extensionsListService-CSNgtWE2.js.map} +1 -1
- package/lib/{index-xdZE0cq5.js → index-DNdlSwwf.js} +231 -70
- package/lib/index-DNdlSwwf.js.map +1 -0
- package/lib/index.d.ts +21 -10
- package/lib/index.js +2 -1
- package/lib/index.js.map +1 -1
- package/lib/{quickCreateToolsService-BhUIP4Xi.js → quickCreateToolsService-87Wg6d7G.js} +3 -2
- package/lib/{quickCreateToolsService-BhUIP4Xi.js.map → quickCreateToolsService-87Wg6d7G.js.map} +1 -1
- package/lib/{reflectorService-C9p7d-YK.js → reflectorService-CUscktdu.js} +3 -2
- package/lib/{reflectorService-C9p7d-YK.js.map → reflectorService-CUscktdu.js.map} +1 -1
- package/package.json +1 -1
- package/lib/index-xdZE0cq5.js.map +0 -1
package/lib/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { ComponentType, ComponentProps, FunctionComponent, PropsWithChildren, Fo
|
|
|
4
4
|
import { IDisposable as IDisposable$1, Nullable as Nullable$1, IReadonlyObservable as IReadonlyObservable$2, Observable as Observable$1, Scene as Scene$1, IInspectorOptions as IInspectorOptions$1 } from '@babylonjs/core/index.js';
|
|
5
5
|
import { IReadonlyObservable as IReadonlyObservable$1, Observable as Observable$2 } from '@babylonjs/core/Misc/observable.js';
|
|
6
6
|
import { Nullable as Nullable$2 } from '@babylonjs/core/types.js';
|
|
7
|
+
import * as _fluentui_tokens from '@fluentui/tokens';
|
|
7
8
|
import { FluentProviderProps, PositioningImperativeRef, OnOpenChangeData, SpinnerProps, PositioningShorthand } 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';
|
|
@@ -364,6 +365,10 @@ interface ISettingsContext extends IService<typeof SettingsContextIdentity> {
|
|
|
364
365
|
* Shows the Properties pane when an entity is selected.
|
|
365
366
|
*/
|
|
366
367
|
showPropertiesOnEntitySelection: boolean;
|
|
368
|
+
/**
|
|
369
|
+
* Highlight the selected mesh in the scene using the selection outline layer.
|
|
370
|
+
*/
|
|
371
|
+
highlightSelectedEntity: boolean;
|
|
367
372
|
/**
|
|
368
373
|
* Observable that fires whenever a setting changes.
|
|
369
374
|
*/
|
|
@@ -462,6 +467,9 @@ type SidePaneContainer$1 = {
|
|
|
462
467
|
readonly isDocked: boolean;
|
|
463
468
|
dock(): void;
|
|
464
469
|
undock(): void;
|
|
470
|
+
readonly isCollapsed: boolean;
|
|
471
|
+
collapse(): void;
|
|
472
|
+
expand(): void;
|
|
465
473
|
};
|
|
466
474
|
/**
|
|
467
475
|
* Describes content that can be added to the shell's central area (between the side panes and toolbars - e.g. the main content).
|
|
@@ -547,6 +555,14 @@ type ShellServiceOptions = {
|
|
|
547
555
|
* In "compact" mode, toolbars are displayed at the top and bottom of the left and right side panes.
|
|
548
556
|
*/
|
|
549
557
|
toolbarMode?: ToolbarMode;
|
|
558
|
+
/**
|
|
559
|
+
* Whether the left side pane should start collapsed. Default is false.
|
|
560
|
+
*/
|
|
561
|
+
leftPaneDefaultCollapsed?: boolean;
|
|
562
|
+
/**
|
|
563
|
+
* Whether the right side pane should start collapsed. Default is false.
|
|
564
|
+
*/
|
|
565
|
+
rightPaneDefaultCollapsed?: boolean;
|
|
550
566
|
/**
|
|
551
567
|
* A function that can remap the default location of side panes.
|
|
552
568
|
* @param sidePane The side pane to remap.
|
|
@@ -827,6 +843,7 @@ declare function ExtensibleAccordion<ContextT = unknown>(props: PropsWithChildre
|
|
|
827
843
|
*/
|
|
828
844
|
declare const SidePaneContainer: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
829
845
|
|
|
846
|
+
declare function useTheme(invert?: boolean): _fluentui_tokens.Theme;
|
|
830
847
|
declare const Theme: FunctionComponent<FluentProviderProps & {
|
|
831
848
|
invert?: boolean;
|
|
832
849
|
}>;
|
|
@@ -25906,10 +25923,7 @@ declare class WebGPUEngine extends ThinWebGPUEngine {
|
|
|
25906
25923
|
* @param resolveColors If true, resolve the color textures (default: true) - still subject to texture.resolveMSAAColors
|
|
25907
25924
|
*/
|
|
25908
25925
|
resolveFramebuffer(texture: RenderTargetWrapper, resolveColors?: boolean): void;
|
|
25909
|
-
|
|
25910
|
-
* Unbind the current render target
|
|
25911
|
-
*/
|
|
25912
|
-
restoreDefaultFramebuffer(): void;
|
|
25926
|
+
restoreDefaultFramebuffer(unbindOnly?: boolean): void;
|
|
25913
25927
|
/**
|
|
25914
25928
|
* @internal
|
|
25915
25929
|
*/
|
|
@@ -60779,7 +60793,6 @@ interface AbstractEngineOptions {
|
|
|
60779
60793
|
*/
|
|
60780
60794
|
useHighPrecisionMatrix?: boolean;
|
|
60781
60795
|
/**
|
|
60782
|
-
* @experimental
|
|
60783
60796
|
* LargeWorldRendering helps avoid floating point imprecision of rendering large worlds by
|
|
60784
60797
|
* 1. Forcing highPrecisionMatrices (matrix computations in 64 bits instead of 32)
|
|
60785
60798
|
* 2. Enabling floatingOriginMode in all scenes -- offsetting position-related uniform and attribute values before passing to shader so that active camera is centered at origin and world is offset by active camera position
|
|
@@ -61371,8 +61384,9 @@ declare abstract class AbstractEngine {
|
|
|
61371
61384
|
abstract updateTextureWrappingMode(texture: InternalTexture, wrapU: Nullable<number>, wrapV?: Nullable<number>, wrapR?: Nullable<number>): void;
|
|
61372
61385
|
/**
|
|
61373
61386
|
* Unbind the current render target and bind the default framebuffer
|
|
61387
|
+
* @param unbindOnly defines a boolean indicating that the function should only unbind the current render target without binding the default framebuffer
|
|
61374
61388
|
*/
|
|
61375
|
-
abstract restoreDefaultFramebuffer(): void;
|
|
61389
|
+
abstract restoreDefaultFramebuffer(unbindOnly?: boolean): void;
|
|
61376
61390
|
/**
|
|
61377
61391
|
* Draw a list of indexed primitives
|
|
61378
61392
|
* @param fillMode defines the primitive to use
|
|
@@ -68579,7 +68593,6 @@ interface SceneOptions {
|
|
|
68579
68593
|
*/
|
|
68580
68594
|
useClonedMeshMap?: boolean;
|
|
68581
68595
|
/**
|
|
68582
|
-
* @experimental
|
|
68583
68596
|
* When enabled, the scene can handle large world coordinate rendering without jittering caused by floating point imprecision on the GPU.
|
|
68584
68597
|
* This mode offsets matrices and position-related attribute values before passing to shaders, centering camera at origin and offsetting other scene objects by camera active position.
|
|
68585
68598
|
*
|
|
@@ -70101,13 +70114,11 @@ declare class Scene implements IAnimatable, IClipPlanesHolder, IAssetContainer {
|
|
|
70101
70114
|
setSceneUniformBuffer(ubo: UniformBuffer): void;
|
|
70102
70115
|
private _floatingOriginScene;
|
|
70103
70116
|
/**
|
|
70104
|
-
* @experimental
|
|
70105
70117
|
* True if floatingOriginMode was passed to engine or this scene creation otions.
|
|
70106
70118
|
* This mode avoids floating point imprecision in huge coordinate system by offsetting uniform values before passing to shader, centering camera at origin and displacing rest of scene by camera position
|
|
70107
70119
|
*/
|
|
70108
70120
|
get floatingOriginMode(): boolean;
|
|
70109
70121
|
/**
|
|
70110
|
-
* @experimental
|
|
70111
70122
|
* When floatingOriginMode is enabled, offset is equal to the eye position. Default to ZeroReadonly when mode is disabled.
|
|
70112
70123
|
*/
|
|
70113
70124
|
get floatingOriginOffset(): Vector3;
|
|
@@ -73812,5 +73823,5 @@ declare const Vector2PropertyLine: FunctionComponent<TensorPropertyLineProps<Vec
|
|
|
73812
73823
|
declare const Vector3PropertyLine: FunctionComponent<TensorPropertyLineProps<Vector3>>;
|
|
73813
73824
|
declare const Vector4PropertyLine: FunctionComponent<TensorPropertyLineProps<Vector4>>;
|
|
73814
73825
|
|
|
73815
|
-
export { Accordion, AccordionSection, AccordionSectionItem, AttachDebugLayer, BooleanBadgePropertyLine, BoundProperty, BuiltInsExtensionFeed, Button, ButtonLine, Checkbox, CheckboxPropertyLine, ChildWindow, Collapse, Color3GradientComponent, Color3GradientList, Color3PropertyLine, Color4GradientComponent, Color4GradientList, Color4PropertyLine, ColorPickerPopup, ColorStepGradientComponent, ComboBox, ComboBoxPropertyLine, ConstructorFactory, ConvertOptions, DebugServiceIdentity, DetachDebugLayer, DraggableLine, Dropdown, EntitySelector, ErrorBoundary, ExtensibleAccordion, FactorGradientComponent, FactorGradientList, FileUploadLine, GetPropertyDescriptor, HexPropertyLine, InfoLabel, InputHexField, InputHsvField, Inspector, InterceptFunction, InterceptProperty, IsPropertyReadonly, LineContainer, Link, LinkPropertyLine, LinkToEntityPropertyLine, List, MakeDialogTeachingMoment, MakeLazyComponent, MakePopoverTeachingMoment, MakePropertyHook, MakeTeachingMoment, MaterialSelector, MessageBar, NodeSelector, NumberDropdown, NumberDropdownPropertyLine, NumberInputPropertyLine, ObservableCollection, Pane, PlaceholderPropertyLine, Popover, PositionedPopover, PropertiesServiceIdentity, Property, PropertyContext, PropertyLine, QuaternionPropertyLine, RotationVectorPropertyLine, SceneContextIdentity, SceneExplorerServiceIdentity, SearchBar, SearchBox, SelectionServiceDefinition, SelectionServiceIdentity, SettingsContextIdentity, SettingsServiceIdentity, ShellServiceIdentity, ShowInspector, SidePaneContainer, SkeletonSelector, SpinButton, SpinButtonPropertyLine, StatsServiceIdentity, StringDropdown, StringDropdownPropertyLine, StringifiedPropertyLine, Switch, SwitchPropertyLine, SyncedSliderInput, SyncedSliderPropertyLine, TeachingMoment, TextAreaPropertyLine, TextInput, TextInputPropertyLine, TextPropertyLine, Textarea, TextureSelector, TextureUpload, Theme, ToastProvider, ToggleButton, ToolsServiceIdentity, Tooltip, UploadButton, Vector2PropertyLine, Vector3PropertyLine, Vector4PropertyLine, useAngleConverters, useAsyncResource, useColor3Property, useColor4Property, useCompactMode, useDisableCopy, useEventListener, useEventfulState, useInterceptObservable, useKeyListener, useKeyState, useObservableCollection, useObservableState, useOrderedObservableCollection, usePollingObservable, useProperty, usePropertyChangedNotifier, useQuaternionProperty, useResource, useSidePaneDockOverrides, useToast, useVector3Property };
|
|
73826
|
+
export { Accordion, AccordionSection, AccordionSectionItem, AttachDebugLayer, BooleanBadgePropertyLine, BoundProperty, BuiltInsExtensionFeed, Button, ButtonLine, Checkbox, CheckboxPropertyLine, ChildWindow, Collapse, Color3GradientComponent, Color3GradientList, Color3PropertyLine, Color4GradientComponent, Color4GradientList, Color4PropertyLine, ColorPickerPopup, ColorStepGradientComponent, ComboBox, ComboBoxPropertyLine, ConstructorFactory, ConvertOptions, DebugServiceIdentity, DetachDebugLayer, DraggableLine, Dropdown, EntitySelector, ErrorBoundary, ExtensibleAccordion, FactorGradientComponent, FactorGradientList, FileUploadLine, GetPropertyDescriptor, HexPropertyLine, InfoLabel, InputHexField, InputHsvField, Inspector, InterceptFunction, InterceptProperty, IsPropertyReadonly, LineContainer, Link, LinkPropertyLine, LinkToEntityPropertyLine, List, MakeDialogTeachingMoment, MakeLazyComponent, MakePopoverTeachingMoment, MakePropertyHook, MakeTeachingMoment, MaterialSelector, MessageBar, NodeSelector, NumberDropdown, NumberDropdownPropertyLine, NumberInputPropertyLine, ObservableCollection, Pane, PlaceholderPropertyLine, Popover, PositionedPopover, PropertiesServiceIdentity, Property, PropertyContext, PropertyLine, QuaternionPropertyLine, RotationVectorPropertyLine, SceneContextIdentity, SceneExplorerServiceIdentity, SearchBar, SearchBox, SelectionServiceDefinition, SelectionServiceIdentity, SettingsContextIdentity, SettingsServiceIdentity, ShellServiceIdentity, ShowInspector, SidePaneContainer, SkeletonSelector, SpinButton, SpinButtonPropertyLine, StatsServiceIdentity, StringDropdown, StringDropdownPropertyLine, StringifiedPropertyLine, Switch, SwitchPropertyLine, SyncedSliderInput, SyncedSliderPropertyLine, TeachingMoment, TextAreaPropertyLine, TextInput, TextInputPropertyLine, TextPropertyLine, Textarea, TextureSelector, TextureUpload, Theme, ToastProvider, ToggleButton, ToolsServiceIdentity, Tooltip, UploadButton, Vector2PropertyLine, Vector3PropertyLine, Vector4PropertyLine, useAngleConverters, useAsyncResource, useColor3Property, useColor4Property, useCompactMode, useDisableCopy, useEventListener, useEventfulState, useInterceptObservable, useKeyListener, useKeyState, useObservableCollection, useObservableState, useOrderedObservableCollection, usePollingObservable, useProperty, usePropertyChangedNotifier, useQuaternionProperty, useResource, useSidePaneDockOverrides, useTheme, useToast, useVector3Property };
|
|
73816
73827
|
export type { AcceptedDropdownValue, AccordionProps, AccordionSectionBlockProps, AccordionSectionItemProps, AccordionSectionProps, BasePrimitiveProps, BoundPropertyProps, BuiltInExtension, ButtonProps, CentralContentDefinition, ChildWindowOptions, ChildWindowProps, ColorPickerProps, ColorPropertyLineProps, ComboBoxOption, ComboBoxProps, DraggableLineProps, DropdownOption, DropdownProps, DynamicAccordionSection, DynamicAccordionSectionContent, EntityDisplayInfo, EntitySelectorProps, ExtensionMetadata, ExtensionModule, FunctionHooks, HexPropertyLineProps, IDebugService, IExtensionFeed, IExtensionMetadataQuery, IPropertiesService, ISceneContext, ISceneExplorerService, ISelectionService, IService, ISettingsContext, ISettingsService, IShellService, IStatsService, IToolsService, ImmutablePrimitiveProps, InfoLabelParentProps, InfoLabelProps, InputHexProps, InspectorOptions, InspectorToken, LinkProps, ListItem, MaterialSelectorProps, NodeSelectorProps, NumberInputPropertyLineProps, PaneProps, PersonMetadata, PrimitiveProps, PropertyChangeInfo, PropertyHooks, PropertyLineProps, PropertyProps, SceneExplorerCommand, SceneExplorerCommandProvider, SceneExplorerSection, SectionsImperativeRef, ServiceDefinition, ServiceFactory, SidePaneDefinition, SkeletonSelectorProps, SpinButtonProps, SwitchProps, SyncedSliderProps, TensorPropertyLineProps, TextInputProps, TextareaProps, TextureSelectorProps, ToolbarItemDefinition, TooltipProps, WindowOptions };
|
package/lib/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as Accordion, d as AccordionSection,
|
|
1
|
+
export { A as Accordion, d as AccordionSection, aj as AccordionSectionItem, p as AttachDebugLayer, a_ as BooleanBadgePropertyLine, t as BoundProperty, H as BuiltInsExtensionFeed, B as Button, e as ButtonLine, ak as Checkbox, C as CheckboxPropertyLine, aT as ChildWindow, al as Collapse, aw as Color3GradientComponent, aW as Color3GradientList, a$ as Color3PropertyLine, ax as Color4GradientComponent, aX as Color4GradientList, b0 as Color4PropertyLine, am as ColorPickerPopup, ay as ColorStepGradientComponent, ap as ComboBox, b1 as ComboBoxPropertyLine, ab as ConstructorFactory, o as ConvertOptions, D as DebugServiceIdentity, q as DetachDebugLayer, aq as DraggableLine, ar as Dropdown, au as EntitySelector, E as ErrorBoundary, x as ExtensibleAccordion, av as FactorGradientComponent, aV as FactorGradientList, aU as FileUploadLine, a7 as GetPropertyDescriptor, b2 as HexPropertyLine, az as InfoLabel, an as InputHexField, ao as InputHsvField, I as Inspector, a6 as InterceptFunction, a9 as InterceptProperty, a8 as IsPropertyReadonly, b5 as LineContainer, L as Link, b3 as LinkPropertyLine, w as LinkToEntityPropertyLine, aB as List, a5 as MakeDialogTeachingMoment, aA as MakeLazyComponent, h as MakePopoverTeachingMoment, R as MakePropertyHook, a4 as MakeTeachingMoment, aC as MaterialSelector, M as MessageBar, aD as NodeSelector, as as NumberDropdown, r as NumberDropdownPropertyLine, N as NumberInputPropertyLine, aa as ObservableCollection, aY as Pane, b6 as PlaceholderPropertyLine, P as Popover, aE as PositionedPopover, k as PropertiesServiceIdentity, v as Property, F as PropertyContext, b4 as PropertyLine, bd as QuaternionPropertyLine, bc as RotationVectorPropertyLine, b as SceneContextIdentity, l as SceneExplorerServiceIdentity, aF as SearchBar, aG as SearchBox, ad as SelectionServiceDefinition, ac as SelectionServiceIdentity, ae as SettingsContextIdentity, m as SettingsServiceIdentity, a as ShellServiceIdentity, af as ShowInspector, j as SidePaneContainer, aH as SkeletonSelector, aI as SpinButton, S as SpinButtonPropertyLine, n as StatsServiceIdentity, at as StringDropdown, s as StringDropdownPropertyLine, b7 as StringifiedPropertyLine, aJ as Switch, b8 as SwitchPropertyLine, aK as SyncedSliderInput, b9 as SyncedSliderPropertyLine, i as TeachingMoment, ba as TextAreaPropertyLine, aM as TextInput, T as TextInputPropertyLine, bb as TextPropertyLine, aL as Textarea, aN as TextureSelector, aZ as TextureUpload, z as Theme, aO as ToastProvider, aQ as ToggleButton, f as ToolsServiceIdentity, aR as Tooltip, aS as UploadButton, be as Vector2PropertyLine, V as Vector3PropertyLine, bf as Vector4PropertyLine, a3 as useAngleConverters, $ as useAsyncResource, K as useColor3Property, O as useColor4Property, a0 as useCompactMode, a1 as useDisableCopy, ai as useEventListener, W as useEventfulState, U as useInterceptObservable, ag as useKeyListener, ah as useKeyState, X as useObservableCollection, c as useObservableState, Y as useOrderedObservableCollection, Z as usePollingObservable, u as useProperty, G as usePropertyChangedNotifier, Q as useQuaternionProperty, _ as useResource, a2 as useSidePaneDockOverrides, y as useTheme, aP as useToast, J as useVector3Property } from './index-DNdlSwwf.js';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@fluentui/react-components';
|
|
@@ -146,6 +146,7 @@ import '@babylonjs/core/Loading/sceneLoader.js';
|
|
|
146
146
|
import '@babylonjs/core/Misc/filesInput.js';
|
|
147
147
|
import '@babylonjs/loaders/glTF/glTFFileLoader.js';
|
|
148
148
|
import '@babylonjs/loaders/glTF/glTFValidation.js';
|
|
149
|
+
import '@babylonjs/core/Layers/selectionOutlineLayer.js';
|
|
149
150
|
import '@babylonjs/core/Engines/engineStore.js';
|
|
150
151
|
import '@babylonjs/core/Debug/debugLayer.js';
|
|
151
152
|
import '@babylonjs/core/Misc/lazy.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, T as TextInputPropertyLine, S as SpinButtonPropertyLine, C as CheckboxPropertyLine, V as Vector3PropertyLine, u as useProperty, M as MessageBar, a as ShellServiceIdentity, b as SceneContextIdentity, c as useObservableState, A as Accordion, d as AccordionSection } from './index-
|
|
2
|
+
import { P as Popover, B as Button, T as TextInputPropertyLine, S as SpinButtonPropertyLine, C as CheckboxPropertyLine, V as Vector3PropertyLine, u as useProperty, M as MessageBar, a as ShellServiceIdentity, b as SceneContextIdentity, c as useObservableState, A as Accordion, d as AccordionSection } from './index-DNdlSwwf.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';
|
|
@@ -153,6 +153,7 @@ import '@babylonjs/core/Misc/environmentTextureTools.js';
|
|
|
153
153
|
import '@babylonjs/core/Loading/sceneLoader.js';
|
|
154
154
|
import '@babylonjs/loaders/glTF/glTFFileLoader.js';
|
|
155
155
|
import '@babylonjs/loaders/glTF/glTFValidation.js';
|
|
156
|
+
import '@babylonjs/core/Layers/selectionOutlineLayer.js';
|
|
156
157
|
import '@babylonjs/core/Engines/engineStore.js';
|
|
157
158
|
import '@babylonjs/core/Debug/debugLayer.js';
|
|
158
159
|
import '@babylonjs/core/Misc/lazy.js';
|
|
@@ -704,4 +705,4 @@ var quickCreateToolsService = {
|
|
|
704
705
|
};
|
|
705
706
|
|
|
706
707
|
export { CreateToolsServiceDefinition, quickCreateToolsService as default };
|
|
707
|
-
//# sourceMappingURL=quickCreateToolsService-
|
|
708
|
+
//# sourceMappingURL=quickCreateToolsService-87Wg6d7G.js.map
|