├── .gitignore ├── LICENSE ├── README.md ├── images ├── CustomersDesktop.png ├── CustomersMobile.jpg ├── DashboardDesktop.png ├── DashboardMobile.jpg ├── InvoicesDesktop.png ├── InvoicesMobile.jpg ├── NewInvoiceDemo.gif ├── NewInvoiceDesktop.png ├── NewInvoiceMobile1.jpg ├── NewInvoiceMobile2.jpg ├── NewInvoiceMobile3.jpg └── logo.svg ├── package.json ├── public ├── Logo192.png ├── favicon.ico ├── index.html ├── logo2x1.png ├── manifest.json ├── robots.txt ├── sitemap.xml └── userbase-sql.js └── src ├── App.js ├── components ├── Account │ ├── Account.css │ ├── Account.js │ └── logic.js ├── CustomersDashboard │ ├── CustomersDashboard.css │ ├── CustomersDashboard.js │ └── logic.js ├── Dashboard │ ├── Dashboard.css │ ├── Dashboard.js │ └── logic.js ├── InvoicesDashboard │ ├── InvoicesDashboard.css │ ├── InvoicesDashboard.js │ ├── InvoicesDashboardRow.js │ └── logic.js ├── NavBar │ ├── NavBar.css │ └── NavBar.js ├── NewInvoiceForm │ ├── InvoicePdf.js │ ├── NewInvoiceForm.css │ ├── NewInvoiceForm.js │ ├── NewInvoiceFormItemRow.js │ └── logic.js └── UserForm │ ├── UserForm.css │ └── UserForm.js ├── config.js ├── database ├── init.js ├── models │ ├── agent │ │ ├── agent.js │ │ └── user.js │ ├── event │ │ ├── invoice.js │ │ └── invoiceItem.js │ └── resource │ │ └── resource.js └── utils.js ├── index.css ├── index.js ├── themes ├── assets │ └── new-invoice-icon.svg └── fonts │ └── Barlow │ ├── Barlow-Black.ttf │ ├── Barlow-BlackItalic.ttf │ ├── Barlow-Bold.ttf │ ├── Barlow-BoldItalic.ttf │ ├── Barlow-ExtraBold.ttf │ ├── Barlow-ExtraBoldItalic.ttf │ ├── Barlow-ExtraLight.ttf │ ├── Barlow-ExtraLightItalic.ttf │ ├── Barlow-Italic.ttf │ ├── Barlow-Light.ttf │ ├── Barlow-LightItalic.ttf │ ├── Barlow-Medium.ttf │ ├── Barlow-MediumItalic.ttf │ ├── Barlow-Regular.ttf │ ├── Barlow-SemiBold.ttf │ ├── Barlow-SemiBoldItalic.ttf │ ├── Barlow-Thin.ttf │ ├── Barlow-ThinItalic.ttf │ ├── BarlowCondensed-Black.ttf │ ├── BarlowCondensed-BlackItalic.ttf │ ├── BarlowCondensed-Bold.ttf │ ├── BarlowCondensed-BoldItalic.ttf │ ├── BarlowCondensed-ExtraBold.ttf │ ├── BarlowCondensed-ExtraBoldItalic.ttf │ ├── BarlowCondensed-ExtraLight.ttf │ ├── BarlowCondensed-ExtraLightItalic.ttf │ ├── BarlowCondensed-Italic.ttf │ ├── BarlowCondensed-Light.ttf │ ├── BarlowCondensed-LightItalic.ttf │ ├── BarlowCondensed-Medium.ttf │ ├── BarlowCondensed-MediumItalic.ttf │ ├── BarlowCondensed-Regular.ttf │ ├── BarlowCondensed-SemiBold.ttf │ ├── BarlowCondensed-SemiBoldItalic.ttf │ ├── BarlowCondensed-Thin.ttf │ ├── BarlowCondensed-ThinItalic.ttf │ ├── BarlowSemiCondensed-Black.ttf │ ├── BarlowSemiCondensed-BlackItalic.ttf │ ├── BarlowSemiCondensed-Bold.ttf │ ├── BarlowSemiCondensed-BoldItalic.ttf │ ├── BarlowSemiCondensed-ExtraBold.ttf │ ├── BarlowSemiCondensed-ExtraBoldItalic.ttf │ ├── BarlowSemiCondensed-ExtraLight.ttf │ ├── BarlowSemiCondensed-ExtraLightItalic.ttf │ ├── BarlowSemiCondensed-Italic.ttf │ ├── BarlowSemiCondensed-Light.ttf │ ├── BarlowSemiCondensed-LightItalic.ttf │ ├── BarlowSemiCondensed-Medium.ttf │ ├── BarlowSemiCondensed-MediumItalic.ttf │ ├── BarlowSemiCondensed-Regular.ttf │ ├── BarlowSemiCondensed-SemiBold.ttf │ ├── BarlowSemiCondensed-SemiBoldItalic.ttf │ ├── BarlowSemiCondensed-Thin.ttf │ └── BarlowSemiCondensed-ThinItalic.ttf └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/README.md -------------------------------------------------------------------------------- /images/CustomersDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/CustomersDesktop.png -------------------------------------------------------------------------------- /images/CustomersMobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/CustomersMobile.jpg -------------------------------------------------------------------------------- /images/DashboardDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/DashboardDesktop.png -------------------------------------------------------------------------------- /images/DashboardMobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/DashboardMobile.jpg -------------------------------------------------------------------------------- /images/InvoicesDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/InvoicesDesktop.png -------------------------------------------------------------------------------- /images/InvoicesMobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/InvoicesMobile.jpg -------------------------------------------------------------------------------- /images/NewInvoiceDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/NewInvoiceDemo.gif -------------------------------------------------------------------------------- /images/NewInvoiceDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/NewInvoiceDesktop.png -------------------------------------------------------------------------------- /images/NewInvoiceMobile1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/NewInvoiceMobile1.jpg -------------------------------------------------------------------------------- /images/NewInvoiceMobile2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/NewInvoiceMobile2.jpg -------------------------------------------------------------------------------- /images/NewInvoiceMobile3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/NewInvoiceMobile3.jpg -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/images/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/package.json -------------------------------------------------------------------------------- /public/Logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/public/Logo192.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/public/logo2x1.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/userbase-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/public/userbase-sql.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Account/Account.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/Account/Account.css -------------------------------------------------------------------------------- /src/components/Account/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/Account/Account.js -------------------------------------------------------------------------------- /src/components/Account/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/Account/logic.js -------------------------------------------------------------------------------- /src/components/CustomersDashboard/CustomersDashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/CustomersDashboard/CustomersDashboard.css -------------------------------------------------------------------------------- /src/components/CustomersDashboard/CustomersDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/CustomersDashboard/CustomersDashboard.js -------------------------------------------------------------------------------- /src/components/CustomersDashboard/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/CustomersDashboard/logic.js -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/Dashboard/Dashboard.css -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/Dashboard/Dashboard.js -------------------------------------------------------------------------------- /src/components/Dashboard/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/Dashboard/logic.js -------------------------------------------------------------------------------- /src/components/InvoicesDashboard/InvoicesDashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/InvoicesDashboard/InvoicesDashboard.css -------------------------------------------------------------------------------- /src/components/InvoicesDashboard/InvoicesDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/InvoicesDashboard/InvoicesDashboard.js -------------------------------------------------------------------------------- /src/components/InvoicesDashboard/InvoicesDashboardRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/InvoicesDashboard/InvoicesDashboardRow.js -------------------------------------------------------------------------------- /src/components/InvoicesDashboard/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/InvoicesDashboard/logic.js -------------------------------------------------------------------------------- /src/components/NavBar/NavBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/NavBar/NavBar.css -------------------------------------------------------------------------------- /src/components/NavBar/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/NavBar/NavBar.js -------------------------------------------------------------------------------- /src/components/NewInvoiceForm/InvoicePdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/NewInvoiceForm/InvoicePdf.js -------------------------------------------------------------------------------- /src/components/NewInvoiceForm/NewInvoiceForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/NewInvoiceForm/NewInvoiceForm.css -------------------------------------------------------------------------------- /src/components/NewInvoiceForm/NewInvoiceForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/NewInvoiceForm/NewInvoiceForm.js -------------------------------------------------------------------------------- /src/components/NewInvoiceForm/NewInvoiceFormItemRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/NewInvoiceForm/NewInvoiceFormItemRow.js -------------------------------------------------------------------------------- /src/components/NewInvoiceForm/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/NewInvoiceForm/logic.js -------------------------------------------------------------------------------- /src/components/UserForm/UserForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/UserForm/UserForm.css -------------------------------------------------------------------------------- /src/components/UserForm/UserForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/components/UserForm/UserForm.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/config.js -------------------------------------------------------------------------------- /src/database/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/database/init.js -------------------------------------------------------------------------------- /src/database/models/agent/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/database/models/agent/agent.js -------------------------------------------------------------------------------- /src/database/models/agent/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/database/models/agent/user.js -------------------------------------------------------------------------------- /src/database/models/event/invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/database/models/event/invoice.js -------------------------------------------------------------------------------- /src/database/models/event/invoiceItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/database/models/event/invoiceItem.js -------------------------------------------------------------------------------- /src/database/models/resource/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/database/models/resource/resource.js -------------------------------------------------------------------------------- /src/database/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/database/utils.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/index.js -------------------------------------------------------------------------------- /src/themes/assets/new-invoice-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/assets/new-invoice-icon.svg -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-Black.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-BlackItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-Bold.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-BoldItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-ExtraBold.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-ExtraLight.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-Italic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-Light.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-LightItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-Medium.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-MediumItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-Regular.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-SemiBold.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-Thin.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/Barlow-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/Barlow-ThinItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-Black.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-BlackItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-Bold.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-ExtraBold.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-ExtraLight.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-Italic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-Light.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-Medium.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-MediumItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-Regular.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-SemiBold.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-Thin.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowCondensed-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowCondensed-ThinItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-Black.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-BlackItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-Bold.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-ExtraBold.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-ExtraLight.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-Italic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-Light.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-Medium.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-MediumItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-Regular.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-SemiBold.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-Thin.ttf -------------------------------------------------------------------------------- /src/themes/fonts/Barlow/BarlowSemiCondensed-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/themes/fonts/Barlow/BarlowSemiCondensed-ThinItalic.ttf -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-berman/prinvoice/HEAD/src/utils.js --------------------------------------------------------------------------------