rez-table-listing-mui 1.3.31 → 1.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.
- package/dist/index.d.ts +5 -0
- 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 +42 -15
- package/src/listing/components/filter/components/forms/components/Date.tsx +1 -1
- package/src/listing/components/filter/components/forms/components/Dropdown.tsx +2 -135
- package/src/listing/components/filter/components/forms/components/Textfield.tsx +4 -1
- package/src/listing/components/filter/components/forms/index.tsx +105 -57
- package/src/listing/components/filter/components/forms/utils/filter-date-input-resolver.tsx +24 -48
- package/src/listing/components/filter/components/saved-filter.tsx +593 -12
- package/src/listing/components/filter/index.tsx +6 -0
- package/src/listing/components/login/index.tsx +1 -1
- package/src/listing/libs/utils/common.ts +1 -0
- package/src/listing/types/filter.ts +5 -0
- package/src/view/FIlterWrapper.tsx +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,10 @@ interface FilterOperationListProps {
|
|
|
22
22
|
value: string;
|
|
23
23
|
is_shared: boolean;
|
|
24
24
|
is_editable: boolean;
|
|
25
|
+
is_owner: boolean;
|
|
26
|
+
created_by: string;
|
|
27
|
+
user_id: number;
|
|
28
|
+
description: string | null;
|
|
25
29
|
}
|
|
26
30
|
interface FilterSharedListProps {
|
|
27
31
|
created_date: string;
|
|
@@ -265,6 +269,7 @@ interface FilterMasterStateProps {
|
|
|
265
269
|
selectedId: string;
|
|
266
270
|
selectedName: string;
|
|
267
271
|
selectedCode?: string;
|
|
272
|
+
description?: string;
|
|
268
273
|
is_shared?: boolean;
|
|
269
274
|
is_editable?: boolean;
|
|
270
275
|
};
|