@eo-sdk/client 8.16.0-rc.1 → 8.16.0-rc.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/app/eo-client/inbox-state/inbox-state/inbox-state.component.d.ts +4 -5
- package/app/eo-framework/inbox-details/inbox-details.component.d.ts +6 -5
- package/assets/_default/i18n/de.json +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +5 -6
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +26 -16
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/eo-sdk-client.metadata.json +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/app/eo-client/inbox-state/inbox-state/inbox-state.component.js +16 -8
- package/esm2015/app/eo-framework/inbox-details/inbox-details.component.js +13 -11
- package/esm2015/projects/eo-sdk/core/lib/service/dms/dms.service.js +5 -6
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +4 -5
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +26 -16
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/lib/service/dms/dms.service.d.ts +2 -2
- package/projects/eo-sdk/core/package.json +1 -1
|
@@ -22439,7 +22439,7 @@
|
|
|
22439
22439
|
|
|
22440
22440
|
var InboxDetailsComponent = /** @class */ (function (_super) {
|
|
22441
22441
|
__extends(InboxDetailsComponent, _super);
|
|
22442
|
-
function InboxDetailsComponent(bpmService, userService, inboxService, selection, router, eventService, clipboardService, translate, pendingChanges, notify) {
|
|
22442
|
+
function InboxDetailsComponent(bpmService, userService, inboxService, selection, router, eventService, clipboardService, translate, pendingChanges, notify, storageService) {
|
|
22443
22443
|
var _this = _super.call(this) || this;
|
|
22444
22444
|
_this.bpmService = bpmService;
|
|
22445
22445
|
_this.userService = userService;
|
|
@@ -22451,11 +22451,12 @@
|
|
|
22451
22451
|
_this.translate = translate;
|
|
22452
22452
|
_this.pendingChanges = pendingChanges;
|
|
22453
22453
|
_this.notify = notify;
|
|
22454
|
+
_this.storageService = storageService;
|
|
22454
22455
|
_this.actionProcessing = { closed: true };
|
|
22455
22456
|
_this.initializing = { closed: true };
|
|
22456
22457
|
_this.filesAdding = { closed: true };
|
|
22458
|
+
_this.storageKeyLastItemID = 'eo.inbox.lastItemID';
|
|
22457
22459
|
_this.externalPanels = new i0.QueryList();
|
|
22458
|
-
_this.onDmsItemSelected = new i0.EventEmitter();
|
|
22459
22460
|
_this.addDefaultActionIfEmpty = function (res) {
|
|
22460
22461
|
var _a;
|
|
22461
22462
|
if (!((_a = res.actions) === null || _a === void 0 ? void 0 : _a.length)) {
|
|
@@ -22685,13 +22686,12 @@
|
|
|
22685
22686
|
}
|
|
22686
22687
|
};
|
|
22687
22688
|
/**
|
|
22688
|
-
* Selects a work items file entry
|
|
22689
|
+
* Selects a work items file entry.
|
|
22689
22690
|
* @param file FileEntry element to be selected
|
|
22690
22691
|
*/
|
|
22691
22692
|
InboxDetailsComponent.prototype.openWorkItemContent = function (file) {
|
|
22692
22693
|
if (!file) {
|
|
22693
22694
|
this.selectedContentFileId = null;
|
|
22694
|
-
this.onDmsItemSelected.emit(null);
|
|
22695
22695
|
if (this.applySelection) {
|
|
22696
22696
|
this.selection.find(this.applySelection.out).focus(null);
|
|
22697
22697
|
}
|
|
@@ -22702,7 +22702,6 @@
|
|
|
22702
22702
|
id: file.id,
|
|
22703
22703
|
type: file.type
|
|
22704
22704
|
};
|
|
22705
|
-
this.onDmsItemSelected.emit(params);
|
|
22706
22705
|
if (this.applySelection) {
|
|
22707
22706
|
this.selection.find(this.applySelection.out).focus(params);
|
|
22708
22707
|
}
|
|
@@ -22849,7 +22848,10 @@
|
|
|
22849
22848
|
this.selection
|
|
22850
22849
|
.find(this.applySelection.in)
|
|
22851
22850
|
.focus$.pipe(operators.takeUntil(this.componentDestroyed$))
|
|
22852
|
-
.subscribe(function (item) {
|
|
22851
|
+
.subscribe(function (item) {
|
|
22852
|
+
_this.item = item;
|
|
22853
|
+
_this.storageService.setItem(_this.storageKeyLastItemID, _this.item.id);
|
|
22854
|
+
});
|
|
22853
22855
|
}
|
|
22854
22856
|
};
|
|
22855
22857
|
InboxDetailsComponent.prototype.ngAfterViewInit = function () {
|
|
@@ -22876,7 +22878,8 @@
|
|
|
22876
22878
|
{ type: i1.ClipboardService },
|
|
22877
22879
|
{ type: i1.TranslateService },
|
|
22878
22880
|
{ type: PendingChangesService },
|
|
22879
|
-
{ type: i1.NotificationsService }
|
|
22881
|
+
{ type: i1.NotificationsService },
|
|
22882
|
+
{ type: i1.LocalStorageService }
|
|
22880
22883
|
]; };
|
|
22881
22884
|
InboxDetailsComponent.propDecorators = {
|
|
22882
22885
|
bpmFormEl: [{ type: i0.ViewChild, args: ['bpmForm',] }],
|
|
@@ -22885,7 +22888,6 @@
|
|
|
22885
22888
|
emptyState: [{ type: i0.Input }],
|
|
22886
22889
|
applySelection: [{ type: i0.Input }],
|
|
22887
22890
|
item: [{ type: i0.Input, args: ['item',] }],
|
|
22888
|
-
onDmsItemSelected: [{ type: i0.Output }],
|
|
22889
22891
|
dataType: [{ type: i0.HostBinding, args: ['attr.data-type',] }]
|
|
22890
22892
|
};
|
|
22891
22893
|
|
|
@@ -24515,10 +24517,10 @@
|
|
|
24515
24517
|
this.http = http;
|
|
24516
24518
|
this.userService = userService;
|
|
24517
24519
|
this.config = config;
|
|
24518
|
-
this.__libraries__ = [{ "name": "@ag-grid-community/angular", "version": "22.1.2", "license": "MIT" }, { "name": "@ag-grid-community/client-side-row-model", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/core", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/csv-export", "version": "22.1.1", "license": "MIT" }, { "name": "@angular/animations", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/cdk", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/common", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/compiler", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/core", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/forms", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser-dynamic", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/router", "version": "11.2.0", "license": "MIT" }, { "name": "@eo-sdk/core", "version": "8.16.0-rc.
|
|
24520
|
+
this.__libraries__ = [{ "name": "@ag-grid-community/angular", "version": "22.1.2", "license": "MIT" }, { "name": "@ag-grid-community/client-side-row-model", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/core", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/csv-export", "version": "22.1.1", "license": "MIT" }, { "name": "@angular/animations", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/cdk", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/common", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/compiler", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/core", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/forms", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser-dynamic", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/router", "version": "11.2.0", "license": "MIT" }, { "name": "@eo-sdk/core", "version": "8.16.0-rc.2", "license": "MIT" }, { "name": "@ngx-pwa/local-storage", "version": "11.1.0", "license": "MIT" }, { "name": "@ngx-translate/core", "version": "13.0.0", "license": "MIT" }, { "name": "@types/lodash", "version": "4.14.88", "license": "MIT" }, { "name": "core-js", "version": "2.5.7", "license": "MIT" }, { "name": "file-saver", "version": "2.0.5", "license": "MIT" }, { "name": "font-awesome", "version": "4.7.0", "license": "(OFL-1.1 AND MIT)" }, { "name": "keyboardevent-key-polyfill", "version": "1.1.0", "license": "CC0-1.0" }, { "name": "keycode-js", "version": "0.0.4", "license": "MIT" }, { "name": "mobile-drag-drop", "version": "2.2.0", "license": "MIT" }, { "name": "moment", "version": "2.22.2", "license": "MIT" }, { "name": "ngx-toastr", "version": "13.2.0", "license": "MIT" }, { "name": "primeicons", "version": "1.0.0-beta.6", "license": "MIT" }, { "name": "primeng", "version": "7.0.1", "license": "MIT" }, { "name": "reflect-metadata", "version": "0.1.10", "license": "Apache-2.0" }, { "name": "rxjs", "version": "6.6.3", "license": "Apache-2.0" }, { "name": "tslib", "version": "2.1.0", "license": "0BSD" }, { "name": "zone.js", "version": "0.10.3", "license": "MIT" }];
|
|
24519
24521
|
this.ctrl = {
|
|
24520
24522
|
productName: 'yuuvis® RAD client',
|
|
24521
|
-
clientVersion: '8.16.0-rc.
|
|
24523
|
+
clientVersion: '8.16.0-rc.2'
|
|
24522
24524
|
};
|
|
24523
24525
|
this.licenses = {
|
|
24524
24526
|
'MIT': {
|
|
@@ -25939,7 +25941,7 @@
|
|
|
25939
25941
|
|
|
25940
25942
|
var InboxStateComponent = /** @class */ (function (_super) {
|
|
25941
25943
|
__extends(InboxStateComponent, _super);
|
|
25942
|
-
function InboxStateComponent(translate, selection, titleService, inboxService, pendingChanges, empty, eventService, route) {
|
|
25944
|
+
function InboxStateComponent(translate, selection, titleService, inboxService, pendingChanges, empty, eventService, route, storageService) {
|
|
25943
25945
|
var _this = _super.call(this) || this;
|
|
25944
25946
|
_this.translate = translate;
|
|
25945
25947
|
_this.selection = selection;
|
|
@@ -25949,6 +25951,7 @@
|
|
|
25949
25951
|
_this.empty = empty;
|
|
25950
25952
|
_this.eventService = eventService;
|
|
25951
25953
|
_this.route = route;
|
|
25954
|
+
_this.storageService = storageService;
|
|
25952
25955
|
_this.inboxFilterFields = [];
|
|
25953
25956
|
_this.typeFilterFields = [];
|
|
25954
25957
|
_this.inboxSelectionId = 'inbox';
|
|
@@ -25958,6 +25961,7 @@
|
|
|
25958
25961
|
_this.defaultFilterParams = {};
|
|
25959
25962
|
_this.emptyState = { icon: 'ic_no-file.svg', text: '', className: '' };
|
|
25960
25963
|
_this.inboxChanged = false;
|
|
25964
|
+
_this.storageKeyLastItemID = 'eo.inbox.lastItemID';
|
|
25961
25965
|
_this.titleService.setBaseTitle(_this.translate.instant('eo.inbox.list.title'));
|
|
25962
25966
|
//secondary selection instance for inbox items
|
|
25963
25967
|
_this.inboxSelection = _this.selection.createNew(_this.inboxSelectionId);
|
|
@@ -25994,9 +25998,6 @@
|
|
|
25994
25998
|
InboxStateComponent.prototype.hasPendingChanges = function () {
|
|
25995
25999
|
return this.pendingChanges.hasPendingTask();
|
|
25996
26000
|
};
|
|
25997
|
-
InboxStateComponent.prototype.onDmsItemSelected = function (data) {
|
|
25998
|
-
this.selectedDmsParams = data;
|
|
25999
|
-
};
|
|
26000
26001
|
InboxStateComponent.prototype.refreshGrid = function () {
|
|
26001
26002
|
this.inboxChanged = false;
|
|
26002
26003
|
this.inboxSelection.disable(false);
|
|
@@ -26086,6 +26087,14 @@
|
|
|
26086
26087
|
_this.gridData = data;
|
|
26087
26088
|
_this.updateGrid(_this.gridData);
|
|
26088
26089
|
});
|
|
26090
|
+
var lastInboxItemID = this.storageService.getItem(this.storageKeyLastItemID);
|
|
26091
|
+
if (lastInboxItemID) {
|
|
26092
|
+
var item_1 = this.gridData.find(function (i) { return i.id === lastInboxItemID; });
|
|
26093
|
+
if (item_1) {
|
|
26094
|
+
this.selectFirst = false;
|
|
26095
|
+
setTimeout(function () { return _this.eoGrid.selectRow(item_1); }, 500);
|
|
26096
|
+
}
|
|
26097
|
+
}
|
|
26089
26098
|
};
|
|
26090
26099
|
InboxStateComponent.prototype.ngOnDestroy = function () {
|
|
26091
26100
|
this.selection.clear();
|
|
@@ -26095,7 +26104,7 @@
|
|
|
26095
26104
|
InboxStateComponent.decorators = [
|
|
26096
26105
|
{ type: i0.Component, args: [{
|
|
26097
26106
|
selector: 'eo-inbox-state',
|
|
26098
|
-
template: "<eo-undock-split>\r\n <eo-split [gutterSize]=\"16\" [visibleTransition]=\"true\" [cacheLayout]=\"'inbox.state'\">\r\n <eo-split-area [size]=\"30\" [minSizePixel]=\"300\">\r\n <ng-template pTemplate=\"content\">\r\n <eo-list-container #eoList [applySelection]=\"{out: inboxSelectionId}\">\r\n <div class=\"eo-header\">\r\n\r\n <eo-icon class=\"eo-header-icon\" [iconSrc]=\"'assets/_default/svg/ic_inbox.svg'\"></eo-icon>\r\n <div class=\"eo-header-info\">\r\n <div class=\"eo-header-title\" translate>eo.inbox.list.title</div>\r\n </div>\r\n <div class=\"eo-header-actions\">\r\n <eo-icon class=\"button primary refresh-button\"\r\n [ngClass]=\"{inboxChanged: inboxChanged}\"\r\n (click)=\"cFilter.resetFilter(); refreshGrid()\"\r\n [iconSrc]=\"'assets/_default/svg/ic_refresh.svg'\"\r\n [iconTitle]=\"('eo.list.refresh' | translate)\"></eo-icon>\r\n\r\n <eo-overlay #oFilter class=\"overlay-filter\"\r\n [iconSrc]=\"'assets/_default/svg/ic_filter.svg'\"\r\n [iconClass]=\"'primary'\"\r\n [iconTitle]=\"'eo.list.filter' | translate\">\r\n <eo-custom-filter #cFilter\r\n (change)=\"cFilter.updateGrid(eoList.eoGridSubject, $event)\"\r\n (active)=\"oFilter.onActiveChanged($event)\">\r\n <eo-text-filter [title]=\"'eo.inbox.filter.title' | translate\"\r\n [filterParams]=\"defaultFilterParams\" [id]=\"'inbox.text'\"
|
|
26107
|
+
template: "<eo-undock-split>\r\n <eo-split [gutterSize]=\"16\" [visibleTransition]=\"true\" [cacheLayout]=\"'inbox.state'\">\r\n <eo-split-area [size]=\"30\" [minSizePixel]=\"300\">\r\n <ng-template pTemplate=\"content\">\r\n <eo-list-container #eoList [applySelection]=\"{out: inboxSelectionId}\">\r\n <div class=\"eo-header\">\r\n\r\n <eo-icon class=\"eo-header-icon\" [iconSrc]=\"'assets/_default/svg/ic_inbox.svg'\"></eo-icon>\r\n <div class=\"eo-header-info\">\r\n <div class=\"eo-header-title\" translate>eo.inbox.list.title</div>\r\n </div>\r\n <div class=\"eo-header-actions\">\r\n <eo-icon class=\"button primary refresh-button\"\r\n [ngClass]=\"{inboxChanged: inboxChanged}\"\r\n (click)=\"cFilter.resetFilter(); refreshGrid()\"\r\n [iconSrc]=\"'assets/_default/svg/ic_refresh.svg'\"\r\n [iconTitle]=\"('eo.list.refresh' | translate)\"></eo-icon>\r\n\r\n <eo-overlay #oFilter class=\"overlay-filter\"\r\n [iconSrc]=\"'assets/_default/svg/ic_filter.svg'\"\r\n [iconClass]=\"'primary'\"\r\n [iconTitle]=\"'eo.list.filter' | translate\">\r\n <eo-custom-filter #cFilter\r\n (change)=\"cFilter.updateGrid(eoList.eoGridSubject, $event)\"\r\n (active)=\"oFilter.onActiveChanged($event)\">\r\n <eo-text-filter [title]=\"'eo.inbox.filter.title' | translate\"\r\n [filterParams]=\"defaultFilterParams\" [id]=\"'inbox.text'\"\r\n [matchFields]=\"['title','description','id']\"></eo-text-filter>\r\n <eo-set-filter [operator]=\"'AND'\" [id]=\"'inbox.set'\" [filterParams]=\"defaultFilterParams\" [options]=\"inboxFilterFields\"></eo-set-filter>\r\n <eo-set-filter [operator]=\"'OR'\" [id]=\"'inbox.type'\" [filterParams]=\"defaultFilterParams\" [options]=\"typeFilterFields\"\r\n [title]=\"'eo.inbox.filter.section.type' | translate\"></eo-set-filter>\r\n </eo-custom-filter>\r\n </eo-overlay>\r\n\r\n <eo-overlay #oSort class=\"overlay-sort\"\r\n [iconSrc]=\"'assets/_default/svg/ic_sort.svg'\"\r\n [iconTitle]=\"'eo.list.sort' | translate\"\r\n [iconClass]=\"'primary'\">\r\n <eo-custom-sort #cSort [id]=\"'inbox.sort'\"\r\n (change)=\"cSort.updateGrid(eoList.eoGrid, $event)\"\r\n (active)=\"oSort.onActiveChanged($event)\"\r\n [sortFields]=\"sortFields\"></eo-custom-sort>\r\n </eo-overlay>\r\n\r\n </div>\r\n </div>\r\n <div class=\"eo-body\">\r\n <eo-grid #eoGrid\r\n *ngIf=\"gridOptions?.rowData\"\r\n [gridOptions]=\"gridOptions\"\r\n [fullWidth]=\"true\"\r\n [showHeader]=\"true\"\r\n [showFooter]=\"true\"\r\n [selectFirst]=\"selectFirst\"\r\n [options]=\"{filterActive: oFilter.active}\"\r\n (eoGridCountChanged)=\"eoList.onCountChanged($event);onCountChanged($event)\"\r\n (eoGridSelectionChanged)=\"eoList.onSelectionChanged($event)\"\r\n (eoGridFocusChanged)=\"eoList.onFocusChanged($event)\">\r\n <div class=\"header\">\r\n </div>\r\n\r\n <div class=\"footer\">\r\n <eo-total-count [gridCount]=\"eoList.gridCount\" [outsideGrid]=\"false\" class=\"flex-row\"></eo-total-count>\r\n </div>\r\n\r\n <div class=\"empty\">\r\n <eo-error-message\r\n [emptyState]=\"{icon: 'ic_inbox.svg', text: oFilter.active ? 'eo.no.filter.result' : 'eo.inbox.list.empty'}\"></eo-error-message>\r\n <eo-reset-filter [isFilterActive]=\"oFilter.active\" (click)=\"cFilter.resetFilter();cSort.reset();refreshGrid()\"></eo-reset-filter>\r\n </div>\r\n\r\n </eo-grid>\r\n </div>\r\n </eo-list-container>\r\n </ng-template>\r\n </eo-split-area>\r\n <eo-split-area [size]=\"30\" [minSizePixel]=\"400\">\r\n <ng-template pTemplate=\"content\">\r\n <eo-inbox-details [applySelection]=\"{in: inboxSelectionId, out: inboxDmsObjectSelectionId}\" [emptyState]=\"emptyState\">\r\n <eo-tab-plugin [type]=\"'inbox-details-tab.inbox'\"></eo-tab-plugin>\r\n </eo-inbox-details>\r\n </ng-template>\r\n </eo-split-area>\r\n <eo-split-area [size]=\"40\" [minSizePixel]=\"400\" [cache]=\"false\">\r\n <ng-template pTemplate=\"content\">\r\n\r\n <eo-object-details [applySelection]=\"{in: inboxDmsObjectSelectionId}\" [cacheLayout]=\"'inbox.state.object-details'\">\r\n <eo-tab-plugin [type]=\"'object-details-tab.inbox'\"></eo-tab-plugin>\r\n </eo-object-details>\r\n </ng-template>\r\n </eo-split-area>\r\n </eo-split>\r\n</eo-undock-split>\r\n",
|
|
26099
26108
|
styles: [":host{bottom:var(--app-pane-padding);left:var(--app-pane-padding);position:absolute;right:var(--app-pane-padding);top:var(--app-pane-padding)}:host eo-split-area{background-color:var(--panel-background-grey);box-shadow:0 2px 5px 0 rgba(0,0,0,.2)}:host .inboxChanged,:host .inboxChanged:hover{background:var(--color-success);color:#fff}:host ::ng-deep .ag-cell .list-item{align-items:center;display:flex;flex:1;flex-direction:row;height:80px;min-height:0;min-width:0}:host ::ng-deep .ag-cell .list-item[unselectable]{-moz-user-select:none;-webkit-user-select:none;user-select:none}:host ::ng-deep .ag-cell .list-item .content{display:inline-block;flex:1;max-width:none;overflow:hidden;padding:var(--app-pane-padding);text-overflow:ellipsis;white-space:nowrap}:host ::ng-deep .ag-cell .list-item .content .notes>span{-webkit-border-radius:2px;background-color:var(--color-primary-4);border-radius:2px;color:var(--color-white);font-size:var(--font-hint);padding:1px calc(var(--app-pane-padding)/4) 0 calc(var(--app-pane-padding)/4)}:host ::ng-deep .ag-cell .list-item .content .notes.pastDue span.period{background-color:var(--color-error)}:host ::ng-deep .ag-cell .list-item .content .title{font-size:var(--font-body);font-weight:var(--font-weight-bold)}:host ::ng-deep .ag-cell .list-item .content .description{color:var(--text-color-caption);font-size:var(--font-caption)}:host ::ng-deep .ag-cell .list-item.read .title{font-weight:var(--font-weight-normal)}:host ::ng-deep .ag-cell .list-item .meta{align-items:flex-end;display:flex;flex-flow:column;padding:0 calc(var(--app-pane-padding)/2)}:host ::ng-deep .ag-cell .list-item .meta .date{color:rgba(var(--color-black-rgb),.4)}"]
|
|
26100
26109
|
},] }
|
|
26101
26110
|
];
|
|
@@ -26107,7 +26116,8 @@
|
|
|
26107
26116
|
{ type: PendingChangesService },
|
|
26108
26117
|
{ type: EmptyStateService },
|
|
26109
26118
|
{ type: i1.EventService },
|
|
26110
|
-
{ type: i2.ActivatedRoute }
|
|
26119
|
+
{ type: i2.ActivatedRoute },
|
|
26120
|
+
{ type: i1.LocalStorageService }
|
|
26111
26121
|
]; };
|
|
26112
26122
|
InboxStateComponent.propDecorators = {
|
|
26113
26123
|
eoGrid: [{ type: i0.ViewChild, args: ['eoGrid',] }]
|