├── .babelrc ├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ └── issue_template.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── publish_npmjs.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierrc ├── .storybook ├── main.js ├── manager.js ├── preview-head.html └── preview.js ├── .stylelintrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── jest.config.js ├── jest └── mocks │ ├── cssModule.js │ └── image.js ├── package.json ├── src ├── assets │ ├── common │ │ └── chevron-right.svg │ └── containers │ │ ├── AdverseEvent │ │ └── adverse-event.svg │ │ ├── AllergyIntolerance │ │ └── allergy-intolerance.svg │ │ ├── Appointment │ │ └── appointment.svg │ │ ├── Binary │ │ └── binary.svg │ │ ├── CarePlan │ │ └── care-plan.svg │ │ ├── CareTeam │ │ └── care-team.svg │ │ ├── Claim │ │ └── claim.svg │ │ ├── ClaimResponse │ │ └── claim-response.svg │ │ ├── Condition │ │ └── condition.svg │ │ ├── Coverage │ │ └── coverage.svg │ │ ├── Device │ │ └── device.svg │ │ ├── DiagnosticReport │ │ └── diagnostic-report.svg │ │ ├── DocumentReference │ │ └── document-reference.svg │ │ ├── Encounter │ │ └── encounter.svg │ │ ├── ExplanationOfBenefit │ │ └── explanation-of-benefit.svg │ │ ├── FamilyMemberHistory │ │ └── family-member-history.svg │ │ ├── Generic │ │ └── generic.svg │ │ ├── Goal │ │ └── goal.svg │ │ ├── Immunization │ │ └── immunization.svg │ │ ├── List │ │ └── list.svg │ │ ├── Location │ │ └── location.svg │ │ ├── Medication │ │ └── medication.svg │ │ ├── MedicationAdministration │ │ └── medication-administration.svg │ │ ├── MedicationDispense │ │ └── medication-dispense.svg │ │ ├── MedicationKnowledge │ │ └── medication-knowledge.svg │ │ ├── MedicationOrder │ │ └── medication-order.svg │ │ ├── MedicationRequest │ │ └── medication-request.svg │ │ ├── MedicationStatement │ │ └── medication-statement.svg │ │ ├── Observation │ │ └── observation.svg │ │ ├── Organization │ │ └── organization.svg │ │ ├── Patient │ │ └── patient.svg │ │ ├── Practitioner │ │ └── practitioner.svg │ │ ├── PractitionerRole │ │ └── practitioner-role.svg │ │ ├── Procedure │ │ └── procedure.svg │ │ ├── Questionnaire │ │ └── questionnaire.svg │ │ ├── QuestionnaireResponse │ │ └── questionnaire-response.svg │ │ ├── QustionnaireResponse │ │ └── questionnaire-response.svg │ │ ├── ReferralRequest │ │ └── referral-request.svg │ │ ├── RelatedPerson │ │ └── related-person.svg │ │ ├── ResearchStudy │ │ └── research-study.svg │ │ └── ResourceCategory │ │ └── resource-category.svg ├── components │ ├── containers │ │ ├── Accordion │ │ │ ├── Accordion.js │ │ │ ├── Accordion.stories.js │ │ │ └── index.js │ │ ├── CodeBlock │ │ │ ├── CodeBlock.css │ │ │ ├── CodeBlock.js │ │ │ └── index.js │ │ ├── FhirResource │ │ │ ├── FhirResource.js │ │ │ └── index.js │ │ └── ResourceContainer │ │ │ ├── ResourceContainer.css │ │ │ ├── ResourceContainer.js │ │ │ ├── ResourceContainer.stories.js │ │ │ └── index.js │ ├── datatypes │ │ ├── AccountBalance │ │ │ ├── AccountBalance.js │ │ │ └── index.js │ │ ├── Address │ │ │ ├── Address.js │ │ │ └── index.js │ │ ├── Annotation │ │ │ ├── Annotation.js │ │ │ └── index.js │ │ ├── Attachment │ │ │ ├── Attachment.css │ │ │ ├── Attachment.js │ │ │ └── index.js │ │ ├── BinaryText │ │ │ ├── BinaryText.css │ │ │ ├── BinaryText.js │ │ │ └── index.js │ │ ├── CodeableConcept │ │ │ ├── CodeableConcept.css │ │ │ ├── CodeableConcept.js │ │ │ └── index.js │ │ ├── Coding │ │ │ ├── Coding.css │ │ │ ├── Coding.js │ │ │ └── index.js │ │ ├── Date │ │ │ ├── Date.js │ │ │ └── index.js │ │ ├── DatePeriod │ │ │ ├── DatePeriod.js │ │ │ └── index.js │ │ ├── HeaderIcon │ │ │ ├── HeaderIcon.js │ │ │ └── index.js │ │ ├── HumanName │ │ │ ├── HumanName.js │ │ │ └── index.js │ │ ├── Identifier │ │ │ ├── Identifier.css │ │ │ ├── Identifier.js │ │ │ └── index.js │ │ ├── Img │ │ │ ├── Img.css │ │ │ ├── Img.js │ │ │ └── index.js │ │ ├── Markdown │ │ │ ├── Markdown.js │ │ │ ├── Markdown.test.js │ │ │ └── index.js │ │ ├── Money │ │ │ ├── Money.js │ │ │ ├── Money.test.js │ │ │ └── index.js │ │ ├── Pdf │ │ │ ├── Pdf.js │ │ │ └── index.js │ │ ├── Period │ │ │ ├── Period.js │ │ │ └── index.js │ │ ├── Quantity │ │ │ ├── Quantity.js │ │ │ ├── Quantity.test.js │ │ │ └── index.js │ │ ├── Reference │ │ │ ├── Reference.css │ │ │ ├── Reference.js │ │ │ └── index.js │ │ └── Telecom │ │ │ ├── Telecom.css │ │ │ ├── Telecom.js │ │ │ └── index.js │ ├── defaultArgTypes.js │ ├── resources │ │ ├── AdverseEvent │ │ │ ├── AdverseEvent.js │ │ │ ├── AdverseEvent.stories.js │ │ │ ├── AdverseEvent.test.js │ │ │ └── index.js │ │ ├── AllergyIntolerance │ │ │ ├── AllergyIntolerance.js │ │ │ ├── AllergyIntolerance.stories.js │ │ │ ├── AllergyIntolerance.test.js │ │ │ └── index.js │ │ ├── Appointment │ │ │ ├── Appointment.js │ │ │ ├── Appointment.stories.js │ │ │ ├── Appointment.test.js │ │ │ └── index.js │ │ ├── Binary │ │ │ ├── Binary.js │ │ │ ├── Binary.stories.js │ │ │ ├── Binary.test.js │ │ │ └── index.js │ │ ├── Bundle │ │ │ ├── Bundle.css │ │ │ ├── Bundle.js │ │ │ ├── Bundle.stories.js │ │ │ ├── Bundle.test.js │ │ │ └── index.js │ │ ├── CarePlan │ │ │ ├── CarePlan.js │ │ │ ├── CarePlan.stories.js │ │ │ ├── CarePlan.test.js │ │ │ ├── CarePlanActivity.js │ │ │ └── index.js │ │ ├── CareTeam │ │ │ ├── CareTeam.js │ │ │ ├── CareTeam.stories.js │ │ │ ├── CareTeam.test.js │ │ │ ├── CareTeamParticipant.js │ │ │ ├── CareTeamParticipants.js │ │ │ └── index.js │ │ ├── Claim │ │ │ ├── CareTeam.js │ │ │ ├── Claim.css │ │ │ ├── Claim.js │ │ │ ├── Claim.stories.js │ │ │ ├── Claim.test.js │ │ │ ├── Diagnosis.js │ │ │ ├── Insurance.js │ │ │ ├── Item.js │ │ │ ├── Items.js │ │ │ └── index.js │ │ ├── ClaimResponse │ │ │ ├── AddedItem.js │ │ │ ├── AddedItems.js │ │ │ ├── ClaimResponse.css │ │ │ ├── ClaimResponse.js │ │ │ ├── ClaimResponse.stories.js │ │ │ ├── ClaimResponse.test.js │ │ │ ├── Item.js │ │ │ ├── Items.js │ │ │ └── index.js │ │ ├── Condition │ │ │ ├── Condition.js │ │ │ ├── Condition.stories.js │ │ │ ├── Condition.test.js │ │ │ └── index.js │ │ ├── Coverage │ │ │ ├── Coverage.js │ │ │ ├── Coverage.stories.js │ │ │ ├── Coverage.test.js │ │ │ └── index.js │ │ ├── Device │ │ │ ├── Device.js │ │ │ ├── Device.stories.js │ │ │ ├── Device.test.js │ │ │ └── index.js │ │ ├── DiagnosticReport │ │ │ ├── DiagnosticReport.js │ │ │ ├── DiagnosticReport.stories.js │ │ │ ├── DiagnosticReport.test.js │ │ │ └── index.js │ │ ├── DocumentReference │ │ │ ├── DocumentReference.js │ │ │ ├── DocumentReference.stories.js │ │ │ ├── DocumentReference.test.js │ │ │ └── index.js │ │ ├── Encounter │ │ │ ├── EachParticipant.js │ │ │ ├── EachParticipant.test.js │ │ │ ├── Encounter.js │ │ │ ├── Encounter.stories.js │ │ │ ├── Encounter.test.js │ │ │ ├── EncounterParticipants.js │ │ │ └── index.js │ │ ├── ExplanationOfBenefit │ │ │ ├── CareTeam.js │ │ │ ├── Diagnosis.js │ │ │ ├── ExplanationOfBenefit.js │ │ │ ├── ExplanationOfBenefit.stories.js │ │ │ ├── ExplanationOfBenefit.test.js │ │ │ ├── Items.js │ │ │ ├── PriceLabel.js │ │ │ ├── Related.js │ │ │ ├── SupportingInfo.js │ │ │ ├── TotalGraph.js │ │ │ ├── TotalSum.js │ │ │ └── index.js │ │ ├── ExplanationOfBenefitGraph │ │ │ ├── ExplanationOfBenefitGraph.js │ │ │ ├── ExplanationOfBenefitGraph.stories.js │ │ │ ├── ExplanationOfBenefitGraph.test.js │ │ │ └── index.js │ │ ├── FamilyMemberHistory │ │ │ ├── FamilyMemberHistory.js │ │ │ ├── FamilyMemberHistory.stories.js │ │ │ ├── FamilyMemberHistory.test.js │ │ │ └── index.js │ │ ├── Generic │ │ │ ├── Generic.js │ │ │ ├── Generic.stories.js │ │ │ ├── Generic.test.js │ │ │ └── index.js │ │ ├── Goal │ │ │ ├── Goal.js │ │ │ ├── Goal.stories.js │ │ │ ├── Goal.test.js │ │ │ └── index.js │ │ ├── Immunization │ │ │ ├── Immunization.js │ │ │ ├── Immunization.stories.js │ │ │ ├── Immunization.test.js │ │ │ └── index.js │ │ ├── List │ │ │ ├── DrugTierDefinitionExtension.js │ │ │ ├── Entries.js │ │ │ ├── List.js │ │ │ ├── List.stories.js │ │ │ ├── List.test.js │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── Location │ │ │ ├── Location.js │ │ │ ├── Location.stories.js │ │ │ ├── Location.test.js │ │ │ └── index.js │ │ ├── Medication │ │ │ ├── Medication.js │ │ │ ├── Medication.stories.js │ │ │ ├── Medication.test.js │ │ │ └── index.js │ │ ├── MedicationAdministration │ │ │ ├── MedicationAdministration.js │ │ │ ├── MedicationAdministration.stories.js │ │ │ ├── MedicationAdministration.test.js │ │ │ └── index.js │ │ ├── MedicationDispense │ │ │ ├── DosageInstruction.js │ │ │ ├── MedicationDispense.js │ │ │ ├── MedicationDispense.stories.js │ │ │ ├── MedicationDispense.test.js │ │ │ └── index.js │ │ ├── MedicationKnowledge │ │ │ ├── MedicationKnowledge.js │ │ │ ├── MedicationKnowledge.stories.js │ │ │ ├── MedicationKnowledge.test.js │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── MedicationOrder │ │ │ ├── MedicationOrder.js │ │ │ ├── MedicationOrder.stories.js │ │ │ ├── MedicationOrder.test.js │ │ │ └── index.js │ │ ├── MedicationRequest │ │ │ ├── MedicationRequest.js │ │ │ ├── MedicationRequest.stories.js │ │ │ ├── MedicationRequest.test.js │ │ │ └── index.js │ │ ├── MedicationStatement │ │ │ ├── MedicationDetails.js │ │ │ ├── MedicationDosage.js │ │ │ ├── MedicationStatement.js │ │ │ ├── MedicationStatement.stories.js │ │ │ ├── MedicationStatement.test.js │ │ │ └── index.js │ │ ├── Observation │ │ │ ├── Observation.js │ │ │ ├── Observation.stories.js │ │ │ ├── Observation.test.js │ │ │ ├── ObservationGraph.js │ │ │ ├── ObservationGraph.test.js │ │ │ └── index.js │ │ ├── Organization │ │ │ ├── Organization.js │ │ │ ├── Organization.stories.js │ │ │ ├── Organization.test.js │ │ │ └── index.js │ │ ├── Patient │ │ │ ├── Patient.js │ │ │ ├── Patient.stories.js │ │ │ ├── Patient.test.js │ │ │ └── index.js │ │ ├── Practitioner │ │ │ ├── PatientContact.js │ │ │ ├── Practitioner.css │ │ │ ├── Practitioner.js │ │ │ ├── Practitioner.stories.js │ │ │ ├── Practitioner.test.js │ │ │ └── index.js │ │ ├── PractitionerRole │ │ │ ├── PractitionerRole.js │ │ │ ├── PractitionerRole.stories.js │ │ │ ├── PractitionerRole.test.js │ │ │ └── index.js │ │ ├── Procedure │ │ │ ├── Procedure.js │ │ │ ├── Procedure.stories.js │ │ │ ├── Procedure.test.js │ │ │ └── index.js │ │ ├── Questionnaire │ │ │ ├── Group.js │ │ │ ├── Items.js │ │ │ ├── Questionnaire.css │ │ │ ├── Questionnaire.js │ │ │ ├── Questionnaire.stories.js │ │ │ ├── Questionnaire.test.js │ │ │ ├── Questions.js │ │ │ ├── getQuestionText.js │ │ │ └── index.js │ │ ├── QuestionnaireResponse │ │ │ ├── Answers.js │ │ │ ├── Group.js │ │ │ ├── Items.js │ │ │ ├── QuestionnaireResponse.css │ │ │ ├── QuestionnaireResponse.js │ │ │ ├── QuestionnaireResponse.stories.js │ │ │ ├── QuestionnaireResponse.test.js │ │ │ ├── Questions.js │ │ │ ├── getQuestionText.js │ │ │ └── index.js │ │ ├── ReferralRequest │ │ │ ├── ReferralRequest.js │ │ │ ├── ReferralRequest.stories.js │ │ │ ├── ReferralRequest.test.js │ │ │ └── index.js │ │ ├── RelatedPerson │ │ │ ├── RelatedPerson.js │ │ │ ├── RelatedPerson.stories.js │ │ │ ├── RelatedPerson.test.js │ │ │ └── index.js │ │ ├── ResearchStudy │ │ │ ├── ResearchStudy.js │ │ │ ├── ResearchStudy.stories.js │ │ │ ├── ResearchStudy.test.js │ │ │ └── index.js │ │ ├── ResourceCategory │ │ │ ├── ResourceCategory.js │ │ │ ├── ResourceCategory.stories.js │ │ │ ├── ResourceCategory.test.js │ │ │ └── index.js │ │ ├── UnhandledResourceDataStructure │ │ │ ├── UnhandledResourceDataStructure.js │ │ │ └── index.js │ │ └── fhirResourceVersions.js │ ├── supportedFhirResourceList.js │ └── ui │ │ ├── _header.scss │ │ ├── bootstrap-reboot.min.css │ │ └── index.js ├── constants │ └── badge-status.jsx ├── fixtures │ ├── dstu2 │ │ └── resources │ │ │ ├── allergyIntolerance │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── appointment │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── binary │ │ │ ├── example-jpeg.json │ │ │ └── example-pdf.json │ │ │ ├── bundle │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ ├── example3.json │ │ │ └── example4.json │ │ │ ├── carePlan │ │ │ └── example1.json │ │ │ ├── claim │ │ │ └── example-1.json │ │ │ ├── claimResponse │ │ │ └── example-1.json │ │ │ ├── condition │ │ │ ├── condition.svg │ │ │ ├── example-severity.json │ │ │ ├── example.json │ │ │ └── example3.json │ │ │ ├── coverage │ │ │ └── example1.json │ │ │ ├── device │ │ │ ├── example.json │ │ │ └── example2.json │ │ │ ├── diagnosticReport │ │ │ └── example1.json │ │ │ ├── documentReference │ │ │ └── example1.json │ │ │ ├── encounter │ │ │ ├── example-2.json │ │ │ └── example.json │ │ │ ├── explanationOfBenefit │ │ │ └── example1.json │ │ │ ├── familyMemberHistory │ │ │ └── example1.json │ │ │ ├── goal │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── immunization │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── immunization.svg │ │ │ ├── list │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── location │ │ │ └── example1.json │ │ │ ├── medication │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── medicationAdministration │ │ │ └── example1.json │ │ │ ├── medicationDispense │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── medicationOrder │ │ │ └── example.json │ │ │ ├── medicationStatement │ │ │ └── example1.json │ │ │ ├── observation │ │ │ ├── example-issued.json │ │ │ └── example.json │ │ │ ├── organization │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── patient │ │ │ ├── example.json │ │ │ └── example2.json │ │ │ ├── practitioner │ │ │ ├── example-1.json │ │ │ └── example-2.json │ │ │ ├── procedure │ │ │ └── example1.json │ │ │ ├── questionnaire │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── questionnaireResponse │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── referralRequest │ │ │ └── example1.json │ │ │ └── relatedPerson │ │ │ └── example1.json │ ├── example-icons.jsx │ ├── r4 │ │ └── resources │ │ │ ├── adverseEvent │ │ │ └── example1.json │ │ │ ├── allergyIntolerance │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── appointment │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── bundle │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ ├── example3.json │ │ │ └── example4.json │ │ │ ├── carePlan │ │ │ ├── heartOperationPlan.json │ │ │ ├── pregnancyPlan.json │ │ │ └── weightLossPlan.json │ │ │ ├── careTeam │ │ │ └── example1.json │ │ │ ├── claim │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── claimResponse │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── condition │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── coverage │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── device │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── diagnosticReport │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── documentReference │ │ │ └── example1.json │ │ │ ├── encounter │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── explanationOfBenefit │ │ │ ├── c4bbExample.json │ │ │ ├── c4bbExtendedDiagnosis.json │ │ │ ├── eobForClaimWithErrors.json │ │ │ └── personPrimaryCoverage.json │ │ │ ├── goal │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── immunization │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── list │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── location │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── medication │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── medicationAdministration │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── medicationDispense │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── medicationKnowledge │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ ├── example3.json │ │ │ └── example4.json │ │ │ ├── medicationRequest │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── medicationStatement │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── observation │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── organization │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── patient │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── practitioner │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── practitionerRole │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ ├── example3.json │ │ │ └── example4.json │ │ │ ├── procedure │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── questionnaire │ │ │ ├── example1.json │ │ │ ├── example2.json │ │ │ └── example3.json │ │ │ ├── questionnaireResponse │ │ │ ├── example1.json │ │ │ └── example2.json │ │ │ ├── relatedPerson │ │ │ └── example1.json │ │ │ └── researchStudy │ │ │ └── example1.json │ └── stu3 │ │ └── resources │ │ ├── adverseEvent │ │ └── example1.json │ │ ├── allergyIntolerance │ │ ├── example1.json │ │ └── example2.json │ │ ├── appointment │ │ ├── example1.json │ │ ├── example2.json │ │ └── example3.json │ │ ├── binary │ │ ├── example-jpeg.json │ │ ├── example-json.json │ │ └── example-pdf.json │ │ ├── bundle │ │ ├── example1.json │ │ ├── example2.json │ │ ├── example3.json │ │ └── example4.json │ │ ├── carePlan │ │ ├── example1.json │ │ └── example2.json │ │ ├── careTeam │ │ ├── example1.json │ │ └── example2.json │ │ ├── claim │ │ ├── example-1.json │ │ ├── example-2.json │ │ └── example-3.json │ │ ├── claimResponse │ │ ├── example-1.json │ │ └── example-2.json │ │ ├── condition │ │ ├── example-severity.json │ │ └── example.json │ │ ├── coverage │ │ ├── example1.json │ │ └── example2.json │ │ ├── device │ │ ├── example1.json │ │ └── example2.json │ │ ├── diagnosticReport │ │ └── example1.json │ │ ├── documentReference │ │ └── example1.json │ │ ├── encounter │ │ ├── example-1.json │ │ └── example-2.json │ │ ├── explanationOfBenefit │ │ ├── example1.json │ │ └── example2.json │ │ ├── familyMemberHistory │ │ ├── example1.json │ │ └── example2.json │ │ ├── goal │ │ └── example1.json │ │ ├── immunization │ │ └── example1.json │ │ ├── list │ │ ├── example1.json │ │ ├── example2.json │ │ └── example3.json │ │ ├── location │ │ └── example1.json │ │ ├── medication │ │ ├── example1.json │ │ └── example2.json │ │ ├── medicationAdministration │ │ └── example1.json │ │ ├── medicationDispense │ │ ├── example1.json │ │ └── example2.json │ │ ├── medicationRequest │ │ ├── example1.json │ │ └── example2.json │ │ ├── medicationStatement │ │ ├── example1.json │ │ └── example2.json │ │ ├── observation │ │ ├── example-f002-excess.json │ │ ├── example-weight.json │ │ └── example3.json │ │ ├── organization │ │ ├── example1.json │ │ └── example2.json │ │ ├── patient │ │ ├── example.json │ │ └── example2.json │ │ ├── practitioner │ │ └── example-1.json │ │ ├── practitionerRole │ │ ├── example1.json │ │ ├── example2.json │ │ └── example3.json │ │ ├── procedure │ │ ├── example-medicare.json │ │ └── example1.json │ │ ├── questionnaire │ │ ├── example1.json │ │ └── example2.json │ │ ├── questionnaireResponse │ │ ├── example1.json │ │ └── example2.json │ │ ├── referralRequest │ │ └── example1.json │ │ ├── relatedPerson │ │ └── example1.json │ │ └── researchStudy │ │ └── example-1.json ├── index.js ├── style.css ├── style.scss ├── testUtils.js ├── utils.js ├── utils.test.js └── utils │ ├── convertCamelCaseToSentence.js │ ├── convertCamelCaseToSentence.test.js │ ├── formatDate.js │ ├── formatDate.test.js │ ├── getBadgeColor.js │ ├── getBadgeColor.test.js │ ├── getResourceDate.js │ ├── isUrl.js │ └── isUrl.test.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | /build 4 | /out* -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.github/ISSUE_TEMPLATE/issue_template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/publish_npmjs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.github/workflows/publish_npmjs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | /build 4 | /coverage 5 | /out* 6 | 7 | .vscode 8 | .idea 9 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.git 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.storybook/manager.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest/mocks/cssModule.js: -------------------------------------------------------------------------------- 1 | module.exports = 'CSS_MODULE'; 2 | -------------------------------------------------------------------------------- /jest/mocks/image.js: -------------------------------------------------------------------------------- 1 | module.exports = 'IMAGE_MOCK'; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/common/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/common/chevron-right.svg -------------------------------------------------------------------------------- /src/assets/containers/AdverseEvent/adverse-event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/AdverseEvent/adverse-event.svg -------------------------------------------------------------------------------- /src/assets/containers/AllergyIntolerance/allergy-intolerance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/AllergyIntolerance/allergy-intolerance.svg -------------------------------------------------------------------------------- /src/assets/containers/Appointment/appointment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Appointment/appointment.svg -------------------------------------------------------------------------------- /src/assets/containers/Binary/binary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Binary/binary.svg -------------------------------------------------------------------------------- /src/assets/containers/CarePlan/care-plan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/CarePlan/care-plan.svg -------------------------------------------------------------------------------- /src/assets/containers/CareTeam/care-team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/CareTeam/care-team.svg -------------------------------------------------------------------------------- /src/assets/containers/Claim/claim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Claim/claim.svg -------------------------------------------------------------------------------- /src/assets/containers/ClaimResponse/claim-response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/ClaimResponse/claim-response.svg -------------------------------------------------------------------------------- /src/assets/containers/Condition/condition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Condition/condition.svg -------------------------------------------------------------------------------- /src/assets/containers/Coverage/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Coverage/coverage.svg -------------------------------------------------------------------------------- /src/assets/containers/Device/device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Device/device.svg -------------------------------------------------------------------------------- /src/assets/containers/DiagnosticReport/diagnostic-report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/DiagnosticReport/diagnostic-report.svg -------------------------------------------------------------------------------- /src/assets/containers/DocumentReference/document-reference.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/DocumentReference/document-reference.svg -------------------------------------------------------------------------------- /src/assets/containers/Encounter/encounter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Encounter/encounter.svg -------------------------------------------------------------------------------- /src/assets/containers/ExplanationOfBenefit/explanation-of-benefit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/ExplanationOfBenefit/explanation-of-benefit.svg -------------------------------------------------------------------------------- /src/assets/containers/FamilyMemberHistory/family-member-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/FamilyMemberHistory/family-member-history.svg -------------------------------------------------------------------------------- /src/assets/containers/Generic/generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Generic/generic.svg -------------------------------------------------------------------------------- /src/assets/containers/Goal/goal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Goal/goal.svg -------------------------------------------------------------------------------- /src/assets/containers/Immunization/immunization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Immunization/immunization.svg -------------------------------------------------------------------------------- /src/assets/containers/List/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/List/list.svg -------------------------------------------------------------------------------- /src/assets/containers/Location/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Location/location.svg -------------------------------------------------------------------------------- /src/assets/containers/Medication/medication.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Medication/medication.svg -------------------------------------------------------------------------------- /src/assets/containers/MedicationAdministration/medication-administration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/MedicationAdministration/medication-administration.svg -------------------------------------------------------------------------------- /src/assets/containers/MedicationDispense/medication-dispense.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/MedicationDispense/medication-dispense.svg -------------------------------------------------------------------------------- /src/assets/containers/MedicationKnowledge/medication-knowledge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/MedicationKnowledge/medication-knowledge.svg -------------------------------------------------------------------------------- /src/assets/containers/MedicationOrder/medication-order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/MedicationOrder/medication-order.svg -------------------------------------------------------------------------------- /src/assets/containers/MedicationRequest/medication-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/MedicationRequest/medication-request.svg -------------------------------------------------------------------------------- /src/assets/containers/MedicationStatement/medication-statement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/MedicationStatement/medication-statement.svg -------------------------------------------------------------------------------- /src/assets/containers/Observation/observation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Observation/observation.svg -------------------------------------------------------------------------------- /src/assets/containers/Organization/organization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Organization/organization.svg -------------------------------------------------------------------------------- /src/assets/containers/Patient/patient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Patient/patient.svg -------------------------------------------------------------------------------- /src/assets/containers/Practitioner/practitioner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Practitioner/practitioner.svg -------------------------------------------------------------------------------- /src/assets/containers/PractitionerRole/practitioner-role.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/PractitionerRole/practitioner-role.svg -------------------------------------------------------------------------------- /src/assets/containers/Procedure/procedure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Procedure/procedure.svg -------------------------------------------------------------------------------- /src/assets/containers/Questionnaire/questionnaire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/Questionnaire/questionnaire.svg -------------------------------------------------------------------------------- /src/assets/containers/QuestionnaireResponse/questionnaire-response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/QuestionnaireResponse/questionnaire-response.svg -------------------------------------------------------------------------------- /src/assets/containers/QustionnaireResponse/questionnaire-response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/QustionnaireResponse/questionnaire-response.svg -------------------------------------------------------------------------------- /src/assets/containers/ReferralRequest/referral-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/ReferralRequest/referral-request.svg -------------------------------------------------------------------------------- /src/assets/containers/RelatedPerson/related-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/RelatedPerson/related-person.svg -------------------------------------------------------------------------------- /src/assets/containers/ResearchStudy/research-study.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/ResearchStudy/research-study.svg -------------------------------------------------------------------------------- /src/assets/containers/ResourceCategory/resource-category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/assets/containers/ResourceCategory/resource-category.svg -------------------------------------------------------------------------------- /src/components/containers/Accordion/Accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/Accordion/Accordion.js -------------------------------------------------------------------------------- /src/components/containers/Accordion/Accordion.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/Accordion/Accordion.stories.js -------------------------------------------------------------------------------- /src/components/containers/Accordion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/Accordion/index.js -------------------------------------------------------------------------------- /src/components/containers/CodeBlock/CodeBlock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/CodeBlock/CodeBlock.css -------------------------------------------------------------------------------- /src/components/containers/CodeBlock/CodeBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/CodeBlock/CodeBlock.js -------------------------------------------------------------------------------- /src/components/containers/CodeBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/CodeBlock/index.js -------------------------------------------------------------------------------- /src/components/containers/FhirResource/FhirResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/FhirResource/FhirResource.js -------------------------------------------------------------------------------- /src/components/containers/FhirResource/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/FhirResource/index.js -------------------------------------------------------------------------------- /src/components/containers/ResourceContainer/ResourceContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/ResourceContainer/ResourceContainer.css -------------------------------------------------------------------------------- /src/components/containers/ResourceContainer/ResourceContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/ResourceContainer/ResourceContainer.js -------------------------------------------------------------------------------- /src/components/containers/ResourceContainer/ResourceContainer.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/ResourceContainer/ResourceContainer.stories.js -------------------------------------------------------------------------------- /src/components/containers/ResourceContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/containers/ResourceContainer/index.js -------------------------------------------------------------------------------- /src/components/datatypes/AccountBalance/AccountBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/AccountBalance/AccountBalance.js -------------------------------------------------------------------------------- /src/components/datatypes/AccountBalance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/AccountBalance/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Address/Address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Address/Address.js -------------------------------------------------------------------------------- /src/components/datatypes/Address/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Address/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Annotation/Annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Annotation/Annotation.js -------------------------------------------------------------------------------- /src/components/datatypes/Annotation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Annotation/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Attachment/Attachment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Attachment/Attachment.css -------------------------------------------------------------------------------- /src/components/datatypes/Attachment/Attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Attachment/Attachment.js -------------------------------------------------------------------------------- /src/components/datatypes/Attachment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Attachment/index.js -------------------------------------------------------------------------------- /src/components/datatypes/BinaryText/BinaryText.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/BinaryText/BinaryText.css -------------------------------------------------------------------------------- /src/components/datatypes/BinaryText/BinaryText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/BinaryText/BinaryText.js -------------------------------------------------------------------------------- /src/components/datatypes/BinaryText/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/BinaryText/index.js -------------------------------------------------------------------------------- /src/components/datatypes/CodeableConcept/CodeableConcept.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/CodeableConcept/CodeableConcept.css -------------------------------------------------------------------------------- /src/components/datatypes/CodeableConcept/CodeableConcept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/CodeableConcept/CodeableConcept.js -------------------------------------------------------------------------------- /src/components/datatypes/CodeableConcept/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/CodeableConcept/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Coding/Coding.css: -------------------------------------------------------------------------------- 1 | .fhir-datatype__Coding__code { 2 | cursor: help; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/datatypes/Coding/Coding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Coding/Coding.js -------------------------------------------------------------------------------- /src/components/datatypes/Coding/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Coding/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Date/Date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Date/Date.js -------------------------------------------------------------------------------- /src/components/datatypes/Date/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Date/index.js -------------------------------------------------------------------------------- /src/components/datatypes/DatePeriod/DatePeriod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/DatePeriod/DatePeriod.js -------------------------------------------------------------------------------- /src/components/datatypes/DatePeriod/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/DatePeriod/index.js -------------------------------------------------------------------------------- /src/components/datatypes/HeaderIcon/HeaderIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/HeaderIcon/HeaderIcon.js -------------------------------------------------------------------------------- /src/components/datatypes/HeaderIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/HeaderIcon/index.js -------------------------------------------------------------------------------- /src/components/datatypes/HumanName/HumanName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/HumanName/HumanName.js -------------------------------------------------------------------------------- /src/components/datatypes/HumanName/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/HumanName/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Identifier/Identifier.css: -------------------------------------------------------------------------------- 1 | .fhir-datatype__Identifier { 2 | font-style: italic; 3 | cursor: help; 4 | } 5 | -------------------------------------------------------------------------------- /src/components/datatypes/Identifier/Identifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Identifier/Identifier.js -------------------------------------------------------------------------------- /src/components/datatypes/Identifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Identifier/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Img/Img.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Img/Img.css -------------------------------------------------------------------------------- /src/components/datatypes/Img/Img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Img/Img.js -------------------------------------------------------------------------------- /src/components/datatypes/Img/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Img/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Markdown/Markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Markdown/Markdown.js -------------------------------------------------------------------------------- /src/components/datatypes/Markdown/Markdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Markdown/Markdown.test.js -------------------------------------------------------------------------------- /src/components/datatypes/Markdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Markdown/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Money/Money.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Money/Money.js -------------------------------------------------------------------------------- /src/components/datatypes/Money/Money.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Money/Money.test.js -------------------------------------------------------------------------------- /src/components/datatypes/Money/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Money/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Pdf/Pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Pdf/Pdf.js -------------------------------------------------------------------------------- /src/components/datatypes/Pdf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Pdf/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Period/Period.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Period/Period.js -------------------------------------------------------------------------------- /src/components/datatypes/Period/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Period/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Quantity/Quantity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Quantity/Quantity.js -------------------------------------------------------------------------------- /src/components/datatypes/Quantity/Quantity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Quantity/Quantity.test.js -------------------------------------------------------------------------------- /src/components/datatypes/Quantity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Quantity/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Reference/Reference.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Reference/Reference.css -------------------------------------------------------------------------------- /src/components/datatypes/Reference/Reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Reference/Reference.js -------------------------------------------------------------------------------- /src/components/datatypes/Reference/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Reference/index.js -------------------------------------------------------------------------------- /src/components/datatypes/Telecom/Telecom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Telecom/Telecom.css -------------------------------------------------------------------------------- /src/components/datatypes/Telecom/Telecom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Telecom/Telecom.js -------------------------------------------------------------------------------- /src/components/datatypes/Telecom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/datatypes/Telecom/index.js -------------------------------------------------------------------------------- /src/components/defaultArgTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/defaultArgTypes.js -------------------------------------------------------------------------------- /src/components/resources/AdverseEvent/AdverseEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/AdverseEvent/AdverseEvent.js -------------------------------------------------------------------------------- /src/components/resources/AdverseEvent/AdverseEvent.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/AdverseEvent/AdverseEvent.stories.js -------------------------------------------------------------------------------- /src/components/resources/AdverseEvent/AdverseEvent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/AdverseEvent/AdverseEvent.test.js -------------------------------------------------------------------------------- /src/components/resources/AdverseEvent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/AdverseEvent/index.js -------------------------------------------------------------------------------- /src/components/resources/AllergyIntolerance/AllergyIntolerance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/AllergyIntolerance/AllergyIntolerance.js -------------------------------------------------------------------------------- /src/components/resources/AllergyIntolerance/AllergyIntolerance.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/AllergyIntolerance/AllergyIntolerance.stories.js -------------------------------------------------------------------------------- /src/components/resources/AllergyIntolerance/AllergyIntolerance.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/AllergyIntolerance/AllergyIntolerance.test.js -------------------------------------------------------------------------------- /src/components/resources/AllergyIntolerance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/AllergyIntolerance/index.js -------------------------------------------------------------------------------- /src/components/resources/Appointment/Appointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Appointment/Appointment.js -------------------------------------------------------------------------------- /src/components/resources/Appointment/Appointment.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Appointment/Appointment.stories.js -------------------------------------------------------------------------------- /src/components/resources/Appointment/Appointment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Appointment/Appointment.test.js -------------------------------------------------------------------------------- /src/components/resources/Appointment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Appointment/index.js -------------------------------------------------------------------------------- /src/components/resources/Binary/Binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Binary/Binary.js -------------------------------------------------------------------------------- /src/components/resources/Binary/Binary.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Binary/Binary.stories.js -------------------------------------------------------------------------------- /src/components/resources/Binary/Binary.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Binary/Binary.test.js -------------------------------------------------------------------------------- /src/components/resources/Binary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Binary/index.js -------------------------------------------------------------------------------- /src/components/resources/Bundle/Bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Bundle/Bundle.css -------------------------------------------------------------------------------- /src/components/resources/Bundle/Bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Bundle/Bundle.js -------------------------------------------------------------------------------- /src/components/resources/Bundle/Bundle.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Bundle/Bundle.stories.js -------------------------------------------------------------------------------- /src/components/resources/Bundle/Bundle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Bundle/Bundle.test.js -------------------------------------------------------------------------------- /src/components/resources/Bundle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Bundle/index.js -------------------------------------------------------------------------------- /src/components/resources/CarePlan/CarePlan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CarePlan/CarePlan.js -------------------------------------------------------------------------------- /src/components/resources/CarePlan/CarePlan.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CarePlan/CarePlan.stories.js -------------------------------------------------------------------------------- /src/components/resources/CarePlan/CarePlan.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CarePlan/CarePlan.test.js -------------------------------------------------------------------------------- /src/components/resources/CarePlan/CarePlanActivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CarePlan/CarePlanActivity.js -------------------------------------------------------------------------------- /src/components/resources/CarePlan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CarePlan/index.js -------------------------------------------------------------------------------- /src/components/resources/CareTeam/CareTeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CareTeam/CareTeam.js -------------------------------------------------------------------------------- /src/components/resources/CareTeam/CareTeam.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CareTeam/CareTeam.stories.js -------------------------------------------------------------------------------- /src/components/resources/CareTeam/CareTeam.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CareTeam/CareTeam.test.js -------------------------------------------------------------------------------- /src/components/resources/CareTeam/CareTeamParticipant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CareTeam/CareTeamParticipant.js -------------------------------------------------------------------------------- /src/components/resources/CareTeam/CareTeamParticipants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CareTeam/CareTeamParticipants.js -------------------------------------------------------------------------------- /src/components/resources/CareTeam/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/CareTeam/index.js -------------------------------------------------------------------------------- /src/components/resources/Claim/CareTeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/CareTeam.js -------------------------------------------------------------------------------- /src/components/resources/Claim/Claim.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/Claim.css -------------------------------------------------------------------------------- /src/components/resources/Claim/Claim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/Claim.js -------------------------------------------------------------------------------- /src/components/resources/Claim/Claim.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/Claim.stories.js -------------------------------------------------------------------------------- /src/components/resources/Claim/Claim.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/Claim.test.js -------------------------------------------------------------------------------- /src/components/resources/Claim/Diagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/Diagnosis.js -------------------------------------------------------------------------------- /src/components/resources/Claim/Insurance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/Insurance.js -------------------------------------------------------------------------------- /src/components/resources/Claim/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/Item.js -------------------------------------------------------------------------------- /src/components/resources/Claim/Items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/Items.js -------------------------------------------------------------------------------- /src/components/resources/Claim/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Claim/index.js -------------------------------------------------------------------------------- /src/components/resources/ClaimResponse/AddedItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ClaimResponse/AddedItem.js -------------------------------------------------------------------------------- /src/components/resources/ClaimResponse/AddedItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ClaimResponse/AddedItems.js -------------------------------------------------------------------------------- /src/components/resources/ClaimResponse/ClaimResponse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ClaimResponse/ClaimResponse.css -------------------------------------------------------------------------------- /src/components/resources/ClaimResponse/ClaimResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ClaimResponse/ClaimResponse.js -------------------------------------------------------------------------------- /src/components/resources/ClaimResponse/ClaimResponse.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ClaimResponse/ClaimResponse.stories.js -------------------------------------------------------------------------------- /src/components/resources/ClaimResponse/ClaimResponse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ClaimResponse/ClaimResponse.test.js -------------------------------------------------------------------------------- /src/components/resources/ClaimResponse/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ClaimResponse/Item.js -------------------------------------------------------------------------------- /src/components/resources/ClaimResponse/Items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ClaimResponse/Items.js -------------------------------------------------------------------------------- /src/components/resources/ClaimResponse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ClaimResponse/index.js -------------------------------------------------------------------------------- /src/components/resources/Condition/Condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Condition/Condition.js -------------------------------------------------------------------------------- /src/components/resources/Condition/Condition.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Condition/Condition.stories.js -------------------------------------------------------------------------------- /src/components/resources/Condition/Condition.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Condition/Condition.test.js -------------------------------------------------------------------------------- /src/components/resources/Condition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Condition/index.js -------------------------------------------------------------------------------- /src/components/resources/Coverage/Coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Coverage/Coverage.js -------------------------------------------------------------------------------- /src/components/resources/Coverage/Coverage.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Coverage/Coverage.stories.js -------------------------------------------------------------------------------- /src/components/resources/Coverage/Coverage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Coverage/Coverage.test.js -------------------------------------------------------------------------------- /src/components/resources/Coverage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Coverage/index.js -------------------------------------------------------------------------------- /src/components/resources/Device/Device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Device/Device.js -------------------------------------------------------------------------------- /src/components/resources/Device/Device.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Device/Device.stories.js -------------------------------------------------------------------------------- /src/components/resources/Device/Device.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Device/Device.test.js -------------------------------------------------------------------------------- /src/components/resources/Device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Device/index.js -------------------------------------------------------------------------------- /src/components/resources/DiagnosticReport/DiagnosticReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/DiagnosticReport/DiagnosticReport.js -------------------------------------------------------------------------------- /src/components/resources/DiagnosticReport/DiagnosticReport.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/DiagnosticReport/DiagnosticReport.stories.js -------------------------------------------------------------------------------- /src/components/resources/DiagnosticReport/DiagnosticReport.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/DiagnosticReport/DiagnosticReport.test.js -------------------------------------------------------------------------------- /src/components/resources/DiagnosticReport/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/DiagnosticReport/index.js -------------------------------------------------------------------------------- /src/components/resources/DocumentReference/DocumentReference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/DocumentReference/DocumentReference.js -------------------------------------------------------------------------------- /src/components/resources/DocumentReference/DocumentReference.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/DocumentReference/DocumentReference.stories.js -------------------------------------------------------------------------------- /src/components/resources/DocumentReference/DocumentReference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/DocumentReference/DocumentReference.test.js -------------------------------------------------------------------------------- /src/components/resources/DocumentReference/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/DocumentReference/index.js -------------------------------------------------------------------------------- /src/components/resources/Encounter/EachParticipant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Encounter/EachParticipant.js -------------------------------------------------------------------------------- /src/components/resources/Encounter/EachParticipant.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Encounter/EachParticipant.test.js -------------------------------------------------------------------------------- /src/components/resources/Encounter/Encounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Encounter/Encounter.js -------------------------------------------------------------------------------- /src/components/resources/Encounter/Encounter.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Encounter/Encounter.stories.js -------------------------------------------------------------------------------- /src/components/resources/Encounter/Encounter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Encounter/Encounter.test.js -------------------------------------------------------------------------------- /src/components/resources/Encounter/EncounterParticipants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Encounter/EncounterParticipants.js -------------------------------------------------------------------------------- /src/components/resources/Encounter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Encounter/index.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/CareTeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/CareTeam.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/Diagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/Diagnosis.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/ExplanationOfBenefit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/ExplanationOfBenefit.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/ExplanationOfBenefit.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/ExplanationOfBenefit.stories.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/ExplanationOfBenefit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/ExplanationOfBenefit.test.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/Items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/Items.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/PriceLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/PriceLabel.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/Related.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/Related.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/SupportingInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/SupportingInfo.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/TotalGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/TotalGraph.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/TotalSum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/TotalSum.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefit/index.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefitGraph/ExplanationOfBenefitGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefitGraph/ExplanationOfBenefitGraph.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefitGraph/ExplanationOfBenefitGraph.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefitGraph/ExplanationOfBenefitGraph.stories.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefitGraph/ExplanationOfBenefitGraph.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefitGraph/ExplanationOfBenefitGraph.test.js -------------------------------------------------------------------------------- /src/components/resources/ExplanationOfBenefitGraph/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ExplanationOfBenefitGraph/index.js -------------------------------------------------------------------------------- /src/components/resources/FamilyMemberHistory/FamilyMemberHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/FamilyMemberHistory/FamilyMemberHistory.js -------------------------------------------------------------------------------- /src/components/resources/FamilyMemberHistory/FamilyMemberHistory.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/FamilyMemberHistory/FamilyMemberHistory.stories.js -------------------------------------------------------------------------------- /src/components/resources/FamilyMemberHistory/FamilyMemberHistory.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/FamilyMemberHistory/FamilyMemberHistory.test.js -------------------------------------------------------------------------------- /src/components/resources/FamilyMemberHistory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/FamilyMemberHistory/index.js -------------------------------------------------------------------------------- /src/components/resources/Generic/Generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Generic/Generic.js -------------------------------------------------------------------------------- /src/components/resources/Generic/Generic.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Generic/Generic.stories.js -------------------------------------------------------------------------------- /src/components/resources/Generic/Generic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Generic/Generic.test.js -------------------------------------------------------------------------------- /src/components/resources/Generic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Generic/index.js -------------------------------------------------------------------------------- /src/components/resources/Goal/Goal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Goal/Goal.js -------------------------------------------------------------------------------- /src/components/resources/Goal/Goal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Goal/Goal.stories.js -------------------------------------------------------------------------------- /src/components/resources/Goal/Goal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Goal/Goal.test.js -------------------------------------------------------------------------------- /src/components/resources/Goal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Goal/index.js -------------------------------------------------------------------------------- /src/components/resources/Immunization/Immunization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Immunization/Immunization.js -------------------------------------------------------------------------------- /src/components/resources/Immunization/Immunization.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Immunization/Immunization.stories.js -------------------------------------------------------------------------------- /src/components/resources/Immunization/Immunization.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Immunization/Immunization.test.js -------------------------------------------------------------------------------- /src/components/resources/Immunization/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Immunization/index.js -------------------------------------------------------------------------------- /src/components/resources/List/DrugTierDefinitionExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/List/DrugTierDefinitionExtension.js -------------------------------------------------------------------------------- /src/components/resources/List/Entries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/List/Entries.js -------------------------------------------------------------------------------- /src/components/resources/List/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/List/List.js -------------------------------------------------------------------------------- /src/components/resources/List/List.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/List/List.stories.js -------------------------------------------------------------------------------- /src/components/resources/List/List.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/List/List.test.js -------------------------------------------------------------------------------- /src/components/resources/List/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/List/index.js -------------------------------------------------------------------------------- /src/components/resources/List/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/List/utils.js -------------------------------------------------------------------------------- /src/components/resources/Location/Location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Location/Location.js -------------------------------------------------------------------------------- /src/components/resources/Location/Location.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Location/Location.stories.js -------------------------------------------------------------------------------- /src/components/resources/Location/Location.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Location/Location.test.js -------------------------------------------------------------------------------- /src/components/resources/Location/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Location/index.js -------------------------------------------------------------------------------- /src/components/resources/Medication/Medication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Medication/Medication.js -------------------------------------------------------------------------------- /src/components/resources/Medication/Medication.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Medication/Medication.stories.js -------------------------------------------------------------------------------- /src/components/resources/Medication/Medication.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Medication/Medication.test.js -------------------------------------------------------------------------------- /src/components/resources/Medication/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Medication/index.js -------------------------------------------------------------------------------- /src/components/resources/MedicationAdministration/MedicationAdministration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationAdministration/MedicationAdministration.js -------------------------------------------------------------------------------- /src/components/resources/MedicationAdministration/MedicationAdministration.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationAdministration/MedicationAdministration.stories.js -------------------------------------------------------------------------------- /src/components/resources/MedicationAdministration/MedicationAdministration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationAdministration/MedicationAdministration.test.js -------------------------------------------------------------------------------- /src/components/resources/MedicationAdministration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationAdministration/index.js -------------------------------------------------------------------------------- /src/components/resources/MedicationDispense/DosageInstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationDispense/DosageInstruction.js -------------------------------------------------------------------------------- /src/components/resources/MedicationDispense/MedicationDispense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationDispense/MedicationDispense.js -------------------------------------------------------------------------------- /src/components/resources/MedicationDispense/MedicationDispense.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationDispense/MedicationDispense.stories.js -------------------------------------------------------------------------------- /src/components/resources/MedicationDispense/MedicationDispense.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationDispense/MedicationDispense.test.js -------------------------------------------------------------------------------- /src/components/resources/MedicationDispense/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationDispense/index.js -------------------------------------------------------------------------------- /src/components/resources/MedicationKnowledge/MedicationKnowledge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationKnowledge/MedicationKnowledge.js -------------------------------------------------------------------------------- /src/components/resources/MedicationKnowledge/MedicationKnowledge.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationKnowledge/MedicationKnowledge.stories.js -------------------------------------------------------------------------------- /src/components/resources/MedicationKnowledge/MedicationKnowledge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationKnowledge/MedicationKnowledge.test.js -------------------------------------------------------------------------------- /src/components/resources/MedicationKnowledge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationKnowledge/index.js -------------------------------------------------------------------------------- /src/components/resources/MedicationKnowledge/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationKnowledge/utils.js -------------------------------------------------------------------------------- /src/components/resources/MedicationOrder/MedicationOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationOrder/MedicationOrder.js -------------------------------------------------------------------------------- /src/components/resources/MedicationOrder/MedicationOrder.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationOrder/MedicationOrder.stories.js -------------------------------------------------------------------------------- /src/components/resources/MedicationOrder/MedicationOrder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationOrder/MedicationOrder.test.js -------------------------------------------------------------------------------- /src/components/resources/MedicationOrder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationOrder/index.js -------------------------------------------------------------------------------- /src/components/resources/MedicationRequest/MedicationRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationRequest/MedicationRequest.js -------------------------------------------------------------------------------- /src/components/resources/MedicationRequest/MedicationRequest.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationRequest/MedicationRequest.stories.js -------------------------------------------------------------------------------- /src/components/resources/MedicationRequest/MedicationRequest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationRequest/MedicationRequest.test.js -------------------------------------------------------------------------------- /src/components/resources/MedicationRequest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationRequest/index.js -------------------------------------------------------------------------------- /src/components/resources/MedicationStatement/MedicationDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationStatement/MedicationDetails.js -------------------------------------------------------------------------------- /src/components/resources/MedicationStatement/MedicationDosage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationStatement/MedicationDosage.js -------------------------------------------------------------------------------- /src/components/resources/MedicationStatement/MedicationStatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationStatement/MedicationStatement.js -------------------------------------------------------------------------------- /src/components/resources/MedicationStatement/MedicationStatement.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationStatement/MedicationStatement.stories.js -------------------------------------------------------------------------------- /src/components/resources/MedicationStatement/MedicationStatement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationStatement/MedicationStatement.test.js -------------------------------------------------------------------------------- /src/components/resources/MedicationStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/MedicationStatement/index.js -------------------------------------------------------------------------------- /src/components/resources/Observation/Observation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Observation/Observation.js -------------------------------------------------------------------------------- /src/components/resources/Observation/Observation.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Observation/Observation.stories.js -------------------------------------------------------------------------------- /src/components/resources/Observation/Observation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Observation/Observation.test.js -------------------------------------------------------------------------------- /src/components/resources/Observation/ObservationGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Observation/ObservationGraph.js -------------------------------------------------------------------------------- /src/components/resources/Observation/ObservationGraph.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Observation/ObservationGraph.test.js -------------------------------------------------------------------------------- /src/components/resources/Observation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Observation/index.js -------------------------------------------------------------------------------- /src/components/resources/Organization/Organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Organization/Organization.js -------------------------------------------------------------------------------- /src/components/resources/Organization/Organization.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Organization/Organization.stories.js -------------------------------------------------------------------------------- /src/components/resources/Organization/Organization.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Organization/Organization.test.js -------------------------------------------------------------------------------- /src/components/resources/Organization/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Organization/index.js -------------------------------------------------------------------------------- /src/components/resources/Patient/Patient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Patient/Patient.js -------------------------------------------------------------------------------- /src/components/resources/Patient/Patient.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Patient/Patient.stories.js -------------------------------------------------------------------------------- /src/components/resources/Patient/Patient.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Patient/Patient.test.js -------------------------------------------------------------------------------- /src/components/resources/Patient/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Patient/index.js -------------------------------------------------------------------------------- /src/components/resources/Practitioner/PatientContact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Practitioner/PatientContact.js -------------------------------------------------------------------------------- /src/components/resources/Practitioner/Practitioner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Practitioner/Practitioner.css -------------------------------------------------------------------------------- /src/components/resources/Practitioner/Practitioner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Practitioner/Practitioner.js -------------------------------------------------------------------------------- /src/components/resources/Practitioner/Practitioner.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Practitioner/Practitioner.stories.js -------------------------------------------------------------------------------- /src/components/resources/Practitioner/Practitioner.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Practitioner/Practitioner.test.js -------------------------------------------------------------------------------- /src/components/resources/Practitioner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Practitioner/index.js -------------------------------------------------------------------------------- /src/components/resources/PractitionerRole/PractitionerRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/PractitionerRole/PractitionerRole.js -------------------------------------------------------------------------------- /src/components/resources/PractitionerRole/PractitionerRole.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/PractitionerRole/PractitionerRole.stories.js -------------------------------------------------------------------------------- /src/components/resources/PractitionerRole/PractitionerRole.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/PractitionerRole/PractitionerRole.test.js -------------------------------------------------------------------------------- /src/components/resources/PractitionerRole/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/PractitionerRole/index.js -------------------------------------------------------------------------------- /src/components/resources/Procedure/Procedure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Procedure/Procedure.js -------------------------------------------------------------------------------- /src/components/resources/Procedure/Procedure.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Procedure/Procedure.stories.js -------------------------------------------------------------------------------- /src/components/resources/Procedure/Procedure.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Procedure/Procedure.test.js -------------------------------------------------------------------------------- /src/components/resources/Procedure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Procedure/index.js -------------------------------------------------------------------------------- /src/components/resources/Questionnaire/Group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Questionnaire/Group.js -------------------------------------------------------------------------------- /src/components/resources/Questionnaire/Items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Questionnaire/Items.js -------------------------------------------------------------------------------- /src/components/resources/Questionnaire/Questionnaire.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Questionnaire/Questionnaire.css -------------------------------------------------------------------------------- /src/components/resources/Questionnaire/Questionnaire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Questionnaire/Questionnaire.js -------------------------------------------------------------------------------- /src/components/resources/Questionnaire/Questionnaire.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Questionnaire/Questionnaire.stories.js -------------------------------------------------------------------------------- /src/components/resources/Questionnaire/Questionnaire.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Questionnaire/Questionnaire.test.js -------------------------------------------------------------------------------- /src/components/resources/Questionnaire/Questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Questionnaire/Questions.js -------------------------------------------------------------------------------- /src/components/resources/Questionnaire/getQuestionText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Questionnaire/getQuestionText.js -------------------------------------------------------------------------------- /src/components/resources/Questionnaire/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/Questionnaire/index.js -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/Answers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/Answers.js -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/Group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/Group.js -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/Items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/Items.js -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/QuestionnaireResponse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/QuestionnaireResponse.css -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/QuestionnaireResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/QuestionnaireResponse.js -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/QuestionnaireResponse.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/QuestionnaireResponse.stories.js -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/QuestionnaireResponse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/QuestionnaireResponse.test.js -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/Questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/Questions.js -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/getQuestionText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/getQuestionText.js -------------------------------------------------------------------------------- /src/components/resources/QuestionnaireResponse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/QuestionnaireResponse/index.js -------------------------------------------------------------------------------- /src/components/resources/ReferralRequest/ReferralRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ReferralRequest/ReferralRequest.js -------------------------------------------------------------------------------- /src/components/resources/ReferralRequest/ReferralRequest.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ReferralRequest/ReferralRequest.stories.js -------------------------------------------------------------------------------- /src/components/resources/ReferralRequest/ReferralRequest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ReferralRequest/ReferralRequest.test.js -------------------------------------------------------------------------------- /src/components/resources/ReferralRequest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ReferralRequest/index.js -------------------------------------------------------------------------------- /src/components/resources/RelatedPerson/RelatedPerson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/RelatedPerson/RelatedPerson.js -------------------------------------------------------------------------------- /src/components/resources/RelatedPerson/RelatedPerson.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/RelatedPerson/RelatedPerson.stories.js -------------------------------------------------------------------------------- /src/components/resources/RelatedPerson/RelatedPerson.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/RelatedPerson/RelatedPerson.test.js -------------------------------------------------------------------------------- /src/components/resources/RelatedPerson/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/RelatedPerson/index.js -------------------------------------------------------------------------------- /src/components/resources/ResearchStudy/ResearchStudy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ResearchStudy/ResearchStudy.js -------------------------------------------------------------------------------- /src/components/resources/ResearchStudy/ResearchStudy.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ResearchStudy/ResearchStudy.stories.js -------------------------------------------------------------------------------- /src/components/resources/ResearchStudy/ResearchStudy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ResearchStudy/ResearchStudy.test.js -------------------------------------------------------------------------------- /src/components/resources/ResearchStudy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ResearchStudy/index.js -------------------------------------------------------------------------------- /src/components/resources/ResourceCategory/ResourceCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ResourceCategory/ResourceCategory.js -------------------------------------------------------------------------------- /src/components/resources/ResourceCategory/ResourceCategory.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ResourceCategory/ResourceCategory.stories.js -------------------------------------------------------------------------------- /src/components/resources/ResourceCategory/ResourceCategory.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ResourceCategory/ResourceCategory.test.js -------------------------------------------------------------------------------- /src/components/resources/ResourceCategory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/ResourceCategory/index.js -------------------------------------------------------------------------------- /src/components/resources/UnhandledResourceDataStructure/UnhandledResourceDataStructure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/UnhandledResourceDataStructure/UnhandledResourceDataStructure.js -------------------------------------------------------------------------------- /src/components/resources/UnhandledResourceDataStructure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/UnhandledResourceDataStructure/index.js -------------------------------------------------------------------------------- /src/components/resources/fhirResourceVersions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/resources/fhirResourceVersions.js -------------------------------------------------------------------------------- /src/components/supportedFhirResourceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/supportedFhirResourceList.js -------------------------------------------------------------------------------- /src/components/ui/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/ui/_header.scss -------------------------------------------------------------------------------- /src/components/ui/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/ui/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/components/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/components/ui/index.js -------------------------------------------------------------------------------- /src/constants/badge-status.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/constants/badge-status.jsx -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/allergyIntolerance/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/allergyIntolerance/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/allergyIntolerance/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/allergyIntolerance/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/appointment/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/appointment/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/appointment/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/appointment/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/binary/example-jpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/binary/example-jpeg.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/binary/example-pdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/binary/example-pdf.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/bundle/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/bundle/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/bundle/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/bundle/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/bundle/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/bundle/example3.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/bundle/example4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/bundle/example4.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/carePlan/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/carePlan/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/claim/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/claim/example-1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/claimResponse/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/claimResponse/example-1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/condition/condition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/condition/condition.svg -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/condition/example-severity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/condition/example-severity.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/condition/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/condition/example.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/condition/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/condition/example3.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/coverage/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/coverage/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/device/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/device/example.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/device/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/device/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/diagnosticReport/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/diagnosticReport/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/documentReference/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/documentReference/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/encounter/example-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/encounter/example-2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/encounter/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/encounter/example.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/explanationOfBenefit/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/explanationOfBenefit/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/familyMemberHistory/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/familyMemberHistory/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/goal/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/goal/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/goal/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/goal/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/immunization/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/immunization/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/immunization/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/immunization/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/immunization/immunization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/immunization/immunization.svg -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/list/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/list/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/list/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/list/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/list/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/list/example3.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/location/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/location/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/medication/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/medication/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/medication/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/medication/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/medicationAdministration/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/medicationAdministration/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/medicationDispense/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/medicationDispense/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/medicationDispense/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/medicationDispense/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/medicationOrder/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/medicationOrder/example.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/medicationStatement/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/medicationStatement/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/observation/example-issued.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/observation/example-issued.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/observation/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/observation/example.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/organization/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/organization/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/organization/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/organization/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/patient/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/patient/example.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/patient/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/patient/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/practitioner/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/practitioner/example-1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/practitioner/example-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/practitioner/example-2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/procedure/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/procedure/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/questionnaire/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/questionnaire/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/questionnaire/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/questionnaire/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/questionnaire/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/questionnaire/example3.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/questionnaireResponse/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/questionnaireResponse/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/questionnaireResponse/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/questionnaireResponse/example2.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/questionnaireResponse/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/questionnaireResponse/example3.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/referralRequest/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/referralRequest/example1.json -------------------------------------------------------------------------------- /src/fixtures/dstu2/resources/relatedPerson/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/dstu2/resources/relatedPerson/example1.json -------------------------------------------------------------------------------- /src/fixtures/example-icons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/example-icons.jsx -------------------------------------------------------------------------------- /src/fixtures/r4/resources/adverseEvent/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/adverseEvent/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/allergyIntolerance/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/allergyIntolerance/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/allergyIntolerance/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/allergyIntolerance/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/allergyIntolerance/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/allergyIntolerance/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/appointment/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/appointment/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/appointment/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/appointment/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/appointment/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/appointment/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/bundle/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/bundle/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/bundle/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/bundle/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/bundle/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/bundle/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/bundle/example4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/bundle/example4.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/carePlan/heartOperationPlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/carePlan/heartOperationPlan.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/carePlan/pregnancyPlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/carePlan/pregnancyPlan.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/carePlan/weightLossPlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/carePlan/weightLossPlan.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/careTeam/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/careTeam/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/claim/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/claim/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/claim/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/claim/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/claimResponse/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/claimResponse/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/claimResponse/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/claimResponse/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/claimResponse/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/claimResponse/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/condition/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/condition/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/condition/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/condition/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/condition/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/condition/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/coverage/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/coverage/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/coverage/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/coverage/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/device/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/device/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/device/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/device/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/diagnosticReport/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/diagnosticReport/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/diagnosticReport/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/diagnosticReport/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/diagnosticReport/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/diagnosticReport/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/documentReference/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/documentReference/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/encounter/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/encounter/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/encounter/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/encounter/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/encounter/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/encounter/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/explanationOfBenefit/c4bbExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/explanationOfBenefit/c4bbExample.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/explanationOfBenefit/c4bbExtendedDiagnosis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/explanationOfBenefit/c4bbExtendedDiagnosis.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/explanationOfBenefit/eobForClaimWithErrors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/explanationOfBenefit/eobForClaimWithErrors.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/explanationOfBenefit/personPrimaryCoverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/explanationOfBenefit/personPrimaryCoverage.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/goal/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/goal/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/goal/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/goal/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/immunization/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/immunization/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/immunization/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/immunization/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/immunization/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/immunization/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/list/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/list/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/list/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/list/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/list/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/list/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/location/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/location/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/location/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/location/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medication/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medication/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medication/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medication/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medication/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medication/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationAdministration/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationAdministration/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationAdministration/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationAdministration/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationAdministration/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationAdministration/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationDispense/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationDispense/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationDispense/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationDispense/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationKnowledge/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationKnowledge/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationKnowledge/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationKnowledge/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationKnowledge/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationKnowledge/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationKnowledge/example4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationKnowledge/example4.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationRequest/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationRequest/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationRequest/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationRequest/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationRequest/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationRequest/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationStatement/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationStatement/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/medicationStatement/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/medicationStatement/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/observation/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/observation/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/observation/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/observation/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/observation/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/observation/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/organization/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/organization/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/organization/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/organization/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/organization/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/organization/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/patient/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/patient/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/patient/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/patient/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/patient/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/patient/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/practitioner/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/practitioner/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/practitioner/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/practitioner/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/practitioner/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/practitioner/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/practitionerRole/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/practitionerRole/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/practitionerRole/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/practitionerRole/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/practitionerRole/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/practitionerRole/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/practitionerRole/example4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/practitionerRole/example4.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/procedure/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/procedure/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/procedure/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/procedure/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/procedure/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/procedure/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/questionnaire/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/questionnaire/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/questionnaire/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/questionnaire/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/questionnaire/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/questionnaire/example3.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/questionnaireResponse/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/questionnaireResponse/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/questionnaireResponse/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/questionnaireResponse/example2.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/relatedPerson/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/relatedPerson/example1.json -------------------------------------------------------------------------------- /src/fixtures/r4/resources/researchStudy/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/r4/resources/researchStudy/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/adverseEvent/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/adverseEvent/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/allergyIntolerance/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/allergyIntolerance/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/allergyIntolerance/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/allergyIntolerance/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/appointment/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/appointment/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/appointment/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/appointment/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/appointment/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/appointment/example3.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/binary/example-jpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/binary/example-jpeg.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/binary/example-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/binary/example-json.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/binary/example-pdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/binary/example-pdf.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/bundle/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/bundle/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/bundle/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/bundle/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/bundle/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/bundle/example3.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/bundle/example4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/bundle/example4.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/carePlan/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/carePlan/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/carePlan/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/carePlan/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/careTeam/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/careTeam/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/careTeam/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/careTeam/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/claim/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/claim/example-1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/claim/example-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/claim/example-2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/claim/example-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/claim/example-3.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/claimResponse/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/claimResponse/example-1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/claimResponse/example-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/claimResponse/example-2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/condition/example-severity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/condition/example-severity.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/condition/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/condition/example.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/coverage/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/coverage/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/coverage/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/coverage/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/device/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/device/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/device/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/device/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/diagnosticReport/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/diagnosticReport/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/documentReference/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/documentReference/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/encounter/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/encounter/example-1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/encounter/example-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/encounter/example-2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/explanationOfBenefit/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/explanationOfBenefit/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/explanationOfBenefit/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/explanationOfBenefit/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/familyMemberHistory/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/familyMemberHistory/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/familyMemberHistory/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/familyMemberHistory/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/goal/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/goal/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/immunization/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/immunization/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/list/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/list/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/list/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/list/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/list/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/list/example3.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/location/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/location/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/medication/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/medication/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/medication/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/medication/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/medicationAdministration/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/medicationAdministration/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/medicationDispense/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/medicationDispense/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/medicationDispense/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/medicationDispense/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/medicationRequest/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/medicationRequest/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/medicationRequest/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/medicationRequest/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/medicationStatement/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/medicationStatement/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/medicationStatement/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/medicationStatement/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/observation/example-f002-excess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/observation/example-f002-excess.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/observation/example-weight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/observation/example-weight.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/observation/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/observation/example3.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/organization/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/organization/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/organization/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/organization/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/patient/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/patient/example.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/patient/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/patient/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/practitioner/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/practitioner/example-1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/practitionerRole/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/practitionerRole/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/practitionerRole/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/practitionerRole/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/practitionerRole/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/practitionerRole/example3.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/procedure/example-medicare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/procedure/example-medicare.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/procedure/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/procedure/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/questionnaire/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/questionnaire/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/questionnaire/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/questionnaire/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/questionnaireResponse/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/questionnaireResponse/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/questionnaireResponse/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/questionnaireResponse/example2.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/referralRequest/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/referralRequest/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/relatedPerson/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/relatedPerson/example1.json -------------------------------------------------------------------------------- /src/fixtures/stu3/resources/researchStudy/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/fixtures/stu3/resources/researchStudy/example-1.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/style.css -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/style.scss -------------------------------------------------------------------------------- /src/testUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/testUtils.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils.test.js -------------------------------------------------------------------------------- /src/utils/convertCamelCaseToSentence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils/convertCamelCaseToSentence.js -------------------------------------------------------------------------------- /src/utils/convertCamelCaseToSentence.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils/convertCamelCaseToSentence.test.js -------------------------------------------------------------------------------- /src/utils/formatDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils/formatDate.js -------------------------------------------------------------------------------- /src/utils/formatDate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils/formatDate.test.js -------------------------------------------------------------------------------- /src/utils/getBadgeColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils/getBadgeColor.js -------------------------------------------------------------------------------- /src/utils/getBadgeColor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils/getBadgeColor.test.js -------------------------------------------------------------------------------- /src/utils/getResourceDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils/getResourceDate.js -------------------------------------------------------------------------------- /src/utils/isUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils/isUrl.js -------------------------------------------------------------------------------- /src/utils/isUrl.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/src/utils/isUrl.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1uphealth/fhir-react/HEAD/webpack.config.js --------------------------------------------------------------------------------