rez-table-listing-mui 1.3.33 → 1.3.34
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/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/listing/components/common/saved-filter-modal/index.tsx +16 -6
- package/src/listing/components/filter/components/forms/index.tsx +2 -2
- package/src/listing/components/filter/components/saved-filter.tsx +474 -62
- package/src/listing/components/filter/index.tsx +1 -0
- package/src/listing/types/filter.ts +4 -1
- package/src/view/ListingView.tsx +1 -1
|
@@ -19,7 +19,7 @@ export interface FilterOperationListProps {
|
|
|
19
19
|
is_editable: boolean;
|
|
20
20
|
is_owner: boolean;
|
|
21
21
|
created_by: string;
|
|
22
|
-
user_id: number;
|
|
22
|
+
// user_id: number;
|
|
23
23
|
description: string | null;
|
|
24
24
|
}
|
|
25
25
|
|
|
@@ -248,6 +248,7 @@ export interface createSavedFilterPayload {
|
|
|
248
248
|
enterprise_id?: number;
|
|
249
249
|
user_id?: number;
|
|
250
250
|
is_default: boolean;
|
|
251
|
+
description: string | null;
|
|
251
252
|
mapped_entity_type: string;
|
|
252
253
|
status?: string;
|
|
253
254
|
entity_type: string;
|
|
@@ -267,6 +268,7 @@ export interface updateSavedFilterPayload {
|
|
|
267
268
|
name: string;
|
|
268
269
|
is_default: boolean;
|
|
269
270
|
id: string | number;
|
|
271
|
+
|
|
270
272
|
status?: string;
|
|
271
273
|
entity_type: string;
|
|
272
274
|
mapped_entity_type: string;
|
|
@@ -308,6 +310,7 @@ export interface FilterMasterStateProps {
|
|
|
308
310
|
description?: string;
|
|
309
311
|
is_shared?: boolean;
|
|
310
312
|
is_editable?: boolean;
|
|
313
|
+
is_owner?: boolean;
|
|
311
314
|
};
|
|
312
315
|
activeFilterTabIndex: number;
|
|
313
316
|
shared_filters_meta?: Record<string, SavedFilterSharingPreference>;
|