@babylonjs/gui-editor 8.5.0 → 8.6.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.
@@ -233,7 +233,7 @@ export class GlobalState {
|
|
233
233
|
private _backgroundColor;
|
234
234
|
private _outlines;
|
235
235
|
keys: KeyboardManager;
|
236
|
-
private
|
236
|
+
private _fromPg;
|
237
237
|
/** DO NOT USE: in the process of removing */
|
238
238
|
blockKeyboardEvents: boolean;
|
239
239
|
onOutlineChangedObservable: Observable<void>;
|
@@ -1635,7 +1635,7 @@ declare module "@babylonjs/gui-editor/constToOptionsMaps" {
|
|
1635
1635
|
/**
|
1636
1636
|
* Used by both particleSystem and alphaBlendModes
|
1637
1637
|
*/
|
1638
|
-
export const
|
1638
|
+
export const CommonBlendModes: {
|
1639
1639
|
label: string;
|
1640
1640
|
value: number;
|
1641
1641
|
}[];
|
@@ -1644,14 +1644,14 @@ export const commonBlendModes: {
|
|
1644
1644
|
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
1645
1645
|
* the ParticleSystem.FOO consts explicitly (as the underlying const values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
1646
1646
|
*/
|
1647
|
-
export const
|
1647
|
+
export const BlendModeOptions: {
|
1648
1648
|
label: string;
|
1649
1649
|
value: number;
|
1650
1650
|
}[];
|
1651
1651
|
/**
|
1652
1652
|
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
1653
1653
|
*/
|
1654
|
-
export const
|
1654
|
+
export const AlphaModeOptions: {
|
1655
1655
|
label: string;
|
1656
1656
|
value: number;
|
1657
1657
|
}[];
|
@@ -3124,7 +3124,7 @@ interface ITextureButtonLineState {
|
|
3124
3124
|
isOpen: boolean;
|
3125
3125
|
}
|
3126
3126
|
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
3127
|
-
private static
|
3127
|
+
private static _IdGenerator;
|
3128
3128
|
private _id;
|
3129
3129
|
private _uploadInputRef;
|
3130
3130
|
constructor(props: ITextureButtonLineProps);
|
@@ -3663,7 +3663,7 @@ interface IFileMultipleButtonLineComponentProps {
|
|
3663
3663
|
iconLabel?: string;
|
3664
3664
|
}
|
3665
3665
|
export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
|
3666
|
-
private static
|
3666
|
+
private static _IdGenerator;
|
3667
3667
|
private _id;
|
3668
3668
|
private _uploadInputRef;
|
3669
3669
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
@@ -3683,7 +3683,7 @@ interface IFileButtonLineProps {
|
|
3683
3683
|
iconLabel?: string;
|
3684
3684
|
}
|
3685
3685
|
export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
3686
|
-
private static
|
3686
|
+
private static _IdGenerator;
|
3687
3687
|
private _id;
|
3688
3688
|
private _uploadInputRef;
|
3689
3689
|
constructor(props: IFileButtonLineProps);
|
@@ -4293,7 +4293,7 @@ export interface IFileButtonLineComponentProps {
|
|
4293
4293
|
iconLabel?: string;
|
4294
4294
|
}
|
4295
4295
|
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
4296
|
-
private static
|
4296
|
+
private static _IdGenerator;
|
4297
4297
|
private _id;
|
4298
4298
|
private _uploadInputRef;
|
4299
4299
|
constructor(props: IFileButtonLineComponentProps);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/gui-editor",
|
3
|
-
"version": "8.
|
3
|
+
"version": "8.6.1",
|
4
4
|
"main": "dist/babylon.guiEditor.max.js",
|
5
5
|
"module": "dist/babylon.guiEditor.max.js",
|
6
6
|
"esnext": "dist/babylon.guiEditor.max.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.6.1",
|
28
|
+
"@babylonjs/gui": "^8.6.1",
|
29
29
|
"react": "^18.2.0",
|
30
30
|
"react-dom": "^18.2.0"
|
31
31
|
},
|