@progress/kendo-angular-charts 14.4.0-develop.5 → 14.4.0-develop.7
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/series-item/labels.component.d.ts +2 -1
- package/chart/title.component.d.ts +2 -1
- package/esm2020/chart/series-item/labels.component.mjs +3 -1
- package/esm2020/chart/title.component.mjs +3 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-charts.mjs +8 -4
- package/fesm2020/progress-kendo-angular-charts.mjs +8 -4
- package/option-types/series-item/labels.interface.d.ts +4 -0
- package/option-types/title.interface.d.ts +6 -0
- package/package.json +9 -9
|
@@ -19,6 +19,7 @@ export declare class SeriesLabelsComponent extends SettingsComponent implements
|
|
|
19
19
|
border: Border;
|
|
20
20
|
color: string;
|
|
21
21
|
content: (e: SeriesLabelsContentArgs) => string;
|
|
22
|
+
ariaContent: (e: SeriesLabelsContentArgs) => string;
|
|
22
23
|
/**
|
|
23
24
|
* The distance between the labels when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"donut"` or `"pie"`.
|
|
24
25
|
* @default 35
|
|
@@ -60,5 +61,5 @@ export declare class SeriesLabelsComponent extends SettingsComponent implements
|
|
|
60
61
|
to: SeriesLabelsTo;
|
|
61
62
|
constructor(configurationService: ConfigurationService);
|
|
62
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<SeriesLabelsComponent, never>;
|
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesLabelsComponent, "kendo-chart-series-item-labels", never, { "align": "align"; "background": "background"; "border": "border"; "color": "color"; "content": "content"; "distance": "distance"; "font": "font"; "format": "format"; "margin": "margin"; "padding": "padding"; "position": "position"; "rotation": "rotation"; "visible": "visible"; "visual": "visual"; "from": "from"; "to": "to"; }, {}, never, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesLabelsComponent, "kendo-chart-series-item-labels", never, { "align": "align"; "background": "background"; "border": "border"; "color": "color"; "content": "content"; "ariaContent": "ariaContent"; "distance": "distance"; "font": "font"; "format": "format"; "margin": "margin"; "padding": "padding"; "position": "position"; "rotation": "rotation"; "visible": "visible"; "visual": "visual"; "from": "from"; "to": "to"; }, {}, never, never>;
|
|
64
65
|
}
|
|
@@ -57,6 +57,7 @@ export declare class TitleComponent extends SettingsComponent implements Title {
|
|
|
57
57
|
*/
|
|
58
58
|
position: 'top' | 'bottom';
|
|
59
59
|
text: string;
|
|
60
|
+
description: string;
|
|
60
61
|
/**
|
|
61
62
|
* If set to `true`, the Chart displays the title.
|
|
62
63
|
*
|
|
@@ -65,5 +66,5 @@ export declare class TitleComponent extends SettingsComponent implements Title {
|
|
|
65
66
|
visible: boolean;
|
|
66
67
|
constructor(configurationService: ConfigurationService);
|
|
67
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<TitleComponent, never>;
|
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TitleComponent, "kendo-chart-title", never, { "align": "align"; "background": "background"; "border": "border"; "color": "color"; "font": "font"; "margin": "margin"; "padding": "padding"; "position": "position"; "text": "text"; "visible": "visible"; }, {}, never, never>;
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TitleComponent, "kendo-chart-title", never, { "align": "align"; "background": "background"; "border": "border"; "color": "color"; "font": "font"; "margin": "margin"; "padding": "padding"; "position": "position"; "text": "text"; "description": "description"; "visible": "visible"; }, {}, never, never>;
|
|
69
70
|
}
|
|
@@ -19,7 +19,7 @@ export class SeriesLabelsComponent extends SettingsComponent {
|
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
SeriesLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesLabelsComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
22
|
-
SeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesLabelsComponent, selector: "kendo-chart-series-item-labels", inputs: { align: "align", background: "background", border: "border", color: "color", content: "content", distance: "distance", font: "font", format: "format", margin: "margin", padding: "padding", position: "position", rotation: "rotation", visible: "visible", visual: "visual", from: "from", to: "to" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
22
|
+
SeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesLabelsComponent, selector: "kendo-chart-series-item-labels", inputs: { align: "align", background: "background", border: "border", color: "color", content: "content", ariaContent: "ariaContent", distance: "distance", font: "font", format: "format", margin: "margin", padding: "padding", position: "position", rotation: "rotation", visible: "visible", visual: "visual", from: "from", to: "to" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
23
23
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesLabelsComponent, decorators: [{
|
|
24
24
|
type: Component,
|
|
25
25
|
args: [{
|
|
@@ -37,6 +37,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
37
37
|
type: Input
|
|
38
38
|
}], content: [{
|
|
39
39
|
type: Input
|
|
40
|
+
}], ariaContent: [{
|
|
41
|
+
type: Input
|
|
40
42
|
}], distance: [{
|
|
41
43
|
type: Input
|
|
42
44
|
}], font: [{
|
|
@@ -26,7 +26,7 @@ export class TitleComponent extends SettingsComponent {
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
TitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TitleComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
29
|
-
TitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TitleComponent, selector: "kendo-chart-title", inputs: { align: "align", background: "background", border: "border", color: "color", font: "font", margin: "margin", padding: "padding", position: "position", text: "text", visible: "visible" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
29
|
+
TitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TitleComponent, selector: "kendo-chart-title", inputs: { align: "align", background: "background", border: "border", color: "color", font: "font", margin: "margin", padding: "padding", position: "position", text: "text", description: "description", visible: "visible" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
30
30
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TitleComponent, decorators: [{
|
|
31
31
|
type: Component,
|
|
32
32
|
args: [{
|
|
@@ -52,6 +52,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
52
52
|
type: Input
|
|
53
53
|
}], text: [{
|
|
54
54
|
type: Input
|
|
55
|
+
}], description: [{
|
|
56
|
+
type: Input
|
|
55
57
|
}], visible: [{
|
|
56
58
|
type: Input
|
|
57
59
|
}] } });
|
|
@@ -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: '14.4.0-develop.
|
|
12
|
+
publishDate: 1705080705,
|
|
13
|
+
version: '14.4.0-develop.7',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -1871,8 +1871,8 @@ const packageMetadata = {
|
|
|
1871
1871
|
name: '@progress/kendo-angular-charts',
|
|
1872
1872
|
productName: 'Kendo UI for Angular',
|
|
1873
1873
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1874
|
-
publishDate:
|
|
1875
|
-
version: '14.4.0-develop.
|
|
1874
|
+
publishDate: 1705080705,
|
|
1875
|
+
version: '14.4.0-develop.7',
|
|
1876
1876
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1877
1877
|
};
|
|
1878
1878
|
|
|
@@ -4699,7 +4699,7 @@ class SeriesLabelsComponent extends SettingsComponent {
|
|
|
4699
4699
|
}
|
|
4700
4700
|
}
|
|
4701
4701
|
SeriesLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4702
|
-
SeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesLabelsComponent, selector: "kendo-chart-series-item-labels", inputs: { align: "align", background: "background", border: "border", color: "color", content: "content", distance: "distance", font: "font", format: "format", margin: "margin", padding: "padding", position: "position", rotation: "rotation", visible: "visible", visual: "visual", from: "from", to: "to" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4702
|
+
SeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesLabelsComponent, selector: "kendo-chart-series-item-labels", inputs: { align: "align", background: "background", border: "border", color: "color", content: "content", ariaContent: "ariaContent", distance: "distance", font: "font", format: "format", margin: "margin", padding: "padding", position: "position", rotation: "rotation", visible: "visible", visual: "visual", from: "from", to: "to" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4703
4703
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesLabelsComponent, decorators: [{
|
|
4704
4704
|
type: Component,
|
|
4705
4705
|
args: [{
|
|
@@ -4717,6 +4717,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4717
4717
|
type: Input
|
|
4718
4718
|
}], content: [{
|
|
4719
4719
|
type: Input
|
|
4720
|
+
}], ariaContent: [{
|
|
4721
|
+
type: Input
|
|
4720
4722
|
}], distance: [{
|
|
4721
4723
|
type: Input
|
|
4722
4724
|
}], font: [{
|
|
@@ -5133,7 +5135,7 @@ class TitleComponent extends SettingsComponent {
|
|
|
5133
5135
|
}
|
|
5134
5136
|
}
|
|
5135
5137
|
TitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5136
|
-
TitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TitleComponent, selector: "kendo-chart-title", inputs: { align: "align", background: "background", border: "border", color: "color", font: "font", margin: "margin", padding: "padding", position: "position", text: "text", visible: "visible" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5138
|
+
TitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TitleComponent, selector: "kendo-chart-title", inputs: { align: "align", background: "background", border: "border", color: "color", font: "font", margin: "margin", padding: "padding", position: "position", text: "text", description: "description", visible: "visible" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5137
5139
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TitleComponent, decorators: [{
|
|
5138
5140
|
type: Component,
|
|
5139
5141
|
args: [{
|
|
@@ -5159,6 +5161,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5159
5161
|
type: Input
|
|
5160
5162
|
}], text: [{
|
|
5161
5163
|
type: Input
|
|
5164
|
+
}], description: [{
|
|
5165
|
+
type: Input
|
|
5162
5166
|
}], visible: [{
|
|
5163
5167
|
type: Input
|
|
5164
5168
|
}] } });
|
|
@@ -2245,8 +2245,8 @@ const packageMetadata = {
|
|
|
2245
2245
|
name: '@progress/kendo-angular-charts',
|
|
2246
2246
|
productName: 'Kendo UI for Angular',
|
|
2247
2247
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
2248
|
-
publishDate:
|
|
2249
|
-
version: '14.4.0-develop.
|
|
2248
|
+
publishDate: 1705080705,
|
|
2249
|
+
version: '14.4.0-develop.7',
|
|
2250
2250
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
2251
2251
|
};
|
|
2252
2252
|
|
|
@@ -4724,7 +4724,7 @@ class SeriesLabelsComponent extends SettingsComponent {
|
|
|
4724
4724
|
}
|
|
4725
4725
|
}
|
|
4726
4726
|
SeriesLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4727
|
-
SeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesLabelsComponent, selector: "kendo-chart-series-item-labels", inputs: { align: "align", background: "background", border: "border", color: "color", content: "content", distance: "distance", font: "font", format: "format", margin: "margin", padding: "padding", position: "position", rotation: "rotation", visible: "visible", visual: "visual", from: "from", to: "to" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4727
|
+
SeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesLabelsComponent, selector: "kendo-chart-series-item-labels", inputs: { align: "align", background: "background", border: "border", color: "color", content: "content", ariaContent: "ariaContent", distance: "distance", font: "font", format: "format", margin: "margin", padding: "padding", position: "position", rotation: "rotation", visible: "visible", visual: "visual", from: "from", to: "to" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4728
4728
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesLabelsComponent, decorators: [{
|
|
4729
4729
|
type: Component,
|
|
4730
4730
|
args: [{
|
|
@@ -4742,6 +4742,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4742
4742
|
type: Input
|
|
4743
4743
|
}], content: [{
|
|
4744
4744
|
type: Input
|
|
4745
|
+
}], ariaContent: [{
|
|
4746
|
+
type: Input
|
|
4745
4747
|
}], distance: [{
|
|
4746
4748
|
type: Input
|
|
4747
4749
|
}], font: [{
|
|
@@ -5158,7 +5160,7 @@ class TitleComponent extends SettingsComponent {
|
|
|
5158
5160
|
}
|
|
5159
5161
|
}
|
|
5160
5162
|
TitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5161
|
-
TitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TitleComponent, selector: "kendo-chart-title", inputs: { align: "align", background: "background", border: "border", color: "color", font: "font", margin: "margin", padding: "padding", position: "position", text: "text", visible: "visible" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5163
|
+
TitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TitleComponent, selector: "kendo-chart-title", inputs: { align: "align", background: "background", border: "border", color: "color", font: "font", margin: "margin", padding: "padding", position: "position", text: "text", description: "description", visible: "visible" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5162
5164
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TitleComponent, decorators: [{
|
|
5163
5165
|
type: Component,
|
|
5164
5166
|
args: [{
|
|
@@ -5184,6 +5186,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5184
5186
|
type: Input
|
|
5185
5187
|
}], text: [{
|
|
5186
5188
|
type: Input
|
|
5189
|
+
}], description: [{
|
|
5190
|
+
type: Input
|
|
5187
5191
|
}], visible: [{
|
|
5188
5192
|
type: Input
|
|
5189
5193
|
}] } });
|
|
@@ -33,6 +33,10 @@ export interface SeriesLabels {
|
|
|
33
33
|
* You can split the text into multiple lines by using line feed characters (`"\n"`).
|
|
34
34
|
*/
|
|
35
35
|
content?: (e: SeriesLabelsContentArgs) => string;
|
|
36
|
+
/**
|
|
37
|
+
* The function which returns the content for the ARIA label for the series labels.
|
|
38
|
+
*/
|
|
39
|
+
ariaContent?: (e: SeriesLabelsContentArgs) => string;
|
|
36
40
|
/**
|
|
37
41
|
* The distance between the labels when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"donut"` or `"pie"`.
|
|
38
42
|
*/
|
|
@@ -47,6 +47,12 @@ export interface Title {
|
|
|
47
47
|
* You can split the text into multiple lines by using the line feed characters ("\n").
|
|
48
48
|
*/
|
|
49
49
|
text?: string;
|
|
50
|
+
/**
|
|
51
|
+
* The accessible description of the Chart.
|
|
52
|
+
*
|
|
53
|
+
* The description is announced by screen readers when the Chart is focused.
|
|
54
|
+
*/
|
|
55
|
+
description?: string;
|
|
50
56
|
/**
|
|
51
57
|
* If set to `true`, the Chart displays the title. By default, the title is displayed.
|
|
52
58
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-charts",
|
|
3
|
-
"version": "14.4.0-develop.
|
|
3
|
+
"version": "14.4.0-develop.7",
|
|
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",
|
|
@@ -45,20 +45,20 @@
|
|
|
45
45
|
"@angular/common": "13 - 17",
|
|
46
46
|
"@angular/core": "13 - 17",
|
|
47
47
|
"@angular/platform-browser": "13 - 17",
|
|
48
|
-
"@progress/kendo-drawing": "^1.
|
|
48
|
+
"@progress/kendo-drawing": "^1.19.0",
|
|
49
49
|
"@progress/kendo-licensing": "^1.0.2",
|
|
50
|
-
"@progress/kendo-angular-common": "14.4.0-develop.
|
|
51
|
-
"@progress/kendo-angular-intl": "14.4.0-develop.
|
|
52
|
-
"@progress/kendo-angular-l10n": "14.4.0-develop.
|
|
53
|
-
"@progress/kendo-angular-popup": "14.4.0-develop.
|
|
54
|
-
"@progress/kendo-angular-navigation": "14.4.0-develop.
|
|
50
|
+
"@progress/kendo-angular-common": "14.4.0-develop.7",
|
|
51
|
+
"@progress/kendo-angular-intl": "14.4.0-develop.7",
|
|
52
|
+
"@progress/kendo-angular-l10n": "14.4.0-develop.7",
|
|
53
|
+
"@progress/kendo-angular-popup": "14.4.0-develop.7",
|
|
54
|
+
"@progress/kendo-angular-navigation": "14.4.0-develop.7",
|
|
55
55
|
"hammerjs": "^2.0.0",
|
|
56
56
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"tslib": "^2.3.1",
|
|
60
|
-
"@progress/kendo-angular-schematics": "14.4.0-develop.
|
|
61
|
-
"@progress/kendo-charts": "
|
|
60
|
+
"@progress/kendo-angular-schematics": "14.4.0-develop.7",
|
|
61
|
+
"@progress/kendo-charts": "2.0.0",
|
|
62
62
|
"@progress/kendo-svg-icons": "^2.0.0"
|
|
63
63
|
},
|
|
64
64
|
"schematics": "./schematics/collection.json",
|