@sumaris-net/ngx-components 1.21.0-beta2 → 1.21.0-beta5
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/bundles/sumaris-net.ngx-components.umd.js +2 -11
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/menu/menu.component.js +1 -8
- package/esm2015/src/app/social/user-event/user-event.model.js +1 -1
- package/esm2015/src/app/social/user-event/user-event.service.js +3 -5
- package/fesm2015/sumaris-net.ngx-components.js +2 -11
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/social/user-event/user-event.model.d.ts +1 -1
- package/src/app/social/user-event/user-event.service.d.ts +2 -3
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -24386,9 +24386,6 @@
|
|
|
24386
24386
|
this._subscription = new rxjs.Subscription();
|
|
24387
24387
|
this.loading = true;
|
|
24388
24388
|
this.isLogin = false;
|
|
24389
|
-
// showUserEventNotification: boolean;
|
|
24390
|
-
// showJobProgression: boolean;
|
|
24391
|
-
// jobProgressionOptions: JobProgressionOptions;
|
|
24392
24389
|
this.$items = new rxjs.BehaviorSubject(undefined);
|
|
24393
24390
|
this.id = 'menu';
|
|
24394
24391
|
this.menuId = 'left';
|
|
@@ -24413,10 +24410,6 @@
|
|
|
24413
24410
|
case 2:
|
|
24414
24411
|
// Wait platform started
|
|
24415
24412
|
_b.sent();
|
|
24416
|
-
// Init social options
|
|
24417
|
-
// this.showUserEventNotification = toBoolean(this.socialModuleOptions?.showUserEventNotification, false);
|
|
24418
|
-
// this.showJobProgression = toBoolean(this.socialModuleOptions?.showJobProgression, false);
|
|
24419
|
-
// this.jobProgressionOptions = this.socialModuleOptions?.jobProgressionOptions;
|
|
24420
24413
|
// Listen to menu service event
|
|
24421
24414
|
this.menuService.splitPaneWhen
|
|
24422
24415
|
.subscribe(function (value) { return _this.setSplitPaneWhen(value); });
|
|
@@ -30179,13 +30172,12 @@
|
|
|
30179
30172
|
var UserEventServiceToken = new i0.InjectionToken('UserEventService');
|
|
30180
30173
|
var AbstractUserEventService = /** @class */ (function (_super) {
|
|
30181
30174
|
__extends(AbstractUserEventService, _super);
|
|
30182
|
-
function AbstractUserEventService(graphql, accountService, network, translate,
|
|
30175
|
+
function AbstractUserEventService(graphql, accountService, network, translate, queries, mutations, subscriptions, environment) {
|
|
30183
30176
|
var _this = _super.call(this, graphql, environment) || this;
|
|
30184
30177
|
_this.graphql = graphql;
|
|
30185
30178
|
_this.accountService = accountService;
|
|
30186
30179
|
_this.network = network;
|
|
30187
30180
|
_this.translate = translate;
|
|
30188
|
-
_this.toastController = toastController;
|
|
30189
30181
|
_this.queries = queries;
|
|
30190
30182
|
_this.mutations = mutations;
|
|
30191
30183
|
_this.subscriptions = subscriptions;
|
|
@@ -30592,7 +30584,6 @@
|
|
|
30592
30584
|
{ type: AccountService },
|
|
30593
30585
|
{ type: NetworkService },
|
|
30594
30586
|
{ type: i1$2.TranslateService },
|
|
30595
|
-
{ type: i1$5.ToastController },
|
|
30596
30587
|
{ type: undefined },
|
|
30597
30588
|
{ type: undefined },
|
|
30598
30589
|
{ type: undefined },
|
|
@@ -30609,7 +30600,7 @@
|
|
|
30609
30600
|
var UserEventService = /** @class */ (function (_super) {
|
|
30610
30601
|
__extends(UserEventService, _super);
|
|
30611
30602
|
function UserEventService(graphql, accountService, network, translate, toastController, environment) {
|
|
30612
|
-
var _this = _super.call(this, graphql, accountService, network, translate,
|
|
30603
|
+
var _this = _super.call(this, graphql, accountService, network, translate, userEventQueries, userEventMutations, undefined, environment) || this;
|
|
30613
30604
|
_this.graphql = graphql;
|
|
30614
30605
|
_this.accountService = accountService;
|
|
30615
30606
|
_this.network = network;
|