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.
- package/babylon.guiEditor.d.ts +8 -8
- package/babylon.guiEditor.js +1 -1
- package/babylon.guiEditor.js.map +1 -1
- package/babylon.guiEditor.max.js +144 -110
- package/babylon.guiEditor.module.d.ts +16 -16
- package/package.json +3 -3
|
@@ -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);
|
|
@@ -5185,7 +5185,7 @@ declare module BABYLON {
|
|
|
5185
5185
|
private _backgroundColor;
|
|
5186
5186
|
private _outlines;
|
|
5187
5187
|
keys: KeyboardManager;
|
|
5188
|
-
private
|
|
5188
|
+
private _fromPg;
|
|
5189
5189
|
/** DO NOT USE: in the process of removing */
|
|
5190
5190
|
blockKeyboardEvents: boolean;
|
|
5191
5191
|
onOutlineChangedObservable: Observable<void>;
|
|
@@ -6347,7 +6347,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6347
6347
|
/**
|
|
6348
6348
|
* Used by both particleSystem and alphaBlendModes
|
|
6349
6349
|
*/
|
|
6350
|
-
export var
|
|
6350
|
+
export var CommonBlendModes: {
|
|
6351
6351
|
label: string;
|
|
6352
6352
|
value: number;
|
|
6353
6353
|
}[];
|
|
@@ -6356,14 +6356,14 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
6356
6356
|
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
|
6357
6357
|
* the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
|
6358
6358
|
*/
|
|
6359
|
-
export var
|
|
6359
|
+
export var BlendModeOptions: {
|
|
6360
6360
|
label: string;
|
|
6361
6361
|
value: number;
|
|
6362
6362
|
}[];
|
|
6363
6363
|
/**
|
|
6364
6364
|
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
6365
6365
|
*/
|
|
6366
|
-
export var
|
|
6366
|
+
export var AlphaModeOptions: {
|
|
6367
6367
|
label: string;
|
|
6368
6368
|
value: number;
|
|
6369
6369
|
}[];
|
|
@@ -7904,7 +7904,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7904
7904
|
isOpen: boolean;
|
|
7905
7905
|
}
|
|
7906
7906
|
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
7907
|
-
private static
|
|
7907
|
+
private static _IdGenerator;
|
|
7908
7908
|
private _id;
|
|
7909
7909
|
private _uploadInputRef;
|
|
7910
7910
|
constructor(props: ITextureButtonLineProps);
|
|
@@ -8503,7 +8503,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
8503
8503
|
iconLabel?: string;
|
|
8504
8504
|
}
|
|
8505
8505
|
export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
|
|
8506
|
-
private static
|
|
8506
|
+
private static _IdGenerator;
|
|
8507
8507
|
private _id;
|
|
8508
8508
|
private _uploadInputRef;
|
|
8509
8509
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
|
@@ -8527,7 +8527,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
8527
8527
|
iconLabel?: string;
|
|
8528
8528
|
}
|
|
8529
8529
|
export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
8530
|
-
private static
|
|
8530
|
+
private static _IdGenerator;
|
|
8531
8531
|
private _id;
|
|
8532
8532
|
private _uploadInputRef;
|
|
8533
8533
|
constructor(props: IFileButtonLineProps);
|
|
@@ -9263,7 +9263,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
9263
9263
|
iconLabel?: string;
|
|
9264
9264
|
}
|
|
9265
9265
|
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
9266
|
-
private static
|
|
9266
|
+
private static _IdGenerator;
|
|
9267
9267
|
private _id;
|
|
9268
9268
|
private _uploadInputRef;
|
|
9269
9269
|
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": "babylon.guiEditor.max.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.
|
|
18
|
-
"babylonjs-gui": "^8.
|
|
17
|
+
"babylonjs": "^8.6.1",
|
|
18
|
+
"babylonjs-gui": "^8.6.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|