@qhealth-design-system/core 1.0.38
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/.babelrc +15 -0
- package/.browserslistrc +5 -0
- package/.editorconfig +19 -0
- package/.eslintignore +1 -0
- package/.eslintrc +25 -0
- package/.gitattributes +2 -0
- package/.github/workflows/release_package.yml +103 -0
- package/CHANGELOG.md +14 -0
- package/README.md +534 -0
- package/dist/api/service_finder/schemas.json +1 -0
- package/dist/component-abstract.html +884 -0
- package/dist/component-accordion.html +1157 -0
- package/dist/component-banner.html +928 -0
- package/dist/component-banner_advanced.html +1524 -0
- package/dist/component-banner_basic.html +1189 -0
- package/dist/component-banner_intermediate.html +1288 -0
- package/dist/component-body.html +919 -0
- package/dist/component-breadcrumbs.html +881 -0
- package/dist/component-btn.html +829 -0
- package/dist/component-callout.html +964 -0
- package/dist/component-card_feature.html +1805 -0
- package/dist/component-card_multi_action.html +1965 -0
- package/dist/component-card_no_action.html +1632 -0
- package/dist/component-card_single_action.html +1772 -0
- package/dist/component-code.html +928 -0
- package/dist/component-footer.html +1131 -0
- package/dist/component-forms.html +1297 -0
- package/dist/component-global-elements.html +1243 -0
- package/dist/component-global_alert.html +891 -0
- package/dist/component-header.html +1155 -0
- package/dist/component-in_page_navigation.html +920 -0
- package/dist/component-internal_navigation.html +1097 -0
- package/dist/component-left_hand_navigation.html +995 -0
- package/dist/component-main_navigation.html +999 -0
- package/dist/component-mega_main_navigation.html +1145 -0
- package/dist/component-multi_column.html +1116 -0
- package/dist/component-page_alert.html +911 -0
- package/dist/component-pagination.html +971 -0
- package/dist/component-tag_list.html +979 -0
- package/dist/component-updated_date.html +778 -0
- package/dist/component-widgets.html +851 -0
- package/dist/components/_global/import.xml +95 -0
- package/dist/components/_global/manifest.json +11 -0
- package/dist/components/_global/presentation.js +50 -0
- package/dist/components/_global/static.html +30 -0
- package/dist/components/_template/import.xml +299 -0
- package/dist/components/_template/manifest.json +40 -0
- package/dist/components/_template/presentation.js +12 -0
- package/dist/components/_template/static.html +4 -0
- package/dist/components/abstract/import.xml +231 -0
- package/dist/components/abstract/manifest.json +29 -0
- package/dist/components/abstract/presentation.js +33 -0
- package/dist/components/abstract/static.html +9 -0
- package/dist/components/accordion/import.xml +1929 -0
- package/dist/components/accordion/manifest.json +427 -0
- package/dist/components/accordion/presentation.js +112 -0
- package/dist/components/accordion/static.html +56 -0
- package/dist/components/banner/import.xml +95 -0
- package/dist/components/banner/manifest.json +11 -0
- package/dist/components/banner/presentation.js +138 -0
- package/dist/components/banner/static.html +39 -0
- package/dist/components/banner_advanced/import.xml +1969 -0
- package/dist/components/banner_advanced/manifest.json +1450 -0
- package/dist/components/banner_advanced/presentation.js +564 -0
- package/dist/components/banner_advanced/static.html +159 -0
- package/dist/components/banner_basic/import.xml +907 -0
- package/dist/components/banner_basic/manifest.json +151 -0
- package/dist/components/banner_basic/presentation.js +325 -0
- package/dist/components/banner_basic/static.html +86 -0
- package/dist/components/banner_intermediate/import.xml +1473 -0
- package/dist/components/banner_intermediate/manifest.json +248 -0
- package/dist/components/banner_intermediate/presentation.js +410 -0
- package/dist/components/banner_intermediate/static.html +102 -0
- package/dist/components/body/import.xml +343 -0
- package/dist/components/body/manifest.json +46 -0
- package/dist/components/body/presentation.js +37 -0
- package/dist/components/body/static.html +5 -0
- package/dist/components/breadcrumbs/import.xml +95 -0
- package/dist/components/breadcrumbs/manifest.json +9 -0
- package/dist/components/breadcrumbs/presentation.js +99 -0
- package/dist/components/breadcrumbs/static.html +21 -0
- package/dist/components/callout/import.xml +953 -0
- package/dist/components/callout/manifest.json +121 -0
- package/dist/components/callout/presentation.js +103 -0
- package/dist/components/callout/static.html +10 -0
- package/dist/components/card_feature/import.xml +2355 -0
- package/dist/components/card_feature/manifest.json +1390 -0
- package/dist/components/card_feature/presentation.js +365 -0
- package/dist/components/card_feature/static.html +80 -0
- package/dist/components/card_multi_action/import.xml +1539 -0
- package/dist/components/card_multi_action/manifest.json +1314 -0
- package/dist/components/card_multi_action/presentation.js +638 -0
- package/dist/components/card_multi_action/static.html +120 -0
- package/dist/components/card_no_action/import.xml +1449 -0
- package/dist/components/card_no_action/manifest.json +1264 -0
- package/dist/components/card_no_action/presentation.js +454 -0
- package/dist/components/card_no_action/static.html +94 -0
- package/dist/components/card_single_action/import.xml +1539 -0
- package/dist/components/card_single_action/manifest.json +1273 -0
- package/dist/components/card_single_action/presentation.js +498 -0
- package/dist/components/card_single_action/static.html +103 -0
- package/dist/components/code/import.xml +569 -0
- package/dist/components/code/manifest.json +112 -0
- package/dist/components/code/presentation.js +124 -0
- package/dist/components/code/static.html +15 -0
- package/dist/components/footer/import.xml +95 -0
- package/dist/components/footer/manifest.json +9 -0
- package/dist/components/footer/presentation.js +409 -0
- package/dist/components/footer/static.html +146 -0
- package/dist/components/global_alert/import.xml +95 -0
- package/dist/components/global_alert/manifest.json +9 -0
- package/dist/components/global_alert/presentation.js +81 -0
- package/dist/components/global_alert/static.html +26 -0
- package/dist/components/header/import.xml +95 -0
- package/dist/components/header/manifest.json +11 -0
- package/dist/components/header/presentation.js +190 -0
- package/dist/components/header/static.html +158 -0
- package/dist/components/horizontal_rule/import.xml +547 -0
- package/dist/components/horizontal_rule/manifest.json +69 -0
- package/dist/components/horizontal_rule/presentation.js +50 -0
- package/dist/components/horizontal_rule/static.html +4 -0
- package/dist/components/in_page_navigation/import.xml +253 -0
- package/dist/components/in_page_navigation/manifest.json +35 -0
- package/dist/components/in_page_navigation/presentation.js +14 -0
- package/dist/components/in_page_navigation/static.html +13 -0
- package/dist/components/internal_navigation/import.xml +95 -0
- package/dist/components/internal_navigation/manifest.json +11 -0
- package/dist/components/internal_navigation/presentation.js +165 -0
- package/dist/components/internal_navigation/static.html +130 -0
- package/dist/components/left_hand_navigation/import.xml +299 -0
- package/dist/components/left_hand_navigation/manifest.json +40 -0
- package/dist/components/left_hand_navigation/presentation.js +178 -0
- package/dist/components/left_hand_navigation/static.html +64 -0
- package/dist/components/main_navigation/import.xml +95 -0
- package/dist/components/main_navigation/manifest.json +11 -0
- package/dist/components/main_navigation/presentation.js +150 -0
- package/dist/components/main_navigation/static.html +80 -0
- package/dist/components/mega_main_navigation/import.xml +95 -0
- package/dist/components/mega_main_navigation/manifest.json +9 -0
- package/dist/components/mega_main_navigation/presentation.js +380 -0
- package/dist/components/mega_main_navigation/static.html +153 -0
- package/dist/components/multi_column/import.xml +1631 -0
- package/dist/components/multi_column/manifest.json +233 -0
- package/dist/components/multi_column/presentation.js +249 -0
- package/dist/components/multi_column/static.html +36 -0
- package/dist/components/page_alert/import.xml +479 -0
- package/dist/components/page_alert/manifest.json +63 -0
- package/dist/components/page_alert/presentation.js +67 -0
- package/dist/components/page_alert/static.html +8 -0
- package/dist/components/pagination/import.xml +95 -0
- package/dist/components/pagination/manifest.json +42 -0
- package/dist/components/pagination/presentation.js +84 -0
- package/dist/components/pagination/static.html +5 -0
- package/dist/components/updated_date/import.xml +95 -0
- package/dist/components/updated_date/manifest.json +9 -0
- package/dist/components/updated_date/presentation.js +34 -0
- package/dist/components/updated_date/static.html +6 -0
- package/dist/components/widgets/import.xml +95 -0
- package/dist/components/widgets/manifest.json +9 -0
- package/dist/components/widgets/presentation.js +40 -0
- package/dist/components/widgets/static.html +0 -0
- package/dist/components.html +790 -0
- package/dist/externals/componentPreview.js +101 -0
- package/dist/externals/dsComponentLoader.js +410 -0
- package/dist/externals/esri-leaflet-vector.js +5 -0
- package/dist/externals/esri-leaflet.js +12 -0
- package/dist/externals/fb-handlebars.min.js +29 -0
- package/dist/externals/fb-typeahead.bundle.min.js +6 -0
- package/dist/externals/funnelback.autocompletion-2.6.0.js +678 -0
- package/dist/externals/getPagination.js +62 -0
- package/dist/externals/handlebars.min-v4.7.6.js +29 -0
- package/dist/externals/leaflet.js +6 -0
- package/dist/externals/populateDatastoreSim.js +381 -0
- package/dist/externals/tinymce_classes.css +62 -0
- package/dist/home.html +694 -0
- package/dist/index.html +710 -0
- package/dist/inner-with-nav.html +1853 -0
- package/dist/inner.html +671 -0
- package/dist/js/helpers.js +892 -0
- package/dist/js/main.js +55 -0
- package/dist/js/main.js.map +1 -0
- package/dist/js/runtime.js +2 -0
- package/dist/js/runtime.js.map +1 -0
- package/dist/main.css +918 -0
- package/dist/main.css.map +1 -0
- package/dist/mysource_files/ajax-loader.gif +0 -0
- package/dist/mysource_files/favicons/favicon.ico +0 -0
- package/dist/mysource_files/img/100x100.jpg +0 -0
- package/dist/mysource_files/img/600x260.jpg +0 -0
- package/dist/mysource_files/img/Heart-Pattern-Dark.png +0 -0
- package/dist/mysource_files/img/Heart-Pattern.png +0 -0
- package/dist/mysource_files/img/banner-background--desktop.png +0 -0
- package/dist/mysource_files/img/banner-background--mobile.png +0 -0
- package/dist/mysource_files/img/banner-bg.png +0 -0
- package/dist/mysource_files/img/banner.png +0 -0
- package/dist/mysource_files/img/card--brand.png +0 -0
- package/dist/mysource_files/img/card--components.png +0 -0
- package/dist/mysource_files/img/card--content.png +0 -0
- package/dist/mysource_files/img/header-logo-agov.png +0 -0
- package/dist/mysource_files/img/header-logo-qgov--dark.svg +63 -0
- package/dist/mysource_files/img/header-logo-qgov--light.svg +56 -0
- package/dist/mysource_files/img/header-logo-qgov--pre-dark.svg +56 -0
- package/dist/mysource_files/img/header-search.svg +3 -0
- package/dist/mysource_files/img/layers-2x.png +0 -0
- package/dist/mysource_files/img/layers.png +0 -0
- package/dist/mysource_files/img/marker-icon.png +0 -0
- package/dist/mysource_files/img/svg-icons.svg +155 -0
- package/dist/mysource_files/img/video-play.svg +3 -0
- package/dist/mysource_files/slick.eot +0 -0
- package/dist/mysource_files/slick.svg +14 -0
- package/dist/mysource_files/slick.ttf +0 -0
- package/dist/mysource_files/slick.woff +0 -0
- package/package-lock.json +14276 -0
- package/package.json +79 -0
- package/scripts/add_component.sh +109 -0
- package/src/assets/favicons/favicon.ico +0 -0
- package/src/assets/img/100x100.jpg +0 -0
- package/src/assets/img/600x260.jpg +0 -0
- package/src/assets/img/Heart-Pattern-Dark.png +0 -0
- package/src/assets/img/Heart-Pattern.png +0 -0
- package/src/assets/img/banner-background--desktop.png +0 -0
- package/src/assets/img/banner-background--mobile.png +0 -0
- package/src/assets/img/banner-bg.png +0 -0
- package/src/assets/img/banner.png +0 -0
- package/src/assets/img/card--brand.png +0 -0
- package/src/assets/img/card--components.png +0 -0
- package/src/assets/img/card--content.png +0 -0
- package/src/assets/img/header-logo-agov.png +0 -0
- package/src/assets/img/header-logo-qgov--dark.svg +63 -0
- package/src/assets/img/header-logo-qgov--light.svg +56 -0
- package/src/assets/img/header-logo-qgov--pre-dark.svg +56 -0
- package/src/assets/img/header-search.svg +3 -0
- package/src/assets/img/layers-2x.png +0 -0
- package/src/assets/img/layers.png +0 -0
- package/src/assets/img/marker-icon.png +0 -0
- package/src/assets/img/svg-icons.svg +155 -0
- package/src/assets/img/video-play.svg +3 -0
- package/src/components/_global/css/admin/component.scss +71 -0
- package/src/components/_global/css/body/component.scss +897 -0
- package/src/components/_global/css/btn/component.scss +564 -0
- package/src/components/_global/css/cta_links/component.scss +121 -0
- package/src/components/_global/css/direction_links/component.scss +196 -0
- package/src/components/_global/css/example/component.scss +54 -0
- package/src/components/_global/css/forms/control_inputs/component.scss +349 -0
- package/src/components/_global/css/forms/general/component.scss +298 -0
- package/src/components/_global/css/forms/select/component.scss +230 -0
- package/src/components/_global/css/forms/text/component.scss +402 -0
- package/src/components/_global/css/global.scss +42 -0
- package/src/components/_global/css/grid-12/component.scss +331 -0
- package/src/components/_global/css/headings/component.scss +172 -0
- package/src/components/_global/css/icons/component.scss +29 -0
- package/src/components/_global/css/link_columns/component.scss +194 -0
- package/src/components/_global/css/link_list/component.scss +37 -0
- package/src/components/_global/css/modal/component.scss +182 -0
- package/src/components/_global/css/slick/component.scss +25 -0
- package/src/components/_global/css/table/component.scss +211 -0
- package/src/components/_global/css/tabs/component.scss +43 -0
- package/src/components/_global/css/tags/component.scss +272 -0
- package/src/components/_global/css/user_location/component.scss +38 -0
- package/src/components/_global/css/version/component.scss +47 -0
- package/src/components/_global/html/component.hbs +108 -0
- package/src/components/_global/html/ds_component.hbs +30 -0
- package/src/components/_global/html/head.html +63 -0
- package/src/components/_global/html/scripts.html +58 -0
- package/src/components/_global/js/_polyfills/global.js +18 -0
- package/src/components/_global/js/animate/global.js +324 -0
- package/src/components/_global/js/forms/global.js +182 -0
- package/src/components/_global/js/global.js +302 -0
- package/src/components/_global/js/manifest.json +11 -0
- package/src/components/_global/js/modal/global.js +236 -0
- package/src/components/_global/js/slick/global.js +153 -0
- package/src/components/_global/js/tabs/global.js +305 -0
- package/src/components/_global/js/user_location/global.js +116 -0
- package/src/components/_template/css/component.scss +22 -0
- package/src/components/_template/html/component-page.html +85 -0
- package/src/components/_template/html/component.hbs +4 -0
- package/src/components/_template/js/global.js +6 -0
- package/src/components/_template/js/manifest.json +40 -0
- package/src/components/abstract/css/component.scss +91 -0
- package/src/components/abstract/html/component.hbs +9 -0
- package/src/components/abstract/js/manifest.json +29 -0
- package/src/components/accordion/css/component.scss +329 -0
- package/src/components/accordion/html/accordion-group.html +157 -0
- package/src/components/accordion/html/component.hbs +46 -0
- package/src/components/accordion/html/default.html +92 -0
- package/src/components/accordion/js/global.js +413 -0
- package/src/components/accordion/js/manifest.json +427 -0
- package/src/components/banner/css/component.scss +664 -0
- package/src/components/banner/html/component.hbs +52 -0
- package/src/components/banner/js/manifest.json +11 -0
- package/src/components/banner_advanced/css/component.scss +7 -0
- package/src/components/banner_advanced/html/component.hbs +213 -0
- package/src/components/banner_advanced/js/global.js +6 -0
- package/src/components/banner_advanced/js/manifest.json +1450 -0
- package/src/components/banner_basic/css/component.scss +52 -0
- package/src/components/banner_basic/html/component.hbs +130 -0
- package/src/components/banner_basic/js/global.js +6 -0
- package/src/components/banner_basic/js/manifest.json +151 -0
- package/src/components/banner_intermediate/css/component.scss +276 -0
- package/src/components/banner_intermediate/html/component.hbs +165 -0
- package/src/components/banner_intermediate/js/global.js +6 -0
- package/src/components/banner_intermediate/js/manifest.json +248 -0
- package/src/components/body/css/component.scss +16 -0
- package/src/components/body/html/component.hbs +5 -0
- package/src/components/body/js/manifest.json +46 -0
- package/src/components/breadcrumbs/css/component.scss +236 -0
- package/src/components/breadcrumbs/html/component.hbs +29 -0
- package/src/components/breadcrumbs/js/manifest.json +9 -0
- package/src/components/callout/css/component.scss +146 -0
- package/src/components/callout/html/component.hbs +28 -0
- package/src/components/callout/js/manifest.json +121 -0
- package/src/components/card_feature/css/component.scss +224 -0
- package/src/components/card_feature/html/component.hbs +129 -0
- package/src/components/card_feature/js/manifest.json +1390 -0
- package/src/components/card_multi_action/css/component.scss +229 -0
- package/src/components/card_multi_action/html/component.hbs +192 -0
- package/src/components/card_multi_action/js/manifest.json +1314 -0
- package/src/components/card_no_action/css/component.scss +551 -0
- package/src/components/card_no_action/html/component.hbs +127 -0
- package/src/components/card_no_action/js/global.js +6 -0
- package/src/components/card_no_action/js/manifest.json +1264 -0
- package/src/components/card_single_action/css/component.scss +164 -0
- package/src/components/card_single_action/html/component.hbs +161 -0
- package/src/components/card_single_action/js/manifest.json +1273 -0
- package/src/components/code/css/component.scss +355 -0
- package/src/components/code/html/component.hbs +84 -0
- package/src/components/code/js/global.js +160 -0
- package/src/components/code/js/manifest.json +112 -0
- package/src/components/footer/css/component.scss +437 -0
- package/src/components/footer/html/component.hbs +177 -0
- package/src/components/footer/js/manifest.json +9 -0
- package/src/components/global_alert/css/component.scss +169 -0
- package/src/components/global_alert/html/component.hbs +38 -0
- package/src/components/global_alert/js/global.js +39 -0
- package/src/components/global_alert/js/manifest.json +9 -0
- package/src/components/header/css/component.scss +697 -0
- package/src/components/header/html/component.hbs +186 -0
- package/src/components/header/js/global.js +188 -0
- package/src/components/header/js/manifest.json +11 -0
- package/src/components/horizontal_rule/css/component.scss +37 -0
- package/src/components/horizontal_rule/html/component.hbs +6 -0
- package/src/components/horizontal_rule/js/manifest.json +69 -0
- package/src/components/in_page_navigation/css/component.scss +54 -0
- package/src/components/in_page_navigation/html/component.hbs +17 -0
- package/src/components/in_page_navigation/js/global.js +51 -0
- package/src/components/in_page_navigation/js/manifest.json +35 -0
- package/src/components/internal_navigation/css/component.scss +437 -0
- package/src/components/internal_navigation/html/component.hbs +57 -0
- package/src/components/internal_navigation/js/manifest.json +11 -0
- package/src/components/left_hand_navigation/css/component.scss +280 -0
- package/src/components/left_hand_navigation/html/component.hbs +77 -0
- package/src/components/left_hand_navigation/js/global.js +36 -0
- package/src/components/left_hand_navigation/js/manifest.json +40 -0
- package/src/components/main_navigation/css/component.scss +706 -0
- package/src/components/main_navigation/html/component.hbs +87 -0
- package/src/components/main_navigation/js/global.js +373 -0
- package/src/components/main_navigation/js/manifest.json +11 -0
- package/src/components/mega_main_navigation/css/component.scss +535 -0
- package/src/components/mega_main_navigation/html/component.hbs +157 -0
- package/src/components/mega_main_navigation/js/global.js +170 -0
- package/src/components/mega_main_navigation/js/manifest.json +9 -0
- package/src/components/multi_column/css/component.scss +11 -0
- package/src/components/multi_column/html/component.hbs +98 -0
- package/src/components/multi_column/js/manifest.json +233 -0
- package/src/components/page_alert/css/component.scss +132 -0
- package/src/components/page_alert/html/component.hbs +26 -0
- package/src/components/page_alert/js/manifest.json +63 -0
- package/src/components/pagination/css/component.scss +196 -0
- package/src/components/pagination/html/component.hbs +41 -0
- package/src/components/pagination/html/default.html +30 -0
- package/src/components/pagination/js/manifest.json +42 -0
- package/src/components/search_box/css/component.scss +48 -0
- package/src/components/search_box/html/component.html +11 -0
- package/src/components/search_box/js/manifest.json +73 -0
- package/src/components/updated_date/css/component.scss +0 -0
- package/src/components/updated_date/html/component.hbs +31 -0
- package/src/components/updated_date/js/manifest.json +9 -0
- package/src/components/widgets/css/component.scss +82 -0
- package/src/components/widgets/html/component.hbs +19 -0
- package/src/components/widgets/html/default.html +4 -0
- package/src/components/widgets/js/current.json +483 -0
- package/src/components/widgets/js/manifest.json +9 -0
- package/src/components/widgets/js/site.json +358 -0
- package/src/data/current.json +522 -0
- package/src/data/current_admin.json +305 -0
- package/src/data/model_component.js +14 -0
- package/src/data/site.json +762 -0
- package/src/externals/componentPreview.js +101 -0
- package/src/externals/dsComponentLoader.js +410 -0
- package/src/externals/esri-leaflet-vector.js +5 -0
- package/src/externals/esri-leaflet.js +12 -0
- package/src/externals/fb-handlebars.min.js +29 -0
- package/src/externals/fb-typeahead.bundle.min.js +6 -0
- package/src/externals/funnelback.autocompletion-2.6.0.js +678 -0
- package/src/externals/getPagination.js +62 -0
- package/src/externals/handlebars.min-v4.7.6.js +29 -0
- package/src/externals/leaflet.js +6 -0
- package/src/externals/populateDatastoreSim.js +381 -0
- package/src/externals/tinymce_classes.css +62 -0
- package/src/helpers/Handlebars/appendIf.js +6 -0
- package/src/helpers/Handlebars/arrayLength.js +3 -0
- package/src/helpers/Handlebars/arrayWith.js +13 -0
- package/src/helpers/Handlebars/capitaliseFirst.js +8 -0
- package/src/helpers/Handlebars/charMax.js +8 -0
- package/src/helpers/Handlebars/checkIf.js +20 -0
- package/src/helpers/Handlebars/columnWidth.js +39 -0
- package/src/helpers/Handlebars/contains.js +7 -0
- package/src/helpers/Handlebars/createMap.js +19 -0
- package/src/helpers/Handlebars/dsMapFromID.js +8 -0
- package/src/helpers/Handlebars/dsMapFromProp.js +8 -0
- package/src/helpers/Handlebars/eachByName.js +18 -0
- package/src/helpers/Handlebars/eachDS.js +7 -0
- package/src/helpers/Handlebars/eachFrom.js +13 -0
- package/src/helpers/Handlebars/eachUpTo.js +8 -0
- package/src/helpers/Handlebars/eachWhen.js +33 -0
- package/src/helpers/Handlebars/formatDate.js +62 -0
- package/src/helpers/Handlebars/generateDates.js +74 -0
- package/src/helpers/Handlebars/getDistance.js +40 -0
- package/src/helpers/Handlebars/getObject.js +3 -0
- package/src/helpers/Handlebars/getParamaterByName.js +11 -0
- package/src/helpers/Handlebars/getPossibleValues.js +13 -0
- package/src/helpers/Handlebars/getProp.js +3 -0
- package/src/helpers/Handlebars/getTags.js +20 -0
- package/src/helpers/Handlebars/getTitle.js +4 -0
- package/src/helpers/Handlebars/ifAny.js +9 -0
- package/src/helpers/Handlebars/ifArray.js +3 -0
- package/src/helpers/Handlebars/ifCond.js +31 -0
- package/src/helpers/Handlebars/ifEqualsOrChained.js +12 -0
- package/src/helpers/Handlebars/ifProp.js +3 -0
- package/src/helpers/Handlebars/if_eq.js +9 -0
- package/src/helpers/Handlebars/inArray.js +8 -0
- package/src/helpers/Handlebars/isPage.js +7 -0
- package/src/helpers/Handlebars/itemAt.js +11 -0
- package/src/helpers/Handlebars/jsonParse.js +8 -0
- package/src/helpers/Handlebars/jsonStringify.js +3 -0
- package/src/helpers/Handlebars/listAZ.js +51 -0
- package/src/helpers/Handlebars/listAZOptions.js +34 -0
- package/src/helpers/Handlebars/listByClosest.js +60 -0
- package/src/helpers/Handlebars/listByClosestWithOffset.js +63 -0
- package/src/helpers/Handlebars/math.js +11 -0
- package/src/helpers/Handlebars/newLineToBreak.js +6 -0
- package/src/helpers/Handlebars/nonBreakingSpaces.js +6 -0
- package/src/helpers/Handlebars/objectFromSelect.js +21 -0
- package/src/helpers/Handlebars/partialReplace.js +9 -0
- package/src/helpers/Handlebars/printAccordion.js +24 -0
- package/src/helpers/Handlebars/replace.js +8 -0
- package/src/helpers/Handlebars/replaceMany.js +5 -0
- package/src/helpers/Handlebars/sizeFormat.js +11 -0
- package/src/helpers/Handlebars/split.js +6 -0
- package/src/helpers/Handlebars/toUpperCase.js +7 -0
- package/src/helpers/Handlebars/urldecode.js +3 -0
- package/src/helpers/Handlebars/urlencode.js +3 -0
- package/src/helpers/Handlebars/withinObject.js +13 -0
- package/src/html/component-abstract.html +86 -0
- package/src/html/component-accordion.html +87 -0
- package/src/html/component-banner.html +84 -0
- package/src/html/component-banner_advanced.html +97 -0
- package/src/html/component-banner_basic.html +163 -0
- package/src/html/component-banner_intermediate.html +91 -0
- package/src/html/component-body.html +116 -0
- package/src/html/component-breadcrumbs.html +88 -0
- package/src/html/component-btn.html +117 -0
- package/src/html/component-callout.html +86 -0
- package/src/html/component-card_feature.html +631 -0
- package/src/html/component-card_multi_action.html +793 -0
- package/src/html/component-card_no_action.html +521 -0
- package/src/html/component-card_single_action.html +631 -0
- package/src/html/component-code.html +84 -0
- package/src/html/component-footer.html +87 -0
- package/src/html/component-forms.html +585 -0
- package/src/html/component-global-elements.html +531 -0
- package/src/html/component-global_alert.html +87 -0
- package/src/html/component-header.html +88 -0
- package/src/html/component-in_page_navigation.html +109 -0
- package/src/html/component-internal_navigation.html +87 -0
- package/src/html/component-left_hand_navigation.html +85 -0
- package/src/html/component-main_navigation.html +87 -0
- package/src/html/component-mega_main_navigation.html +88 -0
- package/src/html/component-multi_column.html +86 -0
- package/src/html/component-page_alert.html +86 -0
- package/src/html/component-pagination.html +86 -0
- package/src/html/component-tag_list.html +340 -0
- package/src/html/component-updated_date.html +88 -0
- package/src/html/component-widgets.html +90 -0
- package/src/html/components.html +136 -0
- package/src/html/home.html +126 -0
- package/src/html/index.html +142 -0
- package/src/html/inner-with-nav.html +1126 -0
- package/src/html/inner.html +107 -0
- package/src/index.js +12 -0
- package/src/styles/global.scss +120 -0
- package/src/styles/imports/figma.scss +0 -0
- package/src/styles/imports/functions.scss +519 -0
- package/src/styles/imports/mixins.scss +658 -0
- package/src/styles/imports/placeholders.scss +68 -0
- package/src/styles/imports/utilities.scss +185 -0
- package/src/styles/imports/variables.scss +484 -0
- package/src/styles/postcss.config.js +4 -0
- package/webpack/JsonMergePlugin.js +35 -0
- package/webpack/PrecompilePlugin.js +369 -0
- package/webpack/webpack.common.js +151 -0
- package/webpack/webpack.dev.js +54 -0
- package/webpack/webpack.prod.js +70 -0
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
<!--FOOTER -->
|
|
2
|
+
<footer class="qld__footer qld__footer--dark-alt" role="contentinfo">
|
|
3
|
+
|
|
4
|
+
<div class="container-fluid">
|
|
5
|
+
<div class="row qld__footer__row">
|
|
6
|
+
<div class="col-xs-12 qld__footer__column">
|
|
7
|
+
<div class="qld__footer__title">
|
|
8
|
+
<h4 class="qld__footer__heading">Queensland Design System</h4>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div class="container-fluid">
|
|
15
|
+
<div class="row">
|
|
16
|
+
<div class="col-xs-12 col-lg-3 qld__footer__column">
|
|
17
|
+
<div class="container-fluid">
|
|
18
|
+
<div class="row ">
|
|
19
|
+
<div class="col-xs-6 col-lg-12">
|
|
20
|
+
<h4 class="qld__footer__heading">CTA Heading</h4>
|
|
21
|
+
<p class="qld__footer__cta-content">
|
|
22
|
+
CTA Lead Text
|
|
23
|
+
</p>
|
|
24
|
+
<p class="qld__footer__cta-content">
|
|
25
|
+
CTA Contact Text
|
|
26
|
+
</p>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="col-xs-6 col-lg-12 ">
|
|
29
|
+
<a href="" class="qld__btn qld__btn--secondary">Feedback</a>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<div class="col-xs-12 col-lg-2 qld__footer__column">
|
|
37
|
+
<nav class="qld__footer__navigation" aria-label="footer">
|
|
38
|
+
<ul class="qld__link-list">
|
|
39
|
+
<li>
|
|
40
|
+
<a class="qld__footer__clickable__link" href="https://www.health.qld.gov.au/global/copyright-statement">Copyright</a>
|
|
41
|
+
|
|
42
|
+
</li>
|
|
43
|
+
<li>
|
|
44
|
+
<a class="qld__footer__clickable__link" href="https://www.health.qld.gov.au/global/disclaimer">Disclaimer</a>
|
|
45
|
+
|
|
46
|
+
</li>
|
|
47
|
+
<li>
|
|
48
|
+
<a class="qld__footer__clickable__link" href="https://www.health.qld.gov.au/global/privacy">Privacy</a>
|
|
49
|
+
|
|
50
|
+
</li>
|
|
51
|
+
<li>
|
|
52
|
+
<a class="qld__footer__clickable__link" href="https://www.health.qld.gov.au/system-governance/contact-us/access-info">Right to information</a>
|
|
53
|
+
|
|
54
|
+
</li>
|
|
55
|
+
<li>
|
|
56
|
+
<a class="qld__footer__clickable__link" href="https://www.qld.gov.au/help/accessibility/">Accessibility</a>
|
|
57
|
+
|
|
58
|
+
</li>
|
|
59
|
+
<li>
|
|
60
|
+
<a class="qld__footer__clickable__link" href="https://smartjobs.qld.gov.au/jobtools/jncustomsearch.jobsearch?in_organid=14904">Jobs</a>
|
|
61
|
+
|
|
62
|
+
</li>
|
|
63
|
+
<li>
|
|
64
|
+
<a class="qld__footer__clickable__link" href="https://www.qld.gov.au/languages/">Other languages</a>
|
|
65
|
+
|
|
66
|
+
</li>
|
|
67
|
+
</ul>
|
|
68
|
+
</nav>
|
|
69
|
+
</div>
|
|
70
|
+
|
|
71
|
+
<div class="col-xs-12 col-lg-2 qld__footer__column">
|
|
72
|
+
<nav class="qld__footer__social" aria-label="social media links">
|
|
73
|
+
<h4 class="qld__footer__heading">Social links</h4>
|
|
74
|
+
<ul class="qld__link-list">
|
|
75
|
+
<li>
|
|
76
|
+
<a class="qld__footer__clickable__link" href="https://www.facebook.com/QLDHealth">
|
|
77
|
+
<svg aria-hidden="true" focusable="false" width="32" height="20" viewBox="0 0 12 21" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><title>Facebook icon</title><path d="M3.85156 20.5H7.52344V11.5547H10.375L10.8438 8H7.52344V5.53906C7.52344 4.99219 7.60156 4.5625 7.83594 4.28906C8.07031 3.97656 8.57812 3.82031 9.28125 3.82031H11.1562V0.65625C10.4531 0.578125 9.51562 0.5 8.42188 0.5C7.01562 0.5 5.92188 0.929688 5.10156 1.75C4.24219 2.57031 3.85156 3.70312 3.85156 5.1875V8H0.84375V11.5547H3.85156V20.5Z" fill="currentColor"/></svg>
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
<span class="qld__footer__social__label">Facebook</span>
|
|
83
|
+
</a>
|
|
84
|
+
</li>
|
|
85
|
+
<li>
|
|
86
|
+
<a class="qld__footer__clickable__link" href="https://twitter.com/qldhealthnews">
|
|
87
|
+
|
|
88
|
+
<svg aria-hidden="true" focusable="false" width="32" height="20" viewBox="0 0 20 17" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><title>Twitter icon</title><path d="M17.9297 4.4375C18.7109 3.85156 19.4141 3.14844 20 2.28906C19.2188 2.64062 18.4375 2.875 17.6562 2.95312C18.5156 2.40625 19.1406 1.66406 19.4531 0.6875C18.6328 1.15625 17.7734 1.50781 16.8359 1.66406C16.4453 1.27344 15.9766 0.960938 15.4688 0.726562C14.9609 0.492188 14.4141 0.375 13.8281 0.375C13.0859 0.375 12.4219 0.570312 11.7969 0.921875C11.1719 1.3125 10.6641 1.82031 10.3125 2.44531C9.92188 3.07031 9.76562 3.77344 9.76562 4.47656C9.76562 4.78906 9.76562 5.10156 9.84375 5.41406C8.16406 5.33594 6.60156 4.94531 5.11719 4.16406C3.63281 3.42188 2.42188 2.40625 1.40625 1.11719C1.01562 1.78125 0.820312 2.48438 0.820312 3.1875C0.820312 3.89062 0.976562 4.55469 1.32812 5.14062C1.64062 5.76562 2.10938 6.23438 2.65625 6.625C1.99219 6.625 1.36719 6.42969 0.820312 6.07812V6.15625C0.820312 7.13281 1.13281 7.99219 1.75781 8.73438C2.38281 9.51562 3.16406 9.98438 4.10156 10.1797C3.71094 10.2578 3.35938 10.2969 3.00781 10.2969C2.77344 10.2969 2.5 10.2969 2.26562 10.2578C2.5 11.0781 2.96875 11.7422 3.67188 12.2891C4.375 12.8359 5.15625 13.0703 6.09375 13.0703C4.57031 14.2422 2.85156 14.8281 0.976562 14.8281C0.585938 14.8281 0.273438 14.8281 0 14.7891C1.875 16.0391 3.98438 16.625 6.28906 16.625C8.67188 16.625 10.7812 16.0391 12.6562 14.7891C14.3359 13.6953 15.6641 12.25 16.6016 10.375C17.5 8.65625 17.9688 6.82031 17.9688 4.94531C17.9688 4.71094 17.9297 4.55469 17.9297 4.4375Z" fill="currentColor"/></svg>
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
<span class="qld__footer__social__label">Twitter</span>
|
|
93
|
+
</a>
|
|
94
|
+
</li>
|
|
95
|
+
<li>
|
|
96
|
+
<a class="qld__footer__clickable__link" href="http://www.linkedin.com/company/queensland-health">
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
<svg aria-hidden="true" focusable="false" width="32" height="20" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><title>Linkedin icon</title><path d="M4.15625 18.25V6.57031H0.523438V18.25H4.15625ZM2.35938 4.96875C2.90625 4.96875 3.41406 4.77344 3.84375 4.34375C4.23438 3.95312 4.46875 3.44531 4.46875 2.85938C4.46875 2.3125 4.23438 1.80469 3.84375 1.375C3.41406 0.984375 2.90625 0.75 2.35938 0.75C1.77344 0.75 1.26562 0.984375 0.875 1.375C0.445312 1.80469 0.25 2.3125 0.25 2.85938C0.25 3.44531 0.445312 3.95312 0.875 4.34375C1.26562 4.77344 1.77344 4.96875 2.35938 4.96875ZM17.75 18.25V11.8438C17.75 10.0469 17.4766 8.71875 16.9688 7.85938C16.2656 6.80469 15.0938 6.25781 13.4141 6.25781C12.5547 6.25781 11.8516 6.49219 11.2266 6.88281C10.6406 7.23438 10.2109 7.66406 9.97656 8.17188H9.9375V6.57031H6.46094V18.25H10.0547V12.4688C10.0547 11.5703 10.1719 10.8672 10.4453 10.3984C10.7578 9.77344 11.3438 9.46094 12.2031 9.46094C13.0234 9.46094 13.5703 9.8125 13.8828 10.5156C14.0391 10.9453 14.1172 11.6094 14.1172 12.5469V18.25H17.75Z" fill="currentColor"/></svg>
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
<span class="qld__footer__social__label">LinkedIn</span>
|
|
103
|
+
</a>
|
|
104
|
+
</li>
|
|
105
|
+
<li>
|
|
106
|
+
<a class="qld__footer__clickable__link" href="http://www.youtube.com/user/HealthierQueensland">
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
<svg aria-hidden="true" focusable="false" width="32" height="20" viewBox="0 0 22 15" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><title>Youtube icon</title><path d="M21.2344 2.34375C21.3906 3.04688 21.5469 4.14062 21.625 5.54688L21.6641 7.5L21.625 9.45312C21.5469 10.9375 21.3906 11.9922 21.2344 12.6953C21.0781 13.1641 20.8438 13.5547 20.5312 13.8672C20.1797 14.2188 19.7891 14.4531 19.3203 14.5703C18.6172 14.7656 17.0547 14.8828 14.5547 14.9609L11 15L7.44531 14.9609C4.94531 14.8828 3.34375 14.7656 2.67969 14.5703C2.21094 14.4531 1.78125 14.2188 1.46875 13.8672C1.11719 13.5547 0.882812 13.1641 0.765625 12.6953C0.570312 11.9922 0.453125 10.9375 0.375 9.45312L0.335938 7.5C0.335938 6.95312 0.335938 6.28906 0.375 5.54688C0.453125 4.14062 0.570312 3.04688 0.765625 2.34375C0.882812 1.875 1.11719 1.48438 1.46875 1.13281C1.78125 0.820312 2.21094 0.585938 2.67969 0.429688C3.34375 0.273438 4.94531 0.117188 7.44531 0.0390625L11 0L14.5547 0.0390625C17.0547 0.117188 18.6172 0.273438 19.3203 0.429688C19.7891 0.585938 20.1797 0.820312 20.5312 1.13281C20.8438 1.48438 21.0781 1.875 21.2344 2.34375ZM8.8125 10.7031L14.3984 7.5L8.8125 4.33594V10.7031Z" fill="currentColor"/></svg>
|
|
111
|
+
|
|
112
|
+
<span class="qld__footer__social__label">Youtube</span>
|
|
113
|
+
</a>
|
|
114
|
+
</li>
|
|
115
|
+
<li>
|
|
116
|
+
<a class="qld__footer__clickable__link" href="https://www.instagram.com/queenslandhealth/">
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
<svg aria-hidden="true" focusable="false" width="32" height="20" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg" role="img"><title>Instagram icon</title><path d="M9 5.00781C9.78125 5.00781 10.5234 5.24219 11.2266 5.63281C11.9297 6.02344 12.4766 6.57031 12.8672 7.27344C13.2578 7.97656 13.4922 8.71875 13.4922 9.5C13.4922 10.3203 13.2578 11.0625 12.8672 11.7656C12.4766 12.4688 11.9297 13.0156 11.2266 13.4062C10.5234 13.7969 9.78125 13.9922 9 13.9922C8.17969 13.9922 7.4375 13.7969 6.73438 13.4062C6.03125 13.0156 5.48438 12.4688 5.09375 11.7656C4.70312 11.0625 4.50781 10.3203 4.50781 9.5C4.50781 8.71875 4.70312 7.97656 5.09375 7.27344C5.48438 6.57031 6.03125 6.02344 6.73438 5.63281C7.4375 5.24219 8.17969 5.00781 9 5.00781ZM9 12.4297C9.78125 12.4297 10.4844 12.1562 11.0703 11.5703C11.6172 11.0234 11.9297 10.3203 11.9297 9.5C11.9297 8.71875 11.6172 8.01562 11.0703 7.42969C10.4844 6.88281 9.78125 6.57031 9 6.57031C8.17969 6.57031 7.47656 6.88281 6.92969 7.42969C6.34375 8.01562 6.07031 8.71875 6.07031 9.5C6.07031 10.3203 6.34375 11.0234 6.92969 11.5703C7.47656 12.1562 8.17969 12.4297 9 12.4297ZM14.7422 4.8125C14.7422 4.53906 14.625 4.30469 14.4297 4.07031C14.1953 3.875 13.9609 3.75781 13.6875 3.75781C13.375 3.75781 13.1406 3.875 12.9453 4.07031C12.7109 4.30469 12.6328 4.53906 12.6328 4.8125C12.6328 5.125 12.7109 5.35938 12.9453 5.55469C13.1406 5.78906 13.375 5.86719 13.6875 5.86719C13.9609 5.86719 14.1953 5.78906 14.3906 5.55469C14.5859 5.35938 14.7031 5.125 14.7422 4.8125ZM17.7109 5.86719C17.7109 6.60938 17.75 7.82031 17.75 9.5C17.75 11.2188 17.7109 12.4297 17.6719 13.1719C17.6328 13.9141 17.5156 14.5391 17.3594 15.0859C17.125 15.75 16.7344 16.3359 16.2656 16.8047C15.7969 17.2734 15.2109 17.625 14.5859 17.8594C14.0391 18.0547 13.375 18.1719 12.6328 18.2109C11.8906 18.25 10.6797 18.25 9 18.25C7.28125 18.25 6.07031 18.25 5.32812 18.2109C4.58594 18.1719 3.96094 18.0547 3.41406 17.8203C2.75 17.625 2.16406 17.2734 1.69531 16.8047C1.22656 16.3359 0.875 15.75 0.640625 15.0859C0.445312 14.5391 0.328125 13.9141 0.289062 13.1719C0.25 12.4297 0.25 11.2188 0.25 9.5C0.25 7.82031 0.25 6.60938 0.289062 5.86719C0.328125 5.125 0.445312 4.46094 0.640625 3.91406C0.875 3.28906 1.22656 2.70312 1.69531 2.23438C2.16406 1.76562 2.75 1.375 3.41406 1.14062C3.96094 0.984375 4.58594 0.867188 5.32812 0.828125C6.07031 0.789062 7.28125 0.75 9 0.75C10.6797 0.75 11.8906 0.789062 12.6328 0.828125C13.375 0.867188 14.0391 0.984375 14.5859 1.14062C15.2109 1.375 15.7969 1.76562 16.2656 2.23438C16.7344 2.70312 17.125 3.28906 17.3594 3.91406C17.5156 4.46094 17.6328 5.125 17.7109 5.86719ZM15.8359 14.6562C15.9922 14.2266 16.0703 13.5234 16.1484 12.5469C16.1484 12 16.1875 11.1797 16.1875 10.125V8.875C16.1875 7.82031 16.1484 7 16.1484 6.45312C16.0703 5.47656 15.9922 4.77344 15.8359 4.34375C15.5234 3.5625 14.9375 2.97656 14.1562 2.66406C13.7266 2.50781 13.0234 2.42969 12.0469 2.35156C11.4609 2.35156 10.6406 2.3125 9.625 2.3125H8.375C7.32031 2.3125 6.5 2.35156 5.95312 2.35156C4.97656 2.42969 4.27344 2.50781 3.84375 2.66406C3.02344 2.97656 2.47656 3.5625 2.16406 4.34375C2.00781 4.77344 1.89062 5.47656 1.85156 6.45312C1.8125 7.03906 1.8125 7.85938 1.8125 8.875V10.125C1.8125 11.1797 1.8125 12 1.85156 12.5469C1.89062 13.5234 2.00781 14.2266 2.16406 14.6562C2.47656 15.4766 3.0625 16.0234 3.84375 16.3359C4.27344 16.4922 4.97656 16.6094 5.95312 16.6484C6.5 16.6875 7.32031 16.6875 8.375 16.6875H9.625C10.6797 16.6875 11.5 16.6875 12.0469 16.6484C13.0234 16.6094 13.7266 16.4922 14.1562 16.3359C14.9375 16.0234 15.5234 15.4375 15.8359 14.6562Z" fill="currentColor"/></svg>
|
|
122
|
+
<span class="qld__footer__social__label">Instagram</span>
|
|
123
|
+
</a>
|
|
124
|
+
</li>
|
|
125
|
+
</ul>
|
|
126
|
+
</nav>
|
|
127
|
+
</div>
|
|
128
|
+
|
|
129
|
+
<div class="col-xs-12 qld__footer__column">
|
|
130
|
+
<div class="">
|
|
131
|
+
|
|
132
|
+
<p class="qld__footer__acknowledgements">
|
|
133
|
+
Queensland Government acknowledges the Traditional Owners of the land and pays respect to Elders past, present and future.
|
|
134
|
+
</p>
|
|
135
|
+
|
|
136
|
+
<p>
|
|
137
|
+
© The State of Queensland 1995-2022 (Organisation) Queensland Government
|
|
138
|
+
</p>
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
</div>
|
|
142
|
+
</div>
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|
|
145
|
+
</footer>
|
|
146
|
+
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<actions>
|
|
3
|
+
<action>
|
|
4
|
+
<action_id>create_Content_Container_Template_1574395602</action_id>
|
|
5
|
+
<action_type>create_asset</action_type>
|
|
6
|
+
<type_code>Content_Container_Template</type_code>
|
|
7
|
+
<link_type>1</link_type>
|
|
8
|
+
<parentid>1</parentid>
|
|
9
|
+
<value></value>
|
|
10
|
+
<is_dependant>0</is_dependant>
|
|
11
|
+
<is_exclusive>0</is_exclusive>
|
|
12
|
+
</action>
|
|
13
|
+
<action>
|
|
14
|
+
<action_id>set_Content_Container_Template_1574395602_name</action_id>
|
|
15
|
+
<action_type>set_attribute_value</action_type>
|
|
16
|
+
<asset>[[output://create_Content_Container_Template_1574395602.assetid]]</asset>
|
|
17
|
+
<attribute>name</attribute>
|
|
18
|
+
<value><![CDATA[Global Alert]]></value>
|
|
19
|
+
</action>
|
|
20
|
+
|
|
21
|
+
<action>
|
|
22
|
+
<action_id>set_Content_Container_Template_1574395602_edit_interface_in_admin</action_id>
|
|
23
|
+
<action_type>set_attribute_value</action_type>
|
|
24
|
+
<asset>[[output://create_Content_Container_Template_1574395602.assetid]]</asset>
|
|
25
|
+
<attribute>edit_interface_in_admin</attribute>
|
|
26
|
+
<value><![CDATA[1]]></value>
|
|
27
|
+
</action>
|
|
28
|
+
|
|
29
|
+
<action>
|
|
30
|
+
<action_id>set_Content_Container_Template_1574395602_icon_color</action_id>
|
|
31
|
+
<action_type>set_attribute_value</action_type>
|
|
32
|
+
<asset>[[output://create_Content_Container_Template_1574395602.assetid]]</asset>
|
|
33
|
+
<attribute>icon_color</attribute>
|
|
34
|
+
<value><![CDATA[blue]]></value>
|
|
35
|
+
</action>
|
|
36
|
+
|
|
37
|
+
<action>
|
|
38
|
+
<action_id>create_Metadata_Schema_5909829691</action_id>
|
|
39
|
+
<action_type>create_asset</action_type>
|
|
40
|
+
<type_code>Metadata_Schema</type_code>
|
|
41
|
+
<link_type>1</link_type>
|
|
42
|
+
<parentid>[[output://create_Content_Container_Template_1574395602.assetid]]</parentid>
|
|
43
|
+
<value></value>
|
|
44
|
+
<is_dependant>0</is_dependant>
|
|
45
|
+
<is_exclusive>0</is_exclusive>
|
|
46
|
+
</action>
|
|
47
|
+
<action>
|
|
48
|
+
<action_id>set_Metadata_Schema_5909829691_name</action_id>
|
|
49
|
+
<action_type>set_attribute_value</action_type>
|
|
50
|
+
<asset>[[output://create_Metadata_Schema_5909829691.assetid]]</asset>
|
|
51
|
+
<attribute>name</attribute>
|
|
52
|
+
<value><![CDATA[Global Alert]]></value>
|
|
53
|
+
</action>
|
|
54
|
+
<action>
|
|
55
|
+
<action_id>set_permission_5909829691_read_5</action_id>
|
|
56
|
+
<action_type>set_permission</action_type>
|
|
57
|
+
<asset>[[output://create_Metadata_Schema_5909829691.assetid]]</asset>
|
|
58
|
+
<permission>1</permission>
|
|
59
|
+
<granted>1</granted>
|
|
60
|
+
<userid>[[system://public_user]]</userid>
|
|
61
|
+
</action>
|
|
62
|
+
|
|
63
|
+
<action>
|
|
64
|
+
<action_id>create_Metadata_Section_9100383929</action_id>
|
|
65
|
+
<action_type>create_asset</action_type>
|
|
66
|
+
<type_code>Metadata_Section</type_code>
|
|
67
|
+
<link_type>2</link_type>
|
|
68
|
+
<parentid>[[output://create_Metadata_Schema_5909829691.assetid]]</parentid>
|
|
69
|
+
<value></value>
|
|
70
|
+
<is_dependant>1</is_dependant>
|
|
71
|
+
<is_exclusive>0</is_exclusive>
|
|
72
|
+
</action>
|
|
73
|
+
<action>
|
|
74
|
+
<action_id>add_Metadata_Section_9100383929_path</action_id>
|
|
75
|
+
<action_type>add_web_path</action_type>
|
|
76
|
+
<asset>[[output://create_Metadata_Section_9100383929.assetid]]</asset>
|
|
77
|
+
<parent_asset>[[output://create_Metadata_Schema_5909829691.assetid]]</parent_asset>
|
|
78
|
+
<path>settings</path>
|
|
79
|
+
</action>
|
|
80
|
+
<action>
|
|
81
|
+
<action_id>set_Metadata_Section_9100383929_name</action_id>
|
|
82
|
+
<action_type>set_attribute_value</action_type>
|
|
83
|
+
<asset>[[output://create_Metadata_Section_9100383929.assetid]]</asset>
|
|
84
|
+
<attribute>name</attribute>
|
|
85
|
+
<value><![CDATA[Settings]]></value>
|
|
86
|
+
</action>
|
|
87
|
+
<action>
|
|
88
|
+
<action_id>set_permission_9100383929_read_5</action_id>
|
|
89
|
+
<action_type>set_permission</action_type>
|
|
90
|
+
<asset>[[output://create_Metadata_Section_9100383929.assetid]]</asset>
|
|
91
|
+
<permission>1</permission>
|
|
92
|
+
<granted>1</granted>
|
|
93
|
+
<userid>[[system://public_user]]</userid>
|
|
94
|
+
</action>
|
|
95
|
+
</actions>
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{"1":function(container,depth0,helpers,partials,data) {
|
|
2
|
+
var stack1, alias1=container.lambda, alias2=container.escapeExpression, alias3=depth0 != null ? depth0 : (container.nullContext || {}), alias4=container.hooks.helperMissing, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
3
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
4
|
+
return parent[propertyName];
|
|
5
|
+
}
|
|
6
|
+
return undefined
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
return " <section class=\"qld__global_alert qld__global_alert--"
|
|
10
|
+
+ alias2(alias1(((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertLevel") : stack1)) != null ? lookupProperty(stack1,"value") : stack1), depth0))
|
|
11
|
+
+ "\">\n <div class=\"container-fluid\">\n <div class=\"qld__global_alert__main\">\n <div class=\"qld__global_alert__icon\">\n"
|
|
12
|
+
+ ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||alias4).call(alias3,((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertLevel") : stack1)) != null ? lookupProperty(stack1,"value") : stack1),"==","default",{"name":"ifCond","hash":{},"fn":container.program(2, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":6,"column":20},"end":{"line":8,"column":31}}})) != null ? stack1 : "")
|
|
13
|
+
+ ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||alias4).call(alias3,((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertLevel") : stack1)) != null ? lookupProperty(stack1,"value") : stack1),"==","critical",{"name":"ifCond","hash":{},"fn":container.program(4, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":9,"column":20},"end":{"line":11,"column":31}}})) != null ? stack1 : "")
|
|
14
|
+
+ ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||alias4).call(alias3,((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertLevel") : stack1)) != null ? lookupProperty(stack1,"value") : stack1),"==","general",{"name":"ifCond","hash":{},"fn":container.program(6, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":12,"column":20},"end":{"line":14,"column":31}}})) != null ? stack1 : "")
|
|
15
|
+
+ " </div>\n <div class=\"qld__global_alert__content\">\n"
|
|
16
|
+
+ ((stack1 = lookupProperty(helpers,"if").call(alias3,((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertMessage") : stack1)) != null ? lookupProperty(stack1,"value") : stack1),{"name":"if","hash":{},"fn":container.program(8, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":17,"column":20},"end":{"line":21,"column":27}}})) != null ? stack1 : "")
|
|
17
|
+
+ " <div class=\"qld__global_alert__action\">\n <a href=\""
|
|
18
|
+
+ alias2(alias1(((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertLinkURL") : stack1)) != null ? lookupProperty(stack1,"value") : stack1), depth0))
|
|
19
|
+
+ "\">\n <span>"
|
|
20
|
+
+ alias2(alias1(((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertLinkTitle") : stack1)) != null ? lookupProperty(stack1,"value") : stack1), depth0))
|
|
21
|
+
+ "</span>\n <svg aria-hidden=\"true\" focusable=\"false\" xmlns=\"http://www.w3.org/2000/svg\" class=\"qld__icon qld__icon--sm\"><use href=\""
|
|
22
|
+
+ alias2(alias1(((stack1 = ((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"site"))) && lookupProperty(stack1,"metadata"))) && lookupProperty(stack1,"siteDefaultIcons"))) && lookupProperty(stack1,"value")), depth0))
|
|
23
|
+
+ "#qld__icon__arrow-right\"></use></svg>\n </a> \n </div>\n </div>\n <div class=\"qld__global_alert__close\">\n <button aria-label=\"Close alert\">\n <svg aria-hidden=\"true\" focusable=\"false\" xmlns=\"http://www.w3.org/2000/svg\" class=\"qld__icon qld__icon--md\"><use href=\""
|
|
24
|
+
+ alias2(alias1(((stack1 = ((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"site"))) && lookupProperty(stack1,"metadata"))) && lookupProperty(stack1,"siteDefaultIcons"))) && lookupProperty(stack1,"value")), depth0))
|
|
25
|
+
+ "#qld__icon__close\"></use></svg>\n </button>\n </div>\n </div>\n \n </div> \n </section>\n";
|
|
26
|
+
},"2":function(container,depth0,helpers,partials,data) {
|
|
27
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
28
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
29
|
+
return parent[propertyName];
|
|
30
|
+
}
|
|
31
|
+
return undefined
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
return " <svg aria-label=\"Alert\" xmlns=\"http://www.w3.org/2000/svg\" class=\"qld__icon qld__icon--md\"><use href=\""
|
|
35
|
+
+ container.escapeExpression(container.lambda(((stack1 = ((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"site"))) && lookupProperty(stack1,"metadata"))) && lookupProperty(stack1,"siteDefaultIcons"))) && lookupProperty(stack1,"value")), depth0))
|
|
36
|
+
+ "#qld__icon__warning\"></use></svg>\n";
|
|
37
|
+
},"4":function(container,depth0,helpers,partials,data) {
|
|
38
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
39
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
40
|
+
return parent[propertyName];
|
|
41
|
+
}
|
|
42
|
+
return undefined
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
return " <svg aria-label=\"Critical alert\" xmlns=\"http://www.w3.org/2000/svg\" class=\"qld__icon qld__icon--md\"><use href=\""
|
|
46
|
+
+ container.escapeExpression(container.lambda(((stack1 = ((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"site"))) && lookupProperty(stack1,"metadata"))) && lookupProperty(stack1,"siteDefaultIcons"))) && lookupProperty(stack1,"value")), depth0))
|
|
47
|
+
+ "#qld__icon__critical\"></use></svg>\n";
|
|
48
|
+
},"6":function(container,depth0,helpers,partials,data) {
|
|
49
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
50
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
51
|
+
return parent[propertyName];
|
|
52
|
+
}
|
|
53
|
+
return undefined
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
return " <svg aria-label=\"General Alert\" xmlns=\"http://www.w3.org/2000/svg\" class=\"qld__icon qld__icon--md\"><use href=\""
|
|
57
|
+
+ container.escapeExpression(container.lambda(((stack1 = ((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"site"))) && lookupProperty(stack1,"metadata"))) && lookupProperty(stack1,"siteDefaultIcons"))) && lookupProperty(stack1,"value")), depth0))
|
|
58
|
+
+ "#qld__icon__info\"></use></svg>\n";
|
|
59
|
+
},"8":function(container,depth0,helpers,partials,data) {
|
|
60
|
+
var stack1, alias1=container.lambda, alias2=container.escapeExpression, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
61
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
62
|
+
return parent[propertyName];
|
|
63
|
+
}
|
|
64
|
+
return undefined
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
return " <div class=\"qld__global_alert__message\">\n <strong>"
|
|
68
|
+
+ alias2(alias1(((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertTitle") : stack1)) != null ? lookupProperty(stack1,"value") : stack1), depth0))
|
|
69
|
+
+ "</strong> "
|
|
70
|
+
+ alias2(alias1(((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertMessage") : stack1)) != null ? lookupProperty(stack1,"value") : stack1), depth0))
|
|
71
|
+
+ " \n </div>\n";
|
|
72
|
+
},"compiler":[8,">= 4.3.0"],"main":function(container,depth0,helpers,partials,data) {
|
|
73
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
74
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
75
|
+
return parent[propertyName];
|
|
76
|
+
}
|
|
77
|
+
return undefined
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
return ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||container.hooks.helperMissing).call(depth0 != null ? depth0 : (container.nullContext || {}),((stack1 = ((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"site") : depth0)) != null ? lookupProperty(stack1,"metadata") : stack1)) != null ? lookupProperty(stack1,"alertDisplay") : stack1)) != null ? lookupProperty(stack1,"value") : stack1),"==","true",{"name":"ifCond","hash":{},"fn":container.program(1, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":1,"column":0},"end":{"line":38,"column":11}}})) != null ? stack1 : "");
|
|
81
|
+
},"useData":true}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<section class="qld__global_alert qld__global_alert--general">
|
|
2
|
+
<div class="container-fluid">
|
|
3
|
+
<div class="qld__global_alert__main">
|
|
4
|
+
<div class="qld__global_alert__icon">
|
|
5
|
+
<svg aria-label="General Alert" xmlns="http://www.w3.org/2000/svg" class="qld__icon qld__icon--md"><use href="/mysource_files/img/svg-icons.svg#qld__icon__info"></use></svg>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="qld__global_alert__content">
|
|
8
|
+
<div class="qld__global_alert__message">
|
|
9
|
+
<strong>Global Alert:</strong> Use this to highlight critical information
|
|
10
|
+
</div>
|
|
11
|
+
<div class="qld__global_alert__action">
|
|
12
|
+
<a href="#">
|
|
13
|
+
<span>Learn more</span>
|
|
14
|
+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" class="qld__icon qld__icon--sm"><use href="/mysource_files/img/svg-icons.svg#qld__icon__arrow-right"></use></svg>
|
|
15
|
+
</a>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="qld__global_alert__close">
|
|
19
|
+
<button aria-label="Close alert">
|
|
20
|
+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" class="qld__icon qld__icon--md"><use href="/mysource_files/img/svg-icons.svg#qld__icon__close"></use></svg>
|
|
21
|
+
</button>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
</div>
|
|
26
|
+
</section>
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<actions>
|
|
3
|
+
<action>
|
|
4
|
+
<action_id>create_Content_Container_Template_168649535</action_id>
|
|
5
|
+
<action_type>create_asset</action_type>
|
|
6
|
+
<type_code>Content_Container_Template</type_code>
|
|
7
|
+
<link_type>1</link_type>
|
|
8
|
+
<parentid>1</parentid>
|
|
9
|
+
<value></value>
|
|
10
|
+
<is_dependant>0</is_dependant>
|
|
11
|
+
<is_exclusive>0</is_exclusive>
|
|
12
|
+
</action>
|
|
13
|
+
<action>
|
|
14
|
+
<action_id>set_Content_Container_Template_168649535_name</action_id>
|
|
15
|
+
<action_type>set_attribute_value</action_type>
|
|
16
|
+
<asset>[[output://create_Content_Container_Template_168649535.assetid]]</asset>
|
|
17
|
+
<attribute>name</attribute>
|
|
18
|
+
<value><![CDATA[Header]]></value>
|
|
19
|
+
</action>
|
|
20
|
+
|
|
21
|
+
<action>
|
|
22
|
+
<action_id>set_Content_Container_Template_168649535_edit_interface_in_admin</action_id>
|
|
23
|
+
<action_type>set_attribute_value</action_type>
|
|
24
|
+
<asset>[[output://create_Content_Container_Template_168649535.assetid]]</asset>
|
|
25
|
+
<attribute>edit_interface_in_admin</attribute>
|
|
26
|
+
<value><![CDATA[1]]></value>
|
|
27
|
+
</action>
|
|
28
|
+
|
|
29
|
+
<action>
|
|
30
|
+
<action_id>set_Content_Container_Template_168649535_icon_color</action_id>
|
|
31
|
+
<action_type>set_attribute_value</action_type>
|
|
32
|
+
<asset>[[output://create_Content_Container_Template_168649535.assetid]]</asset>
|
|
33
|
+
<attribute>icon_color</attribute>
|
|
34
|
+
<value><![CDATA[blue]]></value>
|
|
35
|
+
</action>
|
|
36
|
+
|
|
37
|
+
<action>
|
|
38
|
+
<action_id>create_Metadata_Schema_9361199154</action_id>
|
|
39
|
+
<action_type>create_asset</action_type>
|
|
40
|
+
<type_code>Metadata_Schema</type_code>
|
|
41
|
+
<link_type>1</link_type>
|
|
42
|
+
<parentid>[[output://create_Content_Container_Template_168649535.assetid]]</parentid>
|
|
43
|
+
<value></value>
|
|
44
|
+
<is_dependant>0</is_dependant>
|
|
45
|
+
<is_exclusive>0</is_exclusive>
|
|
46
|
+
</action>
|
|
47
|
+
<action>
|
|
48
|
+
<action_id>set_Metadata_Schema_9361199154_name</action_id>
|
|
49
|
+
<action_type>set_attribute_value</action_type>
|
|
50
|
+
<asset>[[output://create_Metadata_Schema_9361199154.assetid]]</asset>
|
|
51
|
+
<attribute>name</attribute>
|
|
52
|
+
<value><![CDATA[Header]]></value>
|
|
53
|
+
</action>
|
|
54
|
+
<action>
|
|
55
|
+
<action_id>set_permission_9361199154_read_5</action_id>
|
|
56
|
+
<action_type>set_permission</action_type>
|
|
57
|
+
<asset>[[output://create_Metadata_Schema_9361199154.assetid]]</asset>
|
|
58
|
+
<permission>1</permission>
|
|
59
|
+
<granted>1</granted>
|
|
60
|
+
<userid>[[system://public_user]]</userid>
|
|
61
|
+
</action>
|
|
62
|
+
|
|
63
|
+
<action>
|
|
64
|
+
<action_id>create_Metadata_Section_1884219477</action_id>
|
|
65
|
+
<action_type>create_asset</action_type>
|
|
66
|
+
<type_code>Metadata_Section</type_code>
|
|
67
|
+
<link_type>2</link_type>
|
|
68
|
+
<parentid>[[output://create_Metadata_Schema_9361199154.assetid]]</parentid>
|
|
69
|
+
<value></value>
|
|
70
|
+
<is_dependant>1</is_dependant>
|
|
71
|
+
<is_exclusive>0</is_exclusive>
|
|
72
|
+
</action>
|
|
73
|
+
<action>
|
|
74
|
+
<action_id>add_Metadata_Section_1884219477_path</action_id>
|
|
75
|
+
<action_type>add_web_path</action_type>
|
|
76
|
+
<asset>[[output://create_Metadata_Section_1884219477.assetid]]</asset>
|
|
77
|
+
<parent_asset>[[output://create_Metadata_Schema_9361199154.assetid]]</parent_asset>
|
|
78
|
+
<path>settings</path>
|
|
79
|
+
</action>
|
|
80
|
+
<action>
|
|
81
|
+
<action_id>set_Metadata_Section_1884219477_name</action_id>
|
|
82
|
+
<action_type>set_attribute_value</action_type>
|
|
83
|
+
<asset>[[output://create_Metadata_Section_1884219477.assetid]]</asset>
|
|
84
|
+
<attribute>name</attribute>
|
|
85
|
+
<value><![CDATA[Settings]]></value>
|
|
86
|
+
</action>
|
|
87
|
+
<action>
|
|
88
|
+
<action_id>set_permission_1884219477_read_5</action_id>
|
|
89
|
+
<action_type>set_permission</action_type>
|
|
90
|
+
<asset>[[output://create_Metadata_Section_1884219477.assetid]]</asset>
|
|
91
|
+
<permission>1</permission>
|
|
92
|
+
<granted>1</granted>
|
|
93
|
+
<userid>[[system://public_user]]</userid>
|
|
94
|
+
</action>
|
|
95
|
+
</actions>
|