@mescius/wijmo.react.chart.radar 5.20241.10-nightly.d20240611.t020403 → 5.20241.10-nightly.d20240613.t051638
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/es2015-commonjs.js +1 -1
- package/es2015-esm.js +1 -1
- package/es5-esm.js +1 -1
- package/index.d.ts +15 -8
- package/index.js +1 -1
- package/package.json +6 -6
package/es2015-commonjs.js
CHANGED
package/es2015-esm.js
CHANGED
package/es5-esm.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20241.10-nightly.
|
|
3
|
+
* Wijmo Library 5.20241.10-nightly.d20240613.t051638
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -18,11 +18,12 @@
|
|
|
18
18
|
*
|
|
19
19
|
*/
|
|
20
20
|
export declare var ___keepComment: any;
|
|
21
|
-
import {
|
|
21
|
+
import { WjRef } from '@mescius/wijmo.react.base';
|
|
22
|
+
import { FlexChartAxisEvents, FlexChartAxisInputs, FlexChartCoreEvents, FlexChartCoreInputs, SeriesBaseEvents, SeriesBaseInputs } from '@mescius/wijmo.react.chart';
|
|
22
23
|
import { Stacking } from '@mescius/wijmo.chart';
|
|
23
24
|
import * as React from 'react';
|
|
24
25
|
import * as wjcChartRadar from '@mescius/wijmo.chart.radar';
|
|
25
|
-
export declare type
|
|
26
|
+
export declare type FlexRadarInputs = FlexChartCoreInputs & {
|
|
26
27
|
chartType?: wjcChartRadar.RadarChartType | string;
|
|
27
28
|
reversed?: boolean;
|
|
28
29
|
stacking?: Stacking | string;
|
|
@@ -35,6 +36,8 @@ export declare const FlexRadarMeta: {
|
|
|
35
36
|
inputs: string[];
|
|
36
37
|
events: string[];
|
|
37
38
|
};
|
|
39
|
+
export declare type FlexRadarProps = FlexRadarInputs & FlexRadarEvents<wjcChartRadar.FlexRadar>;
|
|
40
|
+
export declare type FlexRadarRef = WjRef<wjcChartRadar.FlexRadar>;
|
|
38
41
|
/**
|
|
39
42
|
* React component for the {@link wijmo.chart.radar.FlexRadar} control.
|
|
40
43
|
*
|
|
@@ -51,13 +54,15 @@ export declare const FlexRadarMeta: {
|
|
|
51
54
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
|
52
55
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
|
53
56
|
*/
|
|
54
|
-
export declare const FlexRadar: React.ForwardRefExoticComponent<
|
|
55
|
-
export declare type
|
|
57
|
+
export declare const FlexRadar: React.ForwardRefExoticComponent<FlexRadarProps>;
|
|
58
|
+
export declare type FlexRadarAxisInputs = FlexChartAxisInputs & {};
|
|
56
59
|
export declare type FlexRadarAxisEvents<T> = FlexChartAxisEvents<T> & {};
|
|
57
60
|
export declare const FlexRadarAxisMeta: {
|
|
58
61
|
inputs: string[];
|
|
59
62
|
events: string[];
|
|
60
63
|
};
|
|
64
|
+
export declare type FlexRadarAxisProps = FlexRadarAxisInputs & FlexRadarAxisEvents<wjcChartRadar.FlexRadarAxis>;
|
|
65
|
+
export declare type FlexRadarAxisRef = WjRef<wjcChartRadar.FlexRadarAxis>;
|
|
61
66
|
/**
|
|
62
67
|
* React component for the {@link wijmo.chart.radar.FlexRadarAxis} class.
|
|
63
68
|
*
|
|
@@ -72,8 +77,8 @@ export declare const FlexRadarAxisMeta: {
|
|
|
72
77
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
|
73
78
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
|
74
79
|
*/
|
|
75
|
-
export declare const FlexRadarAxis: React.ForwardRefExoticComponent<
|
|
76
|
-
export declare type
|
|
80
|
+
export declare const FlexRadarAxis: React.ForwardRefExoticComponent<FlexRadarAxisProps>;
|
|
81
|
+
export declare type FlexRadarSeriesInputs = SeriesBaseInputs & {
|
|
77
82
|
chartType?: wjcChartRadar.RadarChartType | string;
|
|
78
83
|
};
|
|
79
84
|
export declare type FlexRadarSeriesEvents<T> = SeriesBaseEvents<T> & {};
|
|
@@ -81,6 +86,8 @@ export declare const FlexRadarSeriesMeta: {
|
|
|
81
86
|
inputs: string[];
|
|
82
87
|
events: string[];
|
|
83
88
|
};
|
|
89
|
+
export declare type FlexRadarSeriesProps = FlexRadarSeriesInputs & FlexRadarSeriesEvents<wjcChartRadar.FlexRadarSeries>;
|
|
90
|
+
export declare type FlexRadarSeriesRef = WjRef<wjcChartRadar.FlexRadarSeries>;
|
|
84
91
|
/**
|
|
85
92
|
* React component for the {@link wijmo.chart.radar.FlexRadarSeries} class.
|
|
86
93
|
*
|
|
@@ -96,4 +103,4 @@ export declare const FlexRadarSeriesMeta: {
|
|
|
96
103
|
* You can use this event to perform further initialization in addition to setting properties in JSX.
|
|
97
104
|
* The signature of the handler function is the same as any other Wijmo event handlers.
|
|
98
105
|
*/
|
|
99
|
-
export declare const FlexRadarSeries: React.ForwardRefExoticComponent<
|
|
106
|
+
export declare const FlexRadarSeries: React.ForwardRefExoticComponent<FlexRadarSeriesProps>;
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mescius/wijmo.react.chart.radar",
|
|
3
|
-
"version": "5.20241.10-nightly.
|
|
3
|
+
"version": "5.20241.10-nightly.d20240613.t051638",
|
|
4
4
|
"description": "UI library for pure JS, Angular, React, Vue and more...",
|
|
5
5
|
"author": "MESCIUS inc",
|
|
6
6
|
"license": "Commercial",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"types": "./index.d.ts",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@mescius/wijmo": "5.20241.10-nightly.
|
|
11
|
-
"@mescius/wijmo.chart": "5.20241.10-nightly.
|
|
12
|
-
"@mescius/wijmo.chart.radar": "5.20241.10-nightly.
|
|
13
|
-
"@mescius/wijmo.react.base": "5.20241.10-nightly.
|
|
14
|
-
"@mescius/wijmo.react.chart": "5.20241.10-nightly.
|
|
10
|
+
"@mescius/wijmo": "5.20241.10-nightly.d20240613.t051638",
|
|
11
|
+
"@mescius/wijmo.chart": "5.20241.10-nightly.d20240613.t051638",
|
|
12
|
+
"@mescius/wijmo.chart.radar": "5.20241.10-nightly.d20240613.t051638",
|
|
13
|
+
"@mescius/wijmo.react.base": "5.20241.10-nightly.d20240613.t051638",
|
|
14
|
+
"@mescius/wijmo.react.chart": "5.20241.10-nightly.d20240613.t051638"
|
|
15
15
|
},
|
|
16
16
|
"homepage": "https://developer.mescius.com/wijmo",
|
|
17
17
|
"bugs": {
|