babylonjs-node-editor 8.55.2 → 8.55.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.
@@ -4358,7 +4358,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
4358
4358
  /**
4359
4359
  * Optional default value that enables clearing the current linked entity
4360
4360
  */
4361
- defaultValue?: T;
4361
+ defaultValue?: BABYLON.Nullable<T>;
4362
4362
  };
4363
4363
  /**
4364
4364
  * A generic primitive component with a ComboBox for selecting from a list of entities.
@@ -4654,6 +4654,31 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
4654
4654
 
4655
4655
 
4656
4656
 
4657
+ }
4658
+ declare module BABYLON.NodeEditor {
4659
+
4660
+
4661
+ }
4662
+ declare module BABYLON.NodeEditor.SharedUIComponents {
4663
+ export type ClusteredLightContainerSelectorProps = BABYLON.NodeEditor.SharedUIComponents.PrimitiveProps<BABYLON.Nullable<BABYLON.ClusteredLightContainer>> & {
4664
+ /**
4665
+ * The scene to get clustered light containers from
4666
+ */
4667
+ scene: BABYLON.Scene;
4668
+ /**
4669
+ * Optional filter function to filter which clustered light containers are shown
4670
+ */
4671
+ filter?: (container: BABYLON.ClusteredLightContainer) => boolean;
4672
+ } & Omit<BABYLON.NodeEditor.SharedUIComponents.EntitySelectorProps<BABYLON.ClusteredLightContainer>, "getEntities" | "getName">;
4673
+ /**
4674
+ * A primitive component with a ComboBox for selecting from existing scene clustered light containers.
4675
+ * @param props ClusteredLightContainerSelectorProps
4676
+ * @returns ClusteredLightContainerSelector component
4677
+ */
4678
+ export var ClusteredLightContainerSelector: React.FunctionComponent<ClusteredLightContainerSelectorProps>;
4679
+
4680
+
4681
+
4657
4682
  }
4658
4683
  declare module BABYLON.NodeEditor {
4659
4684
 
@@ -5479,10 +5504,12 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
5479
5504
  type MaterialSelectorPropertyLineProps = BABYLON.NodeEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.Material>> & BABYLON.NodeEditor.SharedUIComponents.MaterialSelectorProps;
5480
5505
  type TextureSelectorPropertyLineProps = BABYLON.NodeEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.BaseTexture>> & BABYLON.NodeEditor.SharedUIComponents.TextureSelectorProps;
5481
5506
  type SkeletonSelectorPropertyLineProps = BABYLON.NodeEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.Skeleton>> & BABYLON.NodeEditor.SharedUIComponents.SkeletonSelectorProps;
5507
+ type ClusteredLightContainerSelectorPropertyLineProps = BABYLON.NodeEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.ClusteredLightContainer>> & BABYLON.NodeEditor.SharedUIComponents.ClusteredLightContainerSelectorProps;
5482
5508
  export const NodeSelectorPropertyLine: (props: NodeSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5483
5509
  export const MaterialSelectorPropertyLine: (props: MaterialSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5484
5510
  export const TextureSelectorPropertyLine: (props: TextureSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5485
5511
  export const SkeletonSelectorPropertyLine: (props: SkeletonSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5512
+ export const ClusteredLightContainerSelectorPropertyLine: (props: ClusteredLightContainerSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5486
5513
 
5487
5514
 
5488
5515
 
@@ -4478,7 +4478,7 @@ export type EntitySelectorProps<T extends Entity> = (PrimitiveProps<Nullable<T>>
4478
4478
  /**
4479
4479
  * Optional default value that enables clearing the current linked entity
4480
4480
  */
4481
- defaultValue?: T;
4481
+ defaultValue?: Nullable<T>;
4482
4482
  };
4483
4483
  /**
4484
4484
  * A generic primitive component with a ComboBox for selecting from a list of entities.
@@ -4751,6 +4751,31 @@ type CollapseProps = {
4751
4751
  export const Collapse: FunctionComponent<PropsWithChildren<CollapseProps>>;
4752
4752
  export {};
4753
4753
 
4754
+ }
4755
+ declare module "babylonjs-node-editor/fluent/primitives/clusteredLightContainerSelector" {
4756
+ import { FunctionComponent } from "react";
4757
+ import { Scene } from "babylonjs/scene";
4758
+ import { Nullable } from "babylonjs/types";
4759
+ import { PrimitiveProps } from "babylonjs-node-editor/fluent/primitives/primitive";
4760
+ import { EntitySelectorProps } from "babylonjs-node-editor/fluent/primitives/entitySelector";
4761
+ import { ClusteredLightContainer } from "babylonjs/Lights/Clustered/clusteredLightContainer";
4762
+ export type ClusteredLightContainerSelectorProps = PrimitiveProps<Nullable<ClusteredLightContainer>> & {
4763
+ /**
4764
+ * The scene to get clustered light containers from
4765
+ */
4766
+ scene: Scene;
4767
+ /**
4768
+ * Optional filter function to filter which clustered light containers are shown
4769
+ */
4770
+ filter?: (container: ClusteredLightContainer) => boolean;
4771
+ } & Omit<EntitySelectorProps<ClusteredLightContainer>, "getEntities" | "getName">;
4772
+ /**
4773
+ * A primitive component with a ComboBox for selecting from existing scene clustered light containers.
4774
+ * @param props ClusteredLightContainerSelectorProps
4775
+ * @returns ClusteredLightContainerSelector component
4776
+ */
4777
+ export const ClusteredLightContainerSelector: FunctionComponent<ClusteredLightContainerSelectorProps>;
4778
+
4754
4779
  }
4755
4780
  declare module "babylonjs-node-editor/fluent/primitives/checkbox" {
4756
4781
  import { FunctionComponent } from "react";
@@ -5485,24 +5510,28 @@ export const HexPropertyLine: FunctionComponent<HexPropertyLineProps>;
5485
5510
 
5486
5511
  }
5487
5512
  declare module "babylonjs-node-editor/fluent/hoc/propertyLines/entitySelectorPropertyLine" {
5513
+ import { Skeleton } from "babylonjs/Bones/skeleton";
5514
+ import { ClusteredLightContainer } from "babylonjs/Lights/Clustered/clusteredLightContainer";
5515
+ import { Material } from "babylonjs/Materials/material";
5516
+ import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
5488
5517
  import { Node } from "babylonjs/node";
5489
5518
  import { Nullable } from "babylonjs/types";
5490
- import { PropertyLineProps } from "babylonjs-node-editor/fluent/hoc/propertyLines/propertyLine";
5491
- import { NodeSelectorProps } from "babylonjs-node-editor/fluent/primitives/nodeSelector";
5519
+ import { ClusteredLightContainerSelectorProps } from "babylonjs-node-editor/fluent/primitives/clusteredLightContainerSelector";
5492
5520
  import { MaterialSelectorProps } from "babylonjs-node-editor/fluent/primitives/materialSelector";
5493
- import { TextureSelectorProps } from "babylonjs-node-editor/fluent/primitives/textureSelector";
5521
+ import { NodeSelectorProps } from "babylonjs-node-editor/fluent/primitives/nodeSelector";
5494
5522
  import { SkeletonSelectorProps } from "babylonjs-node-editor/fluent/primitives/skeletonSelector";
5495
- import { Material } from "babylonjs/Materials/material";
5496
- import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
5497
- import { Skeleton } from "babylonjs/Bones/skeleton";
5523
+ import { TextureSelectorProps } from "babylonjs-node-editor/fluent/primitives/textureSelector";
5524
+ import { PropertyLineProps } from "babylonjs-node-editor/fluent/hoc/propertyLines/propertyLine";
5498
5525
  type NodeSelectorPropertyLineProps = PropertyLineProps<Nullable<Node>> & NodeSelectorProps;
5499
5526
  type MaterialSelectorPropertyLineProps = PropertyLineProps<Nullable<Material>> & MaterialSelectorProps;
5500
5527
  type TextureSelectorPropertyLineProps = PropertyLineProps<Nullable<BaseTexture>> & TextureSelectorProps;
5501
5528
  type SkeletonSelectorPropertyLineProps = PropertyLineProps<Nullable<Skeleton>> & SkeletonSelectorProps;
5529
+ type ClusteredLightContainerSelectorPropertyLineProps = PropertyLineProps<Nullable<ClusteredLightContainer>> & ClusteredLightContainerSelectorProps;
5502
5530
  export const NodeSelectorPropertyLine: (props: NodeSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5503
5531
  export const MaterialSelectorPropertyLine: (props: MaterialSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5504
5532
  export const TextureSelectorPropertyLine: (props: TextureSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5505
5533
  export const SkeletonSelectorPropertyLine: (props: SkeletonSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5534
+ export const ClusteredLightContainerSelectorPropertyLine: (props: ClusteredLightContainerSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5506
5535
  export {};
5507
5536
 
5508
5537
  }
@@ -11003,7 +11032,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
11003
11032
  /**
11004
11033
  * Optional default value that enables clearing the current linked entity
11005
11034
  */
11006
- defaultValue?: T;
11035
+ defaultValue?: BABYLON.Nullable<T>;
11007
11036
  };
11008
11037
  /**
11009
11038
  * A generic primitive component with a ComboBox for selecting from a list of entities.
@@ -11299,6 +11328,31 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
11299
11328
 
11300
11329
 
11301
11330
 
11331
+ }
11332
+ declare module BABYLON.NodeEditor {
11333
+
11334
+
11335
+ }
11336
+ declare module BABYLON.NodeEditor.SharedUIComponents {
11337
+ export type ClusteredLightContainerSelectorProps = BABYLON.NodeEditor.SharedUIComponents.PrimitiveProps<BABYLON.Nullable<BABYLON.ClusteredLightContainer>> & {
11338
+ /**
11339
+ * The scene to get clustered light containers from
11340
+ */
11341
+ scene: BABYLON.Scene;
11342
+ /**
11343
+ * Optional filter function to filter which clustered light containers are shown
11344
+ */
11345
+ filter?: (container: BABYLON.ClusteredLightContainer) => boolean;
11346
+ } & Omit<BABYLON.NodeEditor.SharedUIComponents.EntitySelectorProps<BABYLON.ClusteredLightContainer>, "getEntities" | "getName">;
11347
+ /**
11348
+ * A primitive component with a ComboBox for selecting from existing scene clustered light containers.
11349
+ * @param props ClusteredLightContainerSelectorProps
11350
+ * @returns ClusteredLightContainerSelector component
11351
+ */
11352
+ export var ClusteredLightContainerSelector: React.FunctionComponent<ClusteredLightContainerSelectorProps>;
11353
+
11354
+
11355
+
11302
11356
  }
11303
11357
  declare module BABYLON.NodeEditor {
11304
11358
 
@@ -12124,10 +12178,12 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
12124
12178
  type MaterialSelectorPropertyLineProps = BABYLON.NodeEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.Material>> & BABYLON.NodeEditor.SharedUIComponents.MaterialSelectorProps;
12125
12179
  type TextureSelectorPropertyLineProps = BABYLON.NodeEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.BaseTexture>> & BABYLON.NodeEditor.SharedUIComponents.TextureSelectorProps;
12126
12180
  type SkeletonSelectorPropertyLineProps = BABYLON.NodeEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.Skeleton>> & BABYLON.NodeEditor.SharedUIComponents.SkeletonSelectorProps;
12181
+ type ClusteredLightContainerSelectorPropertyLineProps = BABYLON.NodeEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.ClusteredLightContainer>> & BABYLON.NodeEditor.SharedUIComponents.ClusteredLightContainerSelectorProps;
12127
12182
  export const NodeSelectorPropertyLine: (props: NodeSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
12128
12183
  export const MaterialSelectorPropertyLine: (props: MaterialSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
12129
12184
  export const TextureSelectorPropertyLine: (props: TextureSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
12130
12185
  export const SkeletonSelectorPropertyLine: (props: SkeletonSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
12186
+ export const ClusteredLightContainerSelectorPropertyLine: (props: ClusteredLightContainerSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
12131
12187
 
12132
12188
 
12133
12189
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-node-editor",
3
- "version": "8.55.2",
3
+ "version": "8.55.4",
4
4
  "main": "babylon.nodeEditor.js",
5
5
  "types": "babylon.nodeEditor.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "8.55.2"
17
+ "babylonjs": "8.55.4"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",