@babylonjs/gui-editor 8.37.3 → 8.39.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.
|
@@ -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
|
|
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" {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/gui-editor",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.39.0",
|
|
4
4
|
"main": "dist/babylon.guiEditor.js",
|
|
5
5
|
"module": "dist/babylon.guiEditor.js",
|
|
6
6
|
"esnext": "dist/babylon.guiEditor.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"@types/react-dom": ">=16.0.9"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@babylonjs/core": "^8.
|
|
28
|
-
"@babylonjs/gui": "^8.
|
|
27
|
+
"@babylonjs/core": "^8.39.0",
|
|
28
|
+
"@babylonjs/gui": "^8.39.0",
|
|
29
29
|
"react": "^18.2.0",
|
|
30
30
|
"react-dom": "^18.2.0"
|
|
31
31
|
},
|