rez-table-listing-mui 2.0.8 → 2.0.9
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 +3 -3
- 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/forms/components/filter-criteria-entity-list.tsx +1 -1
- package/src/listing/components/table-settings/components/column.tsx +14 -1
- package/src/listing/components/table-settings/components/quick-tab.tsx +9 -1
- package/src/listing/components/tabs/index.tsx +15 -15
- package/src/listing/libs/hooks/useEntityTableAPI.tsx +54 -4
- package/src/listing/libs/utils/apiColumn.ts +46 -5
- package/src/view/ListingView.tsx +20 -13
package/dist/index.d.ts
CHANGED
|
@@ -584,13 +584,13 @@ 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;
|
|
592
592
|
tabsData?: TabDataProps[];
|
|
593
|
-
activeTab?:
|
|
593
|
+
activeTab?: TabDataProps;
|
|
594
594
|
tableStates: CraftTableOptionsProps;
|
|
595
595
|
onClick: (state: string) => void;
|
|
596
596
|
settingsOptions?: settingsOptionsProps;
|