@babylonjs/gui-editor 8.36.0 → 8.37.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.
|
@@ -4744,6 +4744,12 @@ import { AcceptedDropdownValue, DropdownProps } from "@babylonjs/gui-editor/flue
|
|
|
4744
4744
|
import { PropertyLineProps } from "@babylonjs/gui-editor/fluent/hoc/propertyLines/propertyLine";
|
|
4745
4745
|
import { FunctionComponent } from "react";
|
|
4746
4746
|
type DropdownPropertyLineProps<V extends AcceptedDropdownValue> = DropdownProps<V> & PropertyLineProps<V>;
|
|
4747
|
+
/**
|
|
4748
|
+
* Wraps a dropdown in a property line
|
|
4749
|
+
* @param props - PropertyLineProps and DropdownProps
|
|
4750
|
+
* @returns property-line wrapped dropdown
|
|
4751
|
+
*/
|
|
4752
|
+
export const DropdownPropertyLine: import("react").ForwardRefExoticComponent<DropdownPropertyLineProps<AcceptedDropdownValue> & import("react").RefAttributes<HTMLDivElement>>;
|
|
4747
4753
|
/**
|
|
4748
4754
|
* Dropdown component for number values.
|
|
4749
4755
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/gui-editor",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.37.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.37.0",
|
|
28
|
+
"@babylonjs/gui": "^8.37.0",
|
|
29
29
|
"react": "^18.2.0",
|
|
30
30
|
"react-dom": "^18.2.0"
|
|
31
31
|
},
|