umwd-components 0.1.760 → 0.1.761
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.
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
interface TestChartProps {
|
|
3
|
+
data: Array<{
|
|
4
|
+
name: string;
|
|
5
|
+
opos: number;
|
|
6
|
+
vat: number;
|
|
7
|
+
}>;
|
|
8
|
+
}
|
|
9
|
+
export default function SalesChart({ data, }: TestChartProps): React.JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -228,7 +228,7 @@ export { default as TextualManageIPOForm } from "./components/logistics/ipo/Text
|
|
|
228
228
|
export { default as TextualOpoItemUpdater } from "./components/e-commerce/opo/TextualOpoItemUpdater";
|
|
229
229
|
export { default as TextualManageOPOForm } from "./components/e-commerce/opo/TextualManageOpoForm";
|
|
230
230
|
export { getShop as getShop } from "./data/loaders/e-commerce/getShop";
|
|
231
|
-
export {
|
|
231
|
+
export { default as SalesChart } from "./components/e-commerce/opo/SalesChart";
|
|
232
232
|
export { getSalesData as getSalesData } from "./data/loaders/e-commerce/getSalesData";
|
|
233
233
|
export { getAllIros as getAllIros } from "./data/loaders/e-commerce/iros/getAllIros";
|
|
234
234
|
export { getSingleIro as getSingleIro } from "./data/loaders/e-commerce/iros/getSingleIro";
|