-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #431 from helsenorge/andreasn/group-border
Added seperation line between repeated groups
- Loading branch information
Showing
9 changed files
with
150 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## 16.3.2 | ||
|
||
--- | ||
|
||
- Added horizontal separation line between repeated groups | ||
|
||
## 16.3.1 | ||
|
||
--- | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 103 additions & 0 deletions
103
src/components/formcomponents/group/__tests__/__data__/repeatQ2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
{ | ||
"resourceType": "Questionnaire", | ||
"language": "nb-NO", | ||
"id": "122e17a7-e34d-4886-99dc-cdfe5684e044", | ||
"status": "draft", | ||
"publisher": "NHN", | ||
"meta": { | ||
"profile": ["http://ehelse.no/fhir/StructureDefinition/sdf-Questionnaire"], | ||
"tag": [ | ||
{ | ||
"system": "urn:ietf:bcp:47", | ||
"code": "nb-NO", | ||
"display": "Bokmål" | ||
} | ||
], | ||
"security": [ | ||
{ | ||
"code": "3", | ||
"display": "Helsehjelp (Full)", | ||
"system": "urn:oid:2.16.578.1.12.4.1.1.7618" | ||
} | ||
] | ||
}, | ||
"contact": [ | ||
{ | ||
"name": "http://www.nhn.no" | ||
} | ||
], | ||
"subjectType": ["Patient"], | ||
"extension": [ | ||
{ | ||
"url": "http://helsenorge.no/fhir/StructureDefinition/sdf-sidebar", | ||
"valueCoding": { | ||
"system": "http://helsenorge.no/fhir/ValueSet/sdf-sidebar", | ||
"code": "1" | ||
} | ||
}, | ||
{ | ||
"url": "http://helsenorge.no/fhir/StructureDefinition/sdf-information-message", | ||
"valueCoding": { | ||
"system": "http://helsenorge.no/fhir/ValueSet/sdf-information-message", | ||
"code": "1" | ||
} | ||
}, | ||
{ | ||
"url": "http://helsenorge.no/fhir/StructureDefintion/sdf-itemControl-visibility", | ||
"valueCodeableConcept": { | ||
"coding": [ | ||
{ | ||
"system": "http://helsenorge.no/fhir/CodeSystem/AttachmentRenderOptions", | ||
"code": "hide-help", | ||
"display": "Hide help texts" | ||
}, | ||
{ | ||
"system": "http://helsenorge.no/fhir/CodeSystem/AttachmentRenderOptions", | ||
"code": "hide-sublabel", | ||
"display": "Hide sublabel texts" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"item": [ | ||
{ | ||
"linkId": "bb872176-bda2-44ee-879c-1600f745abd7", | ||
"type": "group", | ||
"text": "REPEATEABLE GROUP", | ||
"required": false, | ||
"repeats": true, | ||
"item": [ | ||
{ | ||
"linkId": "de3b3697-3f30-4848-8c29-f19486ce5d9f", | ||
"type": "group", | ||
"text": "REPEATABLE GROUP INSIDE REPEATABLE GROUP", | ||
"item": [ | ||
{ | ||
"linkId": "a511b461-8271-4f11-fc6e-1e0d0247f48c", | ||
"type": "integer", | ||
"text": "REPEATABLE INT", | ||
"repeats": true, | ||
"extension": [ | ||
{ | ||
"url": "http://hl7.org/fhir/StructureDefinition/minValue", | ||
"valueInteger": 0 | ||
}, | ||
{ | ||
"url": "http://hl7.org/fhir/StructureDefinition/maxValue", | ||
"valueInteger": 10 | ||
}, | ||
{ | ||
"url": "http://ehelse.no/fhir/StructureDefinition/validationtext", | ||
"valueString": "Custom error" | ||
} | ||
] | ||
} | ||
], | ||
"required": false, | ||
"repeats": true | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters