@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.
- package/dist/assets/components/bs5/backToTop/backToTop.hbs +1 -1
- package/dist/assets/components/bs5/breadcrumbs/breadcrumbs.hbs +19 -15
- package/dist/assets/components/bs5/button/button.hbs +48 -30
- package/dist/assets/components/bs5/containerLayout/containerLayout.hbs +100 -0
- package/dist/assets/components/bs5/contentFooter/contentFooter.hbs +15 -4
- package/dist/assets/components/bs5/formcheck/formcheck.hbs +1 -1
- package/dist/assets/components/bs5/head/head.hbs +1 -1
- package/dist/assets/components/bs5/iconLink/iconLink.hbs +41 -0
- package/dist/assets/components/bs5/logo/logo.hbs +7 -0
- package/dist/assets/components/bs5/logo/logoCOALandscape.hbs +58 -0
- package/dist/assets/components/bs5/logo/logoCOALandscape2Lines.hbs +58 -0
- package/dist/assets/components/bs5/navbar/navbar.hbs +65 -245
- package/dist/assets/components/bs5/pageLayout/pageLayout.hbs +11 -10
- package/dist/assets/components/bs5/pageLayout/templates/contentPageWithForm.hbs +78 -0
- package/dist/assets/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +103 -0
- package/dist/assets/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +61 -0
- package/dist/assets/components/bs5/searchInput/searchInput.hbs +8 -10
- package/dist/assets/css/qld.bootstrap.css +1 -1
- package/dist/assets/css/qld.bootstrap.css.map +3 -3
- package/dist/assets/js/bootstrap.bundle.js +3 -6
- package/dist/assets/js/bootstrap.bundle.js.map +1 -1
- package/dist/assets/js/bootstrap.bundle.min.js +2 -2
- package/dist/assets/js/bootstrap.bundle.min.js.map +1 -1
- package/dist/assets/js/bootstrap.js +3 -6
- package/dist/assets/js/bootstrap.min.js +2 -2
- package/dist/assets/js/bootstrap.min.js.map +1 -1
- package/dist/assets/js/handlebars.helpers.bundle.js +1 -1
- package/dist/assets/js/handlebars.helpers.bundle.js.map +3 -3
- package/dist/assets/js/handlebars.helpers.js +51 -40
- package/dist/assets/js/handlebars.init.min.js +698 -347
- package/dist/assets/js/handlebars.init.min.js.map +4 -4
- package/dist/assets/js/handlebars.partials.js +16 -0
- package/dist/assets/js/qld.bootstrap.min.js +9 -9
- package/dist/assets/js/qld.bootstrap.min.js.map +4 -4
- package/dist/assets/node/handlebars.init.min.js +359 -72
- package/dist/assets/node/handlebars.init.min.js.map +3 -3
- package/dist/components/bs5/backToTop/backToTop.hbs +1 -1
- package/dist/components/bs5/breadcrumbs/breadcrumbs.hbs +19 -15
- package/dist/components/bs5/button/button.hbs +48 -30
- package/dist/components/bs5/containerLayout/containerLayout.hbs +100 -0
- package/dist/components/bs5/contentFooter/contentFooter.hbs +15 -4
- package/dist/components/bs5/formcheck/formcheck.hbs +1 -1
- package/dist/components/bs5/head/head.hbs +1 -1
- package/dist/components/bs5/iconLink/iconLink.hbs +41 -0
- package/dist/components/bs5/logo/logo.hbs +7 -0
- package/dist/components/bs5/logo/logoCOALandscape.hbs +58 -0
- package/dist/components/bs5/logo/logoCOALandscape2Lines.hbs +58 -0
- package/dist/components/bs5/navbar/navbar.hbs +65 -245
- package/dist/components/bs5/pageLayout/pageLayout.hbs +11 -10
- package/dist/components/bs5/pageLayout/templates/contentPageWithForm.hbs +78 -0
- package/dist/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +103 -0
- package/dist/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +61 -0
- package/dist/components/bs5/searchInput/searchInput.hbs +8 -10
- package/dist/components/handlebars.helpers.js +51 -40
- package/dist/components/handlebars.partials.js +16 -0
- package/dist/package.json +2 -2
- package/dist/sample-data/breadcrumbs/breadcrumbs.data.json +113 -49
- package/dist/sample-data/button/button.data.json +10 -8
- package/dist/sample-data/contentFooter/contentFooter.data.json +9 -1
- package/dist/sample-data/formcheck/stories/checkbox/checkbox.data.json +51 -46
- package/dist/sample-data/formcheck/stories/radio/radio.data.json +51 -46
- package/dist/sample-data/iconLink/iconLink.data.json +77 -0
- package/dist/sample-data/logo/logo.data.json +6 -0
- package/dist/sample-data/navbar/navbar.data.json +191 -0
- package/dist/sample-data/searchInput/searchInput.data.json +2 -3
- package/dist/sample-data/tabs/tabs.data.json +45 -44
- package/package.json +2 -2
- package/src/components/bs5/backToTop/backToTop.hbs +1 -1
- package/src/components/bs5/banner/banner.scss +52 -46
- package/src/components/bs5/breadcrumbs/__snapshots__/breadcrumbs.test.js.snap +49 -0
- package/src/components/bs5/breadcrumbs/breadcrumbs.data.json +113 -49
- package/src/components/bs5/breadcrumbs/breadcrumbs.functions.js +169 -0
- package/src/components/bs5/breadcrumbs/breadcrumbs.hbs +19 -15
- package/src/components/bs5/breadcrumbs/breadcrumbs.scss +164 -43
- package/src/components/bs5/breadcrumbs/breadcrumbs.stories.js +16 -2
- package/src/components/bs5/breadcrumbs/breadcrumbs.test.js +136 -0
- package/src/components/bs5/button/button.data.json +10 -8
- package/src/components/bs5/button/button.hbs +48 -30
- package/src/components/bs5/button/button.scss +365 -244
- package/src/components/bs5/button/button.stories.js +116 -30
- package/src/components/bs5/containerLayout/containerLayout.hbs +100 -0
- package/src/components/bs5/containerLayout/containerLayout.stories.js +83 -0
- package/src/components/bs5/contentFooter/contentFooter.data.json +9 -1
- package/src/components/bs5/contentFooter/contentFooter.hbs +15 -4
- package/src/components/bs5/formcheck/formcheck.hbs +1 -1
- package/src/components/bs5/formcheck/formcheck.scss +161 -139
- package/src/components/bs5/formcheck/stories/checkbox/checkbox.data.json +51 -46
- package/src/components/bs5/formcheck/stories/radio/radio.data.json +51 -46
- package/src/components/bs5/iconLink/iconLink.data.json +77 -0
- package/src/components/bs5/iconLink/iconLink.hbs +41 -0
- package/src/components/bs5/iconLink/iconLink.js +20 -0
- package/src/components/bs5/iconLink/iconLink.mdx +16 -0
- package/src/components/bs5/iconLink/iconLink.scss +57 -0
- package/src/components/bs5/iconLink/iconLink.stories.js +127 -0
- package/src/components/bs5/icons/icons.scss +79 -72
- package/src/components/bs5/inpagenav/inpagenav.scss +37 -37
- package/src/components/bs5/logo/Logo.js +20 -0
- package/src/components/bs5/logo/Logo.mdx +10 -0
- package/src/components/bs5/logo/logo.data.json +6 -0
- package/src/components/bs5/logo/logo.hbs +7 -0
- package/src/components/bs5/logo/logo.stories.js +32 -0
- package/src/components/bs5/logo/logoCOALandscape.hbs +58 -0
- package/src/components/bs5/logo/logoCOALandscape2Lines.hbs +58 -0
- package/src/components/bs5/navbar/Navbar.js +2 -9
- package/src/components/bs5/navbar/navbar.data.json +191 -0
- package/src/components/bs5/navbar/navbar.functions.js +48 -196
- package/src/components/bs5/navbar/navbar.hbs +65 -245
- package/src/components/bs5/navbar/navbar.scss +585 -518
- package/src/components/bs5/navbar/navbar.stories.js +532 -0
- package/src/components/bs5/pageLayout/ContentPageWithForm.js +8 -0
- package/src/components/bs5/pageLayout/ContentPageWithSideNavigation.js +8 -0
- package/src/components/bs5/pageLayout/FullWidthLandingPage.js +8 -0
- package/src/components/bs5/pageLayout/pageLayout.hbs +11 -10
- package/src/components/bs5/pageLayout/pageLayout.stories.js +230 -6
- package/src/components/bs5/pageLayout/templates/contentPageWithForm.hbs +78 -0
- package/src/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +103 -0
- package/src/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +61 -0
- package/src/components/bs5/searchInput/__snapshots__/searchInput.test.js.snap +9 -8
- package/src/components/bs5/searchInput/search.functions.js +94 -63
- package/src/components/bs5/searchInput/searchInput.data.json +2 -3
- package/src/components/bs5/searchInput/searchInput.hbs +8 -10
- package/src/components/bs5/searchInput/searchInput.scss +296 -255
- package/src/components/bs5/searchInput/searchInput.test.js +98 -89
- package/src/components/bs5/sidenav/sidenav.stories.js +17 -15
- package/src/components/bs5/tabs/tabs.data.json +45 -44
- package/src/components/bs5/tabs/tabs.scss +544 -500
- package/src/components/bs5/tabs/tabs.stories.js +81 -51
- package/src/components/common/footer/footer.scss +137 -140
- package/src/components/common/layout/container.scss +22 -0
- package/src/components/common/layout/content.scss +11 -4
- package/src/components/common/layout/grid.scss +26 -0
- package/src/css/main.scss +5 -4
- package/src/css/qld-variables.scss +102 -81
- package/src/js/handlebars.helpers.js +51 -40
- package/src/js/handlebars.partials.js +16 -0
- package/src/js/qld.bootstrap.js +17 -9
- package/src/components/bs5/backToTop/backToTop.scss +0 -9
- package/src/components/bs5/breadcrumbs/breadcrumb.functions.js +0 -95
- package/src/components/bs5/breadcumbsWrapper/breadcrumbsWrapper.stories.js +0 -34
- package/src/components/bs5/contentFooterWrapper/contentFooterWrapper.stories.js +0 -36
- package/src/components/bs5/contentWrapper/contentWrapper.stories.js +0 -65
- package/src/components/bs5/fullPageWrapper/fullPage.stories.js +0 -63
- package/src/components/bs5/mainContainerWrapper/mainContainerWrapper.stories.js +0 -50
- package/src/components/bs5/navbar/_colours.scss +0 -85
- package/src/components/bs5/navbar/_icons.scss +0 -64
- package/src/components/bs5/sidenavWrapper/SidenavWrapper.mdx +0 -11
- package/src/components/bs5/sidenavWrapper/sidenavWrapper.stories.js +0 -65
- package/src/stories/integration/MainIntegration.js +0 -28
- package/src/stories/integration/MainIntegration.mdx +0 -10
- package/src/stories/integration/breadcrumb.data.json +0 -28
- package/src/stories/integration/content.data.json +0 -3
- package/src/stories/integration/contentFooter.data.json +0 -3
- package/src/stories/integration/footer.data.json +0 -111
- package/src/stories/integration/globalAlert.data.json +0 -10
- package/src/stories/integration/header.data.json +0 -173
- package/src/stories/integration/inpagenav.data.json +0 -26
- package/src/stories/integration/integration.stories.js +0 -147
- package/src/stories/integration/main.hbs +0 -13
- package/src/stories/integration/navigation.data.json +0 -22
- package/src/stories/integration/search.data.json +0 -20
- package/src/stories/integration/sidenav.data.json +0 -88
|
@@ -1,50 +1,114 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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,48 +1,53 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
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
|
+
}
|