@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,479 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<actions>
|
|
3
|
+
<action>
|
|
4
|
+
<action_id>create_Content_Container_Template_2845395698</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_2845395698_name</action_id>
|
|
15
|
+
<action_type>set_attribute_value</action_type>
|
|
16
|
+
<asset>[[output://create_Content_Container_Template_2845395698.assetid]]</asset>
|
|
17
|
+
<attribute>name</attribute>
|
|
18
|
+
<value><![CDATA[Page Alert]]></value>
|
|
19
|
+
</action>
|
|
20
|
+
|
|
21
|
+
<action>
|
|
22
|
+
<action_id>set_Content_Container_Template_2845395698_edit_interface_in_admin</action_id>
|
|
23
|
+
<action_type>set_attribute_value</action_type>
|
|
24
|
+
<asset>[[output://create_Content_Container_Template_2845395698.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_2845395698_icon_color</action_id>
|
|
31
|
+
<action_type>set_attribute_value</action_type>
|
|
32
|
+
<asset>[[output://create_Content_Container_Template_2845395698.assetid]]</asset>
|
|
33
|
+
<attribute>icon_color</attribute>
|
|
34
|
+
<value><![CDATA[blue]]></value>
|
|
35
|
+
</action>
|
|
36
|
+
|
|
37
|
+
<action>
|
|
38
|
+
<action_id>create_Metadata_Schema_8962528145</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_2845395698.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_8962528145_name</action_id>
|
|
49
|
+
<action_type>set_attribute_value</action_type>
|
|
50
|
+
<asset>[[output://create_Metadata_Schema_8962528145.assetid]]</asset>
|
|
51
|
+
<attribute>name</attribute>
|
|
52
|
+
<value><![CDATA[Page Alert]]></value>
|
|
53
|
+
</action>
|
|
54
|
+
<action>
|
|
55
|
+
<action_id>set_permission_8962528145_read_5</action_id>
|
|
56
|
+
<action_type>set_permission</action_type>
|
|
57
|
+
<asset>[[output://create_Metadata_Schema_8962528145.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_7130848295</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_8962528145.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_7130848295_path</action_id>
|
|
75
|
+
<action_type>add_web_path</action_type>
|
|
76
|
+
<asset>[[output://create_Metadata_Section_7130848295.assetid]]</asset>
|
|
77
|
+
<parent_asset>[[output://create_Metadata_Schema_8962528145.assetid]]</parent_asset>
|
|
78
|
+
<path>settings</path>
|
|
79
|
+
</action>
|
|
80
|
+
<action>
|
|
81
|
+
<action_id>set_Metadata_Section_7130848295_name</action_id>
|
|
82
|
+
<action_type>set_attribute_value</action_type>
|
|
83
|
+
<asset>[[output://create_Metadata_Section_7130848295.assetid]]</asset>
|
|
84
|
+
<attribute>name</attribute>
|
|
85
|
+
<value><![CDATA[Settings]]></value>
|
|
86
|
+
</action>
|
|
87
|
+
<action>
|
|
88
|
+
<action_id>set_permission_7130848295_read_5</action_id>
|
|
89
|
+
<action_type>set_permission</action_type>
|
|
90
|
+
<asset>[[output://create_Metadata_Section_7130848295.assetid]]</asset>
|
|
91
|
+
<permission>1</permission>
|
|
92
|
+
<granted>1</granted>
|
|
93
|
+
<userid>[[system://public_user]]</userid>
|
|
94
|
+
</action>
|
|
95
|
+
|
|
96
|
+
<action>
|
|
97
|
+
<action_id>create_metadata_field_select_3541353984</action_id>
|
|
98
|
+
<action_type>create_asset</action_type>
|
|
99
|
+
<type_code>metadata_field_select</type_code>
|
|
100
|
+
<link_type>2</link_type>
|
|
101
|
+
<parentid>[[output://create_Metadata_Section_7130848295.assetid]]</parentid>
|
|
102
|
+
<value></value>
|
|
103
|
+
<is_dependant>1</is_dependant>
|
|
104
|
+
<is_exclusive>0</is_exclusive>
|
|
105
|
+
</action>
|
|
106
|
+
<action>
|
|
107
|
+
<action_id>set_metadata_field_select_3541353984_name</action_id>
|
|
108
|
+
<action_type>set_attribute_value</action_type>
|
|
109
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
110
|
+
<attribute>name</attribute>
|
|
111
|
+
<value><![CDATA[type]]></value>
|
|
112
|
+
</action>
|
|
113
|
+
<action>
|
|
114
|
+
<action_id>set_metadata_field_select_3541353984_friendly_name</action_id>
|
|
115
|
+
<action_type>set_attribute_value</action_type>
|
|
116
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
117
|
+
<attribute>friendly_name</attribute>
|
|
118
|
+
<value><![CDATA[Type]]></value>
|
|
119
|
+
</action>
|
|
120
|
+
<action>
|
|
121
|
+
<action_id>set_metadata_field_select_3541353984_default</action_id>
|
|
122
|
+
<action_type>set_attribute_value</action_type>
|
|
123
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
124
|
+
<attribute>default</attribute>
|
|
125
|
+
<value><![CDATA[info]]></value>
|
|
126
|
+
</action>
|
|
127
|
+
<action>
|
|
128
|
+
<action_id>set_metadata_field_select_3541353984_description</action_id>
|
|
129
|
+
<action_type>set_attribute_value</action_type>
|
|
130
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
131
|
+
<attribute>description</attribute>
|
|
132
|
+
<value><![CDATA[]]></value>
|
|
133
|
+
</action>
|
|
134
|
+
<action>
|
|
135
|
+
<action_id>set_metadata_field_select_3541353984_editable</action_id>
|
|
136
|
+
<action_type>set_attribute_value</action_type>
|
|
137
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
138
|
+
<attribute>editable</attribute>
|
|
139
|
+
<value><![CDATA[1]]></value>
|
|
140
|
+
</action>
|
|
141
|
+
<action>
|
|
142
|
+
<action_id>set_metadata_field_select_3541353984_editable</action_id>
|
|
143
|
+
<action_type>set_attribute_value</action_type>
|
|
144
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
145
|
+
<attribute>editable</attribute>
|
|
146
|
+
<value><![CDATA[1]]></value>
|
|
147
|
+
</action>
|
|
148
|
+
<action>
|
|
149
|
+
<action_id>set_metadata_field_select_3541353984_required</action_id>
|
|
150
|
+
<action_type>set_attribute_value</action_type>
|
|
151
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
152
|
+
<attribute>required</attribute>
|
|
153
|
+
<value><![CDATA[0]]></value>
|
|
154
|
+
</action>
|
|
155
|
+
<action>
|
|
156
|
+
<action_id>set_permission_3541353984_read_5</action_id>
|
|
157
|
+
<action_type>set_permission</action_type>
|
|
158
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
159
|
+
<permission>1</permission>
|
|
160
|
+
<granted>1</granted>
|
|
161
|
+
<userid>[[system://public_user]]</userid>
|
|
162
|
+
</action>
|
|
163
|
+
|
|
164
|
+
<action>
|
|
165
|
+
<action_id>set_metadata_field_select_3541353984_select_options</action_id>
|
|
166
|
+
<action_type>set_attribute_value</action_type>
|
|
167
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
168
|
+
<attribute>select_options</attribute>
|
|
169
|
+
<value><![CDATA[array ('info' => 'Information','success' => 'Success','warning' => 'Warning','error' => 'Error',);]]></value>
|
|
170
|
+
</action>
|
|
171
|
+
<action>
|
|
172
|
+
<action_id>set_{f.type}_3541353984_edit_params</action_id>
|
|
173
|
+
<action_type>set_attribute_value</action_type>
|
|
174
|
+
<asset>[[output://create_metadata_field_select_3541353984.assetid]]</asset>
|
|
175
|
+
<attribute>edit_params</attribute>
|
|
176
|
+
<value><![CDATA[array (
|
|
177
|
+
'style' => 'list',
|
|
178
|
+
'type' => 'table',
|
|
179
|
+
'height' => '',
|
|
180
|
+
'columns' => '1',
|
|
181
|
+
'empty_text' => '',
|
|
182
|
+
'extras' => '',
|
|
183
|
+
);]]></value>
|
|
184
|
+
</action>
|
|
185
|
+
|
|
186
|
+
<action>
|
|
187
|
+
<action_id>create_metadata_field_text_4301107536</action_id>
|
|
188
|
+
<action_type>create_asset</action_type>
|
|
189
|
+
<type_code>metadata_field_text</type_code>
|
|
190
|
+
<link_type>2</link_type>
|
|
191
|
+
<parentid>[[output://create_Metadata_Section_7130848295.assetid]]</parentid>
|
|
192
|
+
<value></value>
|
|
193
|
+
<is_dependant>1</is_dependant>
|
|
194
|
+
<is_exclusive>0</is_exclusive>
|
|
195
|
+
</action>
|
|
196
|
+
<action>
|
|
197
|
+
<action_id>set_metadata_field_text_4301107536_name</action_id>
|
|
198
|
+
<action_type>set_attribute_value</action_type>
|
|
199
|
+
<asset>[[output://create_metadata_field_text_4301107536.assetid]]</asset>
|
|
200
|
+
<attribute>name</attribute>
|
|
201
|
+
<value><![CDATA[heading]]></value>
|
|
202
|
+
</action>
|
|
203
|
+
<action>
|
|
204
|
+
<action_id>set_metadata_field_text_4301107536_friendly_name</action_id>
|
|
205
|
+
<action_type>set_attribute_value</action_type>
|
|
206
|
+
<asset>[[output://create_metadata_field_text_4301107536.assetid]]</asset>
|
|
207
|
+
<attribute>friendly_name</attribute>
|
|
208
|
+
<value><![CDATA[Heading]]></value>
|
|
209
|
+
</action>
|
|
210
|
+
<action>
|
|
211
|
+
<action_id>set_metadata_field_text_4301107536_default</action_id>
|
|
212
|
+
<action_type>set_attribute_value</action_type>
|
|
213
|
+
<asset>[[output://create_metadata_field_text_4301107536.assetid]]</asset>
|
|
214
|
+
<attribute>default</attribute>
|
|
215
|
+
<value><![CDATA[Alert heading]]></value>
|
|
216
|
+
</action>
|
|
217
|
+
<action>
|
|
218
|
+
<action_id>set_metadata_field_text_4301107536_description</action_id>
|
|
219
|
+
<action_type>set_attribute_value</action_type>
|
|
220
|
+
<asset>[[output://create_metadata_field_text_4301107536.assetid]]</asset>
|
|
221
|
+
<attribute>description</attribute>
|
|
222
|
+
<value><![CDATA[]]></value>
|
|
223
|
+
</action>
|
|
224
|
+
<action>
|
|
225
|
+
<action_id>set_metadata_field_text_4301107536_editable</action_id>
|
|
226
|
+
<action_type>set_attribute_value</action_type>
|
|
227
|
+
<asset>[[output://create_metadata_field_text_4301107536.assetid]]</asset>
|
|
228
|
+
<attribute>editable</attribute>
|
|
229
|
+
<value><![CDATA[1]]></value>
|
|
230
|
+
</action>
|
|
231
|
+
<action>
|
|
232
|
+
<action_id>set_metadata_field_text_4301107536_editable</action_id>
|
|
233
|
+
<action_type>set_attribute_value</action_type>
|
|
234
|
+
<asset>[[output://create_metadata_field_text_4301107536.assetid]]</asset>
|
|
235
|
+
<attribute>editable</attribute>
|
|
236
|
+
<value><![CDATA[1]]></value>
|
|
237
|
+
</action>
|
|
238
|
+
<action>
|
|
239
|
+
<action_id>set_metadata_field_text_4301107536_required</action_id>
|
|
240
|
+
<action_type>set_attribute_value</action_type>
|
|
241
|
+
<asset>[[output://create_metadata_field_text_4301107536.assetid]]</asset>
|
|
242
|
+
<attribute>required</attribute>
|
|
243
|
+
<value><![CDATA[0]]></value>
|
|
244
|
+
</action>
|
|
245
|
+
<action>
|
|
246
|
+
<action_id>set_permission_4301107536_read_5</action_id>
|
|
247
|
+
<action_type>set_permission</action_type>
|
|
248
|
+
<asset>[[output://create_metadata_field_text_4301107536.assetid]]</asset>
|
|
249
|
+
<permission>1</permission>
|
|
250
|
+
<granted>1</granted>
|
|
251
|
+
<userid>[[system://public_user]]</userid>
|
|
252
|
+
</action>
|
|
253
|
+
|
|
254
|
+
<action>
|
|
255
|
+
<action_id>create_metadata_field_wysiwyg_2245432202</action_id>
|
|
256
|
+
<action_type>create_asset</action_type>
|
|
257
|
+
<type_code>metadata_field_wysiwyg</type_code>
|
|
258
|
+
<link_type>2</link_type>
|
|
259
|
+
<parentid>[[output://create_Metadata_Section_7130848295.assetid]]</parentid>
|
|
260
|
+
<value></value>
|
|
261
|
+
<is_dependant>1</is_dependant>
|
|
262
|
+
<is_exclusive>0</is_exclusive>
|
|
263
|
+
</action>
|
|
264
|
+
<action>
|
|
265
|
+
<action_id>set_metadata_field_wysiwyg_2245432202_name</action_id>
|
|
266
|
+
<action_type>set_attribute_value</action_type>
|
|
267
|
+
<asset>[[output://create_metadata_field_wysiwyg_2245432202.assetid]]</asset>
|
|
268
|
+
<attribute>name</attribute>
|
|
269
|
+
<value><![CDATA[body]]></value>
|
|
270
|
+
</action>
|
|
271
|
+
<action>
|
|
272
|
+
<action_id>set_metadata_field_wysiwyg_2245432202_friendly_name</action_id>
|
|
273
|
+
<action_type>set_attribute_value</action_type>
|
|
274
|
+
<asset>[[output://create_metadata_field_wysiwyg_2245432202.assetid]]</asset>
|
|
275
|
+
<attribute>friendly_name</attribute>
|
|
276
|
+
<value><![CDATA[Body]]></value>
|
|
277
|
+
</action>
|
|
278
|
+
<action>
|
|
279
|
+
<action_id>set_metadata_field_wysiwyg_2245432202_default</action_id>
|
|
280
|
+
<action_type>set_attribute_value</action_type>
|
|
281
|
+
<asset>[[output://create_metadata_field_wysiwyg_2245432202.assetid]]</asset>
|
|
282
|
+
<attribute>default</attribute>
|
|
283
|
+
<value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
|
|
284
|
+
</action>
|
|
285
|
+
<action>
|
|
286
|
+
<action_id>set_metadata_field_wysiwyg_2245432202_description</action_id>
|
|
287
|
+
<action_type>set_attribute_value</action_type>
|
|
288
|
+
<asset>[[output://create_metadata_field_wysiwyg_2245432202.assetid]]</asset>
|
|
289
|
+
<attribute>description</attribute>
|
|
290
|
+
<value><![CDATA[]]></value>
|
|
291
|
+
</action>
|
|
292
|
+
<action>
|
|
293
|
+
<action_id>set_metadata_field_wysiwyg_2245432202_editable</action_id>
|
|
294
|
+
<action_type>set_attribute_value</action_type>
|
|
295
|
+
<asset>[[output://create_metadata_field_wysiwyg_2245432202.assetid]]</asset>
|
|
296
|
+
<attribute>editable</attribute>
|
|
297
|
+
<value><![CDATA[1]]></value>
|
|
298
|
+
</action>
|
|
299
|
+
<action>
|
|
300
|
+
<action_id>set_metadata_field_wysiwyg_2245432202_editable</action_id>
|
|
301
|
+
<action_type>set_attribute_value</action_type>
|
|
302
|
+
<asset>[[output://create_metadata_field_wysiwyg_2245432202.assetid]]</asset>
|
|
303
|
+
<attribute>editable</attribute>
|
|
304
|
+
<value><![CDATA[1]]></value>
|
|
305
|
+
</action>
|
|
306
|
+
<action>
|
|
307
|
+
<action_id>set_metadata_field_wysiwyg_2245432202_required</action_id>
|
|
308
|
+
<action_type>set_attribute_value</action_type>
|
|
309
|
+
<asset>[[output://create_metadata_field_wysiwyg_2245432202.assetid]]</asset>
|
|
310
|
+
<attribute>required</attribute>
|
|
311
|
+
<value><![CDATA[0]]></value>
|
|
312
|
+
</action>
|
|
313
|
+
<action>
|
|
314
|
+
<action_id>set_permission_2245432202_read_5</action_id>
|
|
315
|
+
<action_type>set_permission</action_type>
|
|
316
|
+
<asset>[[output://create_metadata_field_wysiwyg_2245432202.assetid]]</asset>
|
|
317
|
+
<permission>1</permission>
|
|
318
|
+
<granted>1</granted>
|
|
319
|
+
<userid>[[system://public_user]]</userid>
|
|
320
|
+
</action>
|
|
321
|
+
|
|
322
|
+
<action>
|
|
323
|
+
<action_id>create_metadata_field_select_6500528981</action_id>
|
|
324
|
+
<action_type>create_asset</action_type>
|
|
325
|
+
<type_code>metadata_field_select</type_code>
|
|
326
|
+
<link_type>2</link_type>
|
|
327
|
+
<parentid>[[output://create_Metadata_Section_7130848295.assetid]]</parentid>
|
|
328
|
+
<value></value>
|
|
329
|
+
<is_dependant>1</is_dependant>
|
|
330
|
+
<is_exclusive>0</is_exclusive>
|
|
331
|
+
</action>
|
|
332
|
+
<action>
|
|
333
|
+
<action_id>set_metadata_field_select_6500528981_name</action_id>
|
|
334
|
+
<action_type>set_attribute_value</action_type>
|
|
335
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
336
|
+
<attribute>name</attribute>
|
|
337
|
+
<value><![CDATA[show_if_body]]></value>
|
|
338
|
+
</action>
|
|
339
|
+
<action>
|
|
340
|
+
<action_id>set_metadata_field_select_6500528981_friendly_name</action_id>
|
|
341
|
+
<action_type>set_attribute_value</action_type>
|
|
342
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
343
|
+
<attribute>friendly_name</attribute>
|
|
344
|
+
<value><![CDATA[Show If Body]]></value>
|
|
345
|
+
</action>
|
|
346
|
+
<action>
|
|
347
|
+
<action_id>set_metadata_field_select_6500528981_default</action_id>
|
|
348
|
+
<action_type>set_attribute_value</action_type>
|
|
349
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
350
|
+
<attribute>default</attribute>
|
|
351
|
+
<value><![CDATA[false]]></value>
|
|
352
|
+
</action>
|
|
353
|
+
<action>
|
|
354
|
+
<action_id>set_metadata_field_select_6500528981_description</action_id>
|
|
355
|
+
<action_type>set_attribute_value</action_type>
|
|
356
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
357
|
+
<attribute>description</attribute>
|
|
358
|
+
<value><![CDATA[]]></value>
|
|
359
|
+
</action>
|
|
360
|
+
<action>
|
|
361
|
+
<action_id>set_metadata_field_select_6500528981_editable</action_id>
|
|
362
|
+
<action_type>set_attribute_value</action_type>
|
|
363
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
364
|
+
<attribute>editable</attribute>
|
|
365
|
+
<value><![CDATA[1]]></value>
|
|
366
|
+
</action>
|
|
367
|
+
<action>
|
|
368
|
+
<action_id>set_metadata_field_select_6500528981_editable</action_id>
|
|
369
|
+
<action_type>set_attribute_value</action_type>
|
|
370
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
371
|
+
<attribute>editable</attribute>
|
|
372
|
+
<value><![CDATA[1]]></value>
|
|
373
|
+
</action>
|
|
374
|
+
<action>
|
|
375
|
+
<action_id>set_metadata_field_select_6500528981_required</action_id>
|
|
376
|
+
<action_type>set_attribute_value</action_type>
|
|
377
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
378
|
+
<attribute>required</attribute>
|
|
379
|
+
<value><![CDATA[0]]></value>
|
|
380
|
+
</action>
|
|
381
|
+
<action>
|
|
382
|
+
<action_id>set_permission_6500528981_read_5</action_id>
|
|
383
|
+
<action_type>set_permission</action_type>
|
|
384
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
385
|
+
<permission>1</permission>
|
|
386
|
+
<granted>1</granted>
|
|
387
|
+
<userid>[[system://public_user]]</userid>
|
|
388
|
+
</action>
|
|
389
|
+
|
|
390
|
+
<action>
|
|
391
|
+
<action_id>set_metadata_field_select_6500528981_select_options</action_id>
|
|
392
|
+
<action_type>set_attribute_value</action_type>
|
|
393
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
394
|
+
<attribute>select_options</attribute>
|
|
395
|
+
<value><![CDATA[array ('true' => 'Yes','false' => 'No',);]]></value>
|
|
396
|
+
</action>
|
|
397
|
+
<action>
|
|
398
|
+
<action_id>set_{f.type}_6500528981_edit_params</action_id>
|
|
399
|
+
<action_type>set_attribute_value</action_type>
|
|
400
|
+
<asset>[[output://create_metadata_field_select_6500528981.assetid]]</asset>
|
|
401
|
+
<attribute>edit_params</attribute>
|
|
402
|
+
<value><![CDATA[array (
|
|
403
|
+
'style' => 'list',
|
|
404
|
+
'type' => 'table',
|
|
405
|
+
'height' => '',
|
|
406
|
+
'columns' => '1',
|
|
407
|
+
'empty_text' => '',
|
|
408
|
+
'extras' => '',
|
|
409
|
+
);]]></value>
|
|
410
|
+
</action>
|
|
411
|
+
|
|
412
|
+
<action>
|
|
413
|
+
<action_id>create_metadata_field_text_2942948137</action_id>
|
|
414
|
+
<action_type>create_asset</action_type>
|
|
415
|
+
<type_code>metadata_field_text</type_code>
|
|
416
|
+
<link_type>2</link_type>
|
|
417
|
+
<parentid>[[output://create_Metadata_Section_7130848295.assetid]]</parentid>
|
|
418
|
+
<value></value>
|
|
419
|
+
<is_dependant>1</is_dependant>
|
|
420
|
+
<is_exclusive>0</is_exclusive>
|
|
421
|
+
</action>
|
|
422
|
+
<action>
|
|
423
|
+
<action_id>set_metadata_field_text_2942948137_name</action_id>
|
|
424
|
+
<action_type>set_attribute_value</action_type>
|
|
425
|
+
<asset>[[output://create_metadata_field_text_2942948137.assetid]]</asset>
|
|
426
|
+
<attribute>name</attribute>
|
|
427
|
+
<value><![CDATA[id_field]]></value>
|
|
428
|
+
</action>
|
|
429
|
+
<action>
|
|
430
|
+
<action_id>set_metadata_field_text_2942948137_friendly_name</action_id>
|
|
431
|
+
<action_type>set_attribute_value</action_type>
|
|
432
|
+
<asset>[[output://create_metadata_field_text_2942948137.assetid]]</asset>
|
|
433
|
+
<attribute>friendly_name</attribute>
|
|
434
|
+
<value><![CDATA[Id field]]></value>
|
|
435
|
+
</action>
|
|
436
|
+
<action>
|
|
437
|
+
<action_id>set_metadata_field_text_2942948137_default</action_id>
|
|
438
|
+
<action_type>set_attribute_value</action_type>
|
|
439
|
+
<asset>[[output://create_metadata_field_text_2942948137.assetid]]</asset>
|
|
440
|
+
<attribute>default</attribute>
|
|
441
|
+
<value><![CDATA[]]></value>
|
|
442
|
+
</action>
|
|
443
|
+
<action>
|
|
444
|
+
<action_id>set_metadata_field_text_2942948137_description</action_id>
|
|
445
|
+
<action_type>set_attribute_value</action_type>
|
|
446
|
+
<asset>[[output://create_metadata_field_text_2942948137.assetid]]</asset>
|
|
447
|
+
<attribute>description</attribute>
|
|
448
|
+
<value><![CDATA[]]></value>
|
|
449
|
+
</action>
|
|
450
|
+
<action>
|
|
451
|
+
<action_id>set_metadata_field_text_2942948137_editable</action_id>
|
|
452
|
+
<action_type>set_attribute_value</action_type>
|
|
453
|
+
<asset>[[output://create_metadata_field_text_2942948137.assetid]]</asset>
|
|
454
|
+
<attribute>editable</attribute>
|
|
455
|
+
<value><![CDATA[1]]></value>
|
|
456
|
+
</action>
|
|
457
|
+
<action>
|
|
458
|
+
<action_id>set_metadata_field_text_2942948137_editable</action_id>
|
|
459
|
+
<action_type>set_attribute_value</action_type>
|
|
460
|
+
<asset>[[output://create_metadata_field_text_2942948137.assetid]]</asset>
|
|
461
|
+
<attribute>editable</attribute>
|
|
462
|
+
<value><![CDATA[1]]></value>
|
|
463
|
+
</action>
|
|
464
|
+
<action>
|
|
465
|
+
<action_id>set_metadata_field_text_2942948137_required</action_id>
|
|
466
|
+
<action_type>set_attribute_value</action_type>
|
|
467
|
+
<asset>[[output://create_metadata_field_text_2942948137.assetid]]</asset>
|
|
468
|
+
<attribute>required</attribute>
|
|
469
|
+
<value><![CDATA[0]]></value>
|
|
470
|
+
</action>
|
|
471
|
+
<action>
|
|
472
|
+
<action_id>set_permission_2942948137_read_5</action_id>
|
|
473
|
+
<action_type>set_permission</action_type>
|
|
474
|
+
<asset>[[output://create_metadata_field_text_2942948137.assetid]]</asset>
|
|
475
|
+
<permission>1</permission>
|
|
476
|
+
<granted>1</granted>
|
|
477
|
+
<userid>[[system://public_user]]</userid>
|
|
478
|
+
</action>
|
|
479
|
+
</actions>
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"component": {
|
|
3
|
+
"name": "Page Alert",
|
|
4
|
+
"description": "",
|
|
5
|
+
"version": "1.0",
|
|
6
|
+
"status": "Released",
|
|
7
|
+
"data": {
|
|
8
|
+
"assetid": "123",
|
|
9
|
+
"metadata": {
|
|
10
|
+
"type": {
|
|
11
|
+
"type": "metadata_field_select",
|
|
12
|
+
"description": "",
|
|
13
|
+
"friendly_name": "Type",
|
|
14
|
+
"value": "info",
|
|
15
|
+
"options": {
|
|
16
|
+
"info": "Information",
|
|
17
|
+
"success": "Success",
|
|
18
|
+
"warning": "Warning",
|
|
19
|
+
"error": "Error"
|
|
20
|
+
},
|
|
21
|
+
"required": false,
|
|
22
|
+
"editable": true
|
|
23
|
+
},
|
|
24
|
+
"heading": {
|
|
25
|
+
"type": "metadata_field_text",
|
|
26
|
+
"description": "",
|
|
27
|
+
"friendly_name": "Heading",
|
|
28
|
+
"value": "Alert heading",
|
|
29
|
+
"required": false,
|
|
30
|
+
"editable": true
|
|
31
|
+
},
|
|
32
|
+
"body": {
|
|
33
|
+
"type": "metadata_field_wysiwyg",
|
|
34
|
+
"description": "",
|
|
35
|
+
"friendly_name": "Body",
|
|
36
|
+
"value": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
|
|
37
|
+
"required": false,
|
|
38
|
+
"editable": true
|
|
39
|
+
},
|
|
40
|
+
"show_if_body": {
|
|
41
|
+
"type": "metadata_field_select",
|
|
42
|
+
"description": "",
|
|
43
|
+
"friendly_name": "Show If Body",
|
|
44
|
+
"value": "false",
|
|
45
|
+
"options": {
|
|
46
|
+
"true": "Yes",
|
|
47
|
+
"false": "No"
|
|
48
|
+
},
|
|
49
|
+
"required": false,
|
|
50
|
+
"editable": true
|
|
51
|
+
},
|
|
52
|
+
"id_field": {
|
|
53
|
+
"type": "metadata_field_text",
|
|
54
|
+
"description": "",
|
|
55
|
+
"friendly_name": "Id field",
|
|
56
|
+
"value": "",
|
|
57
|
+
"required": false,
|
|
58
|
+
"editable": true
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{"1":function(container,depth0,helpers,partials,data) {
|
|
2
|
+
var stack1, alias1=depth0 != null ? depth0 : (container.nullContext || {}), 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__page-alerts--wrapper\" id=\""
|
|
10
|
+
+ ((stack1 = lookupProperty(helpers,"if").call(alias1,((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"metadata") : depth0)) != null ? lookupProperty(stack1,"id_field") : stack1)) != null ? lookupProperty(stack1,"value") : stack1),{"name":"if","hash":{},"fn":container.program(2, data, 0),"inverse":container.program(4, data, 0),"data":data,"loc":{"start":{"line":2,"column":47},"end":{"line":2,"column":142}}})) != null ? stack1 : "")
|
|
11
|
+
+ "\">\n <div class=\"container-fluid\">\n <div class=\"qld__page-alerts qld__page-alerts--"
|
|
12
|
+
+ container.escapeExpression(container.lambda(((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"metadata") : depth0)) != null ? lookupProperty(stack1,"type") : stack1)) != null ? lookupProperty(stack1,"value") : stack1), depth0))
|
|
13
|
+
+ "\">\n"
|
|
14
|
+
+ ((stack1 = lookupProperty(helpers,"if").call(alias1,((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"metadata") : depth0)) != null ? lookupProperty(stack1,"heading") : stack1)) != null ? lookupProperty(stack1,"value") : stack1),{"name":"if","hash":{},"fn":container.program(6, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":17,"column":12},"end":{"line":19,"column":19}}})) != null ? stack1 : "")
|
|
15
|
+
+ ((stack1 = lookupProperty(helpers,"if").call(alias1,((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"metadata") : depth0)) != null ? lookupProperty(stack1,"body") : stack1)) != null ? lookupProperty(stack1,"value") : stack1),{"name":"if","hash":{},"fn":container.program(8, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":20,"column":12},"end":{"line":22,"column":19}}})) != null ? stack1 : "")
|
|
16
|
+
+ " </div>\n </div>\n</section>\n";
|
|
17
|
+
},"2":function(container,depth0,helpers,partials,data) {
|
|
18
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
19
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
20
|
+
return parent[propertyName];
|
|
21
|
+
}
|
|
22
|
+
return undefined
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
return container.escapeExpression(container.lambda(((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"metadata") : depth0)) != null ? lookupProperty(stack1,"id_field") : stack1)) != null ? lookupProperty(stack1,"value") : stack1), depth0));
|
|
26
|
+
},"4":function(container,depth0,helpers,partials,data) {
|
|
27
|
+
var helper, 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 "page-alert-"
|
|
35
|
+
+ container.escapeExpression(((helper = (helper = lookupProperty(helpers,"assetid") || (depth0 != null ? lookupProperty(depth0,"assetid") : depth0)) != null ? helper : container.hooks.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : (container.nullContext || {}),{"name":"assetid","hash":{},"data":data,"loc":{"start":{"line":2,"column":124},"end":{"line":2,"column":135}}}) : helper)));
|
|
36
|
+
},"6":function(container,depth0,helpers,partials,data) {
|
|
37
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
38
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
39
|
+
return parent[propertyName];
|
|
40
|
+
}
|
|
41
|
+
return undefined
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
return " <div class=\"qld__page-alerts--heading qld__display-lg\">"
|
|
45
|
+
+ container.escapeExpression(container.lambda(((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"metadata") : depth0)) != null ? lookupProperty(stack1,"heading") : stack1)) != null ? lookupProperty(stack1,"value") : stack1), depth0))
|
|
46
|
+
+ "</div>\n";
|
|
47
|
+
},"8":function(container,depth0,helpers,partials,data) {
|
|
48
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
49
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
50
|
+
return parent[propertyName];
|
|
51
|
+
}
|
|
52
|
+
return undefined
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
return " <div>"
|
|
56
|
+
+ ((stack1 = container.lambda(((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"metadata") : depth0)) != null ? lookupProperty(stack1,"body") : stack1)) != null ? lookupProperty(stack1,"value") : stack1), depth0)) != null ? stack1 : "")
|
|
57
|
+
+ "</div>\n";
|
|
58
|
+
},"compiler":[8,">= 4.3.0"],"main":function(container,depth0,helpers,partials,data) {
|
|
59
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
60
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
61
|
+
return parent[propertyName];
|
|
62
|
+
}
|
|
63
|
+
return undefined
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
return ((stack1 = lookupProperty(helpers,"with").call(depth0 != null ? depth0 : (container.nullContext || {}),((stack1 = (depth0 != null ? lookupProperty(depth0,"component") : depth0)) != null ? lookupProperty(stack1,"data") : stack1),{"name":"with","hash":{},"fn":container.program(1, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":1,"column":0},"end":{"line":26,"column":9}}})) != null ? stack1 : "");
|
|
67
|
+
},"useData":true}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<section class="qld__page-alerts--wrapper" id="page-alert-123">
|
|
2
|
+
<div class="container-fluid">
|
|
3
|
+
<div class="qld__page-alerts qld__page-alerts--info">
|
|
4
|
+
<div class="qld__page-alerts--heading qld__display-lg">Alert heading</div>
|
|
5
|
+
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</div>
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
8
|
+
</section>
|