@progress/kendo-react-charts 9.0.0-develop.6 → 9.0.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/index.d.mts +27 -0
- package/index.d.ts +27 -0
- package/package-metadata.mjs +1 -1
- package/package.json +7 -7
package/index.d.mts
CHANGED
|
@@ -9,10 +9,14 @@ import { Align } from '@progress/kendo-react-popup';
|
|
|
9
9
|
import { BaseEvent as BaseEvent_2 } from '@progress/kendo-react-common';
|
|
10
10
|
import { BreadcrumbProps } from '@progress/kendo-react-layout';
|
|
11
11
|
import { createSankeyData as createSankeyData_2 } from '@progress/kendo-charts';
|
|
12
|
+
import { CrosshatchPattern } from '@progress/kendo-charts';
|
|
12
13
|
import { DataModel } from '@progress/kendo-react-layout';
|
|
14
|
+
import { DiagonalStripesPattern } from '@progress/kendo-charts';
|
|
15
|
+
import { DotsPattern } from '@progress/kendo-charts';
|
|
13
16
|
import { drawing } from '@progress/kendo-drawing';
|
|
14
17
|
import { Element as Element_2 } from '@progress/kendo-drawing';
|
|
15
18
|
import { geometry } from '@progress/kendo-drawing';
|
|
19
|
+
import { GridPattern } from '@progress/kendo-charts';
|
|
16
20
|
import { Group } from '@progress/kendo-drawing';
|
|
17
21
|
import { InstanceObserver } from '@progress/kendo-charts';
|
|
18
22
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
@@ -35,7 +39,9 @@ import { SankeyNodeDefaults } from '@progress/kendo-charts';
|
|
|
35
39
|
import { SankeyOptions } from '@progress/kendo-charts';
|
|
36
40
|
import { SankeyTooltip as SankeyTooltip_2 } from '@progress/kendo-charts';
|
|
37
41
|
import { SankeyTooltipEvent } from '@progress/kendo-charts';
|
|
42
|
+
import { SeriesPattern } from '@progress/kendo-charts';
|
|
38
43
|
import { Surface } from '@progress/kendo-drawing';
|
|
44
|
+
import { VerticalStripesPattern } from '@progress/kendo-charts';
|
|
39
45
|
|
|
40
46
|
/**
|
|
41
47
|
* The provided time-interval steps when `baseUnit` is set to either `"fit"` or `"auto"`.
|
|
@@ -2727,6 +2733,8 @@ declare interface CrosshairTooltipState {
|
|
|
2727
2733
|
popupContend?: any;
|
|
2728
2734
|
}
|
|
2729
2735
|
|
|
2736
|
+
export { CrosshatchPattern }
|
|
2737
|
+
|
|
2730
2738
|
/**
|
|
2731
2739
|
* The dash line type.
|
|
2732
2740
|
*
|
|
@@ -2796,6 +2804,8 @@ export declare interface DateFormats {
|
|
|
2796
2804
|
years?: string;
|
|
2797
2805
|
}
|
|
2798
2806
|
|
|
2807
|
+
export { DiagonalStripesPattern }
|
|
2808
|
+
|
|
2799
2809
|
/**
|
|
2800
2810
|
* @hidden
|
|
2801
2811
|
*/
|
|
@@ -2851,6 +2861,8 @@ declare interface DonutCenterStyle {
|
|
|
2851
2861
|
width: number;
|
|
2852
2862
|
}
|
|
2853
2863
|
|
|
2864
|
+
export { DotsPattern }
|
|
2865
|
+
|
|
2854
2866
|
/**
|
|
2855
2867
|
* Configures the drag behavior during the pan and zoom operations.
|
|
2856
2868
|
*/
|
|
@@ -3138,6 +3150,8 @@ export declare interface GridLines {
|
|
|
3138
3150
|
width?: number;
|
|
3139
3151
|
}
|
|
3140
3152
|
|
|
3153
|
+
export { GridPattern }
|
|
3154
|
+
|
|
3141
3155
|
/**
|
|
3142
3156
|
* The appearance settings for the highlight line of the Candlestick and OHLC series.
|
|
3143
3157
|
*/
|
|
@@ -5300,6 +5314,15 @@ export declare interface Series {
|
|
|
5300
5314
|
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
5301
5315
|
*/
|
|
5302
5316
|
trendline?: SeriesTrendline;
|
|
5317
|
+
/**
|
|
5318
|
+
* The configuration options of the series pattern.
|
|
5319
|
+
*/
|
|
5320
|
+
pattern?: SeriesPattern | ((point: any) => SeriesPattern);
|
|
5321
|
+
/**
|
|
5322
|
+
* The data item field which contains the series pattern.
|
|
5323
|
+
* The `patternField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"pie"`, `"donut"`, `"funnel"`, `"heatmap"`, or `"pyramid"`.
|
|
5324
|
+
*/
|
|
5325
|
+
patternField?: string;
|
|
5303
5326
|
}
|
|
5304
5327
|
|
|
5305
5328
|
/**
|
|
@@ -6506,6 +6529,8 @@ export declare interface SeriesOutliers {
|
|
|
6506
6529
|
type?: MarkerType;
|
|
6507
6530
|
}
|
|
6508
6531
|
|
|
6532
|
+
export { SeriesPattern }
|
|
6533
|
+
|
|
6509
6534
|
/**
|
|
6510
6535
|
* A series point.
|
|
6511
6536
|
*/
|
|
@@ -7772,6 +7797,8 @@ export declare interface ValueAxisTitle {
|
|
|
7772
7797
|
visual?: (e: TitleVisualArgs) => drawing.Element;
|
|
7773
7798
|
}
|
|
7774
7799
|
|
|
7800
|
+
export { VerticalStripesPattern }
|
|
7801
|
+
|
|
7775
7802
|
/**
|
|
7776
7803
|
* Specifies the `weekStartDay` of a [ChartCategoryAxisItem]({% slug api_charts_chartcategoryaxisitem %}).
|
|
7777
7804
|
*/
|
package/index.d.ts
CHANGED
|
@@ -9,10 +9,14 @@ import { Align } from '@progress/kendo-react-popup';
|
|
|
9
9
|
import { BaseEvent as BaseEvent_2 } from '@progress/kendo-react-common';
|
|
10
10
|
import { BreadcrumbProps } from '@progress/kendo-react-layout';
|
|
11
11
|
import { createSankeyData as createSankeyData_2 } from '@progress/kendo-charts';
|
|
12
|
+
import { CrosshatchPattern } from '@progress/kendo-charts';
|
|
12
13
|
import { DataModel } from '@progress/kendo-react-layout';
|
|
14
|
+
import { DiagonalStripesPattern } from '@progress/kendo-charts';
|
|
15
|
+
import { DotsPattern } from '@progress/kendo-charts';
|
|
13
16
|
import { drawing } from '@progress/kendo-drawing';
|
|
14
17
|
import { Element as Element_2 } from '@progress/kendo-drawing';
|
|
15
18
|
import { geometry } from '@progress/kendo-drawing';
|
|
19
|
+
import { GridPattern } from '@progress/kendo-charts';
|
|
16
20
|
import { Group } from '@progress/kendo-drawing';
|
|
17
21
|
import { InstanceObserver } from '@progress/kendo-charts';
|
|
18
22
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
@@ -35,7 +39,9 @@ import { SankeyNodeDefaults } from '@progress/kendo-charts';
|
|
|
35
39
|
import { SankeyOptions } from '@progress/kendo-charts';
|
|
36
40
|
import { SankeyTooltip as SankeyTooltip_2 } from '@progress/kendo-charts';
|
|
37
41
|
import { SankeyTooltipEvent } from '@progress/kendo-charts';
|
|
42
|
+
import { SeriesPattern } from '@progress/kendo-charts';
|
|
38
43
|
import { Surface } from '@progress/kendo-drawing';
|
|
44
|
+
import { VerticalStripesPattern } from '@progress/kendo-charts';
|
|
39
45
|
|
|
40
46
|
/**
|
|
41
47
|
* The provided time-interval steps when `baseUnit` is set to either `"fit"` or `"auto"`.
|
|
@@ -2727,6 +2733,8 @@ declare interface CrosshairTooltipState {
|
|
|
2727
2733
|
popupContend?: any;
|
|
2728
2734
|
}
|
|
2729
2735
|
|
|
2736
|
+
export { CrosshatchPattern }
|
|
2737
|
+
|
|
2730
2738
|
/**
|
|
2731
2739
|
* The dash line type.
|
|
2732
2740
|
*
|
|
@@ -2796,6 +2804,8 @@ export declare interface DateFormats {
|
|
|
2796
2804
|
years?: string;
|
|
2797
2805
|
}
|
|
2798
2806
|
|
|
2807
|
+
export { DiagonalStripesPattern }
|
|
2808
|
+
|
|
2799
2809
|
/**
|
|
2800
2810
|
* @hidden
|
|
2801
2811
|
*/
|
|
@@ -2851,6 +2861,8 @@ declare interface DonutCenterStyle {
|
|
|
2851
2861
|
width: number;
|
|
2852
2862
|
}
|
|
2853
2863
|
|
|
2864
|
+
export { DotsPattern }
|
|
2865
|
+
|
|
2854
2866
|
/**
|
|
2855
2867
|
* Configures the drag behavior during the pan and zoom operations.
|
|
2856
2868
|
*/
|
|
@@ -3138,6 +3150,8 @@ export declare interface GridLines {
|
|
|
3138
3150
|
width?: number;
|
|
3139
3151
|
}
|
|
3140
3152
|
|
|
3153
|
+
export { GridPattern }
|
|
3154
|
+
|
|
3141
3155
|
/**
|
|
3142
3156
|
* The appearance settings for the highlight line of the Candlestick and OHLC series.
|
|
3143
3157
|
*/
|
|
@@ -5300,6 +5314,15 @@ export declare interface Series {
|
|
|
5300
5314
|
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
5301
5315
|
*/
|
|
5302
5316
|
trendline?: SeriesTrendline;
|
|
5317
|
+
/**
|
|
5318
|
+
* The configuration options of the series pattern.
|
|
5319
|
+
*/
|
|
5320
|
+
pattern?: SeriesPattern | ((point: any) => SeriesPattern);
|
|
5321
|
+
/**
|
|
5322
|
+
* The data item field which contains the series pattern.
|
|
5323
|
+
* The `patternField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"pie"`, `"donut"`, `"funnel"`, `"heatmap"`, or `"pyramid"`.
|
|
5324
|
+
*/
|
|
5325
|
+
patternField?: string;
|
|
5303
5326
|
}
|
|
5304
5327
|
|
|
5305
5328
|
/**
|
|
@@ -6506,6 +6529,8 @@ export declare interface SeriesOutliers {
|
|
|
6506
6529
|
type?: MarkerType;
|
|
6507
6530
|
}
|
|
6508
6531
|
|
|
6532
|
+
export { SeriesPattern }
|
|
6533
|
+
|
|
6509
6534
|
/**
|
|
6510
6535
|
* A series point.
|
|
6511
6536
|
*/
|
|
@@ -7772,6 +7797,8 @@ export declare interface ValueAxisTitle {
|
|
|
7772
7797
|
visual?: (e: TitleVisualArgs) => drawing.Element;
|
|
7773
7798
|
}
|
|
7774
7799
|
|
|
7800
|
+
export { VerticalStripesPattern }
|
|
7801
|
+
|
|
7775
7802
|
/**
|
|
7776
7803
|
* Specifies the `weekStartDay` of a [ChartCategoryAxisItem]({% slug api_charts_chartcategoryaxisitem %}).
|
|
7777
7804
|
*/
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-charts",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1729694455,
|
|
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": "9.0.0-develop.
|
|
3
|
+
"version": "9.0.0-develop.7",
|
|
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",
|
|
@@ -22,18 +22,18 @@
|
|
|
22
22
|
},
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@progress/kendo-drawing": "^1.
|
|
25
|
+
"@progress/kendo-drawing": "^1.21.0",
|
|
26
26
|
"@progress/kendo-licensing": "^1.3.4",
|
|
27
|
-
"@progress/kendo-react-common": "9.0.0-develop.
|
|
28
|
-
"@progress/kendo-react-intl": "9.0.0-develop.
|
|
29
|
-
"@progress/kendo-react-layout": "9.0.0-develop.
|
|
30
|
-
"@progress/kendo-react-popup": "9.0.0-develop.
|
|
27
|
+
"@progress/kendo-react-common": "9.0.0-develop.7",
|
|
28
|
+
"@progress/kendo-react-intl": "9.0.0-develop.7",
|
|
29
|
+
"@progress/kendo-react-layout": "9.0.0-develop.7",
|
|
30
|
+
"@progress/kendo-react-popup": "9.0.0-develop.7",
|
|
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"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@progress/kendo-charts": "2.
|
|
36
|
+
"@progress/kendo-charts": "2.6.0",
|
|
37
37
|
"prop-types": "^15.6.0"
|
|
38
38
|
},
|
|
39
39
|
"keywords": [
|