├── .eslintrc.json ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .idea ├── .gitignore ├── modules.xml ├── pharmacy-pos-frontend.iml └── vcs.xml ├── @shadcn └── components │ └── ui │ └── table.tsx ├── Dockerfile ├── LICENSE ├── README.md ├── components.json ├── cypress.config.ts ├── docker-compose.yml ├── jest-html-reporters-attach └── jest_html_reporters │ ├── index.js │ └── result.js ├── jest.config.js ├── jest.config.node.js ├── jest_html_reporters.html ├── package.json ├── public ├── electron.js ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── preload.js └── robots.txt ├── src ├── @shadcn │ ├── components │ │ └── ui │ │ │ └── table.tsx │ └── lib │ │ └── utils.ts ├── App.css ├── App.tsx ├── __tests__ │ └── validators │ │ ├── emailValidate.spec.ts │ │ ├── passwordStrengthCheck.spec.ts │ │ ├── passwordValidator.spec.ts │ │ └── userNameValidator.spec.ts ├── assets │ ├── fakedata │ │ ├── branchsales.ts │ │ ├── cashiers.ts │ │ ├── managerdashboardrecenttransactiondata.ts │ │ ├── medicine.ts │ │ ├── orderdetails.ts │ │ └── transactiondetails.ts │ ├── fonts │ │ ├── OFL.txt │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ ├── Poppins-Thin.ttf │ │ └── Poppins-ThinItalic.ttf │ ├── icons │ │ ├── mastercard.png │ │ ├── money.png │ │ └── visa.png │ ├── index.tsx │ ├── logo │ │ └── logo.png │ └── lottie │ │ └── loading.json ├── context │ └── UserContext.tsx ├── electron │ ├── electron.js │ └── preload.js ├── features │ ├── branch-sales-summary │ │ ├── components │ │ │ ├── OrdersChart.tsx │ │ │ └── SalesChart.tsx │ │ ├── index.tsx │ │ ├── interfaces │ │ │ └── BranchSaleDetails.tsx │ │ ├── layouts │ │ │ └── BranchSalesSummary.tsx │ │ ├── services │ │ │ └── SalesSummaryService.tsx │ │ └── utils │ │ │ ├── FakeData.ts │ │ │ ├── exportUtils.ts │ │ │ ├── getToday.ts │ │ │ └── monthlySalesSummary.ts │ ├── cashier-dashboard │ │ ├── components │ │ │ ├── bill-print-view │ │ │ │ └── BillComponent.tsx │ │ │ ├── cashier_dashboard_order_details_sidebar │ │ │ │ └── OrderDetailsSideBar.tsx │ │ │ ├── cashier_dashboard_payement_sidebar │ │ │ │ └── PaymentDrawer.tsx │ │ │ ├── cashier_dashboard_payment_confirm_popup │ │ │ │ └── ConfirmPaymentPopUp.tsx │ │ │ ├── first-aid-table │ │ │ │ └── FirstAidTable.tsx │ │ │ ├── medical-device-table │ │ │ │ └── MedicalDeviceTable.tsx │ │ │ ├── medicine-table │ │ │ │ ├── Medicine.tsx │ │ │ │ ├── MedicineColumns.tsx │ │ │ │ ├── MedicineGrid.tsx │ │ │ │ └── MedicineTable.tsx │ │ │ ├── nutrition-table │ │ │ │ └── NutritionTable.tsx │ │ │ ├── order-card │ │ │ │ └── OrderCardComponent.tsx │ │ │ ├── order-confirm │ │ │ │ └── MedineGridPopUp.tsx │ │ │ ├── order-details │ │ │ │ └── MedicineGrid.tsx │ │ │ ├── personal-care-table │ │ │ │ └── PersonalCareTable.tsx │ │ │ ├── sidebar │ │ │ │ └── CashierSideBar.tsx │ │ │ └── sports-table │ │ │ │ └── SportsTable.tsx │ │ ├── index.tsx │ │ ├── interfaces │ │ │ ├── IOrderDetails.tsx │ │ │ ├── OnlineOrder.tsx │ │ │ ├── OrderMedicine.tsx │ │ │ ├── PaymentContextType.tsx │ │ │ └── PaymentDetails.tsx │ │ ├── layout │ │ │ └── MainCashierDashboard.tsx │ │ ├── services │ │ │ ├── AuthService.tsx │ │ │ ├── CashierService.ts │ │ │ ├── ItemService.ts │ │ │ ├── OnlineOrderService.tsx │ │ │ └── OrderService.ts │ │ └── utils │ │ │ ├── __tests__ │ │ │ ├── mapIItemsToIMedicine.test.ts │ │ │ └── napIItemsToIOrderedMedicine.test.ts │ │ │ ├── mapIItemsToIMedicine.ts │ │ │ └── mapIItemsToIOrderedMedicine.ts │ ├── cashier-management │ │ ├── components │ │ │ ├── add-cashier │ │ │ │ ├── CashierBankDetails.tsx │ │ │ │ ├── CashierDetails.tsx │ │ │ │ └── CashierDetailsSummary.tsx │ │ │ ├── navbar │ │ │ │ └── CashierManagerNavBar.tsx │ │ │ ├── update-cashier │ │ │ │ ├── UpdateCashierBankDetails.tsx │ │ │ │ ├── UpdateCashierDetails.tsx │ │ │ │ └── UpdateCashierSummary.tsx │ │ │ └── view-cashier │ │ │ │ └── ViewCashier.tsx │ │ ├── context │ │ │ └── CashierContextType.tsx │ │ ├── index.tsx │ │ ├── interfaces │ │ │ ├── CashierDetailsType.tsx │ │ │ └── EmployerBankDetails.tsx │ │ ├── layout │ │ │ ├── AddCashier.tsx │ │ │ ├── UpdateCashier.tsx │ │ │ └── ViewCashier.tsx │ │ └── services │ │ │ ├── BankDetailsCRUDService.tsx │ │ │ └── CashierCRUDService.tsx │ ├── items-management │ │ ├── index.tsx │ │ ├── interfaces │ │ │ ├── Item.tsx │ │ │ ├── ItemCategoryDTO.tsx │ │ │ ├── ItemResponseDTO.tsx │ │ │ ├── SupplierCompanyDTO.tsx │ │ │ └── SupplierDTO.tsx │ │ ├── layout │ │ │ ├── AddItems.tsx │ │ │ ├── RemoveItems.tsx │ │ │ ├── UpdateItems.tsx │ │ │ └── ViewItem.tsx │ │ ├── services │ │ │ ├── ItemDetailsCRUDService.tsx │ │ │ └── ItemUpdateService.tsx │ │ └── utils │ │ │ ├── mapItemDTOtoItem.ts │ │ │ ├── mapResponseToItemDTO.ts │ │ │ └── validation.ts │ ├── login │ │ ├── components │ │ │ ├── EulaComponent.tsx │ │ │ ├── LogInCard.tsx │ │ │ ├── RecentCashier.tsx │ │ │ ├── RecentLogBar.tsx │ │ │ └── __tests__ │ │ │ │ └── LogInCard.test.tsx │ │ ├── index.tsx │ │ ├── layout │ │ │ └── LogInPageLayout.tsx │ │ ├── services │ │ │ ├── AuthService.test.tsx │ │ │ ├── AuthService.tsx │ │ │ └── useAxiosInstance.tsx │ │ └── utils │ │ │ ├── __tests__ │ │ │ └── mapEmployeeResponseToIEmployee.test.ts │ │ │ ├── getCookie.ts │ │ │ └── mapEmployeeReponseToIEmployee.ts │ ├── main-manager-dashboard │ │ ├── components │ │ │ ├── BranchDetailsCard.tsx │ │ │ ├── CashierRecentTransactionCard.tsx │ │ │ ├── LatestTransactionDetails.tsx │ │ │ └── SummaryCard.tsx │ │ ├── index.tsx │ │ ├── interfaces │ │ │ └── OrderDetails.ts │ │ ├── layout │ │ │ └── MainManagerDashboard.tsx │ │ └── services │ │ │ └── OrderService.tsx │ ├── manager-dashboard │ │ ├── components │ │ │ ├── cashiers │ │ │ │ └── CashierManagementWindow.tsx │ │ │ ├── feedbacks │ │ │ │ └── FeedbacksManagementWindow.tsx │ │ │ ├── items │ │ │ │ └── ItemsManagementWindow.tsx │ │ │ ├── main │ │ │ │ └── Dashboard.tsx │ │ │ ├── navbar │ │ │ │ └── ManagerNavbar.tsx │ │ │ ├── reports │ │ │ │ └── SavedReportsWindow.tsx │ │ │ ├── sales │ │ │ │ └── SalesManagementWindow.tsx │ │ │ ├── seller │ │ │ │ └── SellerManagementWindow.tsx │ │ │ └── sidebar │ │ │ │ └── ManagerSidebar.tsx │ │ ├── index.tsx │ │ ├── interfaces │ │ │ ├── IBranchData.tsx │ │ │ └── ICashierData.tsx │ │ ├── layout │ │ │ └── MainDashboard.tsx │ │ ├── services │ │ │ ├── AuthService.tsx │ │ │ ├── BranchService.tsx │ │ │ └── CashierService.tsx │ │ └── utils │ │ │ ├── __tests__ │ │ │ ├── cashierManagementUtils.test.ts │ │ │ └── mapResponseToEmployee.test.ts │ │ │ ├── cashierManagementUtils.ts │ │ │ └── mapResponseToEmployee.ts │ ├── order-management │ │ ├── components │ │ │ └── OrderCardComponent.tsx │ │ ├── index.tsx │ │ ├── interfaces │ │ │ └── OrderDetails.tsx │ │ ├── layouts │ │ │ └── OrderManagementWindow.tsx │ │ ├── services │ │ │ └── OrderManagementService.tsx │ │ └── utils │ │ │ ├── filterUtils.tsx │ │ │ └── foramtDate.tsx │ └── seller-management │ │ ├── components │ │ ├── AddCompanyModal.tsx │ │ └── UpdateCompanyModal.tsx │ │ ├── index.tsx │ │ ├── interfaces │ │ └── SellerCompany.tsx │ │ ├── layouts │ │ └── SellerManagement.tsx │ │ └── services │ │ └── SellerComapanyService.tsx ├── index.css ├── index.tsx ├── interfaces │ ├── IEmployeeInterface.tsx │ ├── IItemInterface.tsx │ └── IMedicine.tsx ├── logo.svg ├── pages │ ├── cashier-dashboard.tsx │ ├── cashier-password-page.tsx │ ├── error-route-page.tsx │ ├── login-page.tsx │ ├── manager-dashboard.tsx │ └── temporary-logout-page.tsx ├── react-app-env.d.ts ├── reportWebVitals.ts ├── services │ └── AuthenticationService.tsx ├── shared │ ├── __tests__ │ │ └── MedicineSearchBar.test.tsx │ ├── buttons │ │ ├── ButtonWithIconAndText.tsx │ │ ├── ButtonWithIconAndTextVertical.tsx │ │ ├── ButtonWithTextOnly.tsx │ │ ├── CountRoundButton.tsx │ │ ├── FooterButton.tsx │ │ └── PaymentMethodButton.tsx │ ├── cashier_login_numberpad │ │ └── NumberPad.tsx │ ├── cashier_profile │ │ └── ProfileNameCard.tsx │ ├── charts │ │ ├── BarGraph.tsx │ │ └── DoughnutChart.tsx │ ├── clock │ │ ├── DateAndClock.tsx │ │ └── DateAndTimeNavBar.tsx │ ├── divider │ │ ├── Divider.tsx │ │ └── HorizontalDivider.tsx │ ├── loader │ │ └── Loader.tsx │ ├── navbar │ │ └── CashierNavBar.tsx │ ├── payment_numberpad │ │ └── PaymentNumberPad.tsx │ ├── searchbar │ │ └── MedicineSearchBar.tsx │ └── table_row │ │ └── TableRow.tsx └── utils │ ├── date │ └── getToday.ts │ └── validators │ ├── EmailValidator.ts │ ├── passwordStrengthCheck.ts │ ├── passwordValidator.ts │ └── userNameValidator.ts ├── tailwind.config.js ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pharmacy-pos-frontend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/.idea/pharmacy-pos-frontend.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /@shadcn/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/@shadcn/components/ui/table.tsx -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/components.json -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jest-html-reporters-attach/jest_html_reporters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/jest-html-reporters-attach/jest_html_reporters/index.js -------------------------------------------------------------------------------- /jest-html-reporters-attach/jest_html_reporters/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/jest-html-reporters-attach/jest_html_reporters/result.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.config.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/jest.config.node.js -------------------------------------------------------------------------------- /jest_html_reporters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/jest_html_reporters.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/public/electron.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/public/preload.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/@shadcn/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/@shadcn/components/ui/table.tsx -------------------------------------------------------------------------------- /src/@shadcn/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/@shadcn/lib/utils.ts -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__tests__/validators/emailValidate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/__tests__/validators/emailValidate.spec.ts -------------------------------------------------------------------------------- /src/__tests__/validators/passwordStrengthCheck.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/__tests__/validators/passwordStrengthCheck.spec.ts -------------------------------------------------------------------------------- /src/__tests__/validators/passwordValidator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/__tests__/validators/passwordValidator.spec.ts -------------------------------------------------------------------------------- /src/__tests__/validators/userNameValidator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/__tests__/validators/userNameValidator.spec.ts -------------------------------------------------------------------------------- /src/assets/fakedata/branchsales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fakedata/branchsales.ts -------------------------------------------------------------------------------- /src/assets/fakedata/cashiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fakedata/cashiers.ts -------------------------------------------------------------------------------- /src/assets/fakedata/managerdashboardrecenttransactiondata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fakedata/managerdashboardrecenttransactiondata.ts -------------------------------------------------------------------------------- /src/assets/fakedata/medicine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fakedata/medicine.ts -------------------------------------------------------------------------------- /src/assets/fakedata/orderdetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fakedata/orderdetails.ts -------------------------------------------------------------------------------- /src/assets/fakedata/transactiondetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fakedata/transactiondetails.ts -------------------------------------------------------------------------------- /src/assets/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/OFL.txt -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/fonts/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /src/assets/icons/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/icons/mastercard.png -------------------------------------------------------------------------------- /src/assets/icons/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/icons/money.png -------------------------------------------------------------------------------- /src/assets/icons/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/icons/visa.png -------------------------------------------------------------------------------- /src/assets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/index.tsx -------------------------------------------------------------------------------- /src/assets/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/logo/logo.png -------------------------------------------------------------------------------- /src/assets/lottie/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/assets/lottie/loading.json -------------------------------------------------------------------------------- /src/context/UserContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/context/UserContext.tsx -------------------------------------------------------------------------------- /src/electron/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/electron/electron.js -------------------------------------------------------------------------------- /src/electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/electron/preload.js -------------------------------------------------------------------------------- /src/features/branch-sales-summary/components/OrdersChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/branch-sales-summary/components/OrdersChart.tsx -------------------------------------------------------------------------------- /src/features/branch-sales-summary/components/SalesChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/branch-sales-summary/components/SalesChart.tsx -------------------------------------------------------------------------------- /src/features/branch-sales-summary/index.tsx: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/features/branch-sales-summary/interfaces/BranchSaleDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/branch-sales-summary/interfaces/BranchSaleDetails.tsx -------------------------------------------------------------------------------- /src/features/branch-sales-summary/layouts/BranchSalesSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/branch-sales-summary/layouts/BranchSalesSummary.tsx -------------------------------------------------------------------------------- /src/features/branch-sales-summary/services/SalesSummaryService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/branch-sales-summary/services/SalesSummaryService.tsx -------------------------------------------------------------------------------- /src/features/branch-sales-summary/utils/FakeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/branch-sales-summary/utils/FakeData.ts -------------------------------------------------------------------------------- /src/features/branch-sales-summary/utils/exportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/branch-sales-summary/utils/exportUtils.ts -------------------------------------------------------------------------------- /src/features/branch-sales-summary/utils/getToday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/branch-sales-summary/utils/getToday.ts -------------------------------------------------------------------------------- /src/features/branch-sales-summary/utils/monthlySalesSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/branch-sales-summary/utils/monthlySalesSummary.ts -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/bill-print-view/BillComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/bill-print-view/BillComponent.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/cashier_dashboard_order_details_sidebar/OrderDetailsSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/cashier_dashboard_order_details_sidebar/OrderDetailsSideBar.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/cashier_dashboard_payement_sidebar/PaymentDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/cashier_dashboard_payement_sidebar/PaymentDrawer.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/cashier_dashboard_payment_confirm_popup/ConfirmPaymentPopUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/cashier_dashboard_payment_confirm_popup/ConfirmPaymentPopUp.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/first-aid-table/FirstAidTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/first-aid-table/FirstAidTable.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/medical-device-table/MedicalDeviceTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/medical-device-table/MedicalDeviceTable.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/medicine-table/Medicine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/medicine-table/Medicine.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/medicine-table/MedicineColumns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/medicine-table/MedicineColumns.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/medicine-table/MedicineGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/medicine-table/MedicineGrid.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/medicine-table/MedicineTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/medicine-table/MedicineTable.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/nutrition-table/NutritionTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/nutrition-table/NutritionTable.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/order-card/OrderCardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/order-card/OrderCardComponent.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/order-confirm/MedineGridPopUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/order-confirm/MedineGridPopUp.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/order-details/MedicineGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/order-details/MedicineGrid.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/personal-care-table/PersonalCareTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/personal-care-table/PersonalCareTable.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/sidebar/CashierSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/sidebar/CashierSideBar.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/components/sports-table/SportsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/components/sports-table/SportsTable.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/index.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/interfaces/IOrderDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/interfaces/IOrderDetails.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/interfaces/OnlineOrder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/interfaces/OnlineOrder.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/interfaces/OrderMedicine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/interfaces/OrderMedicine.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/interfaces/PaymentContextType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/interfaces/PaymentContextType.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/interfaces/PaymentDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/interfaces/PaymentDetails.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/layout/MainCashierDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/layout/MainCashierDashboard.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/services/AuthService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/services/AuthService.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/services/CashierService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/services/CashierService.ts -------------------------------------------------------------------------------- /src/features/cashier-dashboard/services/ItemService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/services/ItemService.ts -------------------------------------------------------------------------------- /src/features/cashier-dashboard/services/OnlineOrderService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/services/OnlineOrderService.tsx -------------------------------------------------------------------------------- /src/features/cashier-dashboard/services/OrderService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/services/OrderService.ts -------------------------------------------------------------------------------- /src/features/cashier-dashboard/utils/__tests__/mapIItemsToIMedicine.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/utils/__tests__/mapIItemsToIMedicine.test.ts -------------------------------------------------------------------------------- /src/features/cashier-dashboard/utils/__tests__/napIItemsToIOrderedMedicine.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/utils/__tests__/napIItemsToIOrderedMedicine.test.ts -------------------------------------------------------------------------------- /src/features/cashier-dashboard/utils/mapIItemsToIMedicine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/utils/mapIItemsToIMedicine.ts -------------------------------------------------------------------------------- /src/features/cashier-dashboard/utils/mapIItemsToIOrderedMedicine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-dashboard/utils/mapIItemsToIOrderedMedicine.ts -------------------------------------------------------------------------------- /src/features/cashier-management/components/add-cashier/CashierBankDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/components/add-cashier/CashierBankDetails.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/components/add-cashier/CashierDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/components/add-cashier/CashierDetails.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/components/add-cashier/CashierDetailsSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/components/add-cashier/CashierDetailsSummary.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/components/navbar/CashierManagerNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/components/navbar/CashierManagerNavBar.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/components/update-cashier/UpdateCashierBankDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/components/update-cashier/UpdateCashierBankDetails.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/components/update-cashier/UpdateCashierDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/components/update-cashier/UpdateCashierDetails.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/components/update-cashier/UpdateCashierSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/components/update-cashier/UpdateCashierSummary.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/components/view-cashier/ViewCashier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/components/view-cashier/ViewCashier.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/context/CashierContextType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/context/CashierContextType.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/index.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/interfaces/CashierDetailsType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/interfaces/CashierDetailsType.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/interfaces/EmployerBankDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/interfaces/EmployerBankDetails.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/layout/AddCashier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/layout/AddCashier.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/layout/UpdateCashier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/layout/UpdateCashier.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/layout/ViewCashier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/layout/ViewCashier.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/services/BankDetailsCRUDService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/services/BankDetailsCRUDService.tsx -------------------------------------------------------------------------------- /src/features/cashier-management/services/CashierCRUDService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/cashier-management/services/CashierCRUDService.tsx -------------------------------------------------------------------------------- /src/features/items-management/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/index.tsx -------------------------------------------------------------------------------- /src/features/items-management/interfaces/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/interfaces/Item.tsx -------------------------------------------------------------------------------- /src/features/items-management/interfaces/ItemCategoryDTO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/interfaces/ItemCategoryDTO.tsx -------------------------------------------------------------------------------- /src/features/items-management/interfaces/ItemResponseDTO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/interfaces/ItemResponseDTO.tsx -------------------------------------------------------------------------------- /src/features/items-management/interfaces/SupplierCompanyDTO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/interfaces/SupplierCompanyDTO.tsx -------------------------------------------------------------------------------- /src/features/items-management/interfaces/SupplierDTO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/interfaces/SupplierDTO.tsx -------------------------------------------------------------------------------- /src/features/items-management/layout/AddItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/layout/AddItems.tsx -------------------------------------------------------------------------------- /src/features/items-management/layout/RemoveItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/layout/RemoveItems.tsx -------------------------------------------------------------------------------- /src/features/items-management/layout/UpdateItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/layout/UpdateItems.tsx -------------------------------------------------------------------------------- /src/features/items-management/layout/ViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/layout/ViewItem.tsx -------------------------------------------------------------------------------- /src/features/items-management/services/ItemDetailsCRUDService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/services/ItemDetailsCRUDService.tsx -------------------------------------------------------------------------------- /src/features/items-management/services/ItemUpdateService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/services/ItemUpdateService.tsx -------------------------------------------------------------------------------- /src/features/items-management/utils/mapItemDTOtoItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/utils/mapItemDTOtoItem.ts -------------------------------------------------------------------------------- /src/features/items-management/utils/mapResponseToItemDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/utils/mapResponseToItemDTO.ts -------------------------------------------------------------------------------- /src/features/items-management/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/items-management/utils/validation.ts -------------------------------------------------------------------------------- /src/features/login/components/EulaComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/components/EulaComponent.tsx -------------------------------------------------------------------------------- /src/features/login/components/LogInCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/components/LogInCard.tsx -------------------------------------------------------------------------------- /src/features/login/components/RecentCashier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/components/RecentCashier.tsx -------------------------------------------------------------------------------- /src/features/login/components/RecentLogBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/components/RecentLogBar.tsx -------------------------------------------------------------------------------- /src/features/login/components/__tests__/LogInCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/components/__tests__/LogInCard.test.tsx -------------------------------------------------------------------------------- /src/features/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/index.tsx -------------------------------------------------------------------------------- /src/features/login/layout/LogInPageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/layout/LogInPageLayout.tsx -------------------------------------------------------------------------------- /src/features/login/services/AuthService.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/services/AuthService.test.tsx -------------------------------------------------------------------------------- /src/features/login/services/AuthService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/services/AuthService.tsx -------------------------------------------------------------------------------- /src/features/login/services/useAxiosInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/services/useAxiosInstance.tsx -------------------------------------------------------------------------------- /src/features/login/utils/__tests__/mapEmployeeResponseToIEmployee.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/utils/__tests__/mapEmployeeResponseToIEmployee.test.ts -------------------------------------------------------------------------------- /src/features/login/utils/getCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/utils/getCookie.ts -------------------------------------------------------------------------------- /src/features/login/utils/mapEmployeeReponseToIEmployee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/login/utils/mapEmployeeReponseToIEmployee.ts -------------------------------------------------------------------------------- /src/features/main-manager-dashboard/components/BranchDetailsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/main-manager-dashboard/components/BranchDetailsCard.tsx -------------------------------------------------------------------------------- /src/features/main-manager-dashboard/components/CashierRecentTransactionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/main-manager-dashboard/components/CashierRecentTransactionCard.tsx -------------------------------------------------------------------------------- /src/features/main-manager-dashboard/components/LatestTransactionDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/main-manager-dashboard/components/LatestTransactionDetails.tsx -------------------------------------------------------------------------------- /src/features/main-manager-dashboard/components/SummaryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/main-manager-dashboard/components/SummaryCard.tsx -------------------------------------------------------------------------------- /src/features/main-manager-dashboard/index.tsx: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/features/main-manager-dashboard/interfaces/OrderDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/main-manager-dashboard/interfaces/OrderDetails.ts -------------------------------------------------------------------------------- /src/features/main-manager-dashboard/layout/MainManagerDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/main-manager-dashboard/layout/MainManagerDashboard.tsx -------------------------------------------------------------------------------- /src/features/main-manager-dashboard/services/OrderService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/main-manager-dashboard/services/OrderService.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/components/cashiers/CashierManagementWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/components/cashiers/CashierManagementWindow.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/components/feedbacks/FeedbacksManagementWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/components/feedbacks/FeedbacksManagementWindow.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/components/items/ItemsManagementWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/components/items/ItemsManagementWindow.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/components/main/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/components/main/Dashboard.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/components/navbar/ManagerNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/components/navbar/ManagerNavbar.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/components/reports/SavedReportsWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/components/reports/SavedReportsWindow.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/components/sales/SalesManagementWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/components/sales/SalesManagementWindow.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/components/seller/SellerManagementWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/components/seller/SellerManagementWindow.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/components/sidebar/ManagerSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/components/sidebar/ManagerSidebar.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/index.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/interfaces/IBranchData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/interfaces/IBranchData.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/interfaces/ICashierData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/interfaces/ICashierData.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/layout/MainDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/layout/MainDashboard.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/services/AuthService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/services/AuthService.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/services/BranchService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/services/BranchService.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/services/CashierService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/services/CashierService.tsx -------------------------------------------------------------------------------- /src/features/manager-dashboard/utils/__tests__/cashierManagementUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/utils/__tests__/cashierManagementUtils.test.ts -------------------------------------------------------------------------------- /src/features/manager-dashboard/utils/__tests__/mapResponseToEmployee.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/utils/__tests__/mapResponseToEmployee.test.ts -------------------------------------------------------------------------------- /src/features/manager-dashboard/utils/cashierManagementUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/utils/cashierManagementUtils.ts -------------------------------------------------------------------------------- /src/features/manager-dashboard/utils/mapResponseToEmployee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/manager-dashboard/utils/mapResponseToEmployee.ts -------------------------------------------------------------------------------- /src/features/order-management/components/OrderCardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/order-management/components/OrderCardComponent.tsx -------------------------------------------------------------------------------- /src/features/order-management/index.tsx: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/features/order-management/interfaces/OrderDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/order-management/interfaces/OrderDetails.tsx -------------------------------------------------------------------------------- /src/features/order-management/layouts/OrderManagementWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/order-management/layouts/OrderManagementWindow.tsx -------------------------------------------------------------------------------- /src/features/order-management/services/OrderManagementService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/order-management/services/OrderManagementService.tsx -------------------------------------------------------------------------------- /src/features/order-management/utils/filterUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/order-management/utils/filterUtils.tsx -------------------------------------------------------------------------------- /src/features/order-management/utils/foramtDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/order-management/utils/foramtDate.tsx -------------------------------------------------------------------------------- /src/features/seller-management/components/AddCompanyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/seller-management/components/AddCompanyModal.tsx -------------------------------------------------------------------------------- /src/features/seller-management/components/UpdateCompanyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/seller-management/components/UpdateCompanyModal.tsx -------------------------------------------------------------------------------- /src/features/seller-management/index.tsx: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/features/seller-management/interfaces/SellerCompany.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/seller-management/interfaces/SellerCompany.tsx -------------------------------------------------------------------------------- /src/features/seller-management/layouts/SellerManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/seller-management/layouts/SellerManagement.tsx -------------------------------------------------------------------------------- /src/features/seller-management/services/SellerComapanyService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/features/seller-management/services/SellerComapanyService.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/interfaces/IEmployeeInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/interfaces/IEmployeeInterface.tsx -------------------------------------------------------------------------------- /src/interfaces/IItemInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/interfaces/IItemInterface.tsx -------------------------------------------------------------------------------- /src/interfaces/IMedicine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/interfaces/IMedicine.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/cashier-dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/pages/cashier-dashboard.tsx -------------------------------------------------------------------------------- /src/pages/cashier-password-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/pages/cashier-password-page.tsx -------------------------------------------------------------------------------- /src/pages/error-route-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/pages/error-route-page.tsx -------------------------------------------------------------------------------- /src/pages/login-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/pages/login-page.tsx -------------------------------------------------------------------------------- /src/pages/manager-dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/pages/manager-dashboard.tsx -------------------------------------------------------------------------------- /src/pages/temporary-logout-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/pages/temporary-logout-page.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/services/AuthenticationService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/services/AuthenticationService.tsx -------------------------------------------------------------------------------- /src/shared/__tests__/MedicineSearchBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/__tests__/MedicineSearchBar.test.tsx -------------------------------------------------------------------------------- /src/shared/buttons/ButtonWithIconAndText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/buttons/ButtonWithIconAndText.tsx -------------------------------------------------------------------------------- /src/shared/buttons/ButtonWithIconAndTextVertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/buttons/ButtonWithIconAndTextVertical.tsx -------------------------------------------------------------------------------- /src/shared/buttons/ButtonWithTextOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/buttons/ButtonWithTextOnly.tsx -------------------------------------------------------------------------------- /src/shared/buttons/CountRoundButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/buttons/CountRoundButton.tsx -------------------------------------------------------------------------------- /src/shared/buttons/FooterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/buttons/FooterButton.tsx -------------------------------------------------------------------------------- /src/shared/buttons/PaymentMethodButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/buttons/PaymentMethodButton.tsx -------------------------------------------------------------------------------- /src/shared/cashier_login_numberpad/NumberPad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/cashier_login_numberpad/NumberPad.tsx -------------------------------------------------------------------------------- /src/shared/cashier_profile/ProfileNameCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/cashier_profile/ProfileNameCard.tsx -------------------------------------------------------------------------------- /src/shared/charts/BarGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/charts/BarGraph.tsx -------------------------------------------------------------------------------- /src/shared/charts/DoughnutChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/charts/DoughnutChart.tsx -------------------------------------------------------------------------------- /src/shared/clock/DateAndClock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/clock/DateAndClock.tsx -------------------------------------------------------------------------------- /src/shared/clock/DateAndTimeNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/clock/DateAndTimeNavBar.tsx -------------------------------------------------------------------------------- /src/shared/divider/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/divider/Divider.tsx -------------------------------------------------------------------------------- /src/shared/divider/HorizontalDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/divider/HorizontalDivider.tsx -------------------------------------------------------------------------------- /src/shared/loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/loader/Loader.tsx -------------------------------------------------------------------------------- /src/shared/navbar/CashierNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/navbar/CashierNavBar.tsx -------------------------------------------------------------------------------- /src/shared/payment_numberpad/PaymentNumberPad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/payment_numberpad/PaymentNumberPad.tsx -------------------------------------------------------------------------------- /src/shared/searchbar/MedicineSearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/searchbar/MedicineSearchBar.tsx -------------------------------------------------------------------------------- /src/shared/table_row/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/shared/table_row/TableRow.tsx -------------------------------------------------------------------------------- /src/utils/date/getToday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/utils/date/getToday.ts -------------------------------------------------------------------------------- /src/utils/validators/EmailValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/utils/validators/EmailValidator.ts -------------------------------------------------------------------------------- /src/utils/validators/passwordStrengthCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/utils/validators/passwordStrengthCheck.ts -------------------------------------------------------------------------------- /src/utils/validators/passwordValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/utils/validators/passwordValidator.ts -------------------------------------------------------------------------------- /src/utils/validators/userNameValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/src/utils/validators/userNameValidator.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurox-io/React-Frontend/HEAD/yarn.lock --------------------------------------------------------------------------------