datex-ui 1.1.9 → 1.1.11

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.
@@ -6,13 +6,20 @@ export declare class PositionService {
6
6
  private element;
7
7
  private container;
8
8
  private options;
9
+ private orientationChangeHandler?;
9
10
  constructor(element: HTMLElement, container: HTMLElement, options: Required<DatexOptions>);
11
+ private setupOrientationHandler;
12
+ cleanup(): void;
10
13
  calculatePosition(): void;
14
+ private isMobileDevice;
11
15
  private positionForMobile;
16
+ private getHighestZIndex;
12
17
  private positionForDesktop;
13
18
  private resetContainerPosition;
14
19
  private calculateVerticalPosition;
15
20
  private calculateHorizontalPosition;
16
21
  private applyDropUpClass;
17
22
  private applyFinalPosition;
23
+ private showMobileHeader;
24
+ private hideMobileHeader;
18
25
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "datex-ui",
3
3
  "access": "public",
4
- "version": "1.1.9",
4
+ "version": "1.1.11",
5
5
  "type": "module",
6
6
  "description": "A modern, lightweight, and customizable date range picker for TypeScript/JavaScript applications",
7
7
  "main": "dist/index.esm.js",