umwd-components 0.1.729 → 0.1.731
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/common/csv/CsvDownloader.js +1 -1
- package/dist/cjs/src/components/e-commerce/iro/ManageIROForm.js +1 -1
- package/dist/cjs/src/components/e-commerce/iro/TextualManageIROForm.js +1 -1
- package/dist/cjs/src/components/logistics/ipo/ManageIPOForm.js +1 -1
- package/dist/cjs/src/components/logistics/ipo/TextualManageIPOForm.js +1 -1
- package/dist/cjs/src/data/actions/e-commerce/iro/updateIroAction.js +1 -1
- package/dist/cjs/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/_virtual/index3.js +2 -2
- package/dist/esm/_virtual/index4.js +2 -2
- package/dist/esm/node_modules/prop-types/node_modules/react-is/index.js +1 -1
- package/dist/esm/node_modules/safe-buffer/index.js +1 -1
- package/dist/esm/src/components/common/csv/CsvDownloader.js +5 -6
- package/dist/esm/src/components/e-commerce/iro/ManageIROForm.js +4 -3
- package/dist/esm/src/components/e-commerce/iro/TextualManageIROForm.js +4 -3
- package/dist/esm/src/components/logistics/ipo/ManageIPOForm.js +2 -2
- package/dist/esm/src/components/logistics/ipo/TextualManageIPOForm.js +2 -2
- package/dist/esm/src/data/actions/e-commerce/iro/updateIroAction.js +3 -3
- package/dist/esm/src/data/actions/logistics/ipo/updateIpoAction.js +2 -2
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/types/components/common/csv/CsvDownloader.d.ts +2 -2
- package/dist/esm/types/data/actions/e-commerce/iro/updateIroAction.d.ts +1 -1
- package/dist/esm/types/data/actions/logistics/ipo/updateIpoAction.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type
|
|
1
|
+
type CsvDownloaderProps = {
|
|
2
2
|
defaultAttributes: {
|
|
3
3
|
name: string;
|
|
4
4
|
label: string;
|
|
@@ -19,5 +19,5 @@ type CSVDownloaderProps = {
|
|
|
19
19
|
fetchCSVData: (query: string) => Promise<any>;
|
|
20
20
|
entityCode?: string;
|
|
21
21
|
};
|
|
22
|
-
export default function
|
|
22
|
+
export default function CsvDownloader(props: CsvDownloaderProps): import("react/jsx-runtime").JSX.Element;
|
|
23
23
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function updateIroAction(prevState: any, formData: FormData): Promise<any>;
|
|
1
|
+
export declare function updateIroAction(documentId: string, prevState: any, formData: FormData): Promise<any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function updateIpoAction(
|
|
1
|
+
export declare function updateIpoAction(documentId: string, prevState: any, formData: FormData): Promise<any>;
|