umwd-components 0.1.824 → 0.1.825
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/cjs/src/components/e-commerce/products/EditReturnStockForm.js +7 -0
- package/dist/cjs/src/index.js +1 -1
- package/dist/cjs/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/src/components/e-commerce/products/EditReturnStockForm.js +93 -0
- package/dist/esm/src/index.js +1 -0
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/types/components/e-commerce/products/EditReturnStockForm.d.ts +8 -0
- package/dist/esm/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -188,6 +188,7 @@ 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";
|
|
192
193
|
export { default as CsvDownloader } from "./components/common/csv/CsvDownloader";
|
|
193
194
|
export { getProductModel as getProductModel } from "./data/loaders/e-commerce/getProductModel";
|