@acuteinfo/common-base 1.2.74 → 1.2.75
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/report/components/dateCell.d.ts +1 -1
- package/dist/components/report/components/footerCell.d.ts +3 -1
- package/dist/components/report/gridTable.d.ts +1 -0
- package/dist/components/report/types.d.ts +5 -0
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const DateCell: (props: any) => string | import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
export declare const DateCell: (props: any) => string | import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export declare const FooterCell: ({ rows, column: { id: columnName, isTotalWithoutCurrency, isTotalWithCurrency, currencyRefColumn, isCurrencyCode, currencySymbolPosition, }, loading, }: {
|
|
1
|
+
export declare const FooterCell: ({ rows, column: { id: columnName, isTotalWithoutCurrency, isTotalWithCurrency, currencyRefColumn, isCurrencyCode, currencySymbolPosition, }, loading, data, ...others }: {
|
|
2
|
+
[x: string]: any;
|
|
2
3
|
rows: any;
|
|
3
4
|
column: {
|
|
4
5
|
id: any;
|
|
@@ -9,6 +10,7 @@ export declare const FooterCell: ({ rows, column: { id: columnName, isTotalWitho
|
|
|
9
10
|
currencySymbolPosition?: string | undefined;
|
|
10
11
|
};
|
|
11
12
|
loading: any;
|
|
13
|
+
data: any;
|
|
12
14
|
}) => string;
|
|
13
15
|
export declare const FooterCell1: ({ rows, column: { id: columnName, isDisplayValueTotal, currencyRefColumn, isCurrencyCode, DisplayValueLabel, }, }: {
|
|
14
16
|
rows: any;
|
|
@@ -101,6 +101,9 @@ export interface ReportColumnsType {
|
|
|
101
101
|
* @default false
|
|
102
102
|
*/
|
|
103
103
|
disableFilters?: boolean;
|
|
104
|
+
canUngroup?: boolean;
|
|
105
|
+
isGroupSum?: boolean;
|
|
106
|
+
customAggregation?: (rows: any, config: any) => string;
|
|
104
107
|
}
|
|
105
108
|
export interface ReportFilterProps {
|
|
106
109
|
accessor: string;
|
|
@@ -149,6 +152,7 @@ export interface ReportMetaDataType {
|
|
|
149
152
|
* @default false
|
|
150
153
|
*/
|
|
151
154
|
disableFilters?: boolean;
|
|
155
|
+
expandAllGroupedRows?: boolean;
|
|
152
156
|
}
|
|
153
157
|
export interface ReportGridProps {
|
|
154
158
|
metaData: any;
|
|
@@ -211,4 +215,5 @@ export interface ReportGridProps {
|
|
|
211
215
|
headerToolbarStyle?: SxProps;
|
|
212
216
|
enableEnterToFocus?: boolean;
|
|
213
217
|
focusScopeId?: string;
|
|
218
|
+
expandAllGroupedRows?: boolean;
|
|
214
219
|
}
|