fhir-react 0.3.10 → 0.3.11
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.
- package/.storybook/preview.js +49 -0
- package/README.md +1 -1
- package/build/index.js +8 -8
- package/package.json +1 -1
- package/src/components/resources/Claim/Claim.stories.js +1 -1
- package/src/components/resources/ClaimResponse/ClaimResponse.stories.js +1 -1
- package/src/components/resources/ExplanationOfBenefitGraph/ExplanationOfBenefitGraph.stories.js +1 -1
- package/src/components/resources/FamilyMemberHistory/FamilyMemberHistory.stories.js +1 -1
- package/src/components/resources/PractitionerRole/PractitionerRole.stories.js +1 -1
- package/src/components/resources/RelatedPerson/RelatedPerson.stories.js +1 -1
- package/src/components/supportedFhirResourceList.js +2 -0
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ import ClaimIcon from '../../../assets/containers/Claim/claim.svg';
|
|
|
15
15
|
import fhirIcons from '../../../fixtures/example-icons';
|
|
16
16
|
|
|
17
17
|
export default {
|
|
18
|
-
title: 'Claim',
|
|
18
|
+
title: 'ExplanationOfBenefit/Claim',
|
|
19
19
|
component: Claim,
|
|
20
20
|
argTypes: {
|
|
21
21
|
...defaultArgTypes,
|
|
@@ -14,7 +14,7 @@ import fhirIcons from '../../../fixtures/example-icons';
|
|
|
14
14
|
import ClaimResponseIcon from '../../../assets/containers/ClaimResponse/claim-response.svg';
|
|
15
15
|
|
|
16
16
|
export default {
|
|
17
|
-
title: 'ClaimResponse',
|
|
17
|
+
title: 'ExplanationOfBenefit/ClaimResponse',
|
|
18
18
|
component: ClaimResponse,
|
|
19
19
|
argTypes: {
|
|
20
20
|
...defaultArgTypes,
|
|
@@ -12,7 +12,7 @@ import fhirIcons from '../../../fixtures/example-icons';
|
|
|
12
12
|
import FamilyMemberHistoryIcon from '../../../assets/containers/FamilyMemberHistory/family-member-history.svg';
|
|
13
13
|
|
|
14
14
|
export default {
|
|
15
|
-
title: 'FamilyMemberHistory',
|
|
15
|
+
title: 'Coverage/FamilyMemberHistory',
|
|
16
16
|
component: FamilyMemberHistory,
|
|
17
17
|
argTypes: {
|
|
18
18
|
...defaultArgTypes,
|
|
@@ -16,7 +16,7 @@ import fhirIcons from '../../../fixtures/example-icons';
|
|
|
16
16
|
import PractitionerRoleIcon from '../../../assets/containers/PractitionerRole/practitioner-role.svg';
|
|
17
17
|
|
|
18
18
|
export default {
|
|
19
|
-
title: 'PractitionerRole',
|
|
19
|
+
title: 'Practitioner/PractitionerRole',
|
|
20
20
|
component: PractitionerRole,
|
|
21
21
|
argTypes: {
|
|
22
22
|
...defaultArgTypes,
|
|
@@ -11,7 +11,7 @@ import exampleR4 from '../../../fixtures/r4/resources/relatedPerson/example1.jso
|
|
|
11
11
|
import fhirIcons from '../../../fixtures/example-icons';
|
|
12
12
|
|
|
13
13
|
export default {
|
|
14
|
-
title: 'RelatedPerson',
|
|
14
|
+
title: 'Coverage/RelatedPerson',
|
|
15
15
|
component: RelatedPerson,
|
|
16
16
|
argTypes: {
|
|
17
17
|
...defaultArgTypes,
|
|
@@ -36,6 +36,7 @@ import MedicationAdministration from './resources/MedicationAdministration';
|
|
|
36
36
|
import Questionnaire from './resources/Questionnaire';
|
|
37
37
|
import QuestionnaireResponse from './resources/QuestionnaireResponse';
|
|
38
38
|
import ReferralRequest from './resources/ReferralRequest';
|
|
39
|
+
import RelatedPerson from './resources/RelatedPerson';
|
|
39
40
|
import ResearchStudy from './resources/ResearchStudy';
|
|
40
41
|
import ResourceCategory from './resources/ResourceCategory';
|
|
41
42
|
|
|
@@ -78,6 +79,7 @@ export {
|
|
|
78
79
|
Questionnaire,
|
|
79
80
|
QuestionnaireResponse,
|
|
80
81
|
ReferralRequest,
|
|
82
|
+
RelatedPerson,
|
|
81
83
|
ResearchStudy,
|
|
82
84
|
ResourceCategory,
|
|
83
85
|
};
|