@qld-gov-au/qgds-bootstrap5 1.1.39 → 1.1.41

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.
Files changed (161) hide show
  1. package/dist/assets/components/bs5/backToTop/backToTop.hbs +1 -1
  2. package/dist/assets/components/bs5/breadcrumbs/breadcrumbs.hbs +19 -15
  3. package/dist/assets/components/bs5/button/button.hbs +48 -30
  4. package/dist/assets/components/bs5/containerLayout/containerLayout.hbs +100 -0
  5. package/dist/assets/components/bs5/contentFooter/contentFooter.hbs +15 -4
  6. package/dist/assets/components/bs5/formcheck/formcheck.hbs +1 -1
  7. package/dist/assets/components/bs5/head/head.hbs +1 -1
  8. package/dist/assets/components/bs5/iconLink/iconLink.hbs +41 -0
  9. package/dist/assets/components/bs5/logo/logo.hbs +7 -0
  10. package/dist/assets/components/bs5/logo/logoCOALandscape.hbs +58 -0
  11. package/dist/assets/components/bs5/logo/logoCOALandscape2Lines.hbs +58 -0
  12. package/dist/assets/components/bs5/navbar/navbar.hbs +65 -245
  13. package/dist/assets/components/bs5/pageLayout/pageLayout.hbs +11 -10
  14. package/dist/assets/components/bs5/pageLayout/templates/contentPageWithForm.hbs +78 -0
  15. package/dist/assets/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +103 -0
  16. package/dist/assets/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +61 -0
  17. package/dist/assets/components/bs5/searchInput/searchInput.hbs +8 -10
  18. package/dist/assets/css/qld.bootstrap.css +1 -1
  19. package/dist/assets/css/qld.bootstrap.css.map +3 -3
  20. package/dist/assets/js/bootstrap.bundle.js +3 -6
  21. package/dist/assets/js/bootstrap.bundle.js.map +1 -1
  22. package/dist/assets/js/bootstrap.bundle.min.js +2 -2
  23. package/dist/assets/js/bootstrap.bundle.min.js.map +1 -1
  24. package/dist/assets/js/bootstrap.js +3 -6
  25. package/dist/assets/js/bootstrap.min.js +2 -2
  26. package/dist/assets/js/bootstrap.min.js.map +1 -1
  27. package/dist/assets/js/handlebars.helpers.bundle.js +1 -1
  28. package/dist/assets/js/handlebars.helpers.bundle.js.map +3 -3
  29. package/dist/assets/js/handlebars.helpers.js +51 -40
  30. package/dist/assets/js/handlebars.init.min.js +698 -347
  31. package/dist/assets/js/handlebars.init.min.js.map +4 -4
  32. package/dist/assets/js/handlebars.partials.js +16 -0
  33. package/dist/assets/js/qld.bootstrap.min.js +9 -9
  34. package/dist/assets/js/qld.bootstrap.min.js.map +4 -4
  35. package/dist/assets/node/handlebars.init.min.js +359 -72
  36. package/dist/assets/node/handlebars.init.min.js.map +3 -3
  37. package/dist/components/bs5/backToTop/backToTop.hbs +1 -1
  38. package/dist/components/bs5/breadcrumbs/breadcrumbs.hbs +19 -15
  39. package/dist/components/bs5/button/button.hbs +48 -30
  40. package/dist/components/bs5/containerLayout/containerLayout.hbs +100 -0
  41. package/dist/components/bs5/contentFooter/contentFooter.hbs +15 -4
  42. package/dist/components/bs5/formcheck/formcheck.hbs +1 -1
  43. package/dist/components/bs5/head/head.hbs +1 -1
  44. package/dist/components/bs5/iconLink/iconLink.hbs +41 -0
  45. package/dist/components/bs5/logo/logo.hbs +7 -0
  46. package/dist/components/bs5/logo/logoCOALandscape.hbs +58 -0
  47. package/dist/components/bs5/logo/logoCOALandscape2Lines.hbs +58 -0
  48. package/dist/components/bs5/navbar/navbar.hbs +65 -245
  49. package/dist/components/bs5/pageLayout/pageLayout.hbs +11 -10
  50. package/dist/components/bs5/pageLayout/templates/contentPageWithForm.hbs +78 -0
  51. package/dist/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +103 -0
  52. package/dist/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +61 -0
  53. package/dist/components/bs5/searchInput/searchInput.hbs +8 -10
  54. package/dist/components/handlebars.helpers.js +51 -40
  55. package/dist/components/handlebars.partials.js +16 -0
  56. package/dist/package.json +2 -2
  57. package/dist/sample-data/breadcrumbs/breadcrumbs.data.json +113 -49
  58. package/dist/sample-data/button/button.data.json +10 -8
  59. package/dist/sample-data/contentFooter/contentFooter.data.json +9 -1
  60. package/dist/sample-data/formcheck/stories/checkbox/checkbox.data.json +51 -46
  61. package/dist/sample-data/formcheck/stories/radio/radio.data.json +51 -46
  62. package/dist/sample-data/iconLink/iconLink.data.json +77 -0
  63. package/dist/sample-data/logo/logo.data.json +6 -0
  64. package/dist/sample-data/navbar/navbar.data.json +191 -0
  65. package/dist/sample-data/searchInput/searchInput.data.json +2 -3
  66. package/dist/sample-data/tabs/tabs.data.json +45 -44
  67. package/package.json +2 -2
  68. package/src/components/bs5/backToTop/backToTop.hbs +1 -1
  69. package/src/components/bs5/banner/banner.scss +52 -46
  70. package/src/components/bs5/breadcrumbs/__snapshots__/breadcrumbs.test.js.snap +49 -0
  71. package/src/components/bs5/breadcrumbs/breadcrumbs.data.json +113 -49
  72. package/src/components/bs5/breadcrumbs/breadcrumbs.functions.js +169 -0
  73. package/src/components/bs5/breadcrumbs/breadcrumbs.hbs +19 -15
  74. package/src/components/bs5/breadcrumbs/breadcrumbs.scss +164 -43
  75. package/src/components/bs5/breadcrumbs/breadcrumbs.stories.js +16 -2
  76. package/src/components/bs5/breadcrumbs/breadcrumbs.test.js +136 -0
  77. package/src/components/bs5/button/button.data.json +10 -8
  78. package/src/components/bs5/button/button.hbs +48 -30
  79. package/src/components/bs5/button/button.scss +365 -244
  80. package/src/components/bs5/button/button.stories.js +116 -30
  81. package/src/components/bs5/containerLayout/containerLayout.hbs +100 -0
  82. package/src/components/bs5/containerLayout/containerLayout.stories.js +83 -0
  83. package/src/components/bs5/contentFooter/contentFooter.data.json +9 -1
  84. package/src/components/bs5/contentFooter/contentFooter.hbs +15 -4
  85. package/src/components/bs5/formcheck/formcheck.hbs +1 -1
  86. package/src/components/bs5/formcheck/formcheck.scss +161 -139
  87. package/src/components/bs5/formcheck/stories/checkbox/checkbox.data.json +51 -46
  88. package/src/components/bs5/formcheck/stories/radio/radio.data.json +51 -46
  89. package/src/components/bs5/iconLink/iconLink.data.json +77 -0
  90. package/src/components/bs5/iconLink/iconLink.hbs +41 -0
  91. package/src/components/bs5/iconLink/iconLink.js +20 -0
  92. package/src/components/bs5/iconLink/iconLink.mdx +16 -0
  93. package/src/components/bs5/iconLink/iconLink.scss +57 -0
  94. package/src/components/bs5/iconLink/iconLink.stories.js +127 -0
  95. package/src/components/bs5/icons/icons.scss +79 -72
  96. package/src/components/bs5/inpagenav/inpagenav.scss +37 -37
  97. package/src/components/bs5/logo/Logo.js +20 -0
  98. package/src/components/bs5/logo/Logo.mdx +10 -0
  99. package/src/components/bs5/logo/logo.data.json +6 -0
  100. package/src/components/bs5/logo/logo.hbs +7 -0
  101. package/src/components/bs5/logo/logo.stories.js +32 -0
  102. package/src/components/bs5/logo/logoCOALandscape.hbs +58 -0
  103. package/src/components/bs5/logo/logoCOALandscape2Lines.hbs +58 -0
  104. package/src/components/bs5/navbar/Navbar.js +2 -9
  105. package/src/components/bs5/navbar/navbar.data.json +191 -0
  106. package/src/components/bs5/navbar/navbar.functions.js +48 -196
  107. package/src/components/bs5/navbar/navbar.hbs +65 -245
  108. package/src/components/bs5/navbar/navbar.scss +585 -518
  109. package/src/components/bs5/navbar/navbar.stories.js +532 -0
  110. package/src/components/bs5/pageLayout/ContentPageWithForm.js +8 -0
  111. package/src/components/bs5/pageLayout/ContentPageWithSideNavigation.js +8 -0
  112. package/src/components/bs5/pageLayout/FullWidthLandingPage.js +8 -0
  113. package/src/components/bs5/pageLayout/pageLayout.hbs +11 -10
  114. package/src/components/bs5/pageLayout/pageLayout.stories.js +230 -6
  115. package/src/components/bs5/pageLayout/templates/contentPageWithForm.hbs +78 -0
  116. package/src/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +103 -0
  117. package/src/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +61 -0
  118. package/src/components/bs5/searchInput/__snapshots__/searchInput.test.js.snap +9 -8
  119. package/src/components/bs5/searchInput/search.functions.js +94 -63
  120. package/src/components/bs5/searchInput/searchInput.data.json +2 -3
  121. package/src/components/bs5/searchInput/searchInput.hbs +8 -10
  122. package/src/components/bs5/searchInput/searchInput.scss +296 -255
  123. package/src/components/bs5/searchInput/searchInput.test.js +98 -89
  124. package/src/components/bs5/sidenav/sidenav.stories.js +17 -15
  125. package/src/components/bs5/tabs/tabs.data.json +45 -44
  126. package/src/components/bs5/tabs/tabs.scss +544 -500
  127. package/src/components/bs5/tabs/tabs.stories.js +81 -51
  128. package/src/components/common/footer/footer.scss +137 -140
  129. package/src/components/common/layout/container.scss +22 -0
  130. package/src/components/common/layout/content.scss +11 -4
  131. package/src/components/common/layout/grid.scss +26 -0
  132. package/src/css/main.scss +5 -4
  133. package/src/css/qld-variables.scss +102 -81
  134. package/src/js/handlebars.helpers.js +51 -40
  135. package/src/js/handlebars.partials.js +16 -0
  136. package/src/js/qld.bootstrap.js +17 -9
  137. package/src/components/bs5/backToTop/backToTop.scss +0 -9
  138. package/src/components/bs5/breadcrumbs/breadcrumb.functions.js +0 -95
  139. package/src/components/bs5/breadcumbsWrapper/breadcrumbsWrapper.stories.js +0 -34
  140. package/src/components/bs5/contentFooterWrapper/contentFooterWrapper.stories.js +0 -36
  141. package/src/components/bs5/contentWrapper/contentWrapper.stories.js +0 -65
  142. package/src/components/bs5/fullPageWrapper/fullPage.stories.js +0 -63
  143. package/src/components/bs5/mainContainerWrapper/mainContainerWrapper.stories.js +0 -50
  144. package/src/components/bs5/navbar/_colours.scss +0 -85
  145. package/src/components/bs5/navbar/_icons.scss +0 -64
  146. package/src/components/bs5/sidenavWrapper/SidenavWrapper.mdx +0 -11
  147. package/src/components/bs5/sidenavWrapper/sidenavWrapper.stories.js +0 -65
  148. package/src/stories/integration/MainIntegration.js +0 -28
  149. package/src/stories/integration/MainIntegration.mdx +0 -10
  150. package/src/stories/integration/breadcrumb.data.json +0 -28
  151. package/src/stories/integration/content.data.json +0 -3
  152. package/src/stories/integration/contentFooter.data.json +0 -3
  153. package/src/stories/integration/footer.data.json +0 -111
  154. package/src/stories/integration/globalAlert.data.json +0 -10
  155. package/src/stories/integration/header.data.json +0 -173
  156. package/src/stories/integration/inpagenav.data.json +0 -26
  157. package/src/stories/integration/integration.stories.js +0 -147
  158. package/src/stories/integration/main.hbs +0 -13
  159. package/src/stories/integration/navigation.data.json +0 -22
  160. package/src/stories/integration/search.data.json +0 -20
  161. package/src/stories/integration/sidenav.data.json +0 -88
@@ -1,50 +1,114 @@
1
1
  {
2
- "default": {
3
- "breadcrumbs": [
4
- {
5
- "link": "#",
6
- "linktext": "Home"
7
- },
8
- {
9
- "link": "#",
10
- "linktext": "Level 2"
11
- },
12
- {
13
- "link": "#",
14
- "linktext": "Level 3"
15
- },
16
- {
17
- "link": "#",
18
- "linktext": "Current page"
19
- }
20
- ]
21
- },
22
- "forGov": {
23
- "breadcrumbs": [
24
- {
25
- "link": "#",
26
- "linktext": "For government"
27
- },
28
- {
29
- "link": "#",
30
- "linktext": "Information and communication technology"
31
- },
32
- {
33
- "link": "#",
34
- "linktext": "Communication and publishing"
35
- },
36
- {
37
- "link": "#",
38
- "linktext": "Website and digital publishing"
39
- },
40
- {
41
- "link": "#",
42
- "linktext": "Website standards, guidelines and templates"
43
- },
44
- {
45
- "link": "#",
46
- "linktext": "Single Website Experience"
47
- }
48
- ]
49
- }
50
- }
2
+ "default": {
3
+ "breadcrumbs": [
4
+ {
5
+ "link": "#",
6
+ "linktext": "Home"
7
+ },
8
+ {
9
+ "link": "#",
10
+ "linktext": "Level 2"
11
+ },
12
+ {
13
+ "link": "#",
14
+ "linktext": "Level 3"
15
+ },
16
+ {
17
+ "link": "#",
18
+ "linktext": "Level 4"
19
+ },
20
+ {
21
+ "link": "#",
22
+ "linktext": "Current page is having a very long name that is longer than the others"
23
+ }
24
+ ]
25
+ },
26
+ "defaultLong": {
27
+ "breadcrumbs": [
28
+ {
29
+ "link": "#",
30
+ "linktext": "Home"
31
+ },
32
+ {
33
+ "link": "#",
34
+ "linktext": "Level 2 with a very long name that is longer than the others"
35
+ },
36
+ {
37
+ "link": "#",
38
+ "linktext": "Level 3 with a very long name that is longer than the others"
39
+ },
40
+ {
41
+ "link": "#",
42
+ "linktext": "Level 4 with a very long name that is longer than the others"
43
+ },
44
+ {
45
+ "link": "#",
46
+ "linktext": "Current page is having a very long name that is longer than the others"
47
+ }
48
+ ]
49
+ },
50
+ "expanderSample": {
51
+ "breadcrumbs": [
52
+ {
53
+ "link": "#",
54
+ "linktext": "Home page"
55
+ },
56
+ {
57
+ "link": "#",
58
+ "linktext": "Page 1 is having a very long name that is longer than the others"
59
+ },
60
+ {
61
+ "link": "#",
62
+ "linktext": "Page 2"
63
+ },
64
+ {
65
+ "link": "#",
66
+ "linktext": "Page 3"
67
+ },
68
+ {
69
+ "link": "#",
70
+ "linktext": "Page 4"
71
+ },
72
+ {
73
+ "link": "#",
74
+ "linktext": "Page 5"
75
+ },
76
+ {
77
+ "link": "#",
78
+ "linktext": "Parent page is having a very long name that is longer than the others, a very long name that is longer than the others"
79
+ },
80
+ {
81
+ "link": "#",
82
+ "linktext": "Current page is having a very long name that is longer than the others which is very long name that is longer than the others"
83
+ }
84
+ ]
85
+ },
86
+ "forGov": {
87
+ "breadcrumbs": [
88
+ {
89
+ "link": "#",
90
+ "linktext": "For government"
91
+ },
92
+ {
93
+ "link": "#",
94
+ "linktext": "Information and communication technology"
95
+ },
96
+ {
97
+ "link": "#",
98
+ "linktext": "Communication and publishing"
99
+ },
100
+ {
101
+ "link": "#",
102
+ "linktext": "Website and digital publishing"
103
+ },
104
+ {
105
+ "link": "#",
106
+ "linktext": "Website standards, guidelines and templates"
107
+ },
108
+ {
109
+ "link": "#",
110
+ "linktext": "Single Website Experience"
111
+ }
112
+ ]
113
+ }
114
+ }
@@ -1,10 +1,12 @@
1
1
  {
2
- "variantClass": "btn-primary",
3
- "islink": true,
4
- "isdisabled": false,
5
- "iconClass": "qld-icon-external-link",
6
- "iconPosition": "leading",
7
- "label": "Call to action",
8
- "href": "https://google.com",
9
- "target": "_blank"
2
+ "variantClass": "btn-primary",
3
+ "islink": true,
4
+ "isdisabled": false,
5
+ "isprogress": false,
6
+ "progressLabel": "Loading",
7
+ "iconClass": "qld-icon-external-link",
8
+ "iconPosition": "leading",
9
+ "label": "Call to action",
10
+ "href": "https://google.com",
11
+ "target": "_blank"
10
12
  }
@@ -1,3 +1,11 @@
1
1
  {
2
- "lastUpdated": "1900-01-31"
2
+ "lastUpdated": "1900-01-31",
3
+ "classes": "mb-64",
4
+ "backToTop": {
5
+ "hide_back_to_top": false,
6
+ "directionalLink": {
7
+ "label": "Back to top",
8
+ "href": "#"
9
+ }
10
+ }
3
11
  }
@@ -1,48 +1,53 @@
1
1
  {
2
- "questionLabel": "Which service do you need?",
3
- "optionalLabel": "(Optional)",
4
- "hintLabel": "Hint label",
5
- "listClasses": "field-required",
6
- "listitems": [
7
- {
8
- "type": "checkbox",
9
- "id": "checkboxItem1",
10
- "name": "checkboxOption",
11
- "label": "Option 1",
12
- "value": "1",
13
- "isDisabled": false
14
- },
15
- {
16
- "type": "checkbox",
17
- "id": "checkboxItem2",
18
- "name": "checkboxOption",
19
- "label": "Option 2",
20
- "value": "2",
21
- "isDisabled": false
22
- },
23
- {
24
- "type": "checkbox",
25
- "id": "checkboxItem3",
26
- "name": "checkboxOption",
27
- "label": "Option 3",
28
- "value": "3",
29
- "isDisabled": false
30
- },
31
- {
32
- "type": "checkbox",
33
- "id": "checkboxItem4",
34
- "name": "checkboxOption",
35
- "label": "Option 4",
36
- "value": "4",
37
- "isDisabled": false
38
- },
39
- {
40
- "type": "checkbox",
41
- "id": "checkboxItem5",
42
- "name": "checkboxOption",
43
- "label": "Disabled",
44
- "value": "",
45
- "isDisabled": true
46
- }
47
- ]
2
+ "questionLabel": "Which service do you need?",
3
+ "optionalLabel": "(Optional)",
4
+ "hintLabel": "Hint label",
5
+ "listClasses": "field-required",
6
+ "listitems": [
7
+ {
8
+ "type": "checkbox",
9
+ "id": "checkboxItem1",
10
+ "name": "checkboxOption",
11
+ "label": "Option 1",
12
+ "value": "1",
13
+ "isDisabled": false,
14
+ "isChecked": false
15
+ },
16
+ {
17
+ "type": "checkbox",
18
+ "id": "checkboxItem2",
19
+ "name": "checkboxOption",
20
+ "label": "Option 2",
21
+ "value": "2",
22
+ "isDisabled": false,
23
+ "isChecked": false
24
+ },
25
+ {
26
+ "type": "checkbox",
27
+ "id": "checkboxItem3",
28
+ "name": "checkboxOption",
29
+ "label": "Option 3",
30
+ "value": "3",
31
+ "isDisabled": false,
32
+ "isChecked": false
33
+ },
34
+ {
35
+ "type": "checkbox",
36
+ "id": "checkboxItem4",
37
+ "name": "checkboxOption",
38
+ "label": "Option 4",
39
+ "value": "4",
40
+ "isDisabled": false,
41
+ "isChecked": true
42
+ },
43
+ {
44
+ "type": "checkbox",
45
+ "id": "checkboxItem5",
46
+ "name": "checkboxOption",
47
+ "label": "Disabled",
48
+ "value": "",
49
+ "isDisabled": true,
50
+ "isChecked": false
51
+ }
52
+ ]
48
53
  }
@@ -1,48 +1,53 @@
1
1
  {
2
- "questionLabel": "Which service do you need?",
3
- "optionalLabel": "(Optional)",
4
- "hintLabel": "Hint label",
5
- "listClasses": "field-required",
6
- "listitems": [
7
- {
8
- "type": "radio",
9
- "id": "radioItem1",
10
- "name": "radioOption",
11
- "label": "Option 1",
12
- "value": "1",
13
- "isDisabled": false
14
- },
15
- {
16
- "type": "radio",
17
- "id": "radioItem2",
18
- "name": "radioOption",
19
- "label": "Option 2",
20
- "value": "2",
21
- "isDisabled": false
22
- },
23
- {
24
- "type": "radio",
25
- "id": "radioItem3",
26
- "name": "radioOption",
27
- "label": "Option 3",
28
- "value": "3",
29
- "isDisabled": false
30
- },
31
- {
32
- "type": "radio",
33
- "id": "radioItem4",
34
- "name": "radioOption",
35
- "label": "Option 4",
36
- "value": "4",
37
- "isDisabled": false
38
- },
39
- {
40
- "type": "radio",
41
- "id": "radioItem5",
42
- "name": "radioOption",
43
- "label": "Disabled",
44
- "value": "",
45
- "isDisabled": true
46
- }
47
- ]
2
+ "questionLabel": "Which service do you need?",
3
+ "optionalLabel": "(Optional)",
4
+ "hintLabel": "Hint label",
5
+ "listClasses": "field-required",
6
+ "listitems": [
7
+ {
8
+ "type": "radio",
9
+ "id": "radioItem1",
10
+ "name": "radioOption",
11
+ "label": "Option 1",
12
+ "value": "1",
13
+ "isDisabled": false,
14
+ "isChecked": false
15
+ },
16
+ {
17
+ "type": "radio",
18
+ "id": "radioItem2",
19
+ "name": "radioOption",
20
+ "label": "Option 2",
21
+ "value": "2",
22
+ "isDisabled": false,
23
+ "isChecked": false
24
+ },
25
+ {
26
+ "type": "radio",
27
+ "id": "radioItem3",
28
+ "name": "radioOption",
29
+ "label": "Option 3",
30
+ "value": "3",
31
+ "isDisabled": false,
32
+ "isChecked": true
33
+ },
34
+ {
35
+ "type": "radio",
36
+ "id": "radioItem4",
37
+ "name": "radioOption",
38
+ "label": "Option 4",
39
+ "value": "4",
40
+ "isDisabled": false,
41
+ "isChecked": false
42
+ },
43
+ {
44
+ "type": "radio",
45
+ "id": "radioItem5",
46
+ "name": "radioOption",
47
+ "label": "Disabled",
48
+ "value": "",
49
+ "isDisabled": true,
50
+ "isChecked": false
51
+ }
52
+ ]
48
53
  }
@@ -0,0 +1,77 @@
1
+ {
2
+ "default": {
3
+ "url": "",
4
+ "id": "",
5
+ "label": "Document title (PDF 2.5 MB)",
6
+ "target": "_self",
7
+ "arialabel": "Document title (PDF 2.5 MB)",
8
+ "iconClass": "qld-icon-document-pdf",
9
+ "iconPosition": "leading",
10
+ "download": null
11
+ },
12
+ "linkGroup": {
13
+ "title": "Link group title",
14
+ "linkList": [
15
+ {
16
+ "url": "",
17
+ "id": "doc-1",
18
+ "label": "Document title (DOC 2.5 MB)",
19
+ "target": "_self",
20
+ "arialabel": "Document title (DOC 2.5 MB)",
21
+ "iconClass": "qld-icon-document-word",
22
+ "iconPosition": "leading",
23
+ "download": null
24
+ },
25
+ {
26
+ "url": "",
27
+ "id": "doc-2",
28
+ "label": "JPG image file (JPG 2.5 KB)",
29
+ "target": "_self",
30
+ "arialabel": "JPG image file (JPG 2.5 KB)",
31
+ "iconClass": "qld-icon-image",
32
+ "iconPosition": "leading",
33
+ "download": null
34
+ },
35
+ {
36
+ "url": "",
37
+ "id": "doc-3",
38
+ "label": "PNG image file (PNG 2.5 KB)",
39
+ "target": "_self",
40
+ "arialabel": "PNG image file (PNG 2.5 KB)",
41
+ "iconClass": "qld-icon-image",
42
+ "iconPosition": "leading",
43
+ "download": null
44
+ },
45
+ {
46
+ "url": "",
47
+ "id": "doc-4",
48
+ "label": "Document title (PDF 2.5 MB)",
49
+ "target": "_self",
50
+ "arialabel": "Document title (PDF 2.5 MB)",
51
+ "iconClass": "qld-icon-document-pdf",
52
+ "iconPosition": "leading",
53
+ "download": null
54
+ },
55
+ {
56
+ "url": "",
57
+ "id": "doc-5",
58
+ "label": "Document title (CSV 2.5 MB)",
59
+ "target": "_self",
60
+ "arialabel": "Document title (CSV 2.5 MB)",
61
+ "iconClass": "qld-icon-document-spreadsheet",
62
+ "iconPosition": "leading",
63
+ "download": null
64
+ },
65
+ {
66
+ "url": "",
67
+ "id": "doc-6",
68
+ "label": "Document title (PDF 2.5 MB)",
69
+ "target": "_self",
70
+ "arialabel": "Document title (PDF 2.5 MB)",
71
+ "iconClass": "qld-icon-document-pdf",
72
+ "iconPosition": "leading",
73
+ "download": null
74
+ }
75
+ ]
76
+ }
77
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "logo": "coa-landscape",
3
+ "fill": "currentColor",
4
+ "width": "",
5
+ "className": ""
6
+ }