ods-component-lib 1.18.9 → 1.18.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ods-component-lib",
3
- "version": "1.18.9",
3
+ "version": "1.18.11",
4
4
  "description": "Odeon design system component lib",
5
5
  "author": "OdeonTechnology",
6
6
  "license": "MIT",
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- import 'devextreme/dist/css/dx.light.css';
3
- import 'whatwg-fetch';
4
- declare const OdsCustomDataSourceGrid: (props: any) => React.JSX.Element;
5
- export default OdsCustomDataSourceGrid;
@@ -1,2 +0,0 @@
1
- export interface OdsDatagridProps {
2
- }
@@ -1,54 +0,0 @@
1
- import React from "react";
2
- import { IDataGridOptions } from 'devextreme-react/data-grid';
3
- interface DataGridButtonGroup {
4
- type?: string;
5
- label?: string;
6
- hint?: string;
7
- icon?: string;
8
- actionPermission?: boolean;
9
- onclick: any;
10
- iconComponent?: React.ReactNode;
11
- }
12
- interface IOdsDataGridProps extends IDataGridOptions {
13
- actionButtonGroup?: DataGridButtonGroup[];
14
- toolbarButtonGroup?: DataGridButtonGroup[];
15
- exportFileName?: string;
16
- summaryTotalColumnName?: string;
17
- storeState?: boolean;
18
- summaryTotalDataCount?: number;
19
- summaryTotalDataDisplayLabel?: string;
20
- summaryTotalPagesize?: number;
21
- editHintLabel?: string;
22
- editButtonClick?: any;
23
- deleteButtonClick?: any;
24
- pageTitle?: string;
25
- pageSize?: number;
26
- pagingEnable?: boolean;
27
- searchEnable?: boolean;
28
- filterEnable?: boolean;
29
- headerFilterEnable?: boolean;
30
- columnChooserPositionDisabled?: boolean;
31
- columnChooserEnable: boolean;
32
- selectEnable?: boolean;
33
- selectionMode?: any;
34
- editEnable?: boolean;
35
- edit?: any;
36
- popupTitle?: string;
37
- scroll?: any;
38
- exportEnable?: boolean;
39
- customPopup?: boolean;
40
- onExportingCustom?: any;
41
- filterEnabledShow?: boolean;
42
- scrolUseNative?: boolean;
43
- selectionDeferred?: boolean;
44
- formItems?: any[];
45
- hintForDeleteButton?: string;
46
- hintForEditButton?: string;
47
- actionColumnLabel?: string;
48
- exportFormats?: string[];
49
- actionPermission?: boolean;
50
- columns: any[];
51
- actionColumnEnable?: boolean;
52
- }
53
- declare function OdsRefactoredGrid(props: IOdsDataGridProps): React.JSX.Element;
54
- export default OdsRefactoredGrid;