babylonjs-inspector 8.17.1 → 8.18.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.
@@ -4533,7 +4533,9 @@ declare module INSPECTOR.SharedUIComponents {
4533
4533
  onFilterChange(evt: React.ChangeEvent<HTMLInputElement>): void;
4534
4534
  onNewNodeRequested(name: string): void;
4535
4535
  onKeyDown(evt: React.KeyboardEvent): void;
4536
- render(): import("react/jsx-runtime").JSX.Element | null;
4536
+ renderFluent(): import("react/jsx-runtime").JSX.Element;
4537
+ renderOriginal(): import("react/jsx-runtime").JSX.Element | null;
4538
+ render(): import("react/jsx-runtime").JSX.Element;
4537
4539
  }
4538
4540
 
4539
4541
 
@@ -6425,6 +6427,26 @@ declare module INSPECTOR.SharedUIComponents {
6425
6427
 
6426
6428
 
6427
6429
 
6430
+ }
6431
+ declare module INSPECTOR {
6432
+
6433
+
6434
+ }
6435
+ declare module INSPECTOR.SharedUIComponents {
6436
+ type SearchBoxProps = {
6437
+ items: string[];
6438
+ onItemSelected: (item: string) => void;
6439
+ title?: string;
6440
+ };
6441
+ /**
6442
+ * SearchBox component that displays a popup with search functionality
6443
+ * @param props - The component props
6444
+ * @returns The search box component
6445
+ */
6446
+ export var SearchBox: React.FunctionComponent<SearchBoxProps>;
6447
+
6448
+
6449
+
6428
6450
  }
6429
6451
  declare module INSPECTOR {
6430
6452
 
@@ -6435,7 +6457,28 @@ declare module INSPECTOR.SharedUIComponents {
6435
6457
  onChange: (val: string) => void;
6436
6458
  placeholder?: string;
6437
6459
  };
6438
- export const SearchBox: (props: SearchProps) => import("react/jsx-runtime").JSX.Element;
6460
+ export var SearchBar: import("react").ForwardRefExoticComponent<SearchProps & import("react").RefAttributes<HTMLInputElement>>;
6461
+
6462
+
6463
+
6464
+ }
6465
+ declare module INSPECTOR {
6466
+
6467
+
6468
+ }
6469
+ declare module INSPECTOR.SharedUIComponents {
6470
+ type PositionedPopoverProps = {
6471
+ x: number;
6472
+ y: number;
6473
+ visible: boolean;
6474
+ hide: () => void;
6475
+ };
6476
+ /**
6477
+ * PositionedPopover component that shows a popover at specific coordinates
6478
+ * @param props - The component props
6479
+ * @returns The positioned popover component
6480
+ */
6481
+ export var PositionedPopover: React.FunctionComponent<React.PropsWithChildren<PositionedPopoverProps>>;
6439
6482
 
6440
6483
 
6441
6484
 
@@ -6596,6 +6639,26 @@ declare module INSPECTOR.SharedUIComponents {
6596
6639
 
6597
6640
 
6598
6641
 
6642
+ }
6643
+ declare module INSPECTOR {
6644
+
6645
+
6646
+ }
6647
+ declare module INSPECTOR.SharedUIComponents {
6648
+ export type ComboBoxProps = {
6649
+ label: string;
6650
+ value: string[];
6651
+ onChange: (value: string) => void;
6652
+ };
6653
+ /**
6654
+ * Wrapper around a Fluent ComboBox that allows for filtering options
6655
+ * @param props
6656
+ * @returns
6657
+ */
6658
+ export var ComboBox: React.FunctionComponent<ComboBoxProps>;
6659
+
6660
+
6661
+
6599
6662
  }
6600
6663
  declare module INSPECTOR {
6601
6664
 
@@ -5557,6 +5557,8 @@ export class SearchBoxComponent extends React.Component<ISearchBoxComponentProps
5557
5557
  onNewNodeRequested(name: string): void;
5558
5558
  onKeyDown(evt: React.KeyboardEvent): void;
5559
5559
 
5560
+
5561
+
5560
5562
  }
5561
5563
 
5562
5564
  }
@@ -7301,6 +7303,22 @@ export const SpinButtonPropertyLine: FunctionComponent<SpinButtonProps & Propert
7301
7303
 
7302
7304
  }
7303
7305
  declare module "babylonjs-inspector/fluent/primitives/searchBox" {
7306
+ import { FunctionComponent } from "react";
7307
+ type SearchBoxProps = {
7308
+ items: string[];
7309
+ onItemSelected: (item: string) => void;
7310
+ title?: string;
7311
+ };
7312
+ /**
7313
+ * SearchBox component that displays a popup with search functionality
7314
+ * @param props - The component props
7315
+ * @returns The search box component
7316
+ */
7317
+ export const SearchBox: FunctionComponent<SearchBoxProps>;
7318
+ export {};
7319
+
7320
+ }
7321
+ declare module "babylonjs-inspector/fluent/primitives/searchBar" {
7304
7322
  type SearchProps = {
7305
7323
  onChange: (val: string) => void;
7306
7324
  placeholder?: string;
@@ -7308,6 +7326,23 @@ type SearchProps = {
7308
7326
 
7309
7327
  export {};
7310
7328
 
7329
+ }
7330
+ declare module "babylonjs-inspector/fluent/primitives/positionedPopover" {
7331
+ import { FunctionComponent, PropsWithChildren } from "react";
7332
+ type PositionedPopoverProps = {
7333
+ x: number;
7334
+ y: number;
7335
+ visible: boolean;
7336
+ hide: () => void;
7337
+ };
7338
+ /**
7339
+ * PositionedPopover component that shows a popover at specific coordinates
7340
+ * @param props - The component props
7341
+ * @returns The positioned popover component
7342
+ */
7343
+ export const PositionedPopover: FunctionComponent<PropsWithChildren<PositionedPopoverProps>>;
7344
+ export {};
7345
+
7311
7346
  }
7312
7347
  declare module "babylonjs-inspector/fluent/primitives/messageBar" {
7313
7348
  import { FunctionComponent } from "react";
@@ -7438,6 +7473,21 @@ export type DraggableLineProps = {
7438
7473
  };
7439
7474
  export const DraggableLine: React.FunctionComponent<DraggableLineProps>;
7440
7475
 
7476
+ }
7477
+ declare module "babylonjs-inspector/fluent/primitives/comboBox" {
7478
+ import { FunctionComponent } from "react";
7479
+ export type ComboBoxProps = {
7480
+ label: string;
7481
+ value: string[];
7482
+ onChange: (value: string) => void;
7483
+ };
7484
+ /**
7485
+ * Wrapper around a Fluent ComboBox that allows for filtering options
7486
+ * @param props
7487
+ * @returns
7488
+ */
7489
+ export const ComboBox: FunctionComponent<ComboBoxProps>;
7490
+
7441
7491
  }
7442
7492
  declare module "babylonjs-inspector/fluent/primitives/colorPicker" {
7443
7493
  import { FunctionComponent } from "react";
@@ -13466,7 +13516,9 @@ declare module INSPECTOR.SharedUIComponents {
13466
13516
  onFilterChange(evt: React.ChangeEvent<HTMLInputElement>): void;
13467
13517
  onNewNodeRequested(name: string): void;
13468
13518
  onKeyDown(evt: React.KeyboardEvent): void;
13469
- render(): import("react/jsx-runtime").JSX.Element | null;
13519
+ renderFluent(): import("react/jsx-runtime").JSX.Element;
13520
+ renderOriginal(): import("react/jsx-runtime").JSX.Element | null;
13521
+ render(): import("react/jsx-runtime").JSX.Element;
13470
13522
  }
13471
13523
 
13472
13524
 
@@ -15358,6 +15410,26 @@ declare module INSPECTOR.SharedUIComponents {
15358
15410
 
15359
15411
 
15360
15412
 
15413
+ }
15414
+ declare module INSPECTOR {
15415
+
15416
+
15417
+ }
15418
+ declare module INSPECTOR.SharedUIComponents {
15419
+ type SearchBoxProps = {
15420
+ items: string[];
15421
+ onItemSelected: (item: string) => void;
15422
+ title?: string;
15423
+ };
15424
+ /**
15425
+ * SearchBox component that displays a popup with search functionality
15426
+ * @param props - The component props
15427
+ * @returns The search box component
15428
+ */
15429
+ export var SearchBox: React.FunctionComponent<SearchBoxProps>;
15430
+
15431
+
15432
+
15361
15433
  }
15362
15434
  declare module INSPECTOR {
15363
15435
 
@@ -15368,7 +15440,28 @@ declare module INSPECTOR.SharedUIComponents {
15368
15440
  onChange: (val: string) => void;
15369
15441
  placeholder?: string;
15370
15442
  };
15371
- export const SearchBox: (props: SearchProps) => import("react/jsx-runtime").JSX.Element;
15443
+ export var SearchBar: import("react").ForwardRefExoticComponent<SearchProps & import("react").RefAttributes<HTMLInputElement>>;
15444
+
15445
+
15446
+
15447
+ }
15448
+ declare module INSPECTOR {
15449
+
15450
+
15451
+ }
15452
+ declare module INSPECTOR.SharedUIComponents {
15453
+ type PositionedPopoverProps = {
15454
+ x: number;
15455
+ y: number;
15456
+ visible: boolean;
15457
+ hide: () => void;
15458
+ };
15459
+ /**
15460
+ * PositionedPopover component that shows a popover at specific coordinates
15461
+ * @param props - The component props
15462
+ * @returns The positioned popover component
15463
+ */
15464
+ export var PositionedPopover: React.FunctionComponent<React.PropsWithChildren<PositionedPopoverProps>>;
15372
15465
 
15373
15466
 
15374
15467
 
@@ -15529,6 +15622,26 @@ declare module INSPECTOR.SharedUIComponents {
15529
15622
 
15530
15623
 
15531
15624
 
15625
+ }
15626
+ declare module INSPECTOR {
15627
+
15628
+
15629
+ }
15630
+ declare module INSPECTOR.SharedUIComponents {
15631
+ export type ComboBoxProps = {
15632
+ label: string;
15633
+ value: string[];
15634
+ onChange: (value: string) => void;
15635
+ };
15636
+ /**
15637
+ * Wrapper around a Fluent ComboBox that allows for filtering options
15638
+ * @param props
15639
+ * @returns
15640
+ */
15641
+ export var ComboBox: React.FunctionComponent<ComboBoxProps>;
15642
+
15643
+
15644
+
15532
15645
  }
15533
15646
  declare module INSPECTOR {
15534
15647
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-inspector",
3
- "version": "8.17.1",
3
+ "version": "8.18.0",
4
4
  "main": "babylon.inspector.bundle.js",
5
5
  "types": "babylon.inspector.module.d.ts",
6
6
  "files": [
@@ -14,13 +14,13 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^8.17.1",
18
- "babylonjs-addons": "^8.17.1",
19
- "babylonjs-gui": "^8.17.1",
20
- "babylonjs-gui-editor": "^8.17.1",
21
- "babylonjs-loaders": "^8.17.1",
22
- "babylonjs-materials": "^8.17.1",
23
- "babylonjs-serializers": "^8.17.1"
17
+ "babylonjs": "^8.18.0",
18
+ "babylonjs-addons": "^8.18.0",
19
+ "babylonjs-gui": "^8.18.0",
20
+ "babylonjs-gui-editor": "^8.18.0",
21
+ "babylonjs-loaders": "^8.18.0",
22
+ "babylonjs-materials": "^8.18.0",
23
+ "babylonjs-serializers": "^8.18.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@dev/addons": "1.0.0",