@qhealth-design-system/core 1.16.4 → 1.16.5
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 +2 -0
- package/package.json +1 -1
- package/src/components/_template/html/component-page.html +25 -31
- package/src/components/prefooter/css/component.scss +62 -0
- package/src/components/prefooter/js/manifest.json +9 -0
- package/src/data/current.json +3 -9
- package/src/html/component-a-z_listing.html +13 -41
- package/src/html/component-abstract.html +536 -40
- package/src/html/component-accordion.html +537 -41
- package/src/html/component-banner.html +537 -40
- package/src/html/component-banner_advanced.html +14 -41
- package/src/html/component-banner_basic.html +13 -40
- package/src/html/component-banner_intermediate.html +14 -41
- package/src/html/component-basic_search.html +10 -26
- package/src/html/component-body.html +541 -52
- package/src/html/component-breadcrumbs.html +538 -43
- package/src/html/component-btn.html +471 -69
- package/src/html/component-callout.html +536 -40
- package/src/html/component-card_feature.html +691 -308
- package/src/html/component-card_multi_action.html +651 -217
- package/src/html/component-card_no_action.html +163 -289
- package/src/html/component-card_single_action.html +1251 -324
- package/src/html/component-code.html +13 -40
- package/src/html/component-file_upload.html +13 -41
- package/src/html/component-footer.html +537 -41
- package/src/html/component-forms.html +4 -5
- package/src/html/component-global-elements.html +720 -152
- package/src/html/component-global_alert.html +536 -41
- package/src/html/component-header.html +537 -42
- package/src/html/component-horizontal_rule.html +459 -65
- package/src/html/component-in_page_navigation.html +544 -48
- package/src/html/component-internal_navigation.html +537 -41
- package/src/html/component-left_hand_navigation.html +13 -41
- package/src/html/component-loading_spinner.html +13 -42
- package/src/html/component-main_navigation.html +537 -41
- package/src/html/component-mega_main_navigation.html +537 -42
- package/src/html/component-multi_column.html +536 -40
- package/src/html/component-overflow_menu.html +12 -35
- package/src/html/component-page_alert.html +536 -40
- package/src/html/component-page_footer_info.html +583 -0
- package/src/html/component-pagination.html +459 -65
- package/src/html/component-promo_panel.html +13 -43
- package/src/html/component-tab.html +13 -41
- package/src/html/component-tag_list.html +495 -77
- package/src/html/component-toggle_tip.html +2 -3
- package/src/html/component-tool_tip.html +2 -3
- package/src/html/component-video_player.html +13 -41
- package/src/html/components.html +306 -88
- package/src/html/home.html +1807 -628
- package/src/html/index.html +9 -22
- package/src/html/inner-with-nav.html +551 -137
- package/src/html/inner.html +570 -59
- package/src/components/updated_date/css/component.scss +0 -24
- package/src/components/updated_date/js/manifest.json +0 -9
- package/src/components/widgets/css/component.scss +0 -130
- package/src/components/widgets/html/component.hbs +0 -8
- package/src/components/widgets/html/default.html +0 -3
- package/src/components/widgets/js/current.json +0 -471
- package/src/components/widgets/js/manifest.json +0 -9
- package/src/components/widgets/js/site.json +0 -350
- package/src/html/component-updated_date.html +0 -88
- package/src/html/component-widgets.html +0 -90
- /package/src/components/{updated_date → prefooter}/html/component.hbs +0 -0
package/src/html/index.html
CHANGED
|
@@ -19,17 +19,13 @@
|
|
|
19
19
|
|
|
20
20
|
<body class="qld__grid">
|
|
21
21
|
<!--noindex-->
|
|
22
|
-
${require('../components/header/html/component.hbs')({
|
|
23
|
-
"site":require('/src/data/site.json')
|
|
24
|
-
})}
|
|
22
|
+
${require('../components/header/html/component.hbs')({ "site":require('/src/data/site.json') })}
|
|
25
23
|
<!--endnoindex-->
|
|
26
|
-
${require('../components/mega_main_navigation/html/component.hbs')({
|
|
27
|
-
|
|
28
|
-
})}
|
|
29
|
-
|
|
24
|
+
${require('../components/mega_main_navigation/html/component.hbs')({ "site":require('/src/data/site.json') })}
|
|
25
|
+
|
|
30
26
|
<main class="main landing" role="main">
|
|
31
27
|
<h1 class="sr-only">Index</h1>
|
|
32
|
-
<section class="qld__body qld__body--full-width
|
|
28
|
+
<section class="qld__body qld__body--full-width">
|
|
33
29
|
<div class="container-fluid">
|
|
34
30
|
<div class="row">
|
|
35
31
|
<div class="col-lg-6">
|
|
@@ -86,7 +82,7 @@
|
|
|
86
82
|
<a href="sf_service_search.html">Service Search</a>
|
|
87
83
|
<ul>
|
|
88
84
|
<li>
|
|
89
|
-
<a href="sf_service_search_v2.html">Service Search -- V2</a>
|
|
85
|
+
<a href="sf_service_search_v2.html">Service Search -- V2</a>
|
|
90
86
|
</li>
|
|
91
87
|
</ul>
|
|
92
88
|
</li>
|
|
@@ -120,23 +116,14 @@
|
|
|
120
116
|
</div>
|
|
121
117
|
</div>
|
|
122
118
|
</section>
|
|
123
|
-
|
|
119
|
+
<!-- Page Footer Info -->
|
|
120
|
+
${require('../components/prefooter/html/component.hbs')({ "site":require('/src/data/site.json'), "current":require('/src/data/current.json') })}
|
|
124
121
|
</main>
|
|
125
122
|
<!-- END MAIN BODY -->
|
|
126
123
|
|
|
127
|
-
<!-- WIDGETS -->
|
|
128
|
-
${require('../components/widgets/html/component.hbs')({
|
|
129
|
-
"site":require('/src/data/site.json'),
|
|
130
|
-
"current":require('/src/data/current.json')
|
|
131
|
-
})}
|
|
132
|
-
|
|
133
124
|
<!-- FOOTER-->
|
|
134
|
-
${require('../components/footer/html/component.hbs')({
|
|
135
|
-
"site":require('/src/data/site.json')
|
|
136
|
-
})}
|
|
125
|
+
${require('../components/footer/html/component.hbs')({ "site":require('/src/data/site.json') })}
|
|
137
126
|
|
|
138
|
-
<div class="footer-scripts" id="footer_js" style="display: none !important
|
|
139
|
-
${require('../components/_global/html/scripts.html')}
|
|
140
|
-
</div>
|
|
127
|
+
<div class="footer-scripts" id="footer_js" style="display: none !important">${require('../components/_global/html/scripts.html')}</div>
|
|
141
128
|
</body>
|
|
142
129
|
</html>
|