babylonjs-gui 5.23.0 → 5.24.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.
@@ -229,7 +229,7 @@ export class AdvancedDynamicTexture extends DynamicTexture {
229
229
  * Will return all controls that are inside this texture
230
230
  * @param directDescendantsOnly defines if true only direct descendants of 'this' will be considered, if false direct and also indirect (children of children, an so on in a recursive manner) descendants of 'this' will be considered
231
231
  * @param predicate defines an optional predicate that will be called on every evaluated child, the predicate must return true for a given child to be part of the result, otherwise it will be ignored
232
- * @return all child controls
232
+ * @returns all child controls
233
233
  */
234
234
  getDescendants(directDescendantsOnly?: boolean, predicate?: (control: Control) => boolean): Control[];
235
235
  /**
@@ -241,7 +241,7 @@ export class AdvancedDynamicTexture extends DynamicTexture {
241
241
  /**
242
242
  * Will return the first control with the given name
243
243
  * @param name defines the name to search for
244
- * @return the first control found or null
244
+ * @returns the first control found or null
245
245
  */
246
246
  getControlByName(name: string): Nullable<Control>;
247
247
  private _getControlByKey;
@@ -1610,7 +1610,7 @@ export class Control {
1610
1610
  * Will return all controls that have this control as ascendant
1611
1611
  * @param directDescendantsOnly defines if true only direct descendants of 'this' will be considered, if false direct and also indirect (children of children, an so on in a recursive manner) descendants of 'this' will be considered
1612
1612
  * @param predicate defines an optional predicate that will be called on every evaluated child, the predicate must return true for a given child to be part of the result, otherwise it will be ignored
1613
- * @return all child controls
1613
+ * @returns all child controls
1614
1614
  */
1615
1615
  getDescendants(directDescendantsOnly?: boolean, predicate?: (control: Control) => boolean): Control[];
1616
1616
  /**
@@ -8237,7 +8237,7 @@ declare module BABYLON.GUI {
8237
8237
  * Will return all controls that are inside this texture
8238
8238
  * @param directDescendantsOnly defines if true only direct descendants of 'this' will be considered, if false direct and also indirect (children of children, an so on in a recursive manner) descendants of 'this' will be considered
8239
8239
  * @param predicate defines an optional predicate that will be called on every evaluated child, the predicate must return true for a given child to be part of the result, otherwise it will be ignored
8240
- * @return all child controls
8240
+ * @returns all child controls
8241
8241
  */
8242
8242
  getDescendants(directDescendantsOnly?: boolean, predicate?: (control: Control) => boolean): Control[];
8243
8243
  /**
@@ -8249,7 +8249,7 @@ declare module BABYLON.GUI {
8249
8249
  /**
8250
8250
  * Will return the first control with the given name
8251
8251
  * @param name defines the name to search for
8252
- * @return the first control found or null
8252
+ * @returns the first control found or null
8253
8253
  */
8254
8254
  getControlByName(name: string): BABYLON.Nullable<Control>;
8255
8255
  private _getControlByKey;
@@ -9571,7 +9571,7 @@ declare module BABYLON.GUI {
9571
9571
  * Will return all controls that have this control as ascendant
9572
9572
  * @param directDescendantsOnly defines if true only direct descendants of 'this' will be considered, if false direct and also indirect (children of children, an so on in a recursive manner) descendants of 'this' will be considered
9573
9573
  * @param predicate defines an optional predicate that will be called on every evaluated child, the predicate must return true for a given child to be part of the result, otherwise it will be ignored
9574
- * @return all child controls
9574
+ * @returns all child controls
9575
9575
  */
9576
9576
  getDescendants(directDescendantsOnly?: boolean, predicate?: (control: Control) => boolean): Control[];
9577
9577
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui",
3
- "version": "5.23.0",
3
+ "version": "5.24.0",
4
4
  "main": "babylon.gui.js",
5
5
  "types": "babylon.gui.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.*"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^5.23.0"
17
+ "babylonjs": "^5.24.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",