@vuu-ui/vuu-table 0.8.14-debug → 0.8.15-debug

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/esm/index.js CHANGED
@@ -662,26 +662,6 @@ var buildContextMenuDescriptors = (dataSource) => (location, options) => {
662
662
  label: `DataGrid Settings`,
663
663
  options
664
664
  });
665
- } else if (location === "filter") {
666
- const { column, filter } = options;
667
- const colIsOnlyFilter = (filter == null ? void 0 : filter.column) === (column == null ? void 0 : column.name);
668
- descriptors.push({
669
- label: "Edit filter",
670
- action: "filter-edit",
671
- options
672
- });
673
- descriptors.push({
674
- label: "Remove filter",
675
- action: "filter-remove-column",
676
- options
677
- });
678
- if (column && !colIsOnlyFilter) {
679
- descriptors.push({
680
- label: `Remove all filters`,
681
- action: "remove-filters",
682
- options
683
- });
684
- }
685
665
  }
686
666
  return descriptors;
687
667
  };