rez-table-listing-mui 1.0.39 → 1.0.40
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 +6 -25
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/components/table-settings/index.tsx +3 -5
- package/src/index.ts +2 -1
package/package.json
CHANGED
|
@@ -19,14 +19,14 @@ import { dialogStyles } from "./style";
|
|
|
19
19
|
import CustomButton from "./components/custom-button";
|
|
20
20
|
import { SETTINGS_TABS } from "./constants";
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
export function QuickFilterSettings({
|
|
23
23
|
show,
|
|
24
24
|
filterSettingStates,
|
|
25
25
|
onClose,
|
|
26
26
|
columnsData,
|
|
27
27
|
tabsApiData,
|
|
28
28
|
tabsApiDataLoading,
|
|
29
|
-
}: QuickFilterModalProps)
|
|
29
|
+
}: QuickFilterModalProps) {
|
|
30
30
|
const [tabValue, setTabValue] = useState(0);
|
|
31
31
|
|
|
32
32
|
const {
|
|
@@ -128,6 +128,4 @@ const QuickFilterSettings = ({
|
|
|
128
128
|
)}
|
|
129
129
|
</CustomDialog>
|
|
130
130
|
);
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
export default QuickFilterSettings;
|
|
131
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export { default as TableWrapper } from "./components/index-table";
|
|
2
2
|
export { useCraftTable } from "./libs/hooks/useCraftTable";
|
|
3
|
+
export { useCraftTableFilterSettings } from "./libs/hooks/useCraftTableFilterSettings";
|
|
3
4
|
export { TableTabs as CraftTableTabs } from "./components/tabs";
|
|
4
5
|
export { TableFilter as CraftTableFilter } from "./components/filter";
|
|
6
|
+
export { QuickFilterSettings as CraftTableSettings } from "./components/table-settings";
|
|
5
7
|
|
|
6
8
|
export * from "./types/table";
|
|
7
9
|
export * from "./types/table-options";
|
|
8
|
-
export * from "./types/filter-settings";
|