@acontplus/ng-components 2.1.19 → 2.1.21

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": "@acontplus/ng-components",
3
- "version": "2.1.19",
3
+ "version": "2.1.21",
4
4
  "description": "Comprehensive Angular Material UI component library featuring dynamic Tabulator tables, theme toggle with dark mode, dialog wrappers, autocomplete components, cards, buttons, icons, input chips, spinners, directives, pipes, and SCSS styling utilities.",
5
5
  "peerDependencies": {
6
6
  "@acontplus/ui-kit": "^1.0.2",
@@ -611,6 +611,7 @@ interface AlertDialogResult<T = any> {
611
611
  declare class AlertDialogService {
612
612
  private dialog;
613
613
  private zIndexService;
614
+ private openAlertDialogs;
614
615
  private defaultOptions;
615
616
  /**
616
617
  * Configurar opciones por defecto para todos los diálogos
@@ -667,7 +668,12 @@ declare class AlertDialogService {
667
668
  */
668
669
  critical(options: string | Omit<AlertDialogOptions, 'forceToTop'>): Promise<AlertDialogResult>;
669
670
  /**
670
- * Cerrar todos los diálogos abiertos
671
+ * Cerrar solo los AlertDialogs abiertos (no afecta otros diálogos)
672
+ */
673
+ closeAllAlertDialogs(): void;
674
+ /**
675
+ * Cerrar TODOS los diálogos abiertos (incluyendo otros servicios)
676
+ * ⚠️ Usar con cuidado - afecta todos los diálogos de MatDialog
671
677
  */
672
678
  closeAll(): void;
673
679
  /**
@@ -749,7 +755,7 @@ declare class DynamicSelect implements OnInit, OnDestroy {
749
755
  clearable: _angular_core.InputSignal<boolean>;
750
756
  searchable: _angular_core.InputSignal<boolean>;
751
757
  virtualScroll: _angular_core.InputSignal<boolean>;
752
- dropdownPosition: _angular_core.InputSignal<"auto" | "top" | "bottom">;
758
+ dropdownPosition: _angular_core.InputSignal<"top" | "bottom" | "auto">;
753
759
  closeOnSelect: _angular_core.InputSignal<boolean>;
754
760
  hideSelected: _angular_core.InputSignal<boolean>;
755
761
  multiple: _angular_core.InputSignal<boolean>;