ps-toolkit-ui 1.18.24 → 1.18.25
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/ps-toolkit-ui.umd.js +4 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/table/table.component.js +5 -2
- package/fesm2015/ps-toolkit-ui.js +4 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -4074,7 +4074,10 @@
|
|
|
4074
4074
|
return this.table.optionsActions.filter(function (x) { return x instanceof ModalClass; });
|
|
4075
4075
|
};
|
|
4076
4076
|
TableComponent.prototype.hideExpertSearch = function (e) {
|
|
4077
|
-
var container = $__namespace(e.target).closest('search-form').find('.form');
|
|
4077
|
+
var container = $__namespace(e.target).closest('.search-form').find('.form');
|
|
4078
|
+
console.log(container);
|
|
4079
|
+
console.log(e.target);
|
|
4080
|
+
console.log(container.is(e.target));
|
|
4078
4081
|
if (!container.is(e.target) && container.has(e.target).length === 0) {
|
|
4079
4082
|
$__namespace(this.tableDiv.nativeElement).removeClass('show-expert-search');
|
|
4080
4083
|
}
|