@progress/kendo-angular-charts 11.2.0 → 11.3.0-develop.10

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.
@@ -122,7 +122,7 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
122
122
  xAxis: XAxis | XAxis[];
123
123
  yAxis: YAxis | YAxis[];
124
124
  /**
125
- * Fires when the user clicks an axis label ([see example]({% slug overview_chart_charts %}#toc-events)).
125
+ * Fires when the user clicks an axis label ([see example](slug:events_chart)).
126
126
  */
127
127
  axisLabelClick: EventEmitter<AxisLabelClickEvent>;
128
128
  /**
@@ -138,7 +138,7 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
138
138
  */
139
139
  dragStart: EventEmitter<DragStartEvent>;
140
140
  /**
141
- * Fires when the user hovers over a legend item ([see example]({% slug overview_chart_charts %}#toc-events)).
141
+ * Fires when the user hovers over a legend item ([see example](slug:events_charts)).
142
142
  */
143
143
  legendItemHover: EventEmitter<LegendItemHoverEvent>;
144
144
  /**
@@ -166,13 +166,13 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
166
166
  */
167
167
  paneRender: EventEmitter<PaneRenderEvent>;
168
168
  /**
169
- * Fires when the user clicks the plot area ([see example]({% slug overview_chart_charts %}#toc-events)).
169
+ * Fires when the user clicks the plot area ([see example](slug:events_charts)).
170
170
  * The `click` event is triggered by the `tap` and `contextmenu` events.
171
171
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
172
172
  */
173
173
  plotAreaClick: EventEmitter<PlotAreaClickEvent>;
174
174
  /**
175
- * Fires when the user hovers the plot area ([see example]({% slug overview_chart_charts %}#toc-events)).
175
+ * Fires when the user hovers the plot area ([see example](slug:events_charts)).
176
176
  */
177
177
  plotAreaHover: EventEmitter<PlotAreaHoverEvent>;
178
178
  /**
@@ -180,7 +180,7 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
180
180
  */
181
181
  plotAreaLeave: EventEmitter<PlotAreaLeaveEvent>;
182
182
  /**
183
- * Fires when the Chart is ready to render on screen ([see example]({% slug overview_chart_charts %}#toc-events)).
183
+ * Fires when the Chart is ready to render on screen ([see example](slug:events_charts)).
184
184
  * For example, you can use it to remove loading indicators.
185
185
  * Any changes made to the options are ignored.
186
186
  */
@@ -212,12 +212,12 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
212
212
  /**
213
213
  * Fires when the user clicks the Chart series.
214
214
  *
215
- * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example]({% slug overview_chart_charts %}#toc-events)).
215
+ * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_charts)).
216
216
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
217
217
  */
218
218
  seriesClick: EventEmitter<SeriesClickEvent>;
219
219
  /**
220
- * Fires when the user hovers the Chart series ([see example]({% slug overview_chart_charts %}#toc-events)).
220
+ * Fires when the user hovers the Chart series ([see example](slug:events_charts)).
221
221
  */
222
222
  seriesHover: EventEmitter<SeriesHoverEvent>;
223
223
  /**
@@ -93,7 +93,7 @@ export class ChartComponent {
93
93
  this.changeDetector = changeDetector;
94
94
  this.renderer = renderer;
95
95
  /**
96
- * Fires when the user clicks an axis label ([see example]({% slug overview_chart_charts %}#toc-events)).
96
+ * Fires when the user clicks an axis label ([see example](slug:events_chart)).
97
97
  */
98
98
  this.axisLabelClick = new EventEmitter();
99
99
  /**
@@ -109,7 +109,7 @@ export class ChartComponent {
109
109
  */
110
110
  this.dragStart = new EventEmitter();
111
111
  /**
112
- * Fires when the user hovers over a legend item ([see example]({% slug overview_chart_charts %}#toc-events)).
112
+ * Fires when the user hovers over a legend item ([see example](slug:events_charts)).
113
113
  */
114
114
  this.legendItemHover = new EventEmitter();
115
115
  /**
@@ -137,13 +137,13 @@ export class ChartComponent {
137
137
  */
138
138
  this.paneRender = new EventEmitter();
139
139
  /**
140
- * Fires when the user clicks the plot area ([see example]({% slug overview_chart_charts %}#toc-events)).
140
+ * Fires when the user clicks the plot area ([see example](slug:events_charts)).
141
141
  * The `click` event is triggered by the `tap` and `contextmenu` events.
142
142
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
143
143
  */
144
144
  this.plotAreaClick = new EventEmitter();
145
145
  /**
146
- * Fires when the user hovers the plot area ([see example]({% slug overview_chart_charts %}#toc-events)).
146
+ * Fires when the user hovers the plot area ([see example](slug:events_charts)).
147
147
  */
148
148
  this.plotAreaHover = new EventEmitter();
149
149
  /**
@@ -151,7 +151,7 @@ export class ChartComponent {
151
151
  */
152
152
  this.plotAreaLeave = new EventEmitter();
153
153
  /**
154
- * Fires when the Chart is ready to render on screen ([see example]({% slug overview_chart_charts %}#toc-events)).
154
+ * Fires when the Chart is ready to render on screen ([see example](slug:events_charts)).
155
155
  * For example, you can use it to remove loading indicators.
156
156
  * Any changes made to the options are ignored.
157
157
  */
@@ -183,12 +183,12 @@ export class ChartComponent {
183
183
  /**
184
184
  * Fires when the user clicks the Chart series.
185
185
  *
186
- * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example]({% slug overview_chart_charts %}#toc-events)).
186
+ * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_charts)).
187
187
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
188
188
  */
189
189
  this.seriesClick = new EventEmitter();
190
190
  /**
191
- * Fires when the user hovers the Chart series ([see example]({% slug overview_chart_charts %}#toc-events)).
191
+ * Fires when the user hovers the Chart series ([see example](slug:events_charts)).
192
192
  */
193
193
  this.seriesHover = new EventEmitter();
194
194
  /**
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-charts',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1676453582,
13
- version: '11.2.0',
12
+ publishDate: 1677586003,
13
+ version: '11.3.0-develop.10',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -1845,8 +1845,8 @@ const packageMetadata = {
1845
1845
  name: '@progress/kendo-angular-charts',
1846
1846
  productName: 'Kendo UI for Angular',
1847
1847
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
1848
- publishDate: 1676453582,
1849
- version: '11.2.0',
1848
+ publishDate: 1677586003,
1849
+ version: '11.3.0-develop.10',
1850
1850
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
1851
1851
  };
1852
1852
 
@@ -2280,7 +2280,7 @@ class ChartComponent {
2280
2280
  this.changeDetector = changeDetector;
2281
2281
  this.renderer = renderer;
2282
2282
  /**
2283
- * Fires when the user clicks an axis label ([see example]({% slug overview_chart_charts %}#toc-events)).
2283
+ * Fires when the user clicks an axis label ([see example](slug:events_chart)).
2284
2284
  */
2285
2285
  this.axisLabelClick = new EventEmitter();
2286
2286
  /**
@@ -2296,7 +2296,7 @@ class ChartComponent {
2296
2296
  */
2297
2297
  this.dragStart = new EventEmitter();
2298
2298
  /**
2299
- * Fires when the user hovers over a legend item ([see example]({% slug overview_chart_charts %}#toc-events)).
2299
+ * Fires when the user hovers over a legend item ([see example](slug:events_charts)).
2300
2300
  */
2301
2301
  this.legendItemHover = new EventEmitter();
2302
2302
  /**
@@ -2324,13 +2324,13 @@ class ChartComponent {
2324
2324
  */
2325
2325
  this.paneRender = new EventEmitter();
2326
2326
  /**
2327
- * Fires when the user clicks the plot area ([see example]({% slug overview_chart_charts %}#toc-events)).
2327
+ * Fires when the user clicks the plot area ([see example](slug:events_charts)).
2328
2328
  * The `click` event is triggered by the `tap` and `contextmenu` events.
2329
2329
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
2330
2330
  */
2331
2331
  this.plotAreaClick = new EventEmitter();
2332
2332
  /**
2333
- * Fires when the user hovers the plot area ([see example]({% slug overview_chart_charts %}#toc-events)).
2333
+ * Fires when the user hovers the plot area ([see example](slug:events_charts)).
2334
2334
  */
2335
2335
  this.plotAreaHover = new EventEmitter();
2336
2336
  /**
@@ -2338,7 +2338,7 @@ class ChartComponent {
2338
2338
  */
2339
2339
  this.plotAreaLeave = new EventEmitter();
2340
2340
  /**
2341
- * Fires when the Chart is ready to render on screen ([see example]({% slug overview_chart_charts %}#toc-events)).
2341
+ * Fires when the Chart is ready to render on screen ([see example](slug:events_charts)).
2342
2342
  * For example, you can use it to remove loading indicators.
2343
2343
  * Any changes made to the options are ignored.
2344
2344
  */
@@ -2370,12 +2370,12 @@ class ChartComponent {
2370
2370
  /**
2371
2371
  * Fires when the user clicks the Chart series.
2372
2372
  *
2373
- * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example]({% slug overview_chart_charts %}#toc-events)).
2373
+ * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_charts)).
2374
2374
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
2375
2375
  */
2376
2376
  this.seriesClick = new EventEmitter();
2377
2377
  /**
2378
- * Fires when the user hovers the Chart series ([see example]({% slug overview_chart_charts %}#toc-events)).
2378
+ * Fires when the user hovers the Chart series ([see example](slug:events_charts)).
2379
2379
  */
2380
2380
  this.seriesHover = new EventEmitter();
2381
2381
  /**
@@ -2216,8 +2216,8 @@ const packageMetadata = {
2216
2216
  name: '@progress/kendo-angular-charts',
2217
2217
  productName: 'Kendo UI for Angular',
2218
2218
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
2219
- publishDate: 1676453582,
2220
- version: '11.2.0',
2219
+ publishDate: 1677586003,
2220
+ version: '11.3.0-develop.10',
2221
2221
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
2222
2222
  };
2223
2223
 
@@ -2274,7 +2274,7 @@ class ChartComponent {
2274
2274
  this.changeDetector = changeDetector;
2275
2275
  this.renderer = renderer;
2276
2276
  /**
2277
- * Fires when the user clicks an axis label ([see example]({% slug overview_chart_charts %}#toc-events)).
2277
+ * Fires when the user clicks an axis label ([see example](slug:events_chart)).
2278
2278
  */
2279
2279
  this.axisLabelClick = new EventEmitter();
2280
2280
  /**
@@ -2290,7 +2290,7 @@ class ChartComponent {
2290
2290
  */
2291
2291
  this.dragStart = new EventEmitter();
2292
2292
  /**
2293
- * Fires when the user hovers over a legend item ([see example]({% slug overview_chart_charts %}#toc-events)).
2293
+ * Fires when the user hovers over a legend item ([see example](slug:events_charts)).
2294
2294
  */
2295
2295
  this.legendItemHover = new EventEmitter();
2296
2296
  /**
@@ -2318,13 +2318,13 @@ class ChartComponent {
2318
2318
  */
2319
2319
  this.paneRender = new EventEmitter();
2320
2320
  /**
2321
- * Fires when the user clicks the plot area ([see example]({% slug overview_chart_charts %}#toc-events)).
2321
+ * Fires when the user clicks the plot area ([see example](slug:events_charts)).
2322
2322
  * The `click` event is triggered by the `tap` and `contextmenu` events.
2323
2323
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
2324
2324
  */
2325
2325
  this.plotAreaClick = new EventEmitter();
2326
2326
  /**
2327
- * Fires when the user hovers the plot area ([see example]({% slug overview_chart_charts %}#toc-events)).
2327
+ * Fires when the user hovers the plot area ([see example](slug:events_charts)).
2328
2328
  */
2329
2329
  this.plotAreaHover = new EventEmitter();
2330
2330
  /**
@@ -2332,7 +2332,7 @@ class ChartComponent {
2332
2332
  */
2333
2333
  this.plotAreaLeave = new EventEmitter();
2334
2334
  /**
2335
- * Fires when the Chart is ready to render on screen ([see example]({% slug overview_chart_charts %}#toc-events)).
2335
+ * Fires when the Chart is ready to render on screen ([see example](slug:events_charts)).
2336
2336
  * For example, you can use it to remove loading indicators.
2337
2337
  * Any changes made to the options are ignored.
2338
2338
  */
@@ -2364,12 +2364,12 @@ class ChartComponent {
2364
2364
  /**
2365
2365
  * Fires when the user clicks the Chart series.
2366
2366
  *
2367
- * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example]({% slug overview_chart_charts %}#toc-events)).
2367
+ * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_charts)).
2368
2368
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
2369
2369
  */
2370
2370
  this.seriesClick = new EventEmitter();
2371
2371
  /**
2372
- * Fires when the user hovers the Chart series ([see example]({% slug overview_chart_charts %}#toc-events)).
2372
+ * Fires when the user hovers the Chart series ([see example](slug:events_charts)).
2373
2373
  */
2374
2374
  this.seriesHover = new EventEmitter();
2375
2375
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-charts",
3
- "version": "11.2.0",
3
+ "version": "11.3.0-develop.10",
4
4
  "description": "Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -46,16 +46,16 @@
46
46
  "@angular/platform-browser": "13 - 15",
47
47
  "@progress/kendo-drawing": "^1.17.2",
48
48
  "@progress/kendo-licensing": "^1.0.2",
49
- "@progress/kendo-angular-common": "11.2.0",
50
- "@progress/kendo-angular-intl": "11.2.0",
51
- "@progress/kendo-angular-l10n": "11.2.0",
52
- "@progress/kendo-angular-popup": "11.2.0",
49
+ "@progress/kendo-angular-common": "11.3.0-develop.10",
50
+ "@progress/kendo-angular-intl": "11.3.0-develop.10",
51
+ "@progress/kendo-angular-l10n": "11.3.0-develop.10",
52
+ "@progress/kendo-angular-popup": "11.3.0-develop.10",
53
53
  "hammerjs": "^2.0.0",
54
54
  "rxjs": "^6.5.3 || ^7.0.0"
55
55
  },
56
56
  "dependencies": {
57
57
  "tslib": "^2.3.1",
58
- "@progress/kendo-angular-schematics": "11.2.0",
58
+ "@progress/kendo-angular-schematics": "11.3.0-develop.10",
59
59
  "@progress/kendo-charts": "^1.27.0"
60
60
  },
61
61
  "schematics": "./schematics/collection.json",