@progress/kendo-react-charts 9.0.0-develop.2 → 9.0.0-develop.21
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/ChartBreadcrumb.mjs +7 -1
- package/ChartNoDataOverlay.js +8 -0
- package/ChartNoDataOverlay.mjs +20 -0
- package/README.md +54 -52
- package/dist/cdn/js/kendo-react-charts.js +1 -1
- package/index.d.mts +53 -2
- package/index.d.ts +53 -2
- package/index.js +1 -1
- package/index.mjs +213 -211
- package/messages.js +8 -0
- package/messages.mjs +15 -0
- package/package-metadata.mjs +1 -1
- package/package.json +7 -7
- package/sankey/Sankey.mjs +56 -33
- package/sankey/SankeyTooltip.mjs +10 -2
- package/sankey/propTypes.mjs +1 -4
- package/store/reducer.js +1 -1
- package/store/reducer.mjs +10 -10
- package/tooltip/Crosshair.mjs +1 -8
- package/tooltip/Popup.mjs +1 -10
- package/tooltip/Series.js +1 -1
- package/tooltip/Series.mjs +9 -16
- package/tooltip/SharedTooltipContent.mjs +1 -7
- package/utils/index.js +1 -1
- package/utils/index.mjs +7 -9
package/index.mjs
CHANGED
|
@@ -15,231 +15,233 @@ import { DonutCenter as h } from "./DonutCenter.mjs";
|
|
|
15
15
|
import { TooltipPoint as n } from "./tooltip/Point.mjs";
|
|
16
16
|
import { SeriesTooltip as v } from "./tooltip/Series.mjs";
|
|
17
17
|
import { CrosshairTooltip as S } from "./tooltip/Crosshair.mjs";
|
|
18
|
-
import { TooltipPopup as
|
|
18
|
+
import { TooltipPopup as E } from "./tooltip/Popup.mjs";
|
|
19
19
|
import { SharedTooltipContent as T } from "./tooltip/SharedTooltipContent.mjs";
|
|
20
20
|
import { CrosshairTooltipContainer as c } from "./tooltip/CrosshairContainer.mjs";
|
|
21
21
|
import { ChartBreadcrumb as b } from "./ChartBreadcrumb.mjs";
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
22
|
+
import { ChartNoDataOverlay as y } from "./ChartNoDataOverlay.mjs";
|
|
23
|
+
import { exportVisual as P, findAxisByName as k, findPaneByIndex as V, findPaneByName as X } from "./methods/index.mjs";
|
|
24
|
+
import { ChartAxisDefaultsTitle as H } from "./components/axis-defaults/Title.mjs";
|
|
25
|
+
import { ChartAxisDefaultsLabels as Z } from "./components/axis-defaults/Labels.mjs";
|
|
26
|
+
import { ChartAxisDefaultsCrosshair as F } from "./components/axis-defaults/Crosshair.mjs";
|
|
27
|
+
import { ChartAxisDefaultsCrosshairTooltip as R } from "./components/axis-defaults/CrosshairTooltip.mjs";
|
|
28
|
+
import { ChartCategoryAxisCrosshair as j } from "./components/category-axis-item/Crosshair.mjs";
|
|
29
|
+
import { ChartCategoryAxisCrosshairTooltip as z } from "./components/category-axis-item/CrosshairTooltip.mjs";
|
|
30
|
+
import { ChartCategoryAxisTitle as J } from "./components/category-axis-item/Title.mjs";
|
|
31
|
+
import { ChartCategoryAxisLabels as Q } from "./components/category-axis-item/Labels.mjs";
|
|
32
|
+
import { ChartCategoryAxisNotes as W } from "./components/category-axis-item/Notes.mjs";
|
|
33
|
+
import { ChartCategoryAxisNotesIcon as $ } from "./components/category-axis-item/NotesIcon.mjs";
|
|
34
|
+
import { ChartCategoryAxisNotesLabel as or } from "./components/category-axis-item/NotesLabel.mjs";
|
|
35
|
+
import { ChartCategoryAxisRangeLabels as er } from "./components/category-axis-item/RangeLabels.mjs";
|
|
36
|
+
import { ChartPaneDefaultsTitle as xr } from "./components/pane-defaults/Title.mjs";
|
|
37
|
+
import { ChartLegendItem as pr } from "./components/legend/Item.mjs";
|
|
38
|
+
import { ChartLegendTitle as fr } from "./components/legend/Title.mjs";
|
|
39
|
+
import { ChartLegendInactiveItems as Cr } from "./components/legend/InactiveItems.mjs";
|
|
40
|
+
import { ChartSeriesItemTooltip as lr } from "./components/series-item/Tooltip.mjs";
|
|
41
|
+
import { ChartSeriesItemOutliers as Ar } from "./components/series-item/Outliers.mjs";
|
|
42
|
+
import { ChartSeriesNotes as gr } from "./components/series-item/Notes.mjs";
|
|
43
|
+
import { ChartSeriesMarkers as Nr } from "./components/series-item/Markers.mjs";
|
|
44
|
+
import { ChartSeriesLabels as ur } from "./components/series-item/Labels.mjs";
|
|
45
|
+
import { ChartSeriesHighlight as Lr } from "./components/series-item/Highlight.mjs";
|
|
46
|
+
import { ChartSeriesExtremes as Ir } from "./components/series-item/Extremes.mjs";
|
|
47
|
+
import { ChartSeriesErrorBars as dr } from "./components/series-item/ErrorBars.mjs";
|
|
48
|
+
import { ChartSeriesLabelsFrom as Dr } from "./components/series-item/LabelsFrom.mjs";
|
|
49
|
+
import { ChartSeriesLabelsTo as kr } from "./components/series-item/LabelsTo.mjs";
|
|
50
|
+
import { ChartSeriesNotesLabel as Xr } from "./components/series-item/NotesLabel.mjs";
|
|
51
|
+
import { ChartSeriesNotesIcon as Hr } from "./components/series-item/NotesIcon.mjs";
|
|
52
|
+
import { ChartValueAxisCrosshair as Zr } from "./components/value-axis-item/Crosshair.mjs";
|
|
53
|
+
import { ChartValueAxisCrosshairTooltip as Fr } from "./components/value-axis-item/CrosshairTooltip.mjs";
|
|
54
|
+
import { ChartValueAxisTitle as Rr } from "./components/value-axis-item/Title.mjs";
|
|
55
|
+
import { ChartValueAxisLabels as jr } from "./components/value-axis-item/Labels.mjs";
|
|
56
|
+
import { ChartValueAxisNotes as zr } from "./components/value-axis-item/Notes.mjs";
|
|
57
|
+
import { ChartValueAxisNotesIcon as Jr } from "./components/value-axis-item/NotesIcon.mjs";
|
|
58
|
+
import { ChartValueAxisNotesLabel as Qr } from "./components/value-axis-item/NotesLabel.mjs";
|
|
59
|
+
import { ChartXAxisCrosshair as Wr } from "./components/x-axis-item/Crosshair.mjs";
|
|
60
|
+
import { ChartXAxisCrosshairTooltip as $r } from "./components/x-axis-item/CrosshairTooltip.mjs";
|
|
61
|
+
import { ChartXAxisTitle as oo } from "./components/x-axis-item/Title.mjs";
|
|
62
|
+
import { ChartXAxisLabels as eo } from "./components/x-axis-item/Labels.mjs";
|
|
63
|
+
import { ChartXAxisNotes as xo } from "./components/x-axis-item/Notes.mjs";
|
|
64
|
+
import { ChartXAxisNotesIcon as po } from "./components/x-axis-item/NotesIcon.mjs";
|
|
65
|
+
import { ChartXAxisNotesLabel as fo } from "./components/x-axis-item/NotesLabel.mjs";
|
|
66
|
+
import { ChartYAxisCrosshair as Co } from "./components/y-axis-item/Crosshair.mjs";
|
|
67
|
+
import { ChartYAxisCrosshairTooltip as lo } from "./components/y-axis-item/CrosshairTooltip.mjs";
|
|
68
|
+
import { ChartYAxisTitle as Ao } from "./components/y-axis-item/Title.mjs";
|
|
69
|
+
import { ChartYAxisLabels as go } from "./components/y-axis-item/Labels.mjs";
|
|
70
|
+
import { ChartYAxisNotes as No } from "./components/y-axis-item/Notes.mjs";
|
|
71
|
+
import { ChartYAxisNotesIcon as uo } from "./components/y-axis-item/NotesIcon.mjs";
|
|
72
|
+
import { ChartYAxisNotesLabel as Lo } from "./components/y-axis-item/NotesLabel.mjs";
|
|
73
|
+
import { ChartNavigatorCategoryAxis as Io } from "./components/navigator/CategoryAxis.mjs";
|
|
74
|
+
import { ChartNavigatorHint as yo } from "./components/navigator/Hint.mjs";
|
|
75
|
+
import { ChartNavigatorPane as Po } from "./components/navigator/Pane.mjs";
|
|
76
|
+
import { ChartNavigatorSelect as Vo } from "./components/navigator/Select.mjs";
|
|
77
|
+
import { ChartNavigatorSeries as Yo } from "./components/navigator/Series.mjs";
|
|
78
|
+
import { ChartNavigatorSeriesItem as Bo } from "./components/navigator/SeriesItem.mjs";
|
|
79
|
+
import { ChartArea as wo } from "./components/ChartArea.mjs";
|
|
80
|
+
import { ChartAxisDefaults as Oo } from "./components/AxisDefaults.mjs";
|
|
81
|
+
import { ChartCategoryAxis as Mo } from "./components/CategoryAxis.mjs";
|
|
82
|
+
import { ChartCategoryAxisItem as qo } from "./components/CategoryAxisItem.mjs";
|
|
83
|
+
import { ChartLegend as Go } from "./components/Legend.mjs";
|
|
84
|
+
import { ChartNavigator as Ko } from "./components/Navigator.mjs";
|
|
85
|
+
import { ChartPane as Uo } from "./components/Pane.mjs";
|
|
86
|
+
import { ChartPaneDefaults as _o } from "./components/PaneDefaults.mjs";
|
|
87
|
+
import { ChartPanes as rt } from "./components/Panes.mjs";
|
|
88
|
+
import { ChartPlotArea as tt } from "./components/PlotArea.mjs";
|
|
89
|
+
import { ChartSeries as at } from "./components/Series.mjs";
|
|
90
|
+
import { ChartSeriesDefaults as mt } from "./components/SeriesDefaults.mjs";
|
|
91
|
+
import { ChartSeriesItem as it } from "./components/SeriesItem.mjs";
|
|
92
|
+
import { ChartSubtitle as st } from "./components/Subtitle.mjs";
|
|
93
|
+
import { ChartTitle as ht } from "./components/Title.mjs";
|
|
94
|
+
import { ChartTooltip as nt } from "./components/Tooltip.mjs";
|
|
95
|
+
import { ChartValueAxis as vt } from "./components/ValueAxis.mjs";
|
|
96
|
+
import { ChartValueAxisItem as St } from "./components/ValueAxisItem.mjs";
|
|
97
|
+
import { ChartXAxis as Et } from "./components/XAxis.mjs";
|
|
98
|
+
import { ChartXAxisItem as Tt } from "./components/XAxisItem.mjs";
|
|
99
|
+
import { ChartYAxis as ct } from "./components/YAxis.mjs";
|
|
100
|
+
import { ChartYAxisItem as bt } from "./components/YAxisItem.mjs";
|
|
101
|
+
import { ChartZoomable as yt } from "./components/Zoomable.mjs";
|
|
102
|
+
import { AxisLabelClickEvent as Pt } from "./events/axis-label-click-event.mjs";
|
|
103
|
+
import { DragEndEvent as Vt } from "./events/drag-end-event.mjs";
|
|
104
|
+
import { DragEvent as Yt } from "./events/drag-event.mjs";
|
|
105
|
+
import { DragStartEvent as Bt } from "./events/drag-start-event.mjs";
|
|
106
|
+
import { DrilldownEvent as wt } from "./events/drilldown-event.mjs";
|
|
107
|
+
import { DrilldownStateChangeEvent as Ot } from "./events/drilldown-state-change-event.mjs";
|
|
108
|
+
import { LegendItemClickEvent as Mt } from "./events/legend-item-click-event.mjs";
|
|
109
|
+
import { LegendItemHoverEvent as qt } from "./events/legend-item-hover-event.mjs";
|
|
110
|
+
import { NavigatorFilterEvent as Gt } from "./events/navigator-filter-event.mjs";
|
|
111
|
+
import { NoteClickEvent as Kt } from "./events/note-click-event.mjs";
|
|
112
|
+
import { NoteHoverEvent as Ut } from "./events/note-hover-event.mjs";
|
|
113
|
+
import { PlotAreaClickEvent as _t } from "./events/plot-area-click-event.mjs";
|
|
114
|
+
import { PlotAreaHoverEvent as re } from "./events/plot-area-hover-event.mjs";
|
|
115
|
+
import { RenderEvent as te } from "./events/render-event.mjs";
|
|
116
|
+
import { SelectEndEvent as ae } from "./events/select-end-event.mjs";
|
|
117
|
+
import { SelectEvent as me } from "./events/select-event.mjs";
|
|
118
|
+
import { SelectStartEvent as ie } from "./events/select-start-event.mjs";
|
|
119
|
+
import { SeriesClickEvent as se } from "./events/series-click-event.mjs";
|
|
120
|
+
import { SeriesHoverEvent as he } from "./events/series-hover-event.mjs";
|
|
121
|
+
import { ZoomEndEvent as ne } from "./events/zoom-end-event.mjs";
|
|
122
|
+
import { ZoomEvent as ve } from "./events/zoom-event.mjs";
|
|
123
|
+
import { ZoomStartEvent as Se } from "./events/zoom-start-event.mjs";
|
|
124
|
+
import { Sankey as Ee } from "./sankey/Sankey.mjs";
|
|
125
|
+
import { createSankeyData as Te } from "./sankey/utils.mjs";
|
|
125
126
|
export {
|
|
126
|
-
|
|
127
|
+
Pt as AxisLabelClickEvent,
|
|
127
128
|
t as Chart,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
129
|
+
wo as ChartArea,
|
|
130
|
+
Oo as ChartAxisDefaults,
|
|
131
|
+
F as ChartAxisDefaultsCrosshair,
|
|
132
|
+
R as ChartAxisDefaultsCrosshairTooltip,
|
|
133
|
+
Z as ChartAxisDefaultsLabels,
|
|
134
|
+
H as ChartAxisDefaultsTitle,
|
|
134
135
|
b as ChartBreadcrumb,
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
Uo as
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
rt as
|
|
161
|
-
tt as
|
|
162
|
-
at as
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
Dr as
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
st as
|
|
178
|
-
ht as
|
|
179
|
-
nt as
|
|
180
|
-
|
|
181
|
-
Zr as
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
jr as
|
|
185
|
-
zr as
|
|
186
|
-
Jr as
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
Wr as
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
eo as
|
|
194
|
-
xo as
|
|
195
|
-
po as
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
Co as
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
go as
|
|
203
|
-
|
|
204
|
-
uo as
|
|
205
|
-
|
|
206
|
-
|
|
136
|
+
Mo as ChartCategoryAxis,
|
|
137
|
+
j as ChartCategoryAxisCrosshair,
|
|
138
|
+
z as ChartCategoryAxisCrosshairTooltip,
|
|
139
|
+
qo as ChartCategoryAxisItem,
|
|
140
|
+
Q as ChartCategoryAxisLabels,
|
|
141
|
+
W as ChartCategoryAxisNotes,
|
|
142
|
+
$ as ChartCategoryAxisNotesIcon,
|
|
143
|
+
or as ChartCategoryAxisNotesLabel,
|
|
144
|
+
er as ChartCategoryAxisRangeLabels,
|
|
145
|
+
J as ChartCategoryAxisTitle,
|
|
146
|
+
Go as ChartLegend,
|
|
147
|
+
Cr as ChartLegendInactiveItems,
|
|
148
|
+
pr as ChartLegendItem,
|
|
149
|
+
fr as ChartLegendTitle,
|
|
150
|
+
Ko as ChartNavigator,
|
|
151
|
+
Io as ChartNavigatorCategoryAxis,
|
|
152
|
+
yo as ChartNavigatorHint,
|
|
153
|
+
Po as ChartNavigatorPane,
|
|
154
|
+
Vo as ChartNavigatorSelect,
|
|
155
|
+
Yo as ChartNavigatorSeries,
|
|
156
|
+
Bo as ChartNavigatorSeriesItem,
|
|
157
|
+
y as ChartNoDataOverlay,
|
|
158
|
+
Uo as ChartPane,
|
|
159
|
+
_o as ChartPaneDefaults,
|
|
160
|
+
xr as ChartPaneDefaultsTitle,
|
|
161
|
+
rt as ChartPanes,
|
|
162
|
+
tt as ChartPlotArea,
|
|
163
|
+
at as ChartSeries,
|
|
164
|
+
mt as ChartSeriesDefaults,
|
|
165
|
+
dr as ChartSeriesErrorBars,
|
|
166
|
+
Ir as ChartSeriesExtremes,
|
|
167
|
+
Lr as ChartSeriesHighlight,
|
|
168
|
+
it as ChartSeriesItem,
|
|
169
|
+
Ar as ChartSeriesItemOutliers,
|
|
170
|
+
lr as ChartSeriesItemTooltip,
|
|
171
|
+
ur as ChartSeriesLabels,
|
|
172
|
+
Dr as ChartSeriesLabelsFrom,
|
|
173
|
+
kr as ChartSeriesLabelsTo,
|
|
174
|
+
Nr as ChartSeriesMarkers,
|
|
175
|
+
gr as ChartSeriesNotes,
|
|
176
|
+
Hr as ChartSeriesNotesIcon,
|
|
177
|
+
Xr as ChartSeriesNotesLabel,
|
|
178
|
+
st as ChartSubtitle,
|
|
179
|
+
ht as ChartTitle,
|
|
180
|
+
nt as ChartTooltip,
|
|
181
|
+
vt as ChartValueAxis,
|
|
182
|
+
Zr as ChartValueAxisCrosshair,
|
|
183
|
+
Fr as ChartValueAxisCrosshairTooltip,
|
|
184
|
+
St as ChartValueAxisItem,
|
|
185
|
+
jr as ChartValueAxisLabels,
|
|
186
|
+
zr as ChartValueAxisNotes,
|
|
187
|
+
Jr as ChartValueAxisNotesIcon,
|
|
188
|
+
Qr as ChartValueAxisNotesLabel,
|
|
189
|
+
Rr as ChartValueAxisTitle,
|
|
190
|
+
Et as ChartXAxis,
|
|
191
|
+
Wr as ChartXAxisCrosshair,
|
|
192
|
+
$r as ChartXAxisCrosshairTooltip,
|
|
193
|
+
Tt as ChartXAxisItem,
|
|
194
|
+
eo as ChartXAxisLabels,
|
|
195
|
+
xo as ChartXAxisNotes,
|
|
196
|
+
po as ChartXAxisNotesIcon,
|
|
197
|
+
fo as ChartXAxisNotesLabel,
|
|
198
|
+
oo as ChartXAxisTitle,
|
|
199
|
+
ct as ChartYAxis,
|
|
200
|
+
Co as ChartYAxisCrosshair,
|
|
201
|
+
lo as ChartYAxisCrosshairTooltip,
|
|
202
|
+
bt as ChartYAxisItem,
|
|
203
|
+
go as ChartYAxisLabels,
|
|
204
|
+
No as ChartYAxisNotes,
|
|
205
|
+
uo as ChartYAxisNotesIcon,
|
|
206
|
+
Lo as ChartYAxisNotesLabel,
|
|
207
|
+
Ao as ChartYAxisTitle,
|
|
208
|
+
yt as ChartZoomable,
|
|
207
209
|
i as CollectionConfigurationComponent,
|
|
208
210
|
s as ConfigurationComponent,
|
|
209
211
|
S as CrosshairTooltip,
|
|
210
212
|
c as CrosshairTooltipContainer,
|
|
211
213
|
h as DonutCenter,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
214
|
+
Vt as DragEndEvent,
|
|
215
|
+
Yt as DragEvent,
|
|
216
|
+
Bt as DragStartEvent,
|
|
217
|
+
wt as DrilldownEvent,
|
|
218
|
+
Ot as DrilldownStateChangeEvent,
|
|
219
|
+
Mt as LegendItemClickEvent,
|
|
220
|
+
qt as LegendItemHoverEvent,
|
|
221
|
+
Gt as NavigatorFilterEvent,
|
|
222
|
+
Kt as NoteClickEvent,
|
|
223
|
+
Ut as NoteHoverEvent,
|
|
224
|
+
_t as PlotAreaClickEvent,
|
|
225
|
+
re as PlotAreaHoverEvent,
|
|
226
|
+
te as RenderEvent,
|
|
227
|
+
Ee as Sankey,
|
|
228
|
+
ae as SelectEndEvent,
|
|
229
|
+
me as SelectEvent,
|
|
230
|
+
ie as SelectStartEvent,
|
|
231
|
+
se as SeriesClickEvent,
|
|
232
|
+
he as SeriesHoverEvent,
|
|
231
233
|
v as SeriesTooltip,
|
|
232
234
|
T as SharedTooltipContent,
|
|
233
235
|
a as Sparkline,
|
|
234
236
|
m as StockChart,
|
|
235
237
|
n as TooltipPoint,
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
238
|
+
E as TooltipPopup,
|
|
239
|
+
ne as ZoomEndEvent,
|
|
240
|
+
ve as ZoomEvent,
|
|
241
|
+
Se as ZoomStartEvent,
|
|
242
|
+
Te as createSankeyData,
|
|
243
|
+
P as exportVisual,
|
|
244
|
+
k as findAxisByName,
|
|
245
|
+
V as findPaneByIndex,
|
|
246
|
+
X as findPaneByName
|
|
245
247
|
};
|
package/messages.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a="charts.nodata",e={[a]:"No data available."};exports.messages=e;exports.nodata=a;
|
package/messages.mjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
"use client";
|
|
9
|
+
const a = "charts.nodata", t = {
|
|
10
|
+
[a]: "No data available."
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
t as messages,
|
|
14
|
+
a as nodata
|
|
15
|
+
};
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-charts",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1731068807,
|
|
14
14
|
version: "",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-charts",
|
|
3
|
-
"version": "9.0.0-develop.
|
|
3
|
+
"version": "9.0.0-develop.21",
|
|
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",
|
|
@@ -22,18 +22,18 @@
|
|
|
22
22
|
},
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@progress/kendo-drawing": "^1.
|
|
25
|
+
"@progress/kendo-drawing": "^1.21.1",
|
|
26
26
|
"@progress/kendo-licensing": "^1.3.4",
|
|
27
|
-
"@progress/kendo-react-common": "9.0.0-develop.
|
|
28
|
-
"@progress/kendo-react-intl": "9.0.0-develop.
|
|
29
|
-
"@progress/kendo-react-layout": "9.0.0-develop.
|
|
30
|
-
"@progress/kendo-react-popup": "9.0.0-develop.
|
|
27
|
+
"@progress/kendo-react-common": "9.0.0-develop.21",
|
|
28
|
+
"@progress/kendo-react-intl": "9.0.0-develop.21",
|
|
29
|
+
"@progress/kendo-react-layout": "9.0.0-develop.21",
|
|
30
|
+
"@progress/kendo-react-popup": "9.0.0-develop.21",
|
|
31
31
|
"@progress/kendo-svg-icons": "^3.0.0",
|
|
32
32
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
33
33
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@progress/kendo-charts": "2.
|
|
36
|
+
"@progress/kendo-charts": "2.6.1",
|
|
37
37
|
"prop-types": "^15.6.0"
|
|
38
38
|
},
|
|
39
39
|
"keywords": [
|
package/sankey/Sankey.mjs
CHANGED
|
@@ -22,25 +22,38 @@ const S = 12, p = {
|
|
|
22
22
|
}));
|
|
23
23
|
}, P = t.forwardRef((n, c) => {
|
|
24
24
|
H(M);
|
|
25
|
-
const o = t.useRef(null), r = t.useRef(null), s = I(o, n.dir, [n.dir, o.current]), d = t.useRef(null), {
|
|
25
|
+
const o = t.useRef(null), r = t.useRef(null), s = I(o, n.dir, [n.dir, o.current]), d = t.useRef(null), {
|
|
26
|
+
data: k,
|
|
27
|
+
links: m,
|
|
28
|
+
nodes: y,
|
|
29
|
+
labels: v,
|
|
30
|
+
title: E,
|
|
31
|
+
legend: C,
|
|
32
|
+
tooltip: u = p,
|
|
33
|
+
disableAutoLayout: b,
|
|
34
|
+
disableKeyboardNavigation: g
|
|
35
|
+
} = n, T = t.useRef();
|
|
26
36
|
T.current = n;
|
|
27
|
-
const [L, R] = t.useState(null), N = t.useCallback(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
37
|
+
const [L, R] = t.useState(null), N = t.useCallback(
|
|
38
|
+
(l) => {
|
|
39
|
+
const {
|
|
40
|
+
visible: a,
|
|
41
|
+
offset: e = S,
|
|
42
|
+
nodeComponent: f = F,
|
|
43
|
+
linkComponent: w = U
|
|
44
|
+
} = { ...p, ...u };
|
|
45
|
+
if (a) {
|
|
46
|
+
const x = {
|
|
47
|
+
event: l,
|
|
48
|
+
offset: e,
|
|
49
|
+
dir: s,
|
|
50
|
+
Content: l.targetType === "node" ? f : w
|
|
51
|
+
};
|
|
52
|
+
R(x);
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
[u, s]
|
|
56
|
+
), h = t.useCallback(() => {
|
|
44
57
|
R(null);
|
|
45
58
|
}, []), i = t.useCallback((l, a) => {
|
|
46
59
|
const e = T.current[l];
|
|
@@ -90,21 +103,31 @@ const S = 12, p = {
|
|
|
90
103
|
}), () => {
|
|
91
104
|
r.current && (r.current.destroy(), r.current = null);
|
|
92
105
|
};
|
|
93
|
-
}, [
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
),
|
|
106
|
+
}, [
|
|
107
|
+
k,
|
|
108
|
+
m,
|
|
109
|
+
y,
|
|
110
|
+
v,
|
|
111
|
+
E,
|
|
112
|
+
C,
|
|
113
|
+
b,
|
|
114
|
+
g,
|
|
115
|
+
s,
|
|
116
|
+
u,
|
|
117
|
+
h,
|
|
118
|
+
N,
|
|
119
|
+
i
|
|
120
|
+
]), t.useImperativeHandle(
|
|
121
|
+
d,
|
|
122
|
+
() => ({
|
|
123
|
+
get element() {
|
|
124
|
+
return o.current;
|
|
125
|
+
},
|
|
126
|
+
exportVisual: (l) => r.current.exportVisual(l),
|
|
127
|
+
props: n
|
|
128
|
+
}),
|
|
129
|
+
[]
|
|
130
|
+
), t.useImperativeHandle(c, () => d.current), /* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("div", { ref: o, className: n.className, style: n.style, dir: s }), L && /* @__PURE__ */ t.createElement(A, { ...L }));
|
|
108
131
|
});
|
|
109
132
|
P.propTypes = V;
|
|
110
133
|
P.displayName = "KendoReactSankey";
|