rez-table-listing-mui 1.3.61 → 1.3.64
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 -2
- 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 +12 -8
- package/src/listing/libs/hooks/useEntityTableAPI.tsx +62 -4
- package/src/listing/libs/hooks/useEntityTableHooks.ts +3 -3
- package/src/listing/libs/services/getLayoutAPI.tsx +1 -1
- package/src/listing/libs/utils/apiColumn.ts +62 -12
- package/src/listing/libs/utils/common.ts +45 -1
- package/src/listing/types/common.ts +1 -0
- package/src/listing/types/table.ts +1 -1
- package/src/view/ListingView.tsx +64 -97
package/dist/index.d.ts
CHANGED
|
@@ -552,7 +552,7 @@ interface CraftTableProps<T> {
|
|
|
552
552
|
filterOptions?: FilterOptionsProps;
|
|
553
553
|
settingsOptions?: settingsOptionsProps;
|
|
554
554
|
craftTableFilterSettingsOptions?: craftTableFilterSettingsOptionsProps;
|
|
555
|
-
activeTab?:
|
|
555
|
+
activeTab?: any;
|
|
556
556
|
}
|
|
557
557
|
interface CraftTableComponentProps<T> {
|
|
558
558
|
table: Table<T>;
|
|
@@ -590,7 +590,7 @@ interface TabDataProps {
|
|
|
590
590
|
interface TableTabsProps {
|
|
591
591
|
loading?: boolean;
|
|
592
592
|
tabsData?: TabDataProps[];
|
|
593
|
-
activeTab?:
|
|
593
|
+
activeTab?: any;
|
|
594
594
|
tableStates: CraftTableOptionsProps;
|
|
595
595
|
onClick: (state: string) => void;
|
|
596
596
|
columns?: any[];
|