babylonjs-gui 7.43.0 → 7.44.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 -1
- package/babylon.gui.module.d.ts +2 -2
- package/package.json +2 -2
    
        package/babylon.gui.d.ts
    CHANGED
    
    | @@ -3732,7 +3732,7 @@ declare module BABYLON.GUI { | |
| 3732 3732 | 
             
                /** Class used to provide 2D matrix features */
         | 
| 3733 3733 | 
             
                export class Matrix2D {
         | 
| 3734 3734 | 
             
                    /** Gets the internal array of 6 floats used to store matrix data */
         | 
| 3735 | 
            -
                    m: Float32Array | 
| 3735 | 
            +
                    m: Float32Array<ArrayBuffer>;
         | 
| 3736 3736 | 
             
                    /**
         | 
| 3737 3737 | 
             
                     * Creates a new matrix
         | 
| 3738 3738 | 
             
                     * @param m00 defines value for (0, 0)
         | 
    
        package/babylon.gui.module.d.ts
    CHANGED
    
    | @@ -4154,7 +4154,7 @@ export class Vector2WithInfo extends Vector2 { | |
| 4154 4154 | 
             
            /** Class used to provide 2D matrix features */
         | 
| 4155 4155 | 
             
            export class Matrix2D {
         | 
| 4156 4156 | 
             
                /** Gets the internal array of 6 floats used to store matrix data */
         | 
| 4157 | 
            -
                m: Float32Array | 
| 4157 | 
            +
                m: Float32Array<ArrayBuffer>;
         | 
| 4158 4158 | 
             
                /**
         | 
| 4159 4159 | 
             
                 * Creates a new matrix
         | 
| 4160 4160 | 
             
                 * @param m00 defines value for (0, 0)
         | 
| @@ -12757,7 +12757,7 @@ declare module BABYLON.GUI { | |
| 12757 12757 | 
             
                /** Class used to provide 2D matrix features */
         | 
| 12758 12758 | 
             
                export class Matrix2D {
         | 
| 12759 12759 | 
             
                    /** Gets the internal array of 6 floats used to store matrix data */
         | 
| 12760 | 
            -
                    m: Float32Array | 
| 12760 | 
            +
                    m: Float32Array<ArrayBuffer>;
         | 
| 12761 12761 | 
             
                    /**
         | 
| 12762 12762 | 
             
                     * Creates a new matrix
         | 
| 12763 12763 | 
             
                     * @param m00 defines value for (0, 0)
         | 
    
        package/package.json
    CHANGED
    
    | @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            {
         | 
| 2 2 | 
             
                "name": "babylonjs-gui",
         | 
| 3 | 
            -
                "version": "7. | 
| 3 | 
            +
                "version": "7.44.0",
         | 
| 4 4 | 
             
                "main": "babylon.gui.js",
         | 
| 5 5 | 
             
                "types": "babylon.gui.module.d.ts",
         | 
| 6 6 | 
             
                "files": [
         | 
| @@ -15,7 +15,7 @@ | |
| 15 15 | 
             
                    "test:escheck": "es-check es6 ./babylon.gui.js"
         | 
| 16 16 | 
             
                },
         | 
| 17 17 | 
             
                "dependencies": {
         | 
| 18 | 
            -
                    "babylonjs": "^7. | 
| 18 | 
            +
                    "babylonjs": "^7.44.0"
         | 
| 19 19 | 
             
                },
         | 
| 20 20 | 
             
                "devDependencies": {
         | 
| 21 21 | 
             
                    "@dev/build-tools": "1.0.0",
         |