@sumaris-net/ngx-components 2.7.3-rc62 → 2.7.3-rc64
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/esm2022/src/app/social/user-event/notification/user-event-notification.icon.mjs +11 -9
- package/esm2022/src/app/social/user-event/user-event.service.mjs +5 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +14 -10
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/social/user-event/notification/user-event-notification.icon.d.ts +4 -4
- package/src/assets/manifest.json +1 -1
- package/src/theme/_mixins.scss +5 -2
package/package.json
CHANGED
|
@@ -10,6 +10,9 @@ export declare class UserEventNotificationIcon implements OnInit, OnDestroy {
|
|
|
10
10
|
protected accountService: AccountService;
|
|
11
11
|
protected popoverController: PopoverController;
|
|
12
12
|
private cd;
|
|
13
|
+
private _logPrefix;
|
|
14
|
+
private _readEvent;
|
|
15
|
+
private _readEvents;
|
|
13
16
|
debug: boolean;
|
|
14
17
|
titleI18n: string;
|
|
15
18
|
disabled: boolean;
|
|
@@ -19,13 +22,10 @@ export declare class UserEventNotificationIcon implements OnInit, OnDestroy {
|
|
|
19
22
|
footerActions: IUserEventAction[];
|
|
20
23
|
protected visible: boolean;
|
|
21
24
|
protected readonly countChanges$: Observable<number>;
|
|
22
|
-
private _logPrefix;
|
|
23
|
-
private _readEvent;
|
|
24
|
-
private _readEvents;
|
|
25
25
|
constructor(userEventService: IUserEventService<IUserEvent<any>, IUserEventFilter<any>>, accountService: AccountService, popoverController: PopoverController, cd: ChangeDetectorRef);
|
|
26
26
|
ngOnInit(): Promise<void>;
|
|
27
|
-
showList(event: Event): Promise<void>;
|
|
28
27
|
ngOnDestroy(): void;
|
|
28
|
+
showList(event: Event): Promise<void>;
|
|
29
29
|
protected setVisible(value: boolean): void;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserEventNotificationIcon, [{ optional: true; }, null, null, null]>;
|
|
31
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<UserEventNotificationIcon, "app-user-event-notification-icon", never, { "debug": { "alias": "debug"; "required": false; }; "titleI18n": { "alias": "titleI18n"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "autoHide": { "alias": "autoHide"; "required": false; }; "headerActions": { "alias": "headerActions"; "required": false; }; "footerActions": { "alias": "footerActions"; "required": false; }; }, {}, never, never, false, never>;
|
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "2.7.3-
|
|
5
|
+
"version": "2.7.3-rc64",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|
package/src/theme/_mixins.scss
CHANGED
|
@@ -103,16 +103,19 @@
|
|
|
103
103
|
--expansion-panel-padding: var(--ion-padding);
|
|
104
104
|
--expansion-panel-header-padding: var(--ion-padding);
|
|
105
105
|
|
|
106
|
-
--mat-toolbar-height: #{$mat-toolbar-height-desktop};
|
|
107
|
-
--mat-paginator-height: mat.$paginator-height;
|
|
108
106
|
--mat-tab-link-height: #{$mat-tab-link-height};
|
|
109
107
|
--mat-tab-bar-height: #{$mat-tab-bar-height};
|
|
110
108
|
|
|
109
|
+
--mat-toolbar-height: #{$mat-toolbar-height-desktop};
|
|
110
|
+
--mat-toolbar-background-color: #{$mat-toolbar-background-color};
|
|
111
|
+
--mat-paginator-height: mat.$paginator-height;
|
|
112
|
+
|
|
111
113
|
--app-table-header-height: #{$app-table-header-height};
|
|
112
114
|
--app-paginator-height: #{$app-paginator-height};
|
|
113
115
|
--app-toolbar-height: #{$app-toolbar-height};
|
|
114
116
|
--app-footer-height: var(--app-form-buttons-bar-height);
|
|
115
117
|
--app-form-buttons-bar-height: #{$app-form-buttons-bar-height};
|
|
118
|
+
--app-form-color-disabled: #{$app-form-color-disabled};
|
|
116
119
|
--app-form-color-computed: #{$app-form-color-computed};
|
|
117
120
|
--app-form-field-background-color: #{$app-form-field-background-color};
|
|
118
121
|
--app-form-field-disabled-background-color: #{$app-form-field-disabled-background-color};
|