umwd-components 0.1.812 → 0.1.813
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/invoice/InvoicePDF.js +1 -1
- package/dist/cjs/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/src/components/e-commerce/invoice/InvoicePDF.js +6 -20
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/types/components/e-commerce/invoice/InvoicePDF.d.ts +2 -8
- package/dist/esm/types/components/e-commerce/invoice/InvoicePDFOLDIMPROVED.d.ts +13 -0
- package/package.json +1 -1
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
import { Invoice } from "../../../types/e-commerce/invoice/types";
|
|
2
|
-
declare const InvoicePDF: (
|
|
3
|
-
props: {
|
|
4
|
-
invoice: Invoice;
|
|
5
|
-
};
|
|
6
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const InvoicePDF: () => import("react/jsx-runtime").JSX.Element;
|
|
7
3
|
export declare function InvoiceDownloadLink({ invoice }: {
|
|
8
4
|
invoice: Invoice;
|
|
9
5
|
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
export declare function InvoicePDFViewer(
|
|
11
|
-
invoice: Invoice;
|
|
12
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare function InvoicePDFViewer(): import("react/jsx-runtime").JSX.Element;
|
|
13
7
|
export default InvoicePDF;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Invoice } from "../../../types/e-commerce/invoice/types";
|
|
2
|
+
declare const InvoicePDF: ({ props }: {
|
|
3
|
+
props: {
|
|
4
|
+
invoice: Invoice;
|
|
5
|
+
};
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare function InvoiceDownloadLink({ invoice }: {
|
|
8
|
+
invoice: Invoice;
|
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare function InvoicePDFViewer({ invoice }: {
|
|
11
|
+
invoice: Invoice;
|
|
12
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default InvoicePDF;
|