rez-table-listing-mui 1.3.58 → 1.3.59
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 +4 -4
- 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/filter/components/attributes-filter.tsx +2 -2
- package/src/listing/components/filter/components/forms/components/Filter-criteria.tsx +5 -4
- package/src/listing/components/login/index.tsx +25 -39
- package/src/listing/components/table-body.tsx +2 -14
- package/src/listing/components/table-settings/components/sorting.tsx +10 -2
- package/src/listing/components/table-settings/index.tsx +3 -3
- package/src/listing/components/tabs/index.tsx +13 -15
- package/src/listing/libs/hooks/useEntityTableAPI.tsx +24 -16
- package/src/listing/libs/utils/apiColumn.ts +11 -11
- package/src/listing/libs/utils/common.ts +3 -9
- package/src/listing/types/common.ts +2 -2
- package/src/listing/types/filter.ts +2 -2
- package/src/testing-grounds/filter-in-modal/saved-filter-modal.tsx +1 -2
- package/src/view/FIlterWrapper.tsx +2 -1
- package/src/view/ListingView.tsx +71 -72
package/dist/index.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ interface FilterColumnsListProps {
|
|
|
75
75
|
searchable: string | null;
|
|
76
76
|
attribute_key: string;
|
|
77
77
|
sort_type: string | null;
|
|
78
|
-
|
|
78
|
+
element_type: FilterInputDataTypes;
|
|
79
79
|
data_source_type: string | null;
|
|
80
80
|
datasource_list: any | null;
|
|
81
81
|
visible: string;
|
|
@@ -310,7 +310,7 @@ interface FilterDataMainFilterEntityWiseCriteriaProps {
|
|
|
310
310
|
attribute_key: string;
|
|
311
311
|
element_type: FilterInputDataTypes;
|
|
312
312
|
datasource_list: any;
|
|
313
|
-
|
|
313
|
+
element_type: FilterInputDataTypes;
|
|
314
314
|
}
|
|
315
315
|
interface FilterDataProps {
|
|
316
316
|
mainFilter?: {
|
|
@@ -584,8 +584,8 @@ declare function useCraftTable(paginationPageSize?: number): CraftTableOptionsPr
|
|
|
584
584
|
declare function useCraftTableFilterSettings(): craftTableFilterSettingsOptionsProps;
|
|
585
585
|
|
|
586
586
|
interface TabDataProps {
|
|
587
|
-
|
|
588
|
-
|
|
587
|
+
tab_name: string | null;
|
|
588
|
+
count: string | number;
|
|
589
589
|
}
|
|
590
590
|
interface TableTabsProps {
|
|
591
591
|
loading?: boolean;
|