@qhealth-design-system/core 1.3.1 → 1.3.3

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 CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## 1.3.3 - 2024-01-30
11
+
12
+ ## 1.3.2 - 2024-01-24
13
+
10
14
  ## 1.3.1 - 2024-01-22
11
15
 
12
16
  ## 1.3.0 - 2024-01-11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qhealth-design-system/core",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "",
5
5
  "licence": "MIT",
6
6
  "main": "index.js",
@@ -513,6 +513,7 @@
513
513
  position: relative;
514
514
  width: auto;
515
515
  height: auto;
516
+ white-space: nowrap;
516
517
  }
517
518
 
518
519
  }
@@ -547,7 +548,7 @@ a.qld__btn.qld__btn--close {
547
548
  min-width: auto;
548
549
  background-color: var(--QLD-color-light-background__shade);
549
550
  border-color: var(--QLD-color-light-background__shade);
550
-
551
+ position: relative;
551
552
  &:hover{
552
553
  background-color: var(--QLD-color-light-alt-background__shade);
553
554
  border-color: var(--QLD-color-light-alt-background__shade);
@@ -556,6 +557,10 @@ a.qld__btn.qld__btn--close {
556
557
  i,
557
558
  svg{
558
559
  color: $QLD-color-system-darkest;
560
+ position: absolute;
561
+ top: 50%;
562
+ left: 50%;
563
+ transform: translate(-50%, -50%);
559
564
  }
560
565
  }
561
566
 
@@ -50,25 +50,27 @@
50
50
  }
51
51
  }
52
52
 
53
- &__header{
53
+ .qld__modal__header{
54
54
  display: flex;
55
55
  align-items: center;
56
+ flex-direction: row;
57
+ justify-content: space-between;
58
+ gap: 1rem;
59
+ line-height: 1.5rem;
56
60
 
57
- & &-heading{
61
+ .qld__modal__header-heading{
58
62
  font-weight: bold;
59
- font-size: 1.5rem;
60
- line-height: 2rem;
61
- margin-right: 1.5rem;
63
+ margin-top: 0;
62
64
  color: var(--QLD-color-light-heading);
63
65
  word-break: break-all;
64
66
  }
65
67
 
66
68
  & &-icon{
67
- margin-right: 1rem;
69
+ flex: 1 0 auto;
68
70
  }
69
71
 
70
72
  .qld__btn.qld__btn--close{
71
- margin-left: auto;
73
+ flex: 1 0 auto;
72
74
  }
73
75
  }
74
76
 
@@ -9,7 +9,6 @@
9
9
  flex-direction: column;
10
10
 
11
11
  &-query{
12
-
13
12
  @include QLD-media(md, 'down') {
14
13
  .qld__display-lg{
15
14
  font-size: 1rem;
@@ -20,6 +19,7 @@
20
19
  font-style: italic;
21
20
  }
22
21
  }
22
+
23
23
  &-inner{
24
24
  width: 100%;
25
25
  display: flex;
@@ -31,12 +31,14 @@
31
31
 
32
32
  &-summary{
33
33
  @include QLD-space(font-size, .875unit);
34
- @include QLD-space(margin-top, 1unit);
34
+ margin-top: .5rem;
35
35
  @include QLD-space(margin-bottom, 1unit);
36
+
36
37
  @include QLD-media(md) {
37
38
  @include QLD-space(font-size, 1unit);
38
39
  }
39
40
  }
41
+
40
42
  &-summary-text{
41
43
  font-weight: bold;
42
44
  color: var(--QLD-color-light-heading);
@@ -53,6 +55,11 @@
53
55
  justify-content: end;
54
56
  align-items: center;
55
57
  margin-left: auto;
58
+ font-size: $QLD-font-size-mobile-xs;
59
+
60
+ @include QLD-media(md) {
61
+ font-size: $QLD-font-size-desktop-sm;
62
+ }
56
63
 
57
64
  &-text{
58
65
  font-weight: bold;
@@ -60,6 +67,7 @@
60
67
  @include QLD-space(padding-right, .75unit);
61
68
  white-space: nowrap;
62
69
  }
70
+
63
71
  select{
64
72
  max-width: 200px;
65
73
  }
@@ -69,18 +77,16 @@
69
77
  @include QLD-space(padding-top, 1.25unit);
70
78
  display: flex;
71
79
  flex-direction: column;
72
-
73
80
 
74
81
  @include QLD-media(md) {
75
82
  flex-direction: row;
76
83
 
77
84
  }
85
+
78
86
  @include QLD-media(lg) {
79
87
  @include QLD-space(padding-top, 1.5unit);
80
-
81
88
  }
82
89
 
83
-
84
90
  &-title{
85
91
  font-weight: bold;
86
92
  display: block;
@@ -94,15 +100,13 @@
94
100
  }
95
101
 
96
102
  }
103
+
97
104
  &-list{
98
105
  margin: 0;
99
106
  }
100
-
101
107
 
102
108
  }
103
109
 
104
-
105
-
106
110
  &__results &__result{
107
111
  margin: 0;
108
112
  @include QLD-space(padding-top, 1.5unit);
@@ -114,32 +118,30 @@
114
118
  }
115
119
 
116
120
  &-header{
117
- @include QLD-media(lg) {
118
- h4{
119
- @include QLD-space(padding-bottom, .5unit);
120
- }
121
-
121
+ h3{
122
+ margin-bottom: .5rem;
122
123
  }
124
+
123
125
  }
124
126
  &-inner{
125
127
  display: flex;
126
128
  flex-direction: row;
127
129
  flex-wrap: wrap;
128
130
  justify-content: space-between;
129
- @include QLD-space(padding-bottom, .5unit);
130
-
131
- @include QLD-media(lg) {
132
- @include QLD-space(padding-bottom, 0unit);
133
- }
131
+ position: relative;
134
132
  }
133
+
135
134
  &-type{
136
135
  display: flex;
137
136
  flex-direction: row;
138
137
  flex-wrap: wrap;
139
138
  width: 100%;
140
139
  @include QLD-space(font-size, .875unit);
140
+ margin-bottom: .5rem;
141
141
 
142
142
  @include QLD-media(lg) {
143
+ position: absolute;
144
+ right: 0;
143
145
  width: auto;
144
146
  flex-direction: column;
145
147
  @include QLD-space(padding-top, 0unit);
@@ -179,14 +181,14 @@
179
181
  }
180
182
 
181
183
  &-breadcrumbs{
184
+ margin-top: 0;
185
+ margin-bottom: 0.5rem;
182
186
 
183
- @include QLD-space(margin, .25unit 0);
184
-
185
- // @include QLD-media(lg) {
186
- // @include QLD-space(margin-top, .25unit);
187
- // }
188
187
  .qld__link-list{
189
- @include QLD-space(font-size, .875unit);
188
+ font-size: .875rem;
189
+ }
190
+ > .qld__link-list > li{
191
+ padding: 0;
190
192
  }
191
193
 
192
194
  li:after{
@@ -194,10 +196,10 @@
194
196
 
195
197
  }
196
198
  }
199
+
197
200
  *:not([type="hidden"]) &-summary{
198
201
  @include QLD-space(font-size, .875unit);
199
202
  @include QLD-space(margin-top, .5unit);
200
- // @include QLD-space(margin-bottom, .5unit);
201
203
  @include QLD-media(lg) {
202
204
  @include QLD-space(font-size, 1unit);
203
205
  }
@@ -257,20 +259,3 @@
257
259
  }
258
260
 
259
261
  }
260
-
261
- //Search Facets
262
- // .qld__search{
263
-
264
- // .qld__body &-link-list{
265
- // list-style-type: disc;
266
- // @include QLD-space(padding-top, 1unit);
267
- // @include QLD-space(padding-left, 1unit);
268
- // margin: 0;
269
- // li{
270
- // display: list-item;
271
- // }
272
- // }
273
- // }
274
-
275
-
276
-
@@ -21,7 +21,7 @@
21
21
 
22
22
  qld__banner__breadcrumbs qld__banner__breadcrumbs--mobile" aria-label="breadcrumb">
23
23
  <ul class="qld__link-list qld__link-list--inline">
24
- {{#with (itemAt ../current.lineage -2)}}
24
+ {{#with (itemAt current.lineage -2)}}
25
25
  {{#ifCond asset_type_code '!=' 'folder'}}
26
26
  <li>
27
27
  <a href="{{asset_url}}">{{#ifCond asset_is_site_asset '==' '1'}}Home{{else}}{{asset_short_name}}{{/ifCond}}</a>
@@ -195,6 +195,80 @@
195
195
  </div>
196
196
  {{/ifCond}}
197
197
  </div>
198
+ <div class="qld__search__result-type">
199
+ {{#if metaData.articleType}}
200
+ {{#ifCond metaData.articleType '==' 'news'}}
201
+ <span class="qld__search__result-type-name">
202
+ <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 0H4.5C3.65625 0 3 0.6875 3 1.5V12C3 12.5625 2.53125 13 2 13C1.4375 13 1 12.5625 1 12V2.5C1 2.25 0.75 2 0.5 2C0.21875 2 0 2.25 0 2.5V12C0 13.125 0.875 14 2 14H13.5C14.875 14 16 12.9062 16 11.5V1.5C16 0.6875 15.3125 0 14.5 0ZM15 11.5C15 12.3438 14.3125 13 13.5 13H3.71875C3.875 12.7188 4 12.375 4 12V1.5C4 1.25 4.21875 1 4.5 1H14.5C14.75 1 15 1.25 15 1.5V11.5ZM8.5 8.5H5.5C5.21875 8.5 5 8.75 5 9C5 9.28125 5.21875 9.5 5.5 9.5H8.5C8.75 9.5 9 9.28125 9 9C9 8.75 8.75 8.5 8.5 8.5ZM13.5 8.5H10.5C10.2188 8.5 10 8.75 10 9C10 9.28125 10.2188 9.5 10.5 9.5H13.5C13.75 9.5 14 9.28125 14 9C14 8.75 13.75 8.5 13.5 8.5ZM8.5 10.5H5.5C5.21875 10.5 5 10.75 5 11C5 11.2812 5.21875 11.5 5.5 11.5H8.5C8.75 11.5 9 11.2812 9 11C9 10.75 8.75 10.5 8.5 10.5ZM13.5 10.5H10.5C10.2188 10.5 10 10.75 10 11C10 11.2812 10.2188 11.5 10.5 11.5H13.5C13.75 11.5 14 11.2812 14 11C14 10.75 13.75 10.5 13.5 10.5ZM13 2H6C5.4375 2 5 2.46875 5 3V6C5 6.5625 5.4375 7 6 7H13C13.5312 7 14 6.5625 14 6V3C14 2.46875 13.5312 2 13 2ZM13 6H6V3H13V6Z" fill="#008635"/></svg>
203
+ News
204
+ </span>
205
+ {{/ifCond}}
206
+ {{#ifCond metaData.articleType '==' 'feature-article'}}
207
+ <span class="qld__search__result-type-name">
208
+ <svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 0.5V13.5C18 13.7812 17.75 14 17.5 14C17.2188 14 17 13.7812 17 13.5V13.1562L10.9062 11.625C10.625 13 9.4375 14 8 14C6.3125 14 5 12.6562 5 11C5 10.7188 5.03125 10.4375 5.09375 10.1875L1 9.15625V9.5C1 9.78125 0.75 10 0.5 10C0.21875 10 0 9.78125 0 9.5V4.5C0 4.25 0.21875 4 0.5 4C0.75 4 1 4.25 1 4.5V4.875L17 0.875V0.5C17 0.25 17.2188 0 17.5 0C17.75 0 18 0.25 18 0.5ZM17 12.125V1.90625L1 5.90625V8.125L17 12.125ZM8 13C8.96875 13 9.78125 12.3125 9.9375 11.4062L6.0625 10.4375C6 10.625 6 10.8125 6 11C6 12.125 6.875 13 8 13Z" fill="#008635"/></svg>
209
+ Feature Article
210
+ </span>
211
+ {{/ifCond}}
212
+ {{#ifCond metaData.articleType '==' 'podcast-series'}}
213
+ <span class="qld__search__result-type-name">
214
+ <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 9.75C5.96875 9.75 5 10.0312 5 11.125C5 12.1562 5.375 14.4062 5.625 15.2812C5.78125 15.875 6.40625 16 7 16C7.5625 16 8.1875 15.875 8.34375 15.2812C8.59375 14.375 9 12.1562 9 11.125C9 10.0312 8 9.75 7 9.75ZM7.40625 14.9688C7.21875 15.0312 6.78125 15.0312 6.59375 14.9688C6.34375 14.0625 6 12 6 11.125C6 10.625 8 10.625 8 11.125C8 12 7.625 14.0625 7.40625 14.9688ZM7 5C5.875 5 5 5.90625 5 7C5 8.125 5.875 9 7 9C8.09375 9 9 8.125 9 7C9 5.90625 8.09375 5 7 5ZM7 8C6.4375 8 6 7.5625 6 7C6 6.46875 6.4375 6 7 6C7.53125 6 8 6.46875 8 7C8 7.5625 7.53125 8 7 8ZM7 0C3.125 0 0 3.15625 0 7C0 9.1875 0.96875 11.1875 2.6875 12.5312C2.90625 12.7188 3.21875 12.6562 3.375 12.4375C3.5625 12.2188 3.5 11.9062 3.28125 11.75C1.8125 10.5938 1 8.875 1 7C1 3.71875 3.6875 1 7 1C10.2812 1 13 3.71875 13 7C13 8.875 12.1562 10.5938 10.6875 11.75C10.4688 11.9062 10.4062 12.2188 10.5938 12.4375C10.6875 12.5625 10.8438 12.625 11 12.625C11.0938 12.625 11.1875 12.5625 11.2812 12.5C13 11.1875 14 9.1875 14 7C14 3.15625 10.8438 0 7 0ZM11.5 7C11.5 4.53125 9.46875 2.5 7 2.5C4.5 2.5 2.5 4.53125 2.5 7C2.5 7.8125 2.6875 8.59375 3.09375 9.28125C3.21875 9.5 3.53125 9.59375 3.78125 9.4375C4 9.3125 4.09375 9 3.9375 8.75C3.65625 8.25 3.5 7.625 3.5 7C3.5 5.09375 5.0625 3.5 7 3.5C8.90625 3.5 10.5 5.09375 10.5 7C10.5 7.625 10.3125 8.25 10.0312 8.75C9.875 9 9.96875 9.3125 10.1875 9.4375C10.2812 9.5 10.375 9.5 10.4375 9.5C10.625 9.5 10.7812 9.4375 10.875 9.28125C11.2812 8.59375 11.5 7.8125 11.5 7Z" fill="#008635"/></svg>
215
+ Podcast
216
+ </span>
217
+ {{/ifCond}}
218
+ {{!-- <span class="qld__tag qld__tag--info">Read Time Here</span> --}}
219
+ {{/if}}
220
+ {{#if fileType}}
221
+ {{#ifCond fileType '==' 'pdf'}}
222
+ <span class="qld__search__result-type-name">
223
+ <svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 14C12 15.125 11.0938 16 10 16H2C0.875 16 0 15.125 0 14H1C1 14.5625 1.4375 15 2 15H10C10.5312 15 11 14.5625 11 14H12ZM7.5 6C6.65625 6 6 5.34375 6 4.5V1H2C1.4375 1 1 1.46875 1 2V7H0V2C0 0.90625 0.875 0 2 0H6.875C7.25 0 7.65625 0.1875 7.9375 0.46875L11.5312 4.0625C11.8125 4.34375 12 4.75 12 5.125V7H11V6H7.5ZM10.8438 4.78125L7.21875 1.15625C7.15625 1.09375 7.0625 1.0625 7 1.03125V4.5C7 4.78125 7.21875 5 7.5 5H10.9688C10.9375 4.9375 10.9062 4.84375 10.8438 4.78125ZM2.75 8C3.6875 8 4.5 8.8125 4.5 9.75C4.5 10.7188 3.6875 11.5 2.75 11.5H2.5V12.5C2.5 12.7812 2.25 13 2 13C1.71875 13 1.5 12.7812 1.5 12.5V8.5C1.5 8.25 1.71875 8 2 8H2.75ZM3.5 9.75C3.5 9.34375 3.15625 9 2.75 9H2.5V10.5H2.75C3.15625 10.5 3.5 10.1875 3.5 9.75ZM5 8.5C5 8.25 5.21875 8 5.5 8H6.25C7.0625 8 7.75 8.6875 7.75 9.5V11.5C7.75 12.3438 7.0625 13 6.25 13H5.5C5.21875 13 5 12.7812 5 12.5V8.5ZM6 12H6.25C6.5 12 6.75 11.7812 6.75 11.5V9.5C6.75 9.25 6.5 9 6.25 9H6V12ZM10.5 8C10.75 8 11 8.25 11 8.5C11 8.78125 10.75 9 10.5 9H9.5V10H10.5C10.75 10 11 10.25 11 10.5C11 10.7812 10.75 11 10.5 11H9.5V12.5C9.5 12.7812 9.25 13 9 13C8.71875 13 8.5 12.7812 8.5 12.5V8.5C8.5 8.25 8.71875 8 9 8H10.5Z" fill="#008635"/></svg>
224
+ Document
225
+ </span>
226
+ <span class="qld__tag qld__tag--info">{{toUpperCase fileType}} {{sizeFormat fileSize}}</span>
227
+ {{/ifCond}}
228
+ {{#ifCond fileType '==' 'docx'}}
229
+ <span class="qld__search__result-type-name">
230
+ <svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.53125 7.84375L4.15625 11.2812L3.46875 7.90625C3.40625 7.65625 3.15625 7.46875 2.875 7.53125C2.625 7.5625 2.4375 7.84375 2.5 8.125L3.5 13.125C3.53125 13.3438 3.71875 13.5 3.9375 13.5C4.15625 13.5312 4.375 13.4062 4.4375 13.1875L6 9.375L7.53125 13.1875C7.59375 13.4062 7.78125 13.5 8 13.5C8 13.5 8 13.5 8.03125 13.5C8.25 13.5 8.4375 13.3438 8.46875 13.125L9.46875 8.125C9.53125 7.84375 9.34375 7.59375 9.09375 7.53125C8.8125 7.46875 8.5625 7.65625 8.5 7.90625L7.8125 11.2812L6.4375 7.84375C6.28125 7.4375 5.6875 7.4375 5.53125 7.84375ZM11.4062 3.9375L8.0625 0.59375C7.6875 0.21875 7.1875 0 6.65625 0H2C0.875 0 0 0.90625 0 2V14C0 15.125 0.875 16 2 16H10C11.0938 16 12 15.125 12 14V5.34375C12 4.8125 11.7812 4.3125 11.4062 3.9375ZM7 1.09375C7.125 1.125 7.25 1.1875 7.375 1.3125L10.6875 4.625C10.8125 4.75 10.875 4.875 10.9062 5H7.5C7.21875 5 7 4.78125 7 4.5V1.09375ZM11 14C11 14.5625 10.5312 15 10 15H2C1.4375 15 1 14.5625 1 14V2C1 1.46875 1.4375 1 2 1H6V4.5C6 5.34375 6.65625 6 7.5 6H11V14Z" fill="#008635"/></svg>
231
+ Document
232
+ </span>
233
+ <span class="qld__tag qld__tag--info">{{toUpperCase fileType}} {{sizeFormat fileSize}}</span>
234
+ {{/ifCond}}
235
+ {{#ifCond fileType '==' 'xls'}}
236
+ <span class="qld__search__result-type-name">
237
+ <svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.4062 3.9375L8.0625 0.59375C7.6875 0.21875 7.1875 0 6.65625 0H2C0.875 0 0 0.90625 0 2V14C0 15.125 0.875 16 2 16H10C11.0938 16 12 15.125 12 14V5.34375C12 4.8125 11.7812 4.3125 11.4062 3.9375ZM7 1.09375C7.125 1.125 7.25 1.1875 7.375 1.3125L10.6875 4.625C10.8125 4.75 10.875 4.875 10.9062 5H7.5C7.21875 5 7 4.78125 7 4.5V1.09375ZM11 14C11 14.5625 10.5312 15 10 15H2C1.4375 15 1 14.5625 1 14V2C1 1.46875 1.4375 1 2 1H6V4.5C6 5.34375 6.65625 6 7.5 6H11V14ZM2 8V13C2 13.5625 2.4375 14 3 14H9C9.53125 14 10 13.5625 10 13V8C10 7.46875 9.53125 7 9 7H3C2.4375 7 2 7.46875 2 8ZM4 13H3V12H4V13ZM4 11H3V10H4V11ZM7 13H5V12H7V13ZM7 11H5V10H7V11ZM9 13H8V12H9V13ZM9 11H8V10H9V11ZM9 9H3V8H9V9Z" fill="#008635"/></svg>
238
+ Document
239
+ </span>
240
+ <span class="qld__tag qld__tag--info">{{toUpperCase fileType}} {{sizeFormat fileSize}}</span>
241
+ {{/ifCond}}
242
+ {{/if}}
243
+ {{#ifCond collection 'contains' 'service-finder'}}
244
+ {{#ifCond collection 'contains' '__facilities'}}
245
+ <span class="qld__search__result-type-name">
246
+ <svg width="20" height="20" viewBox="0 0 20 20" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><path d="M2.268,9.158l-1.423,1.252c-0.21,0.185 -0.531,0.165 -0.716,-0.046c-0.186,-0.21 -0.165,-0.531 0.045,-0.716l9.507,-8.37c0.192,-0.169 0.48,-0.169 0.672,0l9.472,8.365c0.21,0.185 0.23,0.506 0.045,0.716c-0.186,0.21 -0.507,0.23 -0.717,0.045l-1.385,-1.223l-0,6.984c-0,1.502 -1.22,2.721 -2.721,2.721c-0,-0 -10.058,-0 -10.058,-0c-1.502,-0 -2.721,-1.219 -2.721,-2.721l-0,-7.007Zm1.014,-0.893l6.734,-5.929l6.737,5.949l-0,3.144l-0.001,-0l0,4.736c0,0.941 -0.764,1.705 -1.705,1.705l-10.058,0c-0.941,0 -1.706,-0.764 -1.706,-1.705l0,-4.736l-0.001,-0l-0,-3.164Z" style="fill:#008635;"/><path d="M8.107,9.236l-1.54,-0c-0.52,-0 -0.942,0.422 -0.942,0.942l-0,1.906c-0,0.52 0.422,0.943 0.942,0.943c0,-0 1.54,-0 1.54,-0c0,-0 0,1.545 0,1.545c0,0.521 0.423,0.943 0.943,0.943c-0,-0 1.905,-0 1.905,-0c0.521,-0 0.943,-0.422 0.943,-0.943c-0,0 -0,-1.545 -0,-1.545c-0,-0 1.592,-0 1.592,-0c0.52,-0 0.943,-0.423 0.943,-0.943c-0,0 -0,-1.906 -0,-1.906c-0,-0.52 -0.423,-0.942 -0.943,-0.942c0,-0 -1.592,-0 -1.592,-0c-0,-0 -0,-1.587 -0,-1.587c-0,-0.52 -0.422,-0.943 -0.943,-0.943c0,0 -1.905,0 -1.905,0c-0.52,0 -0.943,0.423 -0.943,0.943l0,1.587Zm2.775,-1.514l-1.759,-0l-0,2.529l-2.483,0l0,1.76l2.483,0l-0,2.488l1.759,0l0,-2.488l2.535,0l0,-1.76l-2.535,0l0,-2.529Z" style="fill:#008635;"/></svg>
247
+ Hospital
248
+ </span>
249
+ {{else}}
250
+ <span class="qld__search__result-type-name">
251
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><mask id="mask0_2774_246598" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="2" y="3" width="16" height="13"><path d="M16.125 3.625H3.875C2.89062 3.625 2.125 4.41797 2.125 5.375V14.125C2.125 15.1094 2.89062 15.875 3.875 15.875H16.125C17.082 15.875 17.875 15.1094 17.875 14.125V5.375C17.875 4.41797 17.082 3.625 16.125 3.625ZM4.75 15H3.875C3.38281 15 3 14.6172 3 14.125V5.375C3 4.91016 3.38281 4.5 3.875 4.5H4.75V15ZM14.375 15H5.625V4.5H14.375V15ZM17 14.125C17 14.6172 16.5898 15 16.125 15H15.25V4.5H16.125C16.5898 4.5 17 4.91016 17 5.375V14.125ZM7.8125 10.625H9.125V11.9375C9.125 12.1836 9.31641 12.375 9.5625 12.375H10.4375C10.6562 12.375 10.875 12.1836 10.875 11.9375V10.625H12.1875C12.4062 10.625 12.625 10.4336 12.625 10.1875V9.3125C12.625 9.09375 12.4062 8.875 12.1875 8.875H10.875V7.5625C10.875 7.34375 10.6562 7.125 10.4375 7.125H9.5625C9.31641 7.125 9.125 7.34375 9.125 7.5625V8.875H7.8125C7.56641 8.875 7.375 9.09375 7.375 9.3125V10.1875C7.375 10.4336 7.56641 10.625 7.8125 10.625Z" fill="black"/></mask><g mask="url(#mask0_2774_246598)"><rect width="20" height="20" fill="#008635"/></g></svg>
252
+ Health Service
253
+ </span>
254
+ {{/ifCond}}
255
+ {{/ifCond}}
256
+ {{#if metaData.format}}
257
+ {{#ifCond metaData.format 'contains' 'video'}}
258
+ <span class="qld__search__result-type-name">
259
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" aria-hidden="true" focusable="false" width="20" height="20" role="img"><path fill="currentColor" d="M558.8 99.64c-10.59-5.484-23.37-4.76-33.15 2.099l-102.8 72.04c-7.25 5.062-9 15.05-3.938 22.28C423.1 203.3 433.9 205 441.2 200L544 128v255.9L441.2 312c-7.266-5.047-17.22-3.312-22.28 3.938c-5.062 7.234-3.312 17.22 3.938 22.28l102.8 71.98c5.5 3.844 11.94 5.786 18.38 5.786c5.047 0 10.12-1.203 14.78-3.625C569.4 406.8 576 395.1 576 383.1V128C576 116 569.4 105.2 558.8 99.64zM320 64H64C28.65 64 0 92.65 0 128v256c0 35.35 28.65 64 64 64h256c35.35 0 64-28.65 64-64V128C384 92.65 355.3 64 320 64zM352 384c0 17.64-14.36 32-32 32H64c-17.64 0-32-14.36-32-32V128c0-17.64 14.36-32 32-32h256c17.64 0 32 14.36 32 32V384z"/></svg>
260
+ Video
261
+ </span>
262
+ {{!-- <span class="qld__tag qld__tag--info">Video Length Here</span> --}}
263
+ {{else ifCond metaData.format 'contains' 'audio'}}
264
+ <span class="qld__search__result-type-name">
265
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" aria-hidden="true" focusable="false" width="20" height="20" role="img"><path fill="currentColor" d="M224 312c-32.88 0-64 8.625-64 43.75c0 33.13 12.88 104.5 20.62 132.8C185.8 507.7 205.1 512 224 512s38.25-4.375 43.38-23.38C275.1 459.9 288 388.8 288 355.8C288 320.6 256.9 312 224 312zM237 478.5c-6 2-20 2-26 0C203.5 449.5 192 383.4 192 355.8c0-16.25 64-16.38 64 0C256 383.4 244.5 449.6 237 478.5zM224 160C188.6 160 160 188.6 160 224s28.62 64 64 64s64-28.62 64-64S259.4 160 224 160zM224 256C206.4 256 192 241.6 192 224s14.38-32 32-32s32 14.38 32 32S241.6 256 224 256zM224 0C100.5 0 0 100.5 0 224c0 69.39 31.41 133.8 86.16 176.6c6.875 5.406 16.97 4.203 22.44-2.75c5.469-6.969 4.219-17.02-2.75-22.47C58.91 338.7 32 283.5 32 224c0-105.9 86.13-192 192-192s192 86.13 192 192c0 59.48-26.91 114.7-73.84 151.4c-6.969 5.453-8.219 15.5-2.75 22.47C342.6 401.9 347.3 403.1 352 403.1c3.469 0 6.938-1.109 9.844-3.391C416.6 357.8 448 293.4 448 224C448 100.5 347.5 0 224 0zM368 224c0-79.41-64.59-144-144-144S80 144.6 80 224c0 25.34 6.656 50.25 19.28 72.02c4.438 7.672 14.25 10.2 21.88 5.828c7.625-4.422 10.25-14.22 5.812-21.86C117.2 263.1 112 243.7 112 224c0-61.75 50.25-112 112-112s112 50.25 112 112c0 19.72-5.188 39.08-14.97 55.98c-4.438 7.641-1.812 17.44 5.812 21.86C329.4 303.3 332.1 304 334.9 304c5.5 0 10.88-2.859 13.84-7.984C361.3 274.3 368 249.3 368 224z"/></svg>
266
+ Audio
267
+ </span>
268
+ {{!-- <span class="qld__tag qld__tag--info">Audio Length Here</span> --}}
269
+ {{/ifCond}}
270
+ {{/if}}
271
+ </div>
198
272
  </div>
199
273
  <p class="qld__search__result-summary">
200
274
  {{#ifCond collection 'contains' '-web'}}
@@ -529,7 +529,7 @@
529
529
  "asset_short_name": "Design",
530
530
  "asset_is_site_asset": "0",
531
531
  "asset_url": "/",
532
- "asset_type_code": "folder"
532
+ "asset_type_code": "site"
533
533
  },
534
534
  {
535
535
  "asset_assetid": "14419",
@@ -179,6 +179,14 @@
179
179
  "default_value": true,
180
180
  "use_default": true
181
181
  },
182
+ "siteSearchRestAsset": {
183
+ "value": "",
184
+ "fieldid": "72367",
185
+ "type": "metadata_field_related_asset",
186
+ "is_contextable": true,
187
+ "default_value": false,
188
+ "use_default": true
189
+ },
182
190
  "siteBackToTopShow": {
183
191
  "value": "true",
184
192
  "fieldid": "72370",
@@ -91,7 +91,7 @@
91
91
  <div class="qld__modal__underlay"></div>
92
92
  <div class="qld__modal__inner">
93
93
  <div class="qld__modal__header">
94
- <i class="qld__modal__header-icon far fa-share-alt" aria-hidden="true"></i><span class="qld__modal__header-heading">Model Header</span>
94
+ <i class="qld__modal__header-icon qld__icon qld__icon--md far fa-share-alt" aria-hidden="true"></i><span class="qld__modal__header-heading qld__display-lg">Model Header</span>
95
95
  <button class="qld__btn qld__btn--close" data-action="close">
96
96
  <span class="sr-only"> Close modal </span>
97
97
  <i class="fal fa-times" aria-hidden="true"></i>