@progress/kendo-angular-charts 23.0.1 → 23.1.0-develop.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/series-item/labels.component.d.ts +3 -0
- package/fesm2022/progress-kendo-angular-charts.mjs +7 -1
- package/option-types/series-item/labels.interface.d.ts +3 -0
- package/option-types/title.interface.d.ts +3 -0
- package/package-metadata.mjs +2 -2
- package/package.json +9 -9
- package/sankey.component.d.ts +3 -0
|
@@ -51,6 +51,9 @@ export declare class SeriesLabelsComponent extends SettingsComponent implements
|
|
|
51
51
|
content: (e: SeriesLabelsContentArgs) => string;
|
|
52
52
|
/**
|
|
53
53
|
* Specifies a function that returns the ARIA content of the labels.
|
|
54
|
+
*
|
|
55
|
+
* @remarks
|
|
56
|
+
* This property is related to accessibility.
|
|
54
57
|
*/
|
|
55
58
|
ariaContent: (e: SeriesLabelsContentArgs) => string;
|
|
56
59
|
/**
|
|
@@ -2916,7 +2916,7 @@ const packageMetadata = {
|
|
|
2916
2916
|
productCode: 'KENDOUIANGULAR',
|
|
2917
2917
|
productCodes: ['KENDOUIANGULAR'],
|
|
2918
2918
|
publishDate: 0,
|
|
2919
|
-
version: '23.0.1',
|
|
2919
|
+
version: '23.1.0-develop.1',
|
|
2920
2920
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
2921
2921
|
};
|
|
2922
2922
|
|
|
@@ -8219,6 +8219,9 @@ class SeriesLabelsComponent extends SettingsComponent {
|
|
|
8219
8219
|
content;
|
|
8220
8220
|
/**
|
|
8221
8221
|
* Specifies a function that returns the ARIA content of the labels.
|
|
8222
|
+
*
|
|
8223
|
+
* @remarks
|
|
8224
|
+
* This property is related to accessibility.
|
|
8222
8225
|
*/
|
|
8223
8226
|
ariaContent;
|
|
8224
8227
|
/**
|
|
@@ -13084,6 +13087,9 @@ class SankeyComponent {
|
|
|
13084
13087
|
* When set to `false`, the keyboard navigation will be disabled.
|
|
13085
13088
|
*
|
|
13086
13089
|
* @default true
|
|
13090
|
+
*
|
|
13091
|
+
* @remarks
|
|
13092
|
+
* This property is related to accessibility.
|
|
13087
13093
|
*/
|
|
13088
13094
|
navigable = true;
|
|
13089
13095
|
/**
|
|
@@ -35,6 +35,9 @@ export interface SeriesLabels {
|
|
|
35
35
|
content?: (e: SeriesLabelsContentArgs) => string;
|
|
36
36
|
/**
|
|
37
37
|
* Specifies a function which returns the content for the ARIA label for the series labels.
|
|
38
|
+
*
|
|
39
|
+
* @remarks
|
|
40
|
+
* This option is related to accessibility.
|
|
38
41
|
*/
|
|
39
42
|
ariaContent?: (e: SeriesLabelsContentArgs) => string;
|
|
40
43
|
/**
|
|
@@ -51,6 +51,9 @@ export interface Title {
|
|
|
51
51
|
* Specifies the accessible description of the Chart.
|
|
52
52
|
*
|
|
53
53
|
* Screen readers announce the description when the Chart is focused.
|
|
54
|
+
*
|
|
55
|
+
* @remarks
|
|
56
|
+
* This option is related to accessibility.
|
|
54
57
|
*/
|
|
55
58
|
description?: string;
|
|
56
59
|
/**
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.0.1",
|
|
10
|
+
"publishDate": 1771342373,
|
|
11
|
+
"version": "23.1.0-develop.1",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-charts",
|
|
3
|
-
"version": "23.0.1",
|
|
3
|
+
"version": "23.1.0-develop.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",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"package": {
|
|
43
43
|
"productName": "Kendo UI for Angular",
|
|
44
44
|
"productCode": "KENDOUIANGULAR",
|
|
45
|
-
"publishDate":
|
|
45
|
+
"publishDate": 1771342373,
|
|
46
46
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
@@ -53,17 +53,17 @@
|
|
|
53
53
|
"@angular/platform-browser": "19 - 21",
|
|
54
54
|
"@progress/kendo-drawing": "^1.24.0",
|
|
55
55
|
"@progress/kendo-licensing": "^1.10.0",
|
|
56
|
-
"@progress/kendo-angular-common": "23.0.1",
|
|
57
|
-
"@progress/kendo-angular-intl": "23.0.1",
|
|
58
|
-
"@progress/kendo-angular-icons": "23.0.1",
|
|
59
|
-
"@progress/kendo-angular-l10n": "23.0.1",
|
|
60
|
-
"@progress/kendo-angular-popup": "23.0.1",
|
|
61
|
-
"@progress/kendo-angular-navigation": "23.0.1",
|
|
56
|
+
"@progress/kendo-angular-common": "23.1.0-develop.1",
|
|
57
|
+
"@progress/kendo-angular-intl": "23.1.0-develop.1",
|
|
58
|
+
"@progress/kendo-angular-icons": "23.1.0-develop.1",
|
|
59
|
+
"@progress/kendo-angular-l10n": "23.1.0-develop.1",
|
|
60
|
+
"@progress/kendo-angular-popup": "23.1.0-develop.1",
|
|
61
|
+
"@progress/kendo-angular-navigation": "23.1.0-develop.1",
|
|
62
62
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"tslib": "^2.3.1",
|
|
66
|
-
"@progress/kendo-angular-schematics": "23.0.1",
|
|
66
|
+
"@progress/kendo-angular-schematics": "23.1.0-develop.1",
|
|
67
67
|
"@progress/kendo-charts": "2.11.0",
|
|
68
68
|
"@progress/kendo-svg-icons": "^4.0.0"
|
|
69
69
|
},
|
package/sankey.component.d.ts
CHANGED
|
@@ -114,6 +114,9 @@ export declare class SankeyComponent implements AfterViewInit, OnChanges, OnDest
|
|
|
114
114
|
* When set to `false`, the keyboard navigation will be disabled.
|
|
115
115
|
*
|
|
116
116
|
* @default true
|
|
117
|
+
*
|
|
118
|
+
* @remarks
|
|
119
|
+
* This property is related to accessibility.
|
|
117
120
|
*/
|
|
118
121
|
navigable?: boolean;
|
|
119
122
|
/**
|