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.
@@ -60174,6 +60174,9 @@
60174
60174
  * @internal
60175
60175
  */
60176
60176
  IgxGridBaseDirective.prototype.copyHandler = function (event) {
60177
+ if (this.isFilterInput(event)) {
60178
+ return;
60179
+ }
60177
60180
  var selectedColumns = this.gridAPI.grid.selectedColumns();
60178
60181
  var columnData = this.getSelectedColumnsData(this.clipboardOptions.copyFormatters, this.clipboardOptions.copyHeaders);
60179
60182
  var selectedData;
@@ -61913,6 +61916,18 @@
61913
61916
  return !rec.expression && !rec.summaries && !rec.childGridsData && !rec.detailsData &&
61914
61917
  !this.isGhostRecordAtIndex(dataViewIndex);
61915
61918
  };
61919
+ IgxGridBaseDirective.prototype.isFilterInput = function (event) {
61920
+ var eventComposedPath = event.composedPath ? event.composedPath() : [];
61921
+ if (!eventComposedPath.length) {
61922
+ var target = event.target;
61923
+ while (target.parentNode !== null) {
61924
+ eventComposedPath.push(target);
61925
+ target = target.parentNode;
61926
+ }
61927
+ }
61928
+ var eventPathElements = eventComposedPath.map(function (el) { var _a; return (_a = el.tagName) === null || _a === void 0 ? void 0 : _a.toLowerCase(); });
61929
+ return eventPathElements.includes('igx-grid-filtering-row') || eventPathElements.includes('igx-grid-filtering-cell');
61930
+ };
61916
61931
  /**
61917
61932
  * Returns if the record at the specified data view index is a ghost.
61918
61933
  * If record is pinned but is not in pinned area then it is a ghost record.