tnx-shared 5.1.457 → 5.1.459
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/tnx-shared.umd.js +4 -1
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/classes/form-schema.d.ts +1 -1
- package/classes/form-schema.d.ts.map +1 -1
- package/components/common-app-component/common-app-component.d.ts +2 -1
- package/components/common-app-component/common-app-component.d.ts.map +1 -1
- package/esm2015/classes/form-schema.js +1 -1
- package/esm2015/components/common-app-component/common-app-component.js +5 -2
- package/esm2015/components/file-explorer/models/file-settings.js +2 -2
- package/fesm2015/tnx-shared.js +4 -1
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/tnx-shared.metadata.json +1 -1
|
@@ -32009,6 +32009,7 @@
|
|
|
32009
32009
|
this.showQuickNote = true;
|
|
32010
32010
|
this.allowAnonymous = false;
|
|
32011
32011
|
this.autoRenderMenu = true;
|
|
32012
|
+
this.onUserLoaded = new i0.EventEmitter();
|
|
32012
32013
|
this._unsubscribeAll = new rxjs.Subject();
|
|
32013
32014
|
// rootVersionDeploy = '1.3';
|
|
32014
32015
|
this.currentRoute = '';
|
|
@@ -32250,6 +32251,7 @@
|
|
|
32250
32251
|
root.data.allowAnonymous = this.allowAnonymous;
|
|
32251
32252
|
// get current User
|
|
32252
32253
|
this._userService.populateCurrentUser();
|
|
32254
|
+
this.onUserLoaded.emit();
|
|
32253
32255
|
this._componentContextService.subscribe(ComCtxConstants.ROOT.NEED_CLEAR_PERMISSION_CACHE, function () { return __awaiter(_this, void 0, void 0, function () {
|
|
32254
32256
|
var res;
|
|
32255
32257
|
return __generator(this, function (_a) {
|
|
@@ -32850,6 +32852,7 @@
|
|
|
32850
32852
|
showQuickNote: [{ type: i0.Input }],
|
|
32851
32853
|
allowAnonymous: [{ type: i0.Input }],
|
|
32852
32854
|
autoRenderMenu: [{ type: i0.Input }],
|
|
32855
|
+
onUserLoaded: [{ type: i0.Output }],
|
|
32853
32856
|
handleShowPopupPermissionUtils: [{ type: i0.HostListener, args: ['document:keypress', ['$event'],] }]
|
|
32854
32857
|
};
|
|
32855
32858
|
|
|
@@ -35946,7 +35949,7 @@
|
|
|
35946
35949
|
accept: this.accept,
|
|
35947
35950
|
mode: this.mode,
|
|
35948
35951
|
sharedFolderType: this.sharedFolderType,
|
|
35949
|
-
fileDataService: this.fileDataService
|
|
35952
|
+
fileDataService: this.fileDataService
|
|
35950
35953
|
});
|
|
35951
35954
|
}
|
|
35952
35955
|
return FileUploadSetting;
|