babylonjs-gui 5.53.1 → 5.55.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.
@@ -1155,16 +1155,20 @@ export class Control implements IAnimatable {
1155
1155
  isPointerBlocker: boolean;
1156
1156
  /** Gets or sets a boolean indicating if the control can be focusable */
1157
1157
  isFocusInvisible: boolean;
1158
+ protected _clipChildren: boolean;
1158
1159
  /**
1159
- * Gets or sets a boolean indicating if the children are clipped to the current control bounds.
1160
+ * Sets/Gets a boolean indicating if the children are clipped to the current control bounds.
1160
1161
  * Please note that not clipping children may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
1161
1162
  */
1162
- clipChildren: boolean;
1163
+ set clipChildren(value: boolean);
1164
+ get clipChildren(): boolean;
1165
+ protected _clipContent: boolean;
1163
1166
  /**
1164
- * Gets or sets a boolean indicating that control content must be clipped
1165
- * Please note that not clipping children may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
1167
+ * Sets/Gets a boolean indicating that control content must be clipped
1168
+ * Please note that not clipping content may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
1166
1169
  */
1167
- clipContent: boolean;
1170
+ set clipContent(value: boolean);
1171
+ get clipContent(): boolean;
1168
1172
  /**
1169
1173
  * Gets or sets a boolean indicating that the current control should cache its rendering (useful when the control does not change often)
1170
1174
  */
@@ -2203,6 +2207,18 @@ export class Grid extends Container {
2203
2207
  private _columnDefinitionObservers;
2204
2208
  private _cells;
2205
2209
  private _childControls;
2210
+ /**
2211
+ * Sets/Gets a boolean indicating that control content must be clipped
2212
+ * Please note that not clipping content may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
2213
+ */
2214
+ set clipContent(value: boolean);
2215
+ get clipContent(): boolean;
2216
+ /**
2217
+ * Sets/Gets a boolean indicating if the children are clipped to the current control bounds.
2218
+ * Please note that not clipping children may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
2219
+ */
2220
+ set clipChildren(value: boolean);
2221
+ get clipChildren(): boolean;
2206
2222
  /**
2207
2223
  * Gets the number of columns
2208
2224
  */
@@ -9820,16 +9836,20 @@ declare module BABYLON.GUI {
9820
9836
  isPointerBlocker: boolean;
9821
9837
  /** Gets or sets a boolean indicating if the control can be focusable */
9822
9838
  isFocusInvisible: boolean;
9839
+ protected _clipChildren: boolean;
9823
9840
  /**
9824
- * Gets or sets a boolean indicating if the children are clipped to the current control bounds.
9841
+ * Sets/Gets a boolean indicating if the children are clipped to the current control bounds.
9825
9842
  * Please note that not clipping children may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
9826
9843
  */
9827
- clipChildren: boolean;
9844
+ set clipChildren(value: boolean);
9845
+ get clipChildren(): boolean;
9846
+ protected _clipContent: boolean;
9828
9847
  /**
9829
- * Gets or sets a boolean indicating that control content must be clipped
9830
- * Please note that not clipping children may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
9848
+ * Sets/Gets a boolean indicating that control content must be clipped
9849
+ * Please note that not clipping content may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
9831
9850
  */
9832
- clipContent: boolean;
9851
+ set clipContent(value: boolean);
9852
+ get clipContent(): boolean;
9833
9853
  /**
9834
9854
  * Gets or sets a boolean indicating that the current control should cache its rendering (useful when the control does not change often)
9835
9855
  */
@@ -10832,6 +10852,18 @@ declare module BABYLON.GUI {
10832
10852
  private _columnDefinitionObservers;
10833
10853
  private _cells;
10834
10854
  private _childControls;
10855
+ /**
10856
+ * Sets/Gets a boolean indicating that control content must be clipped
10857
+ * Please note that not clipping content may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
10858
+ */
10859
+ set clipContent(value: boolean);
10860
+ get clipContent(): boolean;
10861
+ /**
10862
+ * Sets/Gets a boolean indicating if the children are clipped to the current control bounds.
10863
+ * Please note that not clipping children may generate issues with adt.useInvalidateRectOptimization so it is recommended to turn this optimization off if you want to use unclipped children
10864
+ */
10865
+ set clipChildren(value: boolean);
10866
+ get clipChildren(): boolean;
10835
10867
  /**
10836
10868
  * Gets the number of columns
10837
10869
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui",
3
- "version": "5.53.1",
3
+ "version": "5.55.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.53.1"
17
+ "babylonjs": "^5.55.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",