igniteui-angular 12.3.32 → 12.3.33
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/igniteui-angular.umd.js +15 -0
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/grids/grid-base.directive.js +16 -1
- package/fesm2015/igniteui-angular.js +15 -0
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/grids/grid-base.directive.d.ts +1 -0
- package/package.json +1 -1
|
@@ -53655,6 +53655,9 @@ class IgxGridBaseDirective extends DisplayDensityBase {
|
|
|
53655
53655
|
* @internal
|
|
53656
53656
|
*/
|
|
53657
53657
|
copyHandler(event) {
|
|
53658
|
+
if (this.isFilterInput(event)) {
|
|
53659
|
+
return;
|
|
53660
|
+
}
|
|
53658
53661
|
const selectedColumns = this.gridAPI.grid.selectedColumns();
|
|
53659
53662
|
const columnData = this.getSelectedColumnsData(this.clipboardOptions.copyFormatters, this.clipboardOptions.copyHeaders);
|
|
53660
53663
|
let selectedData;
|
|
@@ -55264,6 +55267,18 @@ class IgxGridBaseDirective extends DisplayDensityBase {
|
|
|
55264
55267
|
return !rec.expression && !rec.summaries && !rec.childGridsData && !rec.detailsData &&
|
|
55265
55268
|
!this.isGhostRecordAtIndex(dataViewIndex);
|
|
55266
55269
|
}
|
|
55270
|
+
isFilterInput(event) {
|
|
55271
|
+
const eventComposedPath = event.composedPath ? event.composedPath() : [];
|
|
55272
|
+
if (!eventComposedPath.length) {
|
|
55273
|
+
let target = event.target;
|
|
55274
|
+
while (target.parentNode !== null) {
|
|
55275
|
+
eventComposedPath.push(target);
|
|
55276
|
+
target = target.parentNode;
|
|
55277
|
+
}
|
|
55278
|
+
}
|
|
55279
|
+
const eventPathElements = eventComposedPath.map(el => { var _a; return (_a = el.tagName) === null || _a === void 0 ? void 0 : _a.toLowerCase(); });
|
|
55280
|
+
return eventPathElements.includes('igx-grid-filtering-row') || eventPathElements.includes('igx-grid-filtering-cell');
|
|
55281
|
+
}
|
|
55267
55282
|
/**
|
|
55268
55283
|
* Returns if the record at the specified data view index is a ghost.
|
|
55269
55284
|
* If record is pinned but is not in pinned area then it is a ghost record.
|