@muraldevkit/ui-toolkit 4.36.1-dev-WPJK.1 → 4.36.1-dev-zTeo.1

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": "@muraldevkit/ui-toolkit",
3
- "version": "4.36.1-dev-WPJK.1",
3
+ "version": "4.36.1-dev-zTeo.1",
4
4
  "description": "Mural's UI Toolkit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -1,8 +0,0 @@
1
- /**
2
- * Checks if a given HTML element is fully visible within the viewport or a scrollable parent.
3
- *
4
- * @param el - The HTML element to check.
5
- * @param parent - The scrollable parent (HTMLElement or Window).
6
- * @returns True if the element is fully visible within the parent, otherwise false.
7
- */
8
- export declare const isElementInViewport: (el: HTMLElement, parent: HTMLElement | Window) => boolean;