@everymatrix/nuts-inbox-widget 1.73.21 → 1.73.23

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.
@@ -59,7 +59,6 @@ export interface GetNotificationsResponseData {
59
59
  hasMore: boolean;
60
60
  }
61
61
  export interface GetNotificationsReturnData {
62
- isLoading: boolean;
63
62
  numberOfNotifications: number;
64
63
  notifications: Notification[];
65
64
  hasMore: boolean;
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter } from '../../stencil-public-runtime';
2
- import { GetNotificationsReturnData } from '../../api/methods/types';
3
2
  export declare class NutsPopover {
4
3
  /**
5
4
  * Language code of the content
@@ -47,6 +46,7 @@ export declare class NutsPopover {
47
46
  translationUrl: string;
48
47
  private notifications;
49
48
  private isLoading;
49
+ private isNotificationsLoading;
50
50
  private showMarkAll;
51
51
  private limitStylingAppends;
52
52
  private showDeleteAllPopup;
@@ -68,7 +68,7 @@ export declare class NutsPopover {
68
68
  handleNewTranslations(): void;
69
69
  componentWillLoad(): Promise<void>;
70
70
  componentDidRender(): void;
71
- updateNotificationsDataAfterPageChange: (getNotificationsData: GetNotificationsReturnData) => void;
71
+ triggerGetNotifications(): Promise<void>;
72
72
  nextPage: () => Promise<void>;
73
73
  prevPage: () => void;
74
74
  setClientStyling: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/nuts-inbox-widget",
3
- "version": "1.73.21",
3
+ "version": "1.73.23",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",