@naniteninja/dashboard-components-lib 2.1.11 → 2.1.13
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
|
@@ -1513,6 +1513,7 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1513
1513
|
x: number;
|
|
1514
1514
|
y: number;
|
|
1515
1515
|
};
|
|
1516
|
+
private globalMenuClickListener;
|
|
1516
1517
|
settingsTriggerWrapperEl: ElementRef<HTMLElement>;
|
|
1517
1518
|
settingsTriggerPortalTemplate: TemplateRef<any>;
|
|
1518
1519
|
private settingsTriggerPortalViewRef;
|
|
@@ -1528,7 +1529,9 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1528
1529
|
contextMenuTemplate: TemplateRef<any>;
|
|
1529
1530
|
private contextMenuViewRef;
|
|
1530
1531
|
private contextMenuClickListener;
|
|
1531
|
-
|
|
1532
|
+
confirmDialogTemplate: TemplateRef<any>;
|
|
1533
|
+
private confirmDialogViewRef;
|
|
1534
|
+
private confirmDialogKeyListener;
|
|
1532
1535
|
private pendingGroupingMode;
|
|
1533
1536
|
alertTemplate: TemplateRef<any>;
|
|
1534
1537
|
private alertViewRef;
|
|
@@ -1548,6 +1551,8 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1548
1551
|
private dragMoveSubject;
|
|
1549
1552
|
private destroy$;
|
|
1550
1553
|
recentlyDroppedId: string | null;
|
|
1554
|
+
private runtimeIdSeq;
|
|
1555
|
+
private runtimeIdByObject;
|
|
1551
1556
|
private colorChangeSubject;
|
|
1552
1557
|
private readonly COLOR_CHANGE_DEBOUNCE_MS;
|
|
1553
1558
|
isScrollDragging: boolean;
|
|
@@ -1613,6 +1618,8 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1613
1618
|
* If no snapshot exists, shows a toastr and does nothing.
|
|
1614
1619
|
*/
|
|
1615
1620
|
restoreCustomGroups(): void;
|
|
1621
|
+
private openConfirmDialog;
|
|
1622
|
+
private dismissConfirmDialog;
|
|
1616
1623
|
confirmGroupBy(): void;
|
|
1617
1624
|
cancelGroupBy(): void;
|
|
1618
1625
|
showAlert(title: string, description: string, durationMs?: number): void;
|
|
@@ -1716,6 +1723,7 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1716
1723
|
private stopEdgeScroll;
|
|
1717
1724
|
trackByNode(index: number, node: TabNode): string;
|
|
1718
1725
|
trackByItem(index: number, item: any): string;
|
|
1726
|
+
private getRuntimeId;
|
|
1719
1727
|
getSafeId(item: any): string;
|
|
1720
1728
|
isGroup(node: TabNode): node is IGroupWrapper;
|
|
1721
1729
|
isItem(node: TabNode): node is ITabWrapper;
|