dhx-chart 9.1.2 → 9.1.4
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,3 +14,4 @@ export declare function isTreeCollection(obj: IDataCollection<any> | ITreeCollec
|
|
|
14
14
|
export declare function hasJsonOrArrayStructure(str: any): boolean;
|
|
15
15
|
export declare function isOnlyPermanentFilters(filters: IFilter): boolean;
|
|
16
16
|
export declare function throwMoveWarning(id: Id, exists?: boolean): null;
|
|
17
|
+
export declare function splitCsv(csv: string, delimiter: string): string[];
|
|
@@ -25,5 +25,6 @@ export declare const getTreeCellWidthOffset: (row: IRow, toArrow?: boolean) => n
|
|
|
25
25
|
export declare const getMaxColsWidth: (rows: IRow[], cols: ICol[], config: IContainerConfig, target: AdjustTargetType) => IColumnsWidth;
|
|
26
26
|
export declare function applyPattern(value: string | number | boolean, col: ICol): string | number | boolean;
|
|
27
27
|
export declare function getEditorOptions(col: ICol, row?: IRow): TOption[];
|
|
28
|
+
export declare function getOptionValue(value: string, column: ICol): string;
|
|
28
29
|
export declare function getValueForNumberColumn(col: ICol, value: any): any;
|
|
29
30
|
export declare function getEditorValue(value: any, options: TOption[]): any;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dhx-chart",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.4",
|
|
4
4
|
"description": "dhtmlxChart widget",
|
|
5
|
-
"homepage":"https://docs.dhtmlx.com/chart",
|
|
5
|
+
"homepage":"https://docs.dhtmlx.com/suite/chart/",
|
|
6
6
|
"license":"GPL",
|
|
7
7
|
"bugs":{
|
|
8
|
-
"url" : "https://forum.dhtmlx.com",
|
|
8
|
+
"url" : "https://forum.dhtmlx.com/c/suite",
|
|
9
9
|
"email" : "support@dhtmlx.com"
|
|
10
10
|
},
|
|
11
11
|
"main": "codebase/chart.min.js",
|
package/readme.txt
CHANGED
|
@@ -1,15 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
DHTMLX Chart
|
|
2
|
+
============
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
This software is covered by GPL-2.0 License. Usage without proper license is prohibited.
|
|
4
|
+
Version 9.1.4, Standard
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
License
|
|
7
|
+
------------
|
|
9
8
|
|
|
9
|
+
GPL-2.0 License, check license.txt for more details
|
|
10
|
+
|
|
11
|
+
How to start
|
|
12
|
+
------------
|
|
13
|
+
|
|
14
|
+
- Check our how-to-start tutorials https://docs.dhtmlx.com/suite/chart/
|
|
15
|
+
- Explore code samples https://snippet.dhtmlx.com/bo82km4n?tag=chart
|
|
10
16
|
|
|
11
17
|
Useful links
|
|
12
18
|
-------------
|
|
13
19
|
|
|
14
|
-
-
|
|
15
|
-
https://
|
|
20
|
+
- Product information
|
|
21
|
+
https://dhtmlx.com/docs/products/dhtmlxChart/
|
|
22
|
+
|
|
23
|
+
- Online documentation
|
|
24
|
+
https://docs.dhtmlx.com/suite/chart/
|
|
25
|
+
|
|
26
|
+
- Support forum
|
|
27
|
+
https://forum.dhtmlx.com/c/suite
|