@apexcura/ui-components 0.0.14-Beta181 → 0.0.14-Beta182
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/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +5 -2
- package/dist/index.mjs +5 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -132,7 +132,9 @@ declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
|
132
132
|
|
|
133
133
|
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
134
134
|
|
|
135
|
-
declare
|
|
135
|
+
declare class HighchartsLineChart extends React$1.Component<any, any> {
|
|
136
|
+
render(): React$1.JSX.Element;
|
|
137
|
+
}
|
|
136
138
|
|
|
137
139
|
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
138
140
|
|
package/dist/index.d.ts
CHANGED
|
@@ -132,7 +132,9 @@ declare const HorizontalBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
|
132
132
|
|
|
133
133
|
declare const LineChart: (props: ElementType) => React$1.JSX.Element;
|
|
134
134
|
|
|
135
|
-
declare
|
|
135
|
+
declare class HighchartsLineChart extends React$1.Component<any, any> {
|
|
136
|
+
render(): React$1.JSX.Element;
|
|
137
|
+
}
|
|
136
138
|
|
|
137
139
|
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
138
140
|
|
package/dist/index.js
CHANGED
|
@@ -1387,8 +1387,11 @@ var LineChart = (props) => {
|
|
|
1387
1387
|
var import_react35 = __toESM(require("react"));
|
|
1388
1388
|
var import_highcharts = __toESM(require("highcharts"));
|
|
1389
1389
|
var import_highcharts_react_official = __toESM(require("highcharts-react-official"));
|
|
1390
|
-
var HighchartsLineChart =
|
|
1391
|
-
|
|
1390
|
+
var HighchartsLineChart = class extends import_react35.default.Component {
|
|
1391
|
+
render() {
|
|
1392
|
+
let { className, graph_data } = this.props;
|
|
1393
|
+
return /* @__PURE__ */ import_react35.default.createElement("div", { className }, /* @__PURE__ */ import_react35.default.createElement(import_highcharts_react_official.default, { highcharts: import_highcharts.default, options: graph_data }));
|
|
1394
|
+
}
|
|
1392
1395
|
};
|
|
1393
1396
|
var highchart_default = HighchartsLineChart;
|
|
1394
1397
|
|
package/dist/index.mjs
CHANGED
|
@@ -1338,8 +1338,11 @@ var LineChart = (props) => {
|
|
|
1338
1338
|
import React35 from "react";
|
|
1339
1339
|
import Highcharts from "highcharts";
|
|
1340
1340
|
import HighchartsReact from "highcharts-react-official";
|
|
1341
|
-
var HighchartsLineChart =
|
|
1342
|
-
|
|
1341
|
+
var HighchartsLineChart = class extends React35.Component {
|
|
1342
|
+
render() {
|
|
1343
|
+
let { className, graph_data } = this.props;
|
|
1344
|
+
return /* @__PURE__ */ React35.createElement("div", { className }, /* @__PURE__ */ React35.createElement(HighchartsReact, { highcharts: Highcharts, options: graph_data }));
|
|
1345
|
+
}
|
|
1343
1346
|
};
|
|
1344
1347
|
var highchart_default = HighchartsLineChart;
|
|
1345
1348
|
|