babylonjs-gui 5.54.0 → 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.
package/babylon.gui.d.ts CHANGED
@@ -1082,16 +1082,20 @@ declare module BABYLON.GUI {
1082
1082
  isPointerBlocker: boolean;
1083
1083
  /** Gets or sets a boolean indicating if the control can be focusable */
1084
1084
  isFocusInvisible: boolean;
1085
+ protected _clipChildren: boolean;
1085
1086
  /**
1086
- * Gets or sets a boolean indicating if the children are clipped to the current control bounds.
1087
+ * Sets/Gets a boolean indicating if the children are clipped to the current control bounds.
1087
1088
  * 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
1088
1089
  */
1089
- clipChildren: boolean;
1090
+ set clipChildren(value: boolean);
1091
+ get clipChildren(): boolean;
1092
+ protected _clipContent: boolean;
1090
1093
  /**
1091
- * Gets or sets a boolean indicating that control content must be clipped
1092
- * 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
1094
+ * Sets/Gets a boolean indicating that control content must be clipped
1095
+ * 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
1093
1096
  */
1094
- clipContent: boolean;
1097
+ set clipContent(value: boolean);
1098
+ get clipContent(): boolean;
1095
1099
  /**
1096
1100
  * Gets or sets a boolean indicating that the current control should cache its rendering (useful when the control does not change often)
1097
1101
  */
@@ -2094,6 +2098,18 @@ declare module BABYLON.GUI {
2094
2098
  private _columnDefinitionObservers;
2095
2099
  private _cells;
2096
2100
  private _childControls;
2101
+ /**
2102
+ * Sets/Gets a boolean indicating that control content must be clipped
2103
+ * 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
2104
+ */
2105
+ set clipContent(value: boolean);
2106
+ get clipContent(): boolean;
2107
+ /**
2108
+ * Sets/Gets a boolean indicating if the children are clipped to the current control bounds.
2109
+ * 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
2110
+ */
2111
+ set clipChildren(value: boolean);
2112
+ get clipChildren(): boolean;
2097
2113
  /**
2098
2114
  * Gets the number of columns
2099
2115
  */