@progress/kendo-react-chart-wizard 13.3.0 → 13.4.0-develop.2
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/ChartWizard.d.ts +15 -0
- package/ChartWizard.mjs +10 -10
- package/components/ChartComponent.d.ts +18 -0
- package/components/FormField.d.ts +19 -0
- package/components/FormFieldSet.d.ts +17 -0
- package/components/SeriesGrid.d.ts +18 -0
- package/components/SeriesGrid.mjs +3 -3
- package/components/SeriesGridCells.d.ts +54 -0
- package/components/SeriesTypeButton.d.ts +21 -0
- package/components/SeriesTypesWrap.d.ts +14 -0
- package/components/panels/BarChartPanel.d.ts +16 -0
- package/components/panels/CategoryAxisPanel.d.ts +16 -0
- package/components/panels/CategoryAxisPanel.mjs +13 -13
- package/components/panels/ChartAreaPanel.d.ts +16 -0
- package/components/panels/ColumnChartPanel.d.ts +16 -0
- package/components/panels/ConfigurationPanel.d.ts +16 -0
- package/components/panels/LegendPanel.d.ts +16 -0
- package/components/panels/LegendPanel.mjs +1 -1
- package/components/panels/LineChartPanel.d.ts +16 -0
- package/components/panels/PieChartPanel.d.ts +16 -0
- package/components/panels/ScatterChartPanel.d.ts +16 -0
- package/components/panels/SeriesPanel.d.ts +16 -0
- package/components/panels/SeriesPanel.mjs +3 -3
- package/components/panels/TitlePanel.d.ts +16 -0
- package/components/panels/TitlePanel.mjs +6 -6
- package/components/panels/ValueAxisPanel.d.ts +16 -0
- package/components/panels/ValueAxisPanel.mjs +1 -1
- package/dist/cdn/js/kendo-react-chart-wizard.js +1 -1
- package/grid-integration/get-grid-selected-rows.d.ts +36 -0
- package/grid-integration/get-wizard-data-from-grid-selection.d.ts +36 -0
- package/grid-integration/index.d.ts +9 -0
- package/index.d.mts +7 -237
- package/index.d.ts +7 -237
- package/messages.d.ts +551 -0
- package/package.json +14 -14
- package/types/ChartWizardHandle.d.ts +24 -0
- package/types/ChartWizardPanelProps.d.ts +15 -0
- package/types/ChartWizardProps.d.ts +47 -0
- package/types/export.d.ts +65 -0
- package/utils.d.ts +147 -0
package/ChartWizard.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ChartWizardProps } from './types/ChartWizardProps.js';
|
|
9
|
+
import { ChartWizardHandle } from './types/ChartWizardHandle.js';
|
|
10
|
+
import * as React from 'react';
|
|
11
|
+
/**
|
|
12
|
+
* The KendoReact ChartWizard component.
|
|
13
|
+
*/
|
|
14
|
+
declare const ChartWizard: React.ForwardRefExoticComponent<ChartWizardProps & React.RefAttributes<ChartWizardHandle | null>>;
|
|
15
|
+
export { ChartWizard };
|
package/ChartWizard.mjs
CHANGED
|
@@ -9,10 +9,10 @@ import * as e from "react";
|
|
|
9
9
|
import { Window as N } from "@progress/kendo-react-dialogs";
|
|
10
10
|
import { Splitter as y, TabStrip as W, TabStripTab as f } from "@progress/kendo-react-layout";
|
|
11
11
|
import { DropDownButton as F } from "@progress/kendo-react-buttons";
|
|
12
|
-
import {
|
|
12
|
+
import { filePdfIcon as H, fileIcon as G, fileImageIcon as A, exportIcon as V } from "@progress/kendo-svg-icons";
|
|
13
13
|
import { resolveExportOptions as O, createInitialState as M, mergeStates as U, createState as j, handlePDFExport as q, handleSVGExport as J, handleImageExport as K } from "./utils.mjs";
|
|
14
14
|
import { useLocalization as Q } from "@progress/kendo-react-intl";
|
|
15
|
-
import { windowTitle as X, messages as l,
|
|
15
|
+
import { windowTitle as X, messages as l, exportPDFButton as Y, exportSVGButton as Z, exportPNGButton as _, exportButton as $, tabChart as ee, tabData as te, tabFormat as ae } from "./messages.mjs";
|
|
16
16
|
import { ExportEvent as ne } from "./types/export.mjs";
|
|
17
17
|
import { ConfigurationPanel as re } from "./components/panels/ConfigurationPanel.mjs";
|
|
18
18
|
import { ChartAreaPanel as oe } from "./components/panels/ChartAreaPanel.mjs";
|
|
@@ -97,29 +97,29 @@ const Se = e.forwardRef((a, h) => {
|
|
|
97
97
|
F,
|
|
98
98
|
{
|
|
99
99
|
ref: d,
|
|
100
|
-
text: i.toLanguageString(
|
|
100
|
+
text: i.toLanguageString($, l.exportButton),
|
|
101
101
|
fillMode: "flat",
|
|
102
|
-
svgIcon:
|
|
102
|
+
svgIcon: V,
|
|
103
103
|
icon: "export",
|
|
104
104
|
onItemClick: S,
|
|
105
105
|
items: [
|
|
106
106
|
{
|
|
107
|
-
svgIcon:
|
|
107
|
+
svgIcon: H,
|
|
108
108
|
icon: "file-pdf",
|
|
109
109
|
exportHandler: q,
|
|
110
|
-
text: i.toLanguageString(
|
|
110
|
+
text: i.toLanguageString(Y, l.exportPDFButton)
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
|
-
svgIcon:
|
|
113
|
+
svgIcon: G,
|
|
114
114
|
icon: "file",
|
|
115
115
|
exportHandler: J,
|
|
116
|
-
text: i.toLanguageString(
|
|
116
|
+
text: i.toLanguageString(Z, l.exportSVGButton)
|
|
117
117
|
},
|
|
118
118
|
{
|
|
119
|
-
svgIcon:
|
|
119
|
+
svgIcon: A,
|
|
120
120
|
icon: "file-image",
|
|
121
121
|
exportHandler: K,
|
|
122
|
-
text: i.toLanguageString(
|
|
122
|
+
text: i.toLanguageString(_, l.exportPNGButton)
|
|
123
123
|
}
|
|
124
124
|
]
|
|
125
125
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
import { ChartWizardState } from '@progress/kendo-charts';
|
|
10
|
+
import { Chart } from '@progress/kendo-react-charts';
|
|
11
|
+
interface ChartComponentProps {
|
|
12
|
+
state: ChartWizardState;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
*/
|
|
17
|
+
export declare const ChartComponent: React.ForwardRefExoticComponent<ChartComponentProps & React.RefAttributes<Chart>>;
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
interface FormFieldProps {
|
|
10
|
+
labelText?: string;
|
|
11
|
+
editorId?: string;
|
|
12
|
+
className?: string;
|
|
13
|
+
children: React.ReactNode;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
export declare const FormField: React.FC<FormFieldProps>;
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
interface FormFieldSetProps {
|
|
10
|
+
children: React.ReactNode;
|
|
11
|
+
legend?: string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
export declare const FormFieldSet: React.FC<FormFieldSetProps>;
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
interface SeriesGridProps {
|
|
10
|
+
data: any[];
|
|
11
|
+
initialData: any[];
|
|
12
|
+
onChange: (data: any[]) => void;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
*/
|
|
17
|
+
export declare const SeriesGrid: React.FC<SeriesGridProps>;
|
|
18
|
+
export {};
|
|
@@ -10,7 +10,7 @@ import { Button as b } from "@progress/kendo-react-buttons";
|
|
|
10
10
|
import { Grid as I, GridToolbar as D, GridColumn as s } from "@progress/kendo-react-grid";
|
|
11
11
|
import { useLocalization as w } from "@progress/kendo-react-intl";
|
|
12
12
|
import { plusIcon as A } from "@progress/kendo-svg-icons";
|
|
13
|
-
import { RemoveSeriesContext as G, ReorderContext as R, SeriesEditContext as k,
|
|
13
|
+
import { RemoveSeriesContext as G, ReorderContext as R, SeriesEditContext as k, SeriesDataEditCell as o, SeriesDataCell as y, SeriesHeaderCell as z } from "./SeriesGridCells.mjs";
|
|
14
14
|
import { configurationSeriesAdd as N } from "../messages.mjs";
|
|
15
15
|
import { ChartWizardCommon as P } from "@progress/kendo-charts";
|
|
16
16
|
const { messages: L } = P, W = (a) => {
|
|
@@ -55,8 +55,8 @@ const { messages: L } = P, W = (a) => {
|
|
|
55
55
|
scrollable: "none",
|
|
56
56
|
editable: !0,
|
|
57
57
|
cells: {
|
|
58
|
-
headerCell:
|
|
59
|
-
data:
|
|
58
|
+
headerCell: z,
|
|
59
|
+
data: y,
|
|
60
60
|
edit: {
|
|
61
61
|
text: o,
|
|
62
62
|
boolean: o,
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { GridCustomCellProps } from '@progress/kendo-react-grid';
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export type RemoveSeriesContextProps = {
|
|
14
|
+
onRemove: (seriesId: number) => void;
|
|
15
|
+
count: number;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
20
|
+
export declare const RemoveSeriesContext: React.Context<RemoveSeriesContextProps>;
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
export type ReorderContextProps = {
|
|
25
|
+
reorder: (dataItem: any) => void;
|
|
26
|
+
dragStart: (dataItem: any) => void;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* @hidden
|
|
30
|
+
*/
|
|
31
|
+
export declare const ReorderContext: React.Context<ReorderContextProps>;
|
|
32
|
+
/**
|
|
33
|
+
* @hidden
|
|
34
|
+
*/
|
|
35
|
+
export type SeriesEditContextProps = {
|
|
36
|
+
enterEdit: (dataItem: any, field: string | undefined) => void;
|
|
37
|
+
exitEdit: (dataItem: any, field: string | undefined) => void;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* @hidden
|
|
41
|
+
*/
|
|
42
|
+
export declare const SeriesEditContext: React.Context<SeriesEditContextProps>;
|
|
43
|
+
/**
|
|
44
|
+
* @hidden
|
|
45
|
+
*/
|
|
46
|
+
export declare const SeriesDataCell: React.FC<GridCustomCellProps>;
|
|
47
|
+
/**
|
|
48
|
+
* @hidden
|
|
49
|
+
*/
|
|
50
|
+
export declare const SeriesDataEditCell: React.FC<GridCustomCellProps>;
|
|
51
|
+
/**
|
|
52
|
+
* @hidden
|
|
53
|
+
*/
|
|
54
|
+
export declare const SeriesHeaderCell: () => null;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
|
+
interface SeriesTypeButtonProps {
|
|
11
|
+
selected?: boolean;
|
|
12
|
+
onClick: () => void;
|
|
13
|
+
children?: React.ReactNode;
|
|
14
|
+
icon: SVGIcon;
|
|
15
|
+
iconName: string;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
20
|
+
export declare const SeriesTypeButton: React.FC<SeriesTypeButtonProps>;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export declare const SeriesTypesWrap: React.FC<{
|
|
13
|
+
children: React.ReactNode;
|
|
14
|
+
}>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
interface BarChartPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const BarChartPanel: React.FC<BarChartPanelProps>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
10
|
+
interface CategoryAxisPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const CategoryAxisPanel: (props: CategoryAxisPanelProps) => React.JSX.Element;
|
|
16
|
+
export {};
|
|
@@ -11,7 +11,7 @@ import { FormElement as D } from "@progress/kendo-react-form";
|
|
|
11
11
|
import { FormFieldSet as T } from "../FormFieldSet.mjs";
|
|
12
12
|
import { FormField as s } from "../FormField.mjs";
|
|
13
13
|
import { Input as V, ColorPicker as v, NumericTextBox as W, Checkbox as j } from "@progress/kendo-react-inputs";
|
|
14
|
-
import { updateState as g, ActionTypes as c, nullItem as m, ensureValue as F, stopPropagation as q,
|
|
14
|
+
import { updateState as g, ActionTypes as c, nullItem as m, ensureValue as F, stopPropagation as q, dropdownlistCommonProps as x, fontNames as C, itemRender as E, parseFont as y, fontSizes as d } from "../../utils.mjs";
|
|
15
15
|
import { formatXAxis as G, messages as r, formatCategoryAxis as H, formatCategoryAxisTitle as J, formatCategoryAxisTitlePlaceholder as Q, formatCategoryAxisTitleFont as U, formatCategoryAxisTitleFontPlaceholder as Y, formatCategoryAxisTitleSize as Z, formatCategoryAxisTitleSizePlaceholder as $, formatCategoryAxisTitleColor as ee, formatCategoryAxisLabels as te, formatCategoryAxisLabelsFont as ae, formatCategoryAxisLabelsFontPlaceholder as oe, formatCategoryAxisLabelsSize as le, formatCategoryAxisLabelsSizePlaceholder as re, formatCategoryAxisLabelsColor as ie, formatCategoryAxisLabelsRotation as ne, formatCategoryAxisLabelsRotationAuto as se, formatCategoryAxisLabelsReverseOrder as ge } from "../../messages.mjs";
|
|
16
16
|
import { useLocalization as ce } from "@progress/kendo-react-intl";
|
|
17
17
|
import { Reveal as me } from "@progress/kendo-react-animation";
|
|
@@ -111,7 +111,7 @@ const Te = (n) => {
|
|
|
111
111
|
A,
|
|
112
112
|
{
|
|
113
113
|
id: "categoryAxisTitleFont",
|
|
114
|
-
data:
|
|
114
|
+
data: C,
|
|
115
115
|
textField: "text",
|
|
116
116
|
dataItemKey: "value",
|
|
117
117
|
itemRender: E,
|
|
@@ -119,14 +119,14 @@ const Te = (n) => {
|
|
|
119
119
|
Y,
|
|
120
120
|
r.formatCategoryAxisTitleFontPlaceholder
|
|
121
121
|
),
|
|
122
|
-
value:
|
|
122
|
+
value: C.find(
|
|
123
123
|
(a) => {
|
|
124
124
|
var o, i;
|
|
125
|
-
return a.value === ((i =
|
|
125
|
+
return a.value === ((i = y(((o = t.categoryAxis[0].title) == null ? void 0 : o.font) || "")) == null ? void 0 : i.name);
|
|
126
126
|
}
|
|
127
127
|
) || m,
|
|
128
128
|
onChange: I,
|
|
129
|
-
...
|
|
129
|
+
...x
|
|
130
130
|
}
|
|
131
131
|
)
|
|
132
132
|
), /* @__PURE__ */ e.createElement(
|
|
@@ -152,12 +152,12 @@ const Te = (n) => {
|
|
|
152
152
|
value: d.find(
|
|
153
153
|
(a) => {
|
|
154
154
|
var o, i;
|
|
155
|
-
return a.value === ((i =
|
|
155
|
+
return a.value === ((i = y(((o = t.categoryAxis[0].title) == null ? void 0 : o.font) || "")) == null ? void 0 : i.size);
|
|
156
156
|
}
|
|
157
157
|
) || m,
|
|
158
158
|
onChange: R,
|
|
159
159
|
allowCustom: !0,
|
|
160
|
-
...
|
|
160
|
+
...x
|
|
161
161
|
}
|
|
162
162
|
)
|
|
163
163
|
), /* @__PURE__ */ e.createElement(
|
|
@@ -202,22 +202,22 @@ const Te = (n) => {
|
|
|
202
202
|
A,
|
|
203
203
|
{
|
|
204
204
|
id: "categoryAxisLabelsFont",
|
|
205
|
-
data:
|
|
205
|
+
data: C,
|
|
206
206
|
textField: "text",
|
|
207
207
|
dataItemKey: "value",
|
|
208
208
|
placeholder: l.toLanguageString(
|
|
209
209
|
oe,
|
|
210
210
|
r.formatCategoryAxisLabelsFontPlaceholder
|
|
211
211
|
),
|
|
212
|
-
value:
|
|
212
|
+
value: C.find(
|
|
213
213
|
(a) => {
|
|
214
214
|
var o, i;
|
|
215
|
-
return a.value === ((i =
|
|
215
|
+
return a.value === ((i = y(((o = t.categoryAxis[0].labels) == null ? void 0 : o.font) || "")) == null ? void 0 : i.name);
|
|
216
216
|
}
|
|
217
217
|
) || m,
|
|
218
218
|
onChange: K,
|
|
219
219
|
itemRender: E,
|
|
220
|
-
...
|
|
220
|
+
...x
|
|
221
221
|
}
|
|
222
222
|
)
|
|
223
223
|
), /* @__PURE__ */ e.createElement(
|
|
@@ -243,12 +243,12 @@ const Te = (n) => {
|
|
|
243
243
|
value: d.find(
|
|
244
244
|
(a) => {
|
|
245
245
|
var o, i;
|
|
246
|
-
return a.value === ((i =
|
|
246
|
+
return a.value === ((i = y(((o = t.categoryAxis[0].labels) == null ? void 0 : o.font) || "")) == null ? void 0 : i.size);
|
|
247
247
|
}
|
|
248
248
|
) || m,
|
|
249
249
|
onChange: w,
|
|
250
250
|
allowCustom: !0,
|
|
251
|
-
...
|
|
251
|
+
...x
|
|
252
252
|
}
|
|
253
253
|
)
|
|
254
254
|
), /* @__PURE__ */ e.createElement(
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
10
|
+
interface ChartAreaPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const ChartAreaPanel: (props: ChartAreaPanelProps) => React.JSX.Element;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
interface ColumnChartPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const ColumnChartPanel: React.FC<ColumnChartPanelProps>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
10
|
+
interface ConfigurationPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const ConfigurationPanel: React.FC<ConfigurationPanelProps>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
10
|
+
interface LegendPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const LegendPanel: React.FC<LegendPanelProps>;
|
|
16
|
+
export {};
|
|
@@ -14,7 +14,7 @@ import { ComboBox as P, DropDownList as V } from "@progress/kendo-react-dropdown
|
|
|
14
14
|
import { Switch as _, ColorPicker as M } from "@progress/kendo-react-inputs";
|
|
15
15
|
import { useLocalization as W } from "@progress/kendo-react-intl";
|
|
16
16
|
import { formatLegendPositionTop as j, messages as l, formatLegendPositionBottom as q, formatLegendPositionLeft as G, formatLegendPositionRight as H, formatLegend as J, formatLegendShowLegend as O, formatLegendFont as Q, formatLegendFontPlaceholder as U, formatLegendSize as X, formatLegendSizePlaceholder as Y, formatLegendColor as Z, formatLegendPosition as $ } from "../../messages.mjs";
|
|
17
|
-
import { stopPropagation as ee,
|
|
17
|
+
import { stopPropagation as ee, dropdownlistCommonProps as f, itemRender as te, fontNames as E, nullItem as L, parseFont as F, fontSizes as z, updateState as r, ActionTypes as m, ensureValue as ne } from "../../utils.mjs";
|
|
18
18
|
import { Reveal as oe } from "@progress/kendo-react-animation";
|
|
19
19
|
const ue = (i) => {
|
|
20
20
|
var S, h, v, b, p, C, x;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
interface LineChartPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const LineChartPanel: React.FC<LineChartPanelProps>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
interface PieChartPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const PieChartPanel: React.FC<PieChartPanelProps>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
interface ScatterChartPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const ScatterChartPanel: React.FC<ScatterChartPanelProps>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
10
|
+
interface SeriesPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const SeriesPanel: React.FC<SeriesPanelProps>;
|
|
16
|
+
export {};
|
|
@@ -10,7 +10,7 @@ import { ExpansionPanel as k, ExpansionPanelContent as w } from "@progress/kendo
|
|
|
10
10
|
import { FormElement as T } from "@progress/kendo-react-form";
|
|
11
11
|
import { FormField as m } from "../FormField.mjs";
|
|
12
12
|
import { ColorPicker as P, Checkbox as I } from "@progress/kendo-react-inputs";
|
|
13
|
-
import { stopPropagation as D,
|
|
13
|
+
import { stopPropagation as D, dropdownlistCommonProps as F, isCategorical as z, updateState as b, ActionTypes as v } from "../../utils.mjs";
|
|
14
14
|
import { formatSeriesAllSeries as K, messages as i, formatSeries as N, formatSeriesApplyTo as R, formatSeriesColor as _, formatSeriesShowLabels as j } from "../../messages.mjs";
|
|
15
15
|
import { useLocalization as M } from "@progress/kendo-react-intl";
|
|
16
16
|
import { DropDownList as W } from "@progress/kendo-react-dropdowns";
|
|
@@ -65,10 +65,10 @@ const Z = (n) => {
|
|
|
65
65
|
textField: "name",
|
|
66
66
|
dataItemKey: "name",
|
|
67
67
|
defaultItem: l,
|
|
68
|
-
disabled: !
|
|
68
|
+
disabled: !z(d),
|
|
69
69
|
value: o.series.find((e) => e.name === a) || l,
|
|
70
70
|
onChange: A,
|
|
71
|
-
...
|
|
71
|
+
...F
|
|
72
72
|
}
|
|
73
73
|
)
|
|
74
74
|
), /* @__PURE__ */ t.createElement(
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
interface TitlePanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const TitlePanel: React.FC<TitlePanelProps>;
|
|
16
|
+
export {};
|
|
@@ -9,7 +9,7 @@ import * as t from "react";
|
|
|
9
9
|
import { ExpansionPanel as P, ExpansionPanelContent as N } from "@progress/kendo-react-layout";
|
|
10
10
|
import { FormElement as A } from "@progress/kendo-react-form";
|
|
11
11
|
import { FormField as u } from "../FormField.mjs";
|
|
12
|
-
import { stopPropagation as w, dropdownlistCommonProps as f,
|
|
12
|
+
import { stopPropagation as w, dropdownlistCommonProps as f, itemRender as p, fontNames as x, nullItem as g, parseFont as C, fontSizes as S, ActionTypes as n, updateState as T, ensureValue as K } from "../../utils.mjs";
|
|
13
13
|
import { DropDownList as D, ComboBox as h } from "@progress/kendo-react-dropdowns";
|
|
14
14
|
import { Input as R, ColorPicker as B } from "@progress/kendo-react-inputs";
|
|
15
15
|
import { useLocalization as M } from "@progress/kendo-react-intl";
|
|
@@ -107,16 +107,16 @@ const nt = (c) => {
|
|
|
107
107
|
h,
|
|
108
108
|
{
|
|
109
109
|
id: "titleFont",
|
|
110
|
-
data:
|
|
110
|
+
data: x,
|
|
111
111
|
textField: "text",
|
|
112
112
|
dataItemKey: "value",
|
|
113
113
|
placeholder: l.toLanguageString(
|
|
114
114
|
J,
|
|
115
115
|
o.formatTitleFontPlaceholder
|
|
116
116
|
),
|
|
117
|
-
value:
|
|
117
|
+
value: x.find((e) => e.value === C(s.font).name) || g,
|
|
118
118
|
onChange: y,
|
|
119
|
-
itemRender:
|
|
119
|
+
itemRender: p,
|
|
120
120
|
...f
|
|
121
121
|
}
|
|
122
122
|
)
|
|
@@ -137,9 +137,9 @@ const nt = (c) => {
|
|
|
137
137
|
Q,
|
|
138
138
|
o.formatTitleSizePlaceholder
|
|
139
139
|
),
|
|
140
|
-
value: S.find((e) => e.value ===
|
|
140
|
+
value: S.find((e) => e.value === C(s.font).size) || g,
|
|
141
141
|
onChange: I,
|
|
142
|
-
itemRender:
|
|
142
|
+
itemRender: p,
|
|
143
143
|
allowCustom: !0,
|
|
144
144
|
...f
|
|
145
145
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { default as React } from 'react';
|
|
9
|
+
import { ChartWizardPanelProps } from '../../types/ChartWizardPanelProps.js';
|
|
10
|
+
interface ValueAxisPanelProps extends ChartWizardPanelProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const ValueAxisPanel: React.FC<ValueAxisPanelProps>;
|
|
16
|
+
export {};
|