@progress/kendo-vue-charts 3.0.3-dev.202201280639 → 3.0.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.
- package/dist/cdn/js/kendo-vue-charts.js +1 -1
- package/dist/es/BaseChartProps.d.ts +15 -15
- package/dist/es/StockChartProps.d.ts +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/BaseChartProps.d.ts +15 -15
- package/dist/npm/StockChartProps.d.ts +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +6 -6
|
@@ -93,7 +93,7 @@ export interface BaseChartProps {
|
|
|
93
93
|
/**
|
|
94
94
|
* Fires when the user clicks an axis label.
|
|
95
95
|
*/
|
|
96
|
-
|
|
96
|
+
onAxislabelclick?: (event: AxisLabelClickEvent) => void;
|
|
97
97
|
/**
|
|
98
98
|
* Fires as long as the user is dragging the Chart with the mouse or through swipe gestures.
|
|
99
99
|
*/
|
|
@@ -101,35 +101,35 @@ export interface BaseChartProps {
|
|
|
101
101
|
/**
|
|
102
102
|
* Fires when the user stops dragging the Chart.
|
|
103
103
|
*/
|
|
104
|
-
|
|
104
|
+
onDragend?: (event: DragEndEvent) => void;
|
|
105
105
|
/**
|
|
106
106
|
* Fires when the user starts dragging the Chart.
|
|
107
107
|
*/
|
|
108
|
-
|
|
108
|
+
onDragstart?: (event: DragStartEvent) => void;
|
|
109
109
|
/**
|
|
110
110
|
* Fires when the user hovers over a legend item.
|
|
111
111
|
*/
|
|
112
|
-
|
|
112
|
+
onLegenditemhover?: (event: LegendItemHoverEvent) => void;
|
|
113
113
|
/**
|
|
114
114
|
* Fires when the user clicks a legend item ([see example]({% slug legend_chart_charts %}#toc-clicking-legend-items)).
|
|
115
115
|
*/
|
|
116
|
-
|
|
116
|
+
onLegenditemclick?: (event: LegendItemClickEvent) => void;
|
|
117
117
|
/**
|
|
118
118
|
* Fires when the user clicks a note.
|
|
119
119
|
*/
|
|
120
|
-
|
|
120
|
+
onNoteclick?: (event: NoteClickEvent) => void;
|
|
121
121
|
/**
|
|
122
122
|
* Fires when the user hovers over a note.
|
|
123
123
|
*/
|
|
124
|
-
|
|
124
|
+
onNotehover?: (event: NoteHoverEvent) => void;
|
|
125
125
|
/**
|
|
126
126
|
* Fires when the user clicks the plot area. The `click` event is triggered by the `tap` and `contextmenu` events. To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
127
127
|
*/
|
|
128
|
-
|
|
128
|
+
onPlotareaclick?: (event: PlotAreaClickEvent) => void;
|
|
129
129
|
/**
|
|
130
130
|
* Fires when the user hovers the plot area ([see example]({% slug crosshairs_chart_charts %}#toc-current-cursotr-value)).
|
|
131
131
|
*/
|
|
132
|
-
|
|
132
|
+
onPlotareahover?: (event: PlotAreaHoverEvent) => void;
|
|
133
133
|
/**
|
|
134
134
|
* Fires when the Chart is ready to render on screen ([see example]({% slug plotbands_chart_charts %}#toc-custom-plot-bands)). For example, you can use it to remove loading indicators. Any changes made to the options are ignored.
|
|
135
135
|
*/
|
|
@@ -149,7 +149,7 @@ export interface BaseChartProps {
|
|
|
149
149
|
* - Generic axis—Category index (0-based).
|
|
150
150
|
* - Date axis—Date instance.
|
|
151
151
|
*/
|
|
152
|
-
|
|
152
|
+
onSelectend?: (event: SelectEndEvent) => void;
|
|
153
153
|
/**
|
|
154
154
|
* Fires when the user starts modifying the axis selection.
|
|
155
155
|
*
|
|
@@ -157,17 +157,17 @@ export interface BaseChartProps {
|
|
|
157
157
|
* - Generic axis—Category index (0-based).
|
|
158
158
|
* - Date axis—Date instance.
|
|
159
159
|
*/
|
|
160
|
-
|
|
160
|
+
onSelectstart?: (event: SelectStartEvent) => void;
|
|
161
161
|
/**
|
|
162
162
|
* Fires when the user clicks the Chart series.
|
|
163
163
|
*
|
|
164
164
|
* The `click` event will be triggered by the `tap` and `contextmenu` events. To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
165
165
|
*/
|
|
166
|
-
|
|
166
|
+
onSeriesclick?: (event: SeriesClickEvent) => void;
|
|
167
167
|
/**
|
|
168
168
|
* Fires when the user hovers over the Chart series.
|
|
169
169
|
*/
|
|
170
|
-
|
|
170
|
+
onSerieshover?: (event: SeriesHoverEvent) => void;
|
|
171
171
|
/**
|
|
172
172
|
* Fires as long as the user is zooming the Chart by using the mousewheel operation.
|
|
173
173
|
*/
|
|
@@ -175,9 +175,9 @@ export interface BaseChartProps {
|
|
|
175
175
|
/**
|
|
176
176
|
* Fires when the user stops zooming the Chart.
|
|
177
177
|
*/
|
|
178
|
-
|
|
178
|
+
onZoomend?: (event: ZoomEndEvent) => void;
|
|
179
179
|
/**
|
|
180
180
|
* Fires when the user uses the mousewheel to zoom the Chart.
|
|
181
181
|
*/
|
|
182
|
-
|
|
182
|
+
onZoomstart?: (event: ZoomStartEvent) => void;
|
|
183
183
|
}
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-charts',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1643723272,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -93,7 +93,7 @@ export interface BaseChartProps {
|
|
|
93
93
|
/**
|
|
94
94
|
* Fires when the user clicks an axis label.
|
|
95
95
|
*/
|
|
96
|
-
|
|
96
|
+
onAxislabelclick?: (event: AxisLabelClickEvent) => void;
|
|
97
97
|
/**
|
|
98
98
|
* Fires as long as the user is dragging the Chart with the mouse or through swipe gestures.
|
|
99
99
|
*/
|
|
@@ -101,35 +101,35 @@ export interface BaseChartProps {
|
|
|
101
101
|
/**
|
|
102
102
|
* Fires when the user stops dragging the Chart.
|
|
103
103
|
*/
|
|
104
|
-
|
|
104
|
+
onDragend?: (event: DragEndEvent) => void;
|
|
105
105
|
/**
|
|
106
106
|
* Fires when the user starts dragging the Chart.
|
|
107
107
|
*/
|
|
108
|
-
|
|
108
|
+
onDragstart?: (event: DragStartEvent) => void;
|
|
109
109
|
/**
|
|
110
110
|
* Fires when the user hovers over a legend item.
|
|
111
111
|
*/
|
|
112
|
-
|
|
112
|
+
onLegenditemhover?: (event: LegendItemHoverEvent) => void;
|
|
113
113
|
/**
|
|
114
114
|
* Fires when the user clicks a legend item ([see example]({% slug legend_chart_charts %}#toc-clicking-legend-items)).
|
|
115
115
|
*/
|
|
116
|
-
|
|
116
|
+
onLegenditemclick?: (event: LegendItemClickEvent) => void;
|
|
117
117
|
/**
|
|
118
118
|
* Fires when the user clicks a note.
|
|
119
119
|
*/
|
|
120
|
-
|
|
120
|
+
onNoteclick?: (event: NoteClickEvent) => void;
|
|
121
121
|
/**
|
|
122
122
|
* Fires when the user hovers over a note.
|
|
123
123
|
*/
|
|
124
|
-
|
|
124
|
+
onNotehover?: (event: NoteHoverEvent) => void;
|
|
125
125
|
/**
|
|
126
126
|
* Fires when the user clicks the plot area. The `click` event is triggered by the `tap` and `contextmenu` events. To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
127
127
|
*/
|
|
128
|
-
|
|
128
|
+
onPlotareaclick?: (event: PlotAreaClickEvent) => void;
|
|
129
129
|
/**
|
|
130
130
|
* Fires when the user hovers the plot area ([see example]({% slug crosshairs_chart_charts %}#toc-current-cursotr-value)).
|
|
131
131
|
*/
|
|
132
|
-
|
|
132
|
+
onPlotareahover?: (event: PlotAreaHoverEvent) => void;
|
|
133
133
|
/**
|
|
134
134
|
* Fires when the Chart is ready to render on screen ([see example]({% slug plotbands_chart_charts %}#toc-custom-plot-bands)). For example, you can use it to remove loading indicators. Any changes made to the options are ignored.
|
|
135
135
|
*/
|
|
@@ -149,7 +149,7 @@ export interface BaseChartProps {
|
|
|
149
149
|
* - Generic axis—Category index (0-based).
|
|
150
150
|
* - Date axis—Date instance.
|
|
151
151
|
*/
|
|
152
|
-
|
|
152
|
+
onSelectend?: (event: SelectEndEvent) => void;
|
|
153
153
|
/**
|
|
154
154
|
* Fires when the user starts modifying the axis selection.
|
|
155
155
|
*
|
|
@@ -157,17 +157,17 @@ export interface BaseChartProps {
|
|
|
157
157
|
* - Generic axis—Category index (0-based).
|
|
158
158
|
* - Date axis—Date instance.
|
|
159
159
|
*/
|
|
160
|
-
|
|
160
|
+
onSelectstart?: (event: SelectStartEvent) => void;
|
|
161
161
|
/**
|
|
162
162
|
* Fires when the user clicks the Chart series.
|
|
163
163
|
*
|
|
164
164
|
* The `click` event will be triggered by the `tap` and `contextmenu` events. To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
165
165
|
*/
|
|
166
|
-
|
|
166
|
+
onSeriesclick?: (event: SeriesClickEvent) => void;
|
|
167
167
|
/**
|
|
168
168
|
* Fires when the user hovers over the Chart series.
|
|
169
169
|
*/
|
|
170
|
-
|
|
170
|
+
onSerieshover?: (event: SeriesHoverEvent) => void;
|
|
171
171
|
/**
|
|
172
172
|
* Fires as long as the user is zooming the Chart by using the mousewheel operation.
|
|
173
173
|
*/
|
|
@@ -175,9 +175,9 @@ export interface BaseChartProps {
|
|
|
175
175
|
/**
|
|
176
176
|
* Fires when the user stops zooming the Chart.
|
|
177
177
|
*/
|
|
178
|
-
|
|
178
|
+
onZoomend?: (event: ZoomEndEvent) => void;
|
|
179
179
|
/**
|
|
180
180
|
* Fires when the user uses the mousewheel to zoom the Chart.
|
|
181
181
|
*/
|
|
182
|
-
|
|
182
|
+
onZoomstart?: (event: ZoomStartEvent) => void;
|
|
183
183
|
}
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-charts',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1643723272,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-charts",
|
|
3
3
|
"description": "Kendo UI for Vue Charts package",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.4",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -38,17 +38,17 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@progress/kendo-charts": "^1.18.0",
|
|
41
|
-
"@progress/kendo-vue-common": "3.0.
|
|
42
|
-
"@progress/kendo-vue-popup": "3.0.
|
|
41
|
+
"@progress/kendo-vue-common": "3.0.4",
|
|
42
|
+
"@progress/kendo-vue-popup": "3.0.4"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@progress/kendo-data-query": "^1.0.0",
|
|
46
46
|
"@progress/kendo-drawing": "^1.8.0",
|
|
47
47
|
"@progress/kendo-file-saver": "^1.0.1",
|
|
48
48
|
"@progress/kendo-licensing": "^1.2.0",
|
|
49
|
-
"@progress/kendo-vue-dropdowns": "3.0.
|
|
50
|
-
"@progress/kendo-vue-inputs": "3.0.
|
|
51
|
-
"@progress/kendo-vue-intl": "3.0.
|
|
49
|
+
"@progress/kendo-vue-dropdowns": "3.0.4",
|
|
50
|
+
"@progress/kendo-vue-inputs": "3.0.4",
|
|
51
|
+
"@progress/kendo-vue-intl": "3.0.4",
|
|
52
52
|
"cldr-core": "^36.0.0",
|
|
53
53
|
"cldr-dates-full": "^36.0.0",
|
|
54
54
|
"cldr-numbers-full": "^36.0.0",
|