From 3a4da6e3a5e831857d13cd5914b1a92cabd904cf Mon Sep 17 00:00:00 2001 From: Rishabh Shukla Date: Mon, 12 Jun 2023 11:16:52 -0400 Subject: [PATCH] moved the assets folder to root level and updated the path --- samples/react-invoice-generator/README.md | 8 ++++---- .../{src/webparts => }/assets/InvoicePDF.PNG | Bin .../{src/webparts => }/assets/configureWebpart.PNG | Bin .../{src/webparts => }/assets/invoice.PNG | Bin .../{src/webparts => }/assets/invoiceList.PNG | Bin 5 files changed, 4 insertions(+), 4 deletions(-) rename samples/react-invoice-generator/{src/webparts => }/assets/InvoicePDF.PNG (100%) rename samples/react-invoice-generator/{src/webparts => }/assets/configureWebpart.PNG (100%) rename samples/react-invoice-generator/{src/webparts => }/assets/invoice.PNG (100%) rename samples/react-invoice-generator/{src/webparts => }/assets/invoiceList.PNG (100%) diff --git a/samples/react-invoice-generator/README.md b/samples/react-invoice-generator/README.md index 2fae4b1cf..26b09b83b 100644 --- a/samples/react-invoice-generator/README.md +++ b/samples/react-invoice-generator/README.md @@ -5,15 +5,15 @@ SPFx Invoice Generator Webpart using PnP JS allows users to create invoices for different clients or customers. Users can add items to the invoice using add item button, and the application calculates the subtotal, tax, and total amount. The application also generates PDF versions of the invoices. To obtain customer names and addresses, the application retrieve data from a SharePoint list and present them in dropdown menus for use in the application. The user interface components are designed and implemented using the Fluent UI library. Additionally, the @react-pdf/renderer library is utilized to generate the PDF versions of the invoices. Compnay Logo, Company Name, Address and Tax rate can be updated using webpart properties. -![Configure Invoice Generator](./src/webparts/assets/configureWebpart.PNG) +![Configure Invoice Generator](./assets/configureWebpart.PNG) -![Invoice Generator](./src/webparts/assets/invoice.PNG) +![Invoice Generator](./assets/invoice.PNG) List needed to configure to make the app work -![Invoice Generator List ](./src/webparts/assets/invoiceList.PNG) +![Invoice Generator List ](./assets/invoiceList.PNG) PDF genreated using Downlaod Invoice PDF button -![Invoice Generator PDF ](./src/webparts/assets/invoicePDF.PNG) +![Invoice Generator PDF ](./assets/invoicePDF.PNG) ## Compatibility diff --git a/samples/react-invoice-generator/src/webparts/assets/InvoicePDF.PNG b/samples/react-invoice-generator/assets/InvoicePDF.PNG similarity index 100% rename from samples/react-invoice-generator/src/webparts/assets/InvoicePDF.PNG rename to samples/react-invoice-generator/assets/InvoicePDF.PNG diff --git a/samples/react-invoice-generator/src/webparts/assets/configureWebpart.PNG b/samples/react-invoice-generator/assets/configureWebpart.PNG similarity index 100% rename from samples/react-invoice-generator/src/webparts/assets/configureWebpart.PNG rename to samples/react-invoice-generator/assets/configureWebpart.PNG diff --git a/samples/react-invoice-generator/src/webparts/assets/invoice.PNG b/samples/react-invoice-generator/assets/invoice.PNG similarity index 100% rename from samples/react-invoice-generator/src/webparts/assets/invoice.PNG rename to samples/react-invoice-generator/assets/invoice.PNG diff --git a/samples/react-invoice-generator/src/webparts/assets/invoiceList.PNG b/samples/react-invoice-generator/assets/invoiceList.PNG similarity index 100% rename from samples/react-invoice-generator/src/webparts/assets/invoiceList.PNG rename to samples/react-invoice-generator/assets/invoiceList.PNG