fit-ui 3.2.2 → 3.2.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fit-ui",
3
- "version": "3.2.2",
3
+ "version": "3.2.4",
4
4
  "title": "Fit.UI",
5
5
  "description": "Object Oriented framework for building rich User Interfaces",
6
6
  "main": "dist/Fit.UI.js",
package/types/index.d.ts CHANGED
@@ -10558,6 +10558,16 @@ declare namespace Fit
10558
10558
  */
10559
10559
  public static IsVisible(elm:Node):boolean;
10560
10560
  /**
10561
+ * Determines whether position:fixed is constrained by CSS properties
10562
+ such as animation or transform which will cause positioning to become
10563
+ relative to animated/transformed parent, rather than relative to viewport.
10564
+ * @function PositionFixedConstrained
10565
+ * @static
10566
+ * @param {HTMLElement} elm - Element to check for constraint.
10567
+ * @returns boolean
10568
+ */
10569
+ public static PositionFixedConstrained(elm:HTMLElement):boolean;
10570
+ /**
10561
10571
  * Remove DOMNode from its container element.
10562
10572
  * @function Remove
10563
10573
  * @static