devextreme-planit-treegrid-react 1.1.3 → 1.1.5
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/index.d.ts +38 -38
- package/package.json +4 -3
- package/dist/type.js +0 -5
package/dist/index.d.ts
CHANGED
@@ -1,38 +1,38 @@
|
|
1
|
-
import DevExpress from 'devextreme';
|
2
|
-
import { Format } from 'devextreme/localization';
|
3
|
-
|
4
|
-
export declare const DxPlanitTreeGrid;
|
5
|
-
export default DxPlanitTreeGrid;
|
6
|
-
|
7
|
-
export declare module TypeDxPlanit {
|
8
|
-
export interface IGroupField {
|
9
|
-
groupCaption: string;
|
10
|
-
groupName?: string;
|
11
|
-
html?: string;
|
12
|
-
depth: number;
|
13
|
-
colspan: number;
|
14
|
-
}
|
15
|
-
|
16
|
-
export interface ColumnField {
|
17
|
-
colspan: number;
|
18
|
-
text: string;
|
19
|
-
type: string;
|
20
|
-
}
|
21
|
-
|
22
|
-
export interface IColorInfo {
|
23
|
-
format: Format;
|
24
|
-
color: string;
|
25
|
-
condition: string;
|
26
|
-
}
|
27
|
-
|
28
|
-
export interface Props extends DevExpress.ui.dxPivotGrid.Properties {
|
29
|
-
id?: string;
|
30
|
-
dataSource?: any;
|
31
|
-
groupField?: IGroupField[];
|
32
|
-
dataColor?: IColorInfo[];
|
33
|
-
convertNullToHipen?: boolean;
|
34
|
-
convertZeroToHipen?: boolean;
|
35
|
-
stateStoringKey?: string;
|
36
|
-
customExcelButton?: boolean;
|
37
|
-
}
|
38
|
-
}
|
1
|
+
import DevExpress from 'devextreme';
|
2
|
+
import { Format } from 'devextreme/localization';
|
3
|
+
|
4
|
+
export declare const DxPlanitTreeGrid;
|
5
|
+
export default DxPlanitTreeGrid;
|
6
|
+
|
7
|
+
export declare module TypeDxPlanit {
|
8
|
+
export interface IGroupField {
|
9
|
+
groupCaption: string;
|
10
|
+
groupName?: string;
|
11
|
+
html?: string;
|
12
|
+
depth: number;
|
13
|
+
colspan: number;
|
14
|
+
}
|
15
|
+
|
16
|
+
export interface ColumnField {
|
17
|
+
colspan: number;
|
18
|
+
text: string;
|
19
|
+
type: string;
|
20
|
+
}
|
21
|
+
|
22
|
+
export interface IColorInfo {
|
23
|
+
format: Format;
|
24
|
+
color: string;
|
25
|
+
condition: string;
|
26
|
+
}
|
27
|
+
|
28
|
+
export interface Props extends DevExpress.ui.dxPivotGrid.Properties {
|
29
|
+
id?: string;
|
30
|
+
dataSource?: any;
|
31
|
+
groupField?: IGroupField[];
|
32
|
+
dataColor?: IColorInfo[];
|
33
|
+
convertNullToHipen?: boolean;
|
34
|
+
convertZeroToHipen?: boolean;
|
35
|
+
stateStoringKey?: string;
|
36
|
+
customExcelButton?: boolean;
|
37
|
+
}
|
38
|
+
}
|
package/package.json
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "devextreme-planit-treegrid-react",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.5",
|
4
4
|
"description": "Devextreme의 DxPivotGrid를 Tree Grid처럼 보여주는 Wrapper입니다.",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/index.d.ts",
|
7
7
|
"files": [
|
8
|
-
"dist",
|
8
|
+
"dist/DxPlanitTreeGrid.js",
|
9
|
+
"dist/index.d.ts",
|
10
|
+
"dist/index.js",
|
9
11
|
"README.md"
|
10
12
|
],
|
11
13
|
"repository": "https://github.com/hsquare-analytics/ui-tree-grid.git",
|
@@ -40,7 +42,6 @@
|
|
40
42
|
],
|
41
43
|
"dependencies": {
|
42
44
|
"devextreme": "^22.1.6",
|
43
|
-
"devextreme-planit-treegrid-react": "^1.1.0",
|
44
45
|
"devextreme-react": "^22.1.6",
|
45
46
|
"exceljs": "^4.3.0",
|
46
47
|
"file-saver": "^2.0.5",
|