@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,165 @@
|
|
|
1
|
+
{"1":function(container,depth0,helpers,partials,data) {
|
|
2
|
+
var stack1, alias1=depth0 != null ? depth0 : (container.nullContext || {}), alias2=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 ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||alias2).call(alias1,(depth0 != null ? lookupProperty(depth0,"asset_assetid") : depth0),"!=",((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"current"))) && lookupProperty(stack1,"data"))) && lookupProperty(stack1,"assetid")),{"name":"ifCond","hash":{},"fn":container.program(2, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":11,"column":12},"end":{"line":14,"column":23}}})) != null ? stack1 : "")
|
|
10
|
+
+ ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||alias2).call(alias1,(depth0 != null ? lookupProperty(depth0,"asset_assetid") : depth0),"==",((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"current"))) && lookupProperty(stack1,"data"))) && lookupProperty(stack1,"assetid")),{"name":"ifCond","hash":{},"fn":container.program(4, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":15,"column":12},"end":{"line":18,"column":23}}})) != null ? stack1 : "")
|
|
11
|
+
+ ((stack1 = (lookupProperty(helpers,"inArray")||(depth0 && lookupProperty(depth0,"inArray"))||alias2).call(alias1,((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"current"))) && lookupProperty(stack1,"lineage")),"asset_assetid",(depth0 != null ? lookupProperty(depth0,"asset_assetid") : depth0),{"name":"inArray","hash":{},"fn":container.program(6, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":19,"column":12},"end":{"line":52,"column":24}}})) != null ? stack1 : "")
|
|
12
|
+
+ " </li>\n";
|
|
13
|
+
},"2":function(container,depth0,helpers,partials,data) {
|
|
14
|
+
var helper, alias1=depth0 != null ? depth0 : (container.nullContext || {}), alias2=container.hooks.helperMissing, alias3="function", alias4=container.escapeExpression, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
15
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
16
|
+
return parent[propertyName];
|
|
17
|
+
}
|
|
18
|
+
return undefined
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
return " <li>\n <a href=\""
|
|
22
|
+
+ alias4(((helper = (helper = lookupProperty(helpers,"asset_url") || (depth0 != null ? lookupProperty(depth0,"asset_url") : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"asset_url","hash":{},"data":data,"loc":{"start":{"line":13,"column":25},"end":{"line":13,"column":38}}}) : helper)))
|
|
23
|
+
+ "\">"
|
|
24
|
+
+ alias4(((helper = (helper = lookupProperty(helpers,"asset_short_name") || (depth0 != null ? lookupProperty(depth0,"asset_short_name") : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"asset_short_name","hash":{},"data":data,"loc":{"start":{"line":13,"column":40},"end":{"line":13,"column":60}}}) : helper)))
|
|
25
|
+
+ "</a>\n";
|
|
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 " <li class=\"active\" aria-current=\"page\">\n <span>"
|
|
35
|
+
+ container.escapeExpression(((helper = (helper = lookupProperty(helpers,"asset_short_name") || (depth0 != null ? lookupProperty(depth0,"asset_short_name") : depth0)) != null ? helper : container.hooks.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : (container.nullContext || {}),{"name":"asset_short_name","hash":{},"data":data,"loc":{"start":{"line":17,"column":22},"end":{"line":17,"column":42}}}) : helper)))
|
|
36
|
+
+ "</span>\n";
|
|
37
|
+
},"6":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 ((stack1 = lookupProperty(helpers,"if").call(depth0 != null ? depth0 : (container.nullContext || {}),(depth0 != null ? lookupProperty(depth0,"children") : depth0),{"name":"if","hash":{},"fn":container.program(7, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":20,"column":16},"end":{"line":51,"column":23}}})) != null ? stack1 : "");
|
|
46
|
+
},"7":function(container,depth0,helpers,partials,data) {
|
|
47
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
48
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
49
|
+
return parent[propertyName];
|
|
50
|
+
}
|
|
51
|
+
return undefined
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
return " <ul class=\"qld__link-list\">\n"
|
|
55
|
+
+ ((stack1 = lookupProperty(helpers,"each").call(depth0 != null ? depth0 : (container.nullContext || {}),(depth0 != null ? lookupProperty(depth0,"children") : depth0),{"name":"each","hash":{},"fn":container.program(8, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":22,"column":20},"end":{"line":49,"column":29}}})) != null ? stack1 : "")
|
|
56
|
+
+ " </ul> \n";
|
|
57
|
+
},"8":function(container,depth0,helpers,partials,data) {
|
|
58
|
+
var stack1, alias1=depth0 != null ? depth0 : (container.nullContext || {}), alias2=container.hooks.helperMissing, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
59
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
60
|
+
return parent[propertyName];
|
|
61
|
+
}
|
|
62
|
+
return undefined
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
return ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||alias2).call(alias1,(depth0 != null ? lookupProperty(depth0,"asset_assetid") : depth0),"!=",((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"current"))) && lookupProperty(stack1,"data"))) && lookupProperty(stack1,"assetid")),{"name":"ifCond","hash":{},"fn":container.program(9, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":23,"column":24},"end":{"line":26,"column":35}}})) != null ? stack1 : "")
|
|
66
|
+
+ ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||alias2).call(alias1,(depth0 != null ? lookupProperty(depth0,"asset_assetid") : depth0),"==",((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"current"))) && lookupProperty(stack1,"data"))) && lookupProperty(stack1,"assetid")),{"name":"ifCond","hash":{},"fn":container.program(11, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":27,"column":24},"end":{"line":30,"column":35}}})) != null ? stack1 : "")
|
|
67
|
+
+ ((stack1 = (lookupProperty(helpers,"inArray")||(depth0 && lookupProperty(depth0,"inArray"))||alias2).call(alias1,((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"current"))) && lookupProperty(stack1,"lineage")),"asset_assetid",(depth0 != null ? lookupProperty(depth0,"asset_assetid") : depth0),{"name":"inArray","hash":{},"fn":container.program(13, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":31,"column":24},"end":{"line":47,"column":36}}})) != null ? stack1 : "")
|
|
68
|
+
+ " </li>\n";
|
|
69
|
+
},"9":function(container,depth0,helpers,partials,data) {
|
|
70
|
+
var helper, alias1=depth0 != null ? depth0 : (container.nullContext || {}), alias2=container.hooks.helperMissing, alias3="function", alias4=container.escapeExpression, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
71
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
72
|
+
return parent[propertyName];
|
|
73
|
+
}
|
|
74
|
+
return undefined
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
return " <li>\n <a href=\""
|
|
78
|
+
+ alias4(((helper = (helper = lookupProperty(helpers,"asset_url") || (depth0 != null ? lookupProperty(depth0,"asset_url") : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"asset_url","hash":{},"data":data,"loc":{"start":{"line":25,"column":37},"end":{"line":25,"column":50}}}) : helper)))
|
|
79
|
+
+ "\">"
|
|
80
|
+
+ alias4(((helper = (helper = lookupProperty(helpers,"asset_short_name") || (depth0 != null ? lookupProperty(depth0,"asset_short_name") : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"asset_short_name","hash":{},"data":data,"loc":{"start":{"line":25,"column":52},"end":{"line":25,"column":72}}}) : helper)))
|
|
81
|
+
+ "</a>\n";
|
|
82
|
+
},"11":function(container,depth0,helpers,partials,data) {
|
|
83
|
+
var helper, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
84
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
85
|
+
return parent[propertyName];
|
|
86
|
+
}
|
|
87
|
+
return undefined
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
return " <li class=\"active\" aria-current=\"page\">\n <span>"
|
|
91
|
+
+ container.escapeExpression(((helper = (helper = lookupProperty(helpers,"asset_short_name") || (depth0 != null ? lookupProperty(depth0,"asset_short_name") : depth0)) != null ? helper : container.hooks.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : (container.nullContext || {}),{"name":"asset_short_name","hash":{},"data":data,"loc":{"start":{"line":29,"column":34},"end":{"line":29,"column":54}}}) : helper)))
|
|
92
|
+
+ "</span>\n";
|
|
93
|
+
},"13":function(container,depth0,helpers,partials,data) {
|
|
94
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
95
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
96
|
+
return parent[propertyName];
|
|
97
|
+
}
|
|
98
|
+
return undefined
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
return ((stack1 = lookupProperty(helpers,"if").call(depth0 != null ? depth0 : (container.nullContext || {}),(depth0 != null ? lookupProperty(depth0,"children") : depth0),{"name":"if","hash":{},"fn":container.program(14, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":32,"column":28},"end":{"line":46,"column":35}}})) != null ? stack1 : "");
|
|
102
|
+
},"14":function(container,depth0,helpers,partials,data) {
|
|
103
|
+
var stack1, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
104
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
105
|
+
return parent[propertyName];
|
|
106
|
+
}
|
|
107
|
+
return undefined
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
return " <ul class=\"qld__link-list\">\n"
|
|
111
|
+
+ ((stack1 = lookupProperty(helpers,"each").call(depth0 != null ? depth0 : (container.nullContext || {}),(depth0 != null ? lookupProperty(depth0,"children") : depth0),{"name":"each","hash":{},"fn":container.program(15, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":34,"column":32},"end":{"line":44,"column":41}}})) != null ? stack1 : "")
|
|
112
|
+
+ " </ul> \n";
|
|
113
|
+
},"15":function(container,depth0,helpers,partials,data) {
|
|
114
|
+
var stack1, alias1=depth0 != null ? depth0 : (container.nullContext || {}), alias2=container.hooks.helperMissing, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
115
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
116
|
+
return parent[propertyName];
|
|
117
|
+
}
|
|
118
|
+
return undefined
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
return ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||alias2).call(alias1,(depth0 != null ? lookupProperty(depth0,"asset_assetid") : depth0),"!=",((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"current"))) && lookupProperty(stack1,"data"))) && lookupProperty(stack1,"assetid")),{"name":"ifCond","hash":{},"fn":container.program(16, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":35,"column":36},"end":{"line":38,"column":47}}})) != null ? stack1 : "")
|
|
122
|
+
+ ((stack1 = (lookupProperty(helpers,"ifCond")||(depth0 && lookupProperty(depth0,"ifCond"))||alias2).call(alias1,(depth0 != null ? lookupProperty(depth0,"asset_assetid") : depth0),"==",((stack1 = ((stack1 = ((stack1 = (data && lookupProperty(data,"root"))) && lookupProperty(stack1,"current"))) && lookupProperty(stack1,"data"))) && lookupProperty(stack1,"assetid")),{"name":"ifCond","hash":{},"fn":container.program(18, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":39,"column":36},"end":{"line":42,"column":47}}})) != null ? stack1 : "")
|
|
123
|
+
+ " </li> \n";
|
|
124
|
+
},"16":function(container,depth0,helpers,partials,data) {
|
|
125
|
+
var helper, alias1=depth0 != null ? depth0 : (container.nullContext || {}), alias2=container.hooks.helperMissing, alias3="function", alias4=container.escapeExpression, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
126
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
127
|
+
return parent[propertyName];
|
|
128
|
+
}
|
|
129
|
+
return undefined
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
return " <li>\n <a href=\""
|
|
133
|
+
+ alias4(((helper = (helper = lookupProperty(helpers,"asset_url") || (depth0 != null ? lookupProperty(depth0,"asset_url") : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"asset_url","hash":{},"data":data,"loc":{"start":{"line":37,"column":49},"end":{"line":37,"column":62}}}) : helper)))
|
|
134
|
+
+ "\">"
|
|
135
|
+
+ alias4(((helper = (helper = lookupProperty(helpers,"asset_short_name") || (depth0 != null ? lookupProperty(depth0,"asset_short_name") : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"asset_short_name","hash":{},"data":data,"loc":{"start":{"line":37,"column":64},"end":{"line":37,"column":84}}}) : helper)))
|
|
136
|
+
+ "</a>\n";
|
|
137
|
+
},"18":function(container,depth0,helpers,partials,data) {
|
|
138
|
+
var helper, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
139
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
140
|
+
return parent[propertyName];
|
|
141
|
+
}
|
|
142
|
+
return undefined
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
return " <li class=\"active\" aria-current=\"page\">\n <span>"
|
|
146
|
+
+ container.escapeExpression(((helper = (helper = lookupProperty(helpers,"asset_short_name") || (depth0 != null ? lookupProperty(depth0,"asset_short_name") : depth0)) != null ? helper : container.hooks.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : (container.nullContext || {}),{"name":"asset_short_name","hash":{},"data":data,"loc":{"start":{"line":41,"column":46},"end":{"line":41,"column":66}}}) : helper)))
|
|
147
|
+
+ "</span>\n";
|
|
148
|
+
},"compiler":[8,">= 4.3.0"],"main":function(container,depth0,helpers,partials,data) {
|
|
149
|
+
var stack1, alias1=container.lambda, alias2=container.escapeExpression, lookupProperty = container.lookupProperty || function(parent, propertyName) {
|
|
150
|
+
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
|
|
151
|
+
return parent[propertyName];
|
|
152
|
+
}
|
|
153
|
+
return undefined
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
return "<div class=\"qld__side-nav qld__accordion\">\n <button class=\"qld__side-nav__toggle qld__accordion__title qld__accordion--closed\" aria-controls=\"nav-default\" aria-expanded=\"false\" aria-selected=\"false\" >\n In "
|
|
157
|
+
+ alias2(alias1(((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"current") : depth0)) != null ? lookupProperty(stack1,"top") : stack1)) != null ? lookupProperty(stack1,"asset_name") : stack1), depth0))
|
|
158
|
+
+ "\n </button>\n <nav aria-label=\"side navigation\" id=\"nav-default\" class=\"qld__side-nav__content qld__accordion--closed qld__accordion__body\"> \n <h2 class=\"qld__sidenav__title\">\n <a href=\""
|
|
159
|
+
+ alias2(alias1(((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"current") : depth0)) != null ? lookupProperty(stack1,"top") : stack1)) != null ? lookupProperty(stack1,"asset_url") : stack1), depth0))
|
|
160
|
+
+ "\">"
|
|
161
|
+
+ alias2(alias1(((stack1 = ((stack1 = (depth0 != null ? lookupProperty(depth0,"current") : depth0)) != null ? lookupProperty(stack1,"top") : stack1)) != null ? lookupProperty(stack1,"asset_name") : stack1), depth0))
|
|
162
|
+
+ "</a>\n </h2>\n <ul class=\"qld__link-list\">\n"
|
|
163
|
+
+ ((stack1 = lookupProperty(helpers,"each").call(depth0 != null ? depth0 : (container.nullContext || {}),((stack1 = (depth0 != null ? lookupProperty(depth0,"current") : depth0)) != null ? lookupProperty(stack1,"children") : stack1),{"name":"each","hash":{},"fn":container.program(1, data, 0),"inverse":container.noop,"data":data,"loc":{"start":{"line":10,"column":8},"end":{"line":54,"column":17}}})) != null ? stack1 : "")
|
|
164
|
+
+ " </ul>\n </nav>\n</div>";
|
|
165
|
+
},"useData":true}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
<div class="qld__side-nav qld__accordion">
|
|
2
|
+
<button class="qld__side-nav__toggle qld__accordion__title qld__accordion--closed" aria-controls="nav-default" aria-expanded="false" aria-selected="false" >
|
|
3
|
+
In Design
|
|
4
|
+
</button>
|
|
5
|
+
<nav aria-label="side navigation" id="nav-default" class="qld__side-nav__content qld__accordion--closed qld__accordion__body">
|
|
6
|
+
<h2 class="qld__sidenav__title">
|
|
7
|
+
<a href="/">Design</a>
|
|
8
|
+
</h2>
|
|
9
|
+
<ul class="qld__link-list">
|
|
10
|
+
<li>
|
|
11
|
+
<a href="/components.html">Components</a>
|
|
12
|
+
<ul class="qld__link-list">
|
|
13
|
+
<li>
|
|
14
|
+
<a href="/component-abstract.html">Abstract</a>
|
|
15
|
+
</li>
|
|
16
|
+
<li>
|
|
17
|
+
<a href="/component-accordion.html">Accordion</a>
|
|
18
|
+
</li>
|
|
19
|
+
<li>
|
|
20
|
+
<a href="/component-banner.html">Banner</a>
|
|
21
|
+
</li>
|
|
22
|
+
<li>
|
|
23
|
+
<a href="/component-banner_advanced.html">Banner Advanced</a>
|
|
24
|
+
</li>
|
|
25
|
+
<li>
|
|
26
|
+
<a href="/component-banner_basic.html">Banner_basic</a>
|
|
27
|
+
</li>
|
|
28
|
+
<li>
|
|
29
|
+
<a href="/component-banner_intermediate.html">Banner_intermediate</a>
|
|
30
|
+
</li>
|
|
31
|
+
<li>
|
|
32
|
+
<a href="/component-body.html">Body</a>
|
|
33
|
+
</li>
|
|
34
|
+
<li>
|
|
35
|
+
<a href="/component-btn.html">Buttons</a>
|
|
36
|
+
</li>
|
|
37
|
+
<li>
|
|
38
|
+
<a href="/component-callout.html">Callout</a>
|
|
39
|
+
</li>
|
|
40
|
+
<li>
|
|
41
|
+
<a href="/component-card_feature.html">Card_feature</a>
|
|
42
|
+
</li>
|
|
43
|
+
<li>
|
|
44
|
+
<a href="/component-card_no_action.html">Card_no_action</a>
|
|
45
|
+
</li>
|
|
46
|
+
<li>
|
|
47
|
+
<a href="/component-card_multi_action.html">Card_multi_action</a>
|
|
48
|
+
</li>
|
|
49
|
+
<li>
|
|
50
|
+
<a href="/component-card_single_action.html">Card_single_action</a>
|
|
51
|
+
</li>
|
|
52
|
+
<li>
|
|
53
|
+
<a href="/component-code.html">Code</a>
|
|
54
|
+
</li>
|
|
55
|
+
<li>
|
|
56
|
+
<a href="/component-forms.html">Forms</a>
|
|
57
|
+
</li>
|
|
58
|
+
<li>
|
|
59
|
+
<a href="/component-global-elements.html">Global elements</a>
|
|
60
|
+
</li>
|
|
61
|
+
<li>
|
|
62
|
+
<a href="/component-horizontal_rule.html">Horizontal Rule</a>
|
|
63
|
+
</li>
|
|
64
|
+
<li>
|
|
65
|
+
<a href="/component-in_page_navigation.html">In Page Navigation</a>
|
|
66
|
+
</li>
|
|
67
|
+
<li>
|
|
68
|
+
<a href="/component-multi_column.html">Multi Column</a>
|
|
69
|
+
</li>
|
|
70
|
+
<li>
|
|
71
|
+
<a href="/component-page_alert.html">Page Alert</a>
|
|
72
|
+
</li>
|
|
73
|
+
<li>
|
|
74
|
+
<a href="/component-search_box.html">Search Box</a>
|
|
75
|
+
</li>
|
|
76
|
+
<li>
|
|
77
|
+
<a href="/component-tag_list.html">Tag List</a>
|
|
78
|
+
</li>
|
|
79
|
+
<li>
|
|
80
|
+
<a href="/component-tag_list_linked.html">Tag List Linked</a>
|
|
81
|
+
</li>
|
|
82
|
+
</ul>
|
|
83
|
+
</li>
|
|
84
|
+
<li>
|
|
85
|
+
<a href="/site-templates.html">Site templates</a>
|
|
86
|
+
<ul class="qld__link-list">
|
|
87
|
+
<li>
|
|
88
|
+
<a href="/component-banner.html">Banner</a>
|
|
89
|
+
</li>
|
|
90
|
+
<li>
|
|
91
|
+
<a href="/component-breadcrumbs.html">Breadcrumbs</a>
|
|
92
|
+
</li>
|
|
93
|
+
<li>
|
|
94
|
+
<a href="/component-footer.html">Footer</a>
|
|
95
|
+
</li>
|
|
96
|
+
<li>
|
|
97
|
+
<a href="/component-global_alert.html">Global Alert</a>
|
|
98
|
+
</li>
|
|
99
|
+
<li>
|
|
100
|
+
<a href="/component-header.html">Header</a>
|
|
101
|
+
</li>
|
|
102
|
+
<li>
|
|
103
|
+
<a href="/component-internal_navigation.html">Internal Navigation</a>
|
|
104
|
+
</li>
|
|
105
|
+
<li>
|
|
106
|
+
<a href="/component-main_navigation.html">Main Navigation</a>
|
|
107
|
+
</li>
|
|
108
|
+
<li>
|
|
109
|
+
<a href="/component-mega_main_navigation.html">Mega Main Navigation</a>
|
|
110
|
+
</li>
|
|
111
|
+
<li>
|
|
112
|
+
<a href="/component-pagination.html">Pagination</a>
|
|
113
|
+
</li>
|
|
114
|
+
<li>
|
|
115
|
+
<a href="/component-tags_metadata.html">Tags Metadata</a>
|
|
116
|
+
</li>
|
|
117
|
+
<li>
|
|
118
|
+
<a href="/component-updated_date.html">Updated Date</a>
|
|
119
|
+
</li>
|
|
120
|
+
<li>
|
|
121
|
+
<a href="/component-widgets.html">Widgets</a>
|
|
122
|
+
</li>
|
|
123
|
+
</ul>
|
|
124
|
+
</li>
|
|
125
|
+
<li>
|
|
126
|
+
<a href="/inner.html">Inner</a>
|
|
127
|
+
</li>
|
|
128
|
+
</ul>
|
|
129
|
+
</nav>
|
|
130
|
+
</div>
|
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<actions>
|
|
3
|
+
<action>
|
|
4
|
+
<action_id>create_Content_Container_Template_8538614874</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_8538614874_name</action_id>
|
|
15
|
+
<action_type>set_attribute_value</action_type>
|
|
16
|
+
<asset>[[output://create_Content_Container_Template_8538614874.assetid]]</asset>
|
|
17
|
+
<attribute>name</attribute>
|
|
18
|
+
<value><![CDATA[Left_hand_navigation]]></value>
|
|
19
|
+
</action>
|
|
20
|
+
|
|
21
|
+
<action>
|
|
22
|
+
<action_id>set_Content_Container_Template_8538614874_edit_interface_in_admin</action_id>
|
|
23
|
+
<action_type>set_attribute_value</action_type>
|
|
24
|
+
<asset>[[output://create_Content_Container_Template_8538614874.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_8538614874_icon_color</action_id>
|
|
31
|
+
<action_type>set_attribute_value</action_type>
|
|
32
|
+
<asset>[[output://create_Content_Container_Template_8538614874.assetid]]</asset>
|
|
33
|
+
<attribute>icon_color</attribute>
|
|
34
|
+
<value><![CDATA[blue]]></value>
|
|
35
|
+
</action>
|
|
36
|
+
|
|
37
|
+
<action>
|
|
38
|
+
<action_id>create_Metadata_Schema_3120017453</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_8538614874.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_3120017453_name</action_id>
|
|
49
|
+
<action_type>set_attribute_value</action_type>
|
|
50
|
+
<asset>[[output://create_Metadata_Schema_3120017453.assetid]]</asset>
|
|
51
|
+
<attribute>name</attribute>
|
|
52
|
+
<value><![CDATA[Left_hand_navigation]]></value>
|
|
53
|
+
</action>
|
|
54
|
+
<action>
|
|
55
|
+
<action_id>set_permission_3120017453_read_5</action_id>
|
|
56
|
+
<action_type>set_permission</action_type>
|
|
57
|
+
<asset>[[output://create_Metadata_Schema_3120017453.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_9012729469</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_3120017453.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_9012729469_path</action_id>
|
|
75
|
+
<action_type>add_web_path</action_type>
|
|
76
|
+
<asset>[[output://create_Metadata_Section_9012729469.assetid]]</asset>
|
|
77
|
+
<parent_asset>[[output://create_Metadata_Schema_3120017453.assetid]]</parent_asset>
|
|
78
|
+
<path>settings</path>
|
|
79
|
+
</action>
|
|
80
|
+
<action>
|
|
81
|
+
<action_id>set_Metadata_Section_9012729469_name</action_id>
|
|
82
|
+
<action_type>set_attribute_value</action_type>
|
|
83
|
+
<asset>[[output://create_Metadata_Section_9012729469.assetid]]</asset>
|
|
84
|
+
<attribute>name</attribute>
|
|
85
|
+
<value><![CDATA[Settings]]></value>
|
|
86
|
+
</action>
|
|
87
|
+
<action>
|
|
88
|
+
<action_id>set_permission_9012729469_read_5</action_id>
|
|
89
|
+
<action_type>set_permission</action_type>
|
|
90
|
+
<asset>[[output://create_Metadata_Section_9012729469.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_text_4969419046</action_id>
|
|
98
|
+
<action_type>create_asset</action_type>
|
|
99
|
+
<type_code>metadata_field_text</type_code>
|
|
100
|
+
<link_type>2</link_type>
|
|
101
|
+
<parentid>[[output://create_Metadata_Section_9012729469.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_text_4969419046_name</action_id>
|
|
108
|
+
<action_type>set_attribute_value</action_type>
|
|
109
|
+
<asset>[[output://create_metadata_field_text_4969419046.assetid]]</asset>
|
|
110
|
+
<attribute>name</attribute>
|
|
111
|
+
<value><![CDATA[field1]]></value>
|
|
112
|
+
</action>
|
|
113
|
+
<action>
|
|
114
|
+
<action_id>set_metadata_field_text_4969419046_friendly_name</action_id>
|
|
115
|
+
<action_type>set_attribute_value</action_type>
|
|
116
|
+
<asset>[[output://create_metadata_field_text_4969419046.assetid]]</asset>
|
|
117
|
+
<attribute>friendly_name</attribute>
|
|
118
|
+
<value><![CDATA[Field 1]]></value>
|
|
119
|
+
</action>
|
|
120
|
+
<action>
|
|
121
|
+
<action_id>set_metadata_field_text_4969419046_default</action_id>
|
|
122
|
+
<action_type>set_attribute_value</action_type>
|
|
123
|
+
<asset>[[output://create_metadata_field_text_4969419046.assetid]]</asset>
|
|
124
|
+
<attribute>default</attribute>
|
|
125
|
+
<value><![CDATA[Example text]]></value>
|
|
126
|
+
</action>
|
|
127
|
+
<action>
|
|
128
|
+
<action_id>set_metadata_field_text_4969419046_description</action_id>
|
|
129
|
+
<action_type>set_attribute_value</action_type>
|
|
130
|
+
<asset>[[output://create_metadata_field_text_4969419046.assetid]]</asset>
|
|
131
|
+
<attribute>description</attribute>
|
|
132
|
+
<value><![CDATA[A text field]]></value>
|
|
133
|
+
</action>
|
|
134
|
+
<action>
|
|
135
|
+
<action_id>set_metadata_field_text_4969419046_editable</action_id>
|
|
136
|
+
<action_type>set_attribute_value</action_type>
|
|
137
|
+
<asset>[[output://create_metadata_field_text_4969419046.assetid]]</asset>
|
|
138
|
+
<attribute>editable</attribute>
|
|
139
|
+
<value><![CDATA[1]]></value>
|
|
140
|
+
</action>
|
|
141
|
+
<action>
|
|
142
|
+
<action_id>set_metadata_field_text_4969419046_editable</action_id>
|
|
143
|
+
<action_type>set_attribute_value</action_type>
|
|
144
|
+
<asset>[[output://create_metadata_field_text_4969419046.assetid]]</asset>
|
|
145
|
+
<attribute>editable</attribute>
|
|
146
|
+
<value><![CDATA[1]]></value>
|
|
147
|
+
</action>
|
|
148
|
+
<action>
|
|
149
|
+
<action_id>set_metadata_field_text_4969419046_required</action_id>
|
|
150
|
+
<action_type>set_attribute_value</action_type>
|
|
151
|
+
<asset>[[output://create_metadata_field_text_4969419046.assetid]]</asset>
|
|
152
|
+
<attribute>required</attribute>
|
|
153
|
+
<value><![CDATA[0]]></value>
|
|
154
|
+
</action>
|
|
155
|
+
<action>
|
|
156
|
+
<action_id>set_permission_4969419046_read_5</action_id>
|
|
157
|
+
<action_type>set_permission</action_type>
|
|
158
|
+
<asset>[[output://create_metadata_field_text_4969419046.assetid]]</asset>
|
|
159
|
+
<permission>1</permission>
|
|
160
|
+
<granted>1</granted>
|
|
161
|
+
<userid>[[system://public_user]]</userid>
|
|
162
|
+
</action>
|
|
163
|
+
|
|
164
|
+
<action>
|
|
165
|
+
<action_id>create_metadata_field_related_asset_9944837573</action_id>
|
|
166
|
+
<action_type>create_asset</action_type>
|
|
167
|
+
<type_code>metadata_field_related_asset</type_code>
|
|
168
|
+
<link_type>2</link_type>
|
|
169
|
+
<parentid>[[output://create_Metadata_Section_9012729469.assetid]]</parentid>
|
|
170
|
+
<value></value>
|
|
171
|
+
<is_dependant>1</is_dependant>
|
|
172
|
+
<is_exclusive>0</is_exclusive>
|
|
173
|
+
</action>
|
|
174
|
+
<action>
|
|
175
|
+
<action_id>set_metadata_field_related_asset_9944837573_name</action_id>
|
|
176
|
+
<action_type>set_attribute_value</action_type>
|
|
177
|
+
<asset>[[output://create_metadata_field_related_asset_9944837573.assetid]]</asset>
|
|
178
|
+
<attribute>name</attribute>
|
|
179
|
+
<value><![CDATA[root_node]]></value>
|
|
180
|
+
</action>
|
|
181
|
+
<action>
|
|
182
|
+
<action_id>set_metadata_field_related_asset_9944837573_friendly_name</action_id>
|
|
183
|
+
<action_type>set_attribute_value</action_type>
|
|
184
|
+
<asset>[[output://create_metadata_field_related_asset_9944837573.assetid]]</asset>
|
|
185
|
+
<attribute>friendly_name</attribute>
|
|
186
|
+
<value><![CDATA[Parent asset (populates 'children' and 'childrenThumbnails')]]></value>
|
|
187
|
+
</action>
|
|
188
|
+
<action>
|
|
189
|
+
<action_id>set_metadata_field_related_asset_9944837573_default</action_id>
|
|
190
|
+
<action_type>set_attribute_value</action_type>
|
|
191
|
+
<asset>[[output://create_metadata_field_related_asset_9944837573.assetid]]</asset>
|
|
192
|
+
<attribute>default</attribute>
|
|
193
|
+
<value><![CDATA[123]]></value>
|
|
194
|
+
</action>
|
|
195
|
+
<action>
|
|
196
|
+
<action_id>set_metadata_field_related_asset_9944837573_description</action_id>
|
|
197
|
+
<action_type>set_attribute_value</action_type>
|
|
198
|
+
<asset>[[output://create_metadata_field_related_asset_9944837573.assetid]]</asset>
|
|
199
|
+
<attribute>description</attribute>
|
|
200
|
+
<value><![CDATA[]]></value>
|
|
201
|
+
</action>
|
|
202
|
+
<action>
|
|
203
|
+
<action_id>set_metadata_field_related_asset_9944837573_editable</action_id>
|
|
204
|
+
<action_type>set_attribute_value</action_type>
|
|
205
|
+
<asset>[[output://create_metadata_field_related_asset_9944837573.assetid]]</asset>
|
|
206
|
+
<attribute>editable</attribute>
|
|
207
|
+
<value><![CDATA[1]]></value>
|
|
208
|
+
</action>
|
|
209
|
+
<action>
|
|
210
|
+
<action_id>set_metadata_field_related_asset_9944837573_editable</action_id>
|
|
211
|
+
<action_type>set_attribute_value</action_type>
|
|
212
|
+
<asset>[[output://create_metadata_field_related_asset_9944837573.assetid]]</asset>
|
|
213
|
+
<attribute>editable</attribute>
|
|
214
|
+
<value><![CDATA[1]]></value>
|
|
215
|
+
</action>
|
|
216
|
+
<action>
|
|
217
|
+
<action_id>set_metadata_field_related_asset_9944837573_required</action_id>
|
|
218
|
+
<action_type>set_attribute_value</action_type>
|
|
219
|
+
<asset>[[output://create_metadata_field_related_asset_9944837573.assetid]]</asset>
|
|
220
|
+
<attribute>required</attribute>
|
|
221
|
+
<value><![CDATA[0]]></value>
|
|
222
|
+
</action>
|
|
223
|
+
<action>
|
|
224
|
+
<action_id>set_permission_9944837573_read_5</action_id>
|
|
225
|
+
<action_type>set_permission</action_type>
|
|
226
|
+
<asset>[[output://create_metadata_field_related_asset_9944837573.assetid]]</asset>
|
|
227
|
+
<permission>1</permission>
|
|
228
|
+
<granted>1</granted>
|
|
229
|
+
<userid>[[system://public_user]]</userid>
|
|
230
|
+
</action>
|
|
231
|
+
|
|
232
|
+
<action>
|
|
233
|
+
<action_id>create_metadata_field_related_asset_1859470225</action_id>
|
|
234
|
+
<action_type>create_asset</action_type>
|
|
235
|
+
<type_code>metadata_field_related_asset</type_code>
|
|
236
|
+
<link_type>2</link_type>
|
|
237
|
+
<parentid>[[output://create_Metadata_Section_9012729469.assetid]]</parentid>
|
|
238
|
+
<value></value>
|
|
239
|
+
<is_dependant>1</is_dependant>
|
|
240
|
+
<is_exclusive>0</is_exclusive>
|
|
241
|
+
</action>
|
|
242
|
+
<action>
|
|
243
|
+
<action_id>set_metadata_field_related_asset_1859470225_name</action_id>
|
|
244
|
+
<action_type>set_attribute_value</action_type>
|
|
245
|
+
<asset>[[output://create_metadata_field_related_asset_1859470225.assetid]]</asset>
|
|
246
|
+
<attribute>name</attribute>
|
|
247
|
+
<value><![CDATA[asset_select]]></value>
|
|
248
|
+
</action>
|
|
249
|
+
<action>
|
|
250
|
+
<action_id>set_metadata_field_related_asset_1859470225_friendly_name</action_id>
|
|
251
|
+
<action_type>set_attribute_value</action_type>
|
|
252
|
+
<asset>[[output://create_metadata_field_related_asset_1859470225.assetid]]</asset>
|
|
253
|
+
<attribute>friendly_name</attribute>
|
|
254
|
+
<value><![CDATA[Assets to link to (populates 'assets')]]></value>
|
|
255
|
+
</action>
|
|
256
|
+
<action>
|
|
257
|
+
<action_id>set_metadata_field_related_asset_1859470225_default</action_id>
|
|
258
|
+
<action_type>set_attribute_value</action_type>
|
|
259
|
+
<asset>[[output://create_metadata_field_related_asset_1859470225.assetid]]</asset>
|
|
260
|
+
<attribute>default</attribute>
|
|
261
|
+
<value><![CDATA[1; 2; 3]]></value>
|
|
262
|
+
</action>
|
|
263
|
+
<action>
|
|
264
|
+
<action_id>set_metadata_field_related_asset_1859470225_description</action_id>
|
|
265
|
+
<action_type>set_attribute_value</action_type>
|
|
266
|
+
<asset>[[output://create_metadata_field_related_asset_1859470225.assetid]]</asset>
|
|
267
|
+
<attribute>description</attribute>
|
|
268
|
+
<value><![CDATA[]]></value>
|
|
269
|
+
</action>
|
|
270
|
+
<action>
|
|
271
|
+
<action_id>set_metadata_field_related_asset_1859470225_editable</action_id>
|
|
272
|
+
<action_type>set_attribute_value</action_type>
|
|
273
|
+
<asset>[[output://create_metadata_field_related_asset_1859470225.assetid]]</asset>
|
|
274
|
+
<attribute>editable</attribute>
|
|
275
|
+
<value><![CDATA[1]]></value>
|
|
276
|
+
</action>
|
|
277
|
+
<action>
|
|
278
|
+
<action_id>set_metadata_field_related_asset_1859470225_editable</action_id>
|
|
279
|
+
<action_type>set_attribute_value</action_type>
|
|
280
|
+
<asset>[[output://create_metadata_field_related_asset_1859470225.assetid]]</asset>
|
|
281
|
+
<attribute>editable</attribute>
|
|
282
|
+
<value><![CDATA[1]]></value>
|
|
283
|
+
</action>
|
|
284
|
+
<action>
|
|
285
|
+
<action_id>set_metadata_field_related_asset_1859470225_required</action_id>
|
|
286
|
+
<action_type>set_attribute_value</action_type>
|
|
287
|
+
<asset>[[output://create_metadata_field_related_asset_1859470225.assetid]]</asset>
|
|
288
|
+
<attribute>required</attribute>
|
|
289
|
+
<value><![CDATA[0]]></value>
|
|
290
|
+
</action>
|
|
291
|
+
<action>
|
|
292
|
+
<action_id>set_permission_1859470225_read_5</action_id>
|
|
293
|
+
<action_type>set_permission</action_type>
|
|
294
|
+
<asset>[[output://create_metadata_field_related_asset_1859470225.assetid]]</asset>
|
|
295
|
+
<permission>1</permission>
|
|
296
|
+
<granted>1</granted>
|
|
297
|
+
<userid>[[system://public_user]]</userid>
|
|
298
|
+
</action>
|
|
299
|
+
</actions>
|