umwd-components 0.1.824 → 0.1.826

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.
@@ -0,0 +1,8 @@
1
+ import { ProductStock } from "../../../types/e-commerce/product/types";
2
+ import { SxProps } from "@mui/material/styles";
3
+ export declare function EditReturnStockForm({ data, revalidateCallback, handleClose, sx, }: {
4
+ data: ProductStock;
5
+ revalidateCallback: () => void;
6
+ handleClose?: () => void;
7
+ sx?: SxProps;
8
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ declare function getSingleReturnStock(documentId: string): Promise<any>;
2
+ export { getSingleReturnStock };
@@ -188,7 +188,9 @@ export { OPOItemFields as OPOItemFields } from "./components/e-commerce/opo/OPOI
188
188
  export { default as OpoItemUpdater } from "./components/e-commerce/opo/OpoItemUpdater";
189
189
  export { createOpoAction as createOpoAction } from "./data/actions/e-commerce/opo/createOpoAction";
190
190
  export { EditStockForm as EditStockForm } from "./components/e-commerce/products/EditStockForm";
191
+ export { EditReturnStockForm as EditReturnStockForm } from "./components/e-commerce/products/EditReturnStockForm";
191
192
  export { getSingleStock as getSingleStock } from "./data/loaders/e-commerce/getSingleStock";
193
+ export { getSingleReturnStock as getSingleReturnStock } from "./data/loaders/e-commerce/getSingleReturnStock";
192
194
  export { default as CsvDownloader } from "./components/common/csv/CsvDownloader";
193
195
  export { getProductModel as getProductModel } from "./data/loaders/e-commerce/getProductModel";
194
196
  export { queryAllProducts as queryAllProducts } from "./data/loaders/e-commerce/queryAllProducts";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umwd-components",
3
- "version": "0.1.824",
3
+ "version": "0.1.826",
4
4
  "description": "UMWD Component library",
5
5
  "main": "./dist/cjs/src/index.js",
6
6
  "module": "./dist/esm/src/index.js",