├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .whitesource ├── .yarnrc ├── CHANGELOG.md ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── cypress.json ├── cypress ├── cypress.d.ts ├── integration │ ├── common-components │ │ ├── appointments-lnd.spec.ts │ │ ├── data-table.spec.ts │ │ ├── editable-list.spec.ts │ │ ├── label.spec.ts │ │ ├── section.spec.ts │ │ └── tag-input.spec.ts │ ├── main-components │ │ ├── header.spec.ts │ │ ├── home.spec.ts │ │ ├── login.spec.ts │ │ ├── menu.spec.ts │ │ └── user-panel.spec.ts │ └── modules │ │ ├── appointments.spec.ts │ │ ├── labwork.spec.ts │ │ ├── prescriptions.spec.ts │ │ ├── todo.orthodontics.spec.ts │ │ ├── todo.patients.spec.ts │ │ ├── todo.settings.spec.ts │ │ ├── todo.staff.spec.ts │ │ ├── todo.stats.spec.ts │ │ └── treatments.spec.ts ├── plugins │ └── index.js └── support │ ├── commands.ts │ └── index.ts ├── dist └── application │ ├── 0.app.js │ ├── 1.app.js │ ├── 2.app.js │ ├── 3.app.js │ ├── 4.app.js │ ├── CNAME │ ├── _session │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── app.js │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── demo.json │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── fonts │ ├── fabric-icons-72e4a0ad.woff │ ├── fabric-icons-8d8d4ac2.woff │ └── segoeui-westeuropean │ │ ├── segoeui-light.woff │ │ ├── segoeui-light.woff2 │ │ ├── segoeui-regular.woff │ │ ├── segoeui-regular.woff2 │ │ ├── segoeui-semibold.woff │ │ ├── segoeui-semibold.woff2 │ │ ├── segoeui-semilight.woff │ │ └── segoeui-semilight.woff2 │ ├── icon.png │ ├── index.html │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ ├── site.webmanifest │ ├── style.css │ ├── upup.min.js │ └── upup.sw.min.js ├── docs ├── 00-intro.md ├── 01-front.md ├── 02-server.md ├── 03-dropbox.md ├── dropbox0.png ├── dropbox1.png ├── script.js └── style.css ├── icon-final.ico ├── icon-final.png ├── index.html ├── jest.config.js ├── lite-server.json ├── mocks ├── browser-mocks.ts ├── setup-enzyme-tests.ts └── state-mocks.ts ├── package.json ├── scripts ├── analyze-prod.sh ├── analyze.sh ├── build-desktop.sh ├── build-development.sh ├── build-production.sh ├── deploy.sh ├── lint.sh ├── serve.sh ├── start.sh └── upload.sh ├── src ├── app.tsx ├── common-components │ ├── appointments-lnd.tsx │ ├── charts │ │ ├── bar.tsx │ │ ├── colors.ts │ │ ├── index.ts │ │ ├── line.tsx │ │ └── pie.tsx │ ├── data-table.tsx │ ├── editable-list.tsx │ ├── grid-table.tsx │ ├── grid │ │ ├── col.tsx │ │ ├── index.ts │ │ └── row.tsx │ ├── index.ts │ ├── label.tsx │ ├── last-next-appointments.tsx │ ├── page-loader.tsx │ ├── panel-tabs.tsx │ ├── panel-top.tsx │ ├── pick-files │ │ ├── crop.tsx │ │ └── pick-files.tsx │ ├── profile │ │ ├── index.ts │ │ ├── profile-squared.tsx │ │ └── profile.tsx │ ├── section.tsx │ ├── table-actions.tsx │ └── tag-input.tsx ├── core │ ├── db │ │ ├── index.ts │ │ ├── transform-pouch.d.ts │ │ └── transform.ts │ ├── demo.ts │ ├── icons-subset │ │ ├── subset-a │ │ │ ├── IconNames.ts │ │ │ ├── data │ │ │ │ └── AllIconNames.json │ │ │ ├── fabric-icons.ts │ │ │ ├── iconAliases.ts │ │ │ └── index.ts │ │ └── subset-b │ │ │ ├── IconNames.ts │ │ │ ├── data │ │ │ └── AllIconNames.json │ │ │ ├── fabric-icons.ts │ │ │ ├── iconAliases.ts │ │ │ └── index.ts │ ├── images-table.ts │ ├── index.ts │ ├── internationalization │ │ ├── index.ts │ │ ├── lang.test.ts │ │ ├── lang.ts │ │ └── languages │ │ │ ├── ar.ts │ │ │ ├── de.ts │ │ │ ├── es.ts │ │ │ ├── raw.ts │ │ │ └── zh-cn.ts │ ├── services │ │ ├── backup.ts │ │ ├── files.test.ts │ │ ├── files.ts │ │ └── login.ts │ └── status.ts ├── index.html ├── main-components │ ├── choose-user.tsx │ ├── header.tsx │ ├── home.tsx │ ├── index.ts │ ├── login.tsx │ ├── main.tsx │ ├── menu.data.ts │ ├── menu.test.ts │ ├── menu.tsx │ ├── messages.data.ts │ ├── messages.test.ts │ ├── messages.tsx │ ├── modal.tsx │ ├── modals.data.ts │ ├── modals.test.ts │ ├── router.test.tsx │ ├── router.tsx │ ├── user.data.ts │ ├── user.test.ts │ └── user.tsx ├── modules │ ├── appointments │ │ ├── components │ │ │ ├── appointment-editor.tsx │ │ │ ├── appointments-list.tsx │ │ │ ├── index.ts │ │ │ └── page.calendar.tsx │ │ ├── data │ │ │ ├── calendar.ts │ │ │ ├── index.ts │ │ │ ├── model.appointment.ts │ │ │ ├── namespace.appointments.ts │ │ │ ├── schema.appointment.ts │ │ │ └── store.appointments.ts │ │ ├── index.ts │ │ └── register-calendar.tsx │ ├── index.ts │ ├── labwork │ │ ├── components │ │ │ └── page.labwork.tsx │ │ ├── data │ │ │ ├── index.ts │ │ │ ├── model.labwork.ts │ │ │ ├── namespace.labwork.ts │ │ │ ├── schema.labwork.ts │ │ │ └── store.labwork.ts │ │ ├── index.ts │ │ └── register-labwork.tsx │ ├── orthodontic │ │ ├── components │ │ │ ├── case-sheet.tsx │ │ │ └── page.orthodontic.tsx │ │ ├── data │ │ │ ├── index.ts │ │ │ ├── model.ortho.ts │ │ │ ├── namespace.orthodontic.ts │ │ │ ├── schema.orthocase.ts │ │ │ └── store.ortho.ts │ │ ├── index.ts │ │ └── register-orthodontic.tsx │ ├── patients │ │ ├── components │ │ │ ├── dental-history.tsx │ │ │ ├── gallery.tsx │ │ │ ├── index.ts │ │ │ ├── page.patients.tsx │ │ │ ├── patient-appointments.tsx │ │ │ ├── patient-details.tsx │ │ │ ├── patient-link.tsx │ │ │ ├── teeth-deciduous.tsx │ │ │ └── teeth-permanent.tsx │ │ ├── data │ │ │ ├── const.iso.ts │ │ │ ├── enum.gender.ts │ │ │ ├── enum.toothCondition.ts │ │ │ ├── index.ts │ │ │ ├── interface.label.ts │ │ │ ├── model.patient.ts │ │ │ ├── model.tooth.ts │ │ │ ├── namespace.patients.ts │ │ │ ├── scheam.tooth.ts │ │ │ ├── schema.patient.ts │ │ │ └── store.patients.ts │ │ ├── index.ts │ │ └── register-patients.tsx │ ├── prescriptions │ │ ├── components │ │ │ └── page.prescriptions.tsx │ │ ├── data │ │ │ ├── enum.form.ts │ │ │ ├── index.ts │ │ │ ├── model.prescription-item.ts │ │ │ ├── namespace.prescriptions.ts │ │ │ ├── schema.prescription-item.ts │ │ │ └── store.prescriptions.ts │ │ ├── index.ts │ │ └── register-prescriptions.tsx │ ├── register-modules.ts │ ├── settings │ │ ├── components │ │ │ └── page.settings.tsx │ │ ├── data │ │ │ ├── const.dictionary.ts │ │ │ ├── index.ts │ │ │ ├── model.setting.ts │ │ │ ├── namespace.settings.ts │ │ │ ├── schema.settingitem.ts │ │ │ └── store.setting.ts │ │ ├── index.ts │ │ └── register-settings.tsx │ ├── staff │ │ ├── components │ │ │ └── page.staff.tsx │ │ ├── data │ │ │ ├── index.ts │ │ │ ├── model.member.ts │ │ │ ├── namespace.staff.ts │ │ │ ├── schema.member.ts │ │ │ └── store.staff.ts │ │ ├── index.ts │ │ └── register-staff.tsx │ ├── statistics │ │ ├── components │ │ │ ├── chart.age.tsx │ │ │ ├── chart.appointments-date.tsx │ │ │ ├── chart.finance.tsx │ │ │ ├── chart.gender.tsx │ │ │ ├── chart.most-applied-treatments.tsx │ │ │ ├── chart.most-involved-teeth.tsx │ │ │ ├── chart.treatments-gender.tsx │ │ │ ├── chart.treatments-number.tsx │ │ │ └── page.statistics.tsx │ │ ├── data │ │ │ ├── const.colors.ts │ │ │ ├── data.statistics.ts │ │ │ ├── index.ts │ │ │ ├── interface.chart.ts │ │ │ └── namespace.statistics.ts │ │ ├── index.ts │ │ └── register-statistics.tsx │ └── treatments │ │ ├── components │ │ └── page.treatments.tsx │ │ ├── data │ │ ├── index.ts │ │ ├── model.treatment.ts │ │ ├── namespace.treatments.ts │ │ ├── schema.treatment.ts │ │ └── store.treatments.ts │ │ ├── index.ts │ │ └── register-treatments.tsx ├── styles │ ├── appointment-editor.scss │ ├── appointments-list.scss │ ├── appointments-lnd.scss │ ├── calendar.scss │ ├── crop.scss │ ├── data-table.scss │ ├── date-link.scss │ ├── dental-history.scss │ ├── editable-list.scss │ ├── gallery.scss │ ├── global-styles │ │ ├── animations.scss │ │ ├── fabric-fixes.scss │ │ ├── grid-system.scss │ │ ├── input-boxes.scss │ │ ├── margin-helpers.scss │ │ ├── mobile.scss │ │ ├── normalize.scss │ │ ├── padding-helpers.scss │ │ ├── rtl.scss │ │ ├── shadows.scss │ │ └── text-helpers.scss │ ├── grid-table.scss │ ├── grid.scss │ ├── header.scss │ ├── home.scss │ ├── index.scss │ ├── label.scss │ ├── labwork.scss │ ├── login.scss │ ├── main.scss │ ├── menu.scss │ ├── messages.scss │ ├── modal.scss │ ├── ortho-list.scss │ ├── panel-tabs.scss │ ├── patient-appointments.scss │ ├── patient-details.scss │ ├── patient-link.scss │ ├── patients-listing.scss │ ├── prescription-table.scss │ ├── profile-squared.scss │ ├── records.scss │ ├── section.scss │ ├── settings.scss │ ├── staff-listing.scss │ ├── statistics.scss │ ├── tag-input.scss │ ├── treatments.scss │ └── user.scss └── utils │ ├── base64.test.ts │ ├── base64.ts │ ├── date.test.ts │ ├── date.ts │ ├── encryption.test.ts │ ├── encryption.ts │ ├── escape-regex.test.ts │ ├── escape-regex.ts │ ├── generate-id.test.ts │ ├── generate-id.ts │ ├── gphotos.ts │ ├── index.ts │ ├── is-online.test.ts │ ├── is-online.ts │ ├── log.ts │ ├── num.test.ts │ ├── num.ts │ ├── round.test.ts │ ├── round.ts │ ├── store.test.ts │ ├── store.ts │ ├── teeth-numbering-systems.test.ts │ ├── teeth-numbering-systems.ts │ ├── textual-filter.test.ts │ ├── textual-filter.ts │ └── username.ts ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/.gitignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/.whitesource -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docs.apexo.app -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/cypress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/cypress.d.ts -------------------------------------------------------------------------------- /cypress/integration/common-components/appointments-lnd.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/common-components/appointments-lnd.spec.ts -------------------------------------------------------------------------------- /cypress/integration/common-components/data-table.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/common-components/data-table.spec.ts -------------------------------------------------------------------------------- /cypress/integration/common-components/editable-list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/common-components/editable-list.spec.ts -------------------------------------------------------------------------------- /cypress/integration/common-components/label.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/common-components/label.spec.ts -------------------------------------------------------------------------------- /cypress/integration/common-components/section.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/common-components/section.spec.ts -------------------------------------------------------------------------------- /cypress/integration/common-components/tag-input.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/common-components/tag-input.spec.ts -------------------------------------------------------------------------------- /cypress/integration/main-components/header.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/main-components/header.spec.ts -------------------------------------------------------------------------------- /cypress/integration/main-components/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/main-components/home.spec.ts -------------------------------------------------------------------------------- /cypress/integration/main-components/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/main-components/login.spec.ts -------------------------------------------------------------------------------- /cypress/integration/main-components/menu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/main-components/menu.spec.ts -------------------------------------------------------------------------------- /cypress/integration/main-components/user-panel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/main-components/user-panel.spec.ts -------------------------------------------------------------------------------- /cypress/integration/modules/appointments.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/modules/appointments.spec.ts -------------------------------------------------------------------------------- /cypress/integration/modules/labwork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/modules/labwork.spec.ts -------------------------------------------------------------------------------- /cypress/integration/modules/prescriptions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/modules/prescriptions.spec.ts -------------------------------------------------------------------------------- /cypress/integration/modules/todo.orthodontics.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/integration/modules/todo.patients.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/integration/modules/todo.settings.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/integration/modules/todo.staff.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/modules/todo.staff.spec.ts -------------------------------------------------------------------------------- /cypress/integration/modules/todo.stats.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/integration/modules/treatments.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/integration/modules/treatments.spec.ts -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /dist/application/0.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/0.app.js -------------------------------------------------------------------------------- /dist/application/1.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/1.app.js -------------------------------------------------------------------------------- /dist/application/2.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/2.app.js -------------------------------------------------------------------------------- /dist/application/3.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/3.app.js -------------------------------------------------------------------------------- /dist/application/4.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/4.app.js -------------------------------------------------------------------------------- /dist/application/CNAME: -------------------------------------------------------------------------------- 1 | web.apexo.app -------------------------------------------------------------------------------- /dist/application/_session: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /dist/application/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/android-chrome-192x192.png -------------------------------------------------------------------------------- /dist/application/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/android-chrome-512x512.png -------------------------------------------------------------------------------- /dist/application/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/app.js -------------------------------------------------------------------------------- /dist/application/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /dist/application/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /dist/application/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /dist/application/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /dist/application/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /dist/application/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /dist/application/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /dist/application/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /dist/application/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /dist/application/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/apple-touch-icon.png -------------------------------------------------------------------------------- /dist/application/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/browserconfig.xml -------------------------------------------------------------------------------- /dist/application/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/demo.json -------------------------------------------------------------------------------- /dist/application/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/favicon-16x16.png -------------------------------------------------------------------------------- /dist/application/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/favicon-32x32.png -------------------------------------------------------------------------------- /dist/application/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/favicon.ico -------------------------------------------------------------------------------- /dist/application/fonts/fabric-icons-72e4a0ad.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/fabric-icons-72e4a0ad.woff -------------------------------------------------------------------------------- /dist/application/fonts/fabric-icons-8d8d4ac2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/fabric-icons-8d8d4ac2.woff -------------------------------------------------------------------------------- /dist/application/fonts/segoeui-westeuropean/segoeui-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/segoeui-westeuropean/segoeui-light.woff -------------------------------------------------------------------------------- /dist/application/fonts/segoeui-westeuropean/segoeui-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/segoeui-westeuropean/segoeui-light.woff2 -------------------------------------------------------------------------------- /dist/application/fonts/segoeui-westeuropean/segoeui-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/segoeui-westeuropean/segoeui-regular.woff -------------------------------------------------------------------------------- /dist/application/fonts/segoeui-westeuropean/segoeui-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/segoeui-westeuropean/segoeui-regular.woff2 -------------------------------------------------------------------------------- /dist/application/fonts/segoeui-westeuropean/segoeui-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/segoeui-westeuropean/segoeui-semibold.woff -------------------------------------------------------------------------------- /dist/application/fonts/segoeui-westeuropean/segoeui-semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/segoeui-westeuropean/segoeui-semibold.woff2 -------------------------------------------------------------------------------- /dist/application/fonts/segoeui-westeuropean/segoeui-semilight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/segoeui-westeuropean/segoeui-semilight.woff -------------------------------------------------------------------------------- /dist/application/fonts/segoeui-westeuropean/segoeui-semilight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/fonts/segoeui-westeuropean/segoeui-semilight.woff2 -------------------------------------------------------------------------------- /dist/application/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/icon.png -------------------------------------------------------------------------------- /dist/application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/index.html -------------------------------------------------------------------------------- /dist/application/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/mstile-150x150.png -------------------------------------------------------------------------------- /dist/application/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/safari-pinned-tab.svg -------------------------------------------------------------------------------- /dist/application/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/site.webmanifest -------------------------------------------------------------------------------- /dist/application/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/style.css -------------------------------------------------------------------------------- /dist/application/upup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/upup.min.js -------------------------------------------------------------------------------- /dist/application/upup.sw.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/dist/application/upup.sw.min.js -------------------------------------------------------------------------------- /docs/00-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/docs/00-intro.md -------------------------------------------------------------------------------- /docs/01-front.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/docs/01-front.md -------------------------------------------------------------------------------- /docs/02-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/docs/02-server.md -------------------------------------------------------------------------------- /docs/03-dropbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/docs/03-dropbox.md -------------------------------------------------------------------------------- /docs/dropbox0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/docs/dropbox0.png -------------------------------------------------------------------------------- /docs/dropbox1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/docs/dropbox1.png -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/docs/style.css -------------------------------------------------------------------------------- /icon-final.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/icon-final.ico -------------------------------------------------------------------------------- /icon-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/icon-final.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/jest.config.js -------------------------------------------------------------------------------- /lite-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/lite-server.json -------------------------------------------------------------------------------- /mocks/browser-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/mocks/browser-mocks.ts -------------------------------------------------------------------------------- /mocks/setup-enzyme-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/mocks/setup-enzyme-tests.ts -------------------------------------------------------------------------------- /mocks/state-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/mocks/state-mocks.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/package.json -------------------------------------------------------------------------------- /scripts/analyze-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/analyze-prod.sh -------------------------------------------------------------------------------- /scripts/analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/analyze.sh -------------------------------------------------------------------------------- /scripts/build-desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/build-desktop.sh -------------------------------------------------------------------------------- /scripts/build-development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/build-development.sh -------------------------------------------------------------------------------- /scripts/build-production.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/build-production.sh -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/serve.sh -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /scripts/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/scripts/upload.sh -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/common-components/appointments-lnd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/appointments-lnd.tsx -------------------------------------------------------------------------------- /src/common-components/charts/bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/charts/bar.tsx -------------------------------------------------------------------------------- /src/common-components/charts/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/charts/colors.ts -------------------------------------------------------------------------------- /src/common-components/charts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/charts/index.ts -------------------------------------------------------------------------------- /src/common-components/charts/line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/charts/line.tsx -------------------------------------------------------------------------------- /src/common-components/charts/pie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/charts/pie.tsx -------------------------------------------------------------------------------- /src/common-components/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/data-table.tsx -------------------------------------------------------------------------------- /src/common-components/editable-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/editable-list.tsx -------------------------------------------------------------------------------- /src/common-components/grid-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/grid-table.tsx -------------------------------------------------------------------------------- /src/common-components/grid/col.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/grid/col.tsx -------------------------------------------------------------------------------- /src/common-components/grid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/grid/index.ts -------------------------------------------------------------------------------- /src/common-components/grid/row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/grid/row.tsx -------------------------------------------------------------------------------- /src/common-components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/index.ts -------------------------------------------------------------------------------- /src/common-components/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/label.tsx -------------------------------------------------------------------------------- /src/common-components/last-next-appointments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/last-next-appointments.tsx -------------------------------------------------------------------------------- /src/common-components/page-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/page-loader.tsx -------------------------------------------------------------------------------- /src/common-components/panel-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/panel-tabs.tsx -------------------------------------------------------------------------------- /src/common-components/panel-top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/panel-top.tsx -------------------------------------------------------------------------------- /src/common-components/pick-files/crop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/pick-files/crop.tsx -------------------------------------------------------------------------------- /src/common-components/pick-files/pick-files.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/pick-files/pick-files.tsx -------------------------------------------------------------------------------- /src/common-components/profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/profile/index.ts -------------------------------------------------------------------------------- /src/common-components/profile/profile-squared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/profile/profile-squared.tsx -------------------------------------------------------------------------------- /src/common-components/profile/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/profile/profile.tsx -------------------------------------------------------------------------------- /src/common-components/section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/section.tsx -------------------------------------------------------------------------------- /src/common-components/table-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/table-actions.tsx -------------------------------------------------------------------------------- /src/common-components/tag-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/common-components/tag-input.tsx -------------------------------------------------------------------------------- /src/core/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/db/index.ts -------------------------------------------------------------------------------- /src/core/db/transform-pouch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/db/transform-pouch.d.ts -------------------------------------------------------------------------------- /src/core/db/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/db/transform.ts -------------------------------------------------------------------------------- /src/core/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/demo.ts -------------------------------------------------------------------------------- /src/core/icons-subset/subset-a/IconNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-a/IconNames.ts -------------------------------------------------------------------------------- /src/core/icons-subset/subset-a/data/AllIconNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-a/data/AllIconNames.json -------------------------------------------------------------------------------- /src/core/icons-subset/subset-a/fabric-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-a/fabric-icons.ts -------------------------------------------------------------------------------- /src/core/icons-subset/subset-a/iconAliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-a/iconAliases.ts -------------------------------------------------------------------------------- /src/core/icons-subset/subset-a/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-a/index.ts -------------------------------------------------------------------------------- /src/core/icons-subset/subset-b/IconNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-b/IconNames.ts -------------------------------------------------------------------------------- /src/core/icons-subset/subset-b/data/AllIconNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-b/data/AllIconNames.json -------------------------------------------------------------------------------- /src/core/icons-subset/subset-b/fabric-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-b/fabric-icons.ts -------------------------------------------------------------------------------- /src/core/icons-subset/subset-b/iconAliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-b/iconAliases.ts -------------------------------------------------------------------------------- /src/core/icons-subset/subset-b/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/icons-subset/subset-b/index.ts -------------------------------------------------------------------------------- /src/core/images-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/images-table.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/internationalization/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./lang"; 2 | -------------------------------------------------------------------------------- /src/core/internationalization/lang.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/internationalization/lang.test.ts -------------------------------------------------------------------------------- /src/core/internationalization/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/internationalization/lang.ts -------------------------------------------------------------------------------- /src/core/internationalization/languages/ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/internationalization/languages/ar.ts -------------------------------------------------------------------------------- /src/core/internationalization/languages/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/internationalization/languages/de.ts -------------------------------------------------------------------------------- /src/core/internationalization/languages/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/internationalization/languages/es.ts -------------------------------------------------------------------------------- /src/core/internationalization/languages/raw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/internationalization/languages/raw.ts -------------------------------------------------------------------------------- /src/core/internationalization/languages/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/internationalization/languages/zh-cn.ts -------------------------------------------------------------------------------- /src/core/services/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/services/backup.ts -------------------------------------------------------------------------------- /src/core/services/files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/services/files.test.ts -------------------------------------------------------------------------------- /src/core/services/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/services/files.ts -------------------------------------------------------------------------------- /src/core/services/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/services/login.ts -------------------------------------------------------------------------------- /src/core/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/core/status.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main-components/choose-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/choose-user.tsx -------------------------------------------------------------------------------- /src/main-components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/header.tsx -------------------------------------------------------------------------------- /src/main-components/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/home.tsx -------------------------------------------------------------------------------- /src/main-components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/index.ts -------------------------------------------------------------------------------- /src/main-components/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/login.tsx -------------------------------------------------------------------------------- /src/main-components/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/main.tsx -------------------------------------------------------------------------------- /src/main-components/menu.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/menu.data.ts -------------------------------------------------------------------------------- /src/main-components/menu.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/menu.test.ts -------------------------------------------------------------------------------- /src/main-components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/menu.tsx -------------------------------------------------------------------------------- /src/main-components/messages.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/messages.data.ts -------------------------------------------------------------------------------- /src/main-components/messages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/messages.test.ts -------------------------------------------------------------------------------- /src/main-components/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/messages.tsx -------------------------------------------------------------------------------- /src/main-components/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/modal.tsx -------------------------------------------------------------------------------- /src/main-components/modals.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/modals.data.ts -------------------------------------------------------------------------------- /src/main-components/modals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/modals.test.ts -------------------------------------------------------------------------------- /src/main-components/router.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/router.test.tsx -------------------------------------------------------------------------------- /src/main-components/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/router.tsx -------------------------------------------------------------------------------- /src/main-components/user.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/user.data.ts -------------------------------------------------------------------------------- /src/main-components/user.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/user.test.ts -------------------------------------------------------------------------------- /src/main-components/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/main-components/user.tsx -------------------------------------------------------------------------------- /src/modules/appointments/components/appointment-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/components/appointment-editor.tsx -------------------------------------------------------------------------------- /src/modules/appointments/components/appointments-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/components/appointments-list.tsx -------------------------------------------------------------------------------- /src/modules/appointments/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./appointments-list"; 2 | -------------------------------------------------------------------------------- /src/modules/appointments/components/page.calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/components/page.calendar.tsx -------------------------------------------------------------------------------- /src/modules/appointments/data/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/data/calendar.ts -------------------------------------------------------------------------------- /src/modules/appointments/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/data/index.ts -------------------------------------------------------------------------------- /src/modules/appointments/data/model.appointment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/data/model.appointment.ts -------------------------------------------------------------------------------- /src/modules/appointments/data/namespace.appointments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/data/namespace.appointments.ts -------------------------------------------------------------------------------- /src/modules/appointments/data/schema.appointment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/data/schema.appointment.ts -------------------------------------------------------------------------------- /src/modules/appointments/data/store.appointments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/data/store.appointments.ts -------------------------------------------------------------------------------- /src/modules/appointments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/index.ts -------------------------------------------------------------------------------- /src/modules/appointments/register-calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/appointments/register-calendar.tsx -------------------------------------------------------------------------------- /src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/index.ts -------------------------------------------------------------------------------- /src/modules/labwork/components/page.labwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/labwork/components/page.labwork.tsx -------------------------------------------------------------------------------- /src/modules/labwork/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/labwork/data/index.ts -------------------------------------------------------------------------------- /src/modules/labwork/data/model.labwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/labwork/data/model.labwork.ts -------------------------------------------------------------------------------- /src/modules/labwork/data/namespace.labwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/labwork/data/namespace.labwork.ts -------------------------------------------------------------------------------- /src/modules/labwork/data/schema.labwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/labwork/data/schema.labwork.ts -------------------------------------------------------------------------------- /src/modules/labwork/data/store.labwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/labwork/data/store.labwork.ts -------------------------------------------------------------------------------- /src/modules/labwork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/labwork/index.ts -------------------------------------------------------------------------------- /src/modules/labwork/register-labwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/labwork/register-labwork.tsx -------------------------------------------------------------------------------- /src/modules/orthodontic/components/case-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/orthodontic/components/case-sheet.tsx -------------------------------------------------------------------------------- /src/modules/orthodontic/components/page.orthodontic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/orthodontic/components/page.orthodontic.tsx -------------------------------------------------------------------------------- /src/modules/orthodontic/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/orthodontic/data/index.ts -------------------------------------------------------------------------------- /src/modules/orthodontic/data/model.ortho.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/orthodontic/data/model.ortho.ts -------------------------------------------------------------------------------- /src/modules/orthodontic/data/namespace.orthodontic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/orthodontic/data/namespace.orthodontic.ts -------------------------------------------------------------------------------- /src/modules/orthodontic/data/schema.orthocase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/orthodontic/data/schema.orthocase.ts -------------------------------------------------------------------------------- /src/modules/orthodontic/data/store.ortho.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/orthodontic/data/store.ortho.ts -------------------------------------------------------------------------------- /src/modules/orthodontic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/orthodontic/index.ts -------------------------------------------------------------------------------- /src/modules/orthodontic/register-orthodontic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/orthodontic/register-orthodontic.tsx -------------------------------------------------------------------------------- /src/modules/patients/components/dental-history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/components/dental-history.tsx -------------------------------------------------------------------------------- /src/modules/patients/components/gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/components/gallery.tsx -------------------------------------------------------------------------------- /src/modules/patients/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/components/index.ts -------------------------------------------------------------------------------- /src/modules/patients/components/page.patients.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/components/page.patients.tsx -------------------------------------------------------------------------------- /src/modules/patients/components/patient-appointments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/components/patient-appointments.tsx -------------------------------------------------------------------------------- /src/modules/patients/components/patient-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/components/patient-details.tsx -------------------------------------------------------------------------------- /src/modules/patients/components/patient-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/components/patient-link.tsx -------------------------------------------------------------------------------- /src/modules/patients/components/teeth-deciduous.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/components/teeth-deciduous.tsx -------------------------------------------------------------------------------- /src/modules/patients/components/teeth-permanent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/components/teeth-permanent.tsx -------------------------------------------------------------------------------- /src/modules/patients/data/const.iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/const.iso.ts -------------------------------------------------------------------------------- /src/modules/patients/data/enum.gender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/enum.gender.ts -------------------------------------------------------------------------------- /src/modules/patients/data/enum.toothCondition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/enum.toothCondition.ts -------------------------------------------------------------------------------- /src/modules/patients/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/index.ts -------------------------------------------------------------------------------- /src/modules/patients/data/interface.label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/interface.label.ts -------------------------------------------------------------------------------- /src/modules/patients/data/model.patient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/model.patient.ts -------------------------------------------------------------------------------- /src/modules/patients/data/model.tooth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/model.tooth.ts -------------------------------------------------------------------------------- /src/modules/patients/data/namespace.patients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/namespace.patients.ts -------------------------------------------------------------------------------- /src/modules/patients/data/scheam.tooth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/scheam.tooth.ts -------------------------------------------------------------------------------- /src/modules/patients/data/schema.patient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/schema.patient.ts -------------------------------------------------------------------------------- /src/modules/patients/data/store.patients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/data/store.patients.ts -------------------------------------------------------------------------------- /src/modules/patients/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/index.ts -------------------------------------------------------------------------------- /src/modules/patients/register-patients.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/patients/register-patients.tsx -------------------------------------------------------------------------------- /src/modules/prescriptions/components/page.prescriptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/prescriptions/components/page.prescriptions.tsx -------------------------------------------------------------------------------- /src/modules/prescriptions/data/enum.form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/prescriptions/data/enum.form.ts -------------------------------------------------------------------------------- /src/modules/prescriptions/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/prescriptions/data/index.ts -------------------------------------------------------------------------------- /src/modules/prescriptions/data/model.prescription-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/prescriptions/data/model.prescription-item.ts -------------------------------------------------------------------------------- /src/modules/prescriptions/data/namespace.prescriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/prescriptions/data/namespace.prescriptions.ts -------------------------------------------------------------------------------- /src/modules/prescriptions/data/schema.prescription-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/prescriptions/data/schema.prescription-item.ts -------------------------------------------------------------------------------- /src/modules/prescriptions/data/store.prescriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/prescriptions/data/store.prescriptions.ts -------------------------------------------------------------------------------- /src/modules/prescriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/prescriptions/index.ts -------------------------------------------------------------------------------- /src/modules/prescriptions/register-prescriptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/prescriptions/register-prescriptions.tsx -------------------------------------------------------------------------------- /src/modules/register-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/register-modules.ts -------------------------------------------------------------------------------- /src/modules/settings/components/page.settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/settings/components/page.settings.tsx -------------------------------------------------------------------------------- /src/modules/settings/data/const.dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/settings/data/const.dictionary.ts -------------------------------------------------------------------------------- /src/modules/settings/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/settings/data/index.ts -------------------------------------------------------------------------------- /src/modules/settings/data/model.setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/settings/data/model.setting.ts -------------------------------------------------------------------------------- /src/modules/settings/data/namespace.settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/settings/data/namespace.settings.ts -------------------------------------------------------------------------------- /src/modules/settings/data/schema.settingitem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/settings/data/schema.settingitem.ts -------------------------------------------------------------------------------- /src/modules/settings/data/store.setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/settings/data/store.setting.ts -------------------------------------------------------------------------------- /src/modules/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/settings/index.ts -------------------------------------------------------------------------------- /src/modules/settings/register-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/settings/register-settings.tsx -------------------------------------------------------------------------------- /src/modules/staff/components/page.staff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/staff/components/page.staff.tsx -------------------------------------------------------------------------------- /src/modules/staff/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/staff/data/index.ts -------------------------------------------------------------------------------- /src/modules/staff/data/model.member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/staff/data/model.member.ts -------------------------------------------------------------------------------- /src/modules/staff/data/namespace.staff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/staff/data/namespace.staff.ts -------------------------------------------------------------------------------- /src/modules/staff/data/schema.member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/staff/data/schema.member.ts -------------------------------------------------------------------------------- /src/modules/staff/data/store.staff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/staff/data/store.staff.ts -------------------------------------------------------------------------------- /src/modules/staff/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/staff/index.ts -------------------------------------------------------------------------------- /src/modules/staff/register-staff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/staff/register-staff.tsx -------------------------------------------------------------------------------- /src/modules/statistics/components/chart.age.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/components/chart.age.tsx -------------------------------------------------------------------------------- /src/modules/statistics/components/chart.appointments-date.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/components/chart.appointments-date.tsx -------------------------------------------------------------------------------- /src/modules/statistics/components/chart.finance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/components/chart.finance.tsx -------------------------------------------------------------------------------- /src/modules/statistics/components/chart.gender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/components/chart.gender.tsx -------------------------------------------------------------------------------- /src/modules/statistics/components/chart.most-applied-treatments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/components/chart.most-applied-treatments.tsx -------------------------------------------------------------------------------- /src/modules/statistics/components/chart.most-involved-teeth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/components/chart.most-involved-teeth.tsx -------------------------------------------------------------------------------- /src/modules/statistics/components/chart.treatments-gender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/components/chart.treatments-gender.tsx -------------------------------------------------------------------------------- /src/modules/statistics/components/chart.treatments-number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/components/chart.treatments-number.tsx -------------------------------------------------------------------------------- /src/modules/statistics/components/page.statistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/components/page.statistics.tsx -------------------------------------------------------------------------------- /src/modules/statistics/data/const.colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/data/const.colors.ts -------------------------------------------------------------------------------- /src/modules/statistics/data/data.statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/data/data.statistics.ts -------------------------------------------------------------------------------- /src/modules/statistics/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/data/index.ts -------------------------------------------------------------------------------- /src/modules/statistics/data/interface.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/data/interface.chart.ts -------------------------------------------------------------------------------- /src/modules/statistics/data/namespace.statistics.ts: -------------------------------------------------------------------------------- 1 | export const statsNamespace = "statistics"; 2 | -------------------------------------------------------------------------------- /src/modules/statistics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/index.ts -------------------------------------------------------------------------------- /src/modules/statistics/register-statistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/statistics/register-statistics.tsx -------------------------------------------------------------------------------- /src/modules/treatments/components/page.treatments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/treatments/components/page.treatments.tsx -------------------------------------------------------------------------------- /src/modules/treatments/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/treatments/data/index.ts -------------------------------------------------------------------------------- /src/modules/treatments/data/model.treatment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/treatments/data/model.treatment.ts -------------------------------------------------------------------------------- /src/modules/treatments/data/namespace.treatments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/treatments/data/namespace.treatments.ts -------------------------------------------------------------------------------- /src/modules/treatments/data/schema.treatment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/treatments/data/schema.treatment.ts -------------------------------------------------------------------------------- /src/modules/treatments/data/store.treatments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/treatments/data/store.treatments.ts -------------------------------------------------------------------------------- /src/modules/treatments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/treatments/index.ts -------------------------------------------------------------------------------- /src/modules/treatments/register-treatments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/modules/treatments/register-treatments.tsx -------------------------------------------------------------------------------- /src/styles/appointment-editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/appointment-editor.scss -------------------------------------------------------------------------------- /src/styles/appointments-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/appointments-list.scss -------------------------------------------------------------------------------- /src/styles/appointments-lnd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/appointments-lnd.scss -------------------------------------------------------------------------------- /src/styles/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/calendar.scss -------------------------------------------------------------------------------- /src/styles/crop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/crop.scss -------------------------------------------------------------------------------- /src/styles/data-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/data-table.scss -------------------------------------------------------------------------------- /src/styles/date-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/date-link.scss -------------------------------------------------------------------------------- /src/styles/dental-history.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/dental-history.scss -------------------------------------------------------------------------------- /src/styles/editable-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/editable-list.scss -------------------------------------------------------------------------------- /src/styles/gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/gallery.scss -------------------------------------------------------------------------------- /src/styles/global-styles/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/animations.scss -------------------------------------------------------------------------------- /src/styles/global-styles/fabric-fixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/fabric-fixes.scss -------------------------------------------------------------------------------- /src/styles/global-styles/grid-system.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/grid-system.scss -------------------------------------------------------------------------------- /src/styles/global-styles/input-boxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/input-boxes.scss -------------------------------------------------------------------------------- /src/styles/global-styles/margin-helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/margin-helpers.scss -------------------------------------------------------------------------------- /src/styles/global-styles/mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/mobile.scss -------------------------------------------------------------------------------- /src/styles/global-styles/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/normalize.scss -------------------------------------------------------------------------------- /src/styles/global-styles/padding-helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/padding-helpers.scss -------------------------------------------------------------------------------- /src/styles/global-styles/rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/rtl.scss -------------------------------------------------------------------------------- /src/styles/global-styles/shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/shadows.scss -------------------------------------------------------------------------------- /src/styles/global-styles/text-helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/global-styles/text-helpers.scss -------------------------------------------------------------------------------- /src/styles/grid-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/grid-table.scss -------------------------------------------------------------------------------- /src/styles/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/grid.scss -------------------------------------------------------------------------------- /src/styles/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/header.scss -------------------------------------------------------------------------------- /src/styles/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/home.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/label.scss -------------------------------------------------------------------------------- /src/styles/labwork.scss: -------------------------------------------------------------------------------- 1 | .labwork-editor { 2 | } 3 | -------------------------------------------------------------------------------- /src/styles/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/login.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/menu.scss -------------------------------------------------------------------------------- /src/styles/messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/messages.scss -------------------------------------------------------------------------------- /src/styles/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/modal.scss -------------------------------------------------------------------------------- /src/styles/ortho-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/ortho-list.scss -------------------------------------------------------------------------------- /src/styles/panel-tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/panel-tabs.scss -------------------------------------------------------------------------------- /src/styles/patient-appointments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/patient-appointments.scss -------------------------------------------------------------------------------- /src/styles/patient-details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/patient-details.scss -------------------------------------------------------------------------------- /src/styles/patient-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/patient-link.scss -------------------------------------------------------------------------------- /src/styles/patients-listing.scss: -------------------------------------------------------------------------------- 1 | .patients-component { 2 | } 3 | -------------------------------------------------------------------------------- /src/styles/prescription-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/prescription-table.scss -------------------------------------------------------------------------------- /src/styles/profile-squared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/profile-squared.scss -------------------------------------------------------------------------------- /src/styles/records.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/records.scss -------------------------------------------------------------------------------- /src/styles/section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/section.scss -------------------------------------------------------------------------------- /src/styles/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/settings.scss -------------------------------------------------------------------------------- /src/styles/staff-listing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/staff-listing.scss -------------------------------------------------------------------------------- /src/styles/statistics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/statistics.scss -------------------------------------------------------------------------------- /src/styles/tag-input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/tag-input.scss -------------------------------------------------------------------------------- /src/styles/treatments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/treatments.scss -------------------------------------------------------------------------------- /src/styles/user.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/styles/user.scss -------------------------------------------------------------------------------- /src/utils/base64.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/base64.test.ts -------------------------------------------------------------------------------- /src/utils/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/base64.ts -------------------------------------------------------------------------------- /src/utils/date.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/date.test.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/encryption.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/encryption.test.ts -------------------------------------------------------------------------------- /src/utils/encryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/encryption.ts -------------------------------------------------------------------------------- /src/utils/escape-regex.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/escape-regex.test.ts -------------------------------------------------------------------------------- /src/utils/escape-regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/escape-regex.ts -------------------------------------------------------------------------------- /src/utils/generate-id.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/generate-id.test.ts -------------------------------------------------------------------------------- /src/utils/generate-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/generate-id.ts -------------------------------------------------------------------------------- /src/utils/gphotos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/gphotos.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/is-online.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/is-online.test.ts -------------------------------------------------------------------------------- /src/utils/is-online.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/is-online.ts -------------------------------------------------------------------------------- /src/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/log.ts -------------------------------------------------------------------------------- /src/utils/num.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/num.test.ts -------------------------------------------------------------------------------- /src/utils/num.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/num.ts -------------------------------------------------------------------------------- /src/utils/round.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/round.test.ts -------------------------------------------------------------------------------- /src/utils/round.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/round.ts -------------------------------------------------------------------------------- /src/utils/store.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/store.test.ts -------------------------------------------------------------------------------- /src/utils/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/store.ts -------------------------------------------------------------------------------- /src/utils/teeth-numbering-systems.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/teeth-numbering-systems.test.ts -------------------------------------------------------------------------------- /src/utils/teeth-numbering-systems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/teeth-numbering-systems.ts -------------------------------------------------------------------------------- /src/utils/textual-filter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/textual-filter.test.ts -------------------------------------------------------------------------------- /src/utils/textual-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/textual-filter.ts -------------------------------------------------------------------------------- /src/utils/username.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/src/utils/username.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcorvi/apexo/HEAD/yarn.lock --------------------------------------------------------------------------------