@progress/kendo-react-charts 8.1.0-develop.11 → 8.1.0-develop.12

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/index.d.mts CHANGED
@@ -2367,7 +2367,7 @@ export declare const ChartTooltip: React_2.FunctionComponent<ChartTooltipProps>;
2367
2367
  * Represents the props of the KendoReact ChartTooltip component ([see example]({% slug tooltips_chart_charts %})).
2368
2368
  */
2369
2369
  export declare interface ChartTooltipProps extends Tooltip {
2370
- render?: (props: TooltipContext | SharedTooltipContext) => React_2.ReactNode;
2370
+ render?: ((props: TooltipContext) => React_2.ReactNode) | ((props: SharedTooltipContext) => React_2.ReactNode);
2371
2371
  }
2372
2372
 
2373
2373
  export declare const ChartValueAxis: React_2.FunctionComponent<ChartValueAxisProps>;
@@ -5782,7 +5782,9 @@ export declare interface SeriesErrorBars {
5782
5782
  * - An array that holds the low and high difference from the point value.
5783
5783
  * - A function that returns the `errorBars` point value.
5784
5784
  */
5785
- value?: string;
5785
+ value?: string | number | any[] | ((data: {
5786
+ value: number;
5787
+ }) => string | number | any[]);
5786
5788
  /**
5787
5789
  * A function that for creating custom visuals for the error bars.
5788
5790
  *
@@ -7110,6 +7112,10 @@ export declare interface Title {
7110
7112
  * The text of the chart title. You can also set the text directly for a title with default options. You can split the text into multiple lines by using the line feed characters ("\n").
7111
7113
  */
7112
7114
  text?: string;
7115
+ /**
7116
+ * The accessible description of the Chart. The description is announced by screen readers when the Chart is focused.("\n").
7117
+ */
7118
+ description?: string;
7113
7119
  /**
7114
7120
  * If set to `true`, the Chart displays the title. By default, the title is displayed.
7115
7121
  */
package/index.d.ts CHANGED
@@ -2367,7 +2367,7 @@ export declare const ChartTooltip: React_2.FunctionComponent<ChartTooltipProps>;
2367
2367
  * Represents the props of the KendoReact ChartTooltip component ([see example]({% slug tooltips_chart_charts %})).
2368
2368
  */
2369
2369
  export declare interface ChartTooltipProps extends Tooltip {
2370
- render?: (props: TooltipContext | SharedTooltipContext) => React_2.ReactNode;
2370
+ render?: ((props: TooltipContext) => React_2.ReactNode) | ((props: SharedTooltipContext) => React_2.ReactNode);
2371
2371
  }
2372
2372
 
2373
2373
  export declare const ChartValueAxis: React_2.FunctionComponent<ChartValueAxisProps>;
@@ -5782,7 +5782,9 @@ export declare interface SeriesErrorBars {
5782
5782
  * - An array that holds the low and high difference from the point value.
5783
5783
  * - A function that returns the `errorBars` point value.
5784
5784
  */
5785
- value?: string;
5785
+ value?: string | number | any[] | ((data: {
5786
+ value: number;
5787
+ }) => string | number | any[]);
5786
5788
  /**
5787
5789
  * A function that for creating custom visuals for the error bars.
5788
5790
  *
@@ -7110,6 +7112,10 @@ export declare interface Title {
7110
7112
  * The text of the chart title. You can also set the text directly for a title with default options. You can split the text into multiple lines by using the line feed characters ("\n").
7111
7113
  */
7112
7114
  text?: string;
7115
+ /**
7116
+ * The accessible description of the Chart. The description is announced by screen readers when the Chart is focused.("\n").
7117
+ */
7118
+ description?: string;
7113
7119
  /**
7114
7120
  * If set to `true`, the Chart displays the title. By default, the title is displayed.
7115
7121
  */
@@ -10,7 +10,7 @@ const e = {
10
10
  name: "@progress/kendo-react-charts",
11
11
  productName: "KendoReact",
12
12
  productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
13
- publishDate: 1718283443,
13
+ publishDate: 1718355825,
14
14
  version: "",
15
15
  licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
16
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-charts",
3
- "version": "8.1.0-develop.11",
3
+ "version": "8.1.0-develop.12",
4
4
  "description": "React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -24,10 +24,10 @@
24
24
  "peerDependencies": {
25
25
  "@progress/kendo-drawing": "^1.20.1",
26
26
  "@progress/kendo-licensing": "^1.3.4",
27
- "@progress/kendo-react-common": "8.1.0-develop.11",
28
- "@progress/kendo-react-intl": "8.1.0-develop.11",
29
- "@progress/kendo-react-layout": "8.1.0-develop.11",
30
- "@progress/kendo-react-popup": "8.1.0-develop.11",
27
+ "@progress/kendo-react-common": "8.1.0-develop.12",
28
+ "@progress/kendo-react-intl": "8.1.0-develop.12",
29
+ "@progress/kendo-react-layout": "8.1.0-develop.12",
30
+ "@progress/kendo-react-popup": "8.1.0-develop.12",
31
31
  "@progress/kendo-svg-icons": "^3.0.0",
32
32
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0",
33
33
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"