nuxeo-development-framework 3.0.1 → 3.0.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/bundles/nuxeo-development-framework.umd.js +5 -5
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/file-manger/file-manager.abstract.js +5 -4
- package/esm2015/lib/shared-services/file-manager.service.js +2 -3
- package/fesm2015/nuxeo-development-framework.js +5 -5
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/shared-services/file-manager.service.d.ts +0 -1
- package/package.json +1 -1
|
@@ -21230,7 +21230,6 @@
|
|
|
21230
21230
|
.toPromise();
|
|
21231
21231
|
};
|
|
21232
21232
|
this.setMyTableConfiguration();
|
|
21233
|
-
this.myPagesRootNames = this.appConfService.myConfiguration.myPagesRootsNames;
|
|
21234
21233
|
this.langSubscription = this.translationService.isArabic$.subscribe(function (res) {
|
|
21235
21234
|
_this.isArabic = res;
|
|
21236
21235
|
_this.userPermittedTypes = _this.sortingTypes(_this.userPermittedTypes);
|
|
@@ -21583,7 +21582,7 @@
|
|
|
21583
21582
|
pageSize: 500,
|
|
21584
21583
|
};
|
|
21585
21584
|
return (id == 'root' ? this.mainFolderService.save_fileManagerObj_ToLocalStorage('AC_UA_GetFileManagerID') :
|
|
21586
|
-
id == 'workSpaceRoot' ? this.mainFolderService.save_fileManagerObj_ToLocalStorage('
|
|
21585
|
+
id == 'workSpaceRoot' ? this.mainFolderService.save_fileManagerObj_ToLocalStorage('AC_UA_GetDepartmentWorkspaces') : this.callApi
|
|
21587
21586
|
.query(Object.assign({ pageProvider: 'PP_Document_Content_DB' }, params), {
|
|
21588
21587
|
headers: this.headers,
|
|
21589
21588
|
}))
|
|
@@ -28123,7 +28122,8 @@
|
|
|
28123
28122
|
URL_ID = null;
|
|
28124
28123
|
}
|
|
28125
28124
|
if (((URL_ID && URL_ID != 'root' && this.trackedIdPropertyName === 'fileManagerTrackId') ||
|
|
28126
|
-
(URL_ID && this.trackedIdPropertyName === 'my-filesTrackId')
|
|
28125
|
+
(URL_ID && this.trackedIdPropertyName === 'my-filesTrackId') ||
|
|
28126
|
+
(URL_ID && this.trackedIdPropertyName === 'workSpaceFileManagerTrackId'))) {
|
|
28127
28127
|
this.tempSave = URL_ID;
|
|
28128
28128
|
this.getSelectedFolderTree(URL_ID);
|
|
28129
28129
|
}
|
|
@@ -28538,10 +28538,10 @@
|
|
|
28538
28538
|
// if not coming from shared document then save the id to track it
|
|
28539
28539
|
if (this.mainFolder !== 'sharedDocumentsRoot') {
|
|
28540
28540
|
if ((_c = (_b = e.directory) === null || _b === void 0 ? void 0 : _b.dataItem) === null || _c === void 0 ? void 0 : _c.id) {
|
|
28541
|
-
this.userPreferenceService.set(
|
|
28541
|
+
this.userPreferenceService.set(this.trackedIdPropertyName, JSON.stringify((_e = (_d = e.directory) === null || _d === void 0 ? void 0 : _d.dataItem) === null || _e === void 0 ? void 0 : _e.id));
|
|
28542
28542
|
}
|
|
28543
28543
|
else {
|
|
28544
|
-
localStorage.removeItem(this.userPreferenceService.getPropertyKey(
|
|
28544
|
+
localStorage.removeItem(this.userPreferenceService.getPropertyKey(this.trackedIdPropertyName));
|
|
28545
28545
|
}
|
|
28546
28546
|
}
|
|
28547
28547
|
this.itemListView = e.component._itemView._itemList;
|