@qld-gov-au/qgds-bootstrap5 2.1.9 → 2.1.11

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 (182) hide show
  1. package/.esbuild/plugins/qgds-plugin-story-list-builder.js +112 -0
  2. package/.storybook/DocumentationTemplate.mdx +47 -0
  3. package/.storybook/addons/qgds-multi-code-panels/components/Panel.tsx +231 -0
  4. package/.storybook/addons/qgds-multi-code-panels/constants.js +8 -0
  5. package/.storybook/addons/qgds-multi-code-panels/manager.tsx +15 -0
  6. package/.storybook/addons/qgds-multi-code-panels/preset.js +12 -0
  7. package/.storybook/codeRefsDecorator.js +87 -0
  8. package/.storybook/customMDXComponents.jsx +284 -0
  9. package/.storybook/main.mjs +16 -11
  10. package/.storybook/manager.js +2 -2
  11. package/.storybook/preview.js +39 -1
  12. package/dist/assets/components/bs5/directionLinks/directionLinks.hbs +0 -1
  13. package/dist/assets/components/bs5/head/head.hbs +1 -1
  14. package/dist/assets/components/bs5/pagination/pagination.hbs +0 -7
  15. package/dist/assets/css/qld.bootstrap.css +2 -2
  16. package/dist/assets/css/qld.bootstrap.css.map +3 -3
  17. package/dist/assets/css/qld.bootstrap.legacy.css +2 -2
  18. package/dist/assets/css/qld.bootstrap.legacy.css.map +3 -3
  19. package/dist/assets/js/handlebars.helpers.bundle.js +1 -1
  20. package/dist/assets/js/handlebars.helpers.bundle.js.map +2 -2
  21. package/dist/assets/js/handlebars.init.min.js +3 -11
  22. package/dist/assets/js/handlebars.init.min.js.map +2 -2
  23. package/dist/assets/js/handlebars.partials.js +3 -11
  24. package/dist/assets/js/handlebars.partials.js.map +2 -2
  25. package/dist/assets/js/qld.bootstrap.min.js +1 -1
  26. package/dist/assets/node/handlebars.init.min.js +2 -10
  27. package/dist/assets/node/handlebars.init.min.js.map +2 -2
  28. package/dist/components/bs5/directionLinks/directionLinks.hbs +0 -1
  29. package/dist/components/bs5/head/head.hbs +1 -1
  30. package/dist/components/bs5/pagination/pagination.hbs +0 -7
  31. package/dist/package.json +8 -7
  32. package/dist/sample-data/sidenav/sidenav.data.json +1 -7
  33. package/esbuild.js +2 -0
  34. package/package.json +8 -7
  35. package/src/components/bs5/accordion/accordion.stories.js +6 -13
  36. package/src/components/bs5/accordion/metadata.json +15 -0
  37. package/src/components/bs5/backToTop/backToTop.stories.js +10 -14
  38. package/src/components/bs5/backToTop/manifest.json +15 -0
  39. package/src/components/bs5/backToTop/metadata.json +15 -0
  40. package/src/components/bs5/banner/banner.stories.js +16 -1
  41. package/src/components/bs5/banner/metadata.json +16 -0
  42. package/src/components/bs5/blockquote/blockquote.stories.js +20 -11
  43. package/src/components/bs5/blockquote/metadata.json +15 -0
  44. package/src/components/bs5/breadcrumbs/breadcrumbs.stories.js +6 -4
  45. package/src/components/bs5/breadcrumbs/metadata.json +16 -0
  46. package/src/components/bs5/button/button.stories.js +13 -5
  47. package/src/components/bs5/button/metadata.json +15 -0
  48. package/src/components/bs5/callToAction/callToAction.stories.js +6 -5
  49. package/src/components/bs5/callToAction/metadata.json +15 -0
  50. package/src/components/bs5/callout/callout.stories.js +6 -5
  51. package/src/components/bs5/callout/metadata.json +16 -0
  52. package/src/components/bs5/card/card--icon-list-footer.stories.js +4 -4
  53. package/src/components/bs5/card/card--multi-action.stories.js +6 -0
  54. package/src/components/bs5/card/card--no-action.stories.js +7 -0
  55. package/src/components/bs5/card/card--single-action.stories.js +7 -0
  56. package/src/components/bs5/card/metadata.json +15 -0
  57. package/src/components/bs5/containerLayout/containerLayout.stories.js +6 -0
  58. package/src/components/bs5/containerLayout/metadata.json +1 -0
  59. package/src/components/bs5/contentFooter/contentFooter.stories.js +26 -20
  60. package/src/components/bs5/contentFooter/metadata.json +15 -0
  61. package/src/components/bs5/correctincorrect/correctincorrect.stories.js +53 -38
  62. package/src/components/bs5/correctincorrect/metadata.json +14 -0
  63. package/src/components/bs5/dateinput/Dateinput.stories.js +6 -0
  64. package/src/components/bs5/dateinput/metadata.json +14 -0
  65. package/src/components/bs5/directionLinks/directionLinks.hbs +0 -1
  66. package/src/components/bs5/directionLinks/directionLinks.stories.js +4 -4
  67. package/src/components/bs5/directionLinks/metadata.json +16 -0
  68. package/src/components/bs5/footer/footer.stories.js +7 -1
  69. package/src/components/bs5/footer/metadata.json +15 -0
  70. package/src/components/bs5/formcheck/metadata.json +15 -0
  71. package/src/components/bs5/formcheck/stories/checkbox/checkbox.stories.js +5 -1
  72. package/src/components/bs5/formcheck/stories/radio/radio.stories.js +12 -1
  73. package/src/components/bs5/globalAlert/globalAlert.stories.js +9 -0
  74. package/src/components/bs5/globalAlert/metadata.json +15 -0
  75. package/src/components/bs5/head/head.stories.js +33 -14
  76. package/src/components/bs5/header/header.stories.js +10 -0
  77. package/src/components/bs5/header/metadata.json +15 -0
  78. package/src/components/bs5/icons/icons.stories.js +5 -0
  79. package/src/components/bs5/icons/metadata.json +15 -0
  80. package/src/components/bs5/image/image.stories.js +9 -0
  81. package/src/components/bs5/image/metadata.json +15 -0
  82. package/src/components/bs5/inpageAlert/inpageAlert.stories.js +9 -2
  83. package/src/components/bs5/inpageAlert/metadata.json +15 -0
  84. package/src/components/bs5/inpagenav/inpagenav.stories.js +8 -1
  85. package/src/components/bs5/inpagenav/metadata.json +15 -0
  86. package/src/components/bs5/link/link.stories.js +5 -5
  87. package/src/components/bs5/link/metadata.json +15 -0
  88. package/src/components/bs5/linkColumns/linkColumns.stories.js +4 -4
  89. package/src/components/bs5/linkColumns/metadata.json +15 -0
  90. package/src/components/bs5/logo/logo.stories.js +40 -5
  91. package/src/components/bs5/logo/metadata.json +16 -0
  92. package/src/components/bs5/metaDcTerms/metaDcTerms.stories.js +14 -9
  93. package/src/components/bs5/metaOpenGraph/metaOpenGraph.stories.js +14 -9
  94. package/src/components/bs5/modal/metadata.json +15 -0
  95. package/src/components/bs5/modal/modal.stories.js +64 -60
  96. package/src/components/bs5/navbar/metadata.json +15 -0
  97. package/src/components/bs5/navbar/navbar.stories.js +9 -4
  98. package/src/components/bs5/pageLayout/metadata.json +1 -0
  99. package/src/components/bs5/pageLayout/pageLayout.stories.js +1 -0
  100. package/src/components/bs5/pagination/metadata.json +15 -0
  101. package/src/components/bs5/pagination/pagination.hbs +0 -7
  102. package/src/components/bs5/pagination/pagination.stories.js +5 -0
  103. package/src/components/bs5/promotionalPanel/metadata.json +15 -0
  104. package/src/components/bs5/promotionalPanel/promotionalPanel.stories.js +4 -4
  105. package/src/components/bs5/quickexit/metadata.json +15 -0
  106. package/src/components/bs5/quickexit/quickexit.stories.js +7 -0
  107. package/src/components/bs5/searchInput/metadata.json +15 -0
  108. package/src/components/bs5/searchInput/searchInput.stories.js +5 -0
  109. package/src/components/bs5/select/Select.stories.js +8 -1
  110. package/src/components/bs5/select/metadata.json +15 -0
  111. package/src/components/bs5/sidenav/metadata.json +15 -0
  112. package/src/components/bs5/sidenav/sidenav.data.json +1 -7
  113. package/src/components/bs5/sidenav/sidenav.scss +5 -6
  114. package/src/components/bs5/sidenav/sidenav.stories.js +5 -0
  115. package/src/components/bs5/skiplinks/skipLinks.stories.js +5 -0
  116. package/src/components/bs5/spinner/Spinner.stories.js +8 -0
  117. package/src/components/bs5/spinner/metadata.json +15 -0
  118. package/src/components/bs5/table/metadata.json +15 -0
  119. package/src/components/bs5/table/table.stories.js +139 -61
  120. package/src/components/bs5/tabs/metadata.json +15 -0
  121. package/src/components/bs5/tabs/tabs.stories.js +8 -0
  122. package/src/components/bs5/tag/metadata.json +15 -0
  123. package/src/components/bs5/tag/tag--large.stories.js +7 -0
  124. package/src/components/bs5/tag/tag--standard.stories.js +12 -5
  125. package/src/components/bs5/tag/tag--status.stories.js +4 -0
  126. package/src/components/bs5/tag/tag.stories.js +10 -0
  127. package/src/components/bs5/textarea/Textarea.stories.js +8 -1
  128. package/src/components/bs5/textarea/metadata.json +15 -0
  129. package/src/components/bs5/textbox/Textbox.stories.js +11 -1
  130. package/src/components/bs5/textbox/metadata.json +15 -0
  131. package/src/components/bs5/typography/metadata.json +1 -0
  132. package/src/components/bs5/typography/typography.stories.js +4 -0
  133. package/src/components/bs5/video/metadata.json +15 -0
  134. package/src/components/bs5/video/video.stories.js +5 -5
  135. package/src/components/common/focus-styles/focusStyles.stories.js +13 -9
  136. package/src/js/QGDSComponent.js +0 -1
  137. package/src/js/handlebars.helpers.js +1 -0
  138. package/src/stories/Introduction/development.mdx +136 -0
  139. package/src/stories/Introduction/how-to-use.mdx +272 -0
  140. package/src/stories/Introduction.mdx +95 -13
  141. package/src/{components/bs5/accordion/Accordion.mdx → stories/archive/__Accordion.mdx} +3 -3
  142. package/src/stories/archive/__Blockquote.mdx +13 -0
  143. package/src/stories/archive/__BlockquoteCanvas.mdx +47 -0
  144. package/src/stories/archive/__backToTop.orig.mdx +13 -0
  145. package/src/stories/archive/__blockquote.stories.bak.js +132 -0
  146. package/src/stories/component-list.json +627 -0
  147. package/src/templates/data/component.metadata.template.json +15 -0
  148. package/src/templates/index.html +40 -37
  149. /package/src/{components/bs5/banner/Banner.mdx → stories/archive/__Banner.mdx} +0 -0
  150. /package/src/{components/bs5/blockquote/Blockquote.mdx → stories/archive/__Blockquote.bak.mdx} +0 -0
  151. /package/src/{components/bs5/breadcrumbs/Breadcrumbs.mdx → stories/archive/__Breadcrumbs.mdx} +0 -0
  152. /package/src/{components/bs5/button/Button.mdx → stories/archive/__Button.mdx} +0 -0
  153. /package/src/{components/bs5/callout/Callout.mdx → stories/archive/__Callout.mdx} +0 -0
  154. /package/src/{components/bs5/card/Card.mdx → stories/archive/__Card.mdx} +0 -0
  155. /package/src/{components/bs5/formcheck/stories/checkbox/Checkbox.mdx → stories/archive/__Checkbox.mdx} +0 -0
  156. /package/src/{components/bs5/dateinput/Dateinput.mdx → stories/archive/__Dateinput.mdx} +0 -0
  157. /package/src/{components/bs5/directionLinks/DirectionLinks.mdx → stories/archive/__DirectionLinks.mdx} +0 -0
  158. /package/src/{components/bs5/footer/Footer.mdx → stories/archive/__Footer.mdx} +0 -0
  159. /package/src/{components/bs5/globalAlert/GlobalAlert.mdx → stories/archive/__GlobalAlert.mdx} +0 -0
  160. /package/src/{components/bs5/header/Header.mdx → stories/archive/__Header.mdx} +0 -0
  161. /package/src/{components/bs5/image/Image.mdx → stories/archive/__Image.mdx} +0 -0
  162. /package/src/{components/bs5/inpageAlert/InpageAlert.mdx → stories/archive/__InpageAlert.mdx} +0 -0
  163. /package/src/{components/bs5/inpagenav/Inpagenav.mdx → stories/archive/__Inpagenav.mdx} +0 -0
  164. /package/src/{components/bs5/logo/Logo.mdx → stories/archive/__Logo.mdx} +0 -0
  165. /package/src/{components/bs5/modal/Modal.mdx → stories/archive/__Modal.mdx} +0 -0
  166. /package/src/{components/bs5/pagination/Pagination.mdx → stories/archive/__Pagination.mdx} +0 -0
  167. /package/src/{components/bs5/promotionalPanel/PromotionalPanel.mdx → stories/archive/__PromotionalPanel.mdx} +0 -0
  168. /package/src/{components/bs5/formcheck/stories/radio/Radio.mdx → stories/archive/__Radio.mdx} +0 -0
  169. /package/src/{components/bs5/searchInput/SearchInput.mdx → stories/archive/__SearchInput.mdx} +0 -0
  170. /package/src/{components/bs5/sidenav/Sidenav.mdx → stories/archive/__Sidenav.mdx} +0 -0
  171. /package/src/{components/bs5/skiplinks/SkipLinks.mdx → stories/archive/__SkipLinks.mdx} +0 -0
  172. /package/src/{components/bs5/table/Table.mdx → stories/archive/__Table.mdx} +0 -0
  173. /package/src/{components/bs5/tabs/Tabs.mdx → stories/archive/__Tabs.mdx} +0 -0
  174. /package/src/{components/bs5/tag/Tag.mdx → stories/archive/__Tag.mdx} +0 -0
  175. /package/src/{components/bs5/typography/Typography.mdx → stories/archive/__Typography.mdx} +0 -0
  176. /package/src/{components/bs5/video/Video.mdx → stories/archive/__Video.mdx} +0 -0
  177. /package/src/{components/bs5/backToTop/backToTop.mdx → stories/archive/__backToTop.mdx} +0 -0
  178. /package/src/{components/bs5/callToAction/callToAction.mdx → stories/archive/__callToAction.mdx} +0 -0
  179. /package/src/{components/bs5/accordion/mdx/_designResources.mdx → stories/archive/__designResources.mdx} +0 -0
  180. /package/src/{components/bs5/link/link.mdx → stories/archive/__link.mdx} +0 -0
  181. /package/src/{components/bs5/linkColumns/linkColumns.mdx → stories/archive/__linkColumns.mdx} +0 -0
  182. /package/src/{components/bs5/accordion/mdx/_usageInstructions.mdx → stories/archive/__usageInstructions.mdx} +0 -0
@@ -0,0 +1,627 @@
1
+ [
2
+ {
3
+ "id": "qgds-accordion",
4
+ "title": "Accordion",
5
+ "title_uikit": "Accordion",
6
+ "type": "Component",
7
+ "scope": "Core",
8
+ "group": "Components",
9
+ "status": "Published",
10
+ "description": "",
11
+ "refs": {
12
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-98109&p=f&t=GROIooMNoyn7sZDF-0",
13
+ "website": "https://www.designsystem.qld.gov.au/components/accordion"
14
+ },
15
+ "storyTitle": "3. Components/Accordion",
16
+ "storyPath": "/docs/3-components-accordion"
17
+ },
18
+ {
19
+ "id": "qgds-back-to-top",
20
+ "title": "Back to top",
21
+ "title_uikit": "Back to top",
22
+ "type": "Pattern",
23
+ "scope": "Core",
24
+ "group": "Components",
25
+ "status": "Published",
26
+ "description": "",
27
+ "refs": {
28
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=120353-3948&t=beW2nmeyEGkeoezl-0",
29
+ "website": "https://www.designsystem.qld.gov.au/components/back-to-top"
30
+ },
31
+ "storyTitle": "3. Components/Back to Top",
32
+ "storyPath": "/docs/3-components-back-to-top"
33
+ },
34
+ {
35
+ "id": "qgds-banner",
36
+ "title": "Banners (Default)",
37
+ "title_uikit": "Banners",
38
+ "type": "Component",
39
+ "scope": "Core",
40
+ "group": "Components",
41
+ "status": "Published",
42
+ "description": "Banners are used to introduce a page, their content should reflect the goals, content and purpose of the page they're on.",
43
+ "refs": {
44
+ "title_uikit": "Banner",
45
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=6992-107232&t=1PNeXYXdepnDeW4g-0",
46
+ "website": "https://www.designsystem.qld.gov.au/components/banners"
47
+ },
48
+ "storyTitle": "Banner link 1",
49
+ "storyPath": "/docs/banner-link-1"
50
+ },
51
+ {
52
+ "id": "qgds-blockquote",
53
+ "title": "Blockquote",
54
+ "title_uikit": "Callout and Blockquote",
55
+ "type": "Component",
56
+ "scope": "Core",
57
+ "group": "Callouts",
58
+ "status": "Published",
59
+ "description": "",
60
+ "refs": {
61
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=120360-73541&t=yBoHyNGNM1kMkPfC-0",
62
+ "website": "https://www.designsystem.qld.gov.au/components/callouts"
63
+ },
64
+ "storyTitle": "3. Components/Blockquote",
65
+ "storyPath": "/docs/3-components-blockquote"
66
+ },
67
+ {
68
+ "id": "qgds-breadcrumbs",
69
+ "title": "Breadcrumbs",
70
+ "title_uikit": "Breadcrumbs",
71
+ "type": "Component",
72
+ "scope": "Core",
73
+ "group": "Navigation",
74
+ "status": "Published",
75
+ "description": "",
76
+ "refs": {
77
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-98076&p=f&t=GROIooMNoyn7sZDF-0",
78
+ "website": "https://www.designsystem.qld.gov.au/components/breadcrumbs",
79
+ "storybook": ""
80
+ },
81
+ "storyTitle": "2. Layout/Breadcrumbs",
82
+ "storyPath": "/docs/2-layout-breadcrumbs"
83
+ },
84
+ {
85
+ "id": "qgds-button",
86
+ "title": "Buttons",
87
+ "title_uikit": "Buttons",
88
+ "type": "Component",
89
+ "scope": "Core",
90
+ "group": "Forms",
91
+ "status": "Published",
92
+ "description": "",
93
+ "refs": {
94
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-98058&p=f&t=1PNeXYXdepnDeW4g-0",
95
+ "website": "https://www.designsystem.qld.gov.au/components/buttons"
96
+ },
97
+ "storyTitle": "3. Components/Button",
98
+ "storyPath": "/docs/3-components-button"
99
+ },
100
+ {
101
+ "id": "qgds-button-cta",
102
+ "title": "Call to action",
103
+ "title_uikit": "Call-to-action",
104
+ "type": "Component",
105
+ "scope": "Core",
106
+ "group": "Navigation",
107
+ "status": "Published",
108
+ "description": "",
109
+ "refs": {
110
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=120360-77029&t=72ZKZxpVAzz6DIVf-0",
111
+ "website": "https://www.designsystem.qld.gov.au/components/call-to-action-cta"
112
+ },
113
+ "storyTitle": "3. Components/CallToAction",
114
+ "storyPath": "/docs/3-components-calltoaction"
115
+ },
116
+ {
117
+ "id": "qgds-callout",
118
+ "title": "Callout",
119
+ "title_uikit": "Callout and Blockquote",
120
+ "type": "Component",
121
+ "scope": "Core",
122
+ "group": "Alerts",
123
+ "status": "Published",
124
+ "description": "",
125
+ "refs": {
126
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-98115&p=f&t=1PNeXYXdepnDeW4g-0",
127
+ "website": "https://www.designsystem.qld.gov.au/components/callouts",
128
+ "storybook": ""
129
+ },
130
+ "storyTitle": "3. Components/Callout",
131
+ "storyPath": "/docs/3-components-callout"
132
+ },
133
+ {
134
+ "id": "qgds-card",
135
+ "title": "Cards",
136
+ "title_uikit": "Cards",
137
+ "type": "Component",
138
+ "scope": "Core",
139
+ "group": "Components",
140
+ "status": "Published",
141
+ "description": "",
142
+ "refs": {
143
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=10811-221416&t=1PNeXYXdepnDeW4g-0",
144
+ "website": "https://www.designsystem.qld.gov.au/components/card"
145
+ },
146
+ "storyTitle": "3. Components/Card/Icon List Footer",
147
+ "storyPath": "/docs/3-components-card-icon-list-footer"
148
+ },
149
+ {
150
+ "id": "qgds-content-footer",
151
+ "title": "Content Footer",
152
+ "title_uikit": "",
153
+ "type": "Pattern",
154
+ "scope": "",
155
+ "group": "Components",
156
+ "status": "Published",
157
+ "description": "",
158
+ "refs": {
159
+ "uikit": "",
160
+ "website": ""
161
+ },
162
+ "storyTitle": "3. Components/Content Footer",
163
+ "storyPath": "/docs/3-components-content-footer"
164
+ },
165
+ {
166
+ "id": "qgds-correct-incorrect",
167
+ "title": "Correct/Incorrect",
168
+ "type": "Pattern",
169
+ "group": "Components",
170
+ "status": "Published",
171
+ "description": "The correct/incorrect pattern is used to inform responses or actions the user should take.",
172
+ "refs": {
173
+ "uikit": "",
174
+ "website": ""
175
+ },
176
+ "storyTitle": "3. Components/CorrectIncorrect",
177
+ "storyPath": "/docs/3-components-correctincorrect"
178
+ },
179
+ {
180
+ "id": "qgds-input-date",
181
+ "title": "Date Input",
182
+ "type": "Component",
183
+ "group": "Components",
184
+ "status": "Published",
185
+ "description": "The date input component consists of 3 separate text fields that accept DD, MM and YYYY values respectively.",
186
+ "refs": {
187
+ "uikit": "",
188
+ "website": ""
189
+ },
190
+ "storyTitle": "3. Components/Forms/Dateinput",
191
+ "storyPath": "/docs/3-components-forms-dateinput"
192
+ },
193
+ {
194
+ "id": "qgds-direction-link",
195
+ "title": "Direction link",
196
+ "title_uikit": "Direction links",
197
+ "type": "Component",
198
+ "scope": "Core",
199
+ "group": "Navigation",
200
+ "status": "Published",
201
+ "description": "",
202
+ "refs": {
203
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=11056-321363&p=f&t=1PNeXYXdepnDeW4g-0",
204
+ "website": "https://www.designsystem.qld.gov.au/components/direction-links",
205
+ "storybook": ""
206
+ },
207
+ "storyTitle": "3. Components/Direction Links",
208
+ "storyPath": "/docs/3-components-direction-links"
209
+ },
210
+ {
211
+ "id": "qgds-footer",
212
+ "title": "Footer",
213
+ "title_uikit": "Footer",
214
+ "type": "Pattern",
215
+ "scope": "Core",
216
+ "group": "Layout",
217
+ "status": "Published",
218
+ "description": "",
219
+ "refs": {
220
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-97582&p=f&t=1PNeXYXdepnDeW4g-0",
221
+ "website": "https://www.designsystem.qld.gov.au/components/footer"
222
+ },
223
+ "storyTitle": "2. Layout/Footer",
224
+ "storyPath": "/docs/2-layout-footer"
225
+ },
226
+ {
227
+ "id": "qgds-input-formcheck",
228
+ "title": "Formcheck",
229
+ "title_uikit": "Radio and checkbox buttons",
230
+ "type": "Component",
231
+ "scope": "Core",
232
+ "group": "Forms",
233
+ "status": "Published",
234
+ "description": "",
235
+ "refs": {
236
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=11056-321348&p=f&t=1PNeXYXdepnDeW4g-0",
237
+ "website": "https://www.designsystem.qld.gov.au/components/checkboxes"
238
+ },
239
+ "storyTitle": null,
240
+ "storyPath": null
241
+ },
242
+ {
243
+ "id": "qgds-alert-global",
244
+ "title": "Global alert",
245
+ "title_uikit": "Alerts (global)",
246
+ "type": "Component",
247
+ "scope": "Core",
248
+ "group": "Callouts",
249
+ "status": "Published",
250
+ "description": "",
251
+ "refs": {
252
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-97590&p=f&t=GROIooMNoyn7sZDF-0",
253
+ "website": "https://www.designsystem.qld.gov.au/components/alerts-global"
254
+ },
255
+ "storyTitle": "3. Components/Global Alert",
256
+ "storyPath": "/docs/3-components-global-alert"
257
+ },
258
+ {
259
+ "id": "qgds-header",
260
+ "title": "Header",
261
+ "title_uikit": "Header",
262
+ "type": "Pattern",
263
+ "scope": "Core",
264
+ "group": "Layout",
265
+ "status": "Published",
266
+ "description": "",
267
+ "refs": {
268
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-97586&p=f&t=1PNeXYXdepnDeW4g-0",
269
+ "website": "https://www.designsystem.qld.gov.au/components/header"
270
+ },
271
+ "storyTitle": "2. Layout/Header",
272
+ "storyPath": "/docs/2-layout-header"
273
+ },
274
+ {
275
+ "id": "qgds-icon-links",
276
+ "title": "Icon Links",
277
+ "title_uikit": "Icon links",
278
+ "type": "Component",
279
+ "scope": "Extended",
280
+ "group": "Components",
281
+ "status": "Published",
282
+ "description": "",
283
+ "refs": {
284
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=12900-201779&p=f&t=lX0AsFvCDF1u9JbC-0",
285
+ "website": ""
286
+ },
287
+ "storyTitle": "3. Components/Link",
288
+ "storyPath": "/docs/3-components-link"
289
+ },
290
+ {
291
+ "id": "qgds-icons",
292
+ "title": "Icons",
293
+ "title_uikit": "Icons",
294
+ "type": "Pattern",
295
+ "scope": "Core",
296
+ "group": "Components",
297
+ "status": "Published",
298
+ "description": "",
299
+ "refs": {
300
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=78442-34904&t=1hdwEIoZGw3tawaE-0",
301
+ "website": ""
302
+ },
303
+ "storyTitle": "1. Core Styles/Iconography",
304
+ "storyPath": "/docs/1-core-styles-iconography"
305
+ },
306
+ {
307
+ "id": "qgds-image",
308
+ "title": "Image",
309
+ "title_uikit": "Imagery",
310
+ "type": "Pattern",
311
+ "scope": "Core",
312
+ "group": "Components",
313
+ "status": "Published",
314
+ "description": "",
315
+ "refs": {
316
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=23805-301812&t=1hdwEIoZGw3tawaE-0",
317
+ "website": ""
318
+ },
319
+ "storyTitle": "3. Components/Image",
320
+ "storyPath": "/docs/3-components-image"
321
+ },
322
+ {
323
+ "id": "qgds-alert-inpage",
324
+ "title": "In-page alert",
325
+ "title_uikit": "Alert (in-page)",
326
+ "type": "Component",
327
+ "scope": "Core",
328
+ "group": "Alerts",
329
+ "status": "Published",
330
+ "description": "",
331
+ "refs": {
332
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-98125&p=f&t=GROIooMNoyn7sZDF-0",
333
+ "website": ""
334
+ },
335
+ "storyTitle": "3. Components/In-page Alert",
336
+ "storyPath": "/docs/3-components-in-page-alert"
337
+ },
338
+ {
339
+ "id": "qgds-link-columns",
340
+ "title": "Link columns",
341
+ "title_uikit": "Link columns",
342
+ "type": "Component",
343
+ "scope": "Core",
344
+ "group": "Navigation",
345
+ "status": "Published",
346
+ "description": "",
347
+ "refs": {
348
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=11056-321574&p=f&t=1PNeXYXdepnDeW4g-0",
349
+ "website": "https://www.designsystem.qld.gov.au/components/link-columns-link-list"
350
+ },
351
+ "storyTitle": "3. Components/Link Columns",
352
+ "storyPath": "/docs/3-components-link-columns"
353
+ },
354
+ {
355
+ "id": "qgds-loading-spinner",
356
+ "title": "Loading spinner",
357
+ "title_uikit": "Loading spinner",
358
+ "type": "Component",
359
+ "scope": "Core",
360
+ "group": "Components",
361
+ "status": "Published",
362
+ "description": "",
363
+ "refs": {
364
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=49314-16705&p=f&t=1PNeXYXdepnDeW4g-0",
365
+ "website": "https://www.designsystem.qld.gov.au/components/loading-spinner"
366
+ },
367
+ "storyTitle": "3. Components/Spinner",
368
+ "storyPath": "/docs/3-components-spinner"
369
+ },
370
+ {
371
+ "id": "qgds-modal",
372
+ "title": "Modal",
373
+ "title_uikit": "Modals",
374
+ "type": "Pattern",
375
+ "scope": "Core",
376
+ "group": "Components",
377
+ "status": "Published",
378
+ "description": "",
379
+ "refs": {
380
+ "uikit": "",
381
+ "website": ""
382
+ },
383
+ "storyTitle": "3. Components/Modal",
384
+ "storyPath": "/docs/3-components-modal"
385
+ },
386
+ {
387
+ "id": "qgds-horizontal-navigation",
388
+ "title": "Navigation (horizontal)",
389
+ "title_uikit": "Navigation (horizontal)",
390
+ "type": "Component",
391
+ "scope": "Core",
392
+ "group": "Navigation",
393
+ "status": "Published",
394
+ "description": "",
395
+ "refs": {
396
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-97604&p=f&t=1PNeXYXdepnDeW4g-0",
397
+ "website": ""
398
+ },
399
+ "storyTitle": "3. Components/Navbar",
400
+ "storyPath": "/docs/3-components-navbar"
401
+ },
402
+ {
403
+ "id": "qgds-inpage-navigation",
404
+ "title": "Page navigation",
405
+ "title_uikit": "In-page navigation",
406
+ "type": "Component",
407
+ "scope": "Core",
408
+ "group": "Navigation",
409
+ "status": "Published",
410
+ "description": "",
411
+ "refs": {
412
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=7905-252906&p=f&t=1PNeXYXdepnDeW4g-0",
413
+ "website": "https://www.designsystem.qld.gov.au/components/pagination"
414
+ },
415
+ "storyTitle": "3. Components/In-page Nav",
416
+ "storyPath": "/docs/3-components-in-page-nav"
417
+ },
418
+ {
419
+ "id": "qgds-pagination",
420
+ "title": "Pagination",
421
+ "title_uikit": "Pagination",
422
+ "type": "Component",
423
+ "scope": "Core",
424
+ "group": "Components",
425
+ "status": "Published",
426
+ "description": "",
427
+ "refs": {
428
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=11056-321779&p=f&t=1PNeXYXdepnDeW4g-0",
429
+ "website": "https://www.designsystem.qld.gov.au/components/promotional-panel"
430
+ },
431
+ "storyTitle": "3. Components/Pagination",
432
+ "storyPath": "/docs/3-components-pagination"
433
+ },
434
+ {
435
+ "id": "qgds-promotional-panel",
436
+ "title": "Promotional panel",
437
+ "title_uikit": "Promo panels",
438
+ "type": "Component",
439
+ "scope": "Core",
440
+ "group": "Components",
441
+ "status": "Published",
442
+ "description": "",
443
+ "refs": {
444
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=23269-286312&p=f&t=1PNeXYXdepnDeW4g-0",
445
+ "website": ""
446
+ },
447
+ "storyTitle": "3. Components/Promotional Panel",
448
+ "storyPath": "/docs/3-components-promotional-panel"
449
+ },
450
+ {
451
+ "id": "",
452
+ "title": "Queensland Government Logo",
453
+ "title_uikit": "",
454
+ "type": "Pattern",
455
+ "scope": "Other",
456
+ "group": "Components",
457
+ "status": "Published",
458
+ "description": "A responsive logo component that displays the Queensland Government logo in different configurations. Typically used within the Header component to ensure proper branding across all screen sizes.",
459
+ "refs": {
460
+ "uikit": "",
461
+ "website": "",
462
+ "storybook": ""
463
+ },
464
+ "storyTitle": "3. Components/Logo",
465
+ "storyPath": "/docs/3-components-logo"
466
+ },
467
+ {
468
+ "id": "qgds-quick-exit",
469
+ "title": "Quick exit",
470
+ "title_uikit": "Quick exit",
471
+ "type": "Pattern",
472
+ "scope": "Core",
473
+ "group": "Components",
474
+ "status": "Published",
475
+ "description": "",
476
+ "refs": {
477
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=11056-321318&p=f&t=1PNeXYXdepnDeW4g-0",
478
+ "website": "https://www.designsystem.qld.gov.au/components/radio-buttons"
479
+ },
480
+ "storyTitle": "3. Components/Quickexit",
481
+ "storyPath": "/docs/3-components-quickexit"
482
+ },
483
+ {
484
+ "id": "qgds-search-input",
485
+ "title": "Search input",
486
+ "title_uikit": "Input field (Search-box)",
487
+ "type": "Component",
488
+ "scope": "Core",
489
+ "group": "Forms",
490
+ "status": "Published",
491
+ "description": "",
492
+ "refs": {
493
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-97871&p=f&t=1PNeXYXdepnDeW4g-0",
494
+ "website": "https://www.designsystem.qld.gov.au/components/input-fields-select-box"
495
+ },
496
+ "storyTitle": "3. Components/Search Input",
497
+ "storyPath": "/docs/3-components-search-input"
498
+ },
499
+ {
500
+ "id": "qgds-input-select",
501
+ "title": "Select input",
502
+ "title_uikit": "Input field (Select/Dropdown)",
503
+ "type": "Component",
504
+ "scope": "Core",
505
+ "group": "Forms",
506
+ "status": "Published",
507
+ "description": "",
508
+ "refs": {
509
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=11056-321345&p=f&t=1PNeXYXdepnDeW4g-0",
510
+ "website": "https://www.designsystem.qld.gov.au/components/side-navigation"
511
+ },
512
+ "storyTitle": "3. Components/Forms/Select",
513
+ "storyPath": "/docs/3-components-forms-select"
514
+ },
515
+ {
516
+ "id": "qgds-side-navigation",
517
+ "title": "Side navigation",
518
+ "title_uikit": "Navigation (Side Navigation)",
519
+ "type": "Component",
520
+ "scope": "Core",
521
+ "group": "Navigation",
522
+ "status": "Published",
523
+ "description": "",
524
+ "refs": {
525
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=11056-321787&p=f&t=1PNeXYXdepnDeW4g-0",
526
+ "website": "https://www.designsystem.qld.gov.au/components/tables"
527
+ },
528
+ "storyTitle": "2. Layout/Side navigation",
529
+ "storyPath": "/docs/2-layout-side-navigation"
530
+ },
531
+ {
532
+ "id": "qgds-table",
533
+ "title": "Table",
534
+ "title_uikit": "Tables",
535
+ "type": "Component",
536
+ "scope": "Core",
537
+ "group": "Components",
538
+ "status": "Published",
539
+ "description": "",
540
+ "refs": {
541
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-97592&p=f&t=1PNeXYXdepnDeW4g-0",
542
+ "website": "https://www.designsystem.qld.gov.au/components/tabs"
543
+ },
544
+ "storyTitle": "3. Components/Table",
545
+ "storyPath": "/docs/3-components-table"
546
+ },
547
+ {
548
+ "id": "qgds-tab",
549
+ "title": "Tabs",
550
+ "title_uikit": "Tabs",
551
+ "type": "Component",
552
+ "scope": "Core",
553
+ "group": "Components",
554
+ "status": "Published",
555
+ "description": "",
556
+ "refs": {
557
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=25951-236134&p=f&t=1PNeXYXdepnDeW4g-0",
558
+ "website": "https://www.designsystem.qld.gov.au/components/tags"
559
+ },
560
+ "storyTitle": "3. Components/Tabs",
561
+ "storyPath": "/docs/3-components-tabs"
562
+ },
563
+ {
564
+ "id": "qgds-tag",
565
+ "title": "Tags",
566
+ "title_uikit": "Tags",
567
+ "type": "Component",
568
+ "scope": "Core",
569
+ "group": "Components",
570
+ "status": "Published",
571
+ "description": "",
572
+ "refs": {
573
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5702-89540&t=loDOHfqaVy8bH9Qa-0",
574
+ "website": "https://www.designsystem.qld.gov.au/components/input-fields-text-box-and-area"
575
+ },
576
+ "storyTitle": "3. Components/Tag/Large",
577
+ "storyPath": "/docs/3-components-tag-large"
578
+ },
579
+ {
580
+ "id": "qgds-textarea",
581
+ "title": "Text area",
582
+ "title_uikit": "Input fields (Text-box and Text-area)",
583
+ "type": "Component",
584
+ "scope": "Core",
585
+ "group": "Forms",
586
+ "status": "Published",
587
+ "description": "",
588
+ "refs": {
589
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-97997&p=f&t=1PNeXYXdepnDeW4g-0",
590
+ "website": "https://www.designsystem.qld.gov.au/components/input-fields-text-box-and-area"
591
+ },
592
+ "storyTitle": "3. Components/Forms/Text Area",
593
+ "storyPath": "/docs/3-components-forms-text-area"
594
+ },
595
+ {
596
+ "id": "qgds-textinput",
597
+ "title": "Text input",
598
+ "title_uikit": "Input fields (Text-box and Text-area)",
599
+ "type": "Component",
600
+ "scope": "Core",
601
+ "group": "Forms",
602
+ "status": "Published",
603
+ "description": "",
604
+ "refs": {
605
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=5990-97997&p=f&t=1PNeXYXdepnDeW4g-0",
606
+ "website": ""
607
+ },
608
+ "storyTitle": "3. Components/Forms/Text input",
609
+ "storyPath": "/docs/3-components-forms-text-input"
610
+ },
611
+ {
612
+ "id": "qgds-video",
613
+ "title": "Video player",
614
+ "title_uikit": "Video player",
615
+ "type": "Component",
616
+ "scope": "Extended",
617
+ "group": "Components",
618
+ "status": "Published",
619
+ "description": "",
620
+ "refs": {
621
+ "uikit": "https://www.figma.com/design/qKsxl3ogIlBp7dafgxXuCA/QGDS-UI-kit?node-id=13297-214065&p=f&t=1PNeXYXdepnDeW4g-0",
622
+ "website": ""
623
+ },
624
+ "storyTitle": "3. Components/Video",
625
+ "storyPath": "/docs/3-components-video"
626
+ }
627
+ ]
@@ -0,0 +1,15 @@
1
+ {
2
+ "id": "qgds-component-name",
3
+ "title": "Title",
4
+ "type": "component/pattern",
5
+ "category": "Core/Extended",
6
+ "group": "Null/Forms/Layout/Navigation/Media etc",
7
+ "status": "Published/Draft",
8
+ "tags": [""],
9
+ "description": "Reuse descriptions from QGDS website please",
10
+ "urls": {
11
+ "uikit": "https://www.figma.com/design/UIKIT-PATH-TO-COMPONENT",
12
+ "website": "https://designsystem.qld.gov.au/components/component-name",
13
+ "storybook": "https://qld-gov-au.github.io/qgds-bootstrap5/?path=/docs/3-components-accordion"
14
+ }
15
+ }