rez-table-listing-mui 2.0.8 → 2.0.10

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 CHANGED
@@ -584,13 +584,13 @@ declare function useCraftTable(paginationPageSize?: number): CraftTableOptionsPr
584
584
  declare function useCraftTableFilterSettings(): craftTableFilterSettingsOptionsProps;
585
585
 
586
586
  interface TabDataProps {
587
- tab_value: string | null;
588
- tab_value_count?: string | number;
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?: string;
593
+ activeTab?: TabDataProps;
594
594
  tableStates: CraftTableOptionsProps;
595
595
  onClick: (state: string) => void;
596
596
  settingsOptions?: settingsOptionsProps;