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/dist/Documentation.html +1 -1
- package/dist/Fit.UI.js +61 -3
- package/dist/Fit.UI.min.js +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +10 -0
package/package.json
CHANGED
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
|