@everymatrix/nuts-inbox-widget 1.48.0 → 1.48.2
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/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/nuts-inbox-widget.cjs.js +1 -1
- package/dist/cjs/nuts-inbox-widget_3.cjs.entry.js +70 -5
- package/dist/collection/components/nuts-inbox-widget/nuts-inbox-widget.js +30 -2
- package/dist/collection/components/nuts-notification/nuts-notification.js +30 -3
- package/dist/collection/components/nuts-popover/nuts-popover.js +30 -3
- package/dist/esm/loader.js +1 -1
- package/dist/esm/nuts-inbox-widget.js +1 -1
- package/dist/esm/nuts-inbox-widget_3.entry.js +70 -5
- package/dist/nuts-inbox-widget/nuts-inbox-widget.esm.js +1 -1
- package/dist/nuts-inbox-widget/p-9326aa64.entry.js +1 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/nuts-inbox-widget/.stencil/packages/stencil/nuts-inbox-widget/stencil.config.d.ts +2 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/nuts-inbox-widget/.stencil/packages/stencil/nuts-inbox-widget/stencil.config.dev.d.ts +2 -0
- package/dist/types/components/nuts-inbox-widget/nuts-inbox-widget.d.ts +3 -0
- package/dist/types/components/nuts-notification/nuts-notification.d.ts +4 -0
- package/dist/types/components/nuts-popover/nuts-popover.d.ts +4 -0
- package/package.json +1 -1
- package/dist/nuts-inbox-widget/p-910cb7ba.entry.js +0 -1
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/nuts-inbox-widget/.stencil/packages/stencil/nuts-inbox-widget/stencil.config.d.ts +0 -2
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/nuts-inbox-widget/.stencil/packages/stencil/nuts-inbox-widget/stencil.config.dev.d.ts +0 -2
|
@@ -65,6 +65,7 @@ export declare class NutsInboxWidget {
|
|
|
65
65
|
private isLoading;
|
|
66
66
|
private popoverVisible;
|
|
67
67
|
private unseenCount;
|
|
68
|
+
private limitStylingAppends;
|
|
68
69
|
private socketRef;
|
|
69
70
|
private bellIconRef;
|
|
70
71
|
private token;
|
|
@@ -82,6 +83,8 @@ export declare class NutsInboxWidget {
|
|
|
82
83
|
setClientStyling: () => void;
|
|
83
84
|
setClientStylingURL: () => void;
|
|
84
85
|
connectedCallback(): Promise<void>;
|
|
86
|
+
handleStylingChange(newValue: string, oldValue: string): void;
|
|
87
|
+
handleStylingUrlChange(newValue: string, oldValue: string): void;
|
|
85
88
|
handleNewTranslations(): void;
|
|
86
89
|
componentWillLoad(): Promise<void>;
|
|
87
90
|
componentDidRender(): void;
|
|
@@ -80,6 +80,7 @@ export declare class NutsNotification {
|
|
|
80
80
|
messageSeen: boolean;
|
|
81
81
|
messageRead: boolean;
|
|
82
82
|
displayedContent: string;
|
|
83
|
+
private limitStylingAppends;
|
|
83
84
|
private stylingContainer;
|
|
84
85
|
private dropdownArrowRef;
|
|
85
86
|
private baseUrl;
|
|
@@ -87,7 +88,10 @@ export declare class NutsNotification {
|
|
|
87
88
|
settingsOpened: EventEmitter<any>;
|
|
88
89
|
allNotificationsReadHandler(): void;
|
|
89
90
|
settingsOpenedHandler(event: CustomEvent<any>): void;
|
|
91
|
+
handleStylingChange(newValue: string, oldValue: string): void;
|
|
92
|
+
handleStylingUrlChange(newValue: string, oldValue: string): void;
|
|
90
93
|
handleNewTranslations(): void;
|
|
94
|
+
componentDidRender(): void;
|
|
91
95
|
componentWillLoad(): Promise<void>;
|
|
92
96
|
connectedCallback(): void;
|
|
93
97
|
toggleSettingsModal: (e: MouseEvent) => void;
|
|
@@ -48,6 +48,7 @@ export declare class NutsPopover {
|
|
|
48
48
|
private notifications;
|
|
49
49
|
private isLoading;
|
|
50
50
|
private showMarkAll;
|
|
51
|
+
private limitStylingAppends;
|
|
51
52
|
private currentPage;
|
|
52
53
|
private stylingContainer;
|
|
53
54
|
private baseUrl;
|
|
@@ -55,8 +56,11 @@ export declare class NutsPopover {
|
|
|
55
56
|
messageDeteledHandler(event: CustomEvent<any>): void;
|
|
56
57
|
newNotificationHandler(event: CustomEvent<any>): void;
|
|
57
58
|
unseenCountHandler(newValue: number): void;
|
|
59
|
+
handleStylingChange(newValue: string, oldValue: string): void;
|
|
60
|
+
handleStylingUrlChange(newValue: string, oldValue: string): void;
|
|
58
61
|
handleNewTranslations(): void;
|
|
59
62
|
componentWillLoad(): Promise<void>;
|
|
63
|
+
componentDidRender(): void;
|
|
60
64
|
updateNotificationsDataAfterPageChange: (getNotificationsData: GetNotificationsReturnData) => void;
|
|
61
65
|
nextPage: () => Promise<void>;
|
|
62
66
|
prevPage: () => void;
|