rez-table-listing-mui 1.3.13 → 1.3.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez-table-listing-mui",
3
- "version": "1.3.13",
3
+ "version": "1.3.14",
4
4
  "type": "module",
5
5
  "description": "A rez table listing component built on TanStack Table",
6
6
  "main": "dist/index.js",
@@ -73,7 +73,7 @@ const FilterCriteria = ({
73
73
 
74
74
  const newSelectedFilter = {
75
75
  ...newFilter,
76
- id: attribute?.id,
76
+ // id: attribute?.id,
77
77
  filter_attribute_name: attribute?.name,
78
78
  filter_attribute_data_type:
79
79
  attribute?.data_type || attribute?.element_type,
@@ -178,7 +178,7 @@ export interface FilterStateProps {
178
178
  filter_attribute: string;
179
179
  filter_operator: string;
180
180
  filter_value: string | string[];
181
- id: string | number;
181
+ // id: string | number; // removed as per backend req
182
182
  filter_attribute_name: string | undefined;
183
183
  filter_attribute_data_type: FilterInputDataTypes | undefined;
184
184
  attribute_key?: string;