@progress/kendo-react-charts 7.1.0-develop.10 → 7.1.0-develop.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/index.mjs +1 -1
- package/package.json +5 -5
- package/sankey/types.d.ts +6 -6
package/index.mjs
CHANGED
|
@@ -870,7 +870,7 @@ const w = {
|
|
|
870
870
|
name: "@progress/kendo-react-charts",
|
|
871
871
|
productName: "KendoReact",
|
|
872
872
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
873
|
-
publishDate:
|
|
873
|
+
publishDate: 1706176255,
|
|
874
874
|
version: "",
|
|
875
875
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
876
876
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-charts",
|
|
3
|
-
"version": "7.1.0-develop.
|
|
3
|
+
"version": "7.1.0-develop.11",
|
|
4
4
|
"description": "React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@progress/kendo-drawing": "^1.19.0",
|
|
26
26
|
"@progress/kendo-licensing": "^1.3.4",
|
|
27
|
-
"@progress/kendo-react-common": "7.1.0-develop.
|
|
28
|
-
"@progress/kendo-react-intl": "7.1.0-develop.
|
|
29
|
-
"@progress/kendo-react-layout": "7.1.0-develop.
|
|
30
|
-
"@progress/kendo-react-popup": "7.1.0-develop.
|
|
27
|
+
"@progress/kendo-react-common": "7.1.0-develop.11",
|
|
28
|
+
"@progress/kendo-react-intl": "7.1.0-develop.11",
|
|
29
|
+
"@progress/kendo-react-layout": "7.1.0-develop.11",
|
|
30
|
+
"@progress/kendo-react-popup": "7.1.0-develop.11",
|
|
31
31
|
"@progress/kendo-svg-icons": "^2.1.0",
|
|
32
32
|
"hammerjs": "^2.0.0",
|
|
33
33
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
package/sankey/types.d.ts
CHANGED
|
@@ -41,10 +41,10 @@ export interface SankeyNode extends SankeyNodeOptions {
|
|
|
41
41
|
/**
|
|
42
42
|
* The KendoReact Sankey event object.
|
|
43
43
|
*/
|
|
44
|
-
export interface SankeyEvent extends Omit<SankeyWidgetEvent, 'originalEvent'>, BaseEvent<SankeyHandle> {
|
|
44
|
+
export interface SankeyEvent extends Omit<SankeyWidgetEvent, 'originalEvent'>, Omit<BaseEvent<SankeyHandle>, 'syntheticEvent'> {
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* @hidden
|
|
48
48
|
*/
|
|
49
49
|
export type SankeyEventHandler = (event: SankeyEvent) => void;
|
|
50
50
|
/**
|
|
@@ -94,19 +94,19 @@ export interface SankeyProps {
|
|
|
94
94
|
/**
|
|
95
95
|
* Fires when the mouse pointer enters a node. Similar to the `mouseenter` event.
|
|
96
96
|
*/
|
|
97
|
-
onNodeEnter?:
|
|
97
|
+
onNodeEnter?: (event: SankeyEvent) => void;
|
|
98
98
|
/**
|
|
99
99
|
* Fires when the mouse pointer leaves a node. Similar to the `mouseleave` event.
|
|
100
100
|
*/
|
|
101
|
-
onNodeLeave?:
|
|
101
|
+
onNodeLeave?: (event: SankeyEvent) => void;
|
|
102
102
|
/**
|
|
103
103
|
* Fires when the mouse pointer enters a link. Similar to the `mouseenter` event,
|
|
104
104
|
*/
|
|
105
|
-
onLinkEnter?:
|
|
105
|
+
onLinkEnter?: (event: SankeyEvent) => void;
|
|
106
106
|
/**
|
|
107
107
|
* Fires when the mouse pointer leaves a link. Similar to the `mouseleave` event.
|
|
108
108
|
*/
|
|
109
|
-
onLinkLeave?:
|
|
109
|
+
onLinkLeave?: (event: SankeyEvent) => void;
|
|
110
110
|
}
|
|
111
111
|
/**
|
|
112
112
|
* Represents the object which is passed to the [`ref`](https://reactjs.org/docs/refs-and-the-dom.html)
|