fhir-react 0.3.5 → 0.3.6

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 (41) hide show
  1. package/README.md +1 -1
  2. package/build/index.js +6 -6
  3. package/package.json +1 -1
  4. package/src/assets/containers/{Medication/medication.svg → MedicationOrder/medication-order.svg} +0 -0
  5. package/src/assets/containers/MedicationRequest/medication-request.svg +5 -0
  6. package/src/assets/containers/ResourceCategory/{resource-placeholder.svg → resource-category.svg} +0 -0
  7. package/src/components/resources/AllergyIntolerance/AllergyIntolerance.js +3 -5
  8. package/src/components/resources/AllergyIntolerance/AllergyIntolerance.stories.js +5 -4
  9. package/src/components/resources/AllergyIntolerance/AllergyIntolerance.test.js +71 -0
  10. package/src/components/resources/Binary/Binary.js +1 -2
  11. package/src/components/resources/Binary/Binary.stories.js +10 -4
  12. package/src/components/resources/Binary/Binary.test.js +67 -0
  13. package/src/components/resources/CarePlan/CarePlan.stories.js +31 -5
  14. package/src/components/resources/CarePlan/CarePlan.test.js +72 -0
  15. package/src/components/resources/Device/Device.stories.js +33 -5
  16. package/src/components/resources/Device/Device.test.js +72 -0
  17. package/src/components/resources/DiagnosticReport/DiagnosticReport.stories.js +5 -4
  18. package/src/components/resources/DiagnosticReport/DiagnosticReport.test.js +71 -0
  19. package/src/components/resources/DocumentReference/DocumentReference.stories.js +3 -2
  20. package/src/components/resources/DocumentReference/DocumentReference.test.js +71 -0
  21. package/src/components/resources/FamilyMemberHistory/FamilyMemberHistory.stories.js +3 -2
  22. package/src/components/resources/FamilyMemberHistory/FamilyMemberHistory.test.js +72 -0
  23. package/src/components/resources/Goal/Goal.js +1 -2
  24. package/src/components/resources/Goal/Goal.stories.js +5 -4
  25. package/src/components/resources/Goal/Goal.test.js +69 -0
  26. package/src/components/resources/Medication/Medication.test.js +1 -1
  27. package/src/components/resources/MedicationKnowledge/MedicationKnowledge.js +1 -1
  28. package/src/components/resources/MedicationOrder/MedicationOrder.js +2 -2
  29. package/src/components/resources/MedicationOrder/MedicationOrder.stories.js +1 -2
  30. package/src/components/resources/MedicationOrder/MedicationOrder.test.js +67 -0
  31. package/src/components/resources/MedicationRequest/MedicationRequest.js +2 -4
  32. package/src/components/resources/MedicationRequest/MedicationRequest.stories.js +11 -6
  33. package/src/components/resources/MedicationRequest/MedicationRequest.test.js +67 -0
  34. package/src/components/resources/MedicationStatement/MedicationDosage.js +2 -2
  35. package/src/components/resources/MedicationStatement/MedicationStatement.js +1 -0
  36. package/src/components/resources/MedicationStatement/MedicationStatement.stories.js +5 -4
  37. package/src/components/resources/MedicationStatement/MedicationStatement.test.js +72 -0
  38. package/src/components/resources/ResourceCategory/ResourceCategory.js +7 -12
  39. package/src/components/resources/ResourceCategory/ResourceCategory.stories.js +13 -2
  40. package/src/components/resources/ResourceCategory/ResourceCategory.test.js +77 -18
  41. package/src/fixtures/example-icons.jsx +20 -13
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-4/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-6/index.html)
3
3
 
4
4
  # fhir-react
5
5