@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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -7,10 +7,13 @@
|
|
|
7
7
|
<div class="contribution">
|
|
8
8
|
<ul class="nav">
|
|
9
9
|
<li>
|
|
10
|
-
<a class="contribution-link" href=
|
|
10
|
+
<a class="contribution-link" href={{_affixRequestFeature}}><span class="fa fa-comment" style="padding-right: 10px;"></span>Request a Feature</a>
|
|
11
11
|
</li>
|
|
12
12
|
<li>
|
|
13
|
-
<a class="contribution-link" href=
|
|
13
|
+
<a class="contribution-link" href={{_affixAskQuestion}}><span class="fa fa-users" style="padding-right: 10px;"></span>Ask a Question</a>
|
|
14
|
+
</li>
|
|
15
|
+
<li style="display: {{_showDownloadPDFs}};">
|
|
16
|
+
<a class="contribution-link" href={{_affixDownloadPDFs}} target="_blank"><span class="fa fa-file-pdf-o" style="padding-right: 10px;"></span>Download PDFs</a>
|
|
14
17
|
</li>
|
|
15
18
|
</ul>
|
|
16
19
|
</div>
|
|
@@ -5,16 +5,19 @@
|
|
|
5
5
|
<div class="docs-subnav-left" id="subnav-left">
|
|
6
6
|
<div class="docs-subnav-select-container">
|
|
7
7
|
<span class="docs-subnav-select-caret"><i class="fa fa-caret-down" aria-hidden="true"></i></span>
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
|
|
9
|
+
<!---Disable the version dropdown (below) by setting _showVersionDropdown to "none" in the docfx.json file. If the dropdown is enabled, set its unique ID (_versionDropdownID) in docfx.json and add the proper JavaScript function to populate it in the product.js file. --->
|
|
10
|
+
|
|
11
|
+
<select id="{{_versionDropdownID}}" class="docs-subnav-select"></select>
|
|
12
|
+
|
|
10
13
|
</div>
|
|
11
14
|
<span class="docs-subnav-breadcrumb-divider"><i class="fa fa-chevron-right" aria-hidden="true"></i></span><span class="docs-subnav-breadcrumb-home"><a href="{{_homePath}}"><i class="fa fa-home" aria-hidden="true"></i></a></span><span class="docs-subnav-breadcrumb-divider"><i class="fa fa-chevron-right" aria-hidden="true"></i></span>
|
|
12
15
|
<div class="docs-subnav-breadcrumb-current" id="breadcrumb">
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
<ul>
|
|
17
|
+
<li>{{_tocTitle}}</li>
|
|
18
|
+
</ul>
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
18
21
|
<div class="docs-subnav-right" id="subnav-right">
|
|
19
22
|
<div class="docs-search">
|
|
20
23
|
<span class="docs-subnav-search-icon"><i class="fa fa-search" aria-hidden="true"></i></span>
|
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
<div class="grad-bottom"></div>
|
|
5
5
|
<div class="footer">
|
|
6
6
|
<div class="container-fluid">
|
|
7
|
-
|
|
7
|
+
<!---Contribute links on right of footer are enabled by default. Disable by setting _showContributeLinks to "none" in docfx.json.--->
|
|
8
|
+
<span class="pull-right" style="display:{{_showContributeLinks}}">
|
|
8
9
|
{{#docurl}}<a href="{{docurl}}" class="contribution-link"><span class="fa fa-pencil" style="padding-right: 8px; font-size: 16px"></span>Edit this page</a>
|
|
9
10
|
{{/docurl}}
|
|
10
11
|
<span style="padding-left: 7px; padding-right: 10px;">|</span><a href="{{_authorInstructions}}">Contributor reference</a>
|
|
@@ -14,4 +15,4 @@
|
|
|
14
15
|
{{^_appFooter}}<span>Generated by <strong>DocFX</strong></span>{{/_appFooter}}
|
|
15
16
|
</div>
|
|
16
17
|
</div>
|
|
17
|
-
</footer>
|
|
18
|
+
</footer>
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
<link rel="stylesheet" href="{{_rel}}styles/lightbox.min.css">
|
|
17
17
|
<link rel="stylesheet" href="{{_rel}}open-sans.css">
|
|
18
18
|
<link rel="stylesheet" href="{{_rel}}styles/main.css">
|
|
19
|
+
<link rel="stylesheet" href="{{_rel}}product-styles/product.css">
|
|
19
20
|
<meta property="docfx:navrel" content="{{_navRel}}">
|
|
20
21
|
<meta property="docfx:tocrel" content="{{_tocRel}}">
|
|
21
22
|
{{#_noindex}}<meta name="searchOption" content="noindex">{{/_noindex}}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
{{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
|
|
2
|
-
<docs-navbar></docs-navbar>
|
|
3
|
-
<div id="navbar"></div>
|
|
2
|
+
<docs-navbar showdevmenu="{{_showDevMenu}}" hcclink="{{_hccLink}}" prodcatlink="{{_prodCatLink}}"></docs-navbar>
|
|
@@ -6,5 +6,6 @@
|
|
|
6
6
|
<script type="text/javascript" src="{{_rel}}styles/lightbox.min.js"></script>
|
|
7
7
|
<script type="text/javascript" src="{{_rel}}styles/main.js"></script>
|
|
8
8
|
<script type="text/javascript" src="{{_rel}}styles/docs-navbar.js"></script>
|
|
9
|
+
<script type="text/javascript" src="{{_rel}}product-styles/product.js"></script>
|
|
9
10
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-105743506-1"></script><script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-105743506-1');</script>
|
|
10
11
|
<script type="text/javascript"> var appInsights=window.appInsights||function(a){ function b(a){c[a]=function(){var b=arguments;c.queue.push(function(){c[a].apply(c,b)})}}var c={config:a},d=document,e=window;setTimeout(function(){var b=d.createElement("script");b.src=a.url||"https://az416426.vo.msecnd.net/scripts/a/ai.0.js",d.getElementsByTagName("script")[0].parentNode.appendChild(b)});try{c.cookie=d.cookie}catch(a){}c.queue=[];for(var f=["Event","Exception","Metric","PageView","Trace","Dependency"];f.length;)b("track"+f.pop());if(b("setAuthenticatedUserContext"),b("clearAuthenticatedUserContext"),b("startTrackEvent"),b("stopTrackEvent"),b("startTrackPage"),b("stopTrackPage"),b("flush"),!a.disableExceptionTracking){f="onerror",b("_"+f);var g=e[f];e[f]=function(a,b,d,e,h){var i=g&&g(a,b,d,e,h);return!0!==i&&c["_"+f](a,b,d,e,h),i}}return c }({ instrumentationKey:"dce977d4-d50b-4a48-8d09-4870ec84c79b" }); window.appInsights=appInsights,appInsights.queue&&0===appInsights.queue.length&&appInsights.trackPageView();</script>
|