ods-component-lib 1.18.7 → 1.18.9

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.
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { IDataGridOptions, IButtonProps, ISelectionProps, IEditingProps } from 'devextreme-react/data-grid';
2
+ import { IDataGridOptions, IButtonProps, ISelectionProps, IEditingProps, ISummaryProps } from 'devextreme-react/data-grid';
3
3
  interface IOdsDataGridProps extends IDataGridOptions {
4
4
  isApplyButtonClicked?: boolean;
5
5
  language: string;
@@ -18,6 +18,13 @@ interface IOdsDataGridProps extends IDataGridOptions {
18
18
  edit?: IEditingoptions;
19
19
  isServerSide: boolean;
20
20
  axiosRequest?: IAxiosProps;
21
+ customSummary?: ISummaryRowOptions;
22
+ }
23
+ interface ISummaryRowOptions {
24
+ summaryLoadedDataLabel?: string;
25
+ summaryTotalDataLabel?: string;
26
+ summaryFilteredDataLabel?: string;
27
+ summaryItems?: ISummaryProps[];
21
28
  }
22
29
  interface IAxiosProps {
23
30
  token: string;
@@ -40,5 +47,5 @@ interface IButtonGroup extends IButtonProps {
40
47
  onclick?: React.MouseEventHandler<HTMLElement>;
41
48
  actionPermission?: boolean;
42
49
  }
43
- declare const _default: React.MemoExoticComponent<(props: IOdsDataGridProps) => React.JSX.Element>;
44
- export default _default;
50
+ declare const OdsRemoteDataGrid: (props: IOdsDataGridProps) => React.JSX.Element;
51
+ export default OdsRemoteDataGrid;