formbuilder-lhcforms 7.0.9 → 7.0.10

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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  This project follows [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ## [7.0.10] 2022-04-21
6
+ ### Changed
7
+ - Load LOINC forms from CTSS.
8
+ ### Added
9
+ - Add observation link period field.
10
+
5
11
  ## [7.0.9] 2022-04-06
6
12
  ### Fixed
7
13
  - Fix test descriptions.
@@ -31,6 +31,11 @@
31
31
  { "field": "enableBehavior", "col": 12 }
32
32
  ]
33
33
  },
34
+ {
35
+ "showFields": [
36
+ { "field": "__$observationLinkPeriod", "col": 12}
37
+ ]
38
+ },
34
39
  {
35
40
  "showFields": [
36
41
  { "field": "__$totalScore", "col": 12}
@@ -1696,6 +1696,21 @@
1696
1696
  ]
1697
1697
  }
1698
1698
  },
1699
+ "__$observationLinkPeriod": {
1700
+ "description": "Sets a time window within which to look for an Observation with a matching code, for pre-population. Requires that a code be assigned to this item.",
1701
+ "title": "Add link to pre-populate FHIR Observation?",
1702
+ "pattern": "^[ \\r\\n\\t\\S]+$",
1703
+ "type": "string",
1704
+ "widget": {
1705
+ "id": "observation-link-period",
1706
+ "labelPosition": "left",
1707
+ "labelWidthClass": "col-sm-2 pr-1",
1708
+ "controlWidthClass": "col-sm-10"
1709
+ },
1710
+ "visibleIf": {
1711
+ "type": ["$EXP$ target.value != 'display'"]
1712
+ }
1713
+ },
1699
1714
  "__$units": {
1700
1715
  "description": "The units for answers. They are applicable for integer, decimal, and quantity types.",
1701
1716
  "title": "Units",
@@ -5031,6 +5046,10 @@
5031
5046
  "fields": ["enableBehavior"],
5032
5047
  "showFields": [{"field": "enableBehavior", "col": 3}]
5033
5048
  },
5049
+ {
5050
+ "fields": ["__$observationLinkPeriod"],
5051
+ "showFields": [{"field": "__$observationLinkPeriod", "col": 10}]
5052
+ },
5034
5053
  {
5035
5054
  "fields": ["id", "extension", "modifierExtension", "definition"]
5036
5055
  }