@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
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
.qld__pre-footer {
|
|
2
|
-
.container-fluid {
|
|
3
|
-
display: flex;
|
|
4
|
-
flex-direction: column;
|
|
5
|
-
position: relative;
|
|
6
|
-
align-items: flex-start;
|
|
7
|
-
@include QLD-media(sm) {
|
|
8
|
-
flex-direction: row;
|
|
9
|
-
align-items: center;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
.qld__widgets__back_to_top {
|
|
13
|
-
position: relative;
|
|
14
|
-
top: 40px;
|
|
15
|
-
padding: 0;
|
|
16
|
-
margin: 0 auto 40px 0;
|
|
17
|
-
@include QLD-media(sm) {
|
|
18
|
-
margin-bottom: 0;
|
|
19
|
-
margin-right: 0;
|
|
20
|
-
margin-left: auto;
|
|
21
|
-
top: 0;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
2
|
-
// Widgets
|
|
3
|
-
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
4
|
-
|
|
5
|
-
.qld__widgets {
|
|
6
|
-
padding-right: 1rem;
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-direction: column;
|
|
9
|
-
z-index: 1;
|
|
10
|
-
max-width: 86rem;
|
|
11
|
-
margin-left: auto;
|
|
12
|
-
margin-right: auto;
|
|
13
|
-
padding-left: 2rem;
|
|
14
|
-
position: relative;
|
|
15
|
-
margin-bottom: 64px;
|
|
16
|
-
align-items: flex-end;
|
|
17
|
-
right: 0;
|
|
18
|
-
|
|
19
|
-
@include QLD-media(md) {
|
|
20
|
-
padding-right: 2rem;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.qld__btn--floating {
|
|
24
|
-
box-shadow: none;
|
|
25
|
-
display: inline-block;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.qld__widgets + .qld__footer {
|
|
30
|
-
// @include QLD-space(padding-bottom, 4unit);
|
|
31
|
-
|
|
32
|
-
@include QLD-media(xl) {
|
|
33
|
-
@include QLD-space(padding-bottom, 4unit);
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
38
|
-
// Back to top
|
|
39
|
-
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
40
|
-
|
|
41
|
-
@mixin QLD-BTT-arrow-colours($interact-colour) {
|
|
42
|
-
&:hover,
|
|
43
|
-
&:focus,
|
|
44
|
-
&:active {
|
|
45
|
-
&::after,
|
|
46
|
-
&::before {
|
|
47
|
-
border-color: $interact-colour;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.qld__body {
|
|
53
|
-
.qld__widgets__back_to_top > .qld__direction-link {
|
|
54
|
-
&:visited {
|
|
55
|
-
color: var(--QLD-color-light__link);
|
|
56
|
-
text-decoration: var(--QLD-color-light__underline);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
@include QLD-BTT-arrow-colours(var(--QLD-color-light__action--secondary-hover));
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.qld__body.qld__body--dark,
|
|
64
|
-
.qld__body.qld__body--dark-alt {
|
|
65
|
-
.qld__widgets__back_to_top > .qld__direction-link {
|
|
66
|
-
&:visited {
|
|
67
|
-
color: var(--QLD-color-dark__link);
|
|
68
|
-
text-decoration: var(--QLD-color-dark__underline);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
@include QLD-BTT-arrow-colours(var(--QLD-color-dark__action--secondary-hover));
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
body a.qld__btn.qld__btn--floating.qld__btn--back-to-top {
|
|
76
|
-
@include QLD-space(margin-top, 0.5unit);
|
|
77
|
-
background-color: $QLD-color-neutral--lightest;
|
|
78
|
-
border-color: $QLD-color-neutral--lightest;
|
|
79
|
-
color: var(--QLD-color-light__link);
|
|
80
|
-
padding: 0.5rem 1rem;
|
|
81
|
-
line-height: 0; // Aligns the span with the svg
|
|
82
|
-
|
|
83
|
-
span,
|
|
84
|
-
svg {
|
|
85
|
-
vertical-align: middle;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
svg {
|
|
89
|
-
color: var(--QLD-color-light__action--secondary);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
&:hover,
|
|
93
|
-
&:focus,
|
|
94
|
-
&:active {
|
|
95
|
-
background-color: var(--QLD-color-light__background--alt-shade);
|
|
96
|
-
border-color: var(--QLD-color-light__background--alt-shade);
|
|
97
|
-
color: var(--QLD-color-light__link);
|
|
98
|
-
text-decoration: none;
|
|
99
|
-
|
|
100
|
-
svg {
|
|
101
|
-
color: var(--QLD-color-light__action--secondary-hover);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
&:hover span {
|
|
106
|
-
text-decoration: underline;
|
|
107
|
-
text-decoration-thickness: 2px;
|
|
108
|
-
text-decoration-color: var(--QLD-color-light__link);
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
@media (prefers-contrast: more) {
|
|
112
|
-
svg {
|
|
113
|
-
color: revert;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
&:hover,
|
|
117
|
-
&:focus,
|
|
118
|
-
&:active {
|
|
119
|
-
svg {
|
|
120
|
-
color: revert;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
@media print {
|
|
127
|
-
.qld__widgets {
|
|
128
|
-
display: none !important;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
@@ -1,471 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"data": {
|
|
3
|
-
"assetid": "000",
|
|
4
|
-
"type_code": "site",
|
|
5
|
-
"version": "0",
|
|
6
|
-
"name": "Queensland Health Design System",
|
|
7
|
-
"short_name": "Queensland Health Design System",
|
|
8
|
-
"languages": "en",
|
|
9
|
-
"charset": "utf-8",
|
|
10
|
-
"created": "2021-01-01 0:0:0",
|
|
11
|
-
"created_userid": "54",
|
|
12
|
-
"updated": "2021-01-01 0:0:0",
|
|
13
|
-
"updated_userid": "111",
|
|
14
|
-
"published": "Never",
|
|
15
|
-
"published_userid": "111",
|
|
16
|
-
"status_changed": "2021-01-01 0:0:0",
|
|
17
|
-
"status_changed_userid": "54",
|
|
18
|
-
"thumbnail": "",
|
|
19
|
-
"attributes": {
|
|
20
|
-
"name": {
|
|
21
|
-
"value": "Design System Development"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"metadata": {
|
|
25
|
-
"pageType": {
|
|
26
|
-
"value": "landing"
|
|
27
|
-
},
|
|
28
|
-
"displayBreadcrumbs": {
|
|
29
|
-
"value": "true"
|
|
30
|
-
},
|
|
31
|
-
"displayLastUpdated": {
|
|
32
|
-
"value": "yes"
|
|
33
|
-
},
|
|
34
|
-
"dataSource": {
|
|
35
|
-
"value": ""
|
|
36
|
-
},
|
|
37
|
-
"detailsPage": {
|
|
38
|
-
"value": ""
|
|
39
|
-
},
|
|
40
|
-
"mapMarker": {
|
|
41
|
-
"value": ""
|
|
42
|
-
},
|
|
43
|
-
"bookOnlineUrl": {
|
|
44
|
-
"value": ""
|
|
45
|
-
},
|
|
46
|
-
"cardIcon": {
|
|
47
|
-
"value": ""
|
|
48
|
-
},
|
|
49
|
-
"cardDisplayHeader": {
|
|
50
|
-
"value": "false"
|
|
51
|
-
},
|
|
52
|
-
"cardDisplayHeadingAsLink": {
|
|
53
|
-
"value": "true"
|
|
54
|
-
},
|
|
55
|
-
"cardCta1TileIcon": {
|
|
56
|
-
"value": ""
|
|
57
|
-
},
|
|
58
|
-
"cardCta1TileText": {
|
|
59
|
-
"value": ""
|
|
60
|
-
},
|
|
61
|
-
"cardCta1TileBackground": {
|
|
62
|
-
"value": ""
|
|
63
|
-
},
|
|
64
|
-
"cardCta1TileURL": {
|
|
65
|
-
"value": ""
|
|
66
|
-
},
|
|
67
|
-
"cardCta2TileIcon": {
|
|
68
|
-
"value": ""
|
|
69
|
-
},
|
|
70
|
-
"cardCta2TileText": {
|
|
71
|
-
"value": ""
|
|
72
|
-
},
|
|
73
|
-
"cardCta2TileBackground": {
|
|
74
|
-
"value": ""
|
|
75
|
-
},
|
|
76
|
-
"cardCta2TileURL": {
|
|
77
|
-
"value": ""
|
|
78
|
-
},
|
|
79
|
-
"cardDisplayFooter": {
|
|
80
|
-
"value": "false"
|
|
81
|
-
},
|
|
82
|
-
"cardNewWindow": {
|
|
83
|
-
"value": "false"
|
|
84
|
-
},
|
|
85
|
-
"displayBanner": {
|
|
86
|
-
"value": "false"
|
|
87
|
-
},
|
|
88
|
-
"bannerBackground": {
|
|
89
|
-
"value": ""
|
|
90
|
-
},
|
|
91
|
-
"bannerImageBackground": {
|
|
92
|
-
"value": "18834"
|
|
93
|
-
},
|
|
94
|
-
"bannerSubTitle": {
|
|
95
|
-
"value": ""
|
|
96
|
-
},
|
|
97
|
-
"siteTitle": {
|
|
98
|
-
"value": "Queensland Health Design System"
|
|
99
|
-
},
|
|
100
|
-
"siteSubline": {
|
|
101
|
-
"value": "Design System"
|
|
102
|
-
},
|
|
103
|
-
"siteTitleUrl": {
|
|
104
|
-
"value": "/home.html"
|
|
105
|
-
},
|
|
106
|
-
"siteLogo": {
|
|
107
|
-
"value": "13636"
|
|
108
|
-
},
|
|
109
|
-
"siteLogoUrl": {
|
|
110
|
-
"value": ""
|
|
111
|
-
},
|
|
112
|
-
"siteLogoSecondary": {
|
|
113
|
-
"value": ""
|
|
114
|
-
},
|
|
115
|
-
"siteFavicon": {
|
|
116
|
-
"value": "15866"
|
|
117
|
-
},
|
|
118
|
-
"siteAppleTouch": {
|
|
119
|
-
"value": "15866"
|
|
120
|
-
},
|
|
121
|
-
"sitePreHeaderLogo": {
|
|
122
|
-
"value": "13637"
|
|
123
|
-
},
|
|
124
|
-
"sitePreHeaderText": {
|
|
125
|
-
"value": "Development Branch"
|
|
126
|
-
},
|
|
127
|
-
"sitePreHeaderURL": {
|
|
128
|
-
"value": "https:\/\/health.qld.gov.au"
|
|
129
|
-
},
|
|
130
|
-
"siteHeaderStyle": {
|
|
131
|
-
"value": ""
|
|
132
|
-
},
|
|
133
|
-
"showHomeIcon": {
|
|
134
|
-
"value": "true"
|
|
135
|
-
},
|
|
136
|
-
"showMegaMenu": {
|
|
137
|
-
"value": "true"
|
|
138
|
-
},
|
|
139
|
-
"showPageDescription": {
|
|
140
|
-
"value": "true"
|
|
141
|
-
},
|
|
142
|
-
"alertDisplay": {
|
|
143
|
-
"value": "true"
|
|
144
|
-
},
|
|
145
|
-
"alertLevel": {
|
|
146
|
-
"value": "critical"
|
|
147
|
-
},
|
|
148
|
-
"alertTitle": {
|
|
149
|
-
"value": "Alert Title"
|
|
150
|
-
},
|
|
151
|
-
"alertMessage": {
|
|
152
|
-
"value": "Alert Message"
|
|
153
|
-
},
|
|
154
|
-
"alertLinkTitle": {
|
|
155
|
-
"value": "Learn more"
|
|
156
|
-
},
|
|
157
|
-
"alertLinkURL": {
|
|
158
|
-
"value": "https:\/\/qhscb.squiz.cloud\/bsq\/covid-19"
|
|
159
|
-
},
|
|
160
|
-
"alertSourceComponent": {
|
|
161
|
-
"value": "15796"
|
|
162
|
-
},
|
|
163
|
-
"siteRepository": {
|
|
164
|
-
"value": "164"
|
|
165
|
-
},
|
|
166
|
-
"siteSearchAsset": {
|
|
167
|
-
"value": "15663"
|
|
168
|
-
},
|
|
169
|
-
"siteSearchUrl": {
|
|
170
|
-
"value": "http:\/\/qhscb.squiz.cloud\/search"
|
|
171
|
-
},
|
|
172
|
-
"siteBrand": {
|
|
173
|
-
"value": "dark"
|
|
174
|
-
},
|
|
175
|
-
"displayBackToTop": {
|
|
176
|
-
"value": ""
|
|
177
|
-
},
|
|
178
|
-
"footerSiteTitle": {
|
|
179
|
-
"value": "Queensland Health Design System"
|
|
180
|
-
},
|
|
181
|
-
"footerCTAHeading": {
|
|
182
|
-
"value": "Help us improve"
|
|
183
|
-
},
|
|
184
|
-
"footerCTALink": {
|
|
185
|
-
"value": "15788"
|
|
186
|
-
},
|
|
187
|
-
"footerCTALead": {
|
|
188
|
-
"value": "We are always looking for ways to improve our website."
|
|
189
|
-
},
|
|
190
|
-
"footerCTAContact": {
|
|
191
|
-
"value": ""
|
|
192
|
-
},
|
|
193
|
-
"footerLinks": {
|
|
194
|
-
"value": "[\"15780\",\"15781\",\"15782\",\"15783\",\"15784\",\"15785\",\"15786\"]"
|
|
195
|
-
},
|
|
196
|
-
"footerSocialLinksHeading": {
|
|
197
|
-
"value": "Follow us"
|
|
198
|
-
},
|
|
199
|
-
"footerSocialLinks": {
|
|
200
|
-
"value": "[\"15790\",\"15791\",\"15792\",\"15793\",\"15794\"]"
|
|
201
|
-
},
|
|
202
|
-
"footerOptionalExtraLinksHeading": {
|
|
203
|
-
"value": "Optional Column"
|
|
204
|
-
},
|
|
205
|
-
"footerOptionalSecondLinksList": {
|
|
206
|
-
"value": "[]"
|
|
207
|
-
},
|
|
208
|
-
"footerLogo": {
|
|
209
|
-
"value": "13637"
|
|
210
|
-
},
|
|
211
|
-
"footerCopyrightMessage": {
|
|
212
|
-
"value": "\u00a9 The State of Queensland 2021 (Queensland Health)"
|
|
213
|
-
},
|
|
214
|
-
"footerCopyrightLink": {
|
|
215
|
-
"value": ""
|
|
216
|
-
},
|
|
217
|
-
"footerAcknowledgements": {
|
|
218
|
-
"value": "Queensland Government acknowledges the Traditional Owners of the land and pays respect to Elders past, present and future."
|
|
219
|
-
},
|
|
220
|
-
"footerMetaMetadata": {
|
|
221
|
-
"value": "{\"footerLinks\": [{\"asset_assetid\":\"15780\",\"asset_short_name^escapequotes\":\"Copyright\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Ffooter-nav%2Fcopyright\",\"redirect_url^urlencode\":\"https%3A%2F%2Fwww.health.qld.gov.au%2Fglobal%2Fcopyright-statement\"},{\"asset_assetid\":\"15781\",\"asset_short_name^escapequotes\":\"Disclaimer\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Ffooter-nav%2Fdisclaimer\",\"redirect_url^urlencode\":\"https%3A%2F%2Fwww.health.qld.gov.au%2Fglobal%2Fdisclaimer\"},{\"asset_assetid\":\"15782\",\"asset_short_name^escapequotes\":\"Privacy\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Ffooter-nav%2Fprivacy\",\"redirect_url^urlencode\":\"https%3A%2F%2Fwww.health.qld.gov.au%2Fglobal%2Fprivacy\"},{\"asset_assetid\":\"15783\",\"asset_short_name^escapequotes\":\"Right to information\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Ffooter-nav%2Fright-to-information\",\"redirect_url^urlencode\":\"https%3A%2F%2Fwww.health.qld.gov.au%2Fsystem-governance%2Fcontact-us%2Faccess-info\"},{\"asset_assetid\":\"15784\",\"asset_short_name^escapequotes\":\"Accessibility\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Ffooter-nav%2Faccessibility\",\"redirect_url^urlencode\":\"https%3A%2F%2Fwww.qld.gov.au%2Fhelp%2Faccessibility%2F\"},{\"asset_assetid\":\"15785\",\"asset_short_name^escapequotes\":\"Jobs\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Ffooter-nav%2Fjobs\",\"redirect_url^urlencode\":\"https%3A%2F%2Fsmartjobs.qld.gov.au%2Fjobtools%2Fjncustomsearch.jobsearch%3Fin_organid%3D14904\"},{\"asset_assetid\":\"15786\",\"asset_short_name^escapequotes\":\"Other languages\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Ffooter-nav%2Fother-languages\",\"redirect_url^urlencode\":\"https%3A%2F%2Fwww.qld.gov.au%2Flanguages%2F\"}], \"footerOptionalSecondLinksList\": null, \"footerSocialLinks\": [{\"asset_assetid\":\"15790\",\"asset_short_name^escapequotes\":\"Facebook\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Fsocial-links%2Ffacebook\",\"redirect_url^urlencode\":\"https%3A%2F%2Fwww.facebook.com%2FQLDHealth\"},{\"asset_assetid\":\"15791\",\"asset_short_name^escapequotes\":\"Twitter\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Fsocial-links%2Ftwitter\",\"redirect_url^urlencode\":\"https%3A%2F%2Ftwitter.com%2Fqldhealth\"},{\"asset_assetid\":\"15792\",\"asset_short_name^escapequotes\":\"LinkedIn\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Fsocial-links%2Flinkedin\",\"redirect_url^urlencode\":\"http%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fqueensland-health\"},{\"asset_assetid\":\"15793\",\"asset_short_name^escapequotes\":\"Youtube\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Fsocial-links%2Fyoutube\",\"redirect_url^urlencode\":\"http%3A%2F%2Fwww.youtube.com%2Fuser%2FHealthierQueensland\"},{\"asset_assetid\":\"15794\",\"asset_short_name^escapequotes\":\"Instagram\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Fsocial-links%2Finstagram\",\"redirect_url^urlencode\":\"https%3A%2F%2Fwww.instagram.com%2Fqueenslandhealth%2F\"}], \"footerCTALink\": {\"asset_assetid\":\"15788\",\"asset_short_name^escapequotes\":\"Feedback\",\"asset_type_code\":\"page_redirect\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Ffooter%2Fcta%2Ffeedback\",\"redirect_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2Fcontact-us\"}, \"footerCopyrightLink\": null, \"footerLogo\": {\"asset_assetid\":\"13637\",\"asset_url^urlencode\":\"http%3A%2F%2Fqhscb.squiz.cloud%2F_designs%2Fimages%2Fheader-logo-qgov-light.svg\"} }"
|
|
222
|
-
},
|
|
223
|
-
"analyticsBodyCode": {
|
|
224
|
-
"value": ""
|
|
225
|
-
},
|
|
226
|
-
"analyticsHeadCode": {
|
|
227
|
-
"value": ""
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
},
|
|
231
|
-
"home": 0,
|
|
232
|
-
"children": [{
|
|
233
|
-
"asset_assetid": "14419",
|
|
234
|
-
"asset_url": "/components.html",
|
|
235
|
-
"asset_name": "Components",
|
|
236
|
-
"asset_short_name": "Components",
|
|
237
|
-
"children": [{
|
|
238
|
-
"asset_url": "/component-abstract.html",
|
|
239
|
-
"asset_name": "Abstract",
|
|
240
|
-
"asset_short_name": "Abstract",
|
|
241
|
-
"asset_metadata_shortDescription": "",
|
|
242
|
-
"children": []
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"asset_url": "/component-accordion.html",
|
|
246
|
-
"asset_name": "Accordion",
|
|
247
|
-
"asset_short_name": "Accordion",
|
|
248
|
-
"children": []
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"asset_url": "/component-banner_home.html",
|
|
252
|
-
"asset_name": "Banner Home",
|
|
253
|
-
"asset_short_name": "Banner Home",
|
|
254
|
-
"children": []
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
"asset_url": "/component-banner_two_heading.html",
|
|
258
|
-
"asset_name": "Banner Two Heading",
|
|
259
|
-
"asset_short_name": "Banner Two heading",
|
|
260
|
-
"children": []
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"asset_url": "/component-body.html",
|
|
264
|
-
"asset_name": "Body",
|
|
265
|
-
"asset_short_name": "Body",
|
|
266
|
-
"children": []
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
"asset_url": "/component-btn.html",
|
|
270
|
-
"asset_name": "Btn",
|
|
271
|
-
"asset_short_name": "Btn",
|
|
272
|
-
"children": []
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
"asset_url": "/component-callout.html",
|
|
276
|
-
"asset_name": "Callout",
|
|
277
|
-
"asset_short_name": "Callout",
|
|
278
|
-
"children": []
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
"asset_url": "/component-cards_with_icons.html",
|
|
282
|
-
"asset_name": "Cards With Icons",
|
|
283
|
-
"asset_short_name": "Cards With Icons",
|
|
284
|
-
"children": []
|
|
285
|
-
},
|
|
286
|
-
{
|
|
287
|
-
"asset_url": "/component-cards.html",
|
|
288
|
-
"asset_name": "Cards",
|
|
289
|
-
"asset_short_name": "Cards",
|
|
290
|
-
"children": []
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"asset_url": "/component-contact_details.html",
|
|
294
|
-
"asset_name": "Contact Details",
|
|
295
|
-
"asset_short_name": "Contact Details",
|
|
296
|
-
"children": []
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"asset_url": "/component-example.html",
|
|
300
|
-
"asset_name": "Example",
|
|
301
|
-
"asset_short_name": "Example",
|
|
302
|
-
"children": []
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
"asset_url": "/component-facility_map.html",
|
|
306
|
-
"asset_name": "Facility Map",
|
|
307
|
-
"asset_short_name": "Facility Map",
|
|
308
|
-
"children": []
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"asset_url": "/component-horizontal_rule.html",
|
|
312
|
-
"asset_name": "Horizontal Rule",
|
|
313
|
-
"asset_short_name": "Horizontal Rule",
|
|
314
|
-
"children": []
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
"asset_url": "/component-in_page_navigation.html",
|
|
318
|
-
"asset_name": "In Page Navigation",
|
|
319
|
-
"asset_short_name": "In Page Navigation",
|
|
320
|
-
"children": []
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"asset_url": "/component-mega_card.html",
|
|
324
|
-
"asset_name": "Mega Card",
|
|
325
|
-
"asset_short_name": "Mega Card",
|
|
326
|
-
"children": []
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
"asset_url": "/component-multi_column.html",
|
|
330
|
-
"asset_name": "Multi Column",
|
|
331
|
-
"asset_short_name": "Multi Column",
|
|
332
|
-
"children": []
|
|
333
|
-
},{
|
|
334
|
-
"asset_url": "/component-page_alert.html",
|
|
335
|
-
"asset_name": "Page Alert",
|
|
336
|
-
"asset_short_name": "Page Alert",
|
|
337
|
-
"children": []
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
"asset_url": "/component-pagination.html",
|
|
341
|
-
"asset_name": "Pagination",
|
|
342
|
-
"asset_short_name": "Pagination",
|
|
343
|
-
"children": []
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"asset_url": "/component-search_box.html",
|
|
347
|
-
"asset_name": "Search Box",
|
|
348
|
-
"asset_short_name": "Search Box",
|
|
349
|
-
"children": []
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
"asset_url": "/component-tag_list.html",
|
|
353
|
-
"asset_name": "Tag List",
|
|
354
|
-
"asset_short_name": "Tag List",
|
|
355
|
-
"children": []
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"asset_url": "/component-tag_list_linked.html",
|
|
359
|
-
"asset_name": "Tag List Linked",
|
|
360
|
-
"asset_short_name": "Tag List Linked",
|
|
361
|
-
"children": []
|
|
362
|
-
}
|
|
363
|
-
]
|
|
364
|
-
}, {
|
|
365
|
-
"asset_assetid": "14419",
|
|
366
|
-
"asset_url": "/site-templates.html",
|
|
367
|
-
"asset_name": "Site templates",
|
|
368
|
-
"asset_short_name": "Site templates",
|
|
369
|
-
"children": [{
|
|
370
|
-
"asset_url": "/component-banner.html",
|
|
371
|
-
"asset_name": "Banner",
|
|
372
|
-
"asset_short_name": "Banner",
|
|
373
|
-
"children": []
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"asset_url": "/component-breadcrumbs.html",
|
|
377
|
-
"asset_name": "Breadcrumbs",
|
|
378
|
-
"asset_short_name": "Breadcrumbs",
|
|
379
|
-
"children": []
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
"asset_url": "/component-footer.html",
|
|
383
|
-
"asset_name": "Footer",
|
|
384
|
-
"asset_short_name": "Footer",
|
|
385
|
-
"children": []
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"asset_url": "/component-global_alert.html",
|
|
389
|
-
"asset_name": "Global Alert",
|
|
390
|
-
"asset_short_name": "Global Alert",
|
|
391
|
-
"children": []
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
"asset_url": "/component-header.html",
|
|
395
|
-
"asset_name": "Header",
|
|
396
|
-
"asset_short_name": "Header",
|
|
397
|
-
"children": []
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"asset_url": "/component-internal_navigation.html",
|
|
401
|
-
"asset_name": "Internal Navigation",
|
|
402
|
-
"asset_short_name": "Internal Navigation",
|
|
403
|
-
"children": []
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"asset_url": "/component-main_navigation.html",
|
|
407
|
-
"asset_name": "Main Navigation",
|
|
408
|
-
"asset_short_name": "Main Navigation",
|
|
409
|
-
"children": []
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
"asset_url": "/component-mega_main_navigation.html",
|
|
413
|
-
"asset_name": "Mega Main Navigation",
|
|
414
|
-
"asset_short_name": "Mega Main Navigation",
|
|
415
|
-
"children": []
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"asset_url": "/component-tags_metadata.html",
|
|
419
|
-
"asset_name": "Tags Metadata",
|
|
420
|
-
"asset_short_name": "Tags Metadata",
|
|
421
|
-
"children": []
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
"asset_url": "/component-updated_date.html",
|
|
425
|
-
"asset_name": "Updated Date",
|
|
426
|
-
"asset_short_name": "Updated Date",
|
|
427
|
-
"children": []
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"asset_url": "/component-version.html",
|
|
431
|
-
"asset_name": "Version",
|
|
432
|
-
"asset_short_name": "Version",
|
|
433
|
-
"children": []
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"asset_url": "/component-widgets.html",
|
|
437
|
-
"asset_name": "Widgets",
|
|
438
|
-
"asset_short_name": "Widgets",
|
|
439
|
-
"children": []
|
|
440
|
-
}]
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
"asset_assetid": "14419",
|
|
444
|
-
"asset_url": "/inner.html",
|
|
445
|
-
"asset_name": "Inner",
|
|
446
|
-
"asset_short_name": "Inner",
|
|
447
|
-
"children": []
|
|
448
|
-
}],
|
|
449
|
-
"lineage": [{
|
|
450
|
-
"asset_assetid": "/home.html",
|
|
451
|
-
"asset_name": "Design System Development",
|
|
452
|
-
"asset_short_name": "Design System Development",
|
|
453
|
-
"asset_url": "/"
|
|
454
|
-
}, {
|
|
455
|
-
"asset_assetid": "14409",
|
|
456
|
-
"asset_name": "Design",
|
|
457
|
-
"asset_short_name": "Design",
|
|
458
|
-
"asset_url": "/"
|
|
459
|
-
}, {
|
|
460
|
-
"asset_assetid": "14419",
|
|
461
|
-
"asset_name": "Components",
|
|
462
|
-
"asset_short_name": "Components",
|
|
463
|
-
"asset_url": "https:\/\/qhscb.squiz.cloud\/design\/components"
|
|
464
|
-
}],
|
|
465
|
-
"top": {
|
|
466
|
-
"asset_assetid": "14409",
|
|
467
|
-
"asset_name": "Design",
|
|
468
|
-
"asset_short_name": "Design",
|
|
469
|
-
"asset_url": "/"
|
|
470
|
-
}
|
|
471
|
-
}
|