fhir-react 0.3.4 → 0.3.5

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 (44) hide show
  1. package/build/bootstrap-reboot.min.css +8 -2
  2. package/build/index.js +7 -7
  3. package/build/style.css +4 -5
  4. package/package.json +1 -1
  5. package/src/assets/containers/Binary/binary.svg +9 -0
  6. package/src/components/containers/Accordion/Accordion.js +10 -9
  7. package/src/components/datatypes/Annotation/Annotation.js +4 -4
  8. package/src/components/datatypes/CodeableConcept/CodeableConcept.css +4 -1
  9. package/src/components/datatypes/Coding/Coding.css +0 -1
  10. package/src/components/datatypes/Reference/Reference.css +3 -0
  11. package/src/components/datatypes/Reference/Reference.js +2 -0
  12. package/src/components/resources/AllergyIntolerance/AllergyIntolerance.js +87 -76
  13. package/src/components/resources/AllergyIntolerance/AllergyIntolerance.stories.js +11 -1
  14. package/src/components/resources/Binary/Binary.js +31 -20
  15. package/src/components/resources/Binary/Binary.stories.js +6 -5
  16. package/src/components/resources/CarePlan/CarePlan.js +111 -96
  17. package/src/components/resources/CarePlan/CarePlan.test.js +2 -2
  18. package/src/components/resources/CarePlan/CarePlanActivity.js +6 -2
  19. package/src/components/resources/Device/Device.js +54 -34
  20. package/src/components/resources/DiagnosticReport/DiagnosticReport.js +53 -43
  21. package/src/components/resources/DiagnosticReport/DiagnosticReport.stories.js +7 -1
  22. package/src/components/resources/DocumentReference/DocumentReference.js +101 -65
  23. package/src/components/resources/DocumentReference/DocumentReference.stories.js +4 -0
  24. package/src/components/resources/FamilyMemberHistory/FamilyMemberHistory.js +47 -38
  25. package/src/components/resources/FamilyMemberHistory/FamilyMemberHistory.stories.js +4 -0
  26. package/src/components/resources/Goal/Goal.js +104 -85
  27. package/src/components/resources/Goal/Goal.stories.js +37 -7
  28. package/src/components/resources/Goal/Goal.test.js +1 -3
  29. package/src/components/resources/MedicationOrder/MedicationOrder.js +45 -28
  30. package/src/components/resources/MedicationOrder/MedicationOrder.stories.js +2 -1
  31. package/src/components/resources/MedicationRequest/MedicationRequest.js +65 -43
  32. package/src/components/resources/MedicationRequest/MedicationRequest.stories.js +16 -5
  33. package/src/components/resources/MedicationStatement/MedicationDetails.js +52 -0
  34. package/src/components/resources/MedicationStatement/MedicationDosage.js +46 -0
  35. package/src/components/resources/MedicationStatement/MedicationStatement.js +65 -118
  36. package/src/components/resources/MedicationStatement/MedicationStatement.stories.js +6 -0
  37. package/src/components/resources/MedicationStatement/MedicationStatement.test.js +31 -6
  38. package/src/components/ui/bootstrap-reboot.min.css +8 -2
  39. package/src/components/ui/index.js +11 -0
  40. package/src/fixtures/example-icons.jsx +7 -0
  41. package/src/style.scss +1 -0
  42. package/src/utils/formatDate.js +6 -4
  43. package/src/components/resources/AllergyIntolerance/AllergyIntolerance.css +0 -4
  44. package/src/components/resources/CarePlan/CarePlan.css +0 -7
@@ -173,8 +173,14 @@ sup {
173
173
  .fhir-resource kbd,
174
174
  .fhir-resource pre,
175
175
  .fhir-resource samp {
176
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
177
- 'Courier New', monospace;
176
+ font-family:
177
+ SFMono-Regular,
178
+ Menlo,
179
+ Monaco,
180
+ Consolas,
181
+ 'Liberation Mono',
182
+ 'Courier New',
183
+ monospace;
178
184
  font-size: 1em;
179
185
  }
180
186