@apexcura/ui-components 0.0.14-Beta182 → 0.0.14-Beta184
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 +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +3 -8
- package/dist/index.mjs +3 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -132,9 +132,7 @@ 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
|
|
136
|
-
render(): React$1.JSX.Element;
|
|
137
|
-
}
|
|
135
|
+
declare function HighchartsLineChart(): React$1.JSX.Element;
|
|
138
136
|
|
|
139
137
|
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
140
138
|
|
package/dist/index.d.ts
CHANGED
|
@@ -132,9 +132,7 @@ 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
|
|
136
|
-
render(): React$1.JSX.Element;
|
|
137
|
-
}
|
|
135
|
+
declare function HighchartsLineChart(): React$1.JSX.Element;
|
|
138
136
|
|
|
139
137
|
declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
140
138
|
|
package/dist/index.js
CHANGED
|
@@ -1385,14 +1385,9 @@ var LineChart = (props) => {
|
|
|
1385
1385
|
|
|
1386
1386
|
// src/Components/highchart.tsx
|
|
1387
1387
|
var import_react35 = __toESM(require("react"));
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
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
|
-
}
|
|
1395
|
-
};
|
|
1388
|
+
function HighchartsLineChart() {
|
|
1389
|
+
return /* @__PURE__ */ import_react35.default.createElement("h1", null, "123456789");
|
|
1390
|
+
}
|
|
1396
1391
|
var highchart_default = HighchartsLineChart;
|
|
1397
1392
|
|
|
1398
1393
|
// src/Components/DoubleBarChart.tsx
|
package/dist/index.mjs
CHANGED
|
@@ -1336,14 +1336,9 @@ var LineChart = (props) => {
|
|
|
1336
1336
|
|
|
1337
1337
|
// src/Components/highchart.tsx
|
|
1338
1338
|
import React35 from "react";
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
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
|
-
}
|
|
1346
|
-
};
|
|
1339
|
+
function HighchartsLineChart() {
|
|
1340
|
+
return /* @__PURE__ */ React35.createElement("h1", null, "123456789");
|
|
1341
|
+
}
|
|
1347
1342
|
var highchart_default = HighchartsLineChart;
|
|
1348
1343
|
|
|
1349
1344
|
// src/Components/DoubleBarChart.tsx
|