@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
|
@@ -1,172 +1,136 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
},
|
|
9
|
-
"sitePreHeader": {
|
|
10
|
-
"url": {
|
|
11
|
-
"value": "https://qld.gov.au"
|
|
12
|
-
},
|
|
13
|
-
"text": {
|
|
14
|
-
"value": "www.qld.gov.au"
|
|
2
|
+
"isMasterBrand": true,
|
|
3
|
+
"preHeader": {
|
|
4
|
+
"palette": "dark",
|
|
5
|
+
"globalLink": {
|
|
6
|
+
"text": "www.qld.gov.au",
|
|
7
|
+
"url": "https://qld.gov.au"
|
|
15
8
|
},
|
|
16
|
-
"
|
|
9
|
+
"actions": [
|
|
17
10
|
{
|
|
18
11
|
"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
|
-
}
|
|
12
|
+
"url": "#",
|
|
13
|
+
"text": "For Queenslanders",
|
|
14
|
+
"dropdown": {
|
|
15
|
+
"type": "list",
|
|
16
|
+
"viewMore": {
|
|
17
|
+
"text": "View all",
|
|
18
|
+
"url": "https://www.qld.gov.au/queenslanders",
|
|
19
|
+
"target": "_blank"
|
|
20
|
+
},
|
|
21
|
+
"items": [
|
|
22
|
+
{
|
|
23
|
+
"target": "_blank",
|
|
24
|
+
"url": "#",
|
|
25
|
+
"text": "Transport and motoring"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"target": "_blank",
|
|
29
|
+
"url": "#",
|
|
30
|
+
"text": "Employment and jobs"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"target": "_blank",
|
|
34
|
+
"url": "#",
|
|
35
|
+
"text": "Education and training"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"target": "_blank",
|
|
39
|
+
"url": "#",
|
|
40
|
+
"text": "Queensland and its government"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"target": "_blank",
|
|
44
|
+
"url": "#",
|
|
45
|
+
"text": "Health and wellbeing"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"target": "_blank",
|
|
49
|
+
"url": "#",
|
|
50
|
+
"text": "Community support"
|
|
51
|
+
}
|
|
52
|
+
]
|
|
66
53
|
}
|
|
67
54
|
},
|
|
68
55
|
{
|
|
69
56
|
"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
|
-
|
|
112
|
-
"url": "#",
|
|
113
|
-
"label": "Community support"
|
|
114
|
-
}
|
|
115
|
-
]
|
|
116
|
-
}
|
|
57
|
+
"url": "#",
|
|
58
|
+
"text": "Business and Industry",
|
|
59
|
+
"dropdown": {
|
|
60
|
+
"type": "list",
|
|
61
|
+
|
|
62
|
+
"viewMore": {
|
|
63
|
+
"text": "View all",
|
|
64
|
+
"url": "https://www.qld.gov.au/queenslanders",
|
|
65
|
+
"target": "_blank"
|
|
66
|
+
},
|
|
67
|
+
"items": [
|
|
68
|
+
{
|
|
69
|
+
"target": "_blank",
|
|
70
|
+
"url": "#",
|
|
71
|
+
"text": "Starting a business"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"target": "_blank",
|
|
75
|
+
"url": "#",
|
|
76
|
+
"text": "Running a business"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"target": "_blank",
|
|
80
|
+
"url": "#",
|
|
81
|
+
"text": "Employing people"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"target": "_blank",
|
|
85
|
+
"url": "#",
|
|
86
|
+
"text": "Payroll tax"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"target": "_blank",
|
|
90
|
+
"url": "#",
|
|
91
|
+
"text": "Industries"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"target": "_blank",
|
|
95
|
+
"url": "#",
|
|
96
|
+
"text": "Investing in Queensland"
|
|
97
|
+
}
|
|
98
|
+
]
|
|
117
99
|
}
|
|
118
100
|
},
|
|
119
101
|
{
|
|
120
102
|
"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
|
-
}
|
|
103
|
+
"url": "#",
|
|
104
|
+
"text": "Login",
|
|
105
|
+
"dropdown": {
|
|
106
|
+
"type": "html",
|
|
107
|
+
"HTMLContent": "<div>Custom HTML Content</div>"
|
|
133
108
|
}
|
|
134
109
|
}
|
|
135
110
|
]
|
|
136
111
|
},
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
},
|
|
145
|
-
"url": {
|
|
146
|
-
"value": "https://qld.gov.au"
|
|
147
|
-
},
|
|
148
|
-
"secondaryType": {
|
|
149
|
-
"logo": {
|
|
150
|
-
"value": ""
|
|
151
|
-
},
|
|
152
|
-
"siteTitle": {
|
|
153
|
-
"value": ""
|
|
154
|
-
},
|
|
155
|
-
"subline": {
|
|
156
|
-
"value": ""
|
|
157
|
-
}
|
|
158
|
-
}
|
|
112
|
+
"mainContent": {
|
|
113
|
+
"palette": "default",
|
|
114
|
+
"url": "https://qld.gov.au",
|
|
115
|
+
"logo": null,
|
|
116
|
+
"secondaryLogo": null,
|
|
117
|
+
"siteTitle": "",
|
|
118
|
+
"subline": ""
|
|
159
119
|
},
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
120
|
+
|
|
121
|
+
"assets": {
|
|
122
|
+
"SVGSpritePath": "./assets/img/icons-sprite.svg",
|
|
123
|
+
"siteSearch": {
|
|
124
|
+
"value": "#",
|
|
125
|
+
"placeholder": "",
|
|
126
|
+
"label": "",
|
|
127
|
+
"formAction": {
|
|
128
|
+
"url": "https://www.forgov.qld.gov.au/search"
|
|
129
|
+
},
|
|
130
|
+
"options": {
|
|
131
|
+
"borderStyle": {
|
|
132
|
+
"full": true
|
|
133
|
+
}
|
|
170
134
|
}
|
|
171
135
|
}
|
|
172
136
|
}
|
|
@@ -1,172 +1,140 @@
|
|
|
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
|
+
"isStandaloneBrand": 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
|
-
|
|
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
|
+
|
|
21
|
+
"items": [
|
|
22
|
+
{
|
|
23
|
+
"target": "_blank",
|
|
24
|
+
"url": "#",
|
|
25
|
+
"text": "Transport and motoring"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"target": "_blank",
|
|
29
|
+
"url": "#",
|
|
30
|
+
"text": "Employment and jobs"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"target": "_blank",
|
|
34
|
+
"url": "#",
|
|
35
|
+
"text": "Education and training"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"target": "_blank",
|
|
39
|
+
"url": "#",
|
|
40
|
+
"text": "Queensland and its government"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"target": "_blank",
|
|
44
|
+
"url": "#",
|
|
45
|
+
"text": "Health and wellbeing"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"target": "_blank",
|
|
49
|
+
"url": "#",
|
|
50
|
+
"text": "Community support"
|
|
51
|
+
}
|
|
52
|
+
]
|
|
66
53
|
}
|
|
67
54
|
},
|
|
68
55
|
{
|
|
69
56
|
"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
|
-
|
|
112
|
-
"url": "#",
|
|
113
|
-
"label": "Community support"
|
|
114
|
-
}
|
|
115
|
-
]
|
|
116
|
-
}
|
|
57
|
+
"url": "#",
|
|
58
|
+
"text": "Business and Industry",
|
|
59
|
+
"dropdown": {
|
|
60
|
+
"type": "list",
|
|
61
|
+
"viewMore": {
|
|
62
|
+
"text": "View all",
|
|
63
|
+
"url": "https://www.qld.gov.au/queenslanders",
|
|
64
|
+
"target": "_blank"
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
"items": [
|
|
68
|
+
{
|
|
69
|
+
"target": "_blank",
|
|
70
|
+
"url": "#",
|
|
71
|
+
"text": "Transport and motoring"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"target": "_blank",
|
|
75
|
+
"url": "#",
|
|
76
|
+
"text": "Employment and jobs"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"target": "_blank",
|
|
80
|
+
"url": "#",
|
|
81
|
+
"text": "Education and training"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"target": "_blank",
|
|
85
|
+
"url": "#",
|
|
86
|
+
"text": "Queensland and its government"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"target": "_blank",
|
|
90
|
+
"url": "#",
|
|
91
|
+
"text": "Health and wellbeing"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"target": "_blank",
|
|
95
|
+
"url": "#",
|
|
96
|
+
"text": "Community support"
|
|
97
|
+
}
|
|
98
|
+
]
|
|
117
99
|
}
|
|
118
100
|
},
|
|
119
101
|
{
|
|
120
102
|
"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
|
-
}
|
|
103
|
+
"url": "#",
|
|
104
|
+
"text": "Login",
|
|
105
|
+
"dropdown": {
|
|
106
|
+
"type": "html",
|
|
107
|
+
"HTMLContent": "<div></div>"
|
|
133
108
|
}
|
|
134
109
|
}
|
|
135
110
|
]
|
|
136
111
|
},
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
},
|
|
145
|
-
"url": {
|
|
146
|
-
"value": "https://qld.gov.au"
|
|
112
|
+
"mainContent": {
|
|
113
|
+
"url": "https://qld.gov.au",
|
|
114
|
+
"siteTitle": "Standalone example",
|
|
115
|
+
"subLine": "",
|
|
116
|
+
"logo": {
|
|
117
|
+
"src": "assets/img/endorsed.svg",
|
|
118
|
+
"altText": "Standalone example logo description."
|
|
147
119
|
},
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
},
|
|
152
|
-
"siteTitle": {
|
|
153
|
-
"value": ""
|
|
154
|
-
},
|
|
155
|
-
"subline": {
|
|
156
|
-
"value": ""
|
|
157
|
-
}
|
|
120
|
+
"secondaryLogo": {
|
|
121
|
+
"src": "assets/img/endorsed.svg",
|
|
122
|
+
"altText": ""
|
|
158
123
|
}
|
|
159
124
|
},
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
125
|
+
"assets": {
|
|
126
|
+
"SVGSpritePath": "./assets/img/icons-sprite.svg",
|
|
127
|
+
"siteSearch": {
|
|
128
|
+
"value": "#",
|
|
129
|
+
"placeholder": "",
|
|
130
|
+
"label": "",
|
|
131
|
+
"formAction": {
|
|
132
|
+
"url": "https://www.forgov.qld.gov.au/search"
|
|
133
|
+
},
|
|
134
|
+
"options": {
|
|
135
|
+
"borderStyle": {
|
|
136
|
+
"full": true
|
|
137
|
+
}
|
|
170
138
|
}
|
|
171
139
|
}
|
|
172
140
|
}
|