@progress/kendo-react-charts 5.20.0-dev.202309271314 → 5.20.0-dev.202309291254
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/dist/cdn/js/kendo-react-charts.js +1 -1
- package/dist/es/components/Legend.js +1 -4
- package/dist/es/components/Navigator.js +1 -5
- package/dist/es/components/Tooltip.js +1 -4
- package/dist/es/components/axis-defaults/Crosshair.js +1 -4
- package/dist/es/components/axis-defaults/CrosshairTooltip.js +1 -4
- package/dist/es/components/category-axis-item/Crosshair.js +1 -4
- package/dist/es/components/category-axis-item/CrosshairTooltip.js +1 -4
- package/dist/es/components/category-axis-item/Labels.js +1 -4
- package/dist/es/components/category-axis-item/RangeLabels.js +1 -4
- package/dist/es/components/navigator/category-axis/Crosshair.js +1 -4
- package/dist/es/components/navigator/category-axis/CrosshairTooltip.js +1 -4
- package/dist/es/components/navigator/category-axis/Labels.js +1 -4
- package/dist/es/components/navigator/series-item/Labels.js +1 -4
- package/dist/es/components/series-defaults/Labels.js +1 -4
- package/dist/es/components/series-item/Labels.js +1 -4
- package/dist/es/components/value-axis-item/Crosshair.js +1 -4
- package/dist/es/components/value-axis-item/CrosshairTooltip.js +1 -4
- package/dist/es/components/value-axis-item/Labels.js +1 -4
- package/dist/es/components/x-axis-item/Crosshair.js +1 -4
- package/dist/es/components/x-axis-item/CrosshairTooltip.js +1 -4
- package/dist/es/components/x-axis-item/Labels.js +1 -4
- package/dist/es/components/y-axis-item/Crosshair.js +1 -4
- package/dist/es/components/y-axis-item/CrosshairTooltip.js +1 -4
- package/dist/es/components/y-axis-item/Labels.js +1 -4
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/components/Legend.js +1 -4
- package/dist/npm/components/Navigator.js +1 -5
- package/dist/npm/components/Tooltip.js +1 -4
- package/dist/npm/components/axis-defaults/Crosshair.js +1 -4
- package/dist/npm/components/axis-defaults/CrosshairTooltip.js +1 -4
- package/dist/npm/components/category-axis-item/Crosshair.js +1 -4
- package/dist/npm/components/category-axis-item/CrosshairTooltip.js +1 -4
- package/dist/npm/components/category-axis-item/Labels.js +1 -4
- package/dist/npm/components/category-axis-item/RangeLabels.js +1 -4
- package/dist/npm/components/navigator/category-axis/Crosshair.js +1 -4
- package/dist/npm/components/navigator/category-axis/CrosshairTooltip.js +1 -4
- package/dist/npm/components/navigator/category-axis/Labels.js +1 -4
- package/dist/npm/components/navigator/series-item/Labels.js +1 -4
- package/dist/npm/components/series-defaults/Labels.js +1 -4
- package/dist/npm/components/series-item/Labels.js +1 -4
- package/dist/npm/components/value-axis-item/Crosshair.js +1 -4
- package/dist/npm/components/value-axis-item/CrosshairTooltip.js +1 -4
- package/dist/npm/components/value-axis-item/Labels.js +1 -4
- package/dist/npm/components/x-axis-item/Crosshair.js +1 -4
- package/dist/npm/components/x-axis-item/CrosshairTooltip.js +1 -4
- package/dist/npm/components/x-axis-item/Labels.js +1 -4
- package/dist/npm/components/y-axis-item/Crosshair.js +1 -4
- package/dist/npm/components/y-axis-item/CrosshairTooltip.js +1 -4
- package/dist/npm/components/y-axis-item/Labels.js +1 -4
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-react-charts.js +1 -1
- package/package.json +8 -8
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './base/ConfigurationComponent';
|
|
14
14
|
var ChartLegend = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "legend" })));
|
|
16
|
-
};
|
|
17
|
-
ChartLegend.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "legend" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartLegend };
|
|
@@ -12,10 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './base/ConfigurationComponent';
|
|
14
14
|
var ChartNavigator = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "navigator" })));
|
|
16
|
-
};
|
|
17
|
-
ChartNavigator.defaultProps = {
|
|
18
|
-
visible: true,
|
|
19
|
-
position: 'bottom'
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true, position: 'bottom' }, props), { _chartKey: "navigator" })));
|
|
20
16
|
};
|
|
21
17
|
export { ChartNavigator };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './base/ConfigurationComponent';
|
|
14
14
|
var ChartTooltip = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
16
|
-
};
|
|
17
|
-
ChartTooltip.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartTooltip };
|
|
@@ -12,10 +12,7 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartAxisDefaultsCrosshair = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
16
|
-
};
|
|
17
|
-
ChartAxisDefaultsCrosshair.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
16
|
};
|
|
20
17
|
ChartAxisDefaultsCrosshair.displayName = 'ChartAxisDefaultsCrosshair';
|
|
21
18
|
export { ChartAxisDefaultsCrosshair };
|
|
@@ -12,10 +12,7 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartAxisDefaultsCrosshairTooltip = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
16
|
-
};
|
|
17
|
-
ChartAxisDefaultsCrosshairTooltip.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
16
|
};
|
|
20
17
|
ChartAxisDefaultsCrosshairTooltip.displayName = 'ChartAxisDefaultsCrosshairTooltip';
|
|
21
18
|
export { ChartAxisDefaultsCrosshairTooltip };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartCategoryAxisCrosshair = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
16
|
-
};
|
|
17
|
-
ChartCategoryAxisCrosshair.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartCategoryAxisCrosshair };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartCategoryAxisCrosshairTooltip = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
16
|
-
};
|
|
17
|
-
ChartCategoryAxisCrosshairTooltip.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartCategoryAxisCrosshairTooltip };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartCategoryAxisLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
ChartCategoryAxisLabels.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartCategoryAxisLabels };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from '../base/ConfigurationComponent';
|
|
14
14
|
var ChartCategoryAxisRangeLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "rangeLabels" })));
|
|
16
|
-
};
|
|
17
|
-
ChartCategoryAxisRangeLabels.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "rangeLabels" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartCategoryAxisRangeLabels };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
14
|
var ChartNavigatorCategoryAxisCrosshair = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
16
|
-
};
|
|
17
|
-
ChartNavigatorCategoryAxisCrosshair.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartNavigatorCategoryAxisCrosshair };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
14
|
var ChartNavigatorCategoryAxisCrosshairTooltip = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
16
|
-
};
|
|
17
|
-
ChartNavigatorCategoryAxisCrosshairTooltip.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartNavigatorCategoryAxisCrosshairTooltip };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
14
|
var ChartNavigatorCategoryAxisLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
ChartNavigatorCategoryAxisLabels.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartNavigatorCategoryAxisLabels };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
14
|
var ChartNavigatorSeriesLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
ChartNavigatorSeriesLabels.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartNavigatorSeriesLabels };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartSeriesDefaultsLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
ChartSeriesDefaultsLabels.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartSeriesDefaultsLabels };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartSeriesLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
ChartSeriesLabels.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartSeriesLabels };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartValueAxisCrosshair = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
16
|
-
};
|
|
17
|
-
ChartValueAxisCrosshair.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartValueAxisCrosshair };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartValueAxisCrosshairTooltip = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
16
|
-
};
|
|
17
|
-
ChartValueAxisCrosshairTooltip.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartValueAxisCrosshairTooltip };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartValueAxisLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
ChartValueAxisLabels.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartValueAxisLabels };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartXAxisCrosshair = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
16
|
-
};
|
|
17
|
-
ChartXAxisCrosshair.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartXAxisCrosshair };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartXAxisCrosshairTooltip = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
16
|
-
};
|
|
17
|
-
ChartXAxisCrosshairTooltip.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartXAxisCrosshairTooltip };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartXAxisLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
ChartXAxisLabels.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartXAxisLabels };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartYAxisCrosshair = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
16
|
-
};
|
|
17
|
-
ChartYAxisCrosshair.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartYAxisCrosshair };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartYAxisCrosshairTooltip = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
16
|
-
};
|
|
17
|
-
ChartYAxisCrosshairTooltip.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartYAxisCrosshairTooltip };
|
|
@@ -12,9 +12,6 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
import * as React from 'react';
|
|
13
13
|
import { ConfigurationComponent } from './../base/ConfigurationComponent';
|
|
14
14
|
var ChartYAxisLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
ChartYAxisLabels.defaultProps = {
|
|
18
|
-
visible: true
|
|
15
|
+
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
16
|
};
|
|
20
17
|
export { ChartYAxisLabels };
|
|
@@ -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:
|
|
8
|
+
publishDate: 1695989605,
|
|
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
|
};
|
|
@@ -15,9 +15,6 @@ exports.ChartLegend = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./base/ConfigurationComponent");
|
|
17
17
|
var ChartLegend = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "legend" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "legend" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartLegend = ChartLegend;
|
|
21
|
-
ChartLegend.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,10 +15,6 @@ exports.ChartNavigator = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./base/ConfigurationComponent");
|
|
17
17
|
var ChartNavigator = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "navigator" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true, position: 'bottom' }, props), { _chartKey: "navigator" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartNavigator = ChartNavigator;
|
|
21
|
-
ChartNavigator.defaultProps = {
|
|
22
|
-
visible: true,
|
|
23
|
-
position: 'bottom'
|
|
24
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartTooltip = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./base/ConfigurationComponent");
|
|
17
17
|
var ChartTooltip = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartTooltip = ChartTooltip;
|
|
21
|
-
ChartTooltip.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,10 +15,7 @@ exports.ChartAxisDefaultsCrosshair = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartAxisDefaultsCrosshair = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartAxisDefaultsCrosshair = ChartAxisDefaultsCrosshair;
|
|
21
|
-
ChartAxisDefaultsCrosshair.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
24
21
|
ChartAxisDefaultsCrosshair.displayName = 'ChartAxisDefaultsCrosshair';
|
|
@@ -15,10 +15,7 @@ exports.ChartAxisDefaultsCrosshairTooltip = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartAxisDefaultsCrosshairTooltip = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartAxisDefaultsCrosshairTooltip = ChartAxisDefaultsCrosshairTooltip;
|
|
21
|
-
ChartAxisDefaultsCrosshairTooltip.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
24
21
|
ChartAxisDefaultsCrosshairTooltip.displayName = 'ChartAxisDefaultsCrosshairTooltip';
|
|
@@ -15,9 +15,6 @@ exports.ChartCategoryAxisCrosshair = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartCategoryAxisCrosshair = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartCategoryAxisCrosshair = ChartCategoryAxisCrosshair;
|
|
21
|
-
ChartCategoryAxisCrosshair.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartCategoryAxisCrosshairTooltip = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartCategoryAxisCrosshairTooltip = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartCategoryAxisCrosshairTooltip = ChartCategoryAxisCrosshairTooltip;
|
|
21
|
-
ChartCategoryAxisCrosshairTooltip.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartCategoryAxisLabels = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartCategoryAxisLabels = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartCategoryAxisLabels = ChartCategoryAxisLabels;
|
|
21
|
-
ChartCategoryAxisLabels.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartCategoryAxisRangeLabels = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("../base/ConfigurationComponent");
|
|
17
17
|
var ChartCategoryAxisRangeLabels = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "rangeLabels" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "rangeLabels" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartCategoryAxisRangeLabels = ChartCategoryAxisRangeLabels;
|
|
21
|
-
ChartCategoryAxisRangeLabels.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartNavigatorCategoryAxisCrosshair = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../../base/ConfigurationComponent");
|
|
17
17
|
var ChartNavigatorCategoryAxisCrosshair = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartNavigatorCategoryAxisCrosshair = ChartNavigatorCategoryAxisCrosshair;
|
|
21
|
-
ChartNavigatorCategoryAxisCrosshair.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartNavigatorCategoryAxisCrosshairTooltip = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../../base/ConfigurationComponent");
|
|
17
17
|
var ChartNavigatorCategoryAxisCrosshairTooltip = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartNavigatorCategoryAxisCrosshairTooltip = ChartNavigatorCategoryAxisCrosshairTooltip;
|
|
21
|
-
ChartNavigatorCategoryAxisCrosshairTooltip.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartNavigatorCategoryAxisLabels = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../../base/ConfigurationComponent");
|
|
17
17
|
var ChartNavigatorCategoryAxisLabels = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartNavigatorCategoryAxisLabels = ChartNavigatorCategoryAxisLabels;
|
|
21
|
-
ChartNavigatorCategoryAxisLabels.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartNavigatorSeriesLabels = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../../base/ConfigurationComponent");
|
|
17
17
|
var ChartNavigatorSeriesLabels = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartNavigatorSeriesLabels = ChartNavigatorSeriesLabels;
|
|
21
|
-
ChartNavigatorSeriesLabels.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartSeriesDefaultsLabels = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartSeriesDefaultsLabels = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartSeriesDefaultsLabels = ChartSeriesDefaultsLabels;
|
|
21
|
-
ChartSeriesDefaultsLabels.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartSeriesLabels = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartSeriesLabels = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartSeriesLabels = ChartSeriesLabels;
|
|
21
|
-
ChartSeriesLabels.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartValueAxisCrosshair = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartValueAxisCrosshair = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartValueAxisCrosshair = ChartValueAxisCrosshair;
|
|
21
|
-
ChartValueAxisCrosshair.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartValueAxisCrosshairTooltip = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartValueAxisCrosshairTooltip = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartValueAxisCrosshairTooltip = ChartValueAxisCrosshairTooltip;
|
|
21
|
-
ChartValueAxisCrosshairTooltip.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartValueAxisLabels = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartValueAxisLabels = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartValueAxisLabels = ChartValueAxisLabels;
|
|
21
|
-
ChartValueAxisLabels.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartXAxisCrosshair = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartXAxisCrosshair = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartXAxisCrosshair = ChartXAxisCrosshair;
|
|
21
|
-
ChartXAxisCrosshair.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartXAxisCrosshairTooltip = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartXAxisCrosshairTooltip = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartXAxisCrosshairTooltip = ChartXAxisCrosshairTooltip;
|
|
21
|
-
ChartXAxisCrosshairTooltip.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartXAxisLabels = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartXAxisLabels = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartXAxisLabels = ChartXAxisLabels;
|
|
21
|
-
ChartXAxisLabels.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartYAxisCrosshair = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartYAxisCrosshair = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "crosshair" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartYAxisCrosshair = ChartYAxisCrosshair;
|
|
21
|
-
ChartYAxisCrosshair.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartYAxisCrosshairTooltip = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartYAxisCrosshairTooltip = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "tooltip" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartYAxisCrosshairTooltip = ChartYAxisCrosshairTooltip;
|
|
21
|
-
ChartYAxisCrosshairTooltip.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -15,9 +15,6 @@ exports.ChartYAxisLabels = void 0;
|
|
|
15
15
|
var React = require("react");
|
|
16
16
|
var ConfigurationComponent_1 = require("./../base/ConfigurationComponent");
|
|
17
17
|
var ChartYAxisLabels = function (props) {
|
|
18
|
-
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, props, { _chartKey: "labels" })));
|
|
18
|
+
return (React.createElement(ConfigurationComponent_1.ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
19
19
|
};
|
|
20
20
|
exports.ChartYAxisLabels = ChartYAxisLabels;
|
|
21
|
-
ChartYAxisLabels.defaultProps = {
|
|
22
|
-
visible: true
|
|
23
|
-
};
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-react-charts',
|
|
9
9
|
productName: 'KendoReact',
|
|
10
10
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1695989605,
|
|
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
|
};
|