@elderbyte/ngx-starter 20.0.0-beta.6 → 20.0.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/index.d.ts CHANGED
@@ -5270,8 +5270,18 @@ declare class DomUtil {
5270
5270
  * Determines if the dom element is visible to the user.
5271
5271
  */
5272
5272
  static isElementVisible(element: HTMLElement): boolean;
5273
- private static isElementVisibleInDOM;
5274
- private static isElementInViewport;
5273
+ /**
5274
+ * Determines if the element or a parent is not hidden by css
5275
+ */
5276
+ private static isVisibleInDOM;
5277
+ /**
5278
+ * Determines if the element is in the viewport.
5279
+ */
5280
+ private static isInViewport;
5281
+ /**
5282
+ * Determines if the element is obscured by an open drawer (i.e., there's an open drawer and the element is not within it).
5283
+ */
5284
+ private static isObscuredByOpenDrawer;
5275
5285
  }
5276
5286
 
5277
5287
  declare class WebStorageService {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elderbyte/ngx-starter",
3
- "version": "20.0.0-beta.6",
3
+ "version": "20.0.0",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^20.0.0 || ^21.0.0",
6
6
  "@angular/common": "^20.0.0 || ^21.0.0",