@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,2355 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <actions>
3
+ <action>
4
+ <action_id>create_Content_Container_Template_1764068034</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_1764068034_name</action_id>
15
+ <action_type>set_attribute_value</action_type>
16
+ <asset>[[output://create_Content_Container_Template_1764068034.assetid]]</asset>
17
+ <attribute>name</attribute>
18
+ <value><![CDATA[Cards]]></value>
19
+ </action>
20
+
21
+ <action>
22
+ <action_id>set_Content_Container_Template_1764068034_edit_interface_in_admin</action_id>
23
+ <action_type>set_attribute_value</action_type>
24
+ <asset>[[output://create_Content_Container_Template_1764068034.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_1764068034_icon_color</action_id>
31
+ <action_type>set_attribute_value</action_type>
32
+ <asset>[[output://create_Content_Container_Template_1764068034.assetid]]</asset>
33
+ <attribute>icon_color</attribute>
34
+ <value><![CDATA[blue]]></value>
35
+ </action>
36
+
37
+ <action>
38
+ <action_id>create_Metadata_Schema_3847466521</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_1764068034.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_3847466521_name</action_id>
49
+ <action_type>set_attribute_value</action_type>
50
+ <asset>[[output://create_Metadata_Schema_3847466521.assetid]]</asset>
51
+ <attribute>name</attribute>
52
+ <value><![CDATA[Cards]]></value>
53
+ </action>
54
+ <action>
55
+ <action_id>set_permission_3847466521_read_5</action_id>
56
+ <action_type>set_permission</action_type>
57
+ <asset>[[output://create_Metadata_Schema_3847466521.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_7323585693</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_3847466521.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_7323585693_path</action_id>
75
+ <action_type>add_web_path</action_type>
76
+ <asset>[[output://create_Metadata_Section_7323585693.assetid]]</asset>
77
+ <parent_asset>[[output://create_Metadata_Schema_3847466521.assetid]]</parent_asset>
78
+ <path>settings</path>
79
+ </action>
80
+ <action>
81
+ <action_id>set_Metadata_Section_7323585693_name</action_id>
82
+ <action_type>set_attribute_value</action_type>
83
+ <asset>[[output://create_Metadata_Section_7323585693.assetid]]</asset>
84
+ <attribute>name</attribute>
85
+ <value><![CDATA[Settings]]></value>
86
+ </action>
87
+ <action>
88
+ <action_id>set_permission_7323585693_read_5</action_id>
89
+ <action_type>set_permission</action_type>
90
+ <asset>[[output://create_Metadata_Section_7323585693.assetid]]</asset>
91
+ <permission>1</permission>
92
+ <granted>1</granted>
93
+ <userid>[[system://public_user]]</userid>
94
+ </action>
95
+
96
+ <action>
97
+ <action_id>create_metadata_field_select_6683300072</action_id>
98
+ <action_type>create_asset</action_type>
99
+ <type_code>metadata_field_select</type_code>
100
+ <link_type>2</link_type>
101
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
102
+ <value></value>
103
+ <is_dependant>1</is_dependant>
104
+ <is_exclusive>0</is_exclusive>
105
+ </action>
106
+ <action>
107
+ <action_id>set_metadata_field_select_6683300072_name</action_id>
108
+ <action_type>set_attribute_value</action_type>
109
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
110
+ <attribute>name</attribute>
111
+ <value><![CDATA[body_background]]></value>
112
+ </action>
113
+ <action>
114
+ <action_id>set_metadata_field_select_6683300072_friendly_name</action_id>
115
+ <action_type>set_attribute_value</action_type>
116
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
117
+ <attribute>friendly_name</attribute>
118
+ <value><![CDATA[Body Background]]></value>
119
+ </action>
120
+ <action>
121
+ <action_id>set_metadata_field_select_6683300072_default</action_id>
122
+ <action_type>set_attribute_value</action_type>
123
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
124
+ <attribute>default</attribute>
125
+ <value><![CDATA[qld__body--light]]></value>
126
+ </action>
127
+ <action>
128
+ <action_id>set_metadata_field_select_6683300072_description</action_id>
129
+ <action_type>set_attribute_value</action_type>
130
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
131
+ <attribute>description</attribute>
132
+ <value><![CDATA[]]></value>
133
+ </action>
134
+ <action>
135
+ <action_id>set_metadata_field_select_6683300072_editable</action_id>
136
+ <action_type>set_attribute_value</action_type>
137
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
138
+ <attribute>editable</attribute>
139
+ <value><![CDATA[1]]></value>
140
+ </action>
141
+ <action>
142
+ <action_id>set_metadata_field_select_6683300072_editable</action_id>
143
+ <action_type>set_attribute_value</action_type>
144
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
145
+ <attribute>editable</attribute>
146
+ <value><![CDATA[1]]></value>
147
+ </action>
148
+ <action>
149
+ <action_id>set_metadata_field_select_6683300072_required</action_id>
150
+ <action_type>set_attribute_value</action_type>
151
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
152
+ <attribute>required</attribute>
153
+ <value><![CDATA[0]]></value>
154
+ </action>
155
+ <action>
156
+ <action_id>set_permission_6683300072_read_5</action_id>
157
+ <action_type>set_permission</action_type>
158
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
159
+ <permission>1</permission>
160
+ <granted>1</granted>
161
+ <userid>[[system://public_user]]</userid>
162
+ </action>
163
+
164
+ <action>
165
+ <action_id>set_metadata_field_select_6683300072_select_options</action_id>
166
+ <action_type>set_attribute_value</action_type>
167
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
168
+ <attribute>select_options</attribute>
169
+ <value><![CDATA[array ('qld__body--light' => 'Light','qld__body--alt' => 'Alternate','qld__body--dark' => 'Dark','qld__body--dark-alt' => 'Alternate Dark',);]]></value>
170
+ </action>
171
+ <action>
172
+ <action_id>set_{f.type}_6683300072_edit_params</action_id>
173
+ <action_type>set_attribute_value</action_type>
174
+ <asset>[[output://create_metadata_field_select_6683300072.assetid]]</asset>
175
+ <attribute>edit_params</attribute>
176
+ <value><![CDATA[array (
177
+ 'style' => 'list',
178
+ 'type' => 'table',
179
+ 'height' => '',
180
+ 'columns' => '1',
181
+ 'empty_text' => '',
182
+ 'extras' => '',
183
+ );]]></value>
184
+ </action>
185
+
186
+ <action>
187
+ <action_id>create_metadata_field_select_2445423821</action_id>
188
+ <action_type>create_asset</action_type>
189
+ <type_code>metadata_field_select</type_code>
190
+ <link_type>2</link_type>
191
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
192
+ <value></value>
193
+ <is_dependant>1</is_dependant>
194
+ <is_exclusive>0</is_exclusive>
195
+ </action>
196
+ <action>
197
+ <action_id>set_metadata_field_select_2445423821_name</action_id>
198
+ <action_type>set_attribute_value</action_type>
199
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
200
+ <attribute>name</attribute>
201
+ <value><![CDATA[body_background_type]]></value>
202
+ </action>
203
+ <action>
204
+ <action_id>set_metadata_field_select_2445423821_friendly_name</action_id>
205
+ <action_type>set_attribute_value</action_type>
206
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
207
+ <attribute>friendly_name</attribute>
208
+ <value><![CDATA[Body Background Type]]></value>
209
+ </action>
210
+ <action>
211
+ <action_id>set_metadata_field_select_2445423821_default</action_id>
212
+ <action_type>set_attribute_value</action_type>
213
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
214
+ <attribute>default</attribute>
215
+ <value><![CDATA[qld__card--wrapper-bg-image]]></value>
216
+ </action>
217
+ <action>
218
+ <action_id>set_metadata_field_select_2445423821_description</action_id>
219
+ <action_type>set_attribute_value</action_type>
220
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
221
+ <attribute>description</attribute>
222
+ <value><![CDATA[]]></value>
223
+ </action>
224
+ <action>
225
+ <action_id>set_metadata_field_select_2445423821_editable</action_id>
226
+ <action_type>set_attribute_value</action_type>
227
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
228
+ <attribute>editable</attribute>
229
+ <value><![CDATA[1]]></value>
230
+ </action>
231
+ <action>
232
+ <action_id>set_metadata_field_select_2445423821_editable</action_id>
233
+ <action_type>set_attribute_value</action_type>
234
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
235
+ <attribute>editable</attribute>
236
+ <value><![CDATA[1]]></value>
237
+ </action>
238
+ <action>
239
+ <action_id>set_metadata_field_select_2445423821_required</action_id>
240
+ <action_type>set_attribute_value</action_type>
241
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
242
+ <attribute>required</attribute>
243
+ <value><![CDATA[0]]></value>
244
+ </action>
245
+ <action>
246
+ <action_id>set_permission_2445423821_read_5</action_id>
247
+ <action_type>set_permission</action_type>
248
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
249
+ <permission>1</permission>
250
+ <granted>1</granted>
251
+ <userid>[[system://public_user]]</userid>
252
+ </action>
253
+
254
+ <action>
255
+ <action_id>set_metadata_field_select_2445423821_select_options</action_id>
256
+ <action_type>set_attribute_value</action_type>
257
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
258
+ <attribute>select_options</attribute>
259
+ <value><![CDATA[array ('qld__card--wrapper-bg-image' => 'Image','qld__card--wrapper-bg-pattern' => 'Pattern','qld__card--wrapper-bg-colour' => 'Colour',);]]></value>
260
+ </action>
261
+ <action>
262
+ <action_id>set_{f.type}_2445423821_edit_params</action_id>
263
+ <action_type>set_attribute_value</action_type>
264
+ <asset>[[output://create_metadata_field_select_2445423821.assetid]]</asset>
265
+ <attribute>edit_params</attribute>
266
+ <value><![CDATA[array (
267
+ 'style' => 'list',
268
+ 'type' => 'table',
269
+ 'height' => '',
270
+ 'columns' => '1',
271
+ 'empty_text' => '',
272
+ 'extras' => '',
273
+ );]]></value>
274
+ </action>
275
+
276
+ <action>
277
+ <action_id>create_metadata_field_related_asset_3142293421</action_id>
278
+ <action_type>create_asset</action_type>
279
+ <type_code>metadata_field_related_asset</type_code>
280
+ <link_type>2</link_type>
281
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
282
+ <value></value>
283
+ <is_dependant>1</is_dependant>
284
+ <is_exclusive>0</is_exclusive>
285
+ </action>
286
+ <action>
287
+ <action_id>set_metadata_field_related_asset_3142293421_name</action_id>
288
+ <action_type>set_attribute_value</action_type>
289
+ <asset>[[output://create_metadata_field_related_asset_3142293421.assetid]]</asset>
290
+ <attribute>name</attribute>
291
+ <value><![CDATA[body_background_image]]></value>
292
+ </action>
293
+ <action>
294
+ <action_id>set_metadata_field_related_asset_3142293421_friendly_name</action_id>
295
+ <action_type>set_attribute_value</action_type>
296
+ <asset>[[output://create_metadata_field_related_asset_3142293421.assetid]]</asset>
297
+ <attribute>friendly_name</attribute>
298
+ <value><![CDATA[Body Background Image]]></value>
299
+ </action>
300
+ <action>
301
+ <action_id>set_metadata_field_related_asset_3142293421_default</action_id>
302
+ <action_type>set_attribute_value</action_type>
303
+ <asset>[[output://create_metadata_field_related_asset_3142293421.assetid]]</asset>
304
+ <attribute>default</attribute>
305
+ <value><![CDATA[/mysource_files/img/card--content.png]]></value>
306
+ </action>
307
+ <action>
308
+ <action_id>set_metadata_field_related_asset_3142293421_description</action_id>
309
+ <action_type>set_attribute_value</action_type>
310
+ <asset>[[output://create_metadata_field_related_asset_3142293421.assetid]]</asset>
311
+ <attribute>description</attribute>
312
+ <value><![CDATA[]]></value>
313
+ </action>
314
+ <action>
315
+ <action_id>set_metadata_field_related_asset_3142293421_editable</action_id>
316
+ <action_type>set_attribute_value</action_type>
317
+ <asset>[[output://create_metadata_field_related_asset_3142293421.assetid]]</asset>
318
+ <attribute>editable</attribute>
319
+ <value><![CDATA[1]]></value>
320
+ </action>
321
+ <action>
322
+ <action_id>set_metadata_field_related_asset_3142293421_editable</action_id>
323
+ <action_type>set_attribute_value</action_type>
324
+ <asset>[[output://create_metadata_field_related_asset_3142293421.assetid]]</asset>
325
+ <attribute>editable</attribute>
326
+ <value><![CDATA[1]]></value>
327
+ </action>
328
+ <action>
329
+ <action_id>set_metadata_field_related_asset_3142293421_required</action_id>
330
+ <action_type>set_attribute_value</action_type>
331
+ <asset>[[output://create_metadata_field_related_asset_3142293421.assetid]]</asset>
332
+ <attribute>required</attribute>
333
+ <value><![CDATA[0]]></value>
334
+ </action>
335
+ <action>
336
+ <action_id>set_permission_3142293421_read_5</action_id>
337
+ <action_type>set_permission</action_type>
338
+ <asset>[[output://create_metadata_field_related_asset_3142293421.assetid]]</asset>
339
+ <permission>1</permission>
340
+ <granted>1</granted>
341
+ <userid>[[system://public_user]]</userid>
342
+ </action>
343
+
344
+ <action>
345
+ <action_id>create_metadata_field_related_asset_7689971524</action_id>
346
+ <action_type>create_asset</action_type>
347
+ <type_code>metadata_field_related_asset</type_code>
348
+ <link_type>2</link_type>
349
+ <parentid>[[output://create_Metadata_Section_7323585693.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_related_asset_7689971524_name</action_id>
356
+ <action_type>set_attribute_value</action_type>
357
+ <asset>[[output://create_metadata_field_related_asset_7689971524.assetid]]</asset>
358
+ <attribute>name</attribute>
359
+ <value><![CDATA[body_background_pattern]]></value>
360
+ </action>
361
+ <action>
362
+ <action_id>set_metadata_field_related_asset_7689971524_friendly_name</action_id>
363
+ <action_type>set_attribute_value</action_type>
364
+ <asset>[[output://create_metadata_field_related_asset_7689971524.assetid]]</asset>
365
+ <attribute>friendly_name</attribute>
366
+ <value><![CDATA[Body Background Pattern]]></value>
367
+ </action>
368
+ <action>
369
+ <action_id>set_metadata_field_related_asset_7689971524_default</action_id>
370
+ <action_type>set_attribute_value</action_type>
371
+ <asset>[[output://create_metadata_field_related_asset_7689971524.assetid]]</asset>
372
+ <attribute>default</attribute>
373
+ <value><![CDATA[/mysource_files/img/banner-bg.png]]></value>
374
+ </action>
375
+ <action>
376
+ <action_id>set_metadata_field_related_asset_7689971524_description</action_id>
377
+ <action_type>set_attribute_value</action_type>
378
+ <asset>[[output://create_metadata_field_related_asset_7689971524.assetid]]</asset>
379
+ <attribute>description</attribute>
380
+ <value><![CDATA[]]></value>
381
+ </action>
382
+ <action>
383
+ <action_id>set_metadata_field_related_asset_7689971524_editable</action_id>
384
+ <action_type>set_attribute_value</action_type>
385
+ <asset>[[output://create_metadata_field_related_asset_7689971524.assetid]]</asset>
386
+ <attribute>editable</attribute>
387
+ <value><![CDATA[1]]></value>
388
+ </action>
389
+ <action>
390
+ <action_id>set_metadata_field_related_asset_7689971524_editable</action_id>
391
+ <action_type>set_attribute_value</action_type>
392
+ <asset>[[output://create_metadata_field_related_asset_7689971524.assetid]]</asset>
393
+ <attribute>editable</attribute>
394
+ <value><![CDATA[1]]></value>
395
+ </action>
396
+ <action>
397
+ <action_id>set_metadata_field_related_asset_7689971524_required</action_id>
398
+ <action_type>set_attribute_value</action_type>
399
+ <asset>[[output://create_metadata_field_related_asset_7689971524.assetid]]</asset>
400
+ <attribute>required</attribute>
401
+ <value><![CDATA[0]]></value>
402
+ </action>
403
+ <action>
404
+ <action_id>set_permission_7689971524_read_5</action_id>
405
+ <action_type>set_permission</action_type>
406
+ <asset>[[output://create_metadata_field_related_asset_7689971524.assetid]]</asset>
407
+ <permission>1</permission>
408
+ <granted>1</granted>
409
+ <userid>[[system://public_user]]</userid>
410
+ </action>
411
+
412
+ <action>
413
+ <action_id>create_metadata_field_select_2333564381</action_id>
414
+ <action_type>create_asset</action_type>
415
+ <type_code>metadata_field_select</type_code>
416
+ <link_type>2</link_type>
417
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
418
+ <value></value>
419
+ <is_dependant>1</is_dependant>
420
+ <is_exclusive>0</is_exclusive>
421
+ </action>
422
+ <action>
423
+ <action_id>set_metadata_field_select_2333564381_name</action_id>
424
+ <action_type>set_attribute_value</action_type>
425
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
426
+ <attribute>name</attribute>
427
+ <value><![CDATA[background]]></value>
428
+ </action>
429
+ <action>
430
+ <action_id>set_metadata_field_select_2333564381_friendly_name</action_id>
431
+ <action_type>set_attribute_value</action_type>
432
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
433
+ <attribute>friendly_name</attribute>
434
+ <value><![CDATA[Card background]]></value>
435
+ </action>
436
+ <action>
437
+ <action_id>set_metadata_field_select_2333564381_default</action_id>
438
+ <action_type>set_attribute_value</action_type>
439
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
440
+ <attribute>default</attribute>
441
+ <value><![CDATA[]]></value>
442
+ </action>
443
+ <action>
444
+ <action_id>set_metadata_field_select_2333564381_description</action_id>
445
+ <action_type>set_attribute_value</action_type>
446
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
447
+ <attribute>description</attribute>
448
+ <value><![CDATA[]]></value>
449
+ </action>
450
+ <action>
451
+ <action_id>set_metadata_field_select_2333564381_editable</action_id>
452
+ <action_type>set_attribute_value</action_type>
453
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
454
+ <attribute>editable</attribute>
455
+ <value><![CDATA[1]]></value>
456
+ </action>
457
+ <action>
458
+ <action_id>set_metadata_field_select_2333564381_editable</action_id>
459
+ <action_type>set_attribute_value</action_type>
460
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
461
+ <attribute>editable</attribute>
462
+ <value><![CDATA[1]]></value>
463
+ </action>
464
+ <action>
465
+ <action_id>set_metadata_field_select_2333564381_required</action_id>
466
+ <action_type>set_attribute_value</action_type>
467
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
468
+ <attribute>required</attribute>
469
+ <value><![CDATA[0]]></value>
470
+ </action>
471
+ <action>
472
+ <action_id>set_permission_2333564381_read_5</action_id>
473
+ <action_type>set_permission</action_type>
474
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
475
+ <permission>1</permission>
476
+ <granted>1</granted>
477
+ <userid>[[system://public_user]]</userid>
478
+ </action>
479
+
480
+ <action>
481
+ <action_id>set_metadata_field_select_2333564381_select_options</action_id>
482
+ <action_type>set_attribute_value</action_type>
483
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
484
+ <attribute>select_options</attribute>
485
+ <value><![CDATA[array ('' => 'Light','qld__card--alt' => 'Alternate','qld__card--dark' => 'Dark','qld__card--dark-alt' => 'Dark Alternate',);]]></value>
486
+ </action>
487
+ <action>
488
+ <action_id>set_{f.type}_2333564381_edit_params</action_id>
489
+ <action_type>set_attribute_value</action_type>
490
+ <asset>[[output://create_metadata_field_select_2333564381.assetid]]</asset>
491
+ <attribute>edit_params</attribute>
492
+ <value><![CDATA[array (
493
+ 'style' => 'list',
494
+ 'type' => 'table',
495
+ 'height' => '',
496
+ 'columns' => '1',
497
+ 'empty_text' => '',
498
+ 'extras' => '',
499
+ );]]></value>
500
+ </action>
501
+
502
+ <action>
503
+ <action_id>create_metadata_field_text_3659231228</action_id>
504
+ <action_type>create_asset</action_type>
505
+ <type_code>metadata_field_text</type_code>
506
+ <link_type>2</link_type>
507
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
508
+ <value></value>
509
+ <is_dependant>1</is_dependant>
510
+ <is_exclusive>0</is_exclusive>
511
+ </action>
512
+ <action>
513
+ <action_id>set_metadata_field_text_3659231228_name</action_id>
514
+ <action_type>set_attribute_value</action_type>
515
+ <asset>[[output://create_metadata_field_text_3659231228.assetid]]</asset>
516
+ <attribute>name</attribute>
517
+ <value><![CDATA[intro_heading]]></value>
518
+ </action>
519
+ <action>
520
+ <action_id>set_metadata_field_text_3659231228_friendly_name</action_id>
521
+ <action_type>set_attribute_value</action_type>
522
+ <asset>[[output://create_metadata_field_text_3659231228.assetid]]</asset>
523
+ <attribute>friendly_name</attribute>
524
+ <value><![CDATA[Intro heading]]></value>
525
+ </action>
526
+ <action>
527
+ <action_id>set_metadata_field_text_3659231228_default</action_id>
528
+ <action_type>set_attribute_value</action_type>
529
+ <asset>[[output://create_metadata_field_text_3659231228.assetid]]</asset>
530
+ <attribute>default</attribute>
531
+ <value><![CDATA[Intro heading]]></value>
532
+ </action>
533
+ <action>
534
+ <action_id>set_metadata_field_text_3659231228_description</action_id>
535
+ <action_type>set_attribute_value</action_type>
536
+ <asset>[[output://create_metadata_field_text_3659231228.assetid]]</asset>
537
+ <attribute>description</attribute>
538
+ <value><![CDATA[]]></value>
539
+ </action>
540
+ <action>
541
+ <action_id>set_metadata_field_text_3659231228_editable</action_id>
542
+ <action_type>set_attribute_value</action_type>
543
+ <asset>[[output://create_metadata_field_text_3659231228.assetid]]</asset>
544
+ <attribute>editable</attribute>
545
+ <value><![CDATA[1]]></value>
546
+ </action>
547
+ <action>
548
+ <action_id>set_metadata_field_text_3659231228_editable</action_id>
549
+ <action_type>set_attribute_value</action_type>
550
+ <asset>[[output://create_metadata_field_text_3659231228.assetid]]</asset>
551
+ <attribute>editable</attribute>
552
+ <value><![CDATA[1]]></value>
553
+ </action>
554
+ <action>
555
+ <action_id>set_metadata_field_text_3659231228_required</action_id>
556
+ <action_type>set_attribute_value</action_type>
557
+ <asset>[[output://create_metadata_field_text_3659231228.assetid]]</asset>
558
+ <attribute>required</attribute>
559
+ <value><![CDATA[0]]></value>
560
+ </action>
561
+ <action>
562
+ <action_id>set_permission_3659231228_read_5</action_id>
563
+ <action_type>set_permission</action_type>
564
+ <asset>[[output://create_metadata_field_text_3659231228.assetid]]</asset>
565
+ <permission>1</permission>
566
+ <granted>1</granted>
567
+ <userid>[[system://public_user]]</userid>
568
+ </action>
569
+
570
+ <action>
571
+ <action_id>create_metadata_field_wysiwyg_7633291061</action_id>
572
+ <action_type>create_asset</action_type>
573
+ <type_code>metadata_field_wysiwyg</type_code>
574
+ <link_type>2</link_type>
575
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
576
+ <value></value>
577
+ <is_dependant>1</is_dependant>
578
+ <is_exclusive>0</is_exclusive>
579
+ </action>
580
+ <action>
581
+ <action_id>set_metadata_field_wysiwyg_7633291061_name</action_id>
582
+ <action_type>set_attribute_value</action_type>
583
+ <asset>[[output://create_metadata_field_wysiwyg_7633291061.assetid]]</asset>
584
+ <attribute>name</attribute>
585
+ <value><![CDATA[intro_body]]></value>
586
+ </action>
587
+ <action>
588
+ <action_id>set_metadata_field_wysiwyg_7633291061_friendly_name</action_id>
589
+ <action_type>set_attribute_value</action_type>
590
+ <asset>[[output://create_metadata_field_wysiwyg_7633291061.assetid]]</asset>
591
+ <attribute>friendly_name</attribute>
592
+ <value><![CDATA[Intro body]]></value>
593
+ </action>
594
+ <action>
595
+ <action_id>set_metadata_field_wysiwyg_7633291061_default</action_id>
596
+ <action_type>set_attribute_value</action_type>
597
+ <asset>[[output://create_metadata_field_wysiwyg_7633291061.assetid]]</asset>
598
+ <attribute>default</attribute>
599
+ <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>
600
+ </action>
601
+ <action>
602
+ <action_id>set_metadata_field_wysiwyg_7633291061_description</action_id>
603
+ <action_type>set_attribute_value</action_type>
604
+ <asset>[[output://create_metadata_field_wysiwyg_7633291061.assetid]]</asset>
605
+ <attribute>description</attribute>
606
+ <value><![CDATA[]]></value>
607
+ </action>
608
+ <action>
609
+ <action_id>set_metadata_field_wysiwyg_7633291061_editable</action_id>
610
+ <action_type>set_attribute_value</action_type>
611
+ <asset>[[output://create_metadata_field_wysiwyg_7633291061.assetid]]</asset>
612
+ <attribute>editable</attribute>
613
+ <value><![CDATA[1]]></value>
614
+ </action>
615
+ <action>
616
+ <action_id>set_metadata_field_wysiwyg_7633291061_editable</action_id>
617
+ <action_type>set_attribute_value</action_type>
618
+ <asset>[[output://create_metadata_field_wysiwyg_7633291061.assetid]]</asset>
619
+ <attribute>editable</attribute>
620
+ <value><![CDATA[1]]></value>
621
+ </action>
622
+ <action>
623
+ <action_id>set_metadata_field_wysiwyg_7633291061_required</action_id>
624
+ <action_type>set_attribute_value</action_type>
625
+ <asset>[[output://create_metadata_field_wysiwyg_7633291061.assetid]]</asset>
626
+ <attribute>required</attribute>
627
+ <value><![CDATA[0]]></value>
628
+ </action>
629
+ <action>
630
+ <action_id>set_permission_7633291061_read_5</action_id>
631
+ <action_type>set_permission</action_type>
632
+ <asset>[[output://create_metadata_field_wysiwyg_7633291061.assetid]]</asset>
633
+ <permission>1</permission>
634
+ <granted>1</granted>
635
+ <userid>[[system://public_user]]</userid>
636
+ </action>
637
+
638
+ <action>
639
+ <action_id>create_metadata_field_select_2625423511</action_id>
640
+ <action_type>create_asset</action_type>
641
+ <type_code>metadata_field_select</type_code>
642
+ <link_type>2</link_type>
643
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
644
+ <value></value>
645
+ <is_dependant>1</is_dependant>
646
+ <is_exclusive>0</is_exclusive>
647
+ </action>
648
+ <action>
649
+ <action_id>set_metadata_field_select_2625423511_name</action_id>
650
+ <action_type>set_attribute_value</action_type>
651
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
652
+ <attribute>name</attribute>
653
+ <value><![CDATA[intro_width]]></value>
654
+ </action>
655
+ <action>
656
+ <action_id>set_metadata_field_select_2625423511_friendly_name</action_id>
657
+ <action_type>set_attribute_value</action_type>
658
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
659
+ <attribute>friendly_name</attribute>
660
+ <value><![CDATA[Intro width]]></value>
661
+ </action>
662
+ <action>
663
+ <action_id>set_metadata_field_select_2625423511_default</action_id>
664
+ <action_type>set_attribute_value</action_type>
665
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
666
+ <attribute>default</attribute>
667
+ <value><![CDATA[col-md-6]]></value>
668
+ </action>
669
+ <action>
670
+ <action_id>set_metadata_field_select_2625423511_description</action_id>
671
+ <action_type>set_attribute_value</action_type>
672
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
673
+ <attribute>description</attribute>
674
+ <value><![CDATA[]]></value>
675
+ </action>
676
+ <action>
677
+ <action_id>set_metadata_field_select_2625423511_editable</action_id>
678
+ <action_type>set_attribute_value</action_type>
679
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
680
+ <attribute>editable</attribute>
681
+ <value><![CDATA[1]]></value>
682
+ </action>
683
+ <action>
684
+ <action_id>set_metadata_field_select_2625423511_editable</action_id>
685
+ <action_type>set_attribute_value</action_type>
686
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
687
+ <attribute>editable</attribute>
688
+ <value><![CDATA[1]]></value>
689
+ </action>
690
+ <action>
691
+ <action_id>set_metadata_field_select_2625423511_required</action_id>
692
+ <action_type>set_attribute_value</action_type>
693
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
694
+ <attribute>required</attribute>
695
+ <value><![CDATA[0]]></value>
696
+ </action>
697
+ <action>
698
+ <action_id>set_permission_2625423511_read_5</action_id>
699
+ <action_type>set_permission</action_type>
700
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
701
+ <permission>1</permission>
702
+ <granted>1</granted>
703
+ <userid>[[system://public_user]]</userid>
704
+ </action>
705
+
706
+ <action>
707
+ <action_id>set_metadata_field_select_2625423511_select_options</action_id>
708
+ <action_type>set_attribute_value</action_type>
709
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
710
+ <attribute>select_options</attribute>
711
+ <value><![CDATA[array ('col-md-6' => 'Half width','col-md-12' => 'Full width',);]]></value>
712
+ </action>
713
+ <action>
714
+ <action_id>set_{f.type}_2625423511_edit_params</action_id>
715
+ <action_type>set_attribute_value</action_type>
716
+ <asset>[[output://create_metadata_field_select_2625423511.assetid]]</asset>
717
+ <attribute>edit_params</attribute>
718
+ <value><![CDATA[array (
719
+ 'style' => 'list',
720
+ 'type' => 'table',
721
+ 'height' => '',
722
+ 'columns' => '1',
723
+ 'empty_text' => '',
724
+ 'extras' => '',
725
+ );]]></value>
726
+ </action>
727
+
728
+ <action>
729
+ <action_id>create_metadata_field_select_8145488877</action_id>
730
+ <action_type>create_asset</action_type>
731
+ <type_code>metadata_field_select</type_code>
732
+ <link_type>2</link_type>
733
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
734
+ <value></value>
735
+ <is_dependant>1</is_dependant>
736
+ <is_exclusive>0</is_exclusive>
737
+ </action>
738
+ <action>
739
+ <action_id>set_metadata_field_select_8145488877_name</action_id>
740
+ <action_type>set_attribute_value</action_type>
741
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
742
+ <attribute>name</attribute>
743
+ <value><![CDATA[card_feature]]></value>
744
+ </action>
745
+ <action>
746
+ <action_id>set_metadata_field_select_8145488877_friendly_name</action_id>
747
+ <action_type>set_attribute_value</action_type>
748
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
749
+ <attribute>friendly_name</attribute>
750
+ <value><![CDATA[Display as Feature Card?]]></value>
751
+ </action>
752
+ <action>
753
+ <action_id>set_metadata_field_select_8145488877_default</action_id>
754
+ <action_type>set_attribute_value</action_type>
755
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
756
+ <attribute>default</attribute>
757
+ <value><![CDATA[true]]></value>
758
+ </action>
759
+ <action>
760
+ <action_id>set_metadata_field_select_8145488877_description</action_id>
761
+ <action_type>set_attribute_value</action_type>
762
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
763
+ <attribute>description</attribute>
764
+ <value><![CDATA[]]></value>
765
+ </action>
766
+ <action>
767
+ <action_id>set_metadata_field_select_8145488877_editable</action_id>
768
+ <action_type>set_attribute_value</action_type>
769
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
770
+ <attribute>editable</attribute>
771
+ <value><![CDATA[1]]></value>
772
+ </action>
773
+ <action>
774
+ <action_id>set_metadata_field_select_8145488877_editable</action_id>
775
+ <action_type>set_attribute_value</action_type>
776
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
777
+ <attribute>editable</attribute>
778
+ <value><![CDATA[1]]></value>
779
+ </action>
780
+ <action>
781
+ <action_id>set_metadata_field_select_8145488877_required</action_id>
782
+ <action_type>set_attribute_value</action_type>
783
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
784
+ <attribute>required</attribute>
785
+ <value><![CDATA[0]]></value>
786
+ </action>
787
+ <action>
788
+ <action_id>set_permission_8145488877_read_5</action_id>
789
+ <action_type>set_permission</action_type>
790
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
791
+ <permission>1</permission>
792
+ <granted>1</granted>
793
+ <userid>[[system://public_user]]</userid>
794
+ </action>
795
+
796
+ <action>
797
+ <action_id>set_metadata_field_select_8145488877_select_options</action_id>
798
+ <action_type>set_attribute_value</action_type>
799
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
800
+ <attribute>select_options</attribute>
801
+ <value><![CDATA[array ('true' => 'Yes','false' => 'No',);]]></value>
802
+ </action>
803
+ <action>
804
+ <action_id>set_{f.type}_8145488877_edit_params</action_id>
805
+ <action_type>set_attribute_value</action_type>
806
+ <asset>[[output://create_metadata_field_select_8145488877.assetid]]</asset>
807
+ <attribute>edit_params</attribute>
808
+ <value><![CDATA[array (
809
+ 'style' => 'list',
810
+ 'type' => 'table',
811
+ 'height' => '',
812
+ 'columns' => '1',
813
+ 'empty_text' => '',
814
+ 'extras' => '',
815
+ );]]></value>
816
+ </action>
817
+
818
+ <action>
819
+ <action_id>create_metadata_field_select_2177949717</action_id>
820
+ <action_type>create_asset</action_type>
821
+ <type_code>metadata_field_select</type_code>
822
+ <link_type>2</link_type>
823
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
824
+ <value></value>
825
+ <is_dependant>1</is_dependant>
826
+ <is_exclusive>0</is_exclusive>
827
+ </action>
828
+ <action>
829
+ <action_id>set_metadata_field_select_2177949717_name</action_id>
830
+ <action_type>set_attribute_value</action_type>
831
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
832
+ <attribute>name</attribute>
833
+ <value><![CDATA[card_image_right]]></value>
834
+ </action>
835
+ <action>
836
+ <action_id>set_metadata_field_select_2177949717_friendly_name</action_id>
837
+ <action_type>set_attribute_value</action_type>
838
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
839
+ <attribute>friendly_name</attribute>
840
+ <value><![CDATA[Card image right?]]></value>
841
+ </action>
842
+ <action>
843
+ <action_id>set_metadata_field_select_2177949717_default</action_id>
844
+ <action_type>set_attribute_value</action_type>
845
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
846
+ <attribute>default</attribute>
847
+ <value><![CDATA[true]]></value>
848
+ </action>
849
+ <action>
850
+ <action_id>set_metadata_field_select_2177949717_description</action_id>
851
+ <action_type>set_attribute_value</action_type>
852
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
853
+ <attribute>description</attribute>
854
+ <value><![CDATA[]]></value>
855
+ </action>
856
+ <action>
857
+ <action_id>set_metadata_field_select_2177949717_editable</action_id>
858
+ <action_type>set_attribute_value</action_type>
859
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
860
+ <attribute>editable</attribute>
861
+ <value><![CDATA[1]]></value>
862
+ </action>
863
+ <action>
864
+ <action_id>set_metadata_field_select_2177949717_editable</action_id>
865
+ <action_type>set_attribute_value</action_type>
866
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
867
+ <attribute>editable</attribute>
868
+ <value><![CDATA[1]]></value>
869
+ </action>
870
+ <action>
871
+ <action_id>set_metadata_field_select_2177949717_required</action_id>
872
+ <action_type>set_attribute_value</action_type>
873
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
874
+ <attribute>required</attribute>
875
+ <value><![CDATA[0]]></value>
876
+ </action>
877
+ <action>
878
+ <action_id>set_permission_2177949717_read_5</action_id>
879
+ <action_type>set_permission</action_type>
880
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
881
+ <permission>1</permission>
882
+ <granted>1</granted>
883
+ <userid>[[system://public_user]]</userid>
884
+ </action>
885
+
886
+ <action>
887
+ <action_id>set_metadata_field_select_2177949717_select_options</action_id>
888
+ <action_type>set_attribute_value</action_type>
889
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
890
+ <attribute>select_options</attribute>
891
+ <value><![CDATA[array ('true' => 'Yes','false' => 'No',);]]></value>
892
+ </action>
893
+ <action>
894
+ <action_id>set_{f.type}_2177949717_edit_params</action_id>
895
+ <action_type>set_attribute_value</action_type>
896
+ <asset>[[output://create_metadata_field_select_2177949717.assetid]]</asset>
897
+ <attribute>edit_params</attribute>
898
+ <value><![CDATA[array (
899
+ 'style' => 'list',
900
+ 'type' => 'table',
901
+ 'height' => '',
902
+ 'columns' => '1',
903
+ 'empty_text' => '',
904
+ 'extras' => '',
905
+ );]]></value>
906
+ </action>
907
+
908
+ <action>
909
+ <action_id>create_metadata_field_select_3484998636</action_id>
910
+ <action_type>create_asset</action_type>
911
+ <type_code>metadata_field_select</type_code>
912
+ <link_type>2</link_type>
913
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
914
+ <value></value>
915
+ <is_dependant>1</is_dependant>
916
+ <is_exclusive>0</is_exclusive>
917
+ </action>
918
+ <action>
919
+ <action_id>set_metadata_field_select_3484998636_name</action_id>
920
+ <action_type>set_attribute_value</action_type>
921
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
922
+ <attribute>name</attribute>
923
+ <value><![CDATA[show_icon_image]]></value>
924
+ </action>
925
+ <action>
926
+ <action_id>set_metadata_field_select_3484998636_friendly_name</action_id>
927
+ <action_type>set_attribute_value</action_type>
928
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
929
+ <attribute>friendly_name</attribute>
930
+ <value><![CDATA[Show card icon or image?]]></value>
931
+ </action>
932
+ <action>
933
+ <action_id>set_metadata_field_select_3484998636_default</action_id>
934
+ <action_type>set_attribute_value</action_type>
935
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
936
+ <attribute>default</attribute>
937
+ <value><![CDATA[image]]></value>
938
+ </action>
939
+ <action>
940
+ <action_id>set_metadata_field_select_3484998636_description</action_id>
941
+ <action_type>set_attribute_value</action_type>
942
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
943
+ <attribute>description</attribute>
944
+ <value><![CDATA[]]></value>
945
+ </action>
946
+ <action>
947
+ <action_id>set_metadata_field_select_3484998636_editable</action_id>
948
+ <action_type>set_attribute_value</action_type>
949
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
950
+ <attribute>editable</attribute>
951
+ <value><![CDATA[1]]></value>
952
+ </action>
953
+ <action>
954
+ <action_id>set_metadata_field_select_3484998636_editable</action_id>
955
+ <action_type>set_attribute_value</action_type>
956
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
957
+ <attribute>editable</attribute>
958
+ <value><![CDATA[1]]></value>
959
+ </action>
960
+ <action>
961
+ <action_id>set_metadata_field_select_3484998636_required</action_id>
962
+ <action_type>set_attribute_value</action_type>
963
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
964
+ <attribute>required</attribute>
965
+ <value><![CDATA[0]]></value>
966
+ </action>
967
+ <action>
968
+ <action_id>set_permission_3484998636_read_5</action_id>
969
+ <action_type>set_permission</action_type>
970
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
971
+ <permission>1</permission>
972
+ <granted>1</granted>
973
+ <userid>[[system://public_user]]</userid>
974
+ </action>
975
+
976
+ <action>
977
+ <action_id>set_metadata_field_select_3484998636_select_options</action_id>
978
+ <action_type>set_attribute_value</action_type>
979
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
980
+ <attribute>select_options</attribute>
981
+ <value><![CDATA[array ('icon' => 'Icon','image' => 'Image','none' => 'None',);]]></value>
982
+ </action>
983
+ <action>
984
+ <action_id>set_{f.type}_3484998636_edit_params</action_id>
985
+ <action_type>set_attribute_value</action_type>
986
+ <asset>[[output://create_metadata_field_select_3484998636.assetid]]</asset>
987
+ <attribute>edit_params</attribute>
988
+ <value><![CDATA[array (
989
+ 'style' => 'list',
990
+ 'type' => 'table',
991
+ 'height' => '',
992
+ 'columns' => '1',
993
+ 'empty_text' => '',
994
+ 'extras' => '',
995
+ );]]></value>
996
+ </action>
997
+
998
+ <action>
999
+ <action_id>create_metadata_field_text_2488958021</action_id>
1000
+ <action_type>create_asset</action_type>
1001
+ <type_code>metadata_field_text</type_code>
1002
+ <link_type>2</link_type>
1003
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1004
+ <value></value>
1005
+ <is_dependant>1</is_dependant>
1006
+ <is_exclusive>0</is_exclusive>
1007
+ </action>
1008
+ <action>
1009
+ <action_id>set_metadata_field_text_2488958021_name</action_id>
1010
+ <action_type>set_attribute_value</action_type>
1011
+ <asset>[[output://create_metadata_field_text_2488958021.assetid]]</asset>
1012
+ <attribute>name</attribute>
1013
+ <value><![CDATA[card_icon]]></value>
1014
+ </action>
1015
+ <action>
1016
+ <action_id>set_metadata_field_text_2488958021_friendly_name</action_id>
1017
+ <action_type>set_attribute_value</action_type>
1018
+ <asset>[[output://create_metadata_field_text_2488958021.assetid]]</asset>
1019
+ <attribute>friendly_name</attribute>
1020
+ <value><![CDATA[Footer link name]]></value>
1021
+ </action>
1022
+ <action>
1023
+ <action_id>set_metadata_field_text_2488958021_default</action_id>
1024
+ <action_type>set_attribute_value</action_type>
1025
+ <asset>[[output://create_metadata_field_text_2488958021.assetid]]</asset>
1026
+ <attribute>default</attribute>
1027
+ <value><![CDATA[fa-light fa-atom]]></value>
1028
+ </action>
1029
+ <action>
1030
+ <action_id>set_metadata_field_text_2488958021_description</action_id>
1031
+ <action_type>set_attribute_value</action_type>
1032
+ <asset>[[output://create_metadata_field_text_2488958021.assetid]]</asset>
1033
+ <attribute>description</attribute>
1034
+ <value><![CDATA[]]></value>
1035
+ </action>
1036
+ <action>
1037
+ <action_id>set_metadata_field_text_2488958021_editable</action_id>
1038
+ <action_type>set_attribute_value</action_type>
1039
+ <asset>[[output://create_metadata_field_text_2488958021.assetid]]</asset>
1040
+ <attribute>editable</attribute>
1041
+ <value><![CDATA[1]]></value>
1042
+ </action>
1043
+ <action>
1044
+ <action_id>set_metadata_field_text_2488958021_editable</action_id>
1045
+ <action_type>set_attribute_value</action_type>
1046
+ <asset>[[output://create_metadata_field_text_2488958021.assetid]]</asset>
1047
+ <attribute>editable</attribute>
1048
+ <value><![CDATA[1]]></value>
1049
+ </action>
1050
+ <action>
1051
+ <action_id>set_metadata_field_text_2488958021_required</action_id>
1052
+ <action_type>set_attribute_value</action_type>
1053
+ <asset>[[output://create_metadata_field_text_2488958021.assetid]]</asset>
1054
+ <attribute>required</attribute>
1055
+ <value><![CDATA[0]]></value>
1056
+ </action>
1057
+ <action>
1058
+ <action_id>set_permission_2488958021_read_5</action_id>
1059
+ <action_type>set_permission</action_type>
1060
+ <asset>[[output://create_metadata_field_text_2488958021.assetid]]</asset>
1061
+ <permission>1</permission>
1062
+ <granted>1</granted>
1063
+ <userid>[[system://public_user]]</userid>
1064
+ </action>
1065
+
1066
+ <action>
1067
+ <action_id>create_metadata_field_related_asset_3440308862</action_id>
1068
+ <action_type>create_asset</action_type>
1069
+ <type_code>metadata_field_related_asset</type_code>
1070
+ <link_type>2</link_type>
1071
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1072
+ <value></value>
1073
+ <is_dependant>1</is_dependant>
1074
+ <is_exclusive>0</is_exclusive>
1075
+ </action>
1076
+ <action>
1077
+ <action_id>set_metadata_field_related_asset_3440308862_name</action_id>
1078
+ <action_type>set_attribute_value</action_type>
1079
+ <asset>[[output://create_metadata_field_related_asset_3440308862.assetid]]</asset>
1080
+ <attribute>name</attribute>
1081
+ <value><![CDATA[card_image]]></value>
1082
+ </action>
1083
+ <action>
1084
+ <action_id>set_metadata_field_related_asset_3440308862_friendly_name</action_id>
1085
+ <action_type>set_attribute_value</action_type>
1086
+ <asset>[[output://create_metadata_field_related_asset_3440308862.assetid]]</asset>
1087
+ <attribute>friendly_name</attribute>
1088
+ <value><![CDATA[Card Image]]></value>
1089
+ </action>
1090
+ <action>
1091
+ <action_id>set_metadata_field_related_asset_3440308862_default</action_id>
1092
+ <action_type>set_attribute_value</action_type>
1093
+ <asset>[[output://create_metadata_field_related_asset_3440308862.assetid]]</asset>
1094
+ <attribute>default</attribute>
1095
+ <value><![CDATA[/mysource_files/img/card--brand.png]]></value>
1096
+ </action>
1097
+ <action>
1098
+ <action_id>set_metadata_field_related_asset_3440308862_description</action_id>
1099
+ <action_type>set_attribute_value</action_type>
1100
+ <asset>[[output://create_metadata_field_related_asset_3440308862.assetid]]</asset>
1101
+ <attribute>description</attribute>
1102
+ <value><![CDATA[]]></value>
1103
+ </action>
1104
+ <action>
1105
+ <action_id>set_metadata_field_related_asset_3440308862_editable</action_id>
1106
+ <action_type>set_attribute_value</action_type>
1107
+ <asset>[[output://create_metadata_field_related_asset_3440308862.assetid]]</asset>
1108
+ <attribute>editable</attribute>
1109
+ <value><![CDATA[1]]></value>
1110
+ </action>
1111
+ <action>
1112
+ <action_id>set_metadata_field_related_asset_3440308862_editable</action_id>
1113
+ <action_type>set_attribute_value</action_type>
1114
+ <asset>[[output://create_metadata_field_related_asset_3440308862.assetid]]</asset>
1115
+ <attribute>editable</attribute>
1116
+ <value><![CDATA[1]]></value>
1117
+ </action>
1118
+ <action>
1119
+ <action_id>set_metadata_field_related_asset_3440308862_required</action_id>
1120
+ <action_type>set_attribute_value</action_type>
1121
+ <asset>[[output://create_metadata_field_related_asset_3440308862.assetid]]</asset>
1122
+ <attribute>required</attribute>
1123
+ <value><![CDATA[0]]></value>
1124
+ </action>
1125
+ <action>
1126
+ <action_id>set_permission_3440308862_read_5</action_id>
1127
+ <action_type>set_permission</action_type>
1128
+ <asset>[[output://create_metadata_field_related_asset_3440308862.assetid]]</asset>
1129
+ <permission>1</permission>
1130
+ <granted>1</granted>
1131
+ <userid>[[system://public_user]]</userid>
1132
+ </action>
1133
+
1134
+ <action>
1135
+ <action_id>create_metadata_field_text_5531153577</action_id>
1136
+ <action_type>create_asset</action_type>
1137
+ <type_code>metadata_field_text</type_code>
1138
+ <link_type>2</link_type>
1139
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1140
+ <value></value>
1141
+ <is_dependant>1</is_dependant>
1142
+ <is_exclusive>0</is_exclusive>
1143
+ </action>
1144
+ <action>
1145
+ <action_id>set_metadata_field_text_5531153577_name</action_id>
1146
+ <action_type>set_attribute_value</action_type>
1147
+ <asset>[[output://create_metadata_field_text_5531153577.assetid]]</asset>
1148
+ <attribute>name</attribute>
1149
+ <value><![CDATA[card_title]]></value>
1150
+ </action>
1151
+ <action>
1152
+ <action_id>set_metadata_field_text_5531153577_friendly_name</action_id>
1153
+ <action_type>set_attribute_value</action_type>
1154
+ <asset>[[output://create_metadata_field_text_5531153577.assetid]]</asset>
1155
+ <attribute>friendly_name</attribute>
1156
+ <value><![CDATA[Card Title]]></value>
1157
+ </action>
1158
+ <action>
1159
+ <action_id>set_metadata_field_text_5531153577_default</action_id>
1160
+ <action_type>set_attribute_value</action_type>
1161
+ <asset>[[output://create_metadata_field_text_5531153577.assetid]]</asset>
1162
+ <attribute>default</attribute>
1163
+ <value><![CDATA[Card Title]]></value>
1164
+ </action>
1165
+ <action>
1166
+ <action_id>set_metadata_field_text_5531153577_description</action_id>
1167
+ <action_type>set_attribute_value</action_type>
1168
+ <asset>[[output://create_metadata_field_text_5531153577.assetid]]</asset>
1169
+ <attribute>description</attribute>
1170
+ <value><![CDATA[]]></value>
1171
+ </action>
1172
+ <action>
1173
+ <action_id>set_metadata_field_text_5531153577_editable</action_id>
1174
+ <action_type>set_attribute_value</action_type>
1175
+ <asset>[[output://create_metadata_field_text_5531153577.assetid]]</asset>
1176
+ <attribute>editable</attribute>
1177
+ <value><![CDATA[1]]></value>
1178
+ </action>
1179
+ <action>
1180
+ <action_id>set_metadata_field_text_5531153577_editable</action_id>
1181
+ <action_type>set_attribute_value</action_type>
1182
+ <asset>[[output://create_metadata_field_text_5531153577.assetid]]</asset>
1183
+ <attribute>editable</attribute>
1184
+ <value><![CDATA[1]]></value>
1185
+ </action>
1186
+ <action>
1187
+ <action_id>set_metadata_field_text_5531153577_required</action_id>
1188
+ <action_type>set_attribute_value</action_type>
1189
+ <asset>[[output://create_metadata_field_text_5531153577.assetid]]</asset>
1190
+ <attribute>required</attribute>
1191
+ <value><![CDATA[0]]></value>
1192
+ </action>
1193
+ <action>
1194
+ <action_id>set_permission_5531153577_read_5</action_id>
1195
+ <action_type>set_permission</action_type>
1196
+ <asset>[[output://create_metadata_field_text_5531153577.assetid]]</asset>
1197
+ <permission>1</permission>
1198
+ <granted>1</granted>
1199
+ <userid>[[system://public_user]]</userid>
1200
+ </action>
1201
+
1202
+ <action>
1203
+ <action_id>create_metadata_field_related_asset_9643787310</action_id>
1204
+ <action_type>create_asset</action_type>
1205
+ <type_code>metadata_field_related_asset</type_code>
1206
+ <link_type>2</link_type>
1207
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1208
+ <value></value>
1209
+ <is_dependant>1</is_dependant>
1210
+ <is_exclusive>0</is_exclusive>
1211
+ </action>
1212
+ <action>
1213
+ <action_id>set_metadata_field_related_asset_9643787310_name</action_id>
1214
+ <action_type>set_attribute_value</action_type>
1215
+ <asset>[[output://create_metadata_field_related_asset_9643787310.assetid]]</asset>
1216
+ <attribute>name</attribute>
1217
+ <value><![CDATA[card_title_url]]></value>
1218
+ </action>
1219
+ <action>
1220
+ <action_id>set_metadata_field_related_asset_9643787310_friendly_name</action_id>
1221
+ <action_type>set_attribute_value</action_type>
1222
+ <asset>[[output://create_metadata_field_related_asset_9643787310.assetid]]</asset>
1223
+ <attribute>friendly_name</attribute>
1224
+ <value><![CDATA[Card title url]]></value>
1225
+ </action>
1226
+ <action>
1227
+ <action_id>set_metadata_field_related_asset_9643787310_default</action_id>
1228
+ <action_type>set_attribute_value</action_type>
1229
+ <asset>[[output://create_metadata_field_related_asset_9643787310.assetid]]</asset>
1230
+ <attribute>default</attribute>
1231
+ <value><![CDATA[#]]></value>
1232
+ </action>
1233
+ <action>
1234
+ <action_id>set_metadata_field_related_asset_9643787310_description</action_id>
1235
+ <action_type>set_attribute_value</action_type>
1236
+ <asset>[[output://create_metadata_field_related_asset_9643787310.assetid]]</asset>
1237
+ <attribute>description</attribute>
1238
+ <value><![CDATA[]]></value>
1239
+ </action>
1240
+ <action>
1241
+ <action_id>set_metadata_field_related_asset_9643787310_editable</action_id>
1242
+ <action_type>set_attribute_value</action_type>
1243
+ <asset>[[output://create_metadata_field_related_asset_9643787310.assetid]]</asset>
1244
+ <attribute>editable</attribute>
1245
+ <value><![CDATA[1]]></value>
1246
+ </action>
1247
+ <action>
1248
+ <action_id>set_metadata_field_related_asset_9643787310_editable</action_id>
1249
+ <action_type>set_attribute_value</action_type>
1250
+ <asset>[[output://create_metadata_field_related_asset_9643787310.assetid]]</asset>
1251
+ <attribute>editable</attribute>
1252
+ <value><![CDATA[1]]></value>
1253
+ </action>
1254
+ <action>
1255
+ <action_id>set_metadata_field_related_asset_9643787310_required</action_id>
1256
+ <action_type>set_attribute_value</action_type>
1257
+ <asset>[[output://create_metadata_field_related_asset_9643787310.assetid]]</asset>
1258
+ <attribute>required</attribute>
1259
+ <value><![CDATA[0]]></value>
1260
+ </action>
1261
+ <action>
1262
+ <action_id>set_permission_9643787310_read_5</action_id>
1263
+ <action_type>set_permission</action_type>
1264
+ <asset>[[output://create_metadata_field_related_asset_9643787310.assetid]]</asset>
1265
+ <permission>1</permission>
1266
+ <granted>1</granted>
1267
+ <userid>[[system://public_user]]</userid>
1268
+ </action>
1269
+
1270
+ <action>
1271
+ <action_id>create_metadata_field_wysiwyg_5147632326</action_id>
1272
+ <action_type>create_asset</action_type>
1273
+ <type_code>metadata_field_wysiwyg</type_code>
1274
+ <link_type>2</link_type>
1275
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1276
+ <value></value>
1277
+ <is_dependant>1</is_dependant>
1278
+ <is_exclusive>0</is_exclusive>
1279
+ </action>
1280
+ <action>
1281
+ <action_id>set_metadata_field_wysiwyg_5147632326_name</action_id>
1282
+ <action_type>set_attribute_value</action_type>
1283
+ <asset>[[output://create_metadata_field_wysiwyg_5147632326.assetid]]</asset>
1284
+ <attribute>name</attribute>
1285
+ <value><![CDATA[body_text]]></value>
1286
+ </action>
1287
+ <action>
1288
+ <action_id>set_metadata_field_wysiwyg_5147632326_friendly_name</action_id>
1289
+ <action_type>set_attribute_value</action_type>
1290
+ <asset>[[output://create_metadata_field_wysiwyg_5147632326.assetid]]</asset>
1291
+ <attribute>friendly_name</attribute>
1292
+ <value><![CDATA[Body text]]></value>
1293
+ </action>
1294
+ <action>
1295
+ <action_id>set_metadata_field_wysiwyg_5147632326_default</action_id>
1296
+ <action_type>set_attribute_value</action_type>
1297
+ <asset>[[output://create_metadata_field_wysiwyg_5147632326.assetid]]</asset>
1298
+ <attribute>default</attribute>
1299
+ <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>
1300
+ </action>
1301
+ <action>
1302
+ <action_id>set_metadata_field_wysiwyg_5147632326_description</action_id>
1303
+ <action_type>set_attribute_value</action_type>
1304
+ <asset>[[output://create_metadata_field_wysiwyg_5147632326.assetid]]</asset>
1305
+ <attribute>description</attribute>
1306
+ <value><![CDATA[]]></value>
1307
+ </action>
1308
+ <action>
1309
+ <action_id>set_metadata_field_wysiwyg_5147632326_editable</action_id>
1310
+ <action_type>set_attribute_value</action_type>
1311
+ <asset>[[output://create_metadata_field_wysiwyg_5147632326.assetid]]</asset>
1312
+ <attribute>editable</attribute>
1313
+ <value><![CDATA[1]]></value>
1314
+ </action>
1315
+ <action>
1316
+ <action_id>set_metadata_field_wysiwyg_5147632326_editable</action_id>
1317
+ <action_type>set_attribute_value</action_type>
1318
+ <asset>[[output://create_metadata_field_wysiwyg_5147632326.assetid]]</asset>
1319
+ <attribute>editable</attribute>
1320
+ <value><![CDATA[1]]></value>
1321
+ </action>
1322
+ <action>
1323
+ <action_id>set_metadata_field_wysiwyg_5147632326_required</action_id>
1324
+ <action_type>set_attribute_value</action_type>
1325
+ <asset>[[output://create_metadata_field_wysiwyg_5147632326.assetid]]</asset>
1326
+ <attribute>required</attribute>
1327
+ <value><![CDATA[0]]></value>
1328
+ </action>
1329
+ <action>
1330
+ <action_id>set_permission_5147632326_read_5</action_id>
1331
+ <action_type>set_permission</action_type>
1332
+ <asset>[[output://create_metadata_field_wysiwyg_5147632326.assetid]]</asset>
1333
+ <permission>1</permission>
1334
+ <granted>1</granted>
1335
+ <userid>[[system://public_user]]</userid>
1336
+ </action>
1337
+
1338
+ <action>
1339
+ <action_id>create_metadata_field_select_3339415939</action_id>
1340
+ <action_type>create_asset</action_type>
1341
+ <type_code>metadata_field_select</type_code>
1342
+ <link_type>2</link_type>
1343
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1344
+ <value></value>
1345
+ <is_dependant>1</is_dependant>
1346
+ <is_exclusive>0</is_exclusive>
1347
+ </action>
1348
+ <action>
1349
+ <action_id>set_metadata_field_select_3339415939_name</action_id>
1350
+ <action_type>set_attribute_value</action_type>
1351
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1352
+ <attribute>name</attribute>
1353
+ <value><![CDATA[show_card_footer]]></value>
1354
+ </action>
1355
+ <action>
1356
+ <action_id>set_metadata_field_select_3339415939_friendly_name</action_id>
1357
+ <action_type>set_attribute_value</action_type>
1358
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1359
+ <attribute>friendly_name</attribute>
1360
+ <value><![CDATA[Show card footer?]]></value>
1361
+ </action>
1362
+ <action>
1363
+ <action_id>set_metadata_field_select_3339415939_default</action_id>
1364
+ <action_type>set_attribute_value</action_type>
1365
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1366
+ <attribute>default</attribute>
1367
+ <value><![CDATA[true]]></value>
1368
+ </action>
1369
+ <action>
1370
+ <action_id>set_metadata_field_select_3339415939_description</action_id>
1371
+ <action_type>set_attribute_value</action_type>
1372
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1373
+ <attribute>description</attribute>
1374
+ <value><![CDATA[]]></value>
1375
+ </action>
1376
+ <action>
1377
+ <action_id>set_metadata_field_select_3339415939_editable</action_id>
1378
+ <action_type>set_attribute_value</action_type>
1379
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1380
+ <attribute>editable</attribute>
1381
+ <value><![CDATA[1]]></value>
1382
+ </action>
1383
+ <action>
1384
+ <action_id>set_metadata_field_select_3339415939_editable</action_id>
1385
+ <action_type>set_attribute_value</action_type>
1386
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1387
+ <attribute>editable</attribute>
1388
+ <value><![CDATA[1]]></value>
1389
+ </action>
1390
+ <action>
1391
+ <action_id>set_metadata_field_select_3339415939_required</action_id>
1392
+ <action_type>set_attribute_value</action_type>
1393
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1394
+ <attribute>required</attribute>
1395
+ <value><![CDATA[0]]></value>
1396
+ </action>
1397
+ <action>
1398
+ <action_id>set_permission_3339415939_read_5</action_id>
1399
+ <action_type>set_permission</action_type>
1400
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1401
+ <permission>1</permission>
1402
+ <granted>1</granted>
1403
+ <userid>[[system://public_user]]</userid>
1404
+ </action>
1405
+
1406
+ <action>
1407
+ <action_id>set_metadata_field_select_3339415939_select_options</action_id>
1408
+ <action_type>set_attribute_value</action_type>
1409
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1410
+ <attribute>select_options</attribute>
1411
+ <value><![CDATA[array ('true' => 'Yes','false' => 'No',);]]></value>
1412
+ </action>
1413
+ <action>
1414
+ <action_id>set_{f.type}_3339415939_edit_params</action_id>
1415
+ <action_type>set_attribute_value</action_type>
1416
+ <asset>[[output://create_metadata_field_select_3339415939.assetid]]</asset>
1417
+ <attribute>edit_params</attribute>
1418
+ <value><![CDATA[array (
1419
+ 'style' => 'list',
1420
+ 'type' => 'table',
1421
+ 'height' => '',
1422
+ 'columns' => '1',
1423
+ 'empty_text' => '',
1424
+ 'extras' => '',
1425
+ );]]></value>
1426
+ </action>
1427
+
1428
+ <action>
1429
+ <action_id>create_metadata_field_related_asset_8829006202</action_id>
1430
+ <action_type>create_asset</action_type>
1431
+ <type_code>metadata_field_related_asset</type_code>
1432
+ <link_type>2</link_type>
1433
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1434
+ <value></value>
1435
+ <is_dependant>1</is_dependant>
1436
+ <is_exclusive>0</is_exclusive>
1437
+ </action>
1438
+ <action>
1439
+ <action_id>set_metadata_field_related_asset_8829006202_name</action_id>
1440
+ <action_type>set_attribute_value</action_type>
1441
+ <asset>[[output://create_metadata_field_related_asset_8829006202.assetid]]</asset>
1442
+ <attribute>name</attribute>
1443
+ <value><![CDATA[card_cta1_url]]></value>
1444
+ </action>
1445
+ <action>
1446
+ <action_id>set_metadata_field_related_asset_8829006202_friendly_name</action_id>
1447
+ <action_type>set_attribute_value</action_type>
1448
+ <asset>[[output://create_metadata_field_related_asset_8829006202.assetid]]</asset>
1449
+ <attribute>friendly_name</attribute>
1450
+ <value><![CDATA[undefined]]></value>
1451
+ </action>
1452
+ <action>
1453
+ <action_id>set_metadata_field_related_asset_8829006202_default</action_id>
1454
+ <action_type>set_attribute_value</action_type>
1455
+ <asset>[[output://create_metadata_field_related_asset_8829006202.assetid]]</asset>
1456
+ <attribute>default</attribute>
1457
+ <value><![CDATA[#]]></value>
1458
+ </action>
1459
+ <action>
1460
+ <action_id>set_metadata_field_related_asset_8829006202_description</action_id>
1461
+ <action_type>set_attribute_value</action_type>
1462
+ <asset>[[output://create_metadata_field_related_asset_8829006202.assetid]]</asset>
1463
+ <attribute>description</attribute>
1464
+ <value><![CDATA[undefined]]></value>
1465
+ </action>
1466
+ <action>
1467
+ <action_id>set_metadata_field_related_asset_8829006202_editable</action_id>
1468
+ <action_type>set_attribute_value</action_type>
1469
+ <asset>[[output://create_metadata_field_related_asset_8829006202.assetid]]</asset>
1470
+ <attribute>editable</attribute>
1471
+ <value><![CDATA[0]]></value>
1472
+ </action>
1473
+ <action>
1474
+ <action_id>set_metadata_field_related_asset_8829006202_editable</action_id>
1475
+ <action_type>set_attribute_value</action_type>
1476
+ <asset>[[output://create_metadata_field_related_asset_8829006202.assetid]]</asset>
1477
+ <attribute>editable</attribute>
1478
+ <value><![CDATA[0]]></value>
1479
+ </action>
1480
+ <action>
1481
+ <action_id>set_metadata_field_related_asset_8829006202_required</action_id>
1482
+ <action_type>set_attribute_value</action_type>
1483
+ <asset>[[output://create_metadata_field_related_asset_8829006202.assetid]]</asset>
1484
+ <attribute>required</attribute>
1485
+ <value><![CDATA[0]]></value>
1486
+ </action>
1487
+ <action>
1488
+ <action_id>set_permission_8829006202_read_5</action_id>
1489
+ <action_type>set_permission</action_type>
1490
+ <asset>[[output://create_metadata_field_related_asset_8829006202.assetid]]</asset>
1491
+ <permission>1</permission>
1492
+ <granted>1</granted>
1493
+ <userid>[[system://public_user]]</userid>
1494
+ </action>
1495
+
1496
+ <action>
1497
+ <action_id>create_metadata_field_text_3068073959</action_id>
1498
+ <action_type>create_asset</action_type>
1499
+ <type_code>metadata_field_text</type_code>
1500
+ <link_type>2</link_type>
1501
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1502
+ <value></value>
1503
+ <is_dependant>1</is_dependant>
1504
+ <is_exclusive>0</is_exclusive>
1505
+ </action>
1506
+ <action>
1507
+ <action_id>set_metadata_field_text_3068073959_name</action_id>
1508
+ <action_type>set_attribute_value</action_type>
1509
+ <asset>[[output://create_metadata_field_text_3068073959.assetid]]</asset>
1510
+ <attribute>name</attribute>
1511
+ <value><![CDATA[card_cta1_text]]></value>
1512
+ </action>
1513
+ <action>
1514
+ <action_id>set_metadata_field_text_3068073959_friendly_name</action_id>
1515
+ <action_type>set_attribute_value</action_type>
1516
+ <asset>[[output://create_metadata_field_text_3068073959.assetid]]</asset>
1517
+ <attribute>friendly_name</attribute>
1518
+ <value><![CDATA[undefined]]></value>
1519
+ </action>
1520
+ <action>
1521
+ <action_id>set_metadata_field_text_3068073959_default</action_id>
1522
+ <action_type>set_attribute_value</action_type>
1523
+ <asset>[[output://create_metadata_field_text_3068073959.assetid]]</asset>
1524
+ <attribute>default</attribute>
1525
+ <value><![CDATA[test link]]></value>
1526
+ </action>
1527
+ <action>
1528
+ <action_id>set_metadata_field_text_3068073959_description</action_id>
1529
+ <action_type>set_attribute_value</action_type>
1530
+ <asset>[[output://create_metadata_field_text_3068073959.assetid]]</asset>
1531
+ <attribute>description</attribute>
1532
+ <value><![CDATA[undefined]]></value>
1533
+ </action>
1534
+ <action>
1535
+ <action_id>set_metadata_field_text_3068073959_editable</action_id>
1536
+ <action_type>set_attribute_value</action_type>
1537
+ <asset>[[output://create_metadata_field_text_3068073959.assetid]]</asset>
1538
+ <attribute>editable</attribute>
1539
+ <value><![CDATA[0]]></value>
1540
+ </action>
1541
+ <action>
1542
+ <action_id>set_metadata_field_text_3068073959_editable</action_id>
1543
+ <action_type>set_attribute_value</action_type>
1544
+ <asset>[[output://create_metadata_field_text_3068073959.assetid]]</asset>
1545
+ <attribute>editable</attribute>
1546
+ <value><![CDATA[0]]></value>
1547
+ </action>
1548
+ <action>
1549
+ <action_id>set_metadata_field_text_3068073959_required</action_id>
1550
+ <action_type>set_attribute_value</action_type>
1551
+ <asset>[[output://create_metadata_field_text_3068073959.assetid]]</asset>
1552
+ <attribute>required</attribute>
1553
+ <value><![CDATA[0]]></value>
1554
+ </action>
1555
+ <action>
1556
+ <action_id>set_permission_3068073959_read_5</action_id>
1557
+ <action_type>set_permission</action_type>
1558
+ <asset>[[output://create_metadata_field_text_3068073959.assetid]]</asset>
1559
+ <permission>1</permission>
1560
+ <granted>1</granted>
1561
+ <userid>[[system://public_user]]</userid>
1562
+ </action>
1563
+
1564
+ <action>
1565
+ <action_id>create_metadata_field_text_1369711829</action_id>
1566
+ <action_type>create_asset</action_type>
1567
+ <type_code>metadata_field_text</type_code>
1568
+ <link_type>2</link_type>
1569
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1570
+ <value></value>
1571
+ <is_dependant>1</is_dependant>
1572
+ <is_exclusive>0</is_exclusive>
1573
+ </action>
1574
+ <action>
1575
+ <action_id>set_metadata_field_text_1369711829_name</action_id>
1576
+ <action_type>set_attribute_value</action_type>
1577
+ <asset>[[output://create_metadata_field_text_1369711829.assetid]]</asset>
1578
+ <attribute>name</attribute>
1579
+ <value><![CDATA[card_cta1_icon]]></value>
1580
+ </action>
1581
+ <action>
1582
+ <action_id>set_metadata_field_text_1369711829_friendly_name</action_id>
1583
+ <action_type>set_attribute_value</action_type>
1584
+ <asset>[[output://create_metadata_field_text_1369711829.assetid]]</asset>
1585
+ <attribute>friendly_name</attribute>
1586
+ <value><![CDATA[undefined]]></value>
1587
+ </action>
1588
+ <action>
1589
+ <action_id>set_metadata_field_text_1369711829_default</action_id>
1590
+ <action_type>set_attribute_value</action_type>
1591
+ <asset>[[output://create_metadata_field_text_1369711829.assetid]]</asset>
1592
+ <attribute>default</attribute>
1593
+ <value><![CDATA[fal fa-pencil-ruler]]></value>
1594
+ </action>
1595
+ <action>
1596
+ <action_id>set_metadata_field_text_1369711829_description</action_id>
1597
+ <action_type>set_attribute_value</action_type>
1598
+ <asset>[[output://create_metadata_field_text_1369711829.assetid]]</asset>
1599
+ <attribute>description</attribute>
1600
+ <value><![CDATA[undefined]]></value>
1601
+ </action>
1602
+ <action>
1603
+ <action_id>set_metadata_field_text_1369711829_editable</action_id>
1604
+ <action_type>set_attribute_value</action_type>
1605
+ <asset>[[output://create_metadata_field_text_1369711829.assetid]]</asset>
1606
+ <attribute>editable</attribute>
1607
+ <value><![CDATA[0]]></value>
1608
+ </action>
1609
+ <action>
1610
+ <action_id>set_metadata_field_text_1369711829_editable</action_id>
1611
+ <action_type>set_attribute_value</action_type>
1612
+ <asset>[[output://create_metadata_field_text_1369711829.assetid]]</asset>
1613
+ <attribute>editable</attribute>
1614
+ <value><![CDATA[0]]></value>
1615
+ </action>
1616
+ <action>
1617
+ <action_id>set_metadata_field_text_1369711829_required</action_id>
1618
+ <action_type>set_attribute_value</action_type>
1619
+ <asset>[[output://create_metadata_field_text_1369711829.assetid]]</asset>
1620
+ <attribute>required</attribute>
1621
+ <value><![CDATA[0]]></value>
1622
+ </action>
1623
+ <action>
1624
+ <action_id>set_permission_1369711829_read_5</action_id>
1625
+ <action_type>set_permission</action_type>
1626
+ <asset>[[output://create_metadata_field_text_1369711829.assetid]]</asset>
1627
+ <permission>1</permission>
1628
+ <granted>1</granted>
1629
+ <userid>[[system://public_user]]</userid>
1630
+ </action>
1631
+
1632
+ <action>
1633
+ <action_id>create_metadata_field_related_asset_6629714687</action_id>
1634
+ <action_type>create_asset</action_type>
1635
+ <type_code>metadata_field_related_asset</type_code>
1636
+ <link_type>2</link_type>
1637
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1638
+ <value></value>
1639
+ <is_dependant>1</is_dependant>
1640
+ <is_exclusive>0</is_exclusive>
1641
+ </action>
1642
+ <action>
1643
+ <action_id>set_metadata_field_related_asset_6629714687_name</action_id>
1644
+ <action_type>set_attribute_value</action_type>
1645
+ <asset>[[output://create_metadata_field_related_asset_6629714687.assetid]]</asset>
1646
+ <attribute>name</attribute>
1647
+ <value><![CDATA[card_cta2_url]]></value>
1648
+ </action>
1649
+ <action>
1650
+ <action_id>set_metadata_field_related_asset_6629714687_friendly_name</action_id>
1651
+ <action_type>set_attribute_value</action_type>
1652
+ <asset>[[output://create_metadata_field_related_asset_6629714687.assetid]]</asset>
1653
+ <attribute>friendly_name</attribute>
1654
+ <value><![CDATA[undefined]]></value>
1655
+ </action>
1656
+ <action>
1657
+ <action_id>set_metadata_field_related_asset_6629714687_default</action_id>
1658
+ <action_type>set_attribute_value</action_type>
1659
+ <asset>[[output://create_metadata_field_related_asset_6629714687.assetid]]</asset>
1660
+ <attribute>default</attribute>
1661
+ <value><![CDATA[#]]></value>
1662
+ </action>
1663
+ <action>
1664
+ <action_id>set_metadata_field_related_asset_6629714687_description</action_id>
1665
+ <action_type>set_attribute_value</action_type>
1666
+ <asset>[[output://create_metadata_field_related_asset_6629714687.assetid]]</asset>
1667
+ <attribute>description</attribute>
1668
+ <value><![CDATA[undefined]]></value>
1669
+ </action>
1670
+ <action>
1671
+ <action_id>set_metadata_field_related_asset_6629714687_editable</action_id>
1672
+ <action_type>set_attribute_value</action_type>
1673
+ <asset>[[output://create_metadata_field_related_asset_6629714687.assetid]]</asset>
1674
+ <attribute>editable</attribute>
1675
+ <value><![CDATA[0]]></value>
1676
+ </action>
1677
+ <action>
1678
+ <action_id>set_metadata_field_related_asset_6629714687_editable</action_id>
1679
+ <action_type>set_attribute_value</action_type>
1680
+ <asset>[[output://create_metadata_field_related_asset_6629714687.assetid]]</asset>
1681
+ <attribute>editable</attribute>
1682
+ <value><![CDATA[0]]></value>
1683
+ </action>
1684
+ <action>
1685
+ <action_id>set_metadata_field_related_asset_6629714687_required</action_id>
1686
+ <action_type>set_attribute_value</action_type>
1687
+ <asset>[[output://create_metadata_field_related_asset_6629714687.assetid]]</asset>
1688
+ <attribute>required</attribute>
1689
+ <value><![CDATA[0]]></value>
1690
+ </action>
1691
+ <action>
1692
+ <action_id>set_permission_6629714687_read_5</action_id>
1693
+ <action_type>set_permission</action_type>
1694
+ <asset>[[output://create_metadata_field_related_asset_6629714687.assetid]]</asset>
1695
+ <permission>1</permission>
1696
+ <granted>1</granted>
1697
+ <userid>[[system://public_user]]</userid>
1698
+ </action>
1699
+
1700
+ <action>
1701
+ <action_id>create_metadata_field_text_908869048</action_id>
1702
+ <action_type>create_asset</action_type>
1703
+ <type_code>metadata_field_text</type_code>
1704
+ <link_type>2</link_type>
1705
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1706
+ <value></value>
1707
+ <is_dependant>1</is_dependant>
1708
+ <is_exclusive>0</is_exclusive>
1709
+ </action>
1710
+ <action>
1711
+ <action_id>set_metadata_field_text_908869048_name</action_id>
1712
+ <action_type>set_attribute_value</action_type>
1713
+ <asset>[[output://create_metadata_field_text_908869048.assetid]]</asset>
1714
+ <attribute>name</attribute>
1715
+ <value><![CDATA[card_cta2_text]]></value>
1716
+ </action>
1717
+ <action>
1718
+ <action_id>set_metadata_field_text_908869048_friendly_name</action_id>
1719
+ <action_type>set_attribute_value</action_type>
1720
+ <asset>[[output://create_metadata_field_text_908869048.assetid]]</asset>
1721
+ <attribute>friendly_name</attribute>
1722
+ <value><![CDATA[undefined]]></value>
1723
+ </action>
1724
+ <action>
1725
+ <action_id>set_metadata_field_text_908869048_default</action_id>
1726
+ <action_type>set_attribute_value</action_type>
1727
+ <asset>[[output://create_metadata_field_text_908869048.assetid]]</asset>
1728
+ <attribute>default</attribute>
1729
+ <value><![CDATA[test link]]></value>
1730
+ </action>
1731
+ <action>
1732
+ <action_id>set_metadata_field_text_908869048_description</action_id>
1733
+ <action_type>set_attribute_value</action_type>
1734
+ <asset>[[output://create_metadata_field_text_908869048.assetid]]</asset>
1735
+ <attribute>description</attribute>
1736
+ <value><![CDATA[undefined]]></value>
1737
+ </action>
1738
+ <action>
1739
+ <action_id>set_metadata_field_text_908869048_editable</action_id>
1740
+ <action_type>set_attribute_value</action_type>
1741
+ <asset>[[output://create_metadata_field_text_908869048.assetid]]</asset>
1742
+ <attribute>editable</attribute>
1743
+ <value><![CDATA[0]]></value>
1744
+ </action>
1745
+ <action>
1746
+ <action_id>set_metadata_field_text_908869048_editable</action_id>
1747
+ <action_type>set_attribute_value</action_type>
1748
+ <asset>[[output://create_metadata_field_text_908869048.assetid]]</asset>
1749
+ <attribute>editable</attribute>
1750
+ <value><![CDATA[0]]></value>
1751
+ </action>
1752
+ <action>
1753
+ <action_id>set_metadata_field_text_908869048_required</action_id>
1754
+ <action_type>set_attribute_value</action_type>
1755
+ <asset>[[output://create_metadata_field_text_908869048.assetid]]</asset>
1756
+ <attribute>required</attribute>
1757
+ <value><![CDATA[0]]></value>
1758
+ </action>
1759
+ <action>
1760
+ <action_id>set_permission_908869048_read_5</action_id>
1761
+ <action_type>set_permission</action_type>
1762
+ <asset>[[output://create_metadata_field_text_908869048.assetid]]</asset>
1763
+ <permission>1</permission>
1764
+ <granted>1</granted>
1765
+ <userid>[[system://public_user]]</userid>
1766
+ </action>
1767
+
1768
+ <action>
1769
+ <action_id>create_metadata_field_text_2452015281</action_id>
1770
+ <action_type>create_asset</action_type>
1771
+ <type_code>metadata_field_text</type_code>
1772
+ <link_type>2</link_type>
1773
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1774
+ <value></value>
1775
+ <is_dependant>1</is_dependant>
1776
+ <is_exclusive>0</is_exclusive>
1777
+ </action>
1778
+ <action>
1779
+ <action_id>set_metadata_field_text_2452015281_name</action_id>
1780
+ <action_type>set_attribute_value</action_type>
1781
+ <asset>[[output://create_metadata_field_text_2452015281.assetid]]</asset>
1782
+ <attribute>name</attribute>
1783
+ <value><![CDATA[card_cta2_icon]]></value>
1784
+ </action>
1785
+ <action>
1786
+ <action_id>set_metadata_field_text_2452015281_friendly_name</action_id>
1787
+ <action_type>set_attribute_value</action_type>
1788
+ <asset>[[output://create_metadata_field_text_2452015281.assetid]]</asset>
1789
+ <attribute>friendly_name</attribute>
1790
+ <value><![CDATA[undefined]]></value>
1791
+ </action>
1792
+ <action>
1793
+ <action_id>set_metadata_field_text_2452015281_default</action_id>
1794
+ <action_type>set_attribute_value</action_type>
1795
+ <asset>[[output://create_metadata_field_text_2452015281.assetid]]</asset>
1796
+ <attribute>default</attribute>
1797
+ <value><![CDATA[fal fa-pencil-ruler]]></value>
1798
+ </action>
1799
+ <action>
1800
+ <action_id>set_metadata_field_text_2452015281_description</action_id>
1801
+ <action_type>set_attribute_value</action_type>
1802
+ <asset>[[output://create_metadata_field_text_2452015281.assetid]]</asset>
1803
+ <attribute>description</attribute>
1804
+ <value><![CDATA[undefined]]></value>
1805
+ </action>
1806
+ <action>
1807
+ <action_id>set_metadata_field_text_2452015281_editable</action_id>
1808
+ <action_type>set_attribute_value</action_type>
1809
+ <asset>[[output://create_metadata_field_text_2452015281.assetid]]</asset>
1810
+ <attribute>editable</attribute>
1811
+ <value><![CDATA[0]]></value>
1812
+ </action>
1813
+ <action>
1814
+ <action_id>set_metadata_field_text_2452015281_editable</action_id>
1815
+ <action_type>set_attribute_value</action_type>
1816
+ <asset>[[output://create_metadata_field_text_2452015281.assetid]]</asset>
1817
+ <attribute>editable</attribute>
1818
+ <value><![CDATA[0]]></value>
1819
+ </action>
1820
+ <action>
1821
+ <action_id>set_metadata_field_text_2452015281_required</action_id>
1822
+ <action_type>set_attribute_value</action_type>
1823
+ <asset>[[output://create_metadata_field_text_2452015281.assetid]]</asset>
1824
+ <attribute>required</attribute>
1825
+ <value><![CDATA[0]]></value>
1826
+ </action>
1827
+ <action>
1828
+ <action_id>set_permission_2452015281_read_5</action_id>
1829
+ <action_type>set_permission</action_type>
1830
+ <asset>[[output://create_metadata_field_text_2452015281.assetid]]</asset>
1831
+ <permission>1</permission>
1832
+ <granted>1</granted>
1833
+ <userid>[[system://public_user]]</userid>
1834
+ </action>
1835
+
1836
+ <action>
1837
+ <action_id>create_metadata_field_related_asset_6922085996</action_id>
1838
+ <action_type>create_asset</action_type>
1839
+ <type_code>metadata_field_related_asset</type_code>
1840
+ <link_type>2</link_type>
1841
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1842
+ <value></value>
1843
+ <is_dependant>1</is_dependant>
1844
+ <is_exclusive>0</is_exclusive>
1845
+ </action>
1846
+ <action>
1847
+ <action_id>set_metadata_field_related_asset_6922085996_name</action_id>
1848
+ <action_type>set_attribute_value</action_type>
1849
+ <asset>[[output://create_metadata_field_related_asset_6922085996.assetid]]</asset>
1850
+ <attribute>name</attribute>
1851
+ <value><![CDATA[card_cta3_url]]></value>
1852
+ </action>
1853
+ <action>
1854
+ <action_id>set_metadata_field_related_asset_6922085996_friendly_name</action_id>
1855
+ <action_type>set_attribute_value</action_type>
1856
+ <asset>[[output://create_metadata_field_related_asset_6922085996.assetid]]</asset>
1857
+ <attribute>friendly_name</attribute>
1858
+ <value><![CDATA[undefined]]></value>
1859
+ </action>
1860
+ <action>
1861
+ <action_id>set_metadata_field_related_asset_6922085996_default</action_id>
1862
+ <action_type>set_attribute_value</action_type>
1863
+ <asset>[[output://create_metadata_field_related_asset_6922085996.assetid]]</asset>
1864
+ <attribute>default</attribute>
1865
+ <value><![CDATA[#]]></value>
1866
+ </action>
1867
+ <action>
1868
+ <action_id>set_metadata_field_related_asset_6922085996_description</action_id>
1869
+ <action_type>set_attribute_value</action_type>
1870
+ <asset>[[output://create_metadata_field_related_asset_6922085996.assetid]]</asset>
1871
+ <attribute>description</attribute>
1872
+ <value><![CDATA[undefined]]></value>
1873
+ </action>
1874
+ <action>
1875
+ <action_id>set_metadata_field_related_asset_6922085996_editable</action_id>
1876
+ <action_type>set_attribute_value</action_type>
1877
+ <asset>[[output://create_metadata_field_related_asset_6922085996.assetid]]</asset>
1878
+ <attribute>editable</attribute>
1879
+ <value><![CDATA[0]]></value>
1880
+ </action>
1881
+ <action>
1882
+ <action_id>set_metadata_field_related_asset_6922085996_editable</action_id>
1883
+ <action_type>set_attribute_value</action_type>
1884
+ <asset>[[output://create_metadata_field_related_asset_6922085996.assetid]]</asset>
1885
+ <attribute>editable</attribute>
1886
+ <value><![CDATA[0]]></value>
1887
+ </action>
1888
+ <action>
1889
+ <action_id>set_metadata_field_related_asset_6922085996_required</action_id>
1890
+ <action_type>set_attribute_value</action_type>
1891
+ <asset>[[output://create_metadata_field_related_asset_6922085996.assetid]]</asset>
1892
+ <attribute>required</attribute>
1893
+ <value><![CDATA[0]]></value>
1894
+ </action>
1895
+ <action>
1896
+ <action_id>set_permission_6922085996_read_5</action_id>
1897
+ <action_type>set_permission</action_type>
1898
+ <asset>[[output://create_metadata_field_related_asset_6922085996.assetid]]</asset>
1899
+ <permission>1</permission>
1900
+ <granted>1</granted>
1901
+ <userid>[[system://public_user]]</userid>
1902
+ </action>
1903
+
1904
+ <action>
1905
+ <action_id>create_metadata_field_text_898684975</action_id>
1906
+ <action_type>create_asset</action_type>
1907
+ <type_code>metadata_field_text</type_code>
1908
+ <link_type>2</link_type>
1909
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1910
+ <value></value>
1911
+ <is_dependant>1</is_dependant>
1912
+ <is_exclusive>0</is_exclusive>
1913
+ </action>
1914
+ <action>
1915
+ <action_id>set_metadata_field_text_898684975_name</action_id>
1916
+ <action_type>set_attribute_value</action_type>
1917
+ <asset>[[output://create_metadata_field_text_898684975.assetid]]</asset>
1918
+ <attribute>name</attribute>
1919
+ <value><![CDATA[card_cta3_text]]></value>
1920
+ </action>
1921
+ <action>
1922
+ <action_id>set_metadata_field_text_898684975_friendly_name</action_id>
1923
+ <action_type>set_attribute_value</action_type>
1924
+ <asset>[[output://create_metadata_field_text_898684975.assetid]]</asset>
1925
+ <attribute>friendly_name</attribute>
1926
+ <value><![CDATA[undefined]]></value>
1927
+ </action>
1928
+ <action>
1929
+ <action_id>set_metadata_field_text_898684975_default</action_id>
1930
+ <action_type>set_attribute_value</action_type>
1931
+ <asset>[[output://create_metadata_field_text_898684975.assetid]]</asset>
1932
+ <attribute>default</attribute>
1933
+ <value><![CDATA[test link]]></value>
1934
+ </action>
1935
+ <action>
1936
+ <action_id>set_metadata_field_text_898684975_description</action_id>
1937
+ <action_type>set_attribute_value</action_type>
1938
+ <asset>[[output://create_metadata_field_text_898684975.assetid]]</asset>
1939
+ <attribute>description</attribute>
1940
+ <value><![CDATA[undefined]]></value>
1941
+ </action>
1942
+ <action>
1943
+ <action_id>set_metadata_field_text_898684975_editable</action_id>
1944
+ <action_type>set_attribute_value</action_type>
1945
+ <asset>[[output://create_metadata_field_text_898684975.assetid]]</asset>
1946
+ <attribute>editable</attribute>
1947
+ <value><![CDATA[0]]></value>
1948
+ </action>
1949
+ <action>
1950
+ <action_id>set_metadata_field_text_898684975_editable</action_id>
1951
+ <action_type>set_attribute_value</action_type>
1952
+ <asset>[[output://create_metadata_field_text_898684975.assetid]]</asset>
1953
+ <attribute>editable</attribute>
1954
+ <value><![CDATA[0]]></value>
1955
+ </action>
1956
+ <action>
1957
+ <action_id>set_metadata_field_text_898684975_required</action_id>
1958
+ <action_type>set_attribute_value</action_type>
1959
+ <asset>[[output://create_metadata_field_text_898684975.assetid]]</asset>
1960
+ <attribute>required</attribute>
1961
+ <value><![CDATA[0]]></value>
1962
+ </action>
1963
+ <action>
1964
+ <action_id>set_permission_898684975_read_5</action_id>
1965
+ <action_type>set_permission</action_type>
1966
+ <asset>[[output://create_metadata_field_text_898684975.assetid]]</asset>
1967
+ <permission>1</permission>
1968
+ <granted>1</granted>
1969
+ <userid>[[system://public_user]]</userid>
1970
+ </action>
1971
+
1972
+ <action>
1973
+ <action_id>create_metadata_field_text_6831853430</action_id>
1974
+ <action_type>create_asset</action_type>
1975
+ <type_code>metadata_field_text</type_code>
1976
+ <link_type>2</link_type>
1977
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
1978
+ <value></value>
1979
+ <is_dependant>1</is_dependant>
1980
+ <is_exclusive>0</is_exclusive>
1981
+ </action>
1982
+ <action>
1983
+ <action_id>set_metadata_field_text_6831853430_name</action_id>
1984
+ <action_type>set_attribute_value</action_type>
1985
+ <asset>[[output://create_metadata_field_text_6831853430.assetid]]</asset>
1986
+ <attribute>name</attribute>
1987
+ <value><![CDATA[card_cta3_icon]]></value>
1988
+ </action>
1989
+ <action>
1990
+ <action_id>set_metadata_field_text_6831853430_friendly_name</action_id>
1991
+ <action_type>set_attribute_value</action_type>
1992
+ <asset>[[output://create_metadata_field_text_6831853430.assetid]]</asset>
1993
+ <attribute>friendly_name</attribute>
1994
+ <value><![CDATA[undefined]]></value>
1995
+ </action>
1996
+ <action>
1997
+ <action_id>set_metadata_field_text_6831853430_default</action_id>
1998
+ <action_type>set_attribute_value</action_type>
1999
+ <asset>[[output://create_metadata_field_text_6831853430.assetid]]</asset>
2000
+ <attribute>default</attribute>
2001
+ <value><![CDATA[fal fa-pencil-ruler]]></value>
2002
+ </action>
2003
+ <action>
2004
+ <action_id>set_metadata_field_text_6831853430_description</action_id>
2005
+ <action_type>set_attribute_value</action_type>
2006
+ <asset>[[output://create_metadata_field_text_6831853430.assetid]]</asset>
2007
+ <attribute>description</attribute>
2008
+ <value><![CDATA[undefined]]></value>
2009
+ </action>
2010
+ <action>
2011
+ <action_id>set_metadata_field_text_6831853430_editable</action_id>
2012
+ <action_type>set_attribute_value</action_type>
2013
+ <asset>[[output://create_metadata_field_text_6831853430.assetid]]</asset>
2014
+ <attribute>editable</attribute>
2015
+ <value><![CDATA[0]]></value>
2016
+ </action>
2017
+ <action>
2018
+ <action_id>set_metadata_field_text_6831853430_editable</action_id>
2019
+ <action_type>set_attribute_value</action_type>
2020
+ <asset>[[output://create_metadata_field_text_6831853430.assetid]]</asset>
2021
+ <attribute>editable</attribute>
2022
+ <value><![CDATA[0]]></value>
2023
+ </action>
2024
+ <action>
2025
+ <action_id>set_metadata_field_text_6831853430_required</action_id>
2026
+ <action_type>set_attribute_value</action_type>
2027
+ <asset>[[output://create_metadata_field_text_6831853430.assetid]]</asset>
2028
+ <attribute>required</attribute>
2029
+ <value><![CDATA[0]]></value>
2030
+ </action>
2031
+ <action>
2032
+ <action_id>set_permission_6831853430_read_5</action_id>
2033
+ <action_type>set_permission</action_type>
2034
+ <asset>[[output://create_metadata_field_text_6831853430.assetid]]</asset>
2035
+ <permission>1</permission>
2036
+ <granted>1</granted>
2037
+ <userid>[[system://public_user]]</userid>
2038
+ </action>
2039
+
2040
+ <action>
2041
+ <action_id>create_metadata_field_text_3512655347</action_id>
2042
+ <action_type>create_asset</action_type>
2043
+ <type_code>metadata_field_text</type_code>
2044
+ <link_type>2</link_type>
2045
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
2046
+ <value></value>
2047
+ <is_dependant>1</is_dependant>
2048
+ <is_exclusive>0</is_exclusive>
2049
+ </action>
2050
+ <action>
2051
+ <action_id>set_metadata_field_text_3512655347_name</action_id>
2052
+ <action_type>set_attribute_value</action_type>
2053
+ <asset>[[output://create_metadata_field_text_3512655347.assetid]]</asset>
2054
+ <attribute>name</attribute>
2055
+ <value><![CDATA[all_link_name]]></value>
2056
+ </action>
2057
+ <action>
2058
+ <action_id>set_metadata_field_text_3512655347_friendly_name</action_id>
2059
+ <action_type>set_attribute_value</action_type>
2060
+ <asset>[[output://create_metadata_field_text_3512655347.assetid]]</asset>
2061
+ <attribute>friendly_name</attribute>
2062
+ <value><![CDATA[Footer link name]]></value>
2063
+ </action>
2064
+ <action>
2065
+ <action_id>set_metadata_field_text_3512655347_default</action_id>
2066
+ <action_type>set_attribute_value</action_type>
2067
+ <asset>[[output://create_metadata_field_text_3512655347.assetid]]</asset>
2068
+ <attribute>default</attribute>
2069
+ <value><![CDATA[All cards]]></value>
2070
+ </action>
2071
+ <action>
2072
+ <action_id>set_metadata_field_text_3512655347_description</action_id>
2073
+ <action_type>set_attribute_value</action_type>
2074
+ <asset>[[output://create_metadata_field_text_3512655347.assetid]]</asset>
2075
+ <attribute>description</attribute>
2076
+ <value><![CDATA[]]></value>
2077
+ </action>
2078
+ <action>
2079
+ <action_id>set_metadata_field_text_3512655347_editable</action_id>
2080
+ <action_type>set_attribute_value</action_type>
2081
+ <asset>[[output://create_metadata_field_text_3512655347.assetid]]</asset>
2082
+ <attribute>editable</attribute>
2083
+ <value><![CDATA[1]]></value>
2084
+ </action>
2085
+ <action>
2086
+ <action_id>set_metadata_field_text_3512655347_editable</action_id>
2087
+ <action_type>set_attribute_value</action_type>
2088
+ <asset>[[output://create_metadata_field_text_3512655347.assetid]]</asset>
2089
+ <attribute>editable</attribute>
2090
+ <value><![CDATA[1]]></value>
2091
+ </action>
2092
+ <action>
2093
+ <action_id>set_metadata_field_text_3512655347_required</action_id>
2094
+ <action_type>set_attribute_value</action_type>
2095
+ <asset>[[output://create_metadata_field_text_3512655347.assetid]]</asset>
2096
+ <attribute>required</attribute>
2097
+ <value><![CDATA[0]]></value>
2098
+ </action>
2099
+ <action>
2100
+ <action_id>set_permission_3512655347_read_5</action_id>
2101
+ <action_type>set_permission</action_type>
2102
+ <asset>[[output://create_metadata_field_text_3512655347.assetid]]</asset>
2103
+ <permission>1</permission>
2104
+ <granted>1</granted>
2105
+ <userid>[[system://public_user]]</userid>
2106
+ </action>
2107
+
2108
+ <action>
2109
+ <action_id>create_metadata_field_related_asset_7068231422</action_id>
2110
+ <action_type>create_asset</action_type>
2111
+ <type_code>metadata_field_related_asset</type_code>
2112
+ <link_type>2</link_type>
2113
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
2114
+ <value></value>
2115
+ <is_dependant>1</is_dependant>
2116
+ <is_exclusive>0</is_exclusive>
2117
+ </action>
2118
+ <action>
2119
+ <action_id>set_metadata_field_related_asset_7068231422_name</action_id>
2120
+ <action_type>set_attribute_value</action_type>
2121
+ <asset>[[output://create_metadata_field_related_asset_7068231422.assetid]]</asset>
2122
+ <attribute>name</attribute>
2123
+ <value><![CDATA[all_link]]></value>
2124
+ </action>
2125
+ <action>
2126
+ <action_id>set_metadata_field_related_asset_7068231422_friendly_name</action_id>
2127
+ <action_type>set_attribute_value</action_type>
2128
+ <asset>[[output://create_metadata_field_related_asset_7068231422.assetid]]</asset>
2129
+ <attribute>friendly_name</attribute>
2130
+ <value><![CDATA[Footer link]]></value>
2131
+ </action>
2132
+ <action>
2133
+ <action_id>set_metadata_field_related_asset_7068231422_default</action_id>
2134
+ <action_type>set_attribute_value</action_type>
2135
+ <asset>[[output://create_metadata_field_related_asset_7068231422.assetid]]</asset>
2136
+ <attribute>default</attribute>
2137
+ <value><![CDATA[#]]></value>
2138
+ </action>
2139
+ <action>
2140
+ <action_id>set_metadata_field_related_asset_7068231422_description</action_id>
2141
+ <action_type>set_attribute_value</action_type>
2142
+ <asset>[[output://create_metadata_field_related_asset_7068231422.assetid]]</asset>
2143
+ <attribute>description</attribute>
2144
+ <value><![CDATA[]]></value>
2145
+ </action>
2146
+ <action>
2147
+ <action_id>set_metadata_field_related_asset_7068231422_editable</action_id>
2148
+ <action_type>set_attribute_value</action_type>
2149
+ <asset>[[output://create_metadata_field_related_asset_7068231422.assetid]]</asset>
2150
+ <attribute>editable</attribute>
2151
+ <value><![CDATA[1]]></value>
2152
+ </action>
2153
+ <action>
2154
+ <action_id>set_metadata_field_related_asset_7068231422_editable</action_id>
2155
+ <action_type>set_attribute_value</action_type>
2156
+ <asset>[[output://create_metadata_field_related_asset_7068231422.assetid]]</asset>
2157
+ <attribute>editable</attribute>
2158
+ <value><![CDATA[1]]></value>
2159
+ </action>
2160
+ <action>
2161
+ <action_id>set_metadata_field_related_asset_7068231422_required</action_id>
2162
+ <action_type>set_attribute_value</action_type>
2163
+ <asset>[[output://create_metadata_field_related_asset_7068231422.assetid]]</asset>
2164
+ <attribute>required</attribute>
2165
+ <value><![CDATA[0]]></value>
2166
+ </action>
2167
+ <action>
2168
+ <action_id>set_permission_7068231422_read_5</action_id>
2169
+ <action_type>set_permission</action_type>
2170
+ <asset>[[output://create_metadata_field_related_asset_7068231422.assetid]]</asset>
2171
+ <permission>1</permission>
2172
+ <granted>1</granted>
2173
+ <userid>[[system://public_user]]</userid>
2174
+ </action>
2175
+
2176
+ <action>
2177
+ <action_id>create_metadata_field_select_950807283</action_id>
2178
+ <action_type>create_asset</action_type>
2179
+ <type_code>metadata_field_select</type_code>
2180
+ <link_type>2</link_type>
2181
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
2182
+ <value></value>
2183
+ <is_dependant>1</is_dependant>
2184
+ <is_exclusive>0</is_exclusive>
2185
+ </action>
2186
+ <action>
2187
+ <action_id>set_metadata_field_select_950807283_name</action_id>
2188
+ <action_type>set_attribute_value</action_type>
2189
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2190
+ <attribute>name</attribute>
2191
+ <value><![CDATA[col_width]]></value>
2192
+ </action>
2193
+ <action>
2194
+ <action_id>set_metadata_field_select_950807283_friendly_name</action_id>
2195
+ <action_type>set_attribute_value</action_type>
2196
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2197
+ <attribute>friendly_name</attribute>
2198
+ <value><![CDATA[Number of columns]]></value>
2199
+ </action>
2200
+ <action>
2201
+ <action_id>set_metadata_field_select_950807283_default</action_id>
2202
+ <action_type>set_attribute_value</action_type>
2203
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2204
+ <attribute>default</attribute>
2205
+ <value><![CDATA[col-xs-12]]></value>
2206
+ </action>
2207
+ <action>
2208
+ <action_id>set_metadata_field_select_950807283_description</action_id>
2209
+ <action_type>set_attribute_value</action_type>
2210
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2211
+ <attribute>description</attribute>
2212
+ <value><![CDATA[]]></value>
2213
+ </action>
2214
+ <action>
2215
+ <action_id>set_metadata_field_select_950807283_editable</action_id>
2216
+ <action_type>set_attribute_value</action_type>
2217
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2218
+ <attribute>editable</attribute>
2219
+ <value><![CDATA[1]]></value>
2220
+ </action>
2221
+ <action>
2222
+ <action_id>set_metadata_field_select_950807283_editable</action_id>
2223
+ <action_type>set_attribute_value</action_type>
2224
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2225
+ <attribute>editable</attribute>
2226
+ <value><![CDATA[1]]></value>
2227
+ </action>
2228
+ <action>
2229
+ <action_id>set_metadata_field_select_950807283_required</action_id>
2230
+ <action_type>set_attribute_value</action_type>
2231
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2232
+ <attribute>required</attribute>
2233
+ <value><![CDATA[0]]></value>
2234
+ </action>
2235
+ <action>
2236
+ <action_id>set_permission_950807283_read_5</action_id>
2237
+ <action_type>set_permission</action_type>
2238
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2239
+ <permission>1</permission>
2240
+ <granted>1</granted>
2241
+ <userid>[[system://public_user]]</userid>
2242
+ </action>
2243
+
2244
+ <action>
2245
+ <action_id>set_metadata_field_select_950807283_select_options</action_id>
2246
+ <action_type>set_attribute_value</action_type>
2247
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2248
+ <attribute>select_options</attribute>
2249
+ <value><![CDATA[array ('col-xs-12' => 'One','col-lg-6' => 'Two','col-lg-4' => 'Three','col-lg-3' => 'Four',);]]></value>
2250
+ </action>
2251
+ <action>
2252
+ <action_id>set_{f.type}_950807283_edit_params</action_id>
2253
+ <action_type>set_attribute_value</action_type>
2254
+ <asset>[[output://create_metadata_field_select_950807283.assetid]]</asset>
2255
+ <attribute>edit_params</attribute>
2256
+ <value><![CDATA[array (
2257
+ 'style' => 'list',
2258
+ 'type' => 'table',
2259
+ 'height' => '',
2260
+ 'columns' => '1',
2261
+ 'empty_text' => '',
2262
+ 'extras' => '',
2263
+ );]]></value>
2264
+ </action>
2265
+
2266
+ <action>
2267
+ <action_id>create_metadata_field_select_657289048</action_id>
2268
+ <action_type>create_asset</action_type>
2269
+ <type_code>metadata_field_select</type_code>
2270
+ <link_type>2</link_type>
2271
+ <parentid>[[output://create_Metadata_Section_7323585693.assetid]]</parentid>
2272
+ <value></value>
2273
+ <is_dependant>1</is_dependant>
2274
+ <is_exclusive>0</is_exclusive>
2275
+ </action>
2276
+ <action>
2277
+ <action_id>set_metadata_field_select_657289048_name</action_id>
2278
+ <action_type>set_attribute_value</action_type>
2279
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2280
+ <attribute>name</attribute>
2281
+ <value><![CDATA[show_arrow]]></value>
2282
+ </action>
2283
+ <action>
2284
+ <action_id>set_metadata_field_select_657289048_friendly_name</action_id>
2285
+ <action_type>set_attribute_value</action_type>
2286
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2287
+ <attribute>friendly_name</attribute>
2288
+ <value><![CDATA[Show card arrow?]]></value>
2289
+ </action>
2290
+ <action>
2291
+ <action_id>set_metadata_field_select_657289048_default</action_id>
2292
+ <action_type>set_attribute_value</action_type>
2293
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2294
+ <attribute>default</attribute>
2295
+ <value><![CDATA[false]]></value>
2296
+ </action>
2297
+ <action>
2298
+ <action_id>set_metadata_field_select_657289048_description</action_id>
2299
+ <action_type>set_attribute_value</action_type>
2300
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2301
+ <attribute>description</attribute>
2302
+ <value><![CDATA[]]></value>
2303
+ </action>
2304
+ <action>
2305
+ <action_id>set_metadata_field_select_657289048_editable</action_id>
2306
+ <action_type>set_attribute_value</action_type>
2307
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2308
+ <attribute>editable</attribute>
2309
+ <value><![CDATA[1]]></value>
2310
+ </action>
2311
+ <action>
2312
+ <action_id>set_metadata_field_select_657289048_editable</action_id>
2313
+ <action_type>set_attribute_value</action_type>
2314
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2315
+ <attribute>editable</attribute>
2316
+ <value><![CDATA[1]]></value>
2317
+ </action>
2318
+ <action>
2319
+ <action_id>set_metadata_field_select_657289048_required</action_id>
2320
+ <action_type>set_attribute_value</action_type>
2321
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2322
+ <attribute>required</attribute>
2323
+ <value><![CDATA[0]]></value>
2324
+ </action>
2325
+ <action>
2326
+ <action_id>set_permission_657289048_read_5</action_id>
2327
+ <action_type>set_permission</action_type>
2328
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2329
+ <permission>1</permission>
2330
+ <granted>1</granted>
2331
+ <userid>[[system://public_user]]</userid>
2332
+ </action>
2333
+
2334
+ <action>
2335
+ <action_id>set_metadata_field_select_657289048_select_options</action_id>
2336
+ <action_type>set_attribute_value</action_type>
2337
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2338
+ <attribute>select_options</attribute>
2339
+ <value><![CDATA[array ('true' => 'True','false' => 'False',);]]></value>
2340
+ </action>
2341
+ <action>
2342
+ <action_id>set_{f.type}_657289048_edit_params</action_id>
2343
+ <action_type>set_attribute_value</action_type>
2344
+ <asset>[[output://create_metadata_field_select_657289048.assetid]]</asset>
2345
+ <attribute>edit_params</attribute>
2346
+ <value><![CDATA[array (
2347
+ 'style' => 'list',
2348
+ 'type' => 'table',
2349
+ 'height' => '',
2350
+ 'columns' => '1',
2351
+ 'empty_text' => '',
2352
+ 'extras' => '',
2353
+ );]]></value>
2354
+ </action>
2355
+ </actions>