babylonjs-gui-editor 8.38.0 → 8.39.1

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.
@@ -4370,7 +4370,12 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
4370
4370
  collapseByDefault?: boolean;
4371
4371
  };
4372
4372
  export var AccordionSection: React.FunctionComponent<React.PropsWithChildren<AccordionSectionProps>>;
4373
- export var Accordion: React.FunctionComponent<React.PropsWithChildren>;
4373
+ export type AccordionProps = {
4374
+ highlightSections?: readonly string[];
4375
+ };
4376
+ export var Accordion: React.ForwardRefExoticComponent<AccordionProps & {
4377
+ children?: import("react").ReactNode | undefined;
4378
+ } & React.RefAttributes<HTMLDivElement>>;
4374
4379
 
4375
4380
 
4376
4381
 
@@ -4398,13 +4398,18 @@ export const Button: FunctionComponent<ButtonProps>;
4398
4398
 
4399
4399
  }
4400
4400
  declare module "babylonjs-gui-editor/fluent/primitives/accordion" {
4401
- import { FunctionComponent, PropsWithChildren } from "react";
4401
+ import { ForwardRefExoticComponent, FunctionComponent, PropsWithChildren, RefAttributes } from "react";
4402
4402
  export type AccordionSectionProps = {
4403
4403
  title: string;
4404
4404
  collapseByDefault?: boolean;
4405
4405
  };
4406
4406
  export const AccordionSection: FunctionComponent<PropsWithChildren<AccordionSectionProps>>;
4407
- export const Accordion: FunctionComponent<PropsWithChildren>;
4407
+ export type AccordionProps = {
4408
+ highlightSections?: readonly string[];
4409
+ };
4410
+ export const Accordion: ForwardRefExoticComponent<AccordionProps & {
4411
+ children?: import("react").ReactNode | undefined;
4412
+ } & RefAttributes<HTMLDivElement>>;
4408
4413
 
4409
4414
  }
4410
4415
  declare module "babylonjs-gui-editor/fluent/hoc/pane" {
@@ -10234,7 +10239,12 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
10234
10239
  collapseByDefault?: boolean;
10235
10240
  };
10236
10241
  export var AccordionSection: React.FunctionComponent<React.PropsWithChildren<AccordionSectionProps>>;
10237
- export var Accordion: React.FunctionComponent<React.PropsWithChildren>;
10242
+ export type AccordionProps = {
10243
+ highlightSections?: readonly string[];
10244
+ };
10245
+ export var Accordion: React.ForwardRefExoticComponent<AccordionProps & {
10246
+ children?: import("react").ReactNode | undefined;
10247
+ } & React.RefAttributes<HTMLDivElement>>;
10238
10248
 
10239
10249
 
10240
10250
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui-editor",
3
- "version": "8.38.0",
3
+ "version": "8.39.1",
4
4
  "main": "babylon.guiEditor.js",
5
5
  "types": "babylon.guiEditor.module.d.ts",
6
6
  "files": [
@@ -14,8 +14,8 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^8.38.0",
18
- "babylonjs-gui": "^8.38.0"
17
+ "babylonjs": "^8.39.1",
18
+ "babylonjs-gui": "^8.39.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@dev/build-tools": "1.0.0",