fhir-react 0.3.12 → 0.3.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/README.md +1 -1
  2. package/build/index.js +1 -1
  3. package/build/style.css +1 -1
  4. package/package.json +1 -1
  5. package/src/components/containers/Accordion/Accordion.js +5 -4
  6. package/src/components/containers/ResourceContainer/ResourceContainer.css +1 -3
  7. package/src/components/datatypes/Date/Date.js +1 -0
  8. package/src/components/datatypes/DatePeriod/DatePeriod.js +2 -2
  9. package/src/components/resources/AdverseEvent/AdverseEvent.test.js +2 -2
  10. package/src/components/resources/AllergyIntolerance/AllergyIntolerance.js +17 -2
  11. package/src/components/resources/AllergyIntolerance/AllergyIntolerance.test.js +8 -4
  12. package/src/components/resources/CarePlan/CarePlan.test.js +4 -4
  13. package/src/components/resources/CareTeam/CareTeam.test.js +4 -4
  14. package/src/components/resources/Claim/Claim.test.js +6 -6
  15. package/src/components/resources/ClaimResponse/ClaimResponse.test.js +6 -6
  16. package/src/components/resources/Condition/Condition.js +25 -3
  17. package/src/components/resources/Condition/Condition.test.js +5 -5
  18. package/src/components/resources/DiagnosticReport/DiagnosticReport.test.js +4 -2
  19. package/src/components/resources/ExplanationOfBenefit/ExplanationOfBenefit.js +3 -1
  20. package/src/components/resources/ExplanationOfBenefit/ExplanationOfBenefit.test.js +7 -7
  21. package/src/components/resources/Goal/Goal.test.js +2 -2
  22. package/src/components/resources/Immunization/Immunization.js +8 -2
  23. package/src/components/resources/MedicationAdministration/MedicationAdministration.test.js +7 -7
  24. package/src/components/resources/MedicationDispense/MedicationDispense.test.js +2 -2
  25. package/src/components/resources/MedicationRequest/MedicationRequest.test.js +4 -4
  26. package/src/components/resources/Observation/Observation.js +15 -3
  27. package/src/components/resources/Observation/Observation.test.js +1 -1
  28. package/src/components/resources/Patient/Patient.js +1 -1
  29. package/src/components/resources/Patient/Patient.test.js +6 -6
  30. package/src/components/resources/Procedure/Procedure.test.js +1 -1
  31. package/src/components/resources/QuestionnaireResponse/QuestionnaireResponse.test.js +4 -4
  32. package/src/components/resources/ResearchStudy/ResearchStudy.test.js +1 -1
  33. package/src/components/ui/index.js +5 -1
  34. package/src/utils/formatDate.js +3 -0
  35. package/src/utils/formatDate.test.js +2 -2
  36. package/src/utils/getResourceDate.js +9 -0
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  [![CircleCI](https://circleci.com/gh/1uphealth/fhir-react/tree/master.svg?style=svg)](https://circleci.com/gh/1uphealth/fhir-react/tree/master)
2
- [![Storybook](https://github.com/storybookjs/brand/raw/master/badge/badge-storybook.svg?sanitize=true)](https://fhir-react-lib-test-storybook.s3.amazonaws.com/branch/release-0-3-12/index.html)
2
+ [![Storybook](https://github.com/storybookjs/brand/raw/master/badge/badge-storybook.svg?sanitize=true)](https://fhir-react-lib-test-storybook.s3.amazonaws.com/branch/release-0-3-13/index.html)
3
3
 
4
4
  # fhir-react
5
5