ods-component-lib 1.18.124 → 1.18.125

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.
@@ -14,6 +14,12 @@ export interface IMultiCellEditableDataGridProps {
14
14
  onFastUpdateCancel?: () => void;
15
15
  onFastUpdateFailed?: (errorInfo: any) => void;
16
16
  }
17
+ interface IExportProps {
18
+ enabled: boolean;
19
+ allowExportSelectedData?: boolean;
20
+ fileName?: string;
21
+ selectedText?: string;
22
+ }
17
23
  export interface IOdsDataGridProps extends IDataGridOptions, IMultiCellEditableDataGridProps {
18
24
  dataGridPageName?: string;
19
25
  language: string;
@@ -31,6 +37,7 @@ export interface IOdsDataGridProps extends IDataGridOptions, IMultiCellEditableD
31
37
  pagingEnable?: boolean;
32
38
  edit?: IEditingoptions;
33
39
  isServerSide?: boolean;
40
+ exportProps?: IExportProps;
34
41
  axiosRequest?: IAxiosProps;
35
42
  customSummary?: ISummaryRowOptions;
36
43
  handleEditorPreparing?: any;