@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.
Files changed (503) hide show
  1. package/.babelrc +15 -0
  2. package/.browserslistrc +5 -0
  3. package/.editorconfig +19 -0
  4. package/.eslintignore +1 -0
  5. package/.eslintrc +25 -0
  6. package/.gitattributes +2 -0
  7. package/.github/workflows/release_package.yml +103 -0
  8. package/CHANGELOG.md +14 -0
  9. package/README.md +534 -0
  10. package/dist/api/service_finder/schemas.json +1 -0
  11. package/dist/component-abstract.html +884 -0
  12. package/dist/component-accordion.html +1157 -0
  13. package/dist/component-banner.html +928 -0
  14. package/dist/component-banner_advanced.html +1524 -0
  15. package/dist/component-banner_basic.html +1189 -0
  16. package/dist/component-banner_intermediate.html +1288 -0
  17. package/dist/component-body.html +919 -0
  18. package/dist/component-breadcrumbs.html +881 -0
  19. package/dist/component-btn.html +829 -0
  20. package/dist/component-callout.html +964 -0
  21. package/dist/component-card_feature.html +1805 -0
  22. package/dist/component-card_multi_action.html +1965 -0
  23. package/dist/component-card_no_action.html +1632 -0
  24. package/dist/component-card_single_action.html +1772 -0
  25. package/dist/component-code.html +928 -0
  26. package/dist/component-footer.html +1131 -0
  27. package/dist/component-forms.html +1297 -0
  28. package/dist/component-global-elements.html +1243 -0
  29. package/dist/component-global_alert.html +891 -0
  30. package/dist/component-header.html +1155 -0
  31. package/dist/component-in_page_navigation.html +920 -0
  32. package/dist/component-internal_navigation.html +1097 -0
  33. package/dist/component-left_hand_navigation.html +995 -0
  34. package/dist/component-main_navigation.html +999 -0
  35. package/dist/component-mega_main_navigation.html +1145 -0
  36. package/dist/component-multi_column.html +1116 -0
  37. package/dist/component-page_alert.html +911 -0
  38. package/dist/component-pagination.html +971 -0
  39. package/dist/component-tag_list.html +979 -0
  40. package/dist/component-updated_date.html +778 -0
  41. package/dist/component-widgets.html +851 -0
  42. package/dist/components/_global/import.xml +95 -0
  43. package/dist/components/_global/manifest.json +11 -0
  44. package/dist/components/_global/presentation.js +50 -0
  45. package/dist/components/_global/static.html +30 -0
  46. package/dist/components/_template/import.xml +299 -0
  47. package/dist/components/_template/manifest.json +40 -0
  48. package/dist/components/_template/presentation.js +12 -0
  49. package/dist/components/_template/static.html +4 -0
  50. package/dist/components/abstract/import.xml +231 -0
  51. package/dist/components/abstract/manifest.json +29 -0
  52. package/dist/components/abstract/presentation.js +33 -0
  53. package/dist/components/abstract/static.html +9 -0
  54. package/dist/components/accordion/import.xml +1929 -0
  55. package/dist/components/accordion/manifest.json +427 -0
  56. package/dist/components/accordion/presentation.js +112 -0
  57. package/dist/components/accordion/static.html +56 -0
  58. package/dist/components/banner/import.xml +95 -0
  59. package/dist/components/banner/manifest.json +11 -0
  60. package/dist/components/banner/presentation.js +138 -0
  61. package/dist/components/banner/static.html +39 -0
  62. package/dist/components/banner_advanced/import.xml +1969 -0
  63. package/dist/components/banner_advanced/manifest.json +1450 -0
  64. package/dist/components/banner_advanced/presentation.js +564 -0
  65. package/dist/components/banner_advanced/static.html +159 -0
  66. package/dist/components/banner_basic/import.xml +907 -0
  67. package/dist/components/banner_basic/manifest.json +151 -0
  68. package/dist/components/banner_basic/presentation.js +325 -0
  69. package/dist/components/banner_basic/static.html +86 -0
  70. package/dist/components/banner_intermediate/import.xml +1473 -0
  71. package/dist/components/banner_intermediate/manifest.json +248 -0
  72. package/dist/components/banner_intermediate/presentation.js +410 -0
  73. package/dist/components/banner_intermediate/static.html +102 -0
  74. package/dist/components/body/import.xml +343 -0
  75. package/dist/components/body/manifest.json +46 -0
  76. package/dist/components/body/presentation.js +37 -0
  77. package/dist/components/body/static.html +5 -0
  78. package/dist/components/breadcrumbs/import.xml +95 -0
  79. package/dist/components/breadcrumbs/manifest.json +9 -0
  80. package/dist/components/breadcrumbs/presentation.js +99 -0
  81. package/dist/components/breadcrumbs/static.html +21 -0
  82. package/dist/components/callout/import.xml +953 -0
  83. package/dist/components/callout/manifest.json +121 -0
  84. package/dist/components/callout/presentation.js +103 -0
  85. package/dist/components/callout/static.html +10 -0
  86. package/dist/components/card_feature/import.xml +2355 -0
  87. package/dist/components/card_feature/manifest.json +1390 -0
  88. package/dist/components/card_feature/presentation.js +365 -0
  89. package/dist/components/card_feature/static.html +80 -0
  90. package/dist/components/card_multi_action/import.xml +1539 -0
  91. package/dist/components/card_multi_action/manifest.json +1314 -0
  92. package/dist/components/card_multi_action/presentation.js +638 -0
  93. package/dist/components/card_multi_action/static.html +120 -0
  94. package/dist/components/card_no_action/import.xml +1449 -0
  95. package/dist/components/card_no_action/manifest.json +1264 -0
  96. package/dist/components/card_no_action/presentation.js +454 -0
  97. package/dist/components/card_no_action/static.html +94 -0
  98. package/dist/components/card_single_action/import.xml +1539 -0
  99. package/dist/components/card_single_action/manifest.json +1273 -0
  100. package/dist/components/card_single_action/presentation.js +498 -0
  101. package/dist/components/card_single_action/static.html +103 -0
  102. package/dist/components/code/import.xml +569 -0
  103. package/dist/components/code/manifest.json +112 -0
  104. package/dist/components/code/presentation.js +124 -0
  105. package/dist/components/code/static.html +15 -0
  106. package/dist/components/footer/import.xml +95 -0
  107. package/dist/components/footer/manifest.json +9 -0
  108. package/dist/components/footer/presentation.js +409 -0
  109. package/dist/components/footer/static.html +146 -0
  110. package/dist/components/global_alert/import.xml +95 -0
  111. package/dist/components/global_alert/manifest.json +9 -0
  112. package/dist/components/global_alert/presentation.js +81 -0
  113. package/dist/components/global_alert/static.html +26 -0
  114. package/dist/components/header/import.xml +95 -0
  115. package/dist/components/header/manifest.json +11 -0
  116. package/dist/components/header/presentation.js +190 -0
  117. package/dist/components/header/static.html +158 -0
  118. package/dist/components/horizontal_rule/import.xml +547 -0
  119. package/dist/components/horizontal_rule/manifest.json +69 -0
  120. package/dist/components/horizontal_rule/presentation.js +50 -0
  121. package/dist/components/horizontal_rule/static.html +4 -0
  122. package/dist/components/in_page_navigation/import.xml +253 -0
  123. package/dist/components/in_page_navigation/manifest.json +35 -0
  124. package/dist/components/in_page_navigation/presentation.js +14 -0
  125. package/dist/components/in_page_navigation/static.html +13 -0
  126. package/dist/components/internal_navigation/import.xml +95 -0
  127. package/dist/components/internal_navigation/manifest.json +11 -0
  128. package/dist/components/internal_navigation/presentation.js +165 -0
  129. package/dist/components/internal_navigation/static.html +130 -0
  130. package/dist/components/left_hand_navigation/import.xml +299 -0
  131. package/dist/components/left_hand_navigation/manifest.json +40 -0
  132. package/dist/components/left_hand_navigation/presentation.js +178 -0
  133. package/dist/components/left_hand_navigation/static.html +64 -0
  134. package/dist/components/main_navigation/import.xml +95 -0
  135. package/dist/components/main_navigation/manifest.json +11 -0
  136. package/dist/components/main_navigation/presentation.js +150 -0
  137. package/dist/components/main_navigation/static.html +80 -0
  138. package/dist/components/mega_main_navigation/import.xml +95 -0
  139. package/dist/components/mega_main_navigation/manifest.json +9 -0
  140. package/dist/components/mega_main_navigation/presentation.js +380 -0
  141. package/dist/components/mega_main_navigation/static.html +153 -0
  142. package/dist/components/multi_column/import.xml +1631 -0
  143. package/dist/components/multi_column/manifest.json +233 -0
  144. package/dist/components/multi_column/presentation.js +249 -0
  145. package/dist/components/multi_column/static.html +36 -0
  146. package/dist/components/page_alert/import.xml +479 -0
  147. package/dist/components/page_alert/manifest.json +63 -0
  148. package/dist/components/page_alert/presentation.js +67 -0
  149. package/dist/components/page_alert/static.html +8 -0
  150. package/dist/components/pagination/import.xml +95 -0
  151. package/dist/components/pagination/manifest.json +42 -0
  152. package/dist/components/pagination/presentation.js +84 -0
  153. package/dist/components/pagination/static.html +5 -0
  154. package/dist/components/updated_date/import.xml +95 -0
  155. package/dist/components/updated_date/manifest.json +9 -0
  156. package/dist/components/updated_date/presentation.js +34 -0
  157. package/dist/components/updated_date/static.html +6 -0
  158. package/dist/components/widgets/import.xml +95 -0
  159. package/dist/components/widgets/manifest.json +9 -0
  160. package/dist/components/widgets/presentation.js +40 -0
  161. package/dist/components/widgets/static.html +0 -0
  162. package/dist/components.html +790 -0
  163. package/dist/externals/componentPreview.js +101 -0
  164. package/dist/externals/dsComponentLoader.js +410 -0
  165. package/dist/externals/esri-leaflet-vector.js +5 -0
  166. package/dist/externals/esri-leaflet.js +12 -0
  167. package/dist/externals/fb-handlebars.min.js +29 -0
  168. package/dist/externals/fb-typeahead.bundle.min.js +6 -0
  169. package/dist/externals/funnelback.autocompletion-2.6.0.js +678 -0
  170. package/dist/externals/getPagination.js +62 -0
  171. package/dist/externals/handlebars.min-v4.7.6.js +29 -0
  172. package/dist/externals/leaflet.js +6 -0
  173. package/dist/externals/populateDatastoreSim.js +381 -0
  174. package/dist/externals/tinymce_classes.css +62 -0
  175. package/dist/home.html +694 -0
  176. package/dist/index.html +710 -0
  177. package/dist/inner-with-nav.html +1853 -0
  178. package/dist/inner.html +671 -0
  179. package/dist/js/helpers.js +892 -0
  180. package/dist/js/main.js +55 -0
  181. package/dist/js/main.js.map +1 -0
  182. package/dist/js/runtime.js +2 -0
  183. package/dist/js/runtime.js.map +1 -0
  184. package/dist/main.css +918 -0
  185. package/dist/main.css.map +1 -0
  186. package/dist/mysource_files/ajax-loader.gif +0 -0
  187. package/dist/mysource_files/favicons/favicon.ico +0 -0
  188. package/dist/mysource_files/img/100x100.jpg +0 -0
  189. package/dist/mysource_files/img/600x260.jpg +0 -0
  190. package/dist/mysource_files/img/Heart-Pattern-Dark.png +0 -0
  191. package/dist/mysource_files/img/Heart-Pattern.png +0 -0
  192. package/dist/mysource_files/img/banner-background--desktop.png +0 -0
  193. package/dist/mysource_files/img/banner-background--mobile.png +0 -0
  194. package/dist/mysource_files/img/banner-bg.png +0 -0
  195. package/dist/mysource_files/img/banner.png +0 -0
  196. package/dist/mysource_files/img/card--brand.png +0 -0
  197. package/dist/mysource_files/img/card--components.png +0 -0
  198. package/dist/mysource_files/img/card--content.png +0 -0
  199. package/dist/mysource_files/img/header-logo-agov.png +0 -0
  200. package/dist/mysource_files/img/header-logo-qgov--dark.svg +63 -0
  201. package/dist/mysource_files/img/header-logo-qgov--light.svg +56 -0
  202. package/dist/mysource_files/img/header-logo-qgov--pre-dark.svg +56 -0
  203. package/dist/mysource_files/img/header-search.svg +3 -0
  204. package/dist/mysource_files/img/layers-2x.png +0 -0
  205. package/dist/mysource_files/img/layers.png +0 -0
  206. package/dist/mysource_files/img/marker-icon.png +0 -0
  207. package/dist/mysource_files/img/svg-icons.svg +155 -0
  208. package/dist/mysource_files/img/video-play.svg +3 -0
  209. package/dist/mysource_files/slick.eot +0 -0
  210. package/dist/mysource_files/slick.svg +14 -0
  211. package/dist/mysource_files/slick.ttf +0 -0
  212. package/dist/mysource_files/slick.woff +0 -0
  213. package/package-lock.json +14276 -0
  214. package/package.json +79 -0
  215. package/scripts/add_component.sh +109 -0
  216. package/src/assets/favicons/favicon.ico +0 -0
  217. package/src/assets/img/100x100.jpg +0 -0
  218. package/src/assets/img/600x260.jpg +0 -0
  219. package/src/assets/img/Heart-Pattern-Dark.png +0 -0
  220. package/src/assets/img/Heart-Pattern.png +0 -0
  221. package/src/assets/img/banner-background--desktop.png +0 -0
  222. package/src/assets/img/banner-background--mobile.png +0 -0
  223. package/src/assets/img/banner-bg.png +0 -0
  224. package/src/assets/img/banner.png +0 -0
  225. package/src/assets/img/card--brand.png +0 -0
  226. package/src/assets/img/card--components.png +0 -0
  227. package/src/assets/img/card--content.png +0 -0
  228. package/src/assets/img/header-logo-agov.png +0 -0
  229. package/src/assets/img/header-logo-qgov--dark.svg +63 -0
  230. package/src/assets/img/header-logo-qgov--light.svg +56 -0
  231. package/src/assets/img/header-logo-qgov--pre-dark.svg +56 -0
  232. package/src/assets/img/header-search.svg +3 -0
  233. package/src/assets/img/layers-2x.png +0 -0
  234. package/src/assets/img/layers.png +0 -0
  235. package/src/assets/img/marker-icon.png +0 -0
  236. package/src/assets/img/svg-icons.svg +155 -0
  237. package/src/assets/img/video-play.svg +3 -0
  238. package/src/components/_global/css/admin/component.scss +71 -0
  239. package/src/components/_global/css/body/component.scss +897 -0
  240. package/src/components/_global/css/btn/component.scss +564 -0
  241. package/src/components/_global/css/cta_links/component.scss +121 -0
  242. package/src/components/_global/css/direction_links/component.scss +196 -0
  243. package/src/components/_global/css/example/component.scss +54 -0
  244. package/src/components/_global/css/forms/control_inputs/component.scss +349 -0
  245. package/src/components/_global/css/forms/general/component.scss +298 -0
  246. package/src/components/_global/css/forms/select/component.scss +230 -0
  247. package/src/components/_global/css/forms/text/component.scss +402 -0
  248. package/src/components/_global/css/global.scss +42 -0
  249. package/src/components/_global/css/grid-12/component.scss +331 -0
  250. package/src/components/_global/css/headings/component.scss +172 -0
  251. package/src/components/_global/css/icons/component.scss +29 -0
  252. package/src/components/_global/css/link_columns/component.scss +194 -0
  253. package/src/components/_global/css/link_list/component.scss +37 -0
  254. package/src/components/_global/css/modal/component.scss +182 -0
  255. package/src/components/_global/css/slick/component.scss +25 -0
  256. package/src/components/_global/css/table/component.scss +211 -0
  257. package/src/components/_global/css/tabs/component.scss +43 -0
  258. package/src/components/_global/css/tags/component.scss +272 -0
  259. package/src/components/_global/css/user_location/component.scss +38 -0
  260. package/src/components/_global/css/version/component.scss +47 -0
  261. package/src/components/_global/html/component.hbs +108 -0
  262. package/src/components/_global/html/ds_component.hbs +30 -0
  263. package/src/components/_global/html/head.html +63 -0
  264. package/src/components/_global/html/scripts.html +58 -0
  265. package/src/components/_global/js/_polyfills/global.js +18 -0
  266. package/src/components/_global/js/animate/global.js +324 -0
  267. package/src/components/_global/js/forms/global.js +182 -0
  268. package/src/components/_global/js/global.js +302 -0
  269. package/src/components/_global/js/manifest.json +11 -0
  270. package/src/components/_global/js/modal/global.js +236 -0
  271. package/src/components/_global/js/slick/global.js +153 -0
  272. package/src/components/_global/js/tabs/global.js +305 -0
  273. package/src/components/_global/js/user_location/global.js +116 -0
  274. package/src/components/_template/css/component.scss +22 -0
  275. package/src/components/_template/html/component-page.html +85 -0
  276. package/src/components/_template/html/component.hbs +4 -0
  277. package/src/components/_template/js/global.js +6 -0
  278. package/src/components/_template/js/manifest.json +40 -0
  279. package/src/components/abstract/css/component.scss +91 -0
  280. package/src/components/abstract/html/component.hbs +9 -0
  281. package/src/components/abstract/js/manifest.json +29 -0
  282. package/src/components/accordion/css/component.scss +329 -0
  283. package/src/components/accordion/html/accordion-group.html +157 -0
  284. package/src/components/accordion/html/component.hbs +46 -0
  285. package/src/components/accordion/html/default.html +92 -0
  286. package/src/components/accordion/js/global.js +413 -0
  287. package/src/components/accordion/js/manifest.json +427 -0
  288. package/src/components/banner/css/component.scss +664 -0
  289. package/src/components/banner/html/component.hbs +52 -0
  290. package/src/components/banner/js/manifest.json +11 -0
  291. package/src/components/banner_advanced/css/component.scss +7 -0
  292. package/src/components/banner_advanced/html/component.hbs +213 -0
  293. package/src/components/banner_advanced/js/global.js +6 -0
  294. package/src/components/banner_advanced/js/manifest.json +1450 -0
  295. package/src/components/banner_basic/css/component.scss +52 -0
  296. package/src/components/banner_basic/html/component.hbs +130 -0
  297. package/src/components/banner_basic/js/global.js +6 -0
  298. package/src/components/banner_basic/js/manifest.json +151 -0
  299. package/src/components/banner_intermediate/css/component.scss +276 -0
  300. package/src/components/banner_intermediate/html/component.hbs +165 -0
  301. package/src/components/banner_intermediate/js/global.js +6 -0
  302. package/src/components/banner_intermediate/js/manifest.json +248 -0
  303. package/src/components/body/css/component.scss +16 -0
  304. package/src/components/body/html/component.hbs +5 -0
  305. package/src/components/body/js/manifest.json +46 -0
  306. package/src/components/breadcrumbs/css/component.scss +236 -0
  307. package/src/components/breadcrumbs/html/component.hbs +29 -0
  308. package/src/components/breadcrumbs/js/manifest.json +9 -0
  309. package/src/components/callout/css/component.scss +146 -0
  310. package/src/components/callout/html/component.hbs +28 -0
  311. package/src/components/callout/js/manifest.json +121 -0
  312. package/src/components/card_feature/css/component.scss +224 -0
  313. package/src/components/card_feature/html/component.hbs +129 -0
  314. package/src/components/card_feature/js/manifest.json +1390 -0
  315. package/src/components/card_multi_action/css/component.scss +229 -0
  316. package/src/components/card_multi_action/html/component.hbs +192 -0
  317. package/src/components/card_multi_action/js/manifest.json +1314 -0
  318. package/src/components/card_no_action/css/component.scss +551 -0
  319. package/src/components/card_no_action/html/component.hbs +127 -0
  320. package/src/components/card_no_action/js/global.js +6 -0
  321. package/src/components/card_no_action/js/manifest.json +1264 -0
  322. package/src/components/card_single_action/css/component.scss +164 -0
  323. package/src/components/card_single_action/html/component.hbs +161 -0
  324. package/src/components/card_single_action/js/manifest.json +1273 -0
  325. package/src/components/code/css/component.scss +355 -0
  326. package/src/components/code/html/component.hbs +84 -0
  327. package/src/components/code/js/global.js +160 -0
  328. package/src/components/code/js/manifest.json +112 -0
  329. package/src/components/footer/css/component.scss +437 -0
  330. package/src/components/footer/html/component.hbs +177 -0
  331. package/src/components/footer/js/manifest.json +9 -0
  332. package/src/components/global_alert/css/component.scss +169 -0
  333. package/src/components/global_alert/html/component.hbs +38 -0
  334. package/src/components/global_alert/js/global.js +39 -0
  335. package/src/components/global_alert/js/manifest.json +9 -0
  336. package/src/components/header/css/component.scss +697 -0
  337. package/src/components/header/html/component.hbs +186 -0
  338. package/src/components/header/js/global.js +188 -0
  339. package/src/components/header/js/manifest.json +11 -0
  340. package/src/components/horizontal_rule/css/component.scss +37 -0
  341. package/src/components/horizontal_rule/html/component.hbs +6 -0
  342. package/src/components/horizontal_rule/js/manifest.json +69 -0
  343. package/src/components/in_page_navigation/css/component.scss +54 -0
  344. package/src/components/in_page_navigation/html/component.hbs +17 -0
  345. package/src/components/in_page_navigation/js/global.js +51 -0
  346. package/src/components/in_page_navigation/js/manifest.json +35 -0
  347. package/src/components/internal_navigation/css/component.scss +437 -0
  348. package/src/components/internal_navigation/html/component.hbs +57 -0
  349. package/src/components/internal_navigation/js/manifest.json +11 -0
  350. package/src/components/left_hand_navigation/css/component.scss +280 -0
  351. package/src/components/left_hand_navigation/html/component.hbs +77 -0
  352. package/src/components/left_hand_navigation/js/global.js +36 -0
  353. package/src/components/left_hand_navigation/js/manifest.json +40 -0
  354. package/src/components/main_navigation/css/component.scss +706 -0
  355. package/src/components/main_navigation/html/component.hbs +87 -0
  356. package/src/components/main_navigation/js/global.js +373 -0
  357. package/src/components/main_navigation/js/manifest.json +11 -0
  358. package/src/components/mega_main_navigation/css/component.scss +535 -0
  359. package/src/components/mega_main_navigation/html/component.hbs +157 -0
  360. package/src/components/mega_main_navigation/js/global.js +170 -0
  361. package/src/components/mega_main_navigation/js/manifest.json +9 -0
  362. package/src/components/multi_column/css/component.scss +11 -0
  363. package/src/components/multi_column/html/component.hbs +98 -0
  364. package/src/components/multi_column/js/manifest.json +233 -0
  365. package/src/components/page_alert/css/component.scss +132 -0
  366. package/src/components/page_alert/html/component.hbs +26 -0
  367. package/src/components/page_alert/js/manifest.json +63 -0
  368. package/src/components/pagination/css/component.scss +196 -0
  369. package/src/components/pagination/html/component.hbs +41 -0
  370. package/src/components/pagination/html/default.html +30 -0
  371. package/src/components/pagination/js/manifest.json +42 -0
  372. package/src/components/search_box/css/component.scss +48 -0
  373. package/src/components/search_box/html/component.html +11 -0
  374. package/src/components/search_box/js/manifest.json +73 -0
  375. package/src/components/updated_date/css/component.scss +0 -0
  376. package/src/components/updated_date/html/component.hbs +31 -0
  377. package/src/components/updated_date/js/manifest.json +9 -0
  378. package/src/components/widgets/css/component.scss +82 -0
  379. package/src/components/widgets/html/component.hbs +19 -0
  380. package/src/components/widgets/html/default.html +4 -0
  381. package/src/components/widgets/js/current.json +483 -0
  382. package/src/components/widgets/js/manifest.json +9 -0
  383. package/src/components/widgets/js/site.json +358 -0
  384. package/src/data/current.json +522 -0
  385. package/src/data/current_admin.json +305 -0
  386. package/src/data/model_component.js +14 -0
  387. package/src/data/site.json +762 -0
  388. package/src/externals/componentPreview.js +101 -0
  389. package/src/externals/dsComponentLoader.js +410 -0
  390. package/src/externals/esri-leaflet-vector.js +5 -0
  391. package/src/externals/esri-leaflet.js +12 -0
  392. package/src/externals/fb-handlebars.min.js +29 -0
  393. package/src/externals/fb-typeahead.bundle.min.js +6 -0
  394. package/src/externals/funnelback.autocompletion-2.6.0.js +678 -0
  395. package/src/externals/getPagination.js +62 -0
  396. package/src/externals/handlebars.min-v4.7.6.js +29 -0
  397. package/src/externals/leaflet.js +6 -0
  398. package/src/externals/populateDatastoreSim.js +381 -0
  399. package/src/externals/tinymce_classes.css +62 -0
  400. package/src/helpers/Handlebars/appendIf.js +6 -0
  401. package/src/helpers/Handlebars/arrayLength.js +3 -0
  402. package/src/helpers/Handlebars/arrayWith.js +13 -0
  403. package/src/helpers/Handlebars/capitaliseFirst.js +8 -0
  404. package/src/helpers/Handlebars/charMax.js +8 -0
  405. package/src/helpers/Handlebars/checkIf.js +20 -0
  406. package/src/helpers/Handlebars/columnWidth.js +39 -0
  407. package/src/helpers/Handlebars/contains.js +7 -0
  408. package/src/helpers/Handlebars/createMap.js +19 -0
  409. package/src/helpers/Handlebars/dsMapFromID.js +8 -0
  410. package/src/helpers/Handlebars/dsMapFromProp.js +8 -0
  411. package/src/helpers/Handlebars/eachByName.js +18 -0
  412. package/src/helpers/Handlebars/eachDS.js +7 -0
  413. package/src/helpers/Handlebars/eachFrom.js +13 -0
  414. package/src/helpers/Handlebars/eachUpTo.js +8 -0
  415. package/src/helpers/Handlebars/eachWhen.js +33 -0
  416. package/src/helpers/Handlebars/formatDate.js +62 -0
  417. package/src/helpers/Handlebars/generateDates.js +74 -0
  418. package/src/helpers/Handlebars/getDistance.js +40 -0
  419. package/src/helpers/Handlebars/getObject.js +3 -0
  420. package/src/helpers/Handlebars/getParamaterByName.js +11 -0
  421. package/src/helpers/Handlebars/getPossibleValues.js +13 -0
  422. package/src/helpers/Handlebars/getProp.js +3 -0
  423. package/src/helpers/Handlebars/getTags.js +20 -0
  424. package/src/helpers/Handlebars/getTitle.js +4 -0
  425. package/src/helpers/Handlebars/ifAny.js +9 -0
  426. package/src/helpers/Handlebars/ifArray.js +3 -0
  427. package/src/helpers/Handlebars/ifCond.js +31 -0
  428. package/src/helpers/Handlebars/ifEqualsOrChained.js +12 -0
  429. package/src/helpers/Handlebars/ifProp.js +3 -0
  430. package/src/helpers/Handlebars/if_eq.js +9 -0
  431. package/src/helpers/Handlebars/inArray.js +8 -0
  432. package/src/helpers/Handlebars/isPage.js +7 -0
  433. package/src/helpers/Handlebars/itemAt.js +11 -0
  434. package/src/helpers/Handlebars/jsonParse.js +8 -0
  435. package/src/helpers/Handlebars/jsonStringify.js +3 -0
  436. package/src/helpers/Handlebars/listAZ.js +51 -0
  437. package/src/helpers/Handlebars/listAZOptions.js +34 -0
  438. package/src/helpers/Handlebars/listByClosest.js +60 -0
  439. package/src/helpers/Handlebars/listByClosestWithOffset.js +63 -0
  440. package/src/helpers/Handlebars/math.js +11 -0
  441. package/src/helpers/Handlebars/newLineToBreak.js +6 -0
  442. package/src/helpers/Handlebars/nonBreakingSpaces.js +6 -0
  443. package/src/helpers/Handlebars/objectFromSelect.js +21 -0
  444. package/src/helpers/Handlebars/partialReplace.js +9 -0
  445. package/src/helpers/Handlebars/printAccordion.js +24 -0
  446. package/src/helpers/Handlebars/replace.js +8 -0
  447. package/src/helpers/Handlebars/replaceMany.js +5 -0
  448. package/src/helpers/Handlebars/sizeFormat.js +11 -0
  449. package/src/helpers/Handlebars/split.js +6 -0
  450. package/src/helpers/Handlebars/toUpperCase.js +7 -0
  451. package/src/helpers/Handlebars/urldecode.js +3 -0
  452. package/src/helpers/Handlebars/urlencode.js +3 -0
  453. package/src/helpers/Handlebars/withinObject.js +13 -0
  454. package/src/html/component-abstract.html +86 -0
  455. package/src/html/component-accordion.html +87 -0
  456. package/src/html/component-banner.html +84 -0
  457. package/src/html/component-banner_advanced.html +97 -0
  458. package/src/html/component-banner_basic.html +163 -0
  459. package/src/html/component-banner_intermediate.html +91 -0
  460. package/src/html/component-body.html +116 -0
  461. package/src/html/component-breadcrumbs.html +88 -0
  462. package/src/html/component-btn.html +117 -0
  463. package/src/html/component-callout.html +86 -0
  464. package/src/html/component-card_feature.html +631 -0
  465. package/src/html/component-card_multi_action.html +793 -0
  466. package/src/html/component-card_no_action.html +521 -0
  467. package/src/html/component-card_single_action.html +631 -0
  468. package/src/html/component-code.html +84 -0
  469. package/src/html/component-footer.html +87 -0
  470. package/src/html/component-forms.html +585 -0
  471. package/src/html/component-global-elements.html +531 -0
  472. package/src/html/component-global_alert.html +87 -0
  473. package/src/html/component-header.html +88 -0
  474. package/src/html/component-in_page_navigation.html +109 -0
  475. package/src/html/component-internal_navigation.html +87 -0
  476. package/src/html/component-left_hand_navigation.html +85 -0
  477. package/src/html/component-main_navigation.html +87 -0
  478. package/src/html/component-mega_main_navigation.html +88 -0
  479. package/src/html/component-multi_column.html +86 -0
  480. package/src/html/component-page_alert.html +86 -0
  481. package/src/html/component-pagination.html +86 -0
  482. package/src/html/component-tag_list.html +340 -0
  483. package/src/html/component-updated_date.html +88 -0
  484. package/src/html/component-widgets.html +90 -0
  485. package/src/html/components.html +136 -0
  486. package/src/html/home.html +126 -0
  487. package/src/html/index.html +142 -0
  488. package/src/html/inner-with-nav.html +1126 -0
  489. package/src/html/inner.html +107 -0
  490. package/src/index.js +12 -0
  491. package/src/styles/global.scss +120 -0
  492. package/src/styles/imports/figma.scss +0 -0
  493. package/src/styles/imports/functions.scss +519 -0
  494. package/src/styles/imports/mixins.scss +658 -0
  495. package/src/styles/imports/placeholders.scss +68 -0
  496. package/src/styles/imports/utilities.scss +185 -0
  497. package/src/styles/imports/variables.scss +484 -0
  498. package/src/styles/postcss.config.js +4 -0
  499. package/webpack/JsonMergePlugin.js +35 -0
  500. package/webpack/PrecompilePlugin.js +369 -0
  501. package/webpack/webpack.common.js +151 -0
  502. package/webpack/webpack.dev.js +54 -0
  503. package/webpack/webpack.prod.js +70 -0
@@ -0,0 +1,1539 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <actions>
3
+ <action>
4
+ <action_id>create_Content_Container_Template_1883136551</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_1883136551_name</action_id>
15
+ <action_type>set_attribute_value</action_type>
16
+ <asset>[[output://create_Content_Container_Template_1883136551.assetid]]</asset>
17
+ <attribute>name</attribute>
18
+ <value><![CDATA[Cards With Icons]]></value>
19
+ </action>
20
+
21
+ <action>
22
+ <action_id>set_Content_Container_Template_1883136551_edit_interface_in_admin</action_id>
23
+ <action_type>set_attribute_value</action_type>
24
+ <asset>[[output://create_Content_Container_Template_1883136551.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_1883136551_icon_color</action_id>
31
+ <action_type>set_attribute_value</action_type>
32
+ <asset>[[output://create_Content_Container_Template_1883136551.assetid]]</asset>
33
+ <attribute>icon_color</attribute>
34
+ <value><![CDATA[blue]]></value>
35
+ </action>
36
+
37
+ <action>
38
+ <action_id>create_Metadata_Schema_1590779908</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_1883136551.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_1590779908_name</action_id>
49
+ <action_type>set_attribute_value</action_type>
50
+ <asset>[[output://create_Metadata_Schema_1590779908.assetid]]</asset>
51
+ <attribute>name</attribute>
52
+ <value><![CDATA[Cards With Icons]]></value>
53
+ </action>
54
+ <action>
55
+ <action_id>set_permission_1590779908_read_5</action_id>
56
+ <action_type>set_permission</action_type>
57
+ <asset>[[output://create_Metadata_Schema_1590779908.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_7349016241</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_1590779908.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_7349016241_path</action_id>
75
+ <action_type>add_web_path</action_type>
76
+ <asset>[[output://create_Metadata_Section_7349016241.assetid]]</asset>
77
+ <parent_asset>[[output://create_Metadata_Schema_1590779908.assetid]]</parent_asset>
78
+ <path>settings</path>
79
+ </action>
80
+ <action>
81
+ <action_id>set_Metadata_Section_7349016241_name</action_id>
82
+ <action_type>set_attribute_value</action_type>
83
+ <asset>[[output://create_Metadata_Section_7349016241.assetid]]</asset>
84
+ <attribute>name</attribute>
85
+ <value><![CDATA[Settings]]></value>
86
+ </action>
87
+ <action>
88
+ <action_id>set_permission_7349016241_read_5</action_id>
89
+ <action_type>set_permission</action_type>
90
+ <asset>[[output://create_Metadata_Section_7349016241.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_related_asset_9500388389</action_id>
98
+ <action_type>create_asset</action_type>
99
+ <type_code>metadata_field_related_asset</type_code>
100
+ <link_type>2</link_type>
101
+ <parentid>[[output://create_Metadata_Section_7349016241.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_related_asset_9500388389_name</action_id>
108
+ <action_type>set_attribute_value</action_type>
109
+ <asset>[[output://create_metadata_field_related_asset_9500388389.assetid]]</asset>
110
+ <attribute>name</attribute>
111
+ <value><![CDATA[root_node]]></value>
112
+ </action>
113
+ <action>
114
+ <action_id>set_metadata_field_related_asset_9500388389_friendly_name</action_id>
115
+ <action_type>set_attribute_value</action_type>
116
+ <asset>[[output://create_metadata_field_related_asset_9500388389.assetid]]</asset>
117
+ <attribute>friendly_name</attribute>
118
+ <value><![CDATA[Parent asset]]></value>
119
+ </action>
120
+ <action>
121
+ <action_id>set_metadata_field_related_asset_9500388389_default</action_id>
122
+ <action_type>set_attribute_value</action_type>
123
+ <asset>[[output://create_metadata_field_related_asset_9500388389.assetid]]</asset>
124
+ <attribute>default</attribute>
125
+ <value><![CDATA[]]></value>
126
+ </action>
127
+ <action>
128
+ <action_id>set_metadata_field_related_asset_9500388389_description</action_id>
129
+ <action_type>set_attribute_value</action_type>
130
+ <asset>[[output://create_metadata_field_related_asset_9500388389.assetid]]</asset>
131
+ <attribute>description</attribute>
132
+ <value><![CDATA[]]></value>
133
+ </action>
134
+ <action>
135
+ <action_id>set_metadata_field_related_asset_9500388389_editable</action_id>
136
+ <action_type>set_attribute_value</action_type>
137
+ <asset>[[output://create_metadata_field_related_asset_9500388389.assetid]]</asset>
138
+ <attribute>editable</attribute>
139
+ <value><![CDATA[1]]></value>
140
+ </action>
141
+ <action>
142
+ <action_id>set_metadata_field_related_asset_9500388389_editable</action_id>
143
+ <action_type>set_attribute_value</action_type>
144
+ <asset>[[output://create_metadata_field_related_asset_9500388389.assetid]]</asset>
145
+ <attribute>editable</attribute>
146
+ <value><![CDATA[1]]></value>
147
+ </action>
148
+ <action>
149
+ <action_id>set_metadata_field_related_asset_9500388389_required</action_id>
150
+ <action_type>set_attribute_value</action_type>
151
+ <asset>[[output://create_metadata_field_related_asset_9500388389.assetid]]</asset>
152
+ <attribute>required</attribute>
153
+ <value><![CDATA[0]]></value>
154
+ </action>
155
+ <action>
156
+ <action_id>set_permission_9500388389_read_5</action_id>
157
+ <action_type>set_permission</action_type>
158
+ <asset>[[output://create_metadata_field_related_asset_9500388389.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_select_5492751316</action_id>
166
+ <action_type>create_asset</action_type>
167
+ <type_code>metadata_field_select</type_code>
168
+ <link_type>2</link_type>
169
+ <parentid>[[output://create_Metadata_Section_7349016241.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_select_5492751316_name</action_id>
176
+ <action_type>set_attribute_value</action_type>
177
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
178
+ <attribute>name</attribute>
179
+ <value><![CDATA[col_width]]></value>
180
+ </action>
181
+ <action>
182
+ <action_id>set_metadata_field_select_5492751316_friendly_name</action_id>
183
+ <action_type>set_attribute_value</action_type>
184
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
185
+ <attribute>friendly_name</attribute>
186
+ <value><![CDATA[Number of columns]]></value>
187
+ </action>
188
+ <action>
189
+ <action_id>set_metadata_field_select_5492751316_default</action_id>
190
+ <action_type>set_attribute_value</action_type>
191
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
192
+ <attribute>default</attribute>
193
+ <value><![CDATA[col-xs-12]]></value>
194
+ </action>
195
+ <action>
196
+ <action_id>set_metadata_field_select_5492751316_description</action_id>
197
+ <action_type>set_attribute_value</action_type>
198
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
199
+ <attribute>description</attribute>
200
+ <value><![CDATA[]]></value>
201
+ </action>
202
+ <action>
203
+ <action_id>set_metadata_field_select_5492751316_editable</action_id>
204
+ <action_type>set_attribute_value</action_type>
205
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
206
+ <attribute>editable</attribute>
207
+ <value><![CDATA[1]]></value>
208
+ </action>
209
+ <action>
210
+ <action_id>set_metadata_field_select_5492751316_editable</action_id>
211
+ <action_type>set_attribute_value</action_type>
212
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
213
+ <attribute>editable</attribute>
214
+ <value><![CDATA[1]]></value>
215
+ </action>
216
+ <action>
217
+ <action_id>set_metadata_field_select_5492751316_required</action_id>
218
+ <action_type>set_attribute_value</action_type>
219
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
220
+ <attribute>required</attribute>
221
+ <value><![CDATA[0]]></value>
222
+ </action>
223
+ <action>
224
+ <action_id>set_permission_5492751316_read_5</action_id>
225
+ <action_type>set_permission</action_type>
226
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
227
+ <permission>1</permission>
228
+ <granted>1</granted>
229
+ <userid>[[system://public_user]]</userid>
230
+ </action>
231
+
232
+ <action>
233
+ <action_id>set_metadata_field_select_5492751316_select_options</action_id>
234
+ <action_type>set_attribute_value</action_type>
235
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
236
+ <attribute>select_options</attribute>
237
+ <value><![CDATA[array ('col-xs-12' => 'One','col-lg-6' => 'Two','col-lg-4' => 'Three','col-lg-3' => 'Four',);]]></value>
238
+ </action>
239
+ <action>
240
+ <action_id>set_{f.type}_5492751316_edit_params</action_id>
241
+ <action_type>set_attribute_value</action_type>
242
+ <asset>[[output://create_metadata_field_select_5492751316.assetid]]</asset>
243
+ <attribute>edit_params</attribute>
244
+ <value><![CDATA[array (
245
+ 'style' => 'list',
246
+ 'type' => 'table',
247
+ 'height' => '',
248
+ 'columns' => '1',
249
+ 'empty_text' => '',
250
+ 'extras' => '',
251
+ );]]></value>
252
+ </action>
253
+
254
+ <action>
255
+ <action_id>create_metadata_field_select_7200622297</action_id>
256
+ <action_type>create_asset</action_type>
257
+ <type_code>metadata_field_select</type_code>
258
+ <link_type>2</link_type>
259
+ <parentid>[[output://create_Metadata_Section_7349016241.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_select_7200622297_name</action_id>
266
+ <action_type>set_attribute_value</action_type>
267
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
268
+ <attribute>name</attribute>
269
+ <value><![CDATA[card_type]]></value>
270
+ </action>
271
+ <action>
272
+ <action_id>set_metadata_field_select_7200622297_friendly_name</action_id>
273
+ <action_type>set_attribute_value</action_type>
274
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
275
+ <attribute>friendly_name</attribute>
276
+ <value><![CDATA[Card type]]></value>
277
+ </action>
278
+ <action>
279
+ <action_id>set_metadata_field_select_7200622297_default</action_id>
280
+ <action_type>set_attribute_value</action_type>
281
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
282
+ <attribute>default</attribute>
283
+ <value><![CDATA[text]]></value>
284
+ </action>
285
+ <action>
286
+ <action_id>set_metadata_field_select_7200622297_description</action_id>
287
+ <action_type>set_attribute_value</action_type>
288
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
289
+ <attribute>description</attribute>
290
+ <value><![CDATA[]]></value>
291
+ </action>
292
+ <action>
293
+ <action_id>set_metadata_field_select_7200622297_editable</action_id>
294
+ <action_type>set_attribute_value</action_type>
295
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
296
+ <attribute>editable</attribute>
297
+ <value><![CDATA[0]]></value>
298
+ </action>
299
+ <action>
300
+ <action_id>set_metadata_field_select_7200622297_editable</action_id>
301
+ <action_type>set_attribute_value</action_type>
302
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
303
+ <attribute>editable</attribute>
304
+ <value><![CDATA[0]]></value>
305
+ </action>
306
+ <action>
307
+ <action_id>set_metadata_field_select_7200622297_required</action_id>
308
+ <action_type>set_attribute_value</action_type>
309
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
310
+ <attribute>required</attribute>
311
+ <value><![CDATA[0]]></value>
312
+ </action>
313
+ <action>
314
+ <action_id>set_permission_7200622297_read_5</action_id>
315
+ <action_type>set_permission</action_type>
316
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
317
+ <permission>1</permission>
318
+ <granted>1</granted>
319
+ <userid>[[system://public_user]]</userid>
320
+ </action>
321
+
322
+ <action>
323
+ <action_id>set_metadata_field_select_7200622297_select_options</action_id>
324
+ <action_type>set_attribute_value</action_type>
325
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
326
+ <attribute>select_options</attribute>
327
+ <value><![CDATA[array ('text' => 'Text only','image' => 'Image','icon' => 'Icon',);]]></value>
328
+ </action>
329
+ <action>
330
+ <action_id>set_{f.type}_7200622297_edit_params</action_id>
331
+ <action_type>set_attribute_value</action_type>
332
+ <asset>[[output://create_metadata_field_select_7200622297.assetid]]</asset>
333
+ <attribute>edit_params</attribute>
334
+ <value><![CDATA[array (
335
+ 'style' => 'list',
336
+ 'type' => 'table',
337
+ 'height' => '',
338
+ 'columns' => '1',
339
+ 'empty_text' => '',
340
+ 'extras' => '',
341
+ );]]></value>
342
+ </action>
343
+
344
+ <action>
345
+ <action_id>create_metadata_field_select_9829276573</action_id>
346
+ <action_type>create_asset</action_type>
347
+ <type_code>metadata_field_select</type_code>
348
+ <link_type>2</link_type>
349
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
350
+ <value></value>
351
+ <is_dependant>1</is_dependant>
352
+ <is_exclusive>0</is_exclusive>
353
+ </action>
354
+ <action>
355
+ <action_id>set_metadata_field_select_9829276573_name</action_id>
356
+ <action_type>set_attribute_value</action_type>
357
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
358
+ <attribute>name</attribute>
359
+ <value><![CDATA[icon_align]]></value>
360
+ </action>
361
+ <action>
362
+ <action_id>set_metadata_field_select_9829276573_friendly_name</action_id>
363
+ <action_type>set_attribute_value</action_type>
364
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
365
+ <attribute>friendly_name</attribute>
366
+ <value><![CDATA[Icon alignment]]></value>
367
+ </action>
368
+ <action>
369
+ <action_id>set_metadata_field_select_9829276573_default</action_id>
370
+ <action_type>set_attribute_value</action_type>
371
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
372
+ <attribute>default</attribute>
373
+ <value><![CDATA[]]></value>
374
+ </action>
375
+ <action>
376
+ <action_id>set_metadata_field_select_9829276573_description</action_id>
377
+ <action_type>set_attribute_value</action_type>
378
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
379
+ <attribute>description</attribute>
380
+ <value><![CDATA[]]></value>
381
+ </action>
382
+ <action>
383
+ <action_id>set_metadata_field_select_9829276573_editable</action_id>
384
+ <action_type>set_attribute_value</action_type>
385
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
386
+ <attribute>editable</attribute>
387
+ <value><![CDATA[1]]></value>
388
+ </action>
389
+ <action>
390
+ <action_id>set_metadata_field_select_9829276573_editable</action_id>
391
+ <action_type>set_attribute_value</action_type>
392
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
393
+ <attribute>editable</attribute>
394
+ <value><![CDATA[1]]></value>
395
+ </action>
396
+ <action>
397
+ <action_id>set_metadata_field_select_9829276573_required</action_id>
398
+ <action_type>set_attribute_value</action_type>
399
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
400
+ <attribute>required</attribute>
401
+ <value><![CDATA[0]]></value>
402
+ </action>
403
+ <action>
404
+ <action_id>set_permission_9829276573_read_5</action_id>
405
+ <action_type>set_permission</action_type>
406
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
407
+ <permission>1</permission>
408
+ <granted>1</granted>
409
+ <userid>[[system://public_user]]</userid>
410
+ </action>
411
+
412
+ <action>
413
+ <action_id>set_metadata_field_select_9829276573_select_options</action_id>
414
+ <action_type>set_attribute_value</action_type>
415
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
416
+ <attribute>select_options</attribute>
417
+ <value><![CDATA[array ('top' => 'Top','left' => 'Left',);]]></value>
418
+ </action>
419
+ <action>
420
+ <action_id>set_{f.type}_9829276573_edit_params</action_id>
421
+ <action_type>set_attribute_value</action_type>
422
+ <asset>[[output://create_metadata_field_select_9829276573.assetid]]</asset>
423
+ <attribute>edit_params</attribute>
424
+ <value><![CDATA[array (
425
+ 'style' => 'list',
426
+ 'type' => 'table',
427
+ 'height' => '',
428
+ 'columns' => '1',
429
+ 'empty_text' => '',
430
+ 'extras' => '',
431
+ );]]></value>
432
+ </action>
433
+
434
+ <action>
435
+ <action_id>create_metadata_field_select_1918309270</action_id>
436
+ <action_type>create_asset</action_type>
437
+ <type_code>metadata_field_select</type_code>
438
+ <link_type>2</link_type>
439
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
440
+ <value></value>
441
+ <is_dependant>1</is_dependant>
442
+ <is_exclusive>0</is_exclusive>
443
+ </action>
444
+ <action>
445
+ <action_id>set_metadata_field_select_1918309270_name</action_id>
446
+ <action_type>set_attribute_value</action_type>
447
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
448
+ <attribute>name</attribute>
449
+ <value><![CDATA[show_arrow]]></value>
450
+ </action>
451
+ <action>
452
+ <action_id>set_metadata_field_select_1918309270_friendly_name</action_id>
453
+ <action_type>set_attribute_value</action_type>
454
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
455
+ <attribute>friendly_name</attribute>
456
+ <value><![CDATA[Show card arrow?]]></value>
457
+ </action>
458
+ <action>
459
+ <action_id>set_metadata_field_select_1918309270_default</action_id>
460
+ <action_type>set_attribute_value</action_type>
461
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
462
+ <attribute>default</attribute>
463
+ <value><![CDATA[false]]></value>
464
+ </action>
465
+ <action>
466
+ <action_id>set_metadata_field_select_1918309270_description</action_id>
467
+ <action_type>set_attribute_value</action_type>
468
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
469
+ <attribute>description</attribute>
470
+ <value><![CDATA[]]></value>
471
+ </action>
472
+ <action>
473
+ <action_id>set_metadata_field_select_1918309270_editable</action_id>
474
+ <action_type>set_attribute_value</action_type>
475
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
476
+ <attribute>editable</attribute>
477
+ <value><![CDATA[1]]></value>
478
+ </action>
479
+ <action>
480
+ <action_id>set_metadata_field_select_1918309270_editable</action_id>
481
+ <action_type>set_attribute_value</action_type>
482
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
483
+ <attribute>editable</attribute>
484
+ <value><![CDATA[1]]></value>
485
+ </action>
486
+ <action>
487
+ <action_id>set_metadata_field_select_1918309270_required</action_id>
488
+ <action_type>set_attribute_value</action_type>
489
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
490
+ <attribute>required</attribute>
491
+ <value><![CDATA[0]]></value>
492
+ </action>
493
+ <action>
494
+ <action_id>set_permission_1918309270_read_5</action_id>
495
+ <action_type>set_permission</action_type>
496
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
497
+ <permission>1</permission>
498
+ <granted>1</granted>
499
+ <userid>[[system://public_user]]</userid>
500
+ </action>
501
+
502
+ <action>
503
+ <action_id>set_metadata_field_select_1918309270_select_options</action_id>
504
+ <action_type>set_attribute_value</action_type>
505
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
506
+ <attribute>select_options</attribute>
507
+ <value><![CDATA[array ('true' => 'True','false' => 'False',);]]></value>
508
+ </action>
509
+ <action>
510
+ <action_id>set_{f.type}_1918309270_edit_params</action_id>
511
+ <action_type>set_attribute_value</action_type>
512
+ <asset>[[output://create_metadata_field_select_1918309270.assetid]]</asset>
513
+ <attribute>edit_params</attribute>
514
+ <value><![CDATA[array (
515
+ 'style' => 'list',
516
+ 'type' => 'table',
517
+ 'height' => '',
518
+ 'columns' => '1',
519
+ 'empty_text' => '',
520
+ 'extras' => '',
521
+ );]]></value>
522
+ </action>
523
+
524
+ <action>
525
+ <action_id>create_metadata_field_select_6557007345</action_id>
526
+ <action_type>create_asset</action_type>
527
+ <type_code>metadata_field_select</type_code>
528
+ <link_type>2</link_type>
529
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
530
+ <value></value>
531
+ <is_dependant>1</is_dependant>
532
+ <is_exclusive>0</is_exclusive>
533
+ </action>
534
+ <action>
535
+ <action_id>set_metadata_field_select_6557007345_name</action_id>
536
+ <action_type>set_attribute_value</action_type>
537
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
538
+ <attribute>name</attribute>
539
+ <value><![CDATA[background]]></value>
540
+ </action>
541
+ <action>
542
+ <action_id>set_metadata_field_select_6557007345_friendly_name</action_id>
543
+ <action_type>set_attribute_value</action_type>
544
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
545
+ <attribute>friendly_name</attribute>
546
+ <value><![CDATA[Card background]]></value>
547
+ </action>
548
+ <action>
549
+ <action_id>set_metadata_field_select_6557007345_default</action_id>
550
+ <action_type>set_attribute_value</action_type>
551
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
552
+ <attribute>default</attribute>
553
+ <value><![CDATA[]]></value>
554
+ </action>
555
+ <action>
556
+ <action_id>set_metadata_field_select_6557007345_description</action_id>
557
+ <action_type>set_attribute_value</action_type>
558
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
559
+ <attribute>description</attribute>
560
+ <value><![CDATA[]]></value>
561
+ </action>
562
+ <action>
563
+ <action_id>set_metadata_field_select_6557007345_editable</action_id>
564
+ <action_type>set_attribute_value</action_type>
565
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
566
+ <attribute>editable</attribute>
567
+ <value><![CDATA[1]]></value>
568
+ </action>
569
+ <action>
570
+ <action_id>set_metadata_field_select_6557007345_editable</action_id>
571
+ <action_type>set_attribute_value</action_type>
572
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
573
+ <attribute>editable</attribute>
574
+ <value><![CDATA[1]]></value>
575
+ </action>
576
+ <action>
577
+ <action_id>set_metadata_field_select_6557007345_required</action_id>
578
+ <action_type>set_attribute_value</action_type>
579
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
580
+ <attribute>required</attribute>
581
+ <value><![CDATA[0]]></value>
582
+ </action>
583
+ <action>
584
+ <action_id>set_permission_6557007345_read_5</action_id>
585
+ <action_type>set_permission</action_type>
586
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
587
+ <permission>1</permission>
588
+ <granted>1</granted>
589
+ <userid>[[system://public_user]]</userid>
590
+ </action>
591
+
592
+ <action>
593
+ <action_id>set_metadata_field_select_6557007345_select_options</action_id>
594
+ <action_type>set_attribute_value</action_type>
595
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
596
+ <attribute>select_options</attribute>
597
+ <value><![CDATA[array ('' => 'Light','qld__card--alt' => 'Alternate','qld__card--dark' => 'Dark','qld__card--dark-alt' => 'Dark Alternate',);]]></value>
598
+ </action>
599
+ <action>
600
+ <action_id>set_{f.type}_6557007345_edit_params</action_id>
601
+ <action_type>set_attribute_value</action_type>
602
+ <asset>[[output://create_metadata_field_select_6557007345.assetid]]</asset>
603
+ <attribute>edit_params</attribute>
604
+ <value><![CDATA[array (
605
+ 'style' => 'list',
606
+ 'type' => 'table',
607
+ 'height' => '',
608
+ 'columns' => '1',
609
+ 'empty_text' => '',
610
+ 'extras' => '',
611
+ );]]></value>
612
+ </action>
613
+
614
+ <action>
615
+ <action_id>create_metadata_field_select_3938022787</action_id>
616
+ <action_type>create_asset</action_type>
617
+ <type_code>metadata_field_select</type_code>
618
+ <link_type>2</link_type>
619
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
620
+ <value></value>
621
+ <is_dependant>1</is_dependant>
622
+ <is_exclusive>0</is_exclusive>
623
+ </action>
624
+ <action>
625
+ <action_id>set_metadata_field_select_3938022787_name</action_id>
626
+ <action_type>set_attribute_value</action_type>
627
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
628
+ <attribute>name</attribute>
629
+ <value><![CDATA[card_heading_level]]></value>
630
+ </action>
631
+ <action>
632
+ <action_id>set_metadata_field_select_3938022787_friendly_name</action_id>
633
+ <action_type>set_attribute_value</action_type>
634
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
635
+ <attribute>friendly_name</attribute>
636
+ <value><![CDATA[Intro heading level]]></value>
637
+ </action>
638
+ <action>
639
+ <action_id>set_metadata_field_select_3938022787_default</action_id>
640
+ <action_type>set_attribute_value</action_type>
641
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
642
+ <attribute>default</attribute>
643
+ <value><![CDATA[h3]]></value>
644
+ </action>
645
+ <action>
646
+ <action_id>set_metadata_field_select_3938022787_description</action_id>
647
+ <action_type>set_attribute_value</action_type>
648
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
649
+ <attribute>description</attribute>
650
+ <value><![CDATA[]]></value>
651
+ </action>
652
+ <action>
653
+ <action_id>set_metadata_field_select_3938022787_editable</action_id>
654
+ <action_type>set_attribute_value</action_type>
655
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
656
+ <attribute>editable</attribute>
657
+ <value><![CDATA[0]]></value>
658
+ </action>
659
+ <action>
660
+ <action_id>set_metadata_field_select_3938022787_editable</action_id>
661
+ <action_type>set_attribute_value</action_type>
662
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
663
+ <attribute>editable</attribute>
664
+ <value><![CDATA[0]]></value>
665
+ </action>
666
+ <action>
667
+ <action_id>set_metadata_field_select_3938022787_required</action_id>
668
+ <action_type>set_attribute_value</action_type>
669
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
670
+ <attribute>required</attribute>
671
+ <value><![CDATA[0]]></value>
672
+ </action>
673
+ <action>
674
+ <action_id>set_permission_3938022787_read_5</action_id>
675
+ <action_type>set_permission</action_type>
676
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
677
+ <permission>1</permission>
678
+ <granted>1</granted>
679
+ <userid>[[system://public_user]]</userid>
680
+ </action>
681
+
682
+ <action>
683
+ <action_id>set_metadata_field_select_3938022787_select_options</action_id>
684
+ <action_type>set_attribute_value</action_type>
685
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
686
+ <attribute>select_options</attribute>
687
+ <value><![CDATA[array ('h2' => 'h2','h3' => 'h3','h4' => 'h4','h5' => 'h5','h6' => 'h6',);]]></value>
688
+ </action>
689
+ <action>
690
+ <action_id>set_{f.type}_3938022787_edit_params</action_id>
691
+ <action_type>set_attribute_value</action_type>
692
+ <asset>[[output://create_metadata_field_select_3938022787.assetid]]</asset>
693
+ <attribute>edit_params</attribute>
694
+ <value><![CDATA[array (
695
+ 'style' => 'list',
696
+ 'type' => 'table',
697
+ 'height' => '',
698
+ 'columns' => '1',
699
+ 'empty_text' => '',
700
+ 'extras' => '',
701
+ );]]></value>
702
+ </action>
703
+
704
+ <action>
705
+ <action_id>create_metadata_field_select_80684130</action_id>
706
+ <action_type>create_asset</action_type>
707
+ <type_code>metadata_field_select</type_code>
708
+ <link_type>2</link_type>
709
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
710
+ <value></value>
711
+ <is_dependant>1</is_dependant>
712
+ <is_exclusive>0</is_exclusive>
713
+ </action>
714
+ <action>
715
+ <action_id>set_metadata_field_select_80684130_name</action_id>
716
+ <action_type>set_attribute_value</action_type>
717
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
718
+ <attribute>name</attribute>
719
+ <value><![CDATA[body_background]]></value>
720
+ </action>
721
+ <action>
722
+ <action_id>set_metadata_field_select_80684130_friendly_name</action_id>
723
+ <action_type>set_attribute_value</action_type>
724
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
725
+ <attribute>friendly_name</attribute>
726
+ <value><![CDATA[Background Colour]]></value>
727
+ </action>
728
+ <action>
729
+ <action_id>set_metadata_field_select_80684130_default</action_id>
730
+ <action_type>set_attribute_value</action_type>
731
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
732
+ <attribute>default</attribute>
733
+ <value><![CDATA[qld__body--light]]></value>
734
+ </action>
735
+ <action>
736
+ <action_id>set_metadata_field_select_80684130_description</action_id>
737
+ <action_type>set_attribute_value</action_type>
738
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
739
+ <attribute>description</attribute>
740
+ <value><![CDATA[]]></value>
741
+ </action>
742
+ <action>
743
+ <action_id>set_metadata_field_select_80684130_editable</action_id>
744
+ <action_type>set_attribute_value</action_type>
745
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
746
+ <attribute>editable</attribute>
747
+ <value><![CDATA[1]]></value>
748
+ </action>
749
+ <action>
750
+ <action_id>set_metadata_field_select_80684130_editable</action_id>
751
+ <action_type>set_attribute_value</action_type>
752
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
753
+ <attribute>editable</attribute>
754
+ <value><![CDATA[1]]></value>
755
+ </action>
756
+ <action>
757
+ <action_id>set_metadata_field_select_80684130_required</action_id>
758
+ <action_type>set_attribute_value</action_type>
759
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
760
+ <attribute>required</attribute>
761
+ <value><![CDATA[0]]></value>
762
+ </action>
763
+ <action>
764
+ <action_id>set_permission_80684130_read_5</action_id>
765
+ <action_type>set_permission</action_type>
766
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
767
+ <permission>1</permission>
768
+ <granted>1</granted>
769
+ <userid>[[system://public_user]]</userid>
770
+ </action>
771
+
772
+ <action>
773
+ <action_id>set_metadata_field_select_80684130_select_options</action_id>
774
+ <action_type>set_attribute_value</action_type>
775
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
776
+ <attribute>select_options</attribute>
777
+ <value><![CDATA[array ('qld__body--light' => 'Light','qld__body--alt' => 'Alternate','qld__body--dark' => 'Dark','qld__body--dark-alt' => 'Alternate Dark',);]]></value>
778
+ </action>
779
+ <action>
780
+ <action_id>set_{f.type}_80684130_edit_params</action_id>
781
+ <action_type>set_attribute_value</action_type>
782
+ <asset>[[output://create_metadata_field_select_80684130.assetid]]</asset>
783
+ <attribute>edit_params</attribute>
784
+ <value><![CDATA[array (
785
+ 'style' => 'list',
786
+ 'type' => 'table',
787
+ 'height' => '',
788
+ 'columns' => '1',
789
+ 'empty_text' => '',
790
+ 'extras' => '',
791
+ );]]></value>
792
+ </action>
793
+
794
+ <action>
795
+ <action_id>create_metadata_field_select_7275837494</action_id>
796
+ <action_type>create_asset</action_type>
797
+ <type_code>metadata_field_select</type_code>
798
+ <link_type>2</link_type>
799
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
800
+ <value></value>
801
+ <is_dependant>1</is_dependant>
802
+ <is_exclusive>0</is_exclusive>
803
+ </action>
804
+ <action>
805
+ <action_id>set_metadata_field_select_7275837494_name</action_id>
806
+ <action_type>set_attribute_value</action_type>
807
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
808
+ <attribute>name</attribute>
809
+ <value><![CDATA[body_background_type]]></value>
810
+ </action>
811
+ <action>
812
+ <action_id>set_metadata_field_select_7275837494_friendly_name</action_id>
813
+ <action_type>set_attribute_value</action_type>
814
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
815
+ <attribute>friendly_name</attribute>
816
+ <value><![CDATA[Background Type]]></value>
817
+ </action>
818
+ <action>
819
+ <action_id>set_metadata_field_select_7275837494_default</action_id>
820
+ <action_type>set_attribute_value</action_type>
821
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
822
+ <attribute>default</attribute>
823
+ <value><![CDATA[qld__card--wrapper-bg-image]]></value>
824
+ </action>
825
+ <action>
826
+ <action_id>set_metadata_field_select_7275837494_description</action_id>
827
+ <action_type>set_attribute_value</action_type>
828
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
829
+ <attribute>description</attribute>
830
+ <value><![CDATA[]]></value>
831
+ </action>
832
+ <action>
833
+ <action_id>set_metadata_field_select_7275837494_editable</action_id>
834
+ <action_type>set_attribute_value</action_type>
835
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
836
+ <attribute>editable</attribute>
837
+ <value><![CDATA[1]]></value>
838
+ </action>
839
+ <action>
840
+ <action_id>set_metadata_field_select_7275837494_editable</action_id>
841
+ <action_type>set_attribute_value</action_type>
842
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
843
+ <attribute>editable</attribute>
844
+ <value><![CDATA[1]]></value>
845
+ </action>
846
+ <action>
847
+ <action_id>set_metadata_field_select_7275837494_required</action_id>
848
+ <action_type>set_attribute_value</action_type>
849
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
850
+ <attribute>required</attribute>
851
+ <value><![CDATA[0]]></value>
852
+ </action>
853
+ <action>
854
+ <action_id>set_permission_7275837494_read_5</action_id>
855
+ <action_type>set_permission</action_type>
856
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
857
+ <permission>1</permission>
858
+ <granted>1</granted>
859
+ <userid>[[system://public_user]]</userid>
860
+ </action>
861
+
862
+ <action>
863
+ <action_id>set_metadata_field_select_7275837494_select_options</action_id>
864
+ <action_type>set_attribute_value</action_type>
865
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
866
+ <attribute>select_options</attribute>
867
+ <value><![CDATA[array ('qld__card--wrapper-bg-image' => 'Image','qld__card--wrapper-bg-pattern' => 'Pattern','qld__card--wrapper-bg-colour' => 'Colour',);]]></value>
868
+ </action>
869
+ <action>
870
+ <action_id>set_{f.type}_7275837494_edit_params</action_id>
871
+ <action_type>set_attribute_value</action_type>
872
+ <asset>[[output://create_metadata_field_select_7275837494.assetid]]</asset>
873
+ <attribute>edit_params</attribute>
874
+ <value><![CDATA[array (
875
+ 'style' => 'list',
876
+ 'type' => 'table',
877
+ 'height' => '',
878
+ 'columns' => '1',
879
+ 'empty_text' => '',
880
+ 'extras' => '',
881
+ );]]></value>
882
+ </action>
883
+
884
+ <action>
885
+ <action_id>create_metadata_field_related_asset_1305518863</action_id>
886
+ <action_type>create_asset</action_type>
887
+ <type_code>metadata_field_related_asset</type_code>
888
+ <link_type>2</link_type>
889
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
890
+ <value></value>
891
+ <is_dependant>1</is_dependant>
892
+ <is_exclusive>0</is_exclusive>
893
+ </action>
894
+ <action>
895
+ <action_id>set_metadata_field_related_asset_1305518863_name</action_id>
896
+ <action_type>set_attribute_value</action_type>
897
+ <asset>[[output://create_metadata_field_related_asset_1305518863.assetid]]</asset>
898
+ <attribute>name</attribute>
899
+ <value><![CDATA[body_background_image]]></value>
900
+ </action>
901
+ <action>
902
+ <action_id>set_metadata_field_related_asset_1305518863_friendly_name</action_id>
903
+ <action_type>set_attribute_value</action_type>
904
+ <asset>[[output://create_metadata_field_related_asset_1305518863.assetid]]</asset>
905
+ <attribute>friendly_name</attribute>
906
+ <value><![CDATA[Background Image]]></value>
907
+ </action>
908
+ <action>
909
+ <action_id>set_metadata_field_related_asset_1305518863_default</action_id>
910
+ <action_type>set_attribute_value</action_type>
911
+ <asset>[[output://create_metadata_field_related_asset_1305518863.assetid]]</asset>
912
+ <attribute>default</attribute>
913
+ <value><![CDATA[/mysource_files/img/card--content.png]]></value>
914
+ </action>
915
+ <action>
916
+ <action_id>set_metadata_field_related_asset_1305518863_description</action_id>
917
+ <action_type>set_attribute_value</action_type>
918
+ <asset>[[output://create_metadata_field_related_asset_1305518863.assetid]]</asset>
919
+ <attribute>description</attribute>
920
+ <value><![CDATA[]]></value>
921
+ </action>
922
+ <action>
923
+ <action_id>set_metadata_field_related_asset_1305518863_editable</action_id>
924
+ <action_type>set_attribute_value</action_type>
925
+ <asset>[[output://create_metadata_field_related_asset_1305518863.assetid]]</asset>
926
+ <attribute>editable</attribute>
927
+ <value><![CDATA[1]]></value>
928
+ </action>
929
+ <action>
930
+ <action_id>set_metadata_field_related_asset_1305518863_editable</action_id>
931
+ <action_type>set_attribute_value</action_type>
932
+ <asset>[[output://create_metadata_field_related_asset_1305518863.assetid]]</asset>
933
+ <attribute>editable</attribute>
934
+ <value><![CDATA[1]]></value>
935
+ </action>
936
+ <action>
937
+ <action_id>set_metadata_field_related_asset_1305518863_required</action_id>
938
+ <action_type>set_attribute_value</action_type>
939
+ <asset>[[output://create_metadata_field_related_asset_1305518863.assetid]]</asset>
940
+ <attribute>required</attribute>
941
+ <value><![CDATA[0]]></value>
942
+ </action>
943
+ <action>
944
+ <action_id>set_permission_1305518863_read_5</action_id>
945
+ <action_type>set_permission</action_type>
946
+ <asset>[[output://create_metadata_field_related_asset_1305518863.assetid]]</asset>
947
+ <permission>1</permission>
948
+ <granted>1</granted>
949
+ <userid>[[system://public_user]]</userid>
950
+ </action>
951
+
952
+ <action>
953
+ <action_id>create_metadata_field_related_asset_6616215940</action_id>
954
+ <action_type>create_asset</action_type>
955
+ <type_code>metadata_field_related_asset</type_code>
956
+ <link_type>2</link_type>
957
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
958
+ <value></value>
959
+ <is_dependant>1</is_dependant>
960
+ <is_exclusive>0</is_exclusive>
961
+ </action>
962
+ <action>
963
+ <action_id>set_metadata_field_related_asset_6616215940_name</action_id>
964
+ <action_type>set_attribute_value</action_type>
965
+ <asset>[[output://create_metadata_field_related_asset_6616215940.assetid]]</asset>
966
+ <attribute>name</attribute>
967
+ <value><![CDATA[body_background_pattern]]></value>
968
+ </action>
969
+ <action>
970
+ <action_id>set_metadata_field_related_asset_6616215940_friendly_name</action_id>
971
+ <action_type>set_attribute_value</action_type>
972
+ <asset>[[output://create_metadata_field_related_asset_6616215940.assetid]]</asset>
973
+ <attribute>friendly_name</attribute>
974
+ <value><![CDATA[Background Pattern]]></value>
975
+ </action>
976
+ <action>
977
+ <action_id>set_metadata_field_related_asset_6616215940_default</action_id>
978
+ <action_type>set_attribute_value</action_type>
979
+ <asset>[[output://create_metadata_field_related_asset_6616215940.assetid]]</asset>
980
+ <attribute>default</attribute>
981
+ <value><![CDATA[/mysource_files/img/banner-bg.png]]></value>
982
+ </action>
983
+ <action>
984
+ <action_id>set_metadata_field_related_asset_6616215940_description</action_id>
985
+ <action_type>set_attribute_value</action_type>
986
+ <asset>[[output://create_metadata_field_related_asset_6616215940.assetid]]</asset>
987
+ <attribute>description</attribute>
988
+ <value><![CDATA[]]></value>
989
+ </action>
990
+ <action>
991
+ <action_id>set_metadata_field_related_asset_6616215940_editable</action_id>
992
+ <action_type>set_attribute_value</action_type>
993
+ <asset>[[output://create_metadata_field_related_asset_6616215940.assetid]]</asset>
994
+ <attribute>editable</attribute>
995
+ <value><![CDATA[1]]></value>
996
+ </action>
997
+ <action>
998
+ <action_id>set_metadata_field_related_asset_6616215940_editable</action_id>
999
+ <action_type>set_attribute_value</action_type>
1000
+ <asset>[[output://create_metadata_field_related_asset_6616215940.assetid]]</asset>
1001
+ <attribute>editable</attribute>
1002
+ <value><![CDATA[1]]></value>
1003
+ </action>
1004
+ <action>
1005
+ <action_id>set_metadata_field_related_asset_6616215940_required</action_id>
1006
+ <action_type>set_attribute_value</action_type>
1007
+ <asset>[[output://create_metadata_field_related_asset_6616215940.assetid]]</asset>
1008
+ <attribute>required</attribute>
1009
+ <value><![CDATA[0]]></value>
1010
+ </action>
1011
+ <action>
1012
+ <action_id>set_permission_6616215940_read_5</action_id>
1013
+ <action_type>set_permission</action_type>
1014
+ <asset>[[output://create_metadata_field_related_asset_6616215940.assetid]]</asset>
1015
+ <permission>1</permission>
1016
+ <granted>1</granted>
1017
+ <userid>[[system://public_user]]</userid>
1018
+ </action>
1019
+
1020
+ <action>
1021
+ <action_id>create_metadata_field_select_6344045598</action_id>
1022
+ <action_type>create_asset</action_type>
1023
+ <type_code>metadata_field_select</type_code>
1024
+ <link_type>2</link_type>
1025
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
1026
+ <value></value>
1027
+ <is_dependant>1</is_dependant>
1028
+ <is_exclusive>0</is_exclusive>
1029
+ </action>
1030
+ <action>
1031
+ <action_id>set_metadata_field_select_6344045598_name</action_id>
1032
+ <action_type>set_attribute_value</action_type>
1033
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1034
+ <attribute>name</attribute>
1035
+ <value><![CDATA[intro_width]]></value>
1036
+ </action>
1037
+ <action>
1038
+ <action_id>set_metadata_field_select_6344045598_friendly_name</action_id>
1039
+ <action_type>set_attribute_value</action_type>
1040
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1041
+ <attribute>friendly_name</attribute>
1042
+ <value><![CDATA[Intro width]]></value>
1043
+ </action>
1044
+ <action>
1045
+ <action_id>set_metadata_field_select_6344045598_default</action_id>
1046
+ <action_type>set_attribute_value</action_type>
1047
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1048
+ <attribute>default</attribute>
1049
+ <value><![CDATA[col-md-6]]></value>
1050
+ </action>
1051
+ <action>
1052
+ <action_id>set_metadata_field_select_6344045598_description</action_id>
1053
+ <action_type>set_attribute_value</action_type>
1054
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1055
+ <attribute>description</attribute>
1056
+ <value><![CDATA[]]></value>
1057
+ </action>
1058
+ <action>
1059
+ <action_id>set_metadata_field_select_6344045598_editable</action_id>
1060
+ <action_type>set_attribute_value</action_type>
1061
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1062
+ <attribute>editable</attribute>
1063
+ <value><![CDATA[1]]></value>
1064
+ </action>
1065
+ <action>
1066
+ <action_id>set_metadata_field_select_6344045598_editable</action_id>
1067
+ <action_type>set_attribute_value</action_type>
1068
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1069
+ <attribute>editable</attribute>
1070
+ <value><![CDATA[1]]></value>
1071
+ </action>
1072
+ <action>
1073
+ <action_id>set_metadata_field_select_6344045598_required</action_id>
1074
+ <action_type>set_attribute_value</action_type>
1075
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1076
+ <attribute>required</attribute>
1077
+ <value><![CDATA[0]]></value>
1078
+ </action>
1079
+ <action>
1080
+ <action_id>set_permission_6344045598_read_5</action_id>
1081
+ <action_type>set_permission</action_type>
1082
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1083
+ <permission>1</permission>
1084
+ <granted>1</granted>
1085
+ <userid>[[system://public_user]]</userid>
1086
+ </action>
1087
+
1088
+ <action>
1089
+ <action_id>set_metadata_field_select_6344045598_select_options</action_id>
1090
+ <action_type>set_attribute_value</action_type>
1091
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1092
+ <attribute>select_options</attribute>
1093
+ <value><![CDATA[array ('col-md-6' => 'Half width','col-md-12' => 'Full width',);]]></value>
1094
+ </action>
1095
+ <action>
1096
+ <action_id>set_{f.type}_6344045598_edit_params</action_id>
1097
+ <action_type>set_attribute_value</action_type>
1098
+ <asset>[[output://create_metadata_field_select_6344045598.assetid]]</asset>
1099
+ <attribute>edit_params</attribute>
1100
+ <value><![CDATA[array (
1101
+ 'style' => 'list',
1102
+ 'type' => 'table',
1103
+ 'height' => '',
1104
+ 'columns' => '1',
1105
+ 'empty_text' => '',
1106
+ 'extras' => '',
1107
+ );]]></value>
1108
+ </action>
1109
+
1110
+ <action>
1111
+ <action_id>create_metadata_field_text_750887506</action_id>
1112
+ <action_type>create_asset</action_type>
1113
+ <type_code>metadata_field_text</type_code>
1114
+ <link_type>2</link_type>
1115
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
1116
+ <value></value>
1117
+ <is_dependant>1</is_dependant>
1118
+ <is_exclusive>0</is_exclusive>
1119
+ </action>
1120
+ <action>
1121
+ <action_id>set_metadata_field_text_750887506_name</action_id>
1122
+ <action_type>set_attribute_value</action_type>
1123
+ <asset>[[output://create_metadata_field_text_750887506.assetid]]</asset>
1124
+ <attribute>name</attribute>
1125
+ <value><![CDATA[intro_heading]]></value>
1126
+ </action>
1127
+ <action>
1128
+ <action_id>set_metadata_field_text_750887506_friendly_name</action_id>
1129
+ <action_type>set_attribute_value</action_type>
1130
+ <asset>[[output://create_metadata_field_text_750887506.assetid]]</asset>
1131
+ <attribute>friendly_name</attribute>
1132
+ <value><![CDATA[Intro heading]]></value>
1133
+ </action>
1134
+ <action>
1135
+ <action_id>set_metadata_field_text_750887506_default</action_id>
1136
+ <action_type>set_attribute_value</action_type>
1137
+ <asset>[[output://create_metadata_field_text_750887506.assetid]]</asset>
1138
+ <attribute>default</attribute>
1139
+ <value><![CDATA[Intro heading]]></value>
1140
+ </action>
1141
+ <action>
1142
+ <action_id>set_metadata_field_text_750887506_description</action_id>
1143
+ <action_type>set_attribute_value</action_type>
1144
+ <asset>[[output://create_metadata_field_text_750887506.assetid]]</asset>
1145
+ <attribute>description</attribute>
1146
+ <value><![CDATA[]]></value>
1147
+ </action>
1148
+ <action>
1149
+ <action_id>set_metadata_field_text_750887506_editable</action_id>
1150
+ <action_type>set_attribute_value</action_type>
1151
+ <asset>[[output://create_metadata_field_text_750887506.assetid]]</asset>
1152
+ <attribute>editable</attribute>
1153
+ <value><![CDATA[1]]></value>
1154
+ </action>
1155
+ <action>
1156
+ <action_id>set_metadata_field_text_750887506_editable</action_id>
1157
+ <action_type>set_attribute_value</action_type>
1158
+ <asset>[[output://create_metadata_field_text_750887506.assetid]]</asset>
1159
+ <attribute>editable</attribute>
1160
+ <value><![CDATA[1]]></value>
1161
+ </action>
1162
+ <action>
1163
+ <action_id>set_metadata_field_text_750887506_required</action_id>
1164
+ <action_type>set_attribute_value</action_type>
1165
+ <asset>[[output://create_metadata_field_text_750887506.assetid]]</asset>
1166
+ <attribute>required</attribute>
1167
+ <value><![CDATA[0]]></value>
1168
+ </action>
1169
+ <action>
1170
+ <action_id>set_permission_750887506_read_5</action_id>
1171
+ <action_type>set_permission</action_type>
1172
+ <asset>[[output://create_metadata_field_text_750887506.assetid]]</asset>
1173
+ <permission>1</permission>
1174
+ <granted>1</granted>
1175
+ <userid>[[system://public_user]]</userid>
1176
+ </action>
1177
+
1178
+ <action>
1179
+ <action_id>create_metadata_field_select_7948268028</action_id>
1180
+ <action_type>create_asset</action_type>
1181
+ <type_code>metadata_field_select</type_code>
1182
+ <link_type>2</link_type>
1183
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
1184
+ <value></value>
1185
+ <is_dependant>1</is_dependant>
1186
+ <is_exclusive>0</is_exclusive>
1187
+ </action>
1188
+ <action>
1189
+ <action_id>set_metadata_field_select_7948268028_name</action_id>
1190
+ <action_type>set_attribute_value</action_type>
1191
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1192
+ <attribute>name</attribute>
1193
+ <value><![CDATA[intro_heading_level]]></value>
1194
+ </action>
1195
+ <action>
1196
+ <action_id>set_metadata_field_select_7948268028_friendly_name</action_id>
1197
+ <action_type>set_attribute_value</action_type>
1198
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1199
+ <attribute>friendly_name</attribute>
1200
+ <value><![CDATA[Intro heading level]]></value>
1201
+ </action>
1202
+ <action>
1203
+ <action_id>set_metadata_field_select_7948268028_default</action_id>
1204
+ <action_type>set_attribute_value</action_type>
1205
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1206
+ <attribute>default</attribute>
1207
+ <value><![CDATA[h2]]></value>
1208
+ </action>
1209
+ <action>
1210
+ <action_id>set_metadata_field_select_7948268028_description</action_id>
1211
+ <action_type>set_attribute_value</action_type>
1212
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1213
+ <attribute>description</attribute>
1214
+ <value><![CDATA[]]></value>
1215
+ </action>
1216
+ <action>
1217
+ <action_id>set_metadata_field_select_7948268028_editable</action_id>
1218
+ <action_type>set_attribute_value</action_type>
1219
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1220
+ <attribute>editable</attribute>
1221
+ <value><![CDATA[0]]></value>
1222
+ </action>
1223
+ <action>
1224
+ <action_id>set_metadata_field_select_7948268028_editable</action_id>
1225
+ <action_type>set_attribute_value</action_type>
1226
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1227
+ <attribute>editable</attribute>
1228
+ <value><![CDATA[0]]></value>
1229
+ </action>
1230
+ <action>
1231
+ <action_id>set_metadata_field_select_7948268028_required</action_id>
1232
+ <action_type>set_attribute_value</action_type>
1233
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1234
+ <attribute>required</attribute>
1235
+ <value><![CDATA[0]]></value>
1236
+ </action>
1237
+ <action>
1238
+ <action_id>set_permission_7948268028_read_5</action_id>
1239
+ <action_type>set_permission</action_type>
1240
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1241
+ <permission>1</permission>
1242
+ <granted>1</granted>
1243
+ <userid>[[system://public_user]]</userid>
1244
+ </action>
1245
+
1246
+ <action>
1247
+ <action_id>set_metadata_field_select_7948268028_select_options</action_id>
1248
+ <action_type>set_attribute_value</action_type>
1249
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1250
+ <attribute>select_options</attribute>
1251
+ <value><![CDATA[array ('h2' => 'h2','h3' => 'h3','h4' => 'h4','h5' => 'h5',);]]></value>
1252
+ </action>
1253
+ <action>
1254
+ <action_id>set_{f.type}_7948268028_edit_params</action_id>
1255
+ <action_type>set_attribute_value</action_type>
1256
+ <asset>[[output://create_metadata_field_select_7948268028.assetid]]</asset>
1257
+ <attribute>edit_params</attribute>
1258
+ <value><![CDATA[array (
1259
+ 'style' => 'list',
1260
+ 'type' => 'table',
1261
+ 'height' => '',
1262
+ 'columns' => '1',
1263
+ 'empty_text' => '',
1264
+ 'extras' => '',
1265
+ );]]></value>
1266
+ </action>
1267
+
1268
+ <action>
1269
+ <action_id>create_metadata_field_wysiwyg_8872213640</action_id>
1270
+ <action_type>create_asset</action_type>
1271
+ <type_code>metadata_field_wysiwyg</type_code>
1272
+ <link_type>2</link_type>
1273
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
1274
+ <value></value>
1275
+ <is_dependant>1</is_dependant>
1276
+ <is_exclusive>0</is_exclusive>
1277
+ </action>
1278
+ <action>
1279
+ <action_id>set_metadata_field_wysiwyg_8872213640_name</action_id>
1280
+ <action_type>set_attribute_value</action_type>
1281
+ <asset>[[output://create_metadata_field_wysiwyg_8872213640.assetid]]</asset>
1282
+ <attribute>name</attribute>
1283
+ <value><![CDATA[intro_body]]></value>
1284
+ </action>
1285
+ <action>
1286
+ <action_id>set_metadata_field_wysiwyg_8872213640_friendly_name</action_id>
1287
+ <action_type>set_attribute_value</action_type>
1288
+ <asset>[[output://create_metadata_field_wysiwyg_8872213640.assetid]]</asset>
1289
+ <attribute>friendly_name</attribute>
1290
+ <value><![CDATA[Intro body]]></value>
1291
+ </action>
1292
+ <action>
1293
+ <action_id>set_metadata_field_wysiwyg_8872213640_default</action_id>
1294
+ <action_type>set_attribute_value</action_type>
1295
+ <asset>[[output://create_metadata_field_wysiwyg_8872213640.assetid]]</asset>
1296
+ <attribute>default</attribute>
1297
+ <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>
1298
+ </action>
1299
+ <action>
1300
+ <action_id>set_metadata_field_wysiwyg_8872213640_description</action_id>
1301
+ <action_type>set_attribute_value</action_type>
1302
+ <asset>[[output://create_metadata_field_wysiwyg_8872213640.assetid]]</asset>
1303
+ <attribute>description</attribute>
1304
+ <value><![CDATA[]]></value>
1305
+ </action>
1306
+ <action>
1307
+ <action_id>set_metadata_field_wysiwyg_8872213640_editable</action_id>
1308
+ <action_type>set_attribute_value</action_type>
1309
+ <asset>[[output://create_metadata_field_wysiwyg_8872213640.assetid]]</asset>
1310
+ <attribute>editable</attribute>
1311
+ <value><![CDATA[1]]></value>
1312
+ </action>
1313
+ <action>
1314
+ <action_id>set_metadata_field_wysiwyg_8872213640_editable</action_id>
1315
+ <action_type>set_attribute_value</action_type>
1316
+ <asset>[[output://create_metadata_field_wysiwyg_8872213640.assetid]]</asset>
1317
+ <attribute>editable</attribute>
1318
+ <value><![CDATA[1]]></value>
1319
+ </action>
1320
+ <action>
1321
+ <action_id>set_metadata_field_wysiwyg_8872213640_required</action_id>
1322
+ <action_type>set_attribute_value</action_type>
1323
+ <asset>[[output://create_metadata_field_wysiwyg_8872213640.assetid]]</asset>
1324
+ <attribute>required</attribute>
1325
+ <value><![CDATA[0]]></value>
1326
+ </action>
1327
+ <action>
1328
+ <action_id>set_permission_8872213640_read_5</action_id>
1329
+ <action_type>set_permission</action_type>
1330
+ <asset>[[output://create_metadata_field_wysiwyg_8872213640.assetid]]</asset>
1331
+ <permission>1</permission>
1332
+ <granted>1</granted>
1333
+ <userid>[[system://public_user]]</userid>
1334
+ </action>
1335
+
1336
+ <action>
1337
+ <action_id>create_metadata_field_text_9496122427</action_id>
1338
+ <action_type>create_asset</action_type>
1339
+ <type_code>metadata_field_text</type_code>
1340
+ <link_type>2</link_type>
1341
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
1342
+ <value></value>
1343
+ <is_dependant>1</is_dependant>
1344
+ <is_exclusive>0</is_exclusive>
1345
+ </action>
1346
+ <action>
1347
+ <action_id>set_metadata_field_text_9496122427_name</action_id>
1348
+ <action_type>set_attribute_value</action_type>
1349
+ <asset>[[output://create_metadata_field_text_9496122427.assetid]]</asset>
1350
+ <attribute>name</attribute>
1351
+ <value><![CDATA[all_link_name]]></value>
1352
+ </action>
1353
+ <action>
1354
+ <action_id>set_metadata_field_text_9496122427_friendly_name</action_id>
1355
+ <action_type>set_attribute_value</action_type>
1356
+ <asset>[[output://create_metadata_field_text_9496122427.assetid]]</asset>
1357
+ <attribute>friendly_name</attribute>
1358
+ <value><![CDATA[Footer link name]]></value>
1359
+ </action>
1360
+ <action>
1361
+ <action_id>set_metadata_field_text_9496122427_default</action_id>
1362
+ <action_type>set_attribute_value</action_type>
1363
+ <asset>[[output://create_metadata_field_text_9496122427.assetid]]</asset>
1364
+ <attribute>default</attribute>
1365
+ <value><![CDATA[All cards]]></value>
1366
+ </action>
1367
+ <action>
1368
+ <action_id>set_metadata_field_text_9496122427_description</action_id>
1369
+ <action_type>set_attribute_value</action_type>
1370
+ <asset>[[output://create_metadata_field_text_9496122427.assetid]]</asset>
1371
+ <attribute>description</attribute>
1372
+ <value><![CDATA[]]></value>
1373
+ </action>
1374
+ <action>
1375
+ <action_id>set_metadata_field_text_9496122427_editable</action_id>
1376
+ <action_type>set_attribute_value</action_type>
1377
+ <asset>[[output://create_metadata_field_text_9496122427.assetid]]</asset>
1378
+ <attribute>editable</attribute>
1379
+ <value><![CDATA[1]]></value>
1380
+ </action>
1381
+ <action>
1382
+ <action_id>set_metadata_field_text_9496122427_editable</action_id>
1383
+ <action_type>set_attribute_value</action_type>
1384
+ <asset>[[output://create_metadata_field_text_9496122427.assetid]]</asset>
1385
+ <attribute>editable</attribute>
1386
+ <value><![CDATA[1]]></value>
1387
+ </action>
1388
+ <action>
1389
+ <action_id>set_metadata_field_text_9496122427_required</action_id>
1390
+ <action_type>set_attribute_value</action_type>
1391
+ <asset>[[output://create_metadata_field_text_9496122427.assetid]]</asset>
1392
+ <attribute>required</attribute>
1393
+ <value><![CDATA[0]]></value>
1394
+ </action>
1395
+ <action>
1396
+ <action_id>set_permission_9496122427_read_5</action_id>
1397
+ <action_type>set_permission</action_type>
1398
+ <asset>[[output://create_metadata_field_text_9496122427.assetid]]</asset>
1399
+ <permission>1</permission>
1400
+ <granted>1</granted>
1401
+ <userid>[[system://public_user]]</userid>
1402
+ </action>
1403
+
1404
+ <action>
1405
+ <action_id>create_metadata_field_related_asset_7215922663</action_id>
1406
+ <action_type>create_asset</action_type>
1407
+ <type_code>metadata_field_related_asset</type_code>
1408
+ <link_type>2</link_type>
1409
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
1410
+ <value></value>
1411
+ <is_dependant>1</is_dependant>
1412
+ <is_exclusive>0</is_exclusive>
1413
+ </action>
1414
+ <action>
1415
+ <action_id>set_metadata_field_related_asset_7215922663_name</action_id>
1416
+ <action_type>set_attribute_value</action_type>
1417
+ <asset>[[output://create_metadata_field_related_asset_7215922663.assetid]]</asset>
1418
+ <attribute>name</attribute>
1419
+ <value><![CDATA[all_link]]></value>
1420
+ </action>
1421
+ <action>
1422
+ <action_id>set_metadata_field_related_asset_7215922663_friendly_name</action_id>
1423
+ <action_type>set_attribute_value</action_type>
1424
+ <asset>[[output://create_metadata_field_related_asset_7215922663.assetid]]</asset>
1425
+ <attribute>friendly_name</attribute>
1426
+ <value><![CDATA[Footer link]]></value>
1427
+ </action>
1428
+ <action>
1429
+ <action_id>set_metadata_field_related_asset_7215922663_default</action_id>
1430
+ <action_type>set_attribute_value</action_type>
1431
+ <asset>[[output://create_metadata_field_related_asset_7215922663.assetid]]</asset>
1432
+ <attribute>default</attribute>
1433
+ <value><![CDATA[#]]></value>
1434
+ </action>
1435
+ <action>
1436
+ <action_id>set_metadata_field_related_asset_7215922663_description</action_id>
1437
+ <action_type>set_attribute_value</action_type>
1438
+ <asset>[[output://create_metadata_field_related_asset_7215922663.assetid]]</asset>
1439
+ <attribute>description</attribute>
1440
+ <value><![CDATA[]]></value>
1441
+ </action>
1442
+ <action>
1443
+ <action_id>set_metadata_field_related_asset_7215922663_editable</action_id>
1444
+ <action_type>set_attribute_value</action_type>
1445
+ <asset>[[output://create_metadata_field_related_asset_7215922663.assetid]]</asset>
1446
+ <attribute>editable</attribute>
1447
+ <value><![CDATA[1]]></value>
1448
+ </action>
1449
+ <action>
1450
+ <action_id>set_metadata_field_related_asset_7215922663_editable</action_id>
1451
+ <action_type>set_attribute_value</action_type>
1452
+ <asset>[[output://create_metadata_field_related_asset_7215922663.assetid]]</asset>
1453
+ <attribute>editable</attribute>
1454
+ <value><![CDATA[1]]></value>
1455
+ </action>
1456
+ <action>
1457
+ <action_id>set_metadata_field_related_asset_7215922663_required</action_id>
1458
+ <action_type>set_attribute_value</action_type>
1459
+ <asset>[[output://create_metadata_field_related_asset_7215922663.assetid]]</asset>
1460
+ <attribute>required</attribute>
1461
+ <value><![CDATA[0]]></value>
1462
+ </action>
1463
+ <action>
1464
+ <action_id>set_permission_7215922663_read_5</action_id>
1465
+ <action_type>set_permission</action_type>
1466
+ <asset>[[output://create_metadata_field_related_asset_7215922663.assetid]]</asset>
1467
+ <permission>1</permission>
1468
+ <granted>1</granted>
1469
+ <userid>[[system://public_user]]</userid>
1470
+ </action>
1471
+
1472
+ <action>
1473
+ <action_id>create_metadata_field_text_3340069195</action_id>
1474
+ <action_type>create_asset</action_type>
1475
+ <type_code>metadata_field_text</type_code>
1476
+ <link_type>2</link_type>
1477
+ <parentid>[[output://create_Metadata_Section_7349016241.assetid]]</parentid>
1478
+ <value></value>
1479
+ <is_dependant>1</is_dependant>
1480
+ <is_exclusive>0</is_exclusive>
1481
+ </action>
1482
+ <action>
1483
+ <action_id>set_metadata_field_text_3340069195_name</action_id>
1484
+ <action_type>set_attribute_value</action_type>
1485
+ <asset>[[output://create_metadata_field_text_3340069195.assetid]]</asset>
1486
+ <attribute>name</attribute>
1487
+ <value><![CDATA[id_field]]></value>
1488
+ </action>
1489
+ <action>
1490
+ <action_id>set_metadata_field_text_3340069195_friendly_name</action_id>
1491
+ <action_type>set_attribute_value</action_type>
1492
+ <asset>[[output://create_metadata_field_text_3340069195.assetid]]</asset>
1493
+ <attribute>friendly_name</attribute>
1494
+ <value><![CDATA[Id field]]></value>
1495
+ </action>
1496
+ <action>
1497
+ <action_id>set_metadata_field_text_3340069195_default</action_id>
1498
+ <action_type>set_attribute_value</action_type>
1499
+ <asset>[[output://create_metadata_field_text_3340069195.assetid]]</asset>
1500
+ <attribute>default</attribute>
1501
+ <value><![CDATA[]]></value>
1502
+ </action>
1503
+ <action>
1504
+ <action_id>set_metadata_field_text_3340069195_description</action_id>
1505
+ <action_type>set_attribute_value</action_type>
1506
+ <asset>[[output://create_metadata_field_text_3340069195.assetid]]</asset>
1507
+ <attribute>description</attribute>
1508
+ <value><![CDATA[]]></value>
1509
+ </action>
1510
+ <action>
1511
+ <action_id>set_metadata_field_text_3340069195_editable</action_id>
1512
+ <action_type>set_attribute_value</action_type>
1513
+ <asset>[[output://create_metadata_field_text_3340069195.assetid]]</asset>
1514
+ <attribute>editable</attribute>
1515
+ <value><![CDATA[1]]></value>
1516
+ </action>
1517
+ <action>
1518
+ <action_id>set_metadata_field_text_3340069195_editable</action_id>
1519
+ <action_type>set_attribute_value</action_type>
1520
+ <asset>[[output://create_metadata_field_text_3340069195.assetid]]</asset>
1521
+ <attribute>editable</attribute>
1522
+ <value><![CDATA[1]]></value>
1523
+ </action>
1524
+ <action>
1525
+ <action_id>set_metadata_field_text_3340069195_required</action_id>
1526
+ <action_type>set_attribute_value</action_type>
1527
+ <asset>[[output://create_metadata_field_text_3340069195.assetid]]</asset>
1528
+ <attribute>required</attribute>
1529
+ <value><![CDATA[0]]></value>
1530
+ </action>
1531
+ <action>
1532
+ <action_id>set_permission_3340069195_read_5</action_id>
1533
+ <action_type>set_permission</action_type>
1534
+ <asset>[[output://create_metadata_field_text_3340069195.assetid]]</asset>
1535
+ <permission>1</permission>
1536
+ <granted>1</granted>
1537
+ <userid>[[system://public_user]]</userid>
1538
+ </action>
1539
+ </actions>