@acuteinfo/common-base 1.0.41 → 1.0.42
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/components/dataTable/tableFilterComponent.d.ts +2 -1
- package/dist/components/report/filters2/rangeFilter/dateRange.d.ts +3 -1
- package/dist/components/report/serverReport/ReportWrapper.d.ts +1 -0
- package/dist/components/report/utils.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -4,11 +4,12 @@ export declare const useFilterState: (reducer: any) => {
|
|
|
4
4
|
dispatch: (action: any) => void;
|
|
5
5
|
filterState: React.MutableRefObject<object>;
|
|
6
6
|
};
|
|
7
|
-
export declare const TableFilterComponent: ({ filters, setAllFilters, filterMeta, setSortBy, gotoPage, classes, }: {
|
|
7
|
+
export declare const TableFilterComponent: ({ filters, setAllFilters, filterMeta, setSortBy, gotoPage, classes, isDefaultFilter, }: {
|
|
8
8
|
filters: any;
|
|
9
9
|
setAllFilters: any;
|
|
10
10
|
filterMeta: any;
|
|
11
11
|
setSortBy: any;
|
|
12
12
|
gotoPage: any;
|
|
13
13
|
classes: any;
|
|
14
|
+
isDefaultFilter?: boolean | undefined;
|
|
14
15
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
export declare const DateRange: ({ filterValue, id, columnName, gridProps, dispatch, }: {
|
|
1
|
+
export declare const DateRange: ({ filterValue, id, columnName, gridProps, dispatch, filterProps, isDefaultFilter, }: {
|
|
2
2
|
filterValue: any;
|
|
3
3
|
id: any;
|
|
4
4
|
columnName: any;
|
|
5
5
|
gridProps: any;
|
|
6
6
|
dispatch: any;
|
|
7
|
+
filterProps: any;
|
|
8
|
+
isDefaultFilter: any;
|
|
7
9
|
}) => import("react/jsx-runtime").JSX.Element;
|