@resolveio/client-lib-core 21.6.2 → 21.6.3

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": "@resolveio/client-lib-core",
3
- "version": "21.6.2",
3
+ "version": "21.6.3",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -1652,6 +1652,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
1652
1652
  unreadNotificationCount: number;
1653
1653
  notificationsOpen: boolean;
1654
1654
  selectedNotification: CustomerNotificationModel;
1655
+ showReadNotifications: boolean;
1655
1656
  constructor(_services: ProviderService, auth: AuthService, _ds: DialogService, _app: CoreService, _notificationCenter: NotificationCenterService);
1656
1657
  ngOnInit(): void;
1657
1658
  ngAfterViewInit(): void;
@@ -1670,11 +1671,16 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
1670
1671
  toggleAiAssistant(event?: MouseEvent): void;
1671
1672
  toggleNotifications(event?: MouseEvent): void;
1672
1673
  onDocumentClick(event: MouseEvent): void;
1674
+ toggleShowReadNotifications(event?: MouseEvent): void;
1673
1675
  markNotificationAsRead(notification: CustomerNotificationModel, event?: MouseEvent): Promise<void>;
1674
1676
  markAllNotificationsAsRead(event?: MouseEvent): Promise<void>;
1675
1677
  openNotification(notification: CustomerNotificationModel, event?: MouseEvent): Promise<void>;
1678
+ backToNotificationList(event?: MouseEvent): Promise<void>;
1676
1679
  getNotificationSeverityClass(notification: CustomerNotificationModel): string;
1677
1680
  getNotificationDateText(notification: CustomerNotificationModel): string;
1681
+ private resetNotificationPanelState;
1682
+ private rebuildNotificationBuckets;
1683
+ private updateNotificationStatusLocally;
1678
1684
  calculateDropdownsLeft(): boolean;
1679
1685
  isInRole(role: any): boolean;
1680
1686
  isSuperAdmin(): any;