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
package/dist/index.d.ts
CHANGED
|
@@ -24,7 +24,6 @@ interface FilterOperationListProps {
|
|
|
24
24
|
is_editable: boolean;
|
|
25
25
|
is_owner: boolean;
|
|
26
26
|
created_by: string;
|
|
27
|
-
user_id: number;
|
|
28
27
|
description: string | null;
|
|
29
28
|
}
|
|
30
29
|
interface FilterSharedListProps {
|
|
@@ -220,6 +219,7 @@ interface createSavedFilterPayload {
|
|
|
220
219
|
enterprise_id?: number;
|
|
221
220
|
user_id?: number;
|
|
222
221
|
is_default: boolean;
|
|
222
|
+
description: string | null;
|
|
223
223
|
mapped_entity_type: string;
|
|
224
224
|
status?: string;
|
|
225
225
|
entity_type: string;
|
|
@@ -272,6 +272,7 @@ interface FilterMasterStateProps {
|
|
|
272
272
|
description?: string;
|
|
273
273
|
is_shared?: boolean;
|
|
274
274
|
is_editable?: boolean;
|
|
275
|
+
is_owner?: boolean;
|
|
275
276
|
};
|
|
276
277
|
activeFilterTabIndex: number;
|
|
277
278
|
shared_filters_meta?: Record<string, SavedFilterSharingPreference>;
|