@healthcatalyst/catalyst-docfx-template 1.0.52 → 1.0.53

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@healthcatalyst/catalyst-docfx-template",
3
- "version": "1.0.52",
3
+ "version": "1.0.53",
4
4
  "license": "MIT",
5
5
  "description": "A DocFX Template patching the Default template.",
6
6
  "publishConfig": {
@@ -0,0 +1,46 @@
1
+ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
2
+ {{!master(layout/_master.tmpl)}}
3
+ <style>
4
+ .cover-title {
5
+ text-align: top;
6
+ font-size: 45px;
7
+ }
8
+
9
+ h2 {
10
+ font-size: 24px;
11
+ padding-top: 5px;
12
+ }
13
+
14
+ h3 {
15
+ padding-top: 10px;
16
+ }
17
+
18
+ ul {
19
+ list-style: none;
20
+ margin-left: 5px;
21
+ padding-left: 5px;
22
+ }
23
+
24
+ li {
25
+ padding-left: 1em;
26
+ text-indent: -1em;
27
+ }
28
+
29
+ li:before {
30
+ content: "•";
31
+ padding-right: 9px;
32
+ }
33
+
34
+ li > ul > li:before {
35
+ content: "–";
36
+ padding-right: 9px;
37
+ margin-left: 0px;
38
+ }
39
+
40
+ img {
41
+ border: none;
42
+ padding-bottom: 100px;
43
+ }
44
+ </style>
45
+ <div class="cover-title">{{{rawTitle}}}</div>
46
+ <div>{{{conceptual}}}</div>
@@ -0,0 +1,22 @@
1
+ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
2
+ {{!include(/^styles/.*/)}}
3
+ {{!include(/^fonts/.*/)}}
4
+ <!DOCTYPE html>
5
+ <!--[if IE]><![endif]-->
6
+ <html>
7
+ <head>
8
+ <link rel="stylesheet" href="{{_rel}}styles/docfx.vendor.css">
9
+ <link rel="stylesheet" href="{{_rel}}styles/default.css">
10
+ <link rel="stylesheet" href="{{_rel}}node_modules/font-awesome/css/font-awesome.min.css">
11
+ <link rel="stylesheet" href="{{_rel}}node_modules/@healthcatalyst/cashmere/hcicons/css/hcicons.css">
12
+ <link rel="stylesheet" href="{{_rel}}styles/main.css">
13
+ </head>
14
+ <body>
15
+ <article>
16
+ {{!body}}
17
+ </article>
18
+ <script type="text/javascript" src="{{_rel}}styles/docfx.vendor.js"></script>
19
+ <script type="text/javascript" src="{{_rel}}styles/docfx.js"></script>
20
+ <script type="text/javascript" src="{{_rel}}styles/main.js"></script>
21
+ </body>
22
+ </html>
@@ -0,0 +1,22 @@
1
+ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
2
+
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6
+ <title>{{#title}}{{title}}{{/title}}{{^title}}{{>partials/title}}{{/title}} {{#_appTitle}}| {{_appTitle}} {{/_appTitle}}</title>
7
+ <meta name="viewport" content="width=device-width">
8
+ <meta name="title" content="{{#title}}{{title}}{{/title}}{{^title}}{{>partials/title}}{{/title}} {{#_appTitle}}| {{_appTitle}} {{/_appTitle}}">
9
+ <meta name="generator" content="docfx {{_docfxVersion}}">
10
+ {{#_description}}<meta name="description" content="{{_description}}">{{/_description}}
11
+ <link rel="shortcut icon" href="{{_rel}}{{{_appFaviconPath}}}{{^_appFaviconPath}}favicon.ico{{/_appFaviconPath}}">
12
+ <link rel="stylesheet" href="{{_rel}}styles/docfx.vendor.css">
13
+ <link rel="stylesheet" href="{{_rel}}styles/docfx.css">
14
+ <link rel="stylesheet" href="{{_rel}}node_modules/font-awesome/css/font-awesome.min.css">
15
+ <link rel="stylesheet" href="{{_rel}}node_modules/@healthcatalyst/cashmere/hcicons/css/hcicons.css">
16
+ <link rel="stylesheet" href="{{_rel}}styles/main.css">
17
+ <meta property="docfx:navrel" content="{{_navRel}}">
18
+ <meta property="docfx:tocrel" content="{{_tocRel}}">
19
+ {{#_noindex}}<meta name="searchOption" content="noindex">{{/_noindex}}
20
+ {{#_enableSearch}}<meta property="docfx:rel" content="{{_rel}}">{{/_enableSearch}}
21
+ {{#_enableNewTab}}<meta property="docfx:newtab" content="true">{{/_enableNewTab}}
22
+ </head>
@@ -0,0 +1,169 @@
1
+ #cover {
2
+ border: none;
3
+ padding-bottom: 150px;
4
+ width: 300px;
5
+ }
6
+
7
+ h1, h2, h3, h4, h5, h6 {
8
+ font-family: 'Segoe UI' !important;
9
+ page-break-after: avoid;
10
+ text-transform: none;
11
+ page-break-after: avoid !important;
12
+ color: black;
13
+ font-weight: 600;
14
+ letter-spacing: 0px;
15
+ }
16
+
17
+ h2 {
18
+ font-size: 24px;
19
+ }
20
+
21
+ h3 {
22
+ font-size: 18px;
23
+ }
24
+
25
+ h4 {
26
+ font-size: 16px;
27
+ }
28
+
29
+ h5 {
30
+ font-size: 14px;
31
+ }
32
+
33
+ h6 {
34
+ font-size: 12px;
35
+ }
36
+
37
+ .pb_after_avoid {
38
+ page-break-after: avoid !important;
39
+ }
40
+
41
+ html {
42
+ padding: 50px;
43
+ }
44
+
45
+ b, strong {
46
+ font-weight: 600 !important;
47
+ }
48
+
49
+ code, pre, pre code {
50
+ font-family: Consolas, monaco, monospace !important;
51
+ background-color: #f1f1f1 !important;
52
+ }
53
+
54
+ code {
55
+ color: #a94c9d;
56
+ border-radius: 3px;
57
+ padding: 2px 7px;
58
+ border: none;
59
+ font-size: .8em;
60
+ }
61
+
62
+ pre, pre code {
63
+ border: 0px;
64
+ border-radius: 6px;
65
+ padding: 15px
66
+ }
67
+
68
+ img {
69
+ border: solid;
70
+ border-width: thin;
71
+ border-color: #D7DDE4;
72
+ }
73
+
74
+ a {
75
+ color: #007bb8;
76
+ }
77
+
78
+ /* Tables */
79
+ table {
80
+ margin-top: 20px;
81
+ margin-bottom: 20px;
82
+ border-style: none !important;
83
+ }
84
+
85
+ table th {
86
+ text-transform: none;
87
+ letter-spacing: 0px;
88
+ font-weight: 600;
89
+ color: #006D9A;
90
+ font-size: 14px;
91
+ padding-left: 10px;
92
+ border-style: none !important;
93
+ }
94
+
95
+ table>tbody>tr>td,
96
+ table>tbody>tr>th,
97
+ table>tfoot>tr>td,
98
+ table>tfoot>tr>th {
99
+ vertical-align: top;
100
+ }
101
+
102
+ table>thead>tr>th {
103
+ padding: .75em;
104
+ padding-left: 1em;
105
+ border-bottom: 1px solid #D7DDE4 !important;
106
+ }
107
+
108
+ table>tbody>tr {
109
+ border-bottom: 1px solid #D7DDE4 !important;
110
+ }
111
+
112
+ table>tbody>tr>td {
113
+ border-bottom: 1px solid #D7DDE4 !important;
114
+ }
115
+
116
+ td:nth-of-type(1) {
117
+ font-weight: 700;
118
+ }
119
+
120
+ /* Alert callouts */
121
+ .INFO, .TIP, .NOTE, .WARNING, .IMPORTANT, .DANGER {
122
+ padding-left: 15px;
123
+ padding-right: 15px;
124
+ padding-bottom: 5px;
125
+ padding-top: 10px;
126
+ background: #E0F5FF;
127
+ border-radius: 6px;
128
+ color: black;
129
+ margin-top: 20px;
130
+ margin-top: 20px;
131
+ page-break-inside: avoid !important;
132
+ font-size: 1em;
133
+ line-height: 1.6;
134
+ }
135
+
136
+ .INFO h5, .TIP h5, .NOTE h5, .WARNING h5, .IMPORTANT h5, .DANGER h5 {
137
+ font-weight: 800;
138
+ font-size: .9em;
139
+ border-color: transparent;
140
+ color: black;
141
+ background: #E0F5FF;
142
+ margin-bottom: 0px;
143
+ }
144
+
145
+ .INFO h5:before, .TIP h5:before, .NOTE h5:before, .WARNING h5:before, .IMPORTANT h5:before, .DANGER h5:before {
146
+ font-family: 'FontAwesome';
147
+ font-weight: normal;
148
+ padding-right: 3px;
149
+ font-size: .9em;
150
+ line-height: 1.6;
151
+ color: black;
152
+ }
153
+
154
+ .INFO h5:before, .TIP h5:before, .NOTE h5:before {
155
+ content:"\f05a";
156
+ }
157
+
158
+ .WARNING h5:before, .IMPORTANT h5:before {
159
+ content:"\f071";
160
+ }
161
+
162
+ .DANGER h5:before{
163
+ content:"\f06a";
164
+ }
165
+
166
+ /* This code hides cross references in the web app. Corresponding code (.pdf-only) that hides cross references between PDF pages is in /templates/catalyst/styles/main.css. */
167
+ .web-only {
168
+ display:none;
169
+ }
@@ -0,0 +1,97 @@
1
+ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for
2
+ full license information.}} {{!master(layout/_master.tmpl)}}
3
+ <style>
4
+ .TocNavigationVertical {
5
+ margin-top: 24px;
6
+ font-family: 'Segoe UI';
7
+ margin-left: 25px;
8
+ }
9
+
10
+ .TocNavigationVertical ul {
11
+ list-style: none;
12
+ /* Remove list bullets */
13
+ padding: 0;
14
+ margin: 0;
15
+ font-size: 15px;
16
+ }
17
+
18
+ .TocNavigationVertical li {
19
+ margin-top: 10px;
20
+ padding-left: 16px;
21
+ }
22
+
23
+ .TocNavigationVertical li:before {
24
+ content: "";
25
+ /* Insert content that looks like bullets */
26
+ padding-right: 8px;
27
+ color: #007bb8;
28
+ }
29
+
30
+ .TocNavigationVertical a:link {
31
+ text-decoration: none;
32
+ color: #007bb8;
33
+ }
34
+
35
+ .TocNavigationVertical a:visited {
36
+ text-decoration: none;
37
+ color: #007bb8;
38
+ }
39
+
40
+ .TocHeader {
41
+ display: table;
42
+ height: 30px;
43
+ overflow: hidden;
44
+ background-color: transparent;
45
+ width: 100%;
46
+ }
47
+
48
+ .TocHeaderContainer {
49
+ display: table-cell;
50
+ vertical-align: middle;
51
+ }
52
+
53
+ h1 {
54
+ color: black;
55
+ font-family: 'Segoe UI';
56
+ display: inline-block;
57
+ vertical-align: middle;
58
+ line-height: normal;
59
+ margin-left: 25px;
60
+ }
61
+ </style>
62
+ <div class=" TocHeader">
63
+ <div class="TocHeaderContainer">
64
+ <h1>Contents</h1>
65
+ </div>
66
+ </div>
67
+ <div class="TocNavigationVertical" id="toc">
68
+ <ul class="tocBase tocLevel1">
69
+ {{#items}}
70
+ <li>
71
+ {{# href }}
72
+ <a class="normal" href="{{ href }}">{{ name }}</a> {{/ href }} {{^ href }}
73
+ <a class="normal slidedown" style="font-size: 18px; font-weight: 600">{{ name }}</a> {{/ href }} {{# items.0 }}
74
+ <ul class="tocLevel{{level}}">
75
+ {{/ items.0 }} {{#items}}
76
+ <li>
77
+ {{# href }}
78
+ <a class="normal" href="{{ href }}">{{ name }}</a> {{/ href }} {{^ href }}
79
+ <a class="normal slidedown">{{ name }}</a> {{/ href }} {{# items.0 }}
80
+ <ul class="tocLevel{{level}}">
81
+ {{/ items.0 }} {{#items}}
82
+ <li>
83
+ {{# href }}
84
+ <a class="normal" href="{{ href }}">{{ name }}</a> {{/ href }} {{^ href }}
85
+ <a class="normal slidedown">{{ name }}</a> {{/ href }}
86
+ </li>
87
+ {{/items}} {{# items.0 }}
88
+ </ul>
89
+ {{/ items.0 }}
90
+ </li>
91
+ {{/items}} {{# items.0 }}
92
+ </ul>
93
+ {{/ items.0 }}
94
+ </li>
95
+ {{/items}}
96
+ </ul>
97
+ </div>