├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── pull_request_template.md ├── release.yml └── workflows │ ├── bundle-size.yml │ ├── ci.yml │ ├── e2e.yml │ ├── open-release-pr.yml │ ├── tx-pull.yml │ ├── tx-push.yml │ └── update-openmrs-deps.yml ├── .gitignore ├── .husky ├── .gitignore ├── pre-commit └── pre-push ├── .prettierignore ├── .tx └── config ├── .vscode └── settings.json ├── .yarn └── releases │ └── yarn-4.10.3.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── __mocks__ ├── @carbon__charts-react.ts ├── allergies.mock.ts ├── chart-widgets-config.mock.ts ├── conditions.mock.ts ├── encounters.mock.ts ├── forms.mock.ts ├── generic-widgets.mock.ts ├── groupedResults.mock.ts ├── immunizations.mock.ts ├── index.ts ├── location.mock.ts ├── medication.mock.ts ├── mockBasePanel.mock.ts ├── mockDeceasedPatient.ts ├── mockOrders.mock.ts ├── order-price-data.mock.ts ├── order-stock-data.mock.ts ├── patient-flags.mock.ts ├── patient.mock.ts ├── programs.mock.ts ├── react-i18next.js ├── relationships.mock.ts ├── results.mock.ts ├── session.mock.ts ├── visit-notes.mock.ts ├── visitQueueEntry.mock.ts ├── visits.mock.ts ├── vitals-and-biometrics.mock.ts └── vitals-concept-metadata.mock.ts ├── e2e ├── commands │ ├── drug-order-operations.ts │ ├── encounter-operations.ts │ ├── index.ts │ ├── patient-operations.ts │ ├── provider-operations.ts │ ├── test-order-operations.ts │ ├── types │ │ └── index.ts │ └── visit-operations.ts ├── core │ ├── global-setup.ts │ ├── index.ts │ └── test.ts ├── fixtures │ ├── api.ts │ └── index.ts ├── pages │ ├── allergies-page.ts │ ├── attachments-page.ts │ ├── chart-page.ts │ ├── conditions-page.ts │ ├── immunizations-page.ts │ ├── index.ts │ ├── mark-patient-deceased-page.ts │ ├── medications-page.ts │ ├── orders-page.ts │ ├── program-page.ts │ ├── results-viewer-page.ts │ ├── visits-page.ts │ └── vitals-and-biometrics-page.ts ├── specs │ ├── allergies.spec.ts │ ├── attachments.spec.ts │ ├── biometrics.spec.ts │ ├── clinical-forms.spec.ts │ ├── conditions.spec.ts │ ├── drug-orders.spec.ts │ ├── edit-existing-visit.spec.ts │ ├── edit-past-visit-start-date.spec.ts │ ├── immunizations.spec.ts │ ├── lab-orders.spec.ts │ ├── mark-patient-deceased.spec.ts │ ├── program-enrollment.spec.ts │ ├── results-viewer.spec.ts │ ├── start-and-end-visit.spec.ts │ ├── visit-context-navigation.spec.ts │ ├── visit-note.spec.ts │ └── vitals.spec.ts └── support │ ├── bamboo │ ├── docker-compose.yml │ ├── e2e-test-runner.sh │ └── playwright.Dockerfile │ ├── github │ ├── Dockerfile │ ├── docker-compose.yml │ └── run-e2e-docker-env.sh │ └── upload │ └── brainScan.jpeg ├── example.env ├── jest.config.js ├── package.json ├── packages ├── esm-form-engine-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── config-schema.ts │ │ ├── declarations.d.ts │ │ ├── form-collapse-toggle │ │ │ ├── form-collapse-toggle.component.tsx │ │ │ └── form-collapse-toggle.scss │ │ ├── form-renderer │ │ │ ├── form-error.component.tsx │ │ │ ├── form-error.scss │ │ │ ├── form-error.test.tsx │ │ │ ├── form-renderer.component.tsx │ │ │ ├── form-renderer.scss │ │ │ ├── form-renderer.test.tsx │ │ │ └── repeat │ │ │ │ └── delete-question.modal.tsx │ │ ├── hooks │ │ │ └── useFormSchema.tsx │ │ ├── index.ts │ │ ├── routes.json │ │ └── types │ │ │ └── index.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-form-entry-app │ ├── .eslintrc.json │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── empty-route │ │ │ │ └── empty-route.component.ts │ │ │ ├── fe-wrapper │ │ │ │ ├── fe-wrapper.component.html │ │ │ │ ├── fe-wrapper.component.scss │ │ │ │ ├── fe-wrapper.component.spec.ts │ │ │ │ └── fe-wrapper.component.ts │ │ │ ├── form-creation │ │ │ │ └── form-creation.service.ts │ │ │ ├── form-data-source │ │ │ │ ├── form-data-source.service.spec.ts │ │ │ │ └── form-data-source.service.ts │ │ │ ├── form-schema │ │ │ │ ├── form-schema.service.spec.ts │ │ │ │ └── form-schema.service.ts │ │ │ ├── form-submission │ │ │ │ ├── form-submission.service.spec.ts │ │ │ │ └── form-submission.service.ts │ │ │ ├── loader │ │ │ │ ├── loader.component.html │ │ │ │ ├── loader.component.scss │ │ │ │ └── loader.component.ts │ │ │ ├── loaders │ │ │ │ └── json-loader.ts │ │ │ ├── local-storage │ │ │ │ ├── local-storage.service.spec.ts │ │ │ │ └── local-storage.service.ts │ │ │ ├── offline │ │ │ │ ├── caching.ts │ │ │ │ ├── sync.ts │ │ │ │ └── syncItemMutation.ts │ │ │ ├── openmrs-api │ │ │ │ ├── concept-resource.service.spec.ts │ │ │ │ ├── concept-resource.service.ts │ │ │ │ ├── encounter-resource.service.spec.ts │ │ │ │ ├── encounter-resource.service.ts │ │ │ │ ├── form-resource.service.spec.ts │ │ │ │ ├── form-resource.service.ts │ │ │ │ ├── location-resource.service.spec.ts │ │ │ │ ├── location-resource.service.ts │ │ │ │ ├── openmrs-api.module.ts │ │ │ │ ├── openmrs-esm-api.service.spec.ts │ │ │ │ ├── openmrs-esm-api.service.ts │ │ │ │ ├── patient-previous-encounter.service.ts │ │ │ │ ├── patient-resource.service.ts │ │ │ │ ├── patient-service.ts │ │ │ │ ├── person-resource.service.spec.ts │ │ │ │ ├── person-resource.service.ts │ │ │ │ ├── program-resource.service.ts │ │ │ │ ├── provider-resource.service.mock.ts │ │ │ │ ├── provider-resource.service.spec.ts │ │ │ │ ├── provider-resource.service.ts │ │ │ │ └── visit-resource.service.ts │ │ │ ├── services │ │ │ │ ├── concept.service.ts │ │ │ │ ├── config-resource.service.ts │ │ │ │ └── monthly-scheduled-resource.service.ts │ │ │ ├── single-spa-props │ │ │ │ └── single-spa-props.service.ts │ │ │ ├── types │ │ │ │ └── index.ts │ │ │ └── window-ref.ts │ │ ├── bootstrap.ts │ │ ├── config-schema.ts │ │ ├── declarations.d.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.ts │ │ ├── openmrs-esm-framework.mock.js │ │ ├── routes.json │ │ ├── single-spa-props.ts │ │ ├── styles.css │ │ └── test.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── webpack.config.js │ └── webpack.prod.config.js ├── esm-generic-patient-widgets-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── config-schema-obs-horizontal.ts │ │ ├── config-schema-obs-switchable.ts │ │ ├── declarations.d.ts │ │ ├── index.ts │ │ ├── obs-graph │ │ │ ├── obs-graph.component.tsx │ │ │ └── obs-graph.scss │ │ ├── obs-switchable │ │ │ ├── obs-switchable.component.tsx │ │ │ ├── obs-switchable.scss │ │ │ └── obs-switchable.test.tsx │ │ ├── obs-table-horizontal │ │ │ ├── obs-table-horizontal.component.tsx │ │ │ ├── obs-table-horizontal.resource.ts │ │ │ ├── obs-table-horizontal.scss │ │ │ └── obs-table-horizontal.test.tsx │ │ ├── obs-table │ │ │ ├── obs-table.component.tsx │ │ │ └── obs-table.scss │ │ ├── resources │ │ │ ├── useConcepts.ts │ │ │ ├── useEncounterTypes.ts │ │ │ └── useObs.ts │ │ └── routes.json │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-allergies-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── allergies │ │ │ ├── allergies-action-menu.component.tsx │ │ │ ├── allergies-action-menu.scss │ │ │ ├── allergies-detailed-summary.component.tsx │ │ │ ├── allergies-detailed-summary.scss │ │ │ ├── allergies-detailed-summary.test.tsx │ │ │ ├── allergies-form │ │ │ │ ├── allergy-form-tab.component.tsx │ │ │ │ ├── allergy-form-tab.scss │ │ │ │ ├── allergy-form.resource.ts │ │ │ │ ├── allergy-form.scss │ │ │ │ ├── allergy-form.test.tsx │ │ │ │ └── allergy-form.workspace.tsx │ │ │ ├── allergies-list.extension.tsx │ │ │ ├── allergies-list.scss │ │ │ ├── allergies-list.test.tsx │ │ │ ├── allergies-overview.component.tsx │ │ │ ├── allergies-overview.scss │ │ │ ├── allergies-overview.test.tsx │ │ │ ├── allergies-tile.extension.tsx │ │ │ ├── allergies-tile.scss │ │ │ ├── allergies-tile.test.tsx │ │ │ ├── allergy-intolerance.resource.ts │ │ │ └── delete-allergy.modal.tsx │ │ ├── config-schema.ts │ │ ├── constants.ts │ │ ├── dashboard.meta.ts │ │ ├── declarations.d.ts │ │ ├── index.ts │ │ ├── routes.json │ │ ├── types │ │ │ └── index.ts │ │ └── utils.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-attachments-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── assets │ │ │ └── file-regular.svg │ │ ├── attachments-config-schema.ts │ │ ├── attachments │ │ │ ├── attachment-preview.component.tsx │ │ │ ├── attachment-preview.scss │ │ │ ├── attachment-thumbnail.component.tsx │ │ │ ├── attachment-thumbnail.scss │ │ │ ├── attachments-grid-overview.component.tsx │ │ │ ├── attachments-grid-overview.scss │ │ │ ├── attachments-overview.component.tsx │ │ │ ├── attachments-overview.scss │ │ │ ├── attachments-overview.test.tsx │ │ │ ├── attachments-table-overview.component.tsx │ │ │ ├── attachments-table-overview.scss │ │ │ ├── delete-attachment.modal.tsx │ │ │ └── delete-attachment.scss │ │ ├── camera-media-uploader │ │ │ ├── camera-media-uploader-context.resources.tsx │ │ │ ├── camera-media-uploader-types.ts │ │ │ ├── camera-media-uploader.component.tsx │ │ │ ├── camera-media-uploader.scss │ │ │ ├── camera.component.tsx │ │ │ ├── capture-photo.component.tsx │ │ │ ├── capture-photo.scss │ │ │ ├── file-review.component.tsx │ │ │ ├── file-review.scss │ │ │ ├── media-uploader.component.tsx │ │ │ ├── media-uploader.scss │ │ │ ├── upload-status.component.tsx │ │ │ └── upload-status.scss │ │ ├── dashboard.meta.ts │ │ ├── declarations.d.ts │ │ ├── index.ts │ │ ├── routes.json │ │ └── utils.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-banner-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── banner-tags │ │ │ ├── deceased-patient-tag.extension.tsx │ │ │ ├── deceased-patient-tag.scss │ │ │ ├── deceased-patient-tag.test.tsx │ │ │ ├── visit-tag.extension.tsx │ │ │ ├── visit-tag.scss │ │ │ └── visit-tag.test.tsx │ │ ├── banner │ │ │ ├── patient-banner.component.tsx │ │ │ └── patient-banner.scss │ │ ├── config-schema.ts │ │ ├── declarations.d.ts │ │ ├── hooks │ │ │ ├── useCauseOfDeath.ts │ │ │ ├── usePatientAttributes.ts │ │ │ └── usePatientListsForPatient.tsx │ │ ├── index.ts │ │ ├── routes.json │ │ └── types │ │ │ └── index.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-chart-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── actions-buttons │ │ │ ├── action-button.scss │ │ │ ├── delete-visit.component.tsx │ │ │ ├── delete-visit.test.tsx │ │ │ ├── mark-patient-alive.component.tsx │ │ │ ├── mark-patient-deceased.component.tsx │ │ │ ├── start-visit.component.tsx │ │ │ ├── start-visit.test.tsx │ │ │ ├── stop-visit.component.tsx │ │ │ └── stop-visit.test.tsx │ │ ├── clinical-views │ │ │ ├── encounter-list │ │ │ │ ├── encounter-list-tabs.extension.tsx │ │ │ │ ├── encounter-list-tabs.scss │ │ │ │ ├── encounter-list.component.tsx │ │ │ │ ├── encounter-list.scss │ │ │ │ ├── table.component.tsx │ │ │ │ ├── table.scss │ │ │ │ ├── tag.component.test.tsx │ │ │ │ └── tag.component.tsx │ │ │ ├── encounter-tile │ │ │ │ ├── clinical-views-summary.component.tsx │ │ │ │ ├── encounter-tile.component.tsx │ │ │ │ └── tile.scss │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useEncounterRows.ts │ │ │ │ ├── useEncountersByVisit.ts │ │ │ │ ├── useFormsJson.ts │ │ │ │ └── useLastEncounter.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── concept-utils.ts │ │ │ │ ├── encounter-list-config-builder.ts │ │ │ │ ├── encounter-list.resource.ts │ │ │ │ ├── helpers.ts │ │ │ │ └── index.ts │ │ ├── config-schema.ts │ │ ├── constants.ts │ │ ├── dashboard.meta.ts │ │ ├── data.resource.ts │ │ ├── declarations.d.ts │ │ ├── index.ts │ │ ├── loader │ │ │ ├── loader.component.tsx │ │ │ └── loader.scss │ │ ├── mark-patient-alive │ │ │ └── mark-patient-alive.modal.tsx │ │ ├── mark-patient-deceased │ │ │ ├── mark-patient-deceased-form.scss │ │ │ ├── mark-patient-deceased-form.test.tsx │ │ │ └── mark-patient-deceased-form.workspace.tsx │ │ ├── offline.ts │ │ ├── patient-banner-tags │ │ │ ├── visit-attribute-tags.extension.tsx │ │ │ └── visit-attribute-tags.scss │ │ ├── patient-chart │ │ │ ├── chart-review │ │ │ │ ├── chart-review.component.tsx │ │ │ │ ├── chart-review.test.tsx │ │ │ │ ├── dashboard-view.component.tsx │ │ │ │ └── dashboard-view.scss │ │ │ ├── patient-chart.component.tsx │ │ │ ├── patient-chart.resources.ts │ │ │ └── patient-chart.scss │ │ ├── patient-details-tile │ │ │ ├── patient-details-tile.component.tsx │ │ │ └── patient-details-tile.scss │ │ ├── root.component.tsx │ │ ├── root.scss │ │ ├── routes.json │ │ ├── side-nav │ │ │ ├── side-menu.component.tsx │ │ │ ├── side-menu.scss │ │ │ └── side-menu.test.tsx │ │ ├── utils.test.ts │ │ ├── utils.ts │ │ └── visit │ │ │ ├── hooks │ │ │ ├── useDefaultFacilityLocation.tsx │ │ │ ├── useDefaultVisitLocation.tsx │ │ │ ├── useDeleteVisit.test.tsx │ │ │ ├── useDeleteVisit.tsx │ │ │ ├── useOfflineVisitType.tsx │ │ │ ├── useRecommendedVisitTypes.tsx │ │ │ └── useVisitAttributeType.tsx │ │ │ ├── start-visit-button.component.tsx │ │ │ ├── start-visit-button.test.tsx │ │ │ ├── visit-action-items │ │ │ ├── delete-visit-action-item.component.tsx │ │ │ └── edit-visit-details.component.tsx │ │ │ ├── visit-form │ │ │ ├── base-visit-type.component.tsx │ │ │ ├── base-visit-type.scss │ │ │ ├── base-visit-type.test.tsx │ │ │ ├── exported-visit-form.workspace.tsx │ │ │ ├── location-selector.component.tsx │ │ │ ├── location-selector.test.tsx │ │ │ ├── recommended-visit-type.component.tsx │ │ │ ├── visit-attribute-type.component.tsx │ │ │ ├── visit-attribute-type.scss │ │ │ ├── visit-date-time.component.tsx │ │ │ ├── visit-form.resource.ts │ │ │ ├── visit-form.scss │ │ │ ├── visit-form.test.tsx │ │ │ ├── visit-form.workspace.tsx │ │ │ └── visit-type.test.tsx │ │ │ ├── visit-history-table │ │ │ ├── visit-actions-cell.component.tsx │ │ │ ├── visit-actions-cell.scss │ │ │ ├── visit-date-cell.component.tsx │ │ │ ├── visit-diagnoses-cell.component.tsx │ │ │ ├── visit-history-table.component.tsx │ │ │ ├── visit-history-table.scss │ │ │ └── visit-type-cell.component.tsx │ │ │ ├── visit-prompt │ │ │ ├── delete-visit-dialog.component.tsx │ │ │ ├── delete-visit-dialog.test.tsx │ │ │ ├── end-visit-dialog.component.tsx │ │ │ ├── end-visit-dialog.scss │ │ │ ├── end-visit-dialog.test.tsx │ │ │ ├── modify-visit-date.modal.tsx │ │ │ ├── start-visit-dialog.component.tsx │ │ │ ├── start-visit-dialog.scss │ │ │ └── start-visit-dialog.test.tsx │ │ │ └── visits-widget │ │ │ ├── active-visit-buttons │ │ │ ├── active-visit-buttons.scss │ │ │ └── active-visit-buttons.tsx │ │ │ ├── current-visit-summary.extension.tsx │ │ │ ├── current-visit-summary.scss │ │ │ ├── current-visit-summary.test.tsx │ │ │ ├── encounter-observations │ │ │ ├── encounter-observations.component.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ │ ├── past-visits-components │ │ │ ├── delete-encounter.modal.tsx │ │ │ ├── delete-encounter.scss │ │ │ ├── encounters-table │ │ │ │ ├── all-encounters-table.component.tsx │ │ │ │ ├── encounters-table.component.tsx │ │ │ │ ├── encounters-table.resource.ts │ │ │ │ ├── encounters-table.scss │ │ │ │ ├── encounters-table.test.tsx │ │ │ │ └── visit-encounters-table.component.tsx │ │ │ ├── medications-summary.component.tsx │ │ │ ├── notes-summary.component.tsx │ │ │ ├── tests-summary.component.tsx │ │ │ ├── visit-summary.component.tsx │ │ │ ├── visit-summary.scss │ │ │ └── visit-summary.test.tsx │ │ │ ├── single-visit-details │ │ │ └── visit-timeline │ │ │ │ ├── visit-timeline.component.tsx │ │ │ │ └── visit-timeline.scss │ │ │ ├── visit-context │ │ │ ├── retrospective-data-date-time-picker │ │ │ │ ├── restrospective-date-time-picker.scss │ │ │ │ └── retrospective-date-time-picker.component.tsx │ │ │ ├── visit-context-header.extension.tsx │ │ │ ├── visit-context-header.scss │ │ │ ├── visit-context-header.test.tsx │ │ │ ├── visit-context-info.component.tsx │ │ │ ├── visit-context-info.scss │ │ │ ├── visit-context-switcher.modal.tsx │ │ │ ├── visit-context-switcher.scss │ │ │ └── visit-context-switcher.test.tsx │ │ │ ├── visit-detail-overview.component.tsx │ │ │ ├── visit-detail-overview.scss │ │ │ ├── visit-detail-overview.test.tsx │ │ │ └── visit.resource.tsx │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-common-lib │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── cards │ │ │ ├── card-header.component.tsx │ │ │ ├── card-header.scss │ │ │ └── index.ts │ │ ├── compare.ts │ │ ├── dashboards │ │ │ └── createDashboardLink.tsx │ │ ├── declarations.d.ts │ │ ├── empty-state │ │ │ ├── empty-data-illustration.component.tsx │ │ │ ├── empty-state.component.tsx │ │ │ ├── empty-state.scss │ │ │ ├── empty-state.test.tsx │ │ │ └── index.ts │ │ ├── error-state │ │ │ ├── error-state.component.tsx │ │ │ ├── error-state.scss │ │ │ ├── error-state.test.tsx │ │ │ └── index.ts │ │ ├── form-entry-interop.ts │ │ ├── form-entry │ │ │ └── form-entry.ts │ │ ├── index.ts │ │ ├── launchStartVisitPrompt.tsx │ │ ├── offline │ │ │ └── visit.ts │ │ ├── orders │ │ │ ├── index.ts │ │ │ ├── postOrders.ts │ │ │ ├── store.ts │ │ │ ├── types │ │ │ │ ├── index.ts │ │ │ │ ├── order-type.ts │ │ │ │ └── order.ts │ │ │ ├── useOrderBasket.test.tsx │ │ │ ├── useOrderBasket.ts │ │ │ ├── useOrderType.ts │ │ │ ├── useOrderTypes.ts │ │ │ ├── useOrderableConceptSets.test.ts │ │ │ ├── useOrderableConceptSets.ts │ │ │ └── useOrders.ts │ │ ├── pagination │ │ │ ├── index.ts │ │ │ ├── pagination.component.tsx │ │ │ ├── pagination.scss │ │ │ └── usePaginationInfo.ts │ │ ├── patient-summary │ │ │ └── patient-summary-extension-order.ts │ │ ├── programs │ │ │ └── usePatientProgramEnrollment.tsx │ │ ├── store │ │ │ └── patient-chart-store.ts │ │ ├── time-helper.ts │ │ ├── types │ │ │ ├── index.ts │ │ │ └── test-results.ts │ │ ├── useAllowedFileExtensions.ts │ │ ├── useSystemVisitSetting.ts │ │ ├── visit │ │ │ ├── index.ts │ │ │ ├── revalidation-utils.test.ts │ │ │ ├── revalidation-utils.ts │ │ │ └── visit-mutations.ts │ │ └── workspaces.ts │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-conditions-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── conditions │ │ │ ├── conditions-action-menu.component.tsx │ │ │ ├── conditions-action-menu.scss │ │ │ ├── conditions-detailed-summary.component.tsx │ │ │ ├── conditions-detailed-summary.scss │ │ │ ├── conditions-detailed-summary.test.tsx │ │ │ ├── conditions-form.scss │ │ │ ├── conditions-form.test.tsx │ │ │ ├── conditions-form.workspace.tsx │ │ │ ├── conditions-overview.component.tsx │ │ │ ├── conditions-overview.scss │ │ │ ├── conditions-overview.test.tsx │ │ │ ├── conditions-widget.component.tsx │ │ │ ├── conditions.resource.ts │ │ │ ├── delete-condition.modal.test.tsx │ │ │ ├── delete-condition.modal.tsx │ │ │ ├── delete-condition.scss │ │ │ └── utils.ts │ │ ├── config-schema.ts │ │ ├── dashboard.meta.ts │ │ ├── declarations.d.ts │ │ ├── index.ts │ │ ├── routes.json │ │ └── types │ │ │ └── index.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-flags-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── config-schema.ts │ │ ├── declarations.d.ts │ │ ├── flags │ │ │ ├── flags-highlight-bar.component.tsx │ │ │ ├── flags-highlight-bar.scss │ │ │ ├── flags-highlight-bar.test.tsx │ │ │ ├── flags-list.scss │ │ │ ├── flags-list.test.tsx │ │ │ ├── flags.component.tsx │ │ │ ├── flags.scss │ │ │ ├── flags.test.tsx │ │ │ ├── hooks │ │ │ │ ├── usePatientFlags.test.ts │ │ │ │ └── usePatientFlags.ts │ │ │ ├── patient-flags.workspace.tsx │ │ │ └── utils.ts │ │ ├── index.ts │ │ └── routes.json │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-forms-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── clinical-form-action-button.component.tsx │ │ ├── clinical-form-action-button.test.tsx │ │ ├── config-schema.ts │ │ ├── constants.ts │ │ ├── declarations.d.ts │ │ ├── forms │ │ │ ├── empty-form.component.tsx │ │ │ ├── empty-form.scss │ │ │ ├── form-entry.test.tsx │ │ │ ├── form-entry.workspace.tsx │ │ │ ├── forms-dashboard-workspace.scss │ │ │ ├── forms-dashboard.component.tsx │ │ │ ├── forms-dashboard.scss │ │ │ ├── forms-dashboard.test.tsx │ │ │ ├── forms-dashboard.workspace.tsx │ │ │ ├── forms-list.component.tsx │ │ │ ├── forms-list.scss │ │ │ ├── forms-list.test.tsx │ │ │ ├── forms-table.component.tsx │ │ │ ├── forms-table.scss │ │ │ └── forms.scss │ │ ├── helpers.ts │ │ ├── hooks │ │ │ ├── use-forms.ts │ │ │ └── use-program-config.ts │ │ ├── htmlformentry │ │ │ ├── html-form-entry-wrapper.component.tsx │ │ │ ├── html-form-entry-wrapper.scss │ │ │ └── html-form-entry.workspace.tsx │ │ ├── index.ts │ │ ├── offline-forms │ │ │ ├── offline-form-helpers.ts │ │ │ ├── offline-forms-overview-card.component.tsx │ │ │ ├── offline-forms-overview-card.scss │ │ │ ├── offline-forms.component.tsx │ │ │ ├── offline-forms.scss │ │ │ ├── offline-tools-nav-link.component.tsx │ │ │ └── use-offline-form-encounters.ts │ │ ├── offline.ts │ │ ├── routes.json │ │ └── types │ │ │ └── index.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-immunizations-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── config-schema.ts │ │ ├── dashboard.meta.ts │ │ ├── declarations.d.ts │ │ ├── hooks │ │ │ ├── useImmunizations.ts │ │ │ └── useImmunizationsConceptSet.ts │ │ ├── immunizations │ │ │ ├── components │ │ │ │ ├── dose-input.component.tsx │ │ │ │ ├── immunizations-sequence-table.component.tsx │ │ │ │ └── immunizations-sequence-table.scss │ │ │ ├── delete-immunization.modal.test.tsx │ │ │ ├── delete-immunization.modal.tsx │ │ │ ├── delete-immunization.scss │ │ │ ├── immunization-history-card.component.tsx │ │ │ ├── immunization-history-card.scss │ │ │ ├── immunization-history-dashboard.component.tsx │ │ │ ├── immunization-mapper.ts │ │ │ ├── immunizations-detailed-summary.component.tsx │ │ │ ├── immunizations-detailed-summary.scss │ │ │ ├── immunizations-detailed-summary.test.tsx │ │ │ ├── immunizations-form.scss │ │ │ ├── immunizations-form.test.tsx │ │ │ ├── immunizations-form.workspace.tsx │ │ │ ├── immunizations-overview.component.tsx │ │ │ ├── immunizations-overview.scss │ │ │ ├── immunizations-overview.test.tsx │ │ │ ├── immunizations.resource.ts │ │ │ └── utils.ts │ │ ├── index.ts │ │ ├── routes.json │ │ └── types │ │ │ ├── fhir-immunization-domain.ts │ │ │ └── index.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-label-printing-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── config-schema.ts │ │ ├── declarations.d.ts │ │ ├── hooks │ │ │ ├── useStickerPdfPrinter.test.tsx │ │ │ └── useStickerPdfPrinter.tsx │ │ ├── index.ts │ │ ├── print-identifier-sticker │ │ │ ├── print-identifier-sticker-action-button.component.tsx │ │ │ ├── print-identifier-sticker-action-button.scss │ │ │ └── print-identifier-sticker-action-button.test.tsx │ │ └── routes.json │ ├── translations │ │ └── en.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-lists-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── action-button │ │ │ └── patient-lists-action-button.extension.tsx │ │ ├── config-schema.ts │ │ ├── declarations.d.ts │ │ ├── index.ts │ │ ├── patient-lists.resource.ts │ │ ├── routes.json │ │ └── workspaces │ │ │ ├── patient-list-details-table.component.tsx │ │ │ ├── patient-list-details-table.scss │ │ │ ├── patient-list-details-table.test.tsx │ │ │ ├── patient-list-details.scss │ │ │ ├── patient-list-details.workspace.test.tsx │ │ │ ├── patient-list-details.workspace.tsx │ │ │ ├── patient-lists.scss │ │ │ ├── patient-lists.workspace.test.tsx │ │ │ └── patient-lists.workspace.tsx │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-medications-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── active-medications │ │ │ ├── active-medications.component.tsx │ │ │ ├── active-medications.scss │ │ │ └── active-medications.test.tsx │ │ ├── add-drug-order │ │ │ ├── add-drug-order.scss │ │ │ ├── add-drug-order.test.tsx │ │ │ ├── add-drug-order.workspace.tsx │ │ │ ├── drug-order-form.component.tsx │ │ │ ├── drug-order-form.resource.ts │ │ │ ├── drug-order-form.scss │ │ │ ├── drug-search │ │ │ │ ├── drug-search-combobox.component.tsx │ │ │ │ ├── drug-search-combobox.test.tsx │ │ │ │ ├── drug-search.component.tsx │ │ │ │ ├── drug-search.resource.tsx │ │ │ │ ├── helpers.ts │ │ │ │ ├── order-basket-search-results.component.tsx │ │ │ │ ├── order-basket-search-results.scss │ │ │ │ └── order-basket-search.scss │ │ │ └── fill-prescription-form.workspace.tsx │ │ ├── api │ │ │ ├── api.ts │ │ │ ├── index.ts │ │ │ └── order-config.ts │ │ ├── components │ │ │ ├── medications-details-table.component.tsx │ │ │ └── medications-details-table.scss │ │ ├── config-schema.ts │ │ ├── dashboard.meta.ts │ │ ├── declarations.d.ts │ │ ├── drug-order-basket-panel │ │ │ ├── drug-order-basket-panel.extension.tsx │ │ │ ├── drug-order-basket-panel.scss │ │ │ ├── drug-order-basket-panel.test.tsx │ │ │ ├── order-basket-item-tile.component.tsx │ │ │ ├── order-basket-item-tile.scss │ │ │ ├── order-basket.scss │ │ │ └── rx-icon.component.tsx │ │ ├── index.ts │ │ ├── medications-summary │ │ │ ├── medications-summary.component.tsx │ │ │ └── root-medication-summary.tsx │ │ ├── past-medications │ │ │ ├── past-medications.component.tsx │ │ │ ├── past-medications.scss │ │ │ └── past-medications.test.tsx │ │ ├── print │ │ │ ├── print.component.tsx │ │ │ └── print.scss │ │ ├── routes.json │ │ └── types.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-notes-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── config-schema.ts │ │ ├── dashboard.meta.ts │ │ ├── declarations.d.ts │ │ ├── index.ts │ │ ├── notes │ │ │ ├── notes-overview.extension.tsx │ │ │ ├── notes-overview.scss │ │ │ ├── notes-overview.test.tsx │ │ │ ├── paginated-notes.component.tsx │ │ │ ├── visit-note-config-schema.ts │ │ │ ├── visit-notes-form.scss │ │ │ ├── visit-notes-form.test.tsx │ │ │ ├── visit-notes-form.workspace.tsx │ │ │ └── visit-notes.resource.ts │ │ ├── routes.json │ │ ├── types │ │ │ └── index.ts │ │ ├── visit-note-action-button.extension.tsx │ │ └── visit-note-action-button.test.tsx │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-orders-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── api │ │ │ └── api.ts │ │ ├── components │ │ │ ├── general-order-table.component.tsx │ │ │ ├── general-order-table.scss │ │ │ ├── medication-record.component.tsx │ │ │ ├── medication-record.scss │ │ │ ├── order-details-table.component.tsx │ │ │ ├── order-details-table.scss │ │ │ ├── order-details-table.test.tsx │ │ │ ├── order-price-details.component.tsx │ │ │ ├── order-price-details.scss │ │ │ ├── order-price-details.test.tsx │ │ │ ├── order-stock-details.component.tsx │ │ │ ├── order-stock-details.scss │ │ │ ├── order-stock-details.test.tsx │ │ │ ├── test-order.component.tsx │ │ │ └── test-order.scss │ │ ├── config-schema.ts │ │ ├── constants │ │ │ ├── index.ts │ │ │ └── order-types.ts │ │ ├── dashboard.meta.ts │ │ ├── declarations.d.ts │ │ ├── hooks │ │ │ ├── useAreBackendModuleInstalled.tsx │ │ │ ├── useOrderPrice.test.ts │ │ │ ├── useOrderPrice.ts │ │ │ ├── useOrderStockInfo.test.ts │ │ │ └── useOrderStockInfo.ts │ │ ├── index.ts │ │ ├── lab-results │ │ │ ├── lab-result.component.tsx │ │ │ ├── lab-result.scss │ │ │ ├── lab-results-form-field.component.tsx │ │ │ ├── lab-results-form.component.tsx │ │ │ ├── lab-results-form.scss │ │ │ ├── lab-results-form.test.tsx │ │ │ ├── lab-results-schema.resource.tsx │ │ │ ├── lab-results.resource.ts │ │ │ └── print-results │ │ │ │ ├── print-modal │ │ │ │ ├── print-results-modal.scss │ │ │ │ └── print-results-modal.tsx │ │ │ │ └── print-preview │ │ │ │ ├── print-preview.component.tsx │ │ │ │ └── print-preview.scss │ │ ├── order-basket-action-button │ │ │ ├── order-basket-action-button.extension.tsx │ │ │ └── order-basket-action-button.test.tsx │ │ ├── order-basket │ │ │ ├── general-order-type │ │ │ │ ├── general-order-form │ │ │ │ │ ├── general-order-form.component.tsx │ │ │ │ │ └── general-order-form.scss │ │ │ │ ├── general-order-panel.scss │ │ │ │ ├── general-order-type.component.tsx │ │ │ │ ├── order-basket-item-tile.component.tsx │ │ │ │ ├── order-basket-item-tile.scss │ │ │ │ ├── orderable-concept-search │ │ │ │ │ ├── orderable-concept-search.scss │ │ │ │ │ ├── orderable-concept-search.workspace.tsx │ │ │ │ │ ├── search-results.component.tsx │ │ │ │ │ └── search-results.scss │ │ │ │ └── resources.ts │ │ │ ├── order-basket.scss │ │ │ └── order-basket.workspace.tsx │ │ ├── order-cancellation-form │ │ │ ├── cancel-order-form.component.tsx │ │ │ ├── cancel-order-form.scss │ │ │ └── cancel-order.resource.tsx │ │ ├── orders-summary │ │ │ └── orders-summary.component.tsx │ │ ├── print │ │ │ ├── print.component.tsx │ │ │ └── print.scss │ │ ├── routes.json │ │ ├── types │ │ │ ├── encounter.ts │ │ │ └── order.ts │ │ └── utils │ │ │ └── index.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-programs-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── config-schema.ts │ │ ├── dashboard.meta.ts │ │ ├── declarations.d.ts │ │ ├── index.ts │ │ ├── programs │ │ │ ├── delete-program.modal.tsx │ │ │ ├── delete-program.scss │ │ │ ├── delete-program.test.tsx │ │ │ ├── programs-action-menu.component.tsx │ │ │ ├── programs-action-menu.scss │ │ │ ├── programs-action-menu.test.tsx │ │ │ ├── programs-detailed-summary.component.tsx │ │ │ ├── programs-detailed-summary.scss │ │ │ ├── programs-detailed-summary.test.tsx │ │ │ ├── programs-form.scss │ │ │ ├── programs-form.test.tsx │ │ │ ├── programs-form.workspace.tsx │ │ │ ├── programs-overview.component.tsx │ │ │ ├── programs-overview.scss │ │ │ ├── programs-overview.test.tsx │ │ │ └── programs.resource.tsx │ │ ├── routes.json │ │ └── types │ │ │ └── index.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── esm-patient-tests-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── config-schema.ts │ │ ├── constants.ts │ │ ├── declarations.d.ts │ │ ├── edit-test-results │ │ │ └── modal │ │ │ │ ├── edit-lab-results.modal.tsx │ │ │ │ └── edit-lab-results.scss │ │ ├── index.ts │ │ ├── routes.json │ │ ├── test-orders │ │ │ ├── add-test-order │ │ │ │ ├── add-test-order.scss │ │ │ │ ├── add-test-order.test.tsx │ │ │ │ ├── add-test-order.workspace.tsx │ │ │ │ ├── test-order-form.component.tsx │ │ │ │ ├── test-order-form.scss │ │ │ │ ├── test-order.ts │ │ │ │ ├── test-type-search.component.tsx │ │ │ │ ├── test-type-search.scss │ │ │ │ └── useTestTypes.ts │ │ │ ├── api.ts │ │ │ └── lab-order-basket-panel │ │ │ │ ├── lab-icon.component.tsx │ │ │ │ ├── lab-order-basket-item-tile.component.tsx │ │ │ │ ├── lab-order-basket-item-tile.scss │ │ │ │ ├── lab-order-basket-panel.extension.tsx │ │ │ │ ├── lab-order-basket-panel.scss │ │ │ │ ├── lab-order-basket-panel.test.tsx │ │ │ │ └── lab-order-basket.scss │ │ ├── test-results │ │ │ ├── dashboard.meta.ts │ │ │ ├── filter │ │ │ │ ├── filter-context.tsx │ │ │ │ ├── filter-reducer.ts │ │ │ │ ├── filter-set.component.tsx │ │ │ │ ├── filter-set.scss │ │ │ │ ├── filter-types.ts │ │ │ │ └── index.ts │ │ │ ├── grouped-timeline │ │ │ │ ├── grid.component.tsx │ │ │ │ ├── grid.scss │ │ │ │ ├── grouped-timeline-types.ts │ │ │ │ ├── grouped-timeline.component.tsx │ │ │ │ ├── grouped-timeline.scss │ │ │ │ ├── grouped-timeline.test.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── reference-range-helpers.test.ts │ │ │ │ ├── reference-range-helpers.ts │ │ │ │ ├── timeline-data-group.component.tsx │ │ │ │ └── useObstreeData.ts │ │ │ ├── helpers.ts │ │ │ ├── individual-results-table-tablet │ │ │ │ ├── helper.tsx │ │ │ │ ├── individual-results-table-tablet.component.tsx │ │ │ │ ├── individual-results-table-tablet.scss │ │ │ │ ├── individual-results-table-tablet.test.tsx │ │ │ │ ├── lab-set-panel.component.tsx │ │ │ │ ├── lab-set-panel.scss │ │ │ │ ├── lab-set-panel.test.tsx │ │ │ │ └── usePanelData.tsx │ │ │ ├── individual-results-table │ │ │ │ ├── individual-results-table.component.tsx │ │ │ │ ├── individual-results-table.scss │ │ │ │ └── individual-results-table.test.tsx │ │ │ ├── loadPatientTestData │ │ │ │ ├── helpers.test.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── loadPatientData.ts │ │ │ │ └── usePatientResultsData.ts │ │ │ ├── overview │ │ │ │ ├── common-datatable.component.tsx │ │ │ │ ├── common-datatable.scss │ │ │ │ ├── common-overview.component.tsx │ │ │ │ ├── common-overview.scss │ │ │ │ ├── external-overview.extension.tsx │ │ │ │ ├── external-overview.scss │ │ │ │ └── useOverviewData.ts │ │ │ ├── print-modal │ │ │ │ ├── print-modal.extension.tsx │ │ │ │ └── print-modal.scss │ │ │ ├── results-viewer │ │ │ │ ├── index.ts │ │ │ │ ├── mock-concept-tree.ts │ │ │ │ ├── results-viewer-router.tsx │ │ │ │ ├── results-viewer.extension.test.tsx │ │ │ │ ├── results-viewer.extension.tsx │ │ │ │ └── results-viewer.scss │ │ │ ├── tablet-overlay │ │ │ │ ├── index.ts │ │ │ │ ├── tablet-overlay.component.tsx │ │ │ │ └── tablet-overlay.scss │ │ │ ├── tree-view │ │ │ │ ├── tree-view.component.tsx │ │ │ │ └── tree-view.test.tsx │ │ │ ├── trendline │ │ │ │ ├── range-selector.component.tsx │ │ │ │ ├── range-selector.test.tsx │ │ │ │ ├── timeline-results.modal.tsx │ │ │ │ ├── trendline-resource.tsx │ │ │ │ ├── trendline.component.tsx │ │ │ │ ├── trendline.scss │ │ │ │ └── trendline.test.tsx │ │ │ └── ui-elements │ │ │ │ └── reset-filters-empty-state │ │ │ │ ├── filter-empty-data-illustration.tsx │ │ │ │ ├── filter-empty-state.component.tsx │ │ │ │ └── filter-empty-state.scss │ │ └── types.ts │ ├── translations │ │ ├── am.json │ │ ├── ar.json │ │ ├── ar_SY.json │ │ ├── bn.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── en_US.json │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hi_IN.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── km.json │ │ ├── ku.json │ │ ├── ky.json │ │ ├── lg.json │ │ ├── ne.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── qu.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── si.json │ │ ├── sq.json │ │ ├── sw.json │ │ ├── sw_KE.json │ │ ├── tr.json │ │ ├── tr_TR.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── uz@Latn.json │ │ ├── uz_UZ.json │ │ ├── vi.json │ │ ├── zh.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js └── esm-patient-vitals-app │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── biometrics │ │ ├── biometrics-base.component.tsx │ │ ├── biometrics-base.scss │ │ ├── biometrics-chart.component.tsx │ │ ├── biometrics-chart.scss │ │ ├── biometrics-config-schema.ts │ │ ├── biometrics-main.component.tsx │ │ ├── biometrics-overview.component.tsx │ │ ├── biometrics-overview.test.tsx │ │ ├── paginated-biometrics.component.tsx │ │ ├── paginated-biometrics.scss │ │ └── types.ts │ ├── common │ │ ├── data.resource.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ └── types.ts │ ├── components │ │ ├── action-menu │ │ │ ├── vitals-biometrics-action-menu.component.tsx │ │ │ └── vitals-biometrics-action-menu.scss │ │ ├── delete-vitals-biometrics-modal │ │ │ └── delete-vitals-biometrics.modal.tsx │ │ └── weight-tile │ │ │ ├── weight-tile.component.tsx │ │ │ ├── weight-tile.scss │ │ │ └── weight-tile.test.tsx │ ├── config-schema.ts │ ├── constants.ts │ ├── dashboard.meta.ts │ ├── declarations.d.ts │ ├── index.ts │ ├── routes.json │ ├── utils.ts │ ├── vitals-and-biometrics-header │ │ ├── vitals-header-item.component.tsx │ │ ├── vitals-header-item.scss │ │ ├── vitals-header-item.test.tsx │ │ ├── vitals-header.extension.tsx │ │ ├── vitals-header.scss │ │ └── vitals-header.test.tsx │ ├── vitals-biometrics-form │ │ ├── schema.ts │ │ ├── vitals-biometrics-form.scss │ │ ├── vitals-biometrics-form.test.tsx │ │ ├── vitals-biometrics-form.utils.ts │ │ ├── vitals-biometrics-form.workspace.tsx │ │ ├── vitals-biometrics-input.component.tsx │ │ ├── vitals-biometrics-input.scss │ │ └── vitals-biometrics-input.test.tsx │ └── vitals │ │ ├── paginated-vitals.component.tsx │ │ ├── paginated-vitals.scss │ │ ├── print │ │ ├── print.component.tsx │ │ └── print.scss │ │ ├── types.ts │ │ ├── vitals-chart.component.tsx │ │ ├── vitals-chart.scss │ │ ├── vitals-main.component.tsx │ │ ├── vitals-overview.component.tsx │ │ ├── vitals-overview.scss │ │ ├── vitals-overview.test.tsx │ │ └── vitals-summary.component.tsx │ ├── translations │ ├── am.json │ ├── ar.json │ ├── ar_SY.json │ ├── bn.json │ ├── cs.json │ ├── de.json │ ├── en.json │ ├── en_US.json │ ├── es.json │ ├── es_MX.json │ ├── fr.json │ ├── he.json │ ├── hi.json │ ├── hi_IN.json │ ├── id.json │ ├── it.json │ ├── ka.json │ ├── km.json │ ├── ku.json │ ├── ky.json │ ├── lg.json │ ├── ne.json │ ├── pl.json │ ├── pt.json │ ├── pt_BR.json │ ├── qu.json │ ├── ro_RO.json │ ├── ru_RU.json │ ├── si.json │ ├── sq.json │ ├── sw.json │ ├── sw_KE.json │ ├── tr.json │ ├── tr_TR.json │ ├── uk.json │ ├── uz.json │ ├── uz@Latn.json │ ├── uz_UZ.json │ ├── vi.json │ ├── zh.json │ ├── zh_CN.json │ └── zh_TW.json │ ├── tsconfig.json │ └── webpack.config.js ├── playwright.config.ts ├── prettier.config.js ├── tools ├── clean-mock-data.js ├── i18next-parser.config.js ├── index.ts ├── setup-tests.ts ├── test-utils.tsx └── update-openmrs-deps.mjs ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/bundle-size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.github/workflows/bundle-size.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/open-release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.github/workflows/open-release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/tx-pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.github/workflows/tx-pull.yml -------------------------------------------------------------------------------- /.github/workflows/tx-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.github/workflows/tx-push.yml -------------------------------------------------------------------------------- /.github/workflows/update-openmrs-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.github/workflows/update-openmrs-deps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.prettierignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.tx/config -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.10.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.yarn/releases/yarn-4.10.3.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/@carbon__charts-react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/@carbon__charts-react.ts -------------------------------------------------------------------------------- /__mocks__/allergies.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/allergies.mock.ts -------------------------------------------------------------------------------- /__mocks__/chart-widgets-config.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/chart-widgets-config.mock.ts -------------------------------------------------------------------------------- /__mocks__/conditions.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/conditions.mock.ts -------------------------------------------------------------------------------- /__mocks__/encounters.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/encounters.mock.ts -------------------------------------------------------------------------------- /__mocks__/forms.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/forms.mock.ts -------------------------------------------------------------------------------- /__mocks__/generic-widgets.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/generic-widgets.mock.ts -------------------------------------------------------------------------------- /__mocks__/groupedResults.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/groupedResults.mock.ts -------------------------------------------------------------------------------- /__mocks__/immunizations.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/immunizations.mock.ts -------------------------------------------------------------------------------- /__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/index.ts -------------------------------------------------------------------------------- /__mocks__/location.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/location.mock.ts -------------------------------------------------------------------------------- /__mocks__/medication.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/medication.mock.ts -------------------------------------------------------------------------------- /__mocks__/mockBasePanel.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/mockBasePanel.mock.ts -------------------------------------------------------------------------------- /__mocks__/mockDeceasedPatient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/mockDeceasedPatient.ts -------------------------------------------------------------------------------- /__mocks__/mockOrders.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/mockOrders.mock.ts -------------------------------------------------------------------------------- /__mocks__/order-price-data.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/order-price-data.mock.ts -------------------------------------------------------------------------------- /__mocks__/order-stock-data.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/order-stock-data.mock.ts -------------------------------------------------------------------------------- /__mocks__/patient-flags.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/patient-flags.mock.ts -------------------------------------------------------------------------------- /__mocks__/patient.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/patient.mock.ts -------------------------------------------------------------------------------- /__mocks__/programs.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/programs.mock.ts -------------------------------------------------------------------------------- /__mocks__/react-i18next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/react-i18next.js -------------------------------------------------------------------------------- /__mocks__/relationships.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/relationships.mock.ts -------------------------------------------------------------------------------- /__mocks__/results.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/results.mock.ts -------------------------------------------------------------------------------- /__mocks__/session.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/session.mock.ts -------------------------------------------------------------------------------- /__mocks__/visit-notes.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/visit-notes.mock.ts -------------------------------------------------------------------------------- /__mocks__/visitQueueEntry.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/visitQueueEntry.mock.ts -------------------------------------------------------------------------------- /__mocks__/visits.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/visits.mock.ts -------------------------------------------------------------------------------- /__mocks__/vitals-and-biometrics.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/vitals-and-biometrics.mock.ts -------------------------------------------------------------------------------- /__mocks__/vitals-concept-metadata.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/__mocks__/vitals-concept-metadata.mock.ts -------------------------------------------------------------------------------- /e2e/commands/drug-order-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/commands/drug-order-operations.ts -------------------------------------------------------------------------------- /e2e/commands/encounter-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/commands/encounter-operations.ts -------------------------------------------------------------------------------- /e2e/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/commands/index.ts -------------------------------------------------------------------------------- /e2e/commands/patient-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/commands/patient-operations.ts -------------------------------------------------------------------------------- /e2e/commands/provider-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/commands/provider-operations.ts -------------------------------------------------------------------------------- /e2e/commands/test-order-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/commands/test-order-operations.ts -------------------------------------------------------------------------------- /e2e/commands/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/commands/types/index.ts -------------------------------------------------------------------------------- /e2e/commands/visit-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/commands/visit-operations.ts -------------------------------------------------------------------------------- /e2e/core/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/core/global-setup.ts -------------------------------------------------------------------------------- /e2e/core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './test'; 2 | -------------------------------------------------------------------------------- /e2e/core/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/core/test.ts -------------------------------------------------------------------------------- /e2e/fixtures/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/fixtures/api.ts -------------------------------------------------------------------------------- /e2e/fixtures/index.ts: -------------------------------------------------------------------------------- 1 | export * from './api'; 2 | -------------------------------------------------------------------------------- /e2e/pages/allergies-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/allergies-page.ts -------------------------------------------------------------------------------- /e2e/pages/attachments-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/attachments-page.ts -------------------------------------------------------------------------------- /e2e/pages/chart-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/chart-page.ts -------------------------------------------------------------------------------- /e2e/pages/conditions-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/conditions-page.ts -------------------------------------------------------------------------------- /e2e/pages/immunizations-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/immunizations-page.ts -------------------------------------------------------------------------------- /e2e/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/index.ts -------------------------------------------------------------------------------- /e2e/pages/mark-patient-deceased-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/mark-patient-deceased-page.ts -------------------------------------------------------------------------------- /e2e/pages/medications-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/medications-page.ts -------------------------------------------------------------------------------- /e2e/pages/orders-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/orders-page.ts -------------------------------------------------------------------------------- /e2e/pages/program-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/program-page.ts -------------------------------------------------------------------------------- /e2e/pages/results-viewer-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/results-viewer-page.ts -------------------------------------------------------------------------------- /e2e/pages/visits-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/visits-page.ts -------------------------------------------------------------------------------- /e2e/pages/vitals-and-biometrics-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/pages/vitals-and-biometrics-page.ts -------------------------------------------------------------------------------- /e2e/specs/allergies.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/allergies.spec.ts -------------------------------------------------------------------------------- /e2e/specs/attachments.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/attachments.spec.ts -------------------------------------------------------------------------------- /e2e/specs/biometrics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/biometrics.spec.ts -------------------------------------------------------------------------------- /e2e/specs/clinical-forms.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/clinical-forms.spec.ts -------------------------------------------------------------------------------- /e2e/specs/conditions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/conditions.spec.ts -------------------------------------------------------------------------------- /e2e/specs/drug-orders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/drug-orders.spec.ts -------------------------------------------------------------------------------- /e2e/specs/edit-existing-visit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/edit-existing-visit.spec.ts -------------------------------------------------------------------------------- /e2e/specs/edit-past-visit-start-date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/edit-past-visit-start-date.spec.ts -------------------------------------------------------------------------------- /e2e/specs/immunizations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/immunizations.spec.ts -------------------------------------------------------------------------------- /e2e/specs/lab-orders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/lab-orders.spec.ts -------------------------------------------------------------------------------- /e2e/specs/mark-patient-deceased.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/mark-patient-deceased.spec.ts -------------------------------------------------------------------------------- /e2e/specs/program-enrollment.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/program-enrollment.spec.ts -------------------------------------------------------------------------------- /e2e/specs/results-viewer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/results-viewer.spec.ts -------------------------------------------------------------------------------- /e2e/specs/start-and-end-visit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/start-and-end-visit.spec.ts -------------------------------------------------------------------------------- /e2e/specs/visit-context-navigation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/visit-context-navigation.spec.ts -------------------------------------------------------------------------------- /e2e/specs/visit-note.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/visit-note.spec.ts -------------------------------------------------------------------------------- /e2e/specs/vitals.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/specs/vitals.spec.ts -------------------------------------------------------------------------------- /e2e/support/bamboo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/support/bamboo/docker-compose.yml -------------------------------------------------------------------------------- /e2e/support/bamboo/e2e-test-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/support/bamboo/e2e-test-runner.sh -------------------------------------------------------------------------------- /e2e/support/bamboo/playwright.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/support/bamboo/playwright.Dockerfile -------------------------------------------------------------------------------- /e2e/support/github/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/support/github/Dockerfile -------------------------------------------------------------------------------- /e2e/support/github/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/support/github/docker-compose.yml -------------------------------------------------------------------------------- /e2e/support/github/run-e2e-docker-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/support/github/run-e2e-docker-env.sh -------------------------------------------------------------------------------- /e2e/support/upload/brainScan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/e2e/support/upload/brainScan.jpeg -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/example.env -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/package.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/README.md -------------------------------------------------------------------------------- /packages/esm-form-engine-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-form-engine-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/package.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-form-engine-app/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-form-engine-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-form-engine-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/src/types/index.ts -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/ar_SY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/ar_SY.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/en_US.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/es_MX.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/hi_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/hi_IN.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/pt_BR.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/ro_RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/ro_RO.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/ru_RU.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/sw_KE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/sw_KE.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/tr_TR.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/uz@Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/uz@Latn.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/uz_UZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/uz_UZ.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/zh_CN.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/translations/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/translations/zh_TW.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-form-engine-app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-engine-app/webpack.config.js -------------------------------------------------------------------------------- /packages/esm-form-entry-app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/.eslintrc.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/README.md -------------------------------------------------------------------------------- /packages/esm-form-entry-app/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/angular.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/e2e/protractor.conf.js -------------------------------------------------------------------------------- /packages/esm-form-entry-app/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/e2e/src/app.po.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/e2e/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/karma.conf.js -------------------------------------------------------------------------------- /packages/esm-form-entry-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/package.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/app/app.component.html -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/app/app.component.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/app/app.module.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/app/offline/caching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/app/offline/caching.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/app/offline/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/app/offline/sync.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/app/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/app/types/index.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/app/window-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/app/window-ref.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/bootstrap.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/openmrs-esm-framework.mock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/single-spa-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/single-spa-props.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/styles.css -------------------------------------------------------------------------------- /packages/esm-form-entry-app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/src/test.ts -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/ar_SY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/ar_SY.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/en_US.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/es_MX.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/hi_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/hi_IN.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/pt_BR.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/ro_RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/ro_RO.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/ru_RU.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/sw_KE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/sw_KE.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/tr_TR.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/uz@Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/uz@Latn.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/uz_UZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/uz_UZ.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/zh_CN.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/translations/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/translations/zh_TW.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/tsconfig.app.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/tsconfig.spec.json -------------------------------------------------------------------------------- /packages/esm-form-entry-app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-form-entry-app/webpack.config.js -------------------------------------------------------------------------------- /packages/esm-form-entry-app/webpack.prod.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./webpack.config'); 2 | -------------------------------------------------------------------------------- /packages/esm-generic-patient-widgets-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-generic-patient-widgets-app/README.md -------------------------------------------------------------------------------- /packages/esm-generic-patient-widgets-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-generic-patient-widgets-app/package.json -------------------------------------------------------------------------------- /packages/esm-generic-patient-widgets-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-generic-patient-widgets-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-generic-patient-widgets-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-generic-patient-widgets-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-generic-patient-widgets-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-allergies-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-allergies-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-allergies-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-allergies-app/src/constants.ts -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-allergies-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-allergies-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-allergies-app/src/types/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-allergies-app/src/utils.ts -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-allergies-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-allergies-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-attachments-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-attachments-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-attachments-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-attachments-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-attachments-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-attachments-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-attachments-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-attachments-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-attachments-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-attachments-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-attachments-app/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-attachments-app/src/utils.ts -------------------------------------------------------------------------------- /packages/esm-patient-attachments-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-attachments-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-attachments-app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-attachments-app/webpack.config.js -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/src/types/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-banner-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-banner-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/actions-buttons/action-button.scss: -------------------------------------------------------------------------------- 1 | .menuitem { 2 | max-width: none; 3 | } 4 | -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/constants.ts -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/dashboard.meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/dashboard.meta.ts -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/data.resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/data.resource.ts -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/loader/loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/loader/loader.scss -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/offline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/offline.ts -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/root.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/root.component.tsx -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/root.scss -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/utils.test.ts -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/src/utils.ts -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/src/visit/visit-history-table/visit-actions-cell.scss: -------------------------------------------------------------------------------- 1 | .visitActions { 2 | display: flex; 3 | align-items: center; 4 | } 5 | -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/ar_SY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/ar_SY.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/en_US.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/es_MX.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/hi_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/hi_IN.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/pt_BR.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/ro_RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/ro_RO.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/ru_RU.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/sw_KE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/sw_KE.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/tr_TR.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/uz_UZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/uz_UZ.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/zh_CN.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/translations/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/translations/zh_TW.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-chart-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-chart-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/README.md -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/package.json -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/cards/index.ts: -------------------------------------------------------------------------------- 1 | export * from './card-header.component'; 2 | -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/compare.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/error-state/index.ts: -------------------------------------------------------------------------------- 1 | export * from './error-state.component'; 2 | -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/offline/visit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/offline/visit.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/orders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/orders/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/orders/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/orders/store.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/time-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/time-helper.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/types/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/visit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/visit/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/src/workspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/src/workspaces.ts -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-common-lib/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-common-lib/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-conditions-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-conditions-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-conditions-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-conditions-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-conditions-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-conditions-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-conditions-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-conditions-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-conditions-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-conditions-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-conditions-app/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-conditions-app/src/types/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-conditions-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-conditions-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-conditions-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/src/flags/flags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/src/flags/flags.scss -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/src/flags/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/src/flags/utils.ts -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/ar_SY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/ar_SY.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/en_US.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/es_MX.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/hi_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/hi_IN.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/pt_BR.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/ro_RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/ro_RO.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/ru_RU.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/sw_KE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/sw_KE.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/tr_TR.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/uz_UZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/uz_UZ.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/zh_CN.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/translations/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/translations/zh_TW.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-flags-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-flags-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/constants.ts -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/forms/forms-dashboard-workspace.scss: -------------------------------------------------------------------------------- 1 | .container { 2 | height: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/forms/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/forms/forms.scss -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/helpers.ts -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/hooks/use-forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/hooks/use-forms.ts -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/offline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/offline.ts -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/src/types/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/ar_SY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/ar_SY.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/en_US.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/es_MX.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/hi_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/hi_IN.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/pt_BR.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/ro_RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/ro_RO.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/ru_RU.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/sw_KE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/sw_KE.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/tr_TR.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/uz_UZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/uz_UZ.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/zh_CN.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/translations/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/translations/zh_TW.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-forms-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-forms-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-immunizations-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-immunizations-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-immunizations-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-immunizations-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-immunizations-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-immunizations-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-immunizations-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-immunizations-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-immunizations-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-immunizations-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-immunizations-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-immunizations-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-immunizations-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-label-printing-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-label-printing-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-label-printing-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-label-printing-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-label-printing-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-label-printing-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-label-printing-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-label-printing-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-label-printing-app/src/print-identifier-sticker/print-identifier-sticker-action-button.scss: -------------------------------------------------------------------------------- 1 | .menuitem { 2 | max-width: none; 3 | } 4 | -------------------------------------------------------------------------------- /packages/esm-patient-label-printing-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-label-printing-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-label-printing-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/ar_SY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/ar_SY.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/en_US.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/es_MX.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/hi_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/hi_IN.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/pt_BR.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/ro_RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/ro_RO.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/ru_RU.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/sw_KE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/sw_KE.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/tr_TR.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/uz_UZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/uz_UZ.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/zh_CN.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/translations/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/translations/zh_TW.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-lists-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-lists-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-medications-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-medications-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-medications-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/src/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-medications-app/src/api/api.ts -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/src/api/index.ts: -------------------------------------------------------------------------------- 1 | export * from './api'; 2 | -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-medications-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-medications-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-medications-app/src/types.ts -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-medications-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-medications-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/src/dashboard.meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/src/dashboard.meta.ts -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/src/types/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/ar_SY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/ar_SY.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/en_US.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/es_MX.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/hi_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/hi_IN.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/pt_BR.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/ro_RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/ro_RO.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-notes-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-notes-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/src/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/src/api/api.ts -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/src/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './order-types'; 2 | -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/src/print/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/src/print/print.scss -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/src/types/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/src/types/order.ts -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/src/utils/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-orders-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-orders-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-programs-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-programs-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-programs-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-programs-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-programs-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-programs-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-programs-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-programs-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-programs-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-programs-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-programs-app/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-programs-app/src/types/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-programs-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-programs-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-programs-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/src/constants.ts -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/src/types.ts -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-tests-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-tests-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/README.md -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/jest.config.js -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/package.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/src/common/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/src/common/types.ts -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/src/config-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/src/config-schema.ts -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/src/constants.ts -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/src/index.ts -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/src/routes.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/src/utils.ts -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/src/vitals/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/src/vitals/types.ts -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/am.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/ar.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/bn.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/cs.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/de.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/en.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/es.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/fr.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/he.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/hi.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/id.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/it.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/ka.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/km.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/ku.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/ky.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/lg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/lg.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/ne.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/pl.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/pt.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/qu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/qu.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/si.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/sq.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/sw.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/tr.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/uk.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/uz.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/vi.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/translations/zh.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/packages/esm-patient-vitals-app/tsconfig.json -------------------------------------------------------------------------------- /packages/esm-patient-vitals-app/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('openmrs/default-webpack-config'); 2 | -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/prettier.config.js -------------------------------------------------------------------------------- /tools/clean-mock-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/tools/clean-mock-data.js -------------------------------------------------------------------------------- /tools/i18next-parser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/tools/i18next-parser.config.js -------------------------------------------------------------------------------- /tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/tools/index.ts -------------------------------------------------------------------------------- /tools/setup-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/tools/setup-tests.ts -------------------------------------------------------------------------------- /tools/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/tools/test-utils.tsx -------------------------------------------------------------------------------- /tools/update-openmrs-deps.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/tools/update-openmrs-deps.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-esm-patient-chart/HEAD/yarn.lock --------------------------------------------------------------------------------