@qld-gov-au/qgds-bootstrap5 1.0.20 → 1.0.21
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/dist/assets/css/qld.bootstrap.css +1 -1
- package/dist/assets/css/qld.bootstrap.css.map +2 -2
- package/dist/assets/js/handlebars.helpers.bundle.js +1 -1
- package/dist/assets/js/handlebars.helpers.bundle.js.map +3 -3
- package/dist/assets/js/handlebars.helpers.js +17 -5
- package/dist/assets/js/handlebars.init.min.js +127 -63
- package/dist/assets/js/handlebars.init.min.js.map +3 -3
- package/dist/components/bs5/footer/footer.hbs +88 -24
- package/dist/components/bs5/head/head.hbs +1 -1
- package/dist/components/handlebars.helpers.js +17 -5
- package/dist/components/handlebars.init.min.js +127 -63
- package/dist/components/handlebars.init.min.js.map +3 -3
- package/dist/sample-data/footer/footer-usingDefaults.data.json +3 -0
- package/dist/sample-data/footer/footer.data.json +29 -72
- package/package.json +14 -14
- package/src/components/bs5/breadcrumbs/breadcrumbs.scss +101 -98
- package/src/components/bs5/contentFooter/contentFooter.stories.js +6 -15
- package/src/components/bs5/footer/footer-usingDefaults.data.json +3 -0
- package/src/components/bs5/footer/footer.data.json +29 -72
- package/src/components/bs5/footer/footer.hbs +88 -24
- package/src/components/bs5/footer/footer.stories.js +104 -3
- package/src/js/handlebars.helpers.js +17 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";(()=>{function l(C){C.registerHelper("contains",function(t,a
|
|
1
|
+
"use strict";(()=>{function l(C){C.registerHelper("contains",function(t,i,a){return t=C.escapeExpression(t),i=C.escapeExpression(i),i.indexOf(t)>-1?a.fn(this):a.inverse(this)}),C.registerHelper("ifCond",function(t,i,a,e){switch(i){case"==":return t==a?e.fn(this):e.inverse(this);case"===":return t===a?e.fn(this):e.inverse(this);case"!=":return t!=a?e.fn(this):e.inverse(this);case"!==":return t!==a?e.fn(this):e.inverse(this);case"<":return t<a?e.fn(this):e.inverse(this);case"<=":return t<=a?e.fn(this):e.inverse(this);case">":return t>a?e.fn(this):e.inverse(this);case">=":return t>=a?e.fn(this):e.inverse(this);case"&&":return t&&a?e.fn(this):e.inverse(this);case"||":return t||a?e.fn(this):e.inverse(this);case"contains":return typeof t=="string"&&typeof a=="string"?t.toLowerCase().indexOf(a.toLowerCase())>=0?e.fn(this):e.inverse(this):e.inverse(this);default:return e.inverse(this)}}),C.registerHelper("isType",function(t,i,a){return t===i?a.fn(this):a.inverse(this)}),C.registerHelper("ifAny",function(...t){let i=t.pop();return t.some(a=>!!a)?i.fn(this):i.inverse(this)}),C.registerHelper("now",function(){return new Date().toISOString()}),C.registerHelper("formatDate",function(t,i,a){let e;if(t&&(e=new Date(t)),isNaN(e)&&i&&(e=new Date(i)),isNaN(e))return"Invalid Date";var z=["January","February","March","April","May","June","July","August","September","October","November","December"],X=e.getDate(),s=z[e.getMonth()],r=e.getFullYear();switch(a){case"YYYY":return`${r}`;case"MMMM YYYY":return`${s} ${r}`;default:return`${X} ${s} ${r}`}}),C.registerHelper("formatDateOrToday",function(t,i){let a=t||new Date().toISOString();return C.helpers.formatDate(t,a,i)})}typeof Handlebars!="undefined"&&l(Handlebars);var n=`<!-- QGDS Component: Accordion -->
|
|
2
2
|
<div class="accordion-group">
|
|
3
3
|
|
|
4
4
|
{{#if toggleAll}}
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
</div>
|
|
27
27
|
|
|
28
28
|
</div>
|
|
29
|
-
`;var
|
|
29
|
+
`;var d=`<!-- QGDS Partial: banner -->
|
|
30
30
|
|
|
31
31
|
<div class="container-fluid qld-banner {{variantClass}}">
|
|
32
32
|
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
|
|
55
55
|
<div class="banner-image {{image.classes}}" style="--banner-background-img:url({{image.url}})"></div>
|
|
56
56
|
|
|
57
|
-
</div>`;var
|
|
57
|
+
</div>`;var c=`<!-- QGDS Component: Blockquote -->
|
|
58
58
|
|
|
59
59
|
<figure class="blockquote {{classes}}">
|
|
60
60
|
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
{{cite-text}}
|
|
67
67
|
</figcaption>
|
|
68
68
|
|
|
69
|
-
</figure>`;var
|
|
69
|
+
</figure>`;var p=`<nav aria-label="breadcrumb">
|
|
70
70
|
<ol class="breadcrumb">
|
|
71
71
|
{{#each breadcrumbs}}
|
|
72
72
|
{{! print all breadcrumbs except the current page as links}}
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
{{/each}}
|
|
83
83
|
</ol>
|
|
84
84
|
</nav>
|
|
85
|
-
`;var
|
|
85
|
+
`;var f=`<!-- breadcrumbs-->
|
|
86
86
|
<div class="container-fluid alt">
|
|
87
87
|
<div class="container">
|
|
88
88
|
<div class="row">
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
</div>
|
|
93
93
|
</div>
|
|
94
94
|
</div>
|
|
95
|
-
</div>`;var
|
|
95
|
+
</div>`;var u=`{{#unless islink}}
|
|
96
96
|
<button class="btn {{variantClass}}" onclick="{{{onclick}}}" {{#if isdisabled}}disabled{{/if}} {{#if arialabel}}aria-label="{{arialabel}}"{{/if}} {{{dataatts}}}>
|
|
97
97
|
{{#if iconClass}}
|
|
98
98
|
{{#ifCond iconPosition '==' 'leading'}}
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
{{/ifCond}}
|
|
123
123
|
{{/if}}
|
|
124
124
|
</a>
|
|
125
|
-
{{/unless }}`;var
|
|
125
|
+
{{/unless }}`;var h=`<!-- QGDS Component: Callout -->
|
|
126
126
|
|
|
127
127
|
<div class="callout">
|
|
128
128
|
{{#if title}}
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
{{/if}}
|
|
131
131
|
<div class="callout-text">{{{content}}}</div>
|
|
132
132
|
</div>
|
|
133
|
-
`;var
|
|
133
|
+
`;var L=`<!-- QGDS Partial: card -->
|
|
134
134
|
|
|
135
135
|
<div class="col{{#if feature}}-md-12 col-lg-12{{/if}}">
|
|
136
136
|
|
|
@@ -196,19 +196,19 @@
|
|
|
196
196
|
</div>
|
|
197
197
|
|
|
198
198
|
</div>
|
|
199
|
-
`;var
|
|
199
|
+
`;var v=`<dl class="qld-content-dates">
|
|
200
200
|
<dt>Last updated:</dt>
|
|
201
201
|
<dd>{{formatDateOrToday lastUpdated }}</dd>
|
|
202
|
-
</dl>`;var
|
|
202
|
+
</dl>`;var m=`<div class="container qld-content-footer">
|
|
203
203
|
<div class="row">
|
|
204
204
|
{{> @partial-block }}
|
|
205
205
|
</div>
|
|
206
|
-
</div>`;var
|
|
206
|
+
</div>`;var g=`<!-- Content Wrapper -->
|
|
207
207
|
<div class="col-12 col-lg-8 ps-lg-64 qld-content-body" id="content">
|
|
208
208
|
{{#if title}}<h1>{{title}}</h1>{{/if}}
|
|
209
209
|
{{> @partial-block }}
|
|
210
210
|
</div>
|
|
211
|
-
`;var
|
|
211
|
+
`;var V="";var H=`<!-- QGDS Component: Date input -->
|
|
212
212
|
|
|
213
213
|
<!-- Label -->
|
|
214
214
|
<label id="dategroup-label"
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
</div>
|
|
273
273
|
</div>
|
|
274
274
|
</div>
|
|
275
|
-
`;var
|
|
275
|
+
`;var M=`<footer class="qld-footer {{variantClass}}" role="contentinfo">
|
|
276
276
|
|
|
277
277
|
<div class="container">
|
|
278
278
|
|
|
@@ -288,50 +288,79 @@
|
|
|
288
288
|
<div class="footer-column footer-contact {{#if contact.hasBorderColumn}}border-column{{/if}}">
|
|
289
289
|
<div class="row">
|
|
290
290
|
<div class="col-xs-12 col-md-6 col-lg-12">
|
|
291
|
-
<h3 class="footer-heading">{{ contact.title }}</h3>
|
|
291
|
+
<h3 class="footer-heading">{{#if contact.title}}{{ contact.title }}{{else}}Contact us{{/if}}</h3>
|
|
292
292
|
<div class="footer-content">
|
|
293
|
-
{{{ contact.content }}}
|
|
294
|
-
{{#
|
|
293
|
+
{{#if contact.content}}{{{ contact.content }}}{{else}}<p>Get in touch for enquiries, feedback, complaints and compliments.</p>{{/if}}
|
|
294
|
+
{{#unless contactHasContactListDisabled}}
|
|
295
|
+
{{#if contact.list }}
|
|
295
296
|
{{#each contact.list }}
|
|
296
|
-
<div class="footer-contact-item">
|
|
297
|
-
<span class="qld-icon {{icon}}" aria-hidden="true"></span> {{{ label }}}
|
|
297
|
+
<div class="footer-contact-item footer-contact-{{@key}}">
|
|
298
|
+
<span class="qld-icon {{this.icon}}" aria-hidden="true"></span> {{{ this.label }}}
|
|
298
299
|
</div>
|
|
299
300
|
{{/each}}
|
|
301
|
+
{{else}}
|
|
302
|
+
{{!default contact list }}
|
|
303
|
+
<div class="footer-contact-item footer-contact-phone">
|
|
304
|
+
<span class="qld-icon icon-phone" aria-hidden="true"></span> <b>Phone:</b> 13 QGOV (13 74 68)
|
|
305
|
+
</div>
|
|
306
|
+
<div class="footer-contact-item footer-contact-email">
|
|
307
|
+
<span class="qld-icon icon-email" aria-hidden="true"></span> <b>Email:</b> <span class="user-select-all">email@qld.gov.au</span>
|
|
308
|
+
</div>
|
|
300
309
|
{{/if}}
|
|
310
|
+
{{/unless}}
|
|
301
311
|
</div>
|
|
302
312
|
</div>
|
|
303
313
|
<div class="col-xs-12 col-md-6 col-lg-12">
|
|
304
|
-
<a href="{{ contact.buttonLink }}" class="btn btn-outline-secondary">{{ contact.buttonLabel }}</a>
|
|
314
|
+
<a href="{{#if contact.buttonLink}}{{ contact.buttonLink }}{{else}}https://www.qld.gov.au/contact-us{{/if}}" class="btn btn-outline-secondary">{{#if contact.buttonLabel}}{{ contact.buttonLabel }}{{else}}Contact us{{/if}}</a>
|
|
305
315
|
</div>
|
|
306
316
|
</div>
|
|
307
317
|
</div>
|
|
308
318
|
</div>
|
|
309
319
|
|
|
310
320
|
<div class="col-xs-12 col-md-12 col-lg-3" aria-label="footer-navigation">
|
|
321
|
+
{{#if footerlinks}}
|
|
311
322
|
<div class="footer-column {{#if footerlinks.hasBorderColumn}}border-column{{/if}}">
|
|
312
323
|
<nav class="nav footer-link-list flex-column">
|
|
313
324
|
{{#each footerlinks.list }}
|
|
314
|
-
<a class="nav-link" href="{{ link }}" target="{{
|
|
325
|
+
<a class="nav-link" href="{{ this.link }}" {{#if this.new_window }} target="_blank" {{/if}}>{{{ @key }}}</a>
|
|
315
326
|
{{/each }}
|
|
316
327
|
</nav>
|
|
317
328
|
</div>
|
|
329
|
+
{{else}}
|
|
330
|
+
{{!default list }}
|
|
331
|
+
<div class="footer-column ">
|
|
332
|
+
<nav class="nav footer-link-list flex-column">
|
|
333
|
+
<a class="nav-link" href="https://www.qld.gov.au/help">Help</a>
|
|
334
|
+
<a class="nav-link" href="https://www.qld.gov.au/legal/copyright">Copyright</a>
|
|
335
|
+
<a class="nav-link" href="https://www.qld.gov.au/legal/disclaimer">Disclaimer</a>
|
|
336
|
+
<a class="nav-link" href="https://www.qld.gov.au/legal/privacy">Privacy</a>
|
|
337
|
+
<a class="nav-link" href="https://www.qld.gov.au/about/rights-accountability/right-to-information">Right to information</a>
|
|
338
|
+
<a class="nav-link" href="https://www.qld.gov.au/help/accessibility">Accessibility</a>
|
|
339
|
+
<a class="nav-link" href="https://smartjobs.qld.gov.au" target="_blank">Jobs in Queensland Government</a>
|
|
340
|
+
<a class="nav-link" href="https://www.qld.gov.au/help/languages">Other languages</a>
|
|
341
|
+
</nav>
|
|
342
|
+
</div>
|
|
343
|
+
{{/if}}
|
|
318
344
|
</div>
|
|
319
345
|
|
|
320
|
-
{{#
|
|
346
|
+
{{#unless feedbackFormDisabled}}
|
|
321
347
|
<div class="col-xs-12 col-md-12 col-lg-3">
|
|
322
|
-
<div class="footer-column {{#
|
|
348
|
+
<div class="footer-column {{#unless feedbackForm.hasBorderColumnDisabled}}border-column{{/unless}}">
|
|
323
349
|
<div class="row">
|
|
324
350
|
<div class="col-xs-12 col-md-6 col-lg-12">
|
|
325
|
-
<h3 class="footer-heading">{{feedbackForm.title}}</h3>
|
|
326
|
-
<p>{{feedbackForm.content}}</p>
|
|
351
|
+
<h3 class="footer-heading">{{#if feedbackForm.title}}{{feedbackForm.title}}{{else}}Website feedback{{/if}}</h3>
|
|
352
|
+
<p>{{#if feedbackForm.content}}{{feedbackForm.content}}{{else}}Help us improve the content on our website or tell us what is working well.{{/if}}</p>
|
|
327
353
|
</div>
|
|
328
354
|
<div class="col-xs-12 col-md-6 col-lg-12">
|
|
329
355
|
<div id="qg-feedback-toggle" class="qg-footer-feedback-wrap">
|
|
330
356
|
<a id="btn-footer-feedback" class="btn btn-global-secondary qg-feedback-toggle collapsed" data-bs-toggle="collapse" href="#qg-footer-feedback" role="button" aria-expanded="false" aria-controls="qg-footer-feedback" data-analytics-link-group="qg-feedback">
|
|
331
|
-
{{feedbackForm.btnTitle}}
|
|
357
|
+
{{#if feedbackForm.btnTitle}}{{feedbackForm.btnTitle}}{{else}}Leave your feedback{{/if}}
|
|
332
358
|
</a>
|
|
333
359
|
<div id="qg-footer-feedback" class="qg-footer-feedback__v2 collapse">
|
|
334
|
-
<div id="feedbackFormIO" {{#each feedbackForm.formAttr}}{{#if
|
|
360
|
+
{{#if feedbackForm.formAttr }}<div id="feedbackFormIO" {{#each feedbackForm.formAttr}}{{#if this}}{{@key}}="{{this}}"{{else}}{{@key}}{{/if}} {{/each}}>
|
|
361
|
+
{{else}}
|
|
362
|
+
{{!default if not set }}<div id="feedbackFormIO" data-formio data-formio-project-name="oldkihhcwbdtwye" data-formio-form-name="footerfeedbackcontactus" data-formio-env-url="api.forms.platforms.qld.gov.au" data-formio-createform-options="formioCreateFormOptions" data-formio-createform-controller="formioCreateFormController">
|
|
363
|
+
{{/if}}
|
|
335
364
|
<div class="qg-spinner" role="status">
|
|
336
365
|
<div class="spinner-border"></div>
|
|
337
366
|
<div class="qg-spinner-label">Loading...</div>
|
|
@@ -346,10 +375,11 @@
|
|
|
346
375
|
</div>
|
|
347
376
|
</div>
|
|
348
377
|
</div>
|
|
349
|
-
{{/
|
|
378
|
+
{{/unless}}
|
|
350
379
|
|
|
351
|
-
{{#
|
|
380
|
+
{{#unless followlinksDisabled}}
|
|
352
381
|
<div class="col-xs-12 col-md-12 col-lg-3">
|
|
382
|
+
{{#if followlinks }}
|
|
353
383
|
<div class="footer-column {{#if followlinks.hasBorderColumn}}border-column{{/if}}">
|
|
354
384
|
{{#if followlinks.title}}<h3 class="footer-heading">{{followlinks.title}}</h3>{{/if}}
|
|
355
385
|
<nav class="nav footer-link-list footer-link-list--social flex-column">
|
|
@@ -363,12 +393,37 @@
|
|
|
363
393
|
{{/each }}
|
|
364
394
|
</nav>
|
|
365
395
|
</div>
|
|
396
|
+
{{else}}
|
|
397
|
+
{{! default follow Links }}
|
|
398
|
+
<nav class="nav footer-link-list footer-link-list--social flex-column">
|
|
399
|
+
<a class="nav-link" href="#" target="_blank">
|
|
400
|
+
<svg aria-hidden="true" focusable="false" viewBox="0 0 12 21" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><path d="M3.85156 20.5H7.52344V11.5547H10.375L10.8438 8H7.52344V5.53906C7.52344 4.99219 7.60156 4.5625 7.83594 4.28906C8.07031 3.97656 8.57812 3.82031 9.28125 3.82031H11.1562V0.65625C10.4531 0.578125 9.51562 0.5 8.42188 0.5C7.01562 0.5 5.92188 0.929688 5.10156 1.75C4.24219 2.57031 3.85156 3.70312 3.85156 5.1875V8H0.84375V11.5547H3.85156V20.5Z"></path></svg>
|
|
401
|
+
<span class="nav-link-label">Facebook</span>
|
|
402
|
+
</a>
|
|
403
|
+
<a class="nav-link" href="#">
|
|
404
|
+
<svg aria-hidden="true" focusable="false" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><path d="M4.15625 18.25V6.57031H0.523438V18.25H4.15625ZM2.35938 4.96875C2.90625 4.96875 3.41406 4.77344 3.84375 4.34375C4.23438 3.95312 4.46875 3.44531 4.46875 2.85938C4.46875 2.3125 4.23438 1.80469 3.84375 1.375C3.41406 0.984375 2.90625 0.75 2.35938 0.75C1.77344 0.75 1.26562 0.984375 0.875 1.375C0.445312 1.80469 0.25 2.3125 0.25 2.85938C0.25 3.44531 0.445312 3.95312 0.875 4.34375C1.26562 4.77344 1.77344 4.96875 2.35938 4.96875ZM17.75 18.25V11.8438C17.75 10.0469 17.4766 8.71875 16.9688 7.85938C16.2656 6.80469 15.0938 6.25781 13.4141 6.25781C12.5547 6.25781 11.8516 6.49219 11.2266 6.88281C10.6406 7.23438 10.2109 7.66406 9.97656 8.17188H9.9375V6.57031H6.46094V18.25H10.0547V12.4688C10.0547 11.5703 10.1719 10.8672 10.4453 10.3984C10.7578 9.77344 11.3438 9.46094 12.2031 9.46094C13.0234 9.46094 13.5703 9.8125 13.8828 10.5156C14.0391 10.9453 14.1172 11.6094 14.1172 12.5469V18.25H17.75Z"></path></svg>
|
|
405
|
+
<span class="nav-link-label">LinkedIn</span>
|
|
406
|
+
</a>
|
|
407
|
+
<a class="nav-link" href="#">
|
|
408
|
+
<svg aria-hidden="true" focusable="false" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><path d="M12.1562 0.5H14.3438L9.53125 6.03125L15.2188 13.5H10.7812L7.28125 8.96875L3.3125 13.5H1.09375L6.25 7.625L0.8125 0.5H5.375L8.5 4.65625L12.1562 0.5ZM11.375 12.1875H12.5938L4.71875 1.75H3.40625L11.375 12.1875Z"></path></svg>
|
|
409
|
+
<span class="nav-link-label">X (Twitter)</span>
|
|
410
|
+
</a>
|
|
411
|
+
<a class="nav-link" href="#">
|
|
412
|
+
<svg aria-hidden="true" focusable="false" viewBox="0 0 22 15" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><path d="M21.2344 2.34375C21.3906 3.04688 21.5469 4.14062 21.625 5.54688L21.6641 7.5L21.625 9.45312C21.5469 10.9375 21.3906 11.9922 21.2344 12.6953C21.0781 13.1641 20.8438 13.5547 20.5312 13.8672C20.1797 14.2188 19.7891 14.4531 19.3203 14.5703C18.6172 14.7656 17.0547 14.8828 14.5547 14.9609L11 15L7.44531 14.9609C4.94531 14.8828 3.34375 14.7656 2.67969 14.5703C2.21094 14.4531 1.78125 14.2188 1.46875 13.8672C1.11719 13.5547 0.882812 13.1641 0.765625 12.6953C0.570312 11.9922 0.453125 10.9375 0.375 9.45312L0.335938 7.5C0.335938 6.95312 0.335938 6.28906 0.375 5.54688C0.453125 4.14062 0.570312 3.04688 0.765625 2.34375C0.882812 1.875 1.11719 1.48438 1.46875 1.13281C1.78125 0.820312 2.21094 0.585938 2.67969 0.429688C3.34375 0.273438 4.94531 0.117188 7.44531 0.0390625L11 0L14.5547 0.0390625C17.0547 0.117188 18.6172 0.273438 19.3203 0.429688C19.7891 0.585938 20.1797 0.820312 20.5312 1.13281C20.8438 1.48438 21.0781 1.875 21.2344 2.34375ZM8.8125 10.7031L14.3984 7.5L8.8125 4.33594V10.7031Z"></path></svg>
|
|
413
|
+
<span class="nav-link-label">Youtube</span>
|
|
414
|
+
</a>
|
|
415
|
+
<a class="nav-link" href="#">
|
|
416
|
+
<svg aria-hidden="true" focusable="false" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><path d="M9 5.00781C9.78125 5.00781 10.5234 5.24219 11.2266 5.63281C11.9297 6.02344 12.4766 6.57031 12.8672 7.27344C13.2578 7.97656 13.4922 8.71875 13.4922 9.5C13.4922 10.3203 13.2578 11.0625 12.8672 11.7656C12.4766 12.4688 11.9297 13.0156 11.2266 13.4062C10.5234 13.7969 9.78125 13.9922 9 13.9922C8.17969 13.9922 7.4375 13.7969 6.73438 13.4062C6.03125 13.0156 5.48438 12.4688 5.09375 11.7656C4.70312 11.0625 4.50781 10.3203 4.50781 9.5C4.50781 8.71875 4.70312 7.97656 5.09375 7.27344C5.48438 6.57031 6.03125 6.02344 6.73438 5.63281C7.4375 5.24219 8.17969 5.00781 9 5.00781ZM9 12.4297C9.78125 12.4297 10.4844 12.1562 11.0703 11.5703C11.6172 11.0234 11.9297 10.3203 11.9297 9.5C11.9297 8.71875 11.6172 8.01562 11.0703 7.42969C10.4844 6.88281 9.78125 6.57031 9 6.57031C8.17969 6.57031 7.47656 6.88281 6.92969 7.42969C6.34375 8.01562 6.07031 8.71875 6.07031 9.5C6.07031 10.3203 6.34375 11.0234 6.92969 11.5703C7.47656 12.1562 8.17969 12.4297 9 12.4297ZM14.7422 4.8125C14.7422 4.53906 14.625 4.30469 14.4297 4.07031C14.1953 3.875 13.9609 3.75781 13.6875 3.75781C13.375 3.75781 13.1406 3.875 12.9453 4.07031C12.7109 4.30469 12.6328 4.53906 12.6328 4.8125C12.6328 5.125 12.7109 5.35938 12.9453 5.55469C13.1406 5.78906 13.375 5.86719 13.6875 5.86719C13.9609 5.86719 14.1953 5.78906 14.3906 5.55469C14.5859 5.35938 14.7031 5.125 14.7422 4.8125ZM17.7109 5.86719C17.7109 6.60938 17.75 7.82031 17.75 9.5C17.75 11.2188 17.7109 12.4297 17.6719 13.1719C17.6328 13.9141 17.5156 14.5391 17.3594 15.0859C17.125 15.75 16.7344 16.3359 16.2656 16.8047C15.7969 17.2734 15.2109 17.625 14.5859 17.8594C14.0391 18.0547 13.375 18.1719 12.6328 18.2109C11.8906 18.25 10.6797 18.25 9 18.25C7.28125 18.25 6.07031 18.25 5.32812 18.2109C4.58594 18.1719 3.96094 18.0547 3.41406 17.8203C2.75 17.625 2.16406 17.2734 1.69531 16.8047C1.22656 16.3359 0.875 15.75 0.640625 15.0859C0.445312 14.5391 0.328125 13.9141 0.289062 13.1719C0.25 12.4297 0.25 11.2188 0.25 9.5C0.25 7.82031 0.25 6.60938 0.289062 5.86719C0.328125 5.125 0.445312 4.46094 0.640625 3.91406C0.875 3.28906 1.22656 2.70312 1.69531 2.23438C2.16406 1.76562 2.75 1.375 3.41406 1.14062C3.96094 0.984375 4.58594 0.867188 5.32812 0.828125C6.07031 0.789062 7.28125 0.75 9 0.75C10.6797 0.75 11.8906 0.789062 12.6328 0.828125C13.375 0.867188 14.0391 0.984375 14.5859 1.14062C15.2109 1.375 15.7969 1.76562 16.2656 2.23438C16.7344 2.70312 17.125 3.28906 17.3594 3.91406C17.5156 4.46094 17.6328 5.125 17.7109 5.86719ZM15.8359 14.6562C15.9922 14.2266 16.0703 13.5234 16.1484 12.5469C16.1484 12 16.1875 11.1797 16.1875 10.125V8.875C16.1875 7.82031 16.1484 7 16.1484 6.45312C16.0703 5.47656 15.9922 4.77344 15.8359 4.34375C15.5234 3.5625 14.9375 2.97656 14.1562 2.66406C13.7266 2.50781 13.0234 2.42969 12.0469 2.35156C11.4609 2.35156 10.6406 2.3125 9.625 2.3125H8.375C7.32031 2.3125 6.5 2.35156 5.95312 2.35156C4.97656 2.42969 4.27344 2.50781 3.84375 2.66406C3.02344 2.97656 2.47656 3.5625 2.16406 4.34375C2.00781 4.77344 1.89062 5.47656 1.85156 6.45312C1.8125 7.03906 1.8125 7.85938 1.8125 8.875V10.125C1.8125 11.1797 1.8125 12 1.85156 12.5469C1.89062 13.5234 2.00781 14.2266 2.16406 14.6562C2.47656 15.4766 3.0625 16.0234 3.84375 16.3359C4.27344 16.4922 4.97656 16.6094 5.95312 16.6484C6.5 16.6875 7.32031 16.6875 8.375 16.6875H9.625C10.6797 16.6875 11.5 16.6875 12.0469 16.6484C13.0234 16.6094 13.7266 16.4922 14.1562 16.3359C14.9375 16.0234 15.5234 15.4375 15.8359 14.6562Z"></path></svg>
|
|
417
|
+
<span class="nav-link-label">Instagram</span>
|
|
418
|
+
</a>
|
|
419
|
+
</nav>
|
|
420
|
+
{{/if}}
|
|
366
421
|
</div>
|
|
367
|
-
{{/
|
|
422
|
+
{{/unless}}
|
|
368
423
|
|
|
369
424
|
<div class="col-xs-12 col-md-12 col-lg-3 crest">
|
|
370
|
-
<div class="footer-column {{#
|
|
371
|
-
{{#
|
|
425
|
+
<div class="footer-column {{#unless copyright.hasBorderColumnDisabled}}border-column{{/unless}}">
|
|
426
|
+
{{#unless footerHasCrestDisabled}}
|
|
372
427
|
<div class="footer-crest">
|
|
373
428
|
<svg width="252" height="44" viewBox="0 0 252 44" fill="none"
|
|
374
429
|
xmlns="http://www.w3.org/2000/svg">
|
|
@@ -536,21 +591,30 @@
|
|
|
536
591
|
fill="white" />
|
|
537
592
|
</svg>
|
|
538
593
|
</div>
|
|
539
|
-
{{/
|
|
594
|
+
{{/unless}}
|
|
540
595
|
|
|
541
596
|
<div class="footer-content">
|
|
542
|
-
<div class="footer-acknowledgements">
|
|
597
|
+
<div class="footer-acknowledgements">
|
|
598
|
+
{{#if acknowledgements }}
|
|
543
599
|
{{#each acknowledgements}}
|
|
544
600
|
{{#if title}}
|
|
545
601
|
<h3 class="footer-heading">{{title}}</h3>
|
|
546
602
|
{{/if}}
|
|
547
|
-
{{
|
|
603
|
+
{{#if content}}
|
|
604
|
+
{{! extra { so it does not html escape }}
|
|
605
|
+
{{{ content }}}
|
|
606
|
+
{{/if}}
|
|
548
607
|
{{/each}}
|
|
608
|
+
{{else}}
|
|
609
|
+
<p>We pay our respects to the Aboriginal and Torres Strait Islander ancestors of this land, their spirits and their legacy. The foundations laid by these ancestors\u2014our First Nations peoples\u2014give strength, inspiration and courage to current and future generations towards creating a better Queensland.</p>
|
|
610
|
+
{{/if}}
|
|
549
611
|
</div>
|
|
550
|
-
<p class="copyright">{{{copyright.content}}} {{#if copyrightOrganisationName}}({{copyrightOrganisationName}}) {{/if}}{{#if copyrightHasYearFrom}}{{copyright.yearFrom}} - {{/if}} {{copyright.currentYear}}</p>
|
|
551
|
-
{{
|
|
552
|
-
<p><a class="fw-semibold" href="{{lookup.link.URL }}" rel="external">{{lookup.link.text}}</a></p>
|
|
612
|
+
{{#if copyright }}<p class="copyright">{{{copyright.content}}} {{#if copyrightOrganisationName}}({{copyrightOrganisationName}}) {{/if}}{{#if copyrightHasYearFrom}}{{copyright.yearFrom}} - {{/if}} {{copyright.currentYear}}</p>
|
|
613
|
+
{{else}}{{!default }}<p class="copyright">\xA9 The State of Queensland {{formatDateOrToday "" "YYYY" }}</p>
|
|
553
614
|
{{/if}}
|
|
615
|
+
{{#unless footerHasStateOfQldDisabled}}
|
|
616
|
+
<p><a class="fw-semibold" href="{{#if lookup.link.URL}}{{lookup.link.URL }}{{else}}https://www.qld.gov.au{{/if}}" rel="external">{{#if lookup.link.text}}{{lookup.link.text}}{{else}}Queensland Government{{/if}}</a></p>
|
|
617
|
+
{{/unless}}
|
|
554
618
|
</div>
|
|
555
619
|
|
|
556
620
|
</div>
|
|
@@ -558,7 +622,7 @@
|
|
|
558
622
|
|
|
559
623
|
</div>
|
|
560
624
|
</div>
|
|
561
|
-
</footer>`;var
|
|
625
|
+
</footer>`;var b=`<footer class="qld-footer {{ variantClass }}" role="contentinfo">
|
|
562
626
|
|
|
563
627
|
<!-- Footer content container -->
|
|
564
628
|
<div class="container">
|
|
@@ -824,7 +888,7 @@
|
|
|
824
888
|
</div>
|
|
825
889
|
</div>
|
|
826
890
|
</div>
|
|
827
|
-
</footer>`;var
|
|
891
|
+
</footer>`;var Z=`
|
|
828
892
|
{{#if questionLabel}}
|
|
829
893
|
<div class="qld-text-input-label {{listClasses}}">
|
|
830
894
|
{{questionLabel}}
|
|
@@ -846,7 +910,7 @@
|
|
|
846
910
|
</label>
|
|
847
911
|
</div>
|
|
848
912
|
{{/each}}
|
|
849
|
-
`;var
|
|
913
|
+
`;var _=`<!DOCTYPE html>
|
|
850
914
|
<html lang="en">
|
|
851
915
|
<head>
|
|
852
916
|
<meta charset="UTF-8">
|
|
@@ -861,7 +925,7 @@
|
|
|
861
925
|
{{> @partial-block }}
|
|
862
926
|
{{/mainContainerWrapper}}
|
|
863
927
|
</body>
|
|
864
|
-
</html>`;var
|
|
928
|
+
</html>`;var w=`<!-- QGDS Component: Global Alert -->
|
|
865
929
|
|
|
866
930
|
<div class="global-alert-include">
|
|
867
931
|
{{#each alertItems}}
|
|
@@ -885,7 +949,7 @@
|
|
|
885
949
|
</section>
|
|
886
950
|
{{/each }}
|
|
887
951
|
</div>
|
|
888
|
-
`;var
|
|
952
|
+
`;var q=`
|
|
889
953
|
<!-- VERSION_DETAILS=###VERSION### -->
|
|
890
954
|
|
|
891
955
|
{{! Select environment, used verbatium if not using predefind key
|
|
@@ -896,7 +960,7 @@ cdn := PROD|STAGING|BETA|TEST|DEV|???
|
|
|
896
960
|
|
|
897
961
|
<script type="text/javascript" async src="{{#if cdn }}{{#ifCond cdn '==' 'PROD'}}https://static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{#ifCond cdn '==' 'STAGING'}}https://staging-static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{#ifCond cdn '==' 'BETA'}}https://beta-static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{#ifCond cdn '==' 'TEST'}}https://test-static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{#ifCond cdn '==' 'DEV'}}https://dev-static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{cdn}}{{/ifCond}}{{/ifCond}}{{/ifCond}}{{/ifCond}}{{/ifCond}}{{else}}missing{{/if}}/assets/js/bootstrap.min.js"><\/script>
|
|
898
962
|
<script type="text/javascript" async src="{{#if cdn }}{{#ifCond cdn '==' 'PROD'}}https://static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{#ifCond cdn '==' 'STAGING'}}https://staging-static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{#ifCond cdn '==' 'BETA'}}https://beta-static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{#ifCond cdn '==' 'TEST'}}https://test-static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{#ifCond cdn '==' 'DEV'}}https://dev-static.qgov.net.au/qgds-bootstrap5/###MAJOR_VERSION###/###MAJOR_VERSION###.x.x-latest{{else}}{{cdn}}{{/ifCond}}{{/ifCond}}{{/ifCond}}{{/ifCond}}{{/ifCond}}{{else}}missing{{/if}}/assets/js/qld.bootstrap.min.js"><\/script>
|
|
899
|
-
`;var
|
|
963
|
+
`;var x=`<header class="qld__header" role="banner">
|
|
900
964
|
<nav class="qld__header__skip-link" aria-label="skip links" tabindex="-1">
|
|
901
965
|
<a class="qld__header__skip-link__linkstyle" href="#content">Skip to main content</a>
|
|
902
966
|
<a class="qld__header__skip-link__linkstyle" href="#main-nav">Skip to main navigation</a>
|
|
@@ -1793,12 +1857,12 @@ cdn := PROD|STAGING|BETA|TEST|DEV|???
|
|
|
1793
1857
|
</div>
|
|
1794
1858
|
</div>
|
|
1795
1859
|
</header>
|
|
1796
|
-
<!-- HEADER END -->`;var
|
|
1860
|
+
<!-- HEADER END -->`;var y=`<div class="alert {{variantClass}} {{customClass}}" role="alert">
|
|
1797
1861
|
{{#if heading}}
|
|
1798
1862
|
<div class="alert-heading" role="heading">{{{ heading }}}</div>
|
|
1799
1863
|
{{/if}}
|
|
1800
1864
|
{{{ content }}}
|
|
1801
|
-
</div>`;var
|
|
1865
|
+
</div>`;var k=`<!-- QGDS Partial: inpage-nav -->
|
|
1802
1866
|
|
|
1803
1867
|
<div class="qld-inpage-nav">
|
|
1804
1868
|
|
|
@@ -1812,7 +1876,7 @@ cdn := PROD|STAGING|BETA|TEST|DEV|???
|
|
|
1812
1876
|
{{/each}}
|
|
1813
1877
|
</ul>
|
|
1814
1878
|
|
|
1815
|
-
</div>`;var
|
|
1879
|
+
</div>`;var T=`{{> header header}}
|
|
1816
1880
|
{{> navbar navbar}}
|
|
1817
1881
|
{{> globalAlert globalAlert}}
|
|
1818
1882
|
<main>
|
|
@@ -1839,7 +1903,7 @@ cdn := PROD|STAGING|BETA|TEST|DEV|???
|
|
|
1839
1903
|
|
|
1840
1904
|
</div>
|
|
1841
1905
|
</main>
|
|
1842
|
-
{{> footer footer}}`;var
|
|
1906
|
+
{{> footer footer}}`;var S=`<!-- DCTERMS https://www.dublincore.org/specifications/dublin-core/dcmi-terms/-->
|
|
1843
1907
|
{{#if dcTerms}}
|
|
1844
1908
|
<meta name="DCTERMS.title" content="{{ title }}">
|
|
1845
1909
|
<meta name="DCTERMS.publisher" scheme="AGLSTERMS.AglsAgent" content="{{#if dcTerms.publisher}}{{dcTerms.publisher}}{{else}}corporateName=The State of Queensland; jurisdiction=Queensland{{/if}}" />
|
|
@@ -1855,7 +1919,7 @@ cdn := PROD|STAGING|BETA|TEST|DEV|???
|
|
|
1855
1919
|
{{#if dcTerms.subject}}<meta name="DCTERMS.subject" content="{{ dcTerms.subject }}" />{{/if}}
|
|
1856
1920
|
{{#if dcTerms.audience}}<meta name="DCTERMS.audience" content="all" scheme="{{ dcTerms.audience }}" />{{/if}}
|
|
1857
1921
|
{{#if dcTerms.licenseUri}}<meta name="DCTERMS.license" scheme="DCTERMS.URI" content="{{ dcTerms.licenseUri }}">{{/if}}
|
|
1858
|
-
{{/if}}`;var
|
|
1922
|
+
{{/if}}`;var R=`
|
|
1859
1923
|
<!-- SEO (required) -->
|
|
1860
1924
|
{{#if description }}<meta name="description" content="{{ description }}" />{{/if}}
|
|
1861
1925
|
{{#if seo.pageSnippet }}<meta name="page.snippet" content="{{ seo.pageSnippet}}" />{{/if}}
|
|
@@ -1872,7 +1936,7 @@ cdn := PROD|STAGING|BETA|TEST|DEV|???
|
|
|
1872
1936
|
{{#if og.image }}<meta property="og:image" content="{{ og.image }}">{{/if}}
|
|
1873
1937
|
{{#ifAny og.twitter_image og.image }}<meta name="twitter:image:src" content="{{#if og.twitter_image }}{{ og.twitter_image }}{{else}}{{ og.image }}{{/if}}" />{{/ifAny}}
|
|
1874
1938
|
{{#if uri }}<meta property="og:url" content="{{ uri }}" />{{/if}}
|
|
1875
|
-
{{#if og.type }}<meta property="og:type" content="{{og.type}}" />{{/if}}`;var
|
|
1939
|
+
{{#if og.type }}<meta property="og:type" content="{{og.type}}" />{{/if}}`;var D=`<!-- Example button to trigger the modal -->
|
|
1876
1940
|
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#{{modalID}}">
|
|
1877
1941
|
{{launchButtonLabel}}
|
|
1878
1942
|
</button>
|
|
@@ -1909,7 +1973,7 @@ cdn := PROD|STAGING|BETA|TEST|DEV|???
|
|
|
1909
1973
|
|
|
1910
1974
|
</div>
|
|
1911
1975
|
</div>
|
|
1912
|
-
</div>`;var
|
|
1976
|
+
</div>`;var O=`<!-- QGDS Partial: Primary navigation -->
|
|
1913
1977
|
|
|
1914
1978
|
<!-- Primary Navigation / Desktop -->
|
|
1915
1979
|
<nav id="main-nav" class="navbar navbar-expand-lg" aria-label="Website navigation" role="navigation">
|
|
@@ -2159,7 +2223,7 @@ cdn := PROD|STAGING|BETA|TEST|DEV|???
|
|
|
2159
2223
|
<div id="overlay" class="navbar__overlay" aria-controls="main-nav"></div>
|
|
2160
2224
|
</div>
|
|
2161
2225
|
</nav>
|
|
2162
|
-
<!-- MAIN NAVIGATION END -->`;var
|
|
2226
|
+
<!-- MAIN NAVIGATION END -->`;var A=`{{!
|
|
2163
2227
|
Component Name: QGDS QOL Pagination
|
|
2164
2228
|
Component Version: 1.0
|
|
2165
2229
|
Framework: Bootstrap 5.3
|
|
@@ -2201,7 +2265,7 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2201
2265
|
|
|
2202
2266
|
</ul>
|
|
2203
2267
|
|
|
2204
|
-
</nav>`;var
|
|
2268
|
+
</nav>`;var P=`<!-- QGDS Component: Loading Quick exit -->
|
|
2205
2269
|
|
|
2206
2270
|
<div class="qld-quick-exit"><!-- dark -->
|
|
2207
2271
|
<div class="container">
|
|
@@ -2240,7 +2304,7 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2240
2304
|
</div>
|
|
2241
2305
|
</div>
|
|
2242
2306
|
</div>
|
|
2243
|
-
</div>`;var
|
|
2307
|
+
</div>`;var E=`<!--
|
|
2244
2308
|
QGDS Component: Search input
|
|
2245
2309
|
-->
|
|
2246
2310
|
<div class="container {{variantClass}}">
|
|
@@ -2286,7 +2350,7 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2286
2350
|
</ul>
|
|
2287
2351
|
{{/if}}
|
|
2288
2352
|
</div>
|
|
2289
|
-
</div>`;var
|
|
2353
|
+
</div>`;var I=`<!-- QGDS Component: Select -->
|
|
2290
2354
|
|
|
2291
2355
|
<!-- Label for the first input field -->
|
|
2292
2356
|
<label class="qld-text-input-label {{#if isRequired}}field-required{{/if}} {{#if isDisabled}}field-disabled{{/if}}" for="example-1">
|
|
@@ -2320,7 +2384,7 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2320
2384
|
<option value="2">Option 2</option>
|
|
2321
2385
|
<option value="3">Option 3</option>
|
|
2322
2386
|
</select>
|
|
2323
|
-
`;var
|
|
2387
|
+
`;var N=`<div class="qld-side-navigation">
|
|
2324
2388
|
|
|
2325
2389
|
<h2 class="nav-title">
|
|
2326
2390
|
{{#if navtitlelink }}
|
|
@@ -2385,11 +2449,11 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2385
2449
|
</li>
|
|
2386
2450
|
{{/each}}
|
|
2387
2451
|
</ul>
|
|
2388
|
-
</div>`;var
|
|
2452
|
+
</div>`;var G=`<!-- Side Nav -->
|
|
2389
2453
|
<div class="col-12 col-lg-3 pe-lg-0 order-last order-lg-first mt-5 mt-lg-0">
|
|
2390
2454
|
{{> @partial-block }}
|
|
2391
2455
|
</div>
|
|
2392
|
-
`;var
|
|
2456
|
+
`;var F=`<!-- QGDS Component: Loading Spinner -->
|
|
2393
2457
|
|
|
2394
2458
|
<div class="qld-spinner {{#if stacked}}align-center{{/if}}" role="status">
|
|
2395
2459
|
<div class="spinner-border"></div>
|
|
@@ -2397,7 +2461,7 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2397
2461
|
Loading...
|
|
2398
2462
|
</span>
|
|
2399
2463
|
</div>
|
|
2400
|
-
`;var
|
|
2464
|
+
`;var Q=`<!-- QGDS Component: Table -->
|
|
2401
2465
|
|
|
2402
2466
|
<div class="table-responsive qld-table {{customClass}}">
|
|
2403
2467
|
|
|
@@ -2445,7 +2509,7 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2445
2509
|
{{/if}}
|
|
2446
2510
|
|
|
2447
2511
|
</table>
|
|
2448
|
-
</div>`;var
|
|
2512
|
+
</div>`;var J=`<!-- QGDS Component: Tag -->
|
|
2449
2513
|
|
|
2450
2514
|
<ul class="tag-list {{variant}}">
|
|
2451
2515
|
{{#each tagItems}}
|
|
@@ -2455,7 +2519,7 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2455
2519
|
{{/each }}
|
|
2456
2520
|
</ul>
|
|
2457
2521
|
|
|
2458
|
-
`;var
|
|
2522
|
+
`;var B=`<!-- QGDS Component: Textarea -->
|
|
2459
2523
|
|
|
2460
2524
|
<!-- Label for the first input field -->
|
|
2461
2525
|
<label class="qld-text-input-label {{#if isRequired}}field-required{{/if}} {{#if isDisabled}}field-disabled{{/if}}"
|
|
@@ -2486,7 +2550,7 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2486
2550
|
<!-- First text input field, described by the hint text above -->
|
|
2487
2551
|
<textarea id="example-1" class="qld-text-input form-control {{customClass}} {{#if isFilled}}form-style-filled{{/if}}"
|
|
2488
2552
|
placeholder="{{placeholder}}" rows="{{rows}}" {{#if isDisabled}}disabled{{/if}} {{#if isRequired}}required
|
|
2489
|
-
aria-required="true" {{/if}}></textarea>`;var
|
|
2553
|
+
aria-required="true" {{/if}}></textarea>`;var W=`<!-- QGDS Component: Textbox -->
|
|
2490
2554
|
|
|
2491
2555
|
<!-- Label for the first input field -->
|
|
2492
2556
|
<label class="qld-text-input-label {{#if isRequired}}field-required{{/if}} {{#if isDisabled}}field-disabled{{/if}}"
|
|
@@ -2517,7 +2581,7 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2517
2581
|
<!-- First text input field, described by the hint text above -->
|
|
2518
2582
|
<input id="example-1" class="qld-text-input form-control {{customClass}} {{#if isFilled}}form-style-filled{{/if}}"
|
|
2519
2583
|
type="text" placeholder="{{placeholder}}" aria-label="Text input example" {{#if isDisabled}}disabled{{/if}} {{#if
|
|
2520
|
-
isRequired}}required aria-required="true" {{/if}} />`;var
|
|
2584
|
+
isRequired}}required aria-required="true" {{/if}} />`;var Y="<!-- QGDS Partial: typography -->";var j=`<!-- QGDS Component: Video -->
|
|
2521
2585
|
|
|
2522
2586
|
{{#if analyticsTrackingCode}}
|
|
2523
2587
|
<script type="text/javascript" defer="defer" src="https://extend.vimeocdn.com/ga/{{analyticsTrackingCode}}.js">
|
|
@@ -2569,5 +2633,5 @@ Reference: https://getbootstrap.com/docs/5.0/components/pagination/
|
|
|
2569
2633
|
{{/if}}
|
|
2570
2634
|
|
|
2571
2635
|
</section>
|
|
2572
|
-
`;function o(C){C.registerPartial("accordion",
|
|
2636
|
+
`;function o(C){C.registerPartial("accordion",n),C.registerPartial("banner",d),C.registerPartial("blockquote",c),C.registerPartial("breadcrumbs",p),C.registerPartial("breadcrumbsWrapper",f),C.registerPartial("button",u),C.registerPartial("callout",h),C.registerPartial("card",L),C.registerPartial("contentFooter",v),C.registerPartial("contentFooterWrapper",m),C.registerPartial("contentWrapper",g),C.registerPartial("correctincorrect",V),C.registerPartial("dateinput",H),C.registerPartial("footer",M),C.registerPartial("footerForgov",b),C.registerPartial("formcheck",Z),C.registerPartial("fullPage",_),C.registerPartial("globalAlert",w),C.registerPartial("head",q),C.registerPartial("header",x),C.registerPartial("inpageAlert",y),C.registerPartial("inpagenav",k),C.registerPartial("mainContainerWrapper",T),C.registerPartial("metaDcTerms",S),C.registerPartial("metaOpenGraph",R),C.registerPartial("modal",D),C.registerPartial("navbar",O),C.registerPartial("pagination",A),C.registerPartial("quickexit",P),C.registerPartial("searchInput",E),C.registerPartial("select",I),C.registerPartial("sidenav",N),C.registerPartial("sidenavWrapper",G),C.registerPartial("spinner",F),C.registerPartial("table",Q),C.registerPartial("tag",J),C.registerPartial("textarea",B),C.registerPartial("textbox",W),C.registerPartial("typography",Y),C.registerPartial("video",j)}typeof Handlebars!="undefined"&&o(Handlebars);var U=!1;function $(C){typeof C=="undefined"&&console.error("Handlebars.init requires HandleBars"),typeof C!="undefined"?(U?console.log("HandleBars Helpers And Partials already loaded, loading again"):U=!0,l(C),o(C)):console.log("Handlebars not found, init failed")}typeof Handlebars!="undefined"&&$(Handlebars);})();
|
|
2573
2637
|
//# sourceMappingURL=handlebars.init.min.js.map
|