@progress/kendo-angular-charts 12.0.1-develop.3 → 12.0.1
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/chart.module.d.ts +3 -4
- package/charts.module.d.ts +1 -1
- package/esm2020/chart.module.mjs +3 -4
- package/esm2020/charts.module.mjs +1 -1
- package/esm2020/events/drag-end-event.mjs +1 -1
- package/esm2020/events/drag-event.mjs +1 -1
- package/esm2020/events/drag-start-event.mjs +1 -1
- package/esm2020/events/zoom-end-event.mjs +1 -1
- package/esm2020/events/zoom-event.mjs +1 -1
- package/esm2020/events/zoom-start-event.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/stock-chart/events/navigator-filter-event.mjs +1 -1
- package/events/drag-end-event.d.ts +1 -1
- package/events/drag-event.d.ts +1 -1
- package/events/drag-start-event.d.ts +1 -1
- package/events/zoom-end-event.d.ts +1 -1
- package/events/zoom-event.d.ts +1 -1
- package/events/zoom-start-event.d.ts +1 -1
- package/fesm2015/progress-kendo-angular-charts.mjs +13 -14
- package/fesm2020/progress-kendo-angular-charts.mjs +13 -14
- package/package.json +6 -6
- package/stock-chart/events/navigator-filter-event.d.ts +1 -1
package/chart.module.d.ts
CHANGED
|
@@ -96,11 +96,10 @@ import * as i89 from "@progress/kendo-angular-common";
|
|
|
96
96
|
* A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart component and directives.
|
|
97
97
|
*
|
|
98
98
|
* Imports the ChartModule into your application
|
|
99
|
-
* [root module](
|
|
99
|
+
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
100
100
|
* that will use the Chart component.
|
|
101
|
-
|
|
102
|
-
*
|
|
103
|
-
* ```ts-no-run
|
|
101
|
+
* @example
|
|
102
|
+
* ```ts
|
|
104
103
|
* import { NgModule } from '@angular/core';
|
|
105
104
|
* import { BrowserModule } from '@angular/platform-browser';
|
|
106
105
|
* import { ChartModule } from '@progress/kendo-angular-charts';
|
package/charts.module.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import * as i3 from "./stock-chart.module";
|
|
|
14
14
|
* that will use the Charts components.
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
|
-
* ```ts
|
|
17
|
+
* ```ts
|
|
18
18
|
* import { NgModule } from '@angular/core';
|
|
19
19
|
* import { BrowserModule } from '@angular/platform-browser';
|
|
20
20
|
* import { ChartsModule } from '@progress/kendo-angular-charts';
|
package/esm2020/chart.module.mjs
CHANGED
|
@@ -99,11 +99,10 @@ import * as i86 from "./chart/zoomable.component";
|
|
|
99
99
|
* A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart component and directives.
|
|
100
100
|
*
|
|
101
101
|
* Imports the ChartModule into your application
|
|
102
|
-
* [root module](
|
|
102
|
+
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
103
103
|
* that will use the Chart component.
|
|
104
|
-
|
|
105
|
-
*
|
|
106
|
-
* ```ts-no-run
|
|
104
|
+
* @example
|
|
105
|
+
* ```ts
|
|
107
106
|
* import { NgModule } from '@angular/core';
|
|
108
107
|
* import { BrowserModule } from '@angular/platform-browser';
|
|
109
108
|
* import { ChartModule } from '@progress/kendo-angular-charts';
|
|
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* that will use the Charts components.
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
|
-
* ```ts
|
|
18
|
+
* ```ts
|
|
19
19
|
* import { NgModule } from '@angular/core';
|
|
20
20
|
* import { BrowserModule } from '@angular/platform-browser';
|
|
21
21
|
* import { ChartsModule } from '@progress/kendo-angular-charts';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { BaseEvent } from './base-event';
|
|
6
6
|
/**
|
|
7
|
-
* Arguments for the `dragEnd` event.
|
|
7
|
+
* Arguments for the `dragEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
8
8
|
*/
|
|
9
9
|
export class DragEndEvent extends BaseEvent {
|
|
10
10
|
/**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { PreventableEvent } from './preventable-event';
|
|
6
6
|
/**
|
|
7
|
-
* Arguments for the `drag` event.
|
|
7
|
+
* Arguments for the `drag` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
8
8
|
*/
|
|
9
9
|
export class DragEvent extends PreventableEvent {
|
|
10
10
|
/**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { PreventableEvent } from './preventable-event';
|
|
6
6
|
/**
|
|
7
|
-
* Arguments for the `dragStart` event.
|
|
7
|
+
* Arguments for the `dragStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
8
8
|
*/
|
|
9
9
|
export class DragStartEvent extends PreventableEvent {
|
|
10
10
|
/**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { BaseEvent } from './base-event';
|
|
6
6
|
/**
|
|
7
|
-
* Arguments for the `zoomEnd` event.
|
|
7
|
+
* Arguments for the `zoomEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
8
8
|
*/
|
|
9
9
|
export class ZoomEndEvent extends BaseEvent {
|
|
10
10
|
/**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { PreventableEvent } from './preventable-event';
|
|
6
6
|
/**
|
|
7
|
-
* Arguments for the `zoom` event.
|
|
7
|
+
* Arguments for the `zoom` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
8
8
|
*/
|
|
9
9
|
export class ZoomEvent extends PreventableEvent {
|
|
10
10
|
/**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { PreventableEvent } from './preventable-event';
|
|
6
6
|
/**
|
|
7
|
-
* Arguments for the `zoomStart` event.
|
|
7
|
+
* Arguments for the `zoomStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
8
8
|
*/
|
|
9
9
|
export class ZoomStartEvent extends PreventableEvent {
|
|
10
10
|
/**
|
|
@@ -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:
|
|
13
|
-
version: '12.0.1
|
|
12
|
+
publishDate: 1683189352,
|
|
13
|
+
version: '12.0.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -6,7 +6,7 @@ import { ChartComponent } from '../chart.component';
|
|
|
6
6
|
import { BaseEvent } from './base-event';
|
|
7
7
|
import { AxisRange } from '../api-types/axis-range.interface';
|
|
8
8
|
/**
|
|
9
|
-
* Arguments for the `dragEnd` event.
|
|
9
|
+
* Arguments for the `dragEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
10
10
|
*/
|
|
11
11
|
export declare class DragEndEvent extends BaseEvent {
|
|
12
12
|
/**
|
package/events/drag-event.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { ChartComponent } from '../chart.component';
|
|
|
6
6
|
import { PreventableEvent } from './preventable-event';
|
|
7
7
|
import { AxisRange } from '../api-types/axis-range.interface';
|
|
8
8
|
/**
|
|
9
|
-
* Arguments for the `drag` event.
|
|
9
|
+
* Arguments for the `drag` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
10
10
|
*/
|
|
11
11
|
export declare class DragEvent extends PreventableEvent {
|
|
12
12
|
/**
|
|
@@ -6,7 +6,7 @@ import { ChartComponent } from '../chart.component';
|
|
|
6
6
|
import { PreventableEvent } from './preventable-event';
|
|
7
7
|
import { AxisRange } from '../api-types/axis-range.interface';
|
|
8
8
|
/**
|
|
9
|
-
* Arguments for the `dragStart` event.
|
|
9
|
+
* Arguments for the `dragStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
10
10
|
*/
|
|
11
11
|
export declare class DragStartEvent extends PreventableEvent {
|
|
12
12
|
/**
|
|
@@ -6,7 +6,7 @@ import { ChartComponent } from '../chart.component';
|
|
|
6
6
|
import { BaseEvent } from './base-event';
|
|
7
7
|
import { AxisRange } from '../api-types/axis-range.interface';
|
|
8
8
|
/**
|
|
9
|
-
* Arguments for the `zoomEnd` event.
|
|
9
|
+
* Arguments for the `zoomEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
10
10
|
*/
|
|
11
11
|
export declare class ZoomEndEvent extends BaseEvent {
|
|
12
12
|
/**
|
package/events/zoom-event.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { ChartComponent } from '../chart.component';
|
|
|
6
6
|
import { PreventableEvent } from './preventable-event';
|
|
7
7
|
import { AxisRange } from '../api-types/axis-range.interface';
|
|
8
8
|
/**
|
|
9
|
-
* Arguments for the `zoom` event.
|
|
9
|
+
* Arguments for the `zoom` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
10
10
|
*/
|
|
11
11
|
export declare class ZoomEvent extends PreventableEvent {
|
|
12
12
|
/**
|
|
@@ -6,7 +6,7 @@ import { ChartComponent } from '../chart.component';
|
|
|
6
6
|
import { PreventableEvent } from './preventable-event';
|
|
7
7
|
import { AxisRange } from '../api-types/axis-range.interface';
|
|
8
8
|
/**
|
|
9
|
-
* Arguments for the `zoomStart` event.
|
|
9
|
+
* Arguments for the `zoomStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
10
10
|
*/
|
|
11
11
|
export declare class ZoomStartEvent extends PreventableEvent {
|
|
12
12
|
/**
|
|
@@ -1431,7 +1431,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1431
1431
|
}] });
|
|
1432
1432
|
|
|
1433
1433
|
/**
|
|
1434
|
-
* Arguments for the `drag` event.
|
|
1434
|
+
* Arguments for the `drag` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
1435
1435
|
*/
|
|
1436
1436
|
class DragEvent extends PreventableEvent {
|
|
1437
1437
|
/**
|
|
@@ -1445,7 +1445,7 @@ class DragEvent extends PreventableEvent {
|
|
|
1445
1445
|
}
|
|
1446
1446
|
|
|
1447
1447
|
/**
|
|
1448
|
-
* Arguments for the `dragEnd` event.
|
|
1448
|
+
* Arguments for the `dragEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
1449
1449
|
*/
|
|
1450
1450
|
class DragEndEvent extends BaseEvent {
|
|
1451
1451
|
/**
|
|
@@ -1459,7 +1459,7 @@ class DragEndEvent extends BaseEvent {
|
|
|
1459
1459
|
}
|
|
1460
1460
|
|
|
1461
1461
|
/**
|
|
1462
|
-
* Arguments for the `dragStart` event.
|
|
1462
|
+
* Arguments for the `dragStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
1463
1463
|
*/
|
|
1464
1464
|
class DragStartEvent extends PreventableEvent {
|
|
1465
1465
|
/**
|
|
@@ -1720,7 +1720,7 @@ class SeriesLeaveEvent extends SeriesEvent {
|
|
|
1720
1720
|
}
|
|
1721
1721
|
|
|
1722
1722
|
/**
|
|
1723
|
-
* Arguments for the `zoom` event.
|
|
1723
|
+
* Arguments for the `zoom` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
1724
1724
|
*/
|
|
1725
1725
|
class ZoomEvent extends PreventableEvent {
|
|
1726
1726
|
/**
|
|
@@ -1735,7 +1735,7 @@ class ZoomEvent extends PreventableEvent {
|
|
|
1735
1735
|
}
|
|
1736
1736
|
|
|
1737
1737
|
/**
|
|
1738
|
-
* Arguments for the `zoomEnd` event.
|
|
1738
|
+
* Arguments for the `zoomEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
1739
1739
|
*/
|
|
1740
1740
|
class ZoomEndEvent extends BaseEvent {
|
|
1741
1741
|
/**
|
|
@@ -1749,7 +1749,7 @@ class ZoomEndEvent extends BaseEvent {
|
|
|
1749
1749
|
}
|
|
1750
1750
|
|
|
1751
1751
|
/**
|
|
1752
|
-
* Arguments for the `zoomStart` event.
|
|
1752
|
+
* Arguments for the `zoomStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
1753
1753
|
*/
|
|
1754
1754
|
class ZoomStartEvent extends PreventableEvent {
|
|
1755
1755
|
/**
|
|
@@ -1818,8 +1818,8 @@ const packageMetadata = {
|
|
|
1818
1818
|
name: '@progress/kendo-angular-charts',
|
|
1819
1819
|
productName: 'Kendo UI for Angular',
|
|
1820
1820
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1821
|
-
publishDate:
|
|
1822
|
-
version: '12.0.1
|
|
1821
|
+
publishDate: 1683189352,
|
|
1822
|
+
version: '12.0.1',
|
|
1823
1823
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1824
1824
|
};
|
|
1825
1825
|
|
|
@@ -6769,7 +6769,7 @@ var WeekStartDay;
|
|
|
6769
6769
|
*/
|
|
6770
6770
|
class NavigatorFilterEvent extends BaseEvent {
|
|
6771
6771
|
/**
|
|
6772
|
-
*
|
|
6772
|
+
* @hidden
|
|
6773
6773
|
*/
|
|
6774
6774
|
constructor(e, sender) {
|
|
6775
6775
|
super(sender);
|
|
@@ -7869,11 +7869,10 @@ const SPARKLINE_DIRECTIVES = [
|
|
|
7869
7869
|
* A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart component and directives.
|
|
7870
7870
|
*
|
|
7871
7871
|
* Imports the ChartModule into your application
|
|
7872
|
-
* [root module](
|
|
7872
|
+
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
7873
7873
|
* that will use the Chart component.
|
|
7874
|
-
|
|
7875
|
-
*
|
|
7876
|
-
* ```ts-no-run
|
|
7874
|
+
* @example
|
|
7875
|
+
* ```ts
|
|
7877
7876
|
* import { NgModule } from '@angular/core';
|
|
7878
7877
|
* import { BrowserModule } from '@angular/platform-browser';
|
|
7879
7878
|
* import { ChartModule } from '@progress/kendo-angular-charts';
|
|
@@ -7989,7 +7988,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7989
7988
|
* that will use the Charts components.
|
|
7990
7989
|
*
|
|
7991
7990
|
* @example
|
|
7992
|
-
* ```ts
|
|
7991
|
+
* ```ts
|
|
7993
7992
|
* import { NgModule } from '@angular/core';
|
|
7994
7993
|
* import { BrowserModule } from '@angular/platform-browser';
|
|
7995
7994
|
* import { ChartsModule } from '@progress/kendo-angular-charts';
|
|
@@ -1802,7 +1802,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1802
1802
|
}] });
|
|
1803
1803
|
|
|
1804
1804
|
/**
|
|
1805
|
-
* Arguments for the `drag` event.
|
|
1805
|
+
* Arguments for the `drag` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
1806
1806
|
*/
|
|
1807
1807
|
class DragEvent extends PreventableEvent {
|
|
1808
1808
|
/**
|
|
@@ -1816,7 +1816,7 @@ class DragEvent extends PreventableEvent {
|
|
|
1816
1816
|
}
|
|
1817
1817
|
|
|
1818
1818
|
/**
|
|
1819
|
-
* Arguments for the `dragEnd` event.
|
|
1819
|
+
* Arguments for the `dragEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
1820
1820
|
*/
|
|
1821
1821
|
class DragEndEvent extends BaseEvent {
|
|
1822
1822
|
/**
|
|
@@ -1830,7 +1830,7 @@ class DragEndEvent extends BaseEvent {
|
|
|
1830
1830
|
}
|
|
1831
1831
|
|
|
1832
1832
|
/**
|
|
1833
|
-
* Arguments for the `dragStart` event.
|
|
1833
|
+
* Arguments for the `dragStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
1834
1834
|
*/
|
|
1835
1835
|
class DragStartEvent extends PreventableEvent {
|
|
1836
1836
|
/**
|
|
@@ -2091,7 +2091,7 @@ class SeriesLeaveEvent extends SeriesEvent {
|
|
|
2091
2091
|
}
|
|
2092
2092
|
|
|
2093
2093
|
/**
|
|
2094
|
-
* Arguments for the `zoom` event.
|
|
2094
|
+
* Arguments for the `zoom` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
2095
2095
|
*/
|
|
2096
2096
|
class ZoomEvent extends PreventableEvent {
|
|
2097
2097
|
/**
|
|
@@ -2106,7 +2106,7 @@ class ZoomEvent extends PreventableEvent {
|
|
|
2106
2106
|
}
|
|
2107
2107
|
|
|
2108
2108
|
/**
|
|
2109
|
-
* Arguments for the `zoomEnd` event.
|
|
2109
|
+
* Arguments for the `zoomEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
2110
2110
|
*/
|
|
2111
2111
|
class ZoomEndEvent extends BaseEvent {
|
|
2112
2112
|
/**
|
|
@@ -2120,7 +2120,7 @@ class ZoomEndEvent extends BaseEvent {
|
|
|
2120
2120
|
}
|
|
2121
2121
|
|
|
2122
2122
|
/**
|
|
2123
|
-
* Arguments for the `zoomStart` event.
|
|
2123
|
+
* Arguments for the `zoomStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).
|
|
2124
2124
|
*/
|
|
2125
2125
|
class ZoomStartEvent extends PreventableEvent {
|
|
2126
2126
|
/**
|
|
@@ -2189,8 +2189,8 @@ const packageMetadata = {
|
|
|
2189
2189
|
name: '@progress/kendo-angular-charts',
|
|
2190
2190
|
productName: 'Kendo UI for Angular',
|
|
2191
2191
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
2192
|
-
publishDate:
|
|
2193
|
-
version: '12.0.1
|
|
2192
|
+
publishDate: 1683189352,
|
|
2193
|
+
version: '12.0.1',
|
|
2194
2194
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
2195
2195
|
};
|
|
2196
2196
|
|
|
@@ -6759,7 +6759,7 @@ const CHART_DIRECTIVES = [
|
|
|
6759
6759
|
*/
|
|
6760
6760
|
class NavigatorFilterEvent extends BaseEvent {
|
|
6761
6761
|
/**
|
|
6762
|
-
*
|
|
6762
|
+
* @hidden
|
|
6763
6763
|
*/
|
|
6764
6764
|
constructor(e, sender) {
|
|
6765
6765
|
super(sender);
|
|
@@ -7855,11 +7855,10 @@ const SPARKLINE_DIRECTIVES = [
|
|
|
7855
7855
|
* A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart component and directives.
|
|
7856
7856
|
*
|
|
7857
7857
|
* Imports the ChartModule into your application
|
|
7858
|
-
* [root module](
|
|
7858
|
+
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
7859
7859
|
* that will use the Chart component.
|
|
7860
|
-
|
|
7861
|
-
*
|
|
7862
|
-
* ```ts-no-run
|
|
7860
|
+
* @example
|
|
7861
|
+
* ```ts
|
|
7863
7862
|
* import { NgModule } from '@angular/core';
|
|
7864
7863
|
* import { BrowserModule } from '@angular/platform-browser';
|
|
7865
7864
|
* import { ChartModule } from '@progress/kendo-angular-charts';
|
|
@@ -7975,7 +7974,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7975
7974
|
* that will use the Charts components.
|
|
7976
7975
|
*
|
|
7977
7976
|
* @example
|
|
7978
|
-
* ```ts
|
|
7977
|
+
* ```ts
|
|
7979
7978
|
* import { NgModule } from '@angular/core';
|
|
7980
7979
|
* import { BrowserModule } from '@angular/platform-browser';
|
|
7981
7980
|
* import { ChartsModule } from '@progress/kendo-angular-charts';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-charts",
|
|
3
|
-
"version": "12.0.1
|
|
3
|
+
"version": "12.0.1",
|
|
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 - 16",
|
|
47
47
|
"@progress/kendo-drawing": "^1.17.2",
|
|
48
48
|
"@progress/kendo-licensing": "^1.0.2",
|
|
49
|
-
"@progress/kendo-angular-common": "12.0.1
|
|
50
|
-
"@progress/kendo-angular-intl": "12.0.1
|
|
51
|
-
"@progress/kendo-angular-l10n": "12.0.1
|
|
52
|
-
"@progress/kendo-angular-popup": "12.0.1
|
|
49
|
+
"@progress/kendo-angular-common": "12.0.1",
|
|
50
|
+
"@progress/kendo-angular-intl": "12.0.1",
|
|
51
|
+
"@progress/kendo-angular-l10n": "12.0.1",
|
|
52
|
+
"@progress/kendo-angular-popup": "12.0.1",
|
|
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": "12.0.1
|
|
58
|
+
"@progress/kendo-angular-schematics": "12.0.1",
|
|
59
59
|
"@progress/kendo-charts": "^1.28.0"
|
|
60
60
|
},
|
|
61
61
|
"schematics": "./schematics/collection.json",
|