tnx-shared 5.1.502 → 5.1.504
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 +2 -2
- 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/esm2015/components/common-search-form/common-search-form.component.js +2 -2
- package/esm2015/components/file-explorer/file-manager/file-manager.component.js +2 -2
- package/fesm2015/tnx-shared.js +2 -2
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -35123,7 +35123,7 @@
|
|
|
35123
35123
|
FileManagerComponent.prototype.onUploaded = function (evt) {
|
|
35124
35124
|
this._unmarkLoading();
|
|
35125
35125
|
this._triggerProcessData();
|
|
35126
|
-
this.uploaded.emit();
|
|
35126
|
+
this.uploaded.emit(evt);
|
|
35127
35127
|
};
|
|
35128
35128
|
FileManagerComponent.prototype.handleError = function (error) {
|
|
35129
35129
|
this._notifierService.showWarning(this.getErrorMsg(error));
|
|
@@ -49389,7 +49389,7 @@
|
|
|
49389
49389
|
column.showLabel = false;
|
|
49390
49390
|
column.mdWidth = _this.mdWidth;
|
|
49391
49391
|
column['placeholder'] = column.label;
|
|
49392
|
-
if (!(column instanceof TextControlSchema)) {
|
|
49392
|
+
if (!(column instanceof TextControlSchema) || column instanceof NumberRangeControlSchema) {
|
|
49393
49393
|
column.onChanged = function (evt) { return _this.handleSearch(null, evt.control.field); };
|
|
49394
49394
|
}
|
|
49395
49395
|
});
|