@progress/kendo-charts 2.3.0-dev.202404250846 → 2.3.0
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/npm/sankey.d.ts +8 -5
- package/package.json +1 -1
package/dist/npm/sankey.d.ts
CHANGED
|
@@ -21,16 +21,19 @@ export interface SankeyLinkHighlight {
|
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* Represents the offset option of the Sankey node and label elements.
|
|
24
|
-
*
|
|
25
|
-
* @default `{ top: 0, left: 0 }`
|
|
26
24
|
*/
|
|
27
25
|
export interface SankeyOffset {
|
|
28
26
|
/**
|
|
29
27
|
* The left offset of the element.
|
|
28
|
+
*
|
|
29
|
+
* @default 0
|
|
30
30
|
*/
|
|
31
31
|
left?: number;
|
|
32
|
+
|
|
32
33
|
/**
|
|
33
34
|
* The top offset of the element.
|
|
35
|
+
*
|
|
36
|
+
* @default 0
|
|
34
37
|
*/
|
|
35
38
|
top?: number;
|
|
36
39
|
}
|
|
@@ -446,19 +449,19 @@ export interface SankeyTooltip {
|
|
|
446
449
|
|
|
447
450
|
/**
|
|
448
451
|
* Represents the default link options of the Sankey widget.
|
|
449
|
-
*
|
|
452
|
+
* These settings will be applied to all links unless overridden by individual data items.
|
|
450
453
|
*/
|
|
451
454
|
export interface SankeyLinkDefaults extends Omit<SankeyLink, 'sourceId' | 'targetId' | 'value'> { }
|
|
452
455
|
|
|
453
456
|
/**
|
|
454
457
|
* Represents the default label options of the Sankey widget.
|
|
455
|
-
*
|
|
458
|
+
* These settings will be applied to all labels unless overridden by individual data items.
|
|
456
459
|
*/
|
|
457
460
|
export interface SankeyLabelDefaults extends Omit<SankeyLabel, 'text'> { }
|
|
458
461
|
|
|
459
462
|
/**
|
|
460
463
|
* Represents the default node options of the Sankey widget.
|
|
461
|
-
*
|
|
464
|
+
* These settings will be applied to all nodes unless overridden by individual data items.
|
|
462
465
|
*/
|
|
463
466
|
export interface SankeyNodeDefaults extends Omit<SankeyNode, 'id' | 'label'> { }
|
|
464
467
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Kendo UI platform-independent Charts library",
|
|
4
4
|
"author": "Progress",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
|
-
"version": "2.3.0
|
|
6
|
+
"version": "2.3.0",
|
|
7
7
|
"main": "dist/npm/main.js",
|
|
8
8
|
"module": "dist/es/main.js",
|
|
9
9
|
"jsnext:main": "dist/es/main.js",
|