@m1z23r/ngx-ui 1.1.37 → 1.1.38

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": "@m1z23r/ngx-ui",
3
- "version": "1.1.37",
3
+ "version": "1.1.38",
4
4
  "description": "A modern Angular UI component library with themeable components and responsive layout system",
5
5
  "license": "MIT",
6
6
  "author": "m1z23r",
@@ -244,6 +244,8 @@ interface DialogConfig<TData = unknown> {
244
244
  declare class DialogService {
245
245
  private readonly appRef;
246
246
  private readonly injector;
247
+ private readonly document;
248
+ private readonly platformId;
247
249
  /**
248
250
  * Opens a dialog with the specified component.
249
251
  *
@@ -330,6 +332,8 @@ interface ToastConfig {
330
332
  declare class ToastService {
331
333
  private readonly appRef;
332
334
  private readonly injector;
335
+ private readonly document;
336
+ private readonly platformId;
333
337
  private containerRef;
334
338
  private readonly toasts;
335
339
  private readonly toastRefs;
@@ -870,6 +874,7 @@ declare class SelectComponent<T = unknown> implements AfterContentInit, OnDestro
870
874
  private asyncSearchAbortController;
871
875
  private debounceTimer;
872
876
  private readonly elementRef;
877
+ private readonly document;
873
878
  private positionCleanup;
874
879
  private readonly initializedOptions;
875
880
  constructor();
@@ -947,6 +952,7 @@ declare class DropdownComponent implements OnDestroy {
947
952
  triggerRef: ElementRef<HTMLElement>;
948
953
  menuRef: ElementRef<HTMLElement>;
949
954
  private readonly elementRef;
955
+ private readonly document;
950
956
  private positionCleanup;
951
957
  private contextMenuPosition;
952
958
  readonly trigger: _angular_core.Signal<DropdownTriggerDirective | undefined>;
@@ -1130,6 +1136,8 @@ declare class TooltipDirective implements OnDestroy {
1130
1136
  readonly tooltipPosition: _angular_core.InputSignal<TooltipPosition>;
1131
1137
  readonly tooltipDelay: _angular_core.InputSignal<number>;
1132
1138
  readonly tooltipDisabled: _angular_core.InputSignal<boolean>;
1139
+ private readonly document;
1140
+ private readonly platformId;
1133
1141
  private tooltipElement;
1134
1142
  private showTimeout;
1135
1143
  private readonly isVisible;
@@ -1531,6 +1539,7 @@ declare class DatepickerComponent implements OnDestroy {
1531
1539
  readonly focusedDate: _angular_core.WritableSignal<Date | null>;
1532
1540
  readonly hoveredDate: _angular_core.WritableSignal<Date | null>;
1533
1541
  private readonly elementRef;
1542
+ private readonly document;
1534
1543
  private positionCleanup;
1535
1544
  private static nextId;
1536
1545
  private readonly generatedId;
@@ -1616,6 +1625,7 @@ declare class TimepickerComponent implements OnDestroy {
1616
1625
  readonly selectedSecond: _angular_core.WritableSignal<number>;
1617
1626
  readonly selectedPeriod: _angular_core.WritableSignal<"AM" | "PM">;
1618
1627
  private readonly elementRef;
1628
+ private readonly document;
1619
1629
  private positionCleanup;
1620
1630
  private static nextId;
1621
1631
  private readonly generatedId;
@@ -1713,6 +1723,7 @@ declare class DatetimepickerComponent implements OnDestroy {
1713
1723
  readonly selectedSecond: _angular_core.WritableSignal<number>;
1714
1724
  readonly selectedPeriod: _angular_core.WritableSignal<"AM" | "PM">;
1715
1725
  private readonly elementRef;
1726
+ private readonly document;
1716
1727
  private positionCleanup;
1717
1728
  private static nextId;
1718
1729
  private readonly generatedId;
@@ -2012,6 +2023,8 @@ declare class TemplateInputComponent implements OnDestroy, AfterViewInit {
2012
2023
  protected readonly inputRef: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
2013
2024
  popoverRef: ElementRef<HTMLElement>;
2014
2025
  private readonly hostRef;
2026
+ private readonly document;
2027
+ private readonly platformId;
2015
2028
  private positionCleanup;
2016
2029
  private currentSpanRect;
2017
2030
  private isPortaled;