@onerjs/inspector 8.50.4 → 8.50.6

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.
@@ -6720,10 +6720,10 @@ export type ModularBridgeOptions = {
6720
6720
  */
6721
6721
  name?: string;
6722
6722
  /**
6723
- * Whether the bridge should automatically start trying to connect.
6724
- * Defaults to false.
6723
+ * Whether the bridge should automatically enable trying to connect.
6724
+ * Defaults to true.
6725
6725
  */
6726
- autoStart?: boolean;
6726
+ autoEnable?: boolean;
6727
6727
  /**
6728
6728
  * Additional service definitions to register with the bridge container.
6729
6729
  */
@@ -7462,9 +7462,9 @@ export type BridgeServiceOptions = {
7462
7462
  */
7463
7463
  name: string;
7464
7464
  /**
7465
- * Whether to automatically start connecting when the service is created.
7465
+ * Whether to automatically enable connecting when the service is created.
7466
7466
  */
7467
- autoStart: boolean;
7467
+ autoEnable: boolean;
7468
7468
  };
7469
7469
  /**
7470
7470
  * Creates the service definition for the CLI Bridge Service.
@@ -7801,44 +7801,6 @@ declare module "@onerjs/inspector/modularTool/misc/assert" {
7801
7801
  */
7802
7802
  export function Assert(value: unknown): asserts value;
7803
7803
 
7804
- }
7805
- declare module "@onerjs/inspector/modularTool/hooks/useResizeHandle" {
7806
- export type GrowDirection = "end" | "start" | "up" | "down";
7807
- export type UseResizeHandleParams = {
7808
- /**
7809
- * The direction in which the element is considered growing in size ('end', 'start', 'up', or 'down').
7810
- */
7811
- growDirection: GrowDirection;
7812
- /**
7813
- * The name of the CSS variable that will be set on the wrapper element to reflect the current size of the element.
7814
- */
7815
- variableName: string;
7816
- /**
7817
- * A callback that will be called when the element is resized.
7818
- *
7819
- * @remarks The passed function should be memoized for better performance.
7820
- */
7821
- onChange?: (value: number) => void;
7822
- /**
7823
- * The minimum change allowed (e.g. the smallest negative number allowed).
7824
- */
7825
- minValue?: number;
7826
- /**
7827
- * The maximum change allowed (e.g. the largest positive number allowed).
7828
- */
7829
- maxValue?: number;
7830
- };
7831
- /**
7832
- * A custom hook that helps with element resizing.
7833
- * @param params The parameters for the resize handle.
7834
- * @returns An object containing refs and a function to set the value.
7835
- */
7836
- export function useResizeHandle(params: UseResizeHandleParams): {
7837
- elementRef: import("react").Dispatch<import("react").SetStateAction<HTMLElement | null>>;
7838
- handleRef: import("react").Dispatch<import("react").SetStateAction<HTMLElement | null>>;
7839
- setValue: (value: number) => void;
7840
- };
7841
-
7842
7804
  }
7843
7805
  declare module "@onerjs/inspector/modularTool/hooks/themeHooks" {
7844
7806
  import { ThemeMode } from "@onerjs/inspector/modularTool/services/themeService";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onerjs/inspector",
3
- "version": "8.50.4",
3
+ "version": "8.50.6",
4
4
  "module": "dist/babylon.inspector.bundle.js",
5
5
  "main": "dist/babylon.inspector.bundle.js",
6
6
  "esnext": "dist/babylon.inspector.bundle.js",
@@ -34,13 +34,13 @@
34
34
  "@types/react-dom": ">=16.0.9"
35
35
  },
36
36
  "devDependencies": {
37
- "@onerjs/addons": "8.50.4",
38
- "@onerjs/core": "8.50.4",
39
- "@onerjs/gui": "8.50.4",
40
- "@onerjs/gui-editor": "8.50.4",
41
- "@onerjs/loaders": "8.50.4",
42
- "@onerjs/materials": "8.50.4",
43
- "@onerjs/serializers": "8.50.4",
37
+ "@onerjs/addons": "8.50.6",
38
+ "@onerjs/core": "8.50.6",
39
+ "@onerjs/gui": "8.50.6",
40
+ "@onerjs/gui-editor": "8.50.6",
41
+ "@onerjs/loaders": "8.50.6",
42
+ "@onerjs/materials": "8.50.6",
43
+ "@onerjs/serializers": "8.50.6",
44
44
  "@dev/gui": "1.0.0",
45
45
  "react": "^18.2.0",
46
46
  "react-dom": "^18.2.0"