ps-toolkit-ui 1.18.25 → 1.18.26
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 -2
- 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 -3
- package/fesm2015/ps-toolkit-ui.js +4 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -4075,9 +4075,11 @@
|
|
|
4075
4075
|
};
|
|
4076
4076
|
TableComponent.prototype.hideExpertSearch = function (e) {
|
|
4077
4077
|
var container = $__namespace(e.target).closest('.search-form').find('.form');
|
|
4078
|
-
console.log(
|
|
4079
|
-
console.log(e.target);
|
|
4078
|
+
console.log($__namespace(e.target));
|
|
4079
|
+
console.log($__namespace(e.target).closest('.search-form'));
|
|
4080
|
+
console.log($__namespace(e.target).closest('.search-form').find('.form'));
|
|
4080
4081
|
console.log(container.is(e.target));
|
|
4082
|
+
console.log(container.has(e.target).length);
|
|
4081
4083
|
if (!container.is(e.target) && container.has(e.target).length === 0) {
|
|
4082
4084
|
$__namespace(this.tableDiv.nativeElement).removeClass('show-expert-search');
|
|
4083
4085
|
}
|