@healthcatalyst/catalyst-docfx-template 1.0.35 → 1.0.39
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/cashmere/hcicons/hcicons.eot +0 -0
- package/cashmere/hcicons/hcicons.scss +504 -0
- package/cashmere/hcicons/hcicons.svg +169 -0
- package/cashmere/hcicons/hcicons.ttf +0 -0
- package/cashmere/hcicons/hcicons.woff +0 -0
- package/cashmere/hcicons/hcicons.woff2 +0 -0
- package/healthcatalyst-catalyst-docfx-template-1.0.39.tgz +0 -0
- package/package.json +1 -1
- package/partials/affix.tmpl.partial +5 -2
- package/partials/breadcrumb.tmpl.partial +10 -7
- package/partials/footer.tmpl.partial +3 -2
- package/partials/head.tmpl.partial +1 -0
- package/partials/navbar.tmpl.partial +1 -2
- package/partials/scripts.tmpl.partial +1 -0
- package/styles/docs-navbar.js +2581 -1976
- package/styles/main.css +1003 -932
- package/styles/main.js +65 -50
- package/healthcatalyst-catalyst-docfx-template-1.0.35.tgz +0 -0
- package/styles/clipboard.min.js +0 -7
|
Binary file
|
|
@@ -0,0 +1,504 @@
|
|
|
1
|
+
$hc-icons-font-path: "." !default;
|
|
2
|
+
|
|
3
|
+
@font-face {
|
|
4
|
+
font-family: 'hcicons';
|
|
5
|
+
src: url('#{$hc-icons-font-path}/hcicons.eot');
|
|
6
|
+
src: url('#{$hc-icons-font-path}/hcicons.eot') format('embedded-opentype'), url('#{$hc-icons-font-path}/hcicons.woff2') format('woff2'),
|
|
7
|
+
url('#{$hc-icons-font-path}/hcicons.woff') format('woff'), url('#{$hc-icons-font-path}/hcicons.ttf') format('truetype'),
|
|
8
|
+
url('#{$hc-icons-font-path}/hcicons.svg') format('svg');
|
|
9
|
+
font-weight: normal;
|
|
10
|
+
font-style: normal;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.hc-icons {
|
|
14
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
+
font-family: 'hcicons' !important;
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: normal;
|
|
18
|
+
font-variant: normal;
|
|
19
|
+
text-transform: none;
|
|
20
|
+
line-height: 1;
|
|
21
|
+
|
|
22
|
+
/* Better Font Rendering =========== */
|
|
23
|
+
-webkit-font-smoothing: antialiased;
|
|
24
|
+
-moz-osx-font-smoothing: grayscale;
|
|
25
|
+
|
|
26
|
+
&.hci-catalyst-logo:before {
|
|
27
|
+
content: '\e918';
|
|
28
|
+
}
|
|
29
|
+
&.hci-atlas:before {
|
|
30
|
+
content: '\e907';
|
|
31
|
+
}
|
|
32
|
+
&.hci-samd:before {
|
|
33
|
+
content: '\e9a1';
|
|
34
|
+
}
|
|
35
|
+
&.hci-population:before {
|
|
36
|
+
content: '\e988';
|
|
37
|
+
}
|
|
38
|
+
&.hci-nlp:before {
|
|
39
|
+
content: '\e97d';
|
|
40
|
+
}
|
|
41
|
+
&.hci-binding:before {
|
|
42
|
+
content: '\e90c';
|
|
43
|
+
}
|
|
44
|
+
&.hci-sql-binding:before {
|
|
45
|
+
content: '\e9b1';
|
|
46
|
+
}
|
|
47
|
+
&.hci-xml-binding:before {
|
|
48
|
+
content: '\e9c9';
|
|
49
|
+
}
|
|
50
|
+
&.hci-r-binding:before {
|
|
51
|
+
content: '\e991';
|
|
52
|
+
}
|
|
53
|
+
&.hci-python-binding:before {
|
|
54
|
+
content: '\e98e';
|
|
55
|
+
}
|
|
56
|
+
&.hci-csv-binding:before {
|
|
57
|
+
content: '\e933';
|
|
58
|
+
}
|
|
59
|
+
&.hci-regen-f-bind:before {
|
|
60
|
+
content: '\e999';
|
|
61
|
+
}
|
|
62
|
+
&.hci-val-schema:before {
|
|
63
|
+
content: '\e9c1';
|
|
64
|
+
}
|
|
65
|
+
&.hci-regen-sel-bind:before {
|
|
66
|
+
content: '\e99a';
|
|
67
|
+
}
|
|
68
|
+
&.hci-val-sel-schema:before {
|
|
69
|
+
content: '\e9c2';
|
|
70
|
+
}
|
|
71
|
+
&.hci-extensions:before {
|
|
72
|
+
content: '\e94e';
|
|
73
|
+
}
|
|
74
|
+
&.hci-connecting:before {
|
|
75
|
+
content: '\e92f';
|
|
76
|
+
}
|
|
77
|
+
&.hci-disconnected:before {
|
|
78
|
+
content: '\e93b';
|
|
79
|
+
}
|
|
80
|
+
&.hci-disconnecting:before {
|
|
81
|
+
content: '\e93c';
|
|
82
|
+
}
|
|
83
|
+
&.hci-connected:before {
|
|
84
|
+
content: '\e92e';
|
|
85
|
+
}
|
|
86
|
+
&.hci-data-mart:before {
|
|
87
|
+
content: '\e936';
|
|
88
|
+
}
|
|
89
|
+
&.hci-new-DM:before,
|
|
90
|
+
&.hci-new-SM:before {
|
|
91
|
+
content: '\e97c';
|
|
92
|
+
}
|
|
93
|
+
&.hci-field:before {
|
|
94
|
+
content: '\e903';
|
|
95
|
+
}
|
|
96
|
+
&.hci-indexes:before {
|
|
97
|
+
content: '\e96b';
|
|
98
|
+
}
|
|
99
|
+
&.hci-columns:before {
|
|
100
|
+
content: '\e92b';
|
|
101
|
+
}
|
|
102
|
+
&.hci-details:before {
|
|
103
|
+
content: '\e93a';
|
|
104
|
+
}
|
|
105
|
+
&.hci-attributes:before {
|
|
106
|
+
content: '\e908';
|
|
107
|
+
}
|
|
108
|
+
&.hci-summary-metric:before {
|
|
109
|
+
content: '\e9b8';
|
|
110
|
+
}
|
|
111
|
+
&.hci-subject-area:before {
|
|
112
|
+
content: '\e9b6';
|
|
113
|
+
}
|
|
114
|
+
&.hci-entity:before {
|
|
115
|
+
content: '\e94d';
|
|
116
|
+
}
|
|
117
|
+
&.hci-results:before {
|
|
118
|
+
content: '\e99d';
|
|
119
|
+
}
|
|
120
|
+
&.hci-npe:before {
|
|
121
|
+
content: '\e97e';
|
|
122
|
+
}
|
|
123
|
+
&.hci-core-entity:before {
|
|
124
|
+
content: '\e931';
|
|
125
|
+
}
|
|
126
|
+
&.hci-data-ent-ent:before {
|
|
127
|
+
content: '\e934';
|
|
128
|
+
}
|
|
129
|
+
&.hci-overriding:before {
|
|
130
|
+
content: '\e981';
|
|
131
|
+
}
|
|
132
|
+
&.hci-override-b:before {
|
|
133
|
+
content: '\e980';
|
|
134
|
+
}
|
|
135
|
+
&.hci-entry-w-d:before {
|
|
136
|
+
content: '\e944';
|
|
137
|
+
}
|
|
138
|
+
&.hci-view-d-entity:before {
|
|
139
|
+
content: '\e9c4';
|
|
140
|
+
}
|
|
141
|
+
&.hci-regen-ent:before {
|
|
142
|
+
content: '\e998';
|
|
143
|
+
}
|
|
144
|
+
&.hci-select-ent:before {
|
|
145
|
+
content: '\e9a9';
|
|
146
|
+
}
|
|
147
|
+
&.hci-insert-temp:before {
|
|
148
|
+
content: '\e96d';
|
|
149
|
+
}
|
|
150
|
+
&.hci-model:before {
|
|
151
|
+
content: '\e978';
|
|
152
|
+
}
|
|
153
|
+
&.hci-er-diagram:before {
|
|
154
|
+
content: '\e946';
|
|
155
|
+
}
|
|
156
|
+
&.hci-report:before {
|
|
157
|
+
content: '\e99b';
|
|
158
|
+
}
|
|
159
|
+
&.hci-metrics:before {
|
|
160
|
+
content: '\e977';
|
|
161
|
+
}
|
|
162
|
+
&.hci-chart-area:before {
|
|
163
|
+
content: '\e91a';
|
|
164
|
+
}
|
|
165
|
+
&.hci-chart-bar:before {
|
|
166
|
+
content: '\e91b';
|
|
167
|
+
}
|
|
168
|
+
&.hci-chart-line:before {
|
|
169
|
+
content: '\e91c';
|
|
170
|
+
}
|
|
171
|
+
&.hci-chart-pie:before {
|
|
172
|
+
content: '\e91d';
|
|
173
|
+
}
|
|
174
|
+
&.hci-database:before {
|
|
175
|
+
content: '\e938';
|
|
176
|
+
}
|
|
177
|
+
&.hci-load-db:before {
|
|
178
|
+
content: '\e973';
|
|
179
|
+
}
|
|
180
|
+
&.hci-data-steward:before {
|
|
181
|
+
content: '\e937';
|
|
182
|
+
}
|
|
183
|
+
&.hci-query:before {
|
|
184
|
+
content: '\e98f';
|
|
185
|
+
}
|
|
186
|
+
&.hci-ETL:before {
|
|
187
|
+
content: '\e948';
|
|
188
|
+
}
|
|
189
|
+
&.hci-data-quality:before {
|
|
190
|
+
content: '\e917';
|
|
191
|
+
}
|
|
192
|
+
&.hci-data-flow:before {
|
|
193
|
+
content: '\e935';
|
|
194
|
+
}
|
|
195
|
+
&.hci-active:before {
|
|
196
|
+
content: '\e900';
|
|
197
|
+
}
|
|
198
|
+
&.hci-in-dev:before {
|
|
199
|
+
content: '\e969';
|
|
200
|
+
}
|
|
201
|
+
&.hci-inactive:before {
|
|
202
|
+
content: '\e96a';
|
|
203
|
+
}
|
|
204
|
+
&.hci-ready-delete:before {
|
|
205
|
+
content: '\e992';
|
|
206
|
+
}
|
|
207
|
+
&.hci-ready-review:before {
|
|
208
|
+
content: '\e993';
|
|
209
|
+
}
|
|
210
|
+
&.hci-failure:before {
|
|
211
|
+
content: '\e950';
|
|
212
|
+
}
|
|
213
|
+
&.hci-warning:before {
|
|
214
|
+
content: '\e9c8';
|
|
215
|
+
}
|
|
216
|
+
&.hci-skipped:before {
|
|
217
|
+
content: '\e9ac';
|
|
218
|
+
}
|
|
219
|
+
&.hci-canceled:before {
|
|
220
|
+
content: '\e916';
|
|
221
|
+
}
|
|
222
|
+
&.hci-success:before {
|
|
223
|
+
content: '\e9b7';
|
|
224
|
+
}
|
|
225
|
+
&.hci-waiting:before {
|
|
226
|
+
content: '\e9c6';
|
|
227
|
+
}
|
|
228
|
+
&.hci-processing:before {
|
|
229
|
+
content: '\e98d';
|
|
230
|
+
}
|
|
231
|
+
&.hci-dispatched:before {
|
|
232
|
+
content: '\e93d';
|
|
233
|
+
}
|
|
234
|
+
&.hci-queued:before {
|
|
235
|
+
content: '\e990';
|
|
236
|
+
}
|
|
237
|
+
&.hci-scheduled:before {
|
|
238
|
+
content: '\e9a6';
|
|
239
|
+
}
|
|
240
|
+
&.hci-staged:before {
|
|
241
|
+
content: '\e9b2';
|
|
242
|
+
}
|
|
243
|
+
&.hci-help:before {
|
|
244
|
+
content: '\e964';
|
|
245
|
+
}
|
|
246
|
+
&.hci-info:before {
|
|
247
|
+
content: '\e96c';
|
|
248
|
+
}
|
|
249
|
+
&.hci-app-switcher:before {
|
|
250
|
+
content: '\e901';
|
|
251
|
+
}
|
|
252
|
+
&.hci-filters:before {
|
|
253
|
+
content: '\e906';
|
|
254
|
+
}
|
|
255
|
+
&.hci-calculate-all:before {
|
|
256
|
+
content: '\e913';
|
|
257
|
+
}
|
|
258
|
+
&.hci-calculate:before {
|
|
259
|
+
content: '\e914';
|
|
260
|
+
}
|
|
261
|
+
&.hci-sign-out:before {
|
|
262
|
+
content: '\e9ab';
|
|
263
|
+
}
|
|
264
|
+
&.hci-scratch-pad:before {
|
|
265
|
+
content: '\e9a7';
|
|
266
|
+
}
|
|
267
|
+
&.hci-archive:before {
|
|
268
|
+
content: '\e905';
|
|
269
|
+
}
|
|
270
|
+
&.hci-expand:before {
|
|
271
|
+
content: '\e92a';
|
|
272
|
+
}
|
|
273
|
+
&.hci-collapse:before {
|
|
274
|
+
content: '\e94b';
|
|
275
|
+
}
|
|
276
|
+
&.hci-expand-multiple:before {
|
|
277
|
+
content: '\e94a';
|
|
278
|
+
}
|
|
279
|
+
&.hci-collapse-multiple:before {
|
|
280
|
+
content: '\e929';
|
|
281
|
+
}
|
|
282
|
+
&.hci-delete:before {
|
|
283
|
+
content: '\e939';
|
|
284
|
+
}
|
|
285
|
+
&.hci-grip:before {
|
|
286
|
+
content: '\e95f';
|
|
287
|
+
}
|
|
288
|
+
&.hci-resize-grip:before {
|
|
289
|
+
content: '\e99c';
|
|
290
|
+
}
|
|
291
|
+
&.hci-ellipses:before {
|
|
292
|
+
content: '\e942';
|
|
293
|
+
}
|
|
294
|
+
&.hci-export:before {
|
|
295
|
+
content: '\e94c';
|
|
296
|
+
}
|
|
297
|
+
&.hci-import:before {
|
|
298
|
+
content: '\e968';
|
|
299
|
+
}
|
|
300
|
+
&.hci-find-replace:before {
|
|
301
|
+
content: '\e953';
|
|
302
|
+
}
|
|
303
|
+
&.hci-spell-check:before {
|
|
304
|
+
content: '\e9b0';
|
|
305
|
+
}
|
|
306
|
+
&.hci-global-r:before {
|
|
307
|
+
content: '\e959';
|
|
308
|
+
}
|
|
309
|
+
&.hci-global-rw:before {
|
|
310
|
+
content: '\e95a';
|
|
311
|
+
}
|
|
312
|
+
&.hci-global-w:before {
|
|
313
|
+
content: '\e95b';
|
|
314
|
+
}
|
|
315
|
+
&.hci-web-link:before {
|
|
316
|
+
content: '\e972';
|
|
317
|
+
}
|
|
318
|
+
&.hci-broken-link:before {
|
|
319
|
+
content: '\e911';
|
|
320
|
+
}
|
|
321
|
+
&.hci-copy:before {
|
|
322
|
+
content: '\e930';
|
|
323
|
+
}
|
|
324
|
+
&.hci-folder:before {
|
|
325
|
+
content: '\e961';
|
|
326
|
+
}
|
|
327
|
+
&.hci-folder-open:before {
|
|
328
|
+
content: '\e97f';
|
|
329
|
+
}
|
|
330
|
+
&.hci-save-fail:before {
|
|
331
|
+
content: '\e9a2';
|
|
332
|
+
}
|
|
333
|
+
&.hci-save-success:before {
|
|
334
|
+
content: '\e9a3';
|
|
335
|
+
}
|
|
336
|
+
&.hci-save:before {
|
|
337
|
+
content: '\e9a4';
|
|
338
|
+
}
|
|
339
|
+
&.hci-sort-ascend:before {
|
|
340
|
+
content: '\e9ad';
|
|
341
|
+
}
|
|
342
|
+
&.hci-sort-descend:before {
|
|
343
|
+
content: '\e9ae';
|
|
344
|
+
}
|
|
345
|
+
&.hci-sort:before {
|
|
346
|
+
content: '\e9af';
|
|
347
|
+
}
|
|
348
|
+
&.hci-text-entry:before {
|
|
349
|
+
content: '\e9bc';
|
|
350
|
+
}
|
|
351
|
+
&.hci-comment:before {
|
|
352
|
+
content: '\e92c';
|
|
353
|
+
}
|
|
354
|
+
&.hci-uncomment:before {
|
|
355
|
+
content: '\e9be';
|
|
356
|
+
}
|
|
357
|
+
&.hci-ungroup:before {
|
|
358
|
+
content: '\e9c0';
|
|
359
|
+
}
|
|
360
|
+
&.hci-run:before {
|
|
361
|
+
content: '\e90d';
|
|
362
|
+
}
|
|
363
|
+
&.hci-run-options:before {
|
|
364
|
+
content: '\e912';
|
|
365
|
+
}
|
|
366
|
+
&.hci-ambulance:before {
|
|
367
|
+
content: '\e902';
|
|
368
|
+
}
|
|
369
|
+
&.hci-apple:before {
|
|
370
|
+
content: '\e904';
|
|
371
|
+
}
|
|
372
|
+
&.hci-barrier:before {
|
|
373
|
+
content: '\e909';
|
|
374
|
+
}
|
|
375
|
+
&.hci-bone:before {
|
|
376
|
+
content: '\e90e';
|
|
377
|
+
}
|
|
378
|
+
&.hci-brain:before {
|
|
379
|
+
content: '\e90f';
|
|
380
|
+
}
|
|
381
|
+
&.hci-briefcase-medical:before {
|
|
382
|
+
content: '\e910';
|
|
383
|
+
}
|
|
384
|
+
&.hci-change-feed:before {
|
|
385
|
+
content: '\e919';
|
|
386
|
+
}
|
|
387
|
+
&.hci-clipboard-medical:before {
|
|
388
|
+
content: '\e922';
|
|
389
|
+
}
|
|
390
|
+
&.hci-clipboard-pulse:before {
|
|
391
|
+
content: '\e923';
|
|
392
|
+
}
|
|
393
|
+
&.hci-task:before {
|
|
394
|
+
content: '\e9bb';
|
|
395
|
+
}
|
|
396
|
+
&.hci-assign-task:before {
|
|
397
|
+
content: '\e90a';
|
|
398
|
+
}
|
|
399
|
+
&.hci-code:before {
|
|
400
|
+
content: '\e928';
|
|
401
|
+
}
|
|
402
|
+
&.hci-crown:before {
|
|
403
|
+
content: '\e932';
|
|
404
|
+
}
|
|
405
|
+
&.hci-education:before {
|
|
406
|
+
content: '\e941';
|
|
407
|
+
}
|
|
408
|
+
&.hci-empty:before {
|
|
409
|
+
content: '\e943';
|
|
410
|
+
}
|
|
411
|
+
&.hci-error-hexagon:before {
|
|
412
|
+
content: '\e947';
|
|
413
|
+
}
|
|
414
|
+
&.hci-gauge:before {
|
|
415
|
+
content: '\e955';
|
|
416
|
+
}
|
|
417
|
+
&.hci-genome:before {
|
|
418
|
+
content: '\e957';
|
|
419
|
+
}
|
|
420
|
+
&.hci-glasses:before {
|
|
421
|
+
content: '\e958';
|
|
422
|
+
}
|
|
423
|
+
&.hci-globe:before {
|
|
424
|
+
content: '\e95c';
|
|
425
|
+
}
|
|
426
|
+
&.hci-goal:before {
|
|
427
|
+
content: '\e95d';
|
|
428
|
+
}
|
|
429
|
+
&.hci-grin:before {
|
|
430
|
+
content: '\e95e';
|
|
431
|
+
}
|
|
432
|
+
&.hci-handshake:before {
|
|
433
|
+
content: '\e962';
|
|
434
|
+
}
|
|
435
|
+
&.hci-hospital-tall:before {
|
|
436
|
+
content: '\e966';
|
|
437
|
+
}
|
|
438
|
+
&.hci-hospital-wide:before {
|
|
439
|
+
content: '\e967';
|
|
440
|
+
}
|
|
441
|
+
&.hci-lab:before {
|
|
442
|
+
content: '\e96e';
|
|
443
|
+
}
|
|
444
|
+
&.hci-laptop:before {
|
|
445
|
+
content: '\e96f';
|
|
446
|
+
}
|
|
447
|
+
&.hci-lock:before {
|
|
448
|
+
content: '\e974';
|
|
449
|
+
}
|
|
450
|
+
&.hci-medical:before {
|
|
451
|
+
content: '\e976';
|
|
452
|
+
}
|
|
453
|
+
&.hci-money-bill:before {
|
|
454
|
+
content: '\e979';
|
|
455
|
+
}
|
|
456
|
+
&.hci-patient:before {
|
|
457
|
+
content: '\e982';
|
|
458
|
+
}
|
|
459
|
+
&.hci-doctor:before {
|
|
460
|
+
content: '\e93e';
|
|
461
|
+
}
|
|
462
|
+
&.hci-new-patient:before {
|
|
463
|
+
content: '\e915';
|
|
464
|
+
}
|
|
465
|
+
&.hci-pill:before {
|
|
466
|
+
content: '\e985';
|
|
467
|
+
}
|
|
468
|
+
&.hci-cancel-pill:before {
|
|
469
|
+
content: '\e90b';
|
|
470
|
+
}
|
|
471
|
+
&.hci-plant:before {
|
|
472
|
+
content: '\e986';
|
|
473
|
+
}
|
|
474
|
+
&.hci-prescription:before {
|
|
475
|
+
content: '\e989';
|
|
476
|
+
}
|
|
477
|
+
&.hci-problem:before {
|
|
478
|
+
content: '\e98b';
|
|
479
|
+
}
|
|
480
|
+
&.hci-procedure:before {
|
|
481
|
+
content: '\e98c';
|
|
482
|
+
}
|
|
483
|
+
&.hci-reference:before {
|
|
484
|
+
content: '\e995';
|
|
485
|
+
}
|
|
486
|
+
&.hci-share-feedback:before {
|
|
487
|
+
content: '\e9aa';
|
|
488
|
+
}
|
|
489
|
+
&.hci-stethoscope:before {
|
|
490
|
+
content: '\e9b5';
|
|
491
|
+
}
|
|
492
|
+
&.hci-syringe:before {
|
|
493
|
+
content: '\e9ba';
|
|
494
|
+
}
|
|
495
|
+
&.hci-trophy:before {
|
|
496
|
+
content: '\e9bd';
|
|
497
|
+
}
|
|
498
|
+
&.hci-vial:before {
|
|
499
|
+
content: '\e9c3';
|
|
500
|
+
}
|
|
501
|
+
&.hci-vitals:before {
|
|
502
|
+
content: '\e9c5';
|
|
503
|
+
}
|
|
504
|
+
}
|