@qld-gov-au/qgds-bootstrap5 1.1.41 → 2.0.1
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/.eslintrc.cjs +27 -27
- package/.vscode/settings.json +5 -5
- package/dist/assets/components/bs5/banner/banner.hbs +0 -7
- package/dist/assets/components/bs5/card/card.hbs +3 -17
- package/dist/assets/components/bs5/footer/customLinks.hbs +7 -0
- package/dist/assets/components/bs5/footer/feedbackForm.hbs +25 -0
- package/dist/assets/components/bs5/footer/followLinks.hbs +14 -0
- package/dist/assets/components/bs5/footer/footer.hbs +229 -346
- package/dist/assets/components/bs5/head/head.hbs +4 -4
- package/dist/assets/components/bs5/header/header.hbs +124 -878
- package/dist/assets/components/bs5/header/headerBrand.hbs +35 -0
- package/dist/{components/bs5/iconLink/iconLink.hbs → assets/components/bs5/link/link.hbs} +3 -3
- package/dist/assets/components/bs5/logo/logoCOALandscape.hbs +110 -55
- package/dist/assets/components/bs5/logo/logoCOALandscape2Lines.hbs +2 -1
- package/dist/assets/components/bs5/navbar/navbar.hbs +3 -3
- package/dist/assets/components/bs5/pageLayout/templates/contentPageWithForm.hbs +53 -22
- package/dist/assets/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +79 -59
- package/dist/assets/components/bs5/pageLayout/templates/homePage.hbs +111 -0
- package/dist/assets/components/bs5/searchInput/searchInput.hbs +1 -1
- package/dist/assets/css/qld.bootstrap.css +1 -1
- package/dist/assets/css/qld.bootstrap.css.map +3 -3
- package/dist/assets/js/handlebars.helpers.bundle.js.map +2 -2
- package/dist/assets/js/handlebars.helpers.js +34 -34
- package/dist/assets/js/handlebars.init.min.js +830 -1798
- package/dist/assets/js/handlebars.init.min.js.map +4 -4
- package/dist/assets/js/handlebars.partials.js +12 -8
- package/dist/assets/js/qld.bootstrap.min.js +5 -5
- package/dist/assets/js/qld.bootstrap.min.js.map +4 -4
- package/dist/assets/node/handlebars.init.min.js +399 -121
- package/dist/assets/node/handlebars.init.min.js.map +3 -3
- package/dist/components/bs5/banner/banner.hbs +0 -7
- package/dist/components/bs5/card/card.hbs +3 -17
- package/dist/components/bs5/footer/customLinks.hbs +7 -0
- package/dist/components/bs5/footer/feedbackForm.hbs +25 -0
- package/dist/components/bs5/footer/followLinks.hbs +14 -0
- package/dist/components/bs5/footer/footer.hbs +229 -346
- package/dist/components/bs5/head/head.hbs +4 -4
- package/dist/components/bs5/header/header.hbs +124 -878
- package/dist/components/bs5/header/headerBrand.hbs +35 -0
- package/dist/{assets/components/bs5/iconLink/iconLink.hbs → components/bs5/link/link.hbs} +3 -3
- package/dist/components/bs5/logo/logoCOALandscape.hbs +110 -55
- package/dist/components/bs5/logo/logoCOALandscape2Lines.hbs +2 -1
- package/dist/components/bs5/navbar/navbar.hbs +3 -3
- package/dist/components/bs5/pageLayout/templates/contentPageWithForm.hbs +53 -22
- package/dist/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +79 -59
- package/dist/components/bs5/pageLayout/templates/homePage.hbs +111 -0
- package/dist/components/bs5/searchInput/searchInput.hbs +1 -1
- package/dist/components/handlebars.helpers.js +34 -34
- package/dist/components/handlebars.partials.js +12 -8
- package/dist/package.json +1 -1
- package/dist/sample-data/footer/footer.data.json +128 -84
- package/dist/sample-data/header/header.variant.coBrand.data.json +28 -40
- package/dist/sample-data/header/header.variant.endorsed.data.json +116 -150
- package/dist/sample-data/header/header.variant.masterBrand.data.json +116 -152
- package/dist/sample-data/header/header.variant.standAlone.data.json +118 -150
- package/dist/sample-data/header/header.variant.subBrand.data.json +32 -159
- package/dist/sample-data/inpageAlert/inpageAlert.data.json +6 -6
- package/dist/sample-data/logo/logo.data.json +1 -0
- package/dist/sample-data/navbar/navbar.data.json +5 -5
- package/package.json +1 -1
- package/src/components/bs5/accordion/Accordion.mdx +8 -2
- package/src/components/bs5/banner/Banner.mdx +6 -1
- package/src/components/bs5/banner/banner.hbs +0 -7
- package/src/components/bs5/banner/banner.scss +16 -9
- package/src/components/bs5/banner/banner.stories.js +17 -17
- package/src/components/bs5/breadcrumbs/Breadcrumbs.mdx +8 -2
- package/src/components/bs5/button/button.stories.js +8 -8
- package/src/components/bs5/callToAction/callToAction.mdx +8 -3
- package/src/components/bs5/card/Card.mdx +8 -2
- package/src/components/bs5/card/card.hbs +3 -17
- package/src/components/bs5/card/card.scss +103 -103
- package/src/components/bs5/containerLayout/containerLayout.stories.js +1 -1
- package/src/components/bs5/footer/Footer.js +3 -3
- package/src/components/bs5/footer/Footer.mdx +8 -2
- package/src/components/bs5/footer/customLinks.hbs +7 -0
- package/src/components/bs5/footer/feedbackForm.hbs +25 -0
- package/src/components/bs5/footer/followLinks.hbs +14 -0
- package/src/components/bs5/footer/footer.data.json +128 -84
- package/src/components/bs5/footer/footer.functions.js +2 -1
- package/src/components/bs5/footer/footer.hbs +229 -346
- package/src/components/bs5/footer/footer.scss +262 -272
- package/src/components/bs5/footer/footer.stories.js +4 -92
- package/src/components/bs5/footer/footer_formio.scss +219 -0
- package/src/components/bs5/globalAlert/GlobalAlert.mdx +8 -2
- package/src/components/bs5/globalAlert/globalAlert.test.js +3 -11
- package/src/components/bs5/header/_header-variables.scss +272 -0
- package/src/components/bs5/header/header.functions.js +9 -9
- package/src/components/bs5/header/header.hbs +124 -878
- package/src/components/bs5/header/header.scss +279 -411
- package/src/components/bs5/header/header.stories.js +8 -28
- package/src/components/bs5/header/header.variant.coBrand.data.json +28 -40
- package/src/components/bs5/header/header.variant.endorsed.data.json +116 -150
- package/src/components/bs5/header/header.variant.masterBrand.data.json +116 -152
- package/src/components/bs5/header/header.variant.standAlone.data.json +118 -150
- package/src/components/bs5/header/header.variant.subBrand.data.json +32 -159
- package/src/components/bs5/header/headerBrand.hbs +35 -0
- package/src/components/bs5/inpageAlert/InpageAlert.mdx +8 -2
- package/src/components/bs5/inpageAlert/inpageAlert.data.json +6 -6
- package/src/components/bs5/{iconLink/iconLink.hbs → link/link.hbs} +3 -3
- package/src/components/bs5/{iconLink/iconLink.js → link/link.js} +2 -2
- package/src/components/bs5/{iconLink/iconLink.mdx → link/link.mdx} +3 -3
- package/src/components/bs5/{iconLink/iconLink.scss → link/link.scss} +27 -3
- package/src/components/bs5/{iconLink/iconLink.stories.js → link/link.stories.js} +4 -5
- package/src/components/bs5/linkColumns/linkColumns.mdx +8 -3
- package/src/components/bs5/logo/logo.data.json +1 -0
- package/src/components/bs5/logo/logoCOALandscape.hbs +110 -55
- package/src/components/bs5/logo/logoCOALandscape2Lines.hbs +2 -1
- package/src/components/bs5/navbar/navbar.data.json +5 -5
- package/src/components/bs5/navbar/navbar.hbs +3 -3
- package/src/components/bs5/navbar/navbar.scss +669 -614
- package/src/components/bs5/navbar/navbar.stories.js +1 -0
- package/src/components/bs5/pageLayout/{FullWidthLandingPage.js → HomePage.js} +2 -2
- package/src/components/bs5/pageLayout/pageLayout.stories.js +242 -98
- package/src/components/bs5/pageLayout/templates/contentPageWithForm.hbs +53 -22
- package/src/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +79 -59
- package/src/components/bs5/pageLayout/templates/homePage.hbs +111 -0
- package/src/components/bs5/promotionalPanel/PromotionalPanel.mdx +8 -3
- package/src/components/bs5/searchInput/__snapshots__/searchInput.test.js.snap +1 -1
- package/src/components/bs5/searchInput/searchInput.hbs +1 -1
- package/src/components/bs5/searchInput/searchInput.scss +2 -1
- package/src/components/bs5/searchInput/searchInput.test.js +1 -2
- package/src/css/main.scss +4 -1
- package/src/css/mixins/_index.scss +2 -1
- package/src/css/mixins/register-vars.scss +23 -0
- package/src/css/qld-variables.scss +4 -2
- package/src/css/utilities/_index.scss +1 -0
- package/src/css/utilities/responsive-visually-hidden.scss +10 -0
- package/src/js/handlebars.helpers.js +34 -34
- package/src/js/handlebars.partials.js +12 -8
- package/src/js/qld.bootstrap.js +10 -11
- package/dist/assets/components/bs5/footer/footerForgov.hbs +0 -279
- package/dist/assets/components/bs5/pageLayout/pageLayout.hbs +0 -34
- package/dist/assets/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +0 -61
- package/dist/components/bs5/footer/footerForgov.hbs +0 -279
- package/dist/components/bs5/pageLayout/pageLayout.hbs +0 -34
- package/dist/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +0 -61
- package/src/components/bs5/footer/_colours.scss +0 -149
- package/src/components/bs5/footer/_measurements.scss +0 -32
- package/src/components/bs5/footer/footerForgov.hbs +0 -279
- package/src/components/bs5/header/_colours.scss +0 -271
- package/src/components/bs5/header/_icons.scss +0 -10
- package/src/components/bs5/pageLayout/pageLayout.hbs +0 -34
- package/src/components/bs5/pageLayout/pageLayout.js +0 -21
- package/src/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +0 -61
- /package/dist/sample-data/{iconLink/iconLink.data.json → link/link.data.json} +0 -0
- /package/src/components/bs5/{iconLink/iconLink.data.json → link/link.data.json} +0 -0
|
@@ -2,16 +2,9 @@ import { Header } from "./Header.js";
|
|
|
2
2
|
import { Navbar } from "../navbar/Navbar.js";
|
|
3
3
|
import { SearchInput } from "../searchInput/SearchInput.js";
|
|
4
4
|
|
|
5
|
-
// Sample components
|
|
6
|
-
import { Banner } from "../banner/Banner.js";
|
|
7
|
-
import { Footer } from "../footer/Footer.js";
|
|
8
|
-
|
|
9
5
|
// Mock data
|
|
10
|
-
import menu_state from "../navbar/navbar.
|
|
11
|
-
import cobrand_example from "../navbar/navbar.variant.coBrand.data.json";
|
|
6
|
+
import menu_state from "../navbar/navbar.data.json";
|
|
12
7
|
import searchData from "../searchInput/searchInput.data.json";
|
|
13
|
-
import breadcrumbs from "../banner/banner.data.json";
|
|
14
|
-
import footerData from "../footer/footer.data.json";
|
|
15
8
|
|
|
16
9
|
import masterbrand_variant from "./header.variant.masterBrand.data.json";
|
|
17
10
|
import subbrand_variant from "./header.variant.subBrand.data.json";
|
|
@@ -167,6 +160,9 @@ export default {
|
|
|
167
160
|
argTypes: {},
|
|
168
161
|
parameters: {
|
|
169
162
|
layout: "fullscreen",
|
|
163
|
+
docs: {
|
|
164
|
+
story: { height: "400px" },
|
|
165
|
+
},
|
|
170
166
|
},
|
|
171
167
|
};
|
|
172
168
|
|
|
@@ -214,7 +210,7 @@ export const SubBrand = {
|
|
|
214
210
|
|
|
215
211
|
// Co brand
|
|
216
212
|
export const CoBrand = {
|
|
217
|
-
args: mergeArgs(alternative_palette, cobrand_variant,
|
|
213
|
+
args: mergeArgs(alternative_palette, cobrand_variant, menu_state),
|
|
218
214
|
argTypes: arg_types,
|
|
219
215
|
parameters: {
|
|
220
216
|
backgrounds: {
|
|
@@ -224,9 +220,7 @@ export const CoBrand = {
|
|
|
224
220
|
},
|
|
225
221
|
decorators: [
|
|
226
222
|
(Story, context) => {
|
|
227
|
-
const
|
|
228
|
-
const bannerDataWithOverride = { ...breadcrumbs, variantClass };
|
|
229
|
-
const footerDataWithOverride = { ...footerData, variantClass };
|
|
223
|
+
const args = context.args;
|
|
230
224
|
|
|
231
225
|
// Generate CSS variables from args
|
|
232
226
|
const cssVariables = Object.keys(args)
|
|
@@ -245,8 +239,6 @@ export const CoBrand = {
|
|
|
245
239
|
</style>
|
|
246
240
|
<main>
|
|
247
241
|
${Story()}
|
|
248
|
-
${new Banner(bannerDataWithOverride).html}
|
|
249
|
-
${new Footer(footerDataWithOverride).html}
|
|
250
242
|
</main>
|
|
251
243
|
`;
|
|
252
244
|
},
|
|
@@ -265,9 +257,7 @@ export const EndorsedBrand = {
|
|
|
265
257
|
},
|
|
266
258
|
decorators: [
|
|
267
259
|
(Story, context) => {
|
|
268
|
-
const
|
|
269
|
-
const bannerDataWithOverride = { ...breadcrumbs, variantClass };
|
|
270
|
-
const footerDataWithOverride = { ...footerData, variantClass };
|
|
260
|
+
const args = context.args;
|
|
271
261
|
|
|
272
262
|
// Generate CSS variables from args
|
|
273
263
|
const cssVariables = Object.keys(args)
|
|
@@ -287,10 +277,6 @@ export const EndorsedBrand = {
|
|
|
287
277
|
<main>
|
|
288
278
|
${Story()}
|
|
289
279
|
</main>
|
|
290
|
-
<div>
|
|
291
|
-
${new Banner(bannerDataWithOverride).html}
|
|
292
|
-
${new Footer(footerDataWithOverride).html}
|
|
293
|
-
</div>
|
|
294
280
|
`;
|
|
295
281
|
},
|
|
296
282
|
],
|
|
@@ -308,9 +294,7 @@ export const StandaloneBrand = {
|
|
|
308
294
|
},
|
|
309
295
|
decorators: [
|
|
310
296
|
(Story, context) => {
|
|
311
|
-
const
|
|
312
|
-
const bannerDataWithOverride = { ...breadcrumbs, variantClass };
|
|
313
|
-
const footerDataWithOverride = { ...footerData, variantClass };
|
|
297
|
+
const args = context.args;
|
|
314
298
|
|
|
315
299
|
// Generate CSS variables from args
|
|
316
300
|
const cssVariables = Object.keys(args)
|
|
@@ -330,10 +314,6 @@ export const StandaloneBrand = {
|
|
|
330
314
|
<main>
|
|
331
315
|
${Story()}
|
|
332
316
|
</main>
|
|
333
|
-
<div>
|
|
334
|
-
${new Banner(bannerDataWithOverride).html}
|
|
335
|
-
${new Footer(footerDataWithOverride).html}
|
|
336
|
-
</div>
|
|
337
317
|
`;
|
|
338
318
|
},
|
|
339
319
|
],
|
|
@@ -1,51 +1,39 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"chevron_down": "qld__icon__chevron-down"
|
|
8
|
-
},
|
|
9
|
-
"sitePreHeader": {
|
|
10
|
-
"url": {
|
|
11
|
-
"value": "https://qld.gov.au"
|
|
12
|
-
},
|
|
13
|
-
"text": {
|
|
14
|
-
"value": "www.qld.gov.au"
|
|
2
|
+
"isCoBrand": true,
|
|
3
|
+
"preHeader": {
|
|
4
|
+
"globalLink": {
|
|
5
|
+
"text": "www.qld.gov.au",
|
|
6
|
+
"url": "https://qld.gov.au"
|
|
15
7
|
},
|
|
16
|
-
"
|
|
8
|
+
"actions": [
|
|
17
9
|
{
|
|
18
10
|
"id": "CTAone",
|
|
19
|
-
"url":
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"text": {
|
|
23
|
-
"value": "Get support to quit"
|
|
24
|
-
}
|
|
11
|
+
"url": "#",
|
|
12
|
+
"text": "Get support to quit",
|
|
13
|
+
"icon": "profile"
|
|
25
14
|
}
|
|
26
15
|
]
|
|
27
16
|
},
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
},
|
|
44
|
-
"siteTitle": {
|
|
45
|
-
"value": "Vaping Exposed"
|
|
17
|
+
"mainContent": {
|
|
18
|
+
"url": "https://qld.gov.au",
|
|
19
|
+
"logo": null,
|
|
20
|
+
"secondaryLogo": null,
|
|
21
|
+
"siteTitle": "Department of Seniors, Disability Services and Aboriginal and Torres Strait Islander Partnerships",
|
|
22
|
+
"subline": ""
|
|
23
|
+
},
|
|
24
|
+
"assets": {
|
|
25
|
+
"SVGSpritePath": "./assets/img/icons-sprite.svg",
|
|
26
|
+
"siteSearch": {
|
|
27
|
+
"value": "#",
|
|
28
|
+
"placeholder": "",
|
|
29
|
+
"label": "",
|
|
30
|
+
"formAction": {
|
|
31
|
+
"url": "https://www.forgov.qld.gov.au/search"
|
|
46
32
|
},
|
|
47
|
-
"
|
|
48
|
-
"
|
|
33
|
+
"options": {
|
|
34
|
+
"borderStyle": {
|
|
35
|
+
"full": true
|
|
36
|
+
}
|
|
49
37
|
}
|
|
50
38
|
}
|
|
51
39
|
}
|
|
@@ -1,172 +1,138 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"chevron_down": "qld__icon__chevron-down"
|
|
8
|
-
},
|
|
9
|
-
"sitePreHeader": {
|
|
10
|
-
"url": {
|
|
11
|
-
"value": "https://qld.gov.au"
|
|
12
|
-
},
|
|
13
|
-
"text": {
|
|
14
|
-
"value": "www.qld.gov.au"
|
|
2
|
+
"isEndorsedBrand": true,
|
|
3
|
+
"preHeader": {
|
|
4
|
+
"globalLink": {
|
|
5
|
+
"text": "www.qld.gov.au",
|
|
6
|
+
"url": "https://qld.gov.au"
|
|
15
7
|
},
|
|
16
|
-
"
|
|
8
|
+
"actions": [
|
|
17
9
|
{
|
|
18
10
|
"id": "CTAone",
|
|
19
|
-
"url":
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"action": "_blank",
|
|
61
|
-
"url": "#",
|
|
62
|
-
"label": "Community support"
|
|
63
|
-
}
|
|
64
|
-
]
|
|
65
|
-
}
|
|
11
|
+
"url": "#",
|
|
12
|
+
"text": "For Queenslanders",
|
|
13
|
+
"dropdown": {
|
|
14
|
+
"type": "list",
|
|
15
|
+
"viewMore": {
|
|
16
|
+
"text": "View all",
|
|
17
|
+
"url": "https://www.qld.gov.au/queenslanders",
|
|
18
|
+
"target": "_blank"
|
|
19
|
+
},
|
|
20
|
+
"items": [
|
|
21
|
+
{
|
|
22
|
+
"target": "_blank",
|
|
23
|
+
"url": "#",
|
|
24
|
+
"text": "Transport and motoring"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"target": "_blank",
|
|
28
|
+
"url": "#",
|
|
29
|
+
"text": "Employment and jobs"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"target": "_blank",
|
|
33
|
+
"url": "#",
|
|
34
|
+
"text": "Education and training"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"target": "_blank",
|
|
38
|
+
"url": "#",
|
|
39
|
+
"text": "Queensland and its government"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"target": "_blank",
|
|
43
|
+
"url": "#",
|
|
44
|
+
"text": "Health and wellbeing"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"target": "_blank",
|
|
48
|
+
"url": "#",
|
|
49
|
+
"text": "Community support"
|
|
50
|
+
}
|
|
51
|
+
]
|
|
66
52
|
}
|
|
67
53
|
},
|
|
68
54
|
{
|
|
69
55
|
"id": "CTAtwo",
|
|
70
|
-
"url":
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
"action": "_blank",
|
|
112
|
-
"url": "#",
|
|
113
|
-
"label": "Community support"
|
|
114
|
-
}
|
|
115
|
-
]
|
|
116
|
-
}
|
|
56
|
+
"url": "#",
|
|
57
|
+
"text": "Business and Industry",
|
|
58
|
+
"dropdown": {
|
|
59
|
+
"type": "list",
|
|
60
|
+
"viewMore": {
|
|
61
|
+
"text": "View all",
|
|
62
|
+
"url": "https://www.qld.gov.au/queenslanders",
|
|
63
|
+
"target": "_blank"
|
|
64
|
+
},
|
|
65
|
+
"items": [
|
|
66
|
+
{
|
|
67
|
+
"target": "_blank",
|
|
68
|
+
"url": "#",
|
|
69
|
+
"text": "Transport and motoring"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"target": "_blank",
|
|
73
|
+
"url": "#",
|
|
74
|
+
"text": "Employment and jobs"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"target": "_blank",
|
|
78
|
+
"url": "#",
|
|
79
|
+
"text": "Education and training"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"target": "_blank",
|
|
83
|
+
"url": "#",
|
|
84
|
+
"text": "Queensland and its government"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"target": "_blank",
|
|
88
|
+
"url": "#",
|
|
89
|
+
"text": "Health and wellbeing"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"target": "_blank",
|
|
93
|
+
"url": "#",
|
|
94
|
+
"text": "Community support"
|
|
95
|
+
}
|
|
96
|
+
]
|
|
117
97
|
}
|
|
118
98
|
},
|
|
119
99
|
{
|
|
120
100
|
"id": "CTAthree",
|
|
121
|
-
"url":
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
"
|
|
126
|
-
},
|
|
127
|
-
"dropdown_enabled": true,
|
|
128
|
-
"dropdown_options": {
|
|
129
|
-
"dropdown_type": "form",
|
|
130
|
-
"dropdown_config": {
|
|
131
|
-
"content": "<div></div>"
|
|
132
|
-
}
|
|
101
|
+
"url": "#",
|
|
102
|
+
"text": "Login",
|
|
103
|
+
"dropdown": {
|
|
104
|
+
"type": "html",
|
|
105
|
+
"HTMLContent": "<div></div>"
|
|
133
106
|
}
|
|
134
107
|
}
|
|
135
108
|
]
|
|
136
109
|
},
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"endorsed_enabled": true,
|
|
143
|
-
"standalone_enabled": false
|
|
110
|
+
"mainContent": {
|
|
111
|
+
"url": "https://qld.gov.au",
|
|
112
|
+
"logo": {
|
|
113
|
+
"src": "assets/img/endorsed.svg",
|
|
114
|
+
"altText": "Primary logo Endorsed brand alt text"
|
|
144
115
|
},
|
|
145
|
-
"
|
|
146
|
-
"
|
|
116
|
+
"secondaryLogo": {
|
|
117
|
+
"src": "assets/img/endorsed.svg",
|
|
118
|
+
"altText": "Secondary logo Endorsed brand alt text"
|
|
147
119
|
},
|
|
148
|
-
"
|
|
149
|
-
|
|
150
|
-
"value": "assets/img/endorsed.svg"
|
|
151
|
-
},
|
|
152
|
-
"siteTitle": {
|
|
153
|
-
"value": "Endorsed brand example"
|
|
154
|
-
},
|
|
155
|
-
"subline": {
|
|
156
|
-
"value": ""
|
|
157
|
-
}
|
|
158
|
-
}
|
|
120
|
+
"siteTitle": "Endorsed brand example",
|
|
121
|
+
"subline": ""
|
|
159
122
|
},
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
123
|
+
"assets": {
|
|
124
|
+
"SVGSpritePath": "./assets/img/icons-sprite.svg",
|
|
125
|
+
"siteSearch": {
|
|
126
|
+
"value": "#",
|
|
127
|
+
"placeholder": "",
|
|
128
|
+
"label": "",
|
|
129
|
+
"formAction": {
|
|
130
|
+
"url": "https://www.forgov.qld.gov.au/search"
|
|
131
|
+
},
|
|
132
|
+
"options": {
|
|
133
|
+
"borderStyle": {
|
|
134
|
+
"full": true
|
|
135
|
+
}
|
|
170
136
|
}
|
|
171
137
|
}
|
|
172
138
|
}
|