babylonjs-gui 8.41.1 → 8.42.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.
- package/babylon.gui.d.ts +1 -0
- package/babylon.gui.js +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +2 -0
- package/package.json +4 -4
package/babylon.gui.module.d.ts
CHANGED
|
@@ -5882,6 +5882,7 @@ export class Line extends Control {
|
|
|
5882
5882
|
protected _getTypeName(): string;
|
|
5883
5883
|
_draw(context: ICanvasRenderingContext): void;
|
|
5884
5884
|
_measure(): void;
|
|
5885
|
+
_layout(parentMeasure: Measure, context: ICanvasRenderingContext): boolean;
|
|
5885
5886
|
protected _computeAlignment(parentMeasure: Measure): void;
|
|
5886
5887
|
/**
|
|
5887
5888
|
* Move one end of the line given 3D cartesian coordinates.
|
|
@@ -14422,6 +14423,7 @@ declare module BABYLON.GUI {
|
|
|
14422
14423
|
protected _getTypeName(): string;
|
|
14423
14424
|
_draw(context: BABYLON.ICanvasRenderingContext): void;
|
|
14424
14425
|
_measure(): void;
|
|
14426
|
+
_layout(parentMeasure: Measure, context: BABYLON.ICanvasRenderingContext): boolean;
|
|
14425
14427
|
protected _computeAlignment(parentMeasure: Measure): void;
|
|
14426
14428
|
/**
|
|
14427
14429
|
* Move one end of the line given 3D cartesian coordinates.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-gui",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.42.0",
|
|
4
4
|
"main": "babylon.gui.min.js",
|
|
5
5
|
"types": "babylon.gui.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -15,15 +15,15 @@
|
|
|
15
15
|
"test:escheck": "es-check es6 ./babylon.gui.js"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"babylonjs": "^8.
|
|
18
|
+
"babylonjs": "^8.42.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|
|
22
22
|
"@lts/gui": "1.0.0",
|
|
23
23
|
"source-map-loader": "^4.0.0",
|
|
24
24
|
"ts-loader": "^9.2.6",
|
|
25
|
-
"webpack": "^5.
|
|
26
|
-
"webpack-cli": "
|
|
25
|
+
"webpack": "^5.103.0",
|
|
26
|
+
"webpack-cli": "6.0.1",
|
|
27
27
|
"webpack-merge": "^5.8.0"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|