@progress/kendo-react-charts 5.5.0-dev.202206271315 → 5.5.0

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.
Files changed (31) hide show
  1. package/dist/cdn/js/kendo-react-charts.js +1 -1
  2. package/dist/es/components/CategoryAxisItem.d.ts +4 -0
  3. package/dist/es/components/Legend.d.ts +4 -0
  4. package/dist/es/components/Navigator.d.ts +4 -0
  5. package/dist/es/components/PaneDefaults.d.ts +4 -0
  6. package/dist/es/components/SeriesItem.d.ts +4 -0
  7. package/dist/es/components/ValueAxisItem.d.ts +4 -0
  8. package/dist/es/components/XAxisItem.d.ts +4 -0
  9. package/dist/es/components/YAxisItem.d.ts +4 -0
  10. package/dist/es/components/category-axis-item/Crosshair.d.ts +4 -0
  11. package/dist/es/components/series-item/Labels.d.ts +4 -0
  12. package/dist/es/components/value-axis-item/Crosshair.d.ts +4 -0
  13. package/dist/es/components/x-axis-item/Crosshair.d.ts +4 -0
  14. package/dist/es/components/y-axis-item/Crosshair.d.ts +4 -0
  15. package/dist/es/package-metadata.js +1 -1
  16. package/dist/npm/components/CategoryAxisItem.d.ts +4 -0
  17. package/dist/npm/components/Legend.d.ts +4 -0
  18. package/dist/npm/components/Navigator.d.ts +4 -0
  19. package/dist/npm/components/PaneDefaults.d.ts +4 -0
  20. package/dist/npm/components/SeriesItem.d.ts +4 -0
  21. package/dist/npm/components/ValueAxisItem.d.ts +4 -0
  22. package/dist/npm/components/XAxisItem.d.ts +4 -0
  23. package/dist/npm/components/YAxisItem.d.ts +4 -0
  24. package/dist/npm/components/category-axis-item/Crosshair.d.ts +4 -0
  25. package/dist/npm/components/series-item/Labels.d.ts +4 -0
  26. package/dist/npm/components/value-axis-item/Crosshair.d.ts +4 -0
  27. package/dist/npm/components/x-axis-item/Crosshair.d.ts +4 -0
  28. package/dist/npm/components/y-axis-item/Crosshair.d.ts +4 -0
  29. package/dist/npm/package-metadata.js +1 -1
  30. package/dist/systemjs/kendo-react-charts.js +1 -1
  31. package/package.json +6 -6
@@ -4,6 +4,10 @@ import { CategoryAxis } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartCategoryAxisItem component ([see example]({% slug axes_chart_charts %}#toc-categorical-chart-axes)).
5
5
  */
6
6
  export interface ChartCategoryAxisItemProps extends CategoryAxis {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartCategoryAxisItem: React.FunctionComponent<ChartCategoryAxisItemProps>;
9
13
  export { ChartCategoryAxisItem };
@@ -4,6 +4,10 @@ import { Legend } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartLegend component ([see example]({% slug legend_chart_charts %})).
5
5
  */
6
6
  export interface ChartLegendProps extends Legend {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartLegend: React.FunctionComponent<ChartLegendProps>;
9
13
  export { ChartLegend };
@@ -4,6 +4,10 @@ import { Navigator } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartNavigator component.
5
5
  */
6
6
  export interface ChartNavigatorProps extends Navigator {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartNavigator: React.FunctionComponent<ChartNavigatorProps>;
9
13
  export { ChartNavigator };
@@ -4,6 +4,10 @@ import { PaneDefaults } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartPaneDefaults component ([see example]({% slug panes_chart_charts %})).
5
5
  */
6
6
  export interface ChartPaneDefaultsProps extends PaneDefaults {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartPaneDefaults: React.FunctionComponent<ChartPaneDefaultsProps>;
9
13
  export { ChartPaneDefaults };
@@ -4,6 +4,10 @@ import { Series } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartSeriesItem component.
5
5
  */
6
6
  export interface ChartSeriesItemProps extends Series {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartSeriesItem: React.FunctionComponent<ChartSeriesItemProps>;
9
13
  export { ChartSeriesItem };
@@ -4,6 +4,10 @@ import { ValueAxis } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartValueAxisItem component ([see example]({% slug axes_chart_charts %}#toc-categorical-chart-axes)).
5
5
  */
6
6
  export interface ChartValueAxisItemProps extends ValueAxis {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartValueAxisItem: React.FunctionComponent<ChartValueAxisItemProps>;
9
13
  export { ChartValueAxisItem };
@@ -4,6 +4,10 @@ import { XAxis } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartXAxisItem component ([see example]({% slug axes_chart_charts %}#toc-scatter-chart-axes)).
5
5
  */
6
6
  export interface ChartXAxisItemProps extends XAxis {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartXAxisItem: React.FunctionComponent<ChartXAxisItemProps>;
9
13
  export { ChartXAxisItem };
@@ -4,6 +4,10 @@ import { YAxis } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartYAxisItem component ([see example]({% slug axes_chart_charts %}#toc-scatter-chart-axes)).
5
5
  */
6
6
  export interface ChartYAxisItemProps extends YAxis {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartYAxisItem: React.FunctionComponent<ChartYAxisItemProps>;
9
13
  export { ChartYAxisItem };
@@ -4,6 +4,10 @@ import { CategoryAxisCrosshair } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartCategoryAxisCrosshair component.
5
5
  */
6
6
  export interface ChartCategoryAxisCrosshairProps extends CategoryAxisCrosshair {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartCategoryAxisCrosshair: React.FunctionComponent<ChartCategoryAxisCrosshairProps>;
9
13
  export { ChartCategoryAxisCrosshair };
@@ -4,6 +4,10 @@ import { SeriesLabels } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartSeriesLabels component ([see example]({% slug labels_chart_charts %}#toc-setting-the-appearance)).
5
5
  */
6
6
  export interface ChartSeriesLabelsProps extends SeriesLabels {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartSeriesLabels: React.FunctionComponent<ChartSeriesLabelsProps>;
9
13
  export { ChartSeriesLabels };
@@ -4,6 +4,10 @@ import { ValueAxisCrosshair } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartValueAxisCrosshair component.
5
5
  */
6
6
  export interface ChartValueAxisCrosshairProps extends ValueAxisCrosshair {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartValueAxisCrosshair: React.FunctionComponent<ChartValueAxisCrosshairProps>;
9
13
  export { ChartValueAxisCrosshair };
@@ -4,6 +4,10 @@ import { XAxisCrosshair } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartXAxisCrosshair component.
5
5
  */
6
6
  export interface ChartXAxisCrosshairProps extends XAxisCrosshair {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartXAxisCrosshair: React.FunctionComponent<ChartXAxisCrosshairProps>;
9
13
  export { ChartXAxisCrosshair };
@@ -4,6 +4,10 @@ import { YAxisCrosshair } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartYAxisCrosshair component.
5
5
  */
6
6
  export interface ChartYAxisCrosshairProps extends YAxisCrosshair {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartYAxisCrosshair: React.FunctionComponent<ChartYAxisCrosshairProps>;
9
13
  export { ChartYAxisCrosshair };
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-react-charts',
6
6
  productName: 'KendoReact',
7
7
  productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
8
- publishDate: 1656334432,
8
+ publishDate: 1656667314,
9
9
  version: '',
10
10
  licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
11
11
  };
@@ -4,6 +4,10 @@ import { CategoryAxis } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartCategoryAxisItem component ([see example]({% slug axes_chart_charts %}#toc-categorical-chart-axes)).
5
5
  */
6
6
  export interface ChartCategoryAxisItemProps extends CategoryAxis {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartCategoryAxisItem: React.FunctionComponent<ChartCategoryAxisItemProps>;
9
13
  export { ChartCategoryAxisItem };
@@ -4,6 +4,10 @@ import { Legend } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartLegend component ([see example]({% slug legend_chart_charts %})).
5
5
  */
6
6
  export interface ChartLegendProps extends Legend {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartLegend: React.FunctionComponent<ChartLegendProps>;
9
13
  export { ChartLegend };
@@ -4,6 +4,10 @@ import { Navigator } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartNavigator component.
5
5
  */
6
6
  export interface ChartNavigatorProps extends Navigator {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartNavigator: React.FunctionComponent<ChartNavigatorProps>;
9
13
  export { ChartNavigator };
@@ -4,6 +4,10 @@ import { PaneDefaults } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartPaneDefaults component ([see example]({% slug panes_chart_charts %})).
5
5
  */
6
6
  export interface ChartPaneDefaultsProps extends PaneDefaults {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartPaneDefaults: React.FunctionComponent<ChartPaneDefaultsProps>;
9
13
  export { ChartPaneDefaults };
@@ -4,6 +4,10 @@ import { Series } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartSeriesItem component.
5
5
  */
6
6
  export interface ChartSeriesItemProps extends Series {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartSeriesItem: React.FunctionComponent<ChartSeriesItemProps>;
9
13
  export { ChartSeriesItem };
@@ -4,6 +4,10 @@ import { ValueAxis } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartValueAxisItem component ([see example]({% slug axes_chart_charts %}#toc-categorical-chart-axes)).
5
5
  */
6
6
  export interface ChartValueAxisItemProps extends ValueAxis {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartValueAxisItem: React.FunctionComponent<ChartValueAxisItemProps>;
9
13
  export { ChartValueAxisItem };
@@ -4,6 +4,10 @@ import { XAxis } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartXAxisItem component ([see example]({% slug axes_chart_charts %}#toc-scatter-chart-axes)).
5
5
  */
6
6
  export interface ChartXAxisItemProps extends XAxis {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartXAxisItem: React.FunctionComponent<ChartXAxisItemProps>;
9
13
  export { ChartXAxisItem };
@@ -4,6 +4,10 @@ import { YAxis } from '../common/property-types';
4
4
  * Represents the props of the KendoReact ChartYAxisItem component ([see example]({% slug axes_chart_charts %}#toc-scatter-chart-axes)).
5
5
  */
6
6
  export interface ChartYAxisItemProps extends YAxis {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartYAxisItem: React.FunctionComponent<ChartYAxisItemProps>;
9
13
  export { ChartYAxisItem };
@@ -4,6 +4,10 @@ import { CategoryAxisCrosshair } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartCategoryAxisCrosshair component.
5
5
  */
6
6
  export interface ChartCategoryAxisCrosshairProps extends CategoryAxisCrosshair {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartCategoryAxisCrosshair: React.FunctionComponent<ChartCategoryAxisCrosshairProps>;
9
13
  export { ChartCategoryAxisCrosshair };
@@ -4,6 +4,10 @@ import { SeriesLabels } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartSeriesLabels component ([see example]({% slug labels_chart_charts %}#toc-setting-the-appearance)).
5
5
  */
6
6
  export interface ChartSeriesLabelsProps extends SeriesLabels {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartSeriesLabels: React.FunctionComponent<ChartSeriesLabelsProps>;
9
13
  export { ChartSeriesLabels };
@@ -4,6 +4,10 @@ import { ValueAxisCrosshair } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartValueAxisCrosshair component.
5
5
  */
6
6
  export interface ChartValueAxisCrosshairProps extends ValueAxisCrosshair {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartValueAxisCrosshair: React.FunctionComponent<ChartValueAxisCrosshairProps>;
9
13
  export { ChartValueAxisCrosshair };
@@ -4,6 +4,10 @@ import { XAxisCrosshair } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartXAxisCrosshair component.
5
5
  */
6
6
  export interface ChartXAxisCrosshairProps extends XAxisCrosshair {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartXAxisCrosshair: React.FunctionComponent<ChartXAxisCrosshairProps>;
9
13
  export { ChartXAxisCrosshair };
@@ -4,6 +4,10 @@ import { YAxisCrosshair } from '../../common/property-types';
4
4
  * Represents the props of the KendoReact ChartYAxisCrosshair component.
5
5
  */
6
6
  export interface ChartYAxisCrosshairProps extends YAxisCrosshair {
7
+ /**
8
+ * @hidden
9
+ */
10
+ children?: React.ReactNode;
7
11
  }
8
12
  declare const ChartYAxisCrosshair: React.FunctionComponent<ChartYAxisCrosshairProps>;
9
13
  export { ChartYAxisCrosshair };
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-react-charts',
9
9
  productName: 'KendoReact',
10
10
  productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
11
- publishDate: 1656334432,
11
+ publishDate: 1656667314,
12
12
  version: '',
13
13
  licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
14
14
  };