@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,1631 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <actions>
3
+ <action>
4
+ <action_id>create_Content_Container_Template_4644188820</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_4644188820_name</action_id>
15
+ <action_type>set_attribute_value</action_type>
16
+ <asset>[[output://create_Content_Container_Template_4644188820.assetid]]</asset>
17
+ <attribute>name</attribute>
18
+ <value><![CDATA[Multi Column]]></value>
19
+ </action>
20
+
21
+ <action>
22
+ <action_id>set_Content_Container_Template_4644188820_edit_interface_in_admin</action_id>
23
+ <action_type>set_attribute_value</action_type>
24
+ <asset>[[output://create_Content_Container_Template_4644188820.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_4644188820_icon_color</action_id>
31
+ <action_type>set_attribute_value</action_type>
32
+ <asset>[[output://create_Content_Container_Template_4644188820.assetid]]</asset>
33
+ <attribute>icon_color</attribute>
34
+ <value><![CDATA[blue]]></value>
35
+ </action>
36
+
37
+ <action>
38
+ <action_id>create_Metadata_Schema_3576345747</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_4644188820.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_3576345747_name</action_id>
49
+ <action_type>set_attribute_value</action_type>
50
+ <asset>[[output://create_Metadata_Schema_3576345747.assetid]]</asset>
51
+ <attribute>name</attribute>
52
+ <value><![CDATA[Multi Column]]></value>
53
+ </action>
54
+ <action>
55
+ <action_id>set_permission_3576345747_read_5</action_id>
56
+ <action_type>set_permission</action_type>
57
+ <asset>[[output://create_Metadata_Schema_3576345747.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_5116242987</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_3576345747.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_5116242987_path</action_id>
75
+ <action_type>add_web_path</action_type>
76
+ <asset>[[output://create_Metadata_Section_5116242987.assetid]]</asset>
77
+ <parent_asset>[[output://create_Metadata_Schema_3576345747.assetid]]</parent_asset>
78
+ <path>settings</path>
79
+ </action>
80
+ <action>
81
+ <action_id>set_Metadata_Section_5116242987_name</action_id>
82
+ <action_type>set_attribute_value</action_type>
83
+ <asset>[[output://create_Metadata_Section_5116242987.assetid]]</asset>
84
+ <attribute>name</attribute>
85
+ <value><![CDATA[Settings]]></value>
86
+ </action>
87
+ <action>
88
+ <action_id>set_permission_5116242987_read_5</action_id>
89
+ <action_type>set_permission</action_type>
90
+ <asset>[[output://create_Metadata_Section_5116242987.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_5348884247</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_5116242987.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_5348884247_name</action_id>
108
+ <action_type>set_attribute_value</action_type>
109
+ <asset>[[output://create_metadata_field_select_5348884247.assetid]]</asset>
110
+ <attribute>name</attribute>
111
+ <value><![CDATA[body_background]]></value>
112
+ </action>
113
+ <action>
114
+ <action_id>set_metadata_field_select_5348884247_friendly_name</action_id>
115
+ <action_type>set_attribute_value</action_type>
116
+ <asset>[[output://create_metadata_field_select_5348884247.assetid]]</asset>
117
+ <attribute>friendly_name</attribute>
118
+ <value><![CDATA[Background colour]]></value>
119
+ </action>
120
+ <action>
121
+ <action_id>set_metadata_field_select_5348884247_default</action_id>
122
+ <action_type>set_attribute_value</action_type>
123
+ <asset>[[output://create_metadata_field_select_5348884247.assetid]]</asset>
124
+ <attribute>default</attribute>
125
+ <value><![CDATA[]]></value>
126
+ </action>
127
+ <action>
128
+ <action_id>set_metadata_field_select_5348884247_description</action_id>
129
+ <action_type>set_attribute_value</action_type>
130
+ <asset>[[output://create_metadata_field_select_5348884247.assetid]]</asset>
131
+ <attribute>description</attribute>
132
+ <value><![CDATA[]]></value>
133
+ </action>
134
+ <action>
135
+ <action_id>set_metadata_field_select_5348884247_editable</action_id>
136
+ <action_type>set_attribute_value</action_type>
137
+ <asset>[[output://create_metadata_field_select_5348884247.assetid]]</asset>
138
+ <attribute>editable</attribute>
139
+ <value><![CDATA[1]]></value>
140
+ </action>
141
+ <action>
142
+ <action_id>set_metadata_field_select_5348884247_editable</action_id>
143
+ <action_type>set_attribute_value</action_type>
144
+ <asset>[[output://create_metadata_field_select_5348884247.assetid]]</asset>
145
+ <attribute>editable</attribute>
146
+ <value><![CDATA[1]]></value>
147
+ </action>
148
+ <action>
149
+ <action_id>set_metadata_field_select_5348884247_required</action_id>
150
+ <action_type>set_attribute_value</action_type>
151
+ <asset>[[output://create_metadata_field_select_5348884247.assetid]]</asset>
152
+ <attribute>required</attribute>
153
+ <value><![CDATA[0]]></value>
154
+ </action>
155
+ <action>
156
+ <action_id>set_permission_5348884247_read_5</action_id>
157
+ <action_type>set_permission</action_type>
158
+ <asset>[[output://create_metadata_field_select_5348884247.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_5348884247_select_options</action_id>
166
+ <action_type>set_attribute_value</action_type>
167
+ <asset>[[output://create_metadata_field_select_5348884247.assetid]]</asset>
168
+ <attribute>select_options</attribute>
169
+ <value><![CDATA[array ('' => '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}_5348884247_edit_params</action_id>
173
+ <action_type>set_attribute_value</action_type>
174
+ <asset>[[output://create_metadata_field_select_5348884247.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_2905757727</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_5116242987.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_2905757727_name</action_id>
198
+ <action_type>set_attribute_value</action_type>
199
+ <asset>[[output://create_metadata_field_select_2905757727.assetid]]</asset>
200
+ <attribute>name</attribute>
201
+ <value><![CDATA[intro_show]]></value>
202
+ </action>
203
+ <action>
204
+ <action_id>set_metadata_field_select_2905757727_friendly_name</action_id>
205
+ <action_type>set_attribute_value</action_type>
206
+ <asset>[[output://create_metadata_field_select_2905757727.assetid]]</asset>
207
+ <attribute>friendly_name</attribute>
208
+ <value><![CDATA[Show intro section?]]></value>
209
+ </action>
210
+ <action>
211
+ <action_id>set_metadata_field_select_2905757727_default</action_id>
212
+ <action_type>set_attribute_value</action_type>
213
+ <asset>[[output://create_metadata_field_select_2905757727.assetid]]</asset>
214
+ <attribute>default</attribute>
215
+ <value><![CDATA[yes]]></value>
216
+ </action>
217
+ <action>
218
+ <action_id>set_metadata_field_select_2905757727_description</action_id>
219
+ <action_type>set_attribute_value</action_type>
220
+ <asset>[[output://create_metadata_field_select_2905757727.assetid]]</asset>
221
+ <attribute>description</attribute>
222
+ <value><![CDATA[]]></value>
223
+ </action>
224
+ <action>
225
+ <action_id>set_metadata_field_select_2905757727_editable</action_id>
226
+ <action_type>set_attribute_value</action_type>
227
+ <asset>[[output://create_metadata_field_select_2905757727.assetid]]</asset>
228
+ <attribute>editable</attribute>
229
+ <value><![CDATA[1]]></value>
230
+ </action>
231
+ <action>
232
+ <action_id>set_metadata_field_select_2905757727_editable</action_id>
233
+ <action_type>set_attribute_value</action_type>
234
+ <asset>[[output://create_metadata_field_select_2905757727.assetid]]</asset>
235
+ <attribute>editable</attribute>
236
+ <value><![CDATA[1]]></value>
237
+ </action>
238
+ <action>
239
+ <action_id>set_metadata_field_select_2905757727_required</action_id>
240
+ <action_type>set_attribute_value</action_type>
241
+ <asset>[[output://create_metadata_field_select_2905757727.assetid]]</asset>
242
+ <attribute>required</attribute>
243
+ <value><![CDATA[0]]></value>
244
+ </action>
245
+ <action>
246
+ <action_id>set_permission_2905757727_read_5</action_id>
247
+ <action_type>set_permission</action_type>
248
+ <asset>[[output://create_metadata_field_select_2905757727.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_2905757727_select_options</action_id>
256
+ <action_type>set_attribute_value</action_type>
257
+ <asset>[[output://create_metadata_field_select_2905757727.assetid]]</asset>
258
+ <attribute>select_options</attribute>
259
+ <value><![CDATA[array ('' => 'No','yes' => 'Yes',);]]></value>
260
+ </action>
261
+ <action>
262
+ <action_id>set_{f.type}_2905757727_edit_params</action_id>
263
+ <action_type>set_attribute_value</action_type>
264
+ <asset>[[output://create_metadata_field_select_2905757727.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_select_5736381189</action_id>
278
+ <action_type>create_asset</action_type>
279
+ <type_code>metadata_field_select</type_code>
280
+ <link_type>2</link_type>
281
+ <parentid>[[output://create_Metadata_Section_5116242987.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_select_5736381189_name</action_id>
288
+ <action_type>set_attribute_value</action_type>
289
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
290
+ <attribute>name</attribute>
291
+ <value><![CDATA[intro_width]]></value>
292
+ </action>
293
+ <action>
294
+ <action_id>set_metadata_field_select_5736381189_friendly_name</action_id>
295
+ <action_type>set_attribute_value</action_type>
296
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
297
+ <attribute>friendly_name</attribute>
298
+ <value><![CDATA[Intro section width]]></value>
299
+ </action>
300
+ <action>
301
+ <action_id>set_metadata_field_select_5736381189_default</action_id>
302
+ <action_type>set_attribute_value</action_type>
303
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
304
+ <attribute>default</attribute>
305
+ <value><![CDATA[col-lg-6]]></value>
306
+ </action>
307
+ <action>
308
+ <action_id>set_metadata_field_select_5736381189_description</action_id>
309
+ <action_type>set_attribute_value</action_type>
310
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
311
+ <attribute>description</attribute>
312
+ <value><![CDATA[]]></value>
313
+ </action>
314
+ <action>
315
+ <action_id>set_metadata_field_select_5736381189_editable</action_id>
316
+ <action_type>set_attribute_value</action_type>
317
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
318
+ <attribute>editable</attribute>
319
+ <value><![CDATA[1]]></value>
320
+ </action>
321
+ <action>
322
+ <action_id>set_metadata_field_select_5736381189_editable</action_id>
323
+ <action_type>set_attribute_value</action_type>
324
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
325
+ <attribute>editable</attribute>
326
+ <value><![CDATA[1]]></value>
327
+ </action>
328
+ <action>
329
+ <action_id>set_metadata_field_select_5736381189_required</action_id>
330
+ <action_type>set_attribute_value</action_type>
331
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
332
+ <attribute>required</attribute>
333
+ <value><![CDATA[0]]></value>
334
+ </action>
335
+ <action>
336
+ <action_id>set_permission_5736381189_read_5</action_id>
337
+ <action_type>set_permission</action_type>
338
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
339
+ <permission>1</permission>
340
+ <granted>1</granted>
341
+ <userid>[[system://public_user]]</userid>
342
+ </action>
343
+
344
+ <action>
345
+ <action_id>set_metadata_field_select_5736381189_select_options</action_id>
346
+ <action_type>set_attribute_value</action_type>
347
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
348
+ <attribute>select_options</attribute>
349
+ <value><![CDATA[array ('col-lg-6' => 'Half width','col-lg-12' => 'Full width',);]]></value>
350
+ </action>
351
+ <action>
352
+ <action_id>set_{f.type}_5736381189_edit_params</action_id>
353
+ <action_type>set_attribute_value</action_type>
354
+ <asset>[[output://create_metadata_field_select_5736381189.assetid]]</asset>
355
+ <attribute>edit_params</attribute>
356
+ <value><![CDATA[array (
357
+ 'style' => 'list',
358
+ 'type' => 'table',
359
+ 'height' => '',
360
+ 'columns' => '1',
361
+ 'empty_text' => '',
362
+ 'extras' => '',
363
+ );]]></value>
364
+ </action>
365
+
366
+ <action>
367
+ <action_id>create_metadata_field_text_1667330200</action_id>
368
+ <action_type>create_asset</action_type>
369
+ <type_code>metadata_field_text</type_code>
370
+ <link_type>2</link_type>
371
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
372
+ <value></value>
373
+ <is_dependant>1</is_dependant>
374
+ <is_exclusive>0</is_exclusive>
375
+ </action>
376
+ <action>
377
+ <action_id>set_metadata_field_text_1667330200_name</action_id>
378
+ <action_type>set_attribute_value</action_type>
379
+ <asset>[[output://create_metadata_field_text_1667330200.assetid]]</asset>
380
+ <attribute>name</attribute>
381
+ <value><![CDATA[intro_heading]]></value>
382
+ </action>
383
+ <action>
384
+ <action_id>set_metadata_field_text_1667330200_friendly_name</action_id>
385
+ <action_type>set_attribute_value</action_type>
386
+ <asset>[[output://create_metadata_field_text_1667330200.assetid]]</asset>
387
+ <attribute>friendly_name</attribute>
388
+ <value><![CDATA[Intro heading]]></value>
389
+ </action>
390
+ <action>
391
+ <action_id>set_metadata_field_text_1667330200_default</action_id>
392
+ <action_type>set_attribute_value</action_type>
393
+ <asset>[[output://create_metadata_field_text_1667330200.assetid]]</asset>
394
+ <attribute>default</attribute>
395
+ <value><![CDATA[Intro heading]]></value>
396
+ </action>
397
+ <action>
398
+ <action_id>set_metadata_field_text_1667330200_description</action_id>
399
+ <action_type>set_attribute_value</action_type>
400
+ <asset>[[output://create_metadata_field_text_1667330200.assetid]]</asset>
401
+ <attribute>description</attribute>
402
+ <value><![CDATA[]]></value>
403
+ </action>
404
+ <action>
405
+ <action_id>set_metadata_field_text_1667330200_editable</action_id>
406
+ <action_type>set_attribute_value</action_type>
407
+ <asset>[[output://create_metadata_field_text_1667330200.assetid]]</asset>
408
+ <attribute>editable</attribute>
409
+ <value><![CDATA[1]]></value>
410
+ </action>
411
+ <action>
412
+ <action_id>set_metadata_field_text_1667330200_editable</action_id>
413
+ <action_type>set_attribute_value</action_type>
414
+ <asset>[[output://create_metadata_field_text_1667330200.assetid]]</asset>
415
+ <attribute>editable</attribute>
416
+ <value><![CDATA[1]]></value>
417
+ </action>
418
+ <action>
419
+ <action_id>set_metadata_field_text_1667330200_required</action_id>
420
+ <action_type>set_attribute_value</action_type>
421
+ <asset>[[output://create_metadata_field_text_1667330200.assetid]]</asset>
422
+ <attribute>required</attribute>
423
+ <value><![CDATA[0]]></value>
424
+ </action>
425
+ <action>
426
+ <action_id>set_permission_1667330200_read_5</action_id>
427
+ <action_type>set_permission</action_type>
428
+ <asset>[[output://create_metadata_field_text_1667330200.assetid]]</asset>
429
+ <permission>1</permission>
430
+ <granted>1</granted>
431
+ <userid>[[system://public_user]]</userid>
432
+ </action>
433
+
434
+ <action>
435
+ <action_id>create_metadata_field_wysiwyg_6484401367</action_id>
436
+ <action_type>create_asset</action_type>
437
+ <type_code>metadata_field_wysiwyg</type_code>
438
+ <link_type>2</link_type>
439
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
440
+ <value></value>
441
+ <is_dependant>1</is_dependant>
442
+ <is_exclusive>0</is_exclusive>
443
+ </action>
444
+ <action>
445
+ <action_id>set_metadata_field_wysiwyg_6484401367_name</action_id>
446
+ <action_type>set_attribute_value</action_type>
447
+ <asset>[[output://create_metadata_field_wysiwyg_6484401367.assetid]]</asset>
448
+ <attribute>name</attribute>
449
+ <value><![CDATA[intro_body]]></value>
450
+ </action>
451
+ <action>
452
+ <action_id>set_metadata_field_wysiwyg_6484401367_friendly_name</action_id>
453
+ <action_type>set_attribute_value</action_type>
454
+ <asset>[[output://create_metadata_field_wysiwyg_6484401367.assetid]]</asset>
455
+ <attribute>friendly_name</attribute>
456
+ <value><![CDATA[Intro body]]></value>
457
+ </action>
458
+ <action>
459
+ <action_id>set_metadata_field_wysiwyg_6484401367_default</action_id>
460
+ <action_type>set_attribute_value</action_type>
461
+ <asset>[[output://create_metadata_field_wysiwyg_6484401367.assetid]]</asset>
462
+ <attribute>default</attribute>
463
+ <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>
464
+ </action>
465
+ <action>
466
+ <action_id>set_metadata_field_wysiwyg_6484401367_description</action_id>
467
+ <action_type>set_attribute_value</action_type>
468
+ <asset>[[output://create_metadata_field_wysiwyg_6484401367.assetid]]</asset>
469
+ <attribute>description</attribute>
470
+ <value><![CDATA[]]></value>
471
+ </action>
472
+ <action>
473
+ <action_id>set_metadata_field_wysiwyg_6484401367_editable</action_id>
474
+ <action_type>set_attribute_value</action_type>
475
+ <asset>[[output://create_metadata_field_wysiwyg_6484401367.assetid]]</asset>
476
+ <attribute>editable</attribute>
477
+ <value><![CDATA[1]]></value>
478
+ </action>
479
+ <action>
480
+ <action_id>set_metadata_field_wysiwyg_6484401367_editable</action_id>
481
+ <action_type>set_attribute_value</action_type>
482
+ <asset>[[output://create_metadata_field_wysiwyg_6484401367.assetid]]</asset>
483
+ <attribute>editable</attribute>
484
+ <value><![CDATA[1]]></value>
485
+ </action>
486
+ <action>
487
+ <action_id>set_metadata_field_wysiwyg_6484401367_required</action_id>
488
+ <action_type>set_attribute_value</action_type>
489
+ <asset>[[output://create_metadata_field_wysiwyg_6484401367.assetid]]</asset>
490
+ <attribute>required</attribute>
491
+ <value><![CDATA[0]]></value>
492
+ </action>
493
+ <action>
494
+ <action_id>set_permission_6484401367_read_5</action_id>
495
+ <action_type>set_permission</action_type>
496
+ <asset>[[output://create_metadata_field_wysiwyg_6484401367.assetid]]</asset>
497
+ <permission>1</permission>
498
+ <granted>1</granted>
499
+ <userid>[[system://public_user]]</userid>
500
+ </action>
501
+
502
+ <action>
503
+ <action_id>create_metadata_field_select_2198022254</action_id>
504
+ <action_type>create_asset</action_type>
505
+ <type_code>metadata_field_select</type_code>
506
+ <link_type>2</link_type>
507
+ <parentid>[[output://create_Metadata_Section_5116242987.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_select_2198022254_name</action_id>
514
+ <action_type>set_attribute_value</action_type>
515
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
516
+ <attribute>name</attribute>
517
+ <value><![CDATA[row_num]]></value>
518
+ </action>
519
+ <action>
520
+ <action_id>set_metadata_field_select_2198022254_friendly_name</action_id>
521
+ <action_type>set_attribute_value</action_type>
522
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
523
+ <attribute>friendly_name</attribute>
524
+ <value><![CDATA[Number of rows]]></value>
525
+ </action>
526
+ <action>
527
+ <action_id>set_metadata_field_select_2198022254_default</action_id>
528
+ <action_type>set_attribute_value</action_type>
529
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
530
+ <attribute>default</attribute>
531
+ <value><![CDATA[1]]></value>
532
+ </action>
533
+ <action>
534
+ <action_id>set_metadata_field_select_2198022254_description</action_id>
535
+ <action_type>set_attribute_value</action_type>
536
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
537
+ <attribute>description</attribute>
538
+ <value><![CDATA[]]></value>
539
+ </action>
540
+ <action>
541
+ <action_id>set_metadata_field_select_2198022254_editable</action_id>
542
+ <action_type>set_attribute_value</action_type>
543
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
544
+ <attribute>editable</attribute>
545
+ <value><![CDATA[1]]></value>
546
+ </action>
547
+ <action>
548
+ <action_id>set_metadata_field_select_2198022254_editable</action_id>
549
+ <action_type>set_attribute_value</action_type>
550
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
551
+ <attribute>editable</attribute>
552
+ <value><![CDATA[1]]></value>
553
+ </action>
554
+ <action>
555
+ <action_id>set_metadata_field_select_2198022254_required</action_id>
556
+ <action_type>set_attribute_value</action_type>
557
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
558
+ <attribute>required</attribute>
559
+ <value><![CDATA[0]]></value>
560
+ </action>
561
+ <action>
562
+ <action_id>set_permission_2198022254_read_5</action_id>
563
+ <action_type>set_permission</action_type>
564
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
565
+ <permission>1</permission>
566
+ <granted>1</granted>
567
+ <userid>[[system://public_user]]</userid>
568
+ </action>
569
+
570
+ <action>
571
+ <action_id>set_metadata_field_select_2198022254_select_options</action_id>
572
+ <action_type>set_attribute_value</action_type>
573
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
574
+ <attribute>select_options</attribute>
575
+ <value><![CDATA[array ('1' => 'One','2' => 'Two','3' => 'Three',);]]></value>
576
+ </action>
577
+ <action>
578
+ <action_id>set_{f.type}_2198022254_edit_params</action_id>
579
+ <action_type>set_attribute_value</action_type>
580
+ <asset>[[output://create_metadata_field_select_2198022254.assetid]]</asset>
581
+ <attribute>edit_params</attribute>
582
+ <value><![CDATA[array (
583
+ 'style' => 'list',
584
+ 'type' => 'table',
585
+ 'height' => '',
586
+ 'columns' => '1',
587
+ 'empty_text' => '',
588
+ 'extras' => '',
589
+ );]]></value>
590
+ </action>
591
+
592
+ <action>
593
+ <action_id>create_metadata_field_select_1062781240</action_id>
594
+ <action_type>create_asset</action_type>
595
+ <type_code>metadata_field_select</type_code>
596
+ <link_type>2</link_type>
597
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
598
+ <value></value>
599
+ <is_dependant>1</is_dependant>
600
+ <is_exclusive>0</is_exclusive>
601
+ </action>
602
+ <action>
603
+ <action_id>set_metadata_field_select_1062781240_name</action_id>
604
+ <action_type>set_attribute_value</action_type>
605
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
606
+ <attribute>name</attribute>
607
+ <value><![CDATA[col_num]]></value>
608
+ </action>
609
+ <action>
610
+ <action_id>set_metadata_field_select_1062781240_friendly_name</action_id>
611
+ <action_type>set_attribute_value</action_type>
612
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
613
+ <attribute>friendly_name</attribute>
614
+ <value><![CDATA[Number of columns]]></value>
615
+ </action>
616
+ <action>
617
+ <action_id>set_metadata_field_select_1062781240_default</action_id>
618
+ <action_type>set_attribute_value</action_type>
619
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
620
+ <attribute>default</attribute>
621
+ <value><![CDATA[3]]></value>
622
+ </action>
623
+ <action>
624
+ <action_id>set_metadata_field_select_1062781240_description</action_id>
625
+ <action_type>set_attribute_value</action_type>
626
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
627
+ <attribute>description</attribute>
628
+ <value><![CDATA[]]></value>
629
+ </action>
630
+ <action>
631
+ <action_id>set_metadata_field_select_1062781240_editable</action_id>
632
+ <action_type>set_attribute_value</action_type>
633
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
634
+ <attribute>editable</attribute>
635
+ <value><![CDATA[1]]></value>
636
+ </action>
637
+ <action>
638
+ <action_id>set_metadata_field_select_1062781240_editable</action_id>
639
+ <action_type>set_attribute_value</action_type>
640
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
641
+ <attribute>editable</attribute>
642
+ <value><![CDATA[1]]></value>
643
+ </action>
644
+ <action>
645
+ <action_id>set_metadata_field_select_1062781240_required</action_id>
646
+ <action_type>set_attribute_value</action_type>
647
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
648
+ <attribute>required</attribute>
649
+ <value><![CDATA[0]]></value>
650
+ </action>
651
+ <action>
652
+ <action_id>set_permission_1062781240_read_5</action_id>
653
+ <action_type>set_permission</action_type>
654
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
655
+ <permission>1</permission>
656
+ <granted>1</granted>
657
+ <userid>[[system://public_user]]</userid>
658
+ </action>
659
+
660
+ <action>
661
+ <action_id>set_metadata_field_select_1062781240_select_options</action_id>
662
+ <action_type>set_attribute_value</action_type>
663
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
664
+ <attribute>select_options</attribute>
665
+ <value><![CDATA[array ('1' => 'One','2' => 'Two','3' => 'Three',);]]></value>
666
+ </action>
667
+ <action>
668
+ <action_id>set_{f.type}_1062781240_edit_params</action_id>
669
+ <action_type>set_attribute_value</action_type>
670
+ <asset>[[output://create_metadata_field_select_1062781240.assetid]]</asset>
671
+ <attribute>edit_params</attribute>
672
+ <value><![CDATA[array (
673
+ 'style' => 'list',
674
+ 'type' => 'table',
675
+ 'height' => '',
676
+ 'columns' => '1',
677
+ 'empty_text' => '',
678
+ 'extras' => '',
679
+ );]]></value>
680
+ </action>
681
+
682
+ <action>
683
+ <action_id>create_metadata_field_select_112033047</action_id>
684
+ <action_type>create_asset</action_type>
685
+ <type_code>metadata_field_select</type_code>
686
+ <link_type>2</link_type>
687
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
688
+ <value></value>
689
+ <is_dependant>1</is_dependant>
690
+ <is_exclusive>0</is_exclusive>
691
+ </action>
692
+ <action>
693
+ <action_id>set_metadata_field_select_112033047_name</action_id>
694
+ <action_type>set_attribute_value</action_type>
695
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
696
+ <attribute>name</attribute>
697
+ <value><![CDATA[col_1_width]]></value>
698
+ </action>
699
+ <action>
700
+ <action_id>set_metadata_field_select_112033047_friendly_name</action_id>
701
+ <action_type>set_attribute_value</action_type>
702
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
703
+ <attribute>friendly_name</attribute>
704
+ <value><![CDATA[Column 1 - Width Override]]></value>
705
+ </action>
706
+ <action>
707
+ <action_id>set_metadata_field_select_112033047_default</action_id>
708
+ <action_type>set_attribute_value</action_type>
709
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
710
+ <attribute>default</attribute>
711
+ <value><![CDATA[]]></value>
712
+ </action>
713
+ <action>
714
+ <action_id>set_metadata_field_select_112033047_description</action_id>
715
+ <action_type>set_attribute_value</action_type>
716
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
717
+ <attribute>description</attribute>
718
+ <value><![CDATA[]]></value>
719
+ </action>
720
+ <action>
721
+ <action_id>set_metadata_field_select_112033047_editable</action_id>
722
+ <action_type>set_attribute_value</action_type>
723
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
724
+ <attribute>editable</attribute>
725
+ <value><![CDATA[1]]></value>
726
+ </action>
727
+ <action>
728
+ <action_id>set_metadata_field_select_112033047_editable</action_id>
729
+ <action_type>set_attribute_value</action_type>
730
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
731
+ <attribute>editable</attribute>
732
+ <value><![CDATA[1]]></value>
733
+ </action>
734
+ <action>
735
+ <action_id>set_metadata_field_select_112033047_required</action_id>
736
+ <action_type>set_attribute_value</action_type>
737
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
738
+ <attribute>required</attribute>
739
+ <value><![CDATA[0]]></value>
740
+ </action>
741
+ <action>
742
+ <action_id>set_permission_112033047_read_5</action_id>
743
+ <action_type>set_permission</action_type>
744
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
745
+ <permission>1</permission>
746
+ <granted>1</granted>
747
+ <userid>[[system://public_user]]</userid>
748
+ </action>
749
+
750
+ <action>
751
+ <action_id>set_metadata_field_select_112033047_select_options</action_id>
752
+ <action_type>set_attribute_value</action_type>
753
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
754
+ <attribute>select_options</attribute>
755
+ <value><![CDATA[array ('2' => 'One sixth','3' => 'One quarter','4' => 'One third','5' => 'Five Twelfths','6' => 'Half','8' => 'Two thirds','9' => 'Three quarters','10' => 'Five sixths','12' => 'Full','' => 'None',);]]></value>
756
+ </action>
757
+ <action>
758
+ <action_id>set_{f.type}_112033047_edit_params</action_id>
759
+ <action_type>set_attribute_value</action_type>
760
+ <asset>[[output://create_metadata_field_select_112033047.assetid]]</asset>
761
+ <attribute>edit_params</attribute>
762
+ <value><![CDATA[array (
763
+ 'style' => 'list',
764
+ 'type' => 'table',
765
+ 'height' => '',
766
+ 'columns' => '1',
767
+ 'empty_text' => '',
768
+ 'extras' => '',
769
+ );]]></value>
770
+ </action>
771
+
772
+ <action>
773
+ <action_id>create_metadata_field_select_6558397701</action_id>
774
+ <action_type>create_asset</action_type>
775
+ <type_code>metadata_field_select</type_code>
776
+ <link_type>2</link_type>
777
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
778
+ <value></value>
779
+ <is_dependant>1</is_dependant>
780
+ <is_exclusive>0</is_exclusive>
781
+ </action>
782
+ <action>
783
+ <action_id>set_metadata_field_select_6558397701_name</action_id>
784
+ <action_type>set_attribute_value</action_type>
785
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
786
+ <attribute>name</attribute>
787
+ <value><![CDATA[col_2_width]]></value>
788
+ </action>
789
+ <action>
790
+ <action_id>set_metadata_field_select_6558397701_friendly_name</action_id>
791
+ <action_type>set_attribute_value</action_type>
792
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
793
+ <attribute>friendly_name</attribute>
794
+ <value><![CDATA[Column 2 - Width Override]]></value>
795
+ </action>
796
+ <action>
797
+ <action_id>set_metadata_field_select_6558397701_default</action_id>
798
+ <action_type>set_attribute_value</action_type>
799
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
800
+ <attribute>default</attribute>
801
+ <value><![CDATA[]]></value>
802
+ </action>
803
+ <action>
804
+ <action_id>set_metadata_field_select_6558397701_description</action_id>
805
+ <action_type>set_attribute_value</action_type>
806
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
807
+ <attribute>description</attribute>
808
+ <value><![CDATA[]]></value>
809
+ </action>
810
+ <action>
811
+ <action_id>set_metadata_field_select_6558397701_editable</action_id>
812
+ <action_type>set_attribute_value</action_type>
813
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
814
+ <attribute>editable</attribute>
815
+ <value><![CDATA[1]]></value>
816
+ </action>
817
+ <action>
818
+ <action_id>set_metadata_field_select_6558397701_editable</action_id>
819
+ <action_type>set_attribute_value</action_type>
820
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
821
+ <attribute>editable</attribute>
822
+ <value><![CDATA[1]]></value>
823
+ </action>
824
+ <action>
825
+ <action_id>set_metadata_field_select_6558397701_required</action_id>
826
+ <action_type>set_attribute_value</action_type>
827
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
828
+ <attribute>required</attribute>
829
+ <value><![CDATA[0]]></value>
830
+ </action>
831
+ <action>
832
+ <action_id>set_permission_6558397701_read_5</action_id>
833
+ <action_type>set_permission</action_type>
834
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
835
+ <permission>1</permission>
836
+ <granted>1</granted>
837
+ <userid>[[system://public_user]]</userid>
838
+ </action>
839
+
840
+ <action>
841
+ <action_id>set_metadata_field_select_6558397701_select_options</action_id>
842
+ <action_type>set_attribute_value</action_type>
843
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
844
+ <attribute>select_options</attribute>
845
+ <value><![CDATA[array ('2' => 'One sixth','3' => 'One quarter','4' => 'One third','5' => 'Five Twelfths','6' => 'Half','8' => 'Two thirds','9' => 'Three quarters','10' => 'Five sixths','12' => 'Full','' => 'None',);]]></value>
846
+ </action>
847
+ <action>
848
+ <action_id>set_{f.type}_6558397701_edit_params</action_id>
849
+ <action_type>set_attribute_value</action_type>
850
+ <asset>[[output://create_metadata_field_select_6558397701.assetid]]</asset>
851
+ <attribute>edit_params</attribute>
852
+ <value><![CDATA[array (
853
+ 'style' => 'list',
854
+ 'type' => 'table',
855
+ 'height' => '',
856
+ 'columns' => '1',
857
+ 'empty_text' => '',
858
+ 'extras' => '',
859
+ );]]></value>
860
+ </action>
861
+
862
+ <action>
863
+ <action_id>create_metadata_field_select_4696619347</action_id>
864
+ <action_type>create_asset</action_type>
865
+ <type_code>metadata_field_select</type_code>
866
+ <link_type>2</link_type>
867
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
868
+ <value></value>
869
+ <is_dependant>1</is_dependant>
870
+ <is_exclusive>0</is_exclusive>
871
+ </action>
872
+ <action>
873
+ <action_id>set_metadata_field_select_4696619347_name</action_id>
874
+ <action_type>set_attribute_value</action_type>
875
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
876
+ <attribute>name</attribute>
877
+ <value><![CDATA[col_3_width]]></value>
878
+ </action>
879
+ <action>
880
+ <action_id>set_metadata_field_select_4696619347_friendly_name</action_id>
881
+ <action_type>set_attribute_value</action_type>
882
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
883
+ <attribute>friendly_name</attribute>
884
+ <value><![CDATA[Column 3 - Width Override]]></value>
885
+ </action>
886
+ <action>
887
+ <action_id>set_metadata_field_select_4696619347_default</action_id>
888
+ <action_type>set_attribute_value</action_type>
889
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
890
+ <attribute>default</attribute>
891
+ <value><![CDATA[]]></value>
892
+ </action>
893
+ <action>
894
+ <action_id>set_metadata_field_select_4696619347_description</action_id>
895
+ <action_type>set_attribute_value</action_type>
896
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
897
+ <attribute>description</attribute>
898
+ <value><![CDATA[]]></value>
899
+ </action>
900
+ <action>
901
+ <action_id>set_metadata_field_select_4696619347_editable</action_id>
902
+ <action_type>set_attribute_value</action_type>
903
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
904
+ <attribute>editable</attribute>
905
+ <value><![CDATA[1]]></value>
906
+ </action>
907
+ <action>
908
+ <action_id>set_metadata_field_select_4696619347_editable</action_id>
909
+ <action_type>set_attribute_value</action_type>
910
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
911
+ <attribute>editable</attribute>
912
+ <value><![CDATA[1]]></value>
913
+ </action>
914
+ <action>
915
+ <action_id>set_metadata_field_select_4696619347_required</action_id>
916
+ <action_type>set_attribute_value</action_type>
917
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
918
+ <attribute>required</attribute>
919
+ <value><![CDATA[0]]></value>
920
+ </action>
921
+ <action>
922
+ <action_id>set_permission_4696619347_read_5</action_id>
923
+ <action_type>set_permission</action_type>
924
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
925
+ <permission>1</permission>
926
+ <granted>1</granted>
927
+ <userid>[[system://public_user]]</userid>
928
+ </action>
929
+
930
+ <action>
931
+ <action_id>set_metadata_field_select_4696619347_select_options</action_id>
932
+ <action_type>set_attribute_value</action_type>
933
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
934
+ <attribute>select_options</attribute>
935
+ <value><![CDATA[array ('2' => 'One sixth','3' => 'One quarter','4' => 'One third','5' => 'Five Twelfths','6' => 'Half','8' => 'Two thirds','9' => 'Three quarters','10' => 'Five sixths','12' => 'Full','' => 'None',);]]></value>
936
+ </action>
937
+ <action>
938
+ <action_id>set_{f.type}_4696619347_edit_params</action_id>
939
+ <action_type>set_attribute_value</action_type>
940
+ <asset>[[output://create_metadata_field_select_4696619347.assetid]]</asset>
941
+ <attribute>edit_params</attribute>
942
+ <value><![CDATA[array (
943
+ 'style' => 'list',
944
+ 'type' => 'table',
945
+ 'height' => '',
946
+ 'columns' => '1',
947
+ 'empty_text' => '',
948
+ 'extras' => '',
949
+ );]]></value>
950
+ </action>
951
+
952
+ <action>
953
+ <action_id>create_metadata_field_wysiwyg_9315120213</action_id>
954
+ <action_type>create_asset</action_type>
955
+ <type_code>metadata_field_wysiwyg</type_code>
956
+ <link_type>2</link_type>
957
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
958
+ <value></value>
959
+ <is_dependant>1</is_dependant>
960
+ <is_exclusive>0</is_exclusive>
961
+ </action>
962
+ <action>
963
+ <action_id>set_metadata_field_wysiwyg_9315120213_name</action_id>
964
+ <action_type>set_attribute_value</action_type>
965
+ <asset>[[output://create_metadata_field_wysiwyg_9315120213.assetid]]</asset>
966
+ <attribute>name</attribute>
967
+ <value><![CDATA[col_1_1]]></value>
968
+ </action>
969
+ <action>
970
+ <action_id>set_metadata_field_wysiwyg_9315120213_friendly_name</action_id>
971
+ <action_type>set_attribute_value</action_type>
972
+ <asset>[[output://create_metadata_field_wysiwyg_9315120213.assetid]]</asset>
973
+ <attribute>friendly_name</attribute>
974
+ <value><![CDATA[Row 1 - Column 1]]></value>
975
+ </action>
976
+ <action>
977
+ <action_id>set_metadata_field_wysiwyg_9315120213_default</action_id>
978
+ <action_type>set_attribute_value</action_type>
979
+ <asset>[[output://create_metadata_field_wysiwyg_9315120213.assetid]]</asset>
980
+ <attribute>default</attribute>
981
+ <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>
982
+ </action>
983
+ <action>
984
+ <action_id>set_metadata_field_wysiwyg_9315120213_description</action_id>
985
+ <action_type>set_attribute_value</action_type>
986
+ <asset>[[output://create_metadata_field_wysiwyg_9315120213.assetid]]</asset>
987
+ <attribute>description</attribute>
988
+ <value><![CDATA[]]></value>
989
+ </action>
990
+ <action>
991
+ <action_id>set_metadata_field_wysiwyg_9315120213_editable</action_id>
992
+ <action_type>set_attribute_value</action_type>
993
+ <asset>[[output://create_metadata_field_wysiwyg_9315120213.assetid]]</asset>
994
+ <attribute>editable</attribute>
995
+ <value><![CDATA[1]]></value>
996
+ </action>
997
+ <action>
998
+ <action_id>set_metadata_field_wysiwyg_9315120213_editable</action_id>
999
+ <action_type>set_attribute_value</action_type>
1000
+ <asset>[[output://create_metadata_field_wysiwyg_9315120213.assetid]]</asset>
1001
+ <attribute>editable</attribute>
1002
+ <value><![CDATA[1]]></value>
1003
+ </action>
1004
+ <action>
1005
+ <action_id>set_metadata_field_wysiwyg_9315120213_required</action_id>
1006
+ <action_type>set_attribute_value</action_type>
1007
+ <asset>[[output://create_metadata_field_wysiwyg_9315120213.assetid]]</asset>
1008
+ <attribute>required</attribute>
1009
+ <value><![CDATA[0]]></value>
1010
+ </action>
1011
+ <action>
1012
+ <action_id>set_permission_9315120213_read_5</action_id>
1013
+ <action_type>set_permission</action_type>
1014
+ <asset>[[output://create_metadata_field_wysiwyg_9315120213.assetid]]</asset>
1015
+ <permission>1</permission>
1016
+ <granted>1</granted>
1017
+ <userid>[[system://public_user]]</userid>
1018
+ </action>
1019
+
1020
+ <action>
1021
+ <action_id>create_metadata_field_wysiwyg_9721879282</action_id>
1022
+ <action_type>create_asset</action_type>
1023
+ <type_code>metadata_field_wysiwyg</type_code>
1024
+ <link_type>2</link_type>
1025
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
1026
+ <value></value>
1027
+ <is_dependant>1</is_dependant>
1028
+ <is_exclusive>0</is_exclusive>
1029
+ </action>
1030
+ <action>
1031
+ <action_id>set_metadata_field_wysiwyg_9721879282_name</action_id>
1032
+ <action_type>set_attribute_value</action_type>
1033
+ <asset>[[output://create_metadata_field_wysiwyg_9721879282.assetid]]</asset>
1034
+ <attribute>name</attribute>
1035
+ <value><![CDATA[col_1_2]]></value>
1036
+ </action>
1037
+ <action>
1038
+ <action_id>set_metadata_field_wysiwyg_9721879282_friendly_name</action_id>
1039
+ <action_type>set_attribute_value</action_type>
1040
+ <asset>[[output://create_metadata_field_wysiwyg_9721879282.assetid]]</asset>
1041
+ <attribute>friendly_name</attribute>
1042
+ <value><![CDATA[Row 1 - Column 2]]></value>
1043
+ </action>
1044
+ <action>
1045
+ <action_id>set_metadata_field_wysiwyg_9721879282_default</action_id>
1046
+ <action_type>set_attribute_value</action_type>
1047
+ <asset>[[output://create_metadata_field_wysiwyg_9721879282.assetid]]</asset>
1048
+ <attribute>default</attribute>
1049
+ <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>
1050
+ </action>
1051
+ <action>
1052
+ <action_id>set_metadata_field_wysiwyg_9721879282_description</action_id>
1053
+ <action_type>set_attribute_value</action_type>
1054
+ <asset>[[output://create_metadata_field_wysiwyg_9721879282.assetid]]</asset>
1055
+ <attribute>description</attribute>
1056
+ <value><![CDATA[]]></value>
1057
+ </action>
1058
+ <action>
1059
+ <action_id>set_metadata_field_wysiwyg_9721879282_editable</action_id>
1060
+ <action_type>set_attribute_value</action_type>
1061
+ <asset>[[output://create_metadata_field_wysiwyg_9721879282.assetid]]</asset>
1062
+ <attribute>editable</attribute>
1063
+ <value><![CDATA[1]]></value>
1064
+ </action>
1065
+ <action>
1066
+ <action_id>set_metadata_field_wysiwyg_9721879282_editable</action_id>
1067
+ <action_type>set_attribute_value</action_type>
1068
+ <asset>[[output://create_metadata_field_wysiwyg_9721879282.assetid]]</asset>
1069
+ <attribute>editable</attribute>
1070
+ <value><![CDATA[1]]></value>
1071
+ </action>
1072
+ <action>
1073
+ <action_id>set_metadata_field_wysiwyg_9721879282_required</action_id>
1074
+ <action_type>set_attribute_value</action_type>
1075
+ <asset>[[output://create_metadata_field_wysiwyg_9721879282.assetid]]</asset>
1076
+ <attribute>required</attribute>
1077
+ <value><![CDATA[0]]></value>
1078
+ </action>
1079
+ <action>
1080
+ <action_id>set_permission_9721879282_read_5</action_id>
1081
+ <action_type>set_permission</action_type>
1082
+ <asset>[[output://create_metadata_field_wysiwyg_9721879282.assetid]]</asset>
1083
+ <permission>1</permission>
1084
+ <granted>1</granted>
1085
+ <userid>[[system://public_user]]</userid>
1086
+ </action>
1087
+
1088
+ <action>
1089
+ <action_id>create_metadata_field_wysiwyg_8252865997</action_id>
1090
+ <action_type>create_asset</action_type>
1091
+ <type_code>metadata_field_wysiwyg</type_code>
1092
+ <link_type>2</link_type>
1093
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
1094
+ <value></value>
1095
+ <is_dependant>1</is_dependant>
1096
+ <is_exclusive>0</is_exclusive>
1097
+ </action>
1098
+ <action>
1099
+ <action_id>set_metadata_field_wysiwyg_8252865997_name</action_id>
1100
+ <action_type>set_attribute_value</action_type>
1101
+ <asset>[[output://create_metadata_field_wysiwyg_8252865997.assetid]]</asset>
1102
+ <attribute>name</attribute>
1103
+ <value><![CDATA[col_1_3]]></value>
1104
+ </action>
1105
+ <action>
1106
+ <action_id>set_metadata_field_wysiwyg_8252865997_friendly_name</action_id>
1107
+ <action_type>set_attribute_value</action_type>
1108
+ <asset>[[output://create_metadata_field_wysiwyg_8252865997.assetid]]</asset>
1109
+ <attribute>friendly_name</attribute>
1110
+ <value><![CDATA[Row 1 - Column 3]]></value>
1111
+ </action>
1112
+ <action>
1113
+ <action_id>set_metadata_field_wysiwyg_8252865997_default</action_id>
1114
+ <action_type>set_attribute_value</action_type>
1115
+ <asset>[[output://create_metadata_field_wysiwyg_8252865997.assetid]]</asset>
1116
+ <attribute>default</attribute>
1117
+ <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>
1118
+ </action>
1119
+ <action>
1120
+ <action_id>set_metadata_field_wysiwyg_8252865997_description</action_id>
1121
+ <action_type>set_attribute_value</action_type>
1122
+ <asset>[[output://create_metadata_field_wysiwyg_8252865997.assetid]]</asset>
1123
+ <attribute>description</attribute>
1124
+ <value><![CDATA[]]></value>
1125
+ </action>
1126
+ <action>
1127
+ <action_id>set_metadata_field_wysiwyg_8252865997_editable</action_id>
1128
+ <action_type>set_attribute_value</action_type>
1129
+ <asset>[[output://create_metadata_field_wysiwyg_8252865997.assetid]]</asset>
1130
+ <attribute>editable</attribute>
1131
+ <value><![CDATA[1]]></value>
1132
+ </action>
1133
+ <action>
1134
+ <action_id>set_metadata_field_wysiwyg_8252865997_editable</action_id>
1135
+ <action_type>set_attribute_value</action_type>
1136
+ <asset>[[output://create_metadata_field_wysiwyg_8252865997.assetid]]</asset>
1137
+ <attribute>editable</attribute>
1138
+ <value><![CDATA[1]]></value>
1139
+ </action>
1140
+ <action>
1141
+ <action_id>set_metadata_field_wysiwyg_8252865997_required</action_id>
1142
+ <action_type>set_attribute_value</action_type>
1143
+ <asset>[[output://create_metadata_field_wysiwyg_8252865997.assetid]]</asset>
1144
+ <attribute>required</attribute>
1145
+ <value><![CDATA[0]]></value>
1146
+ </action>
1147
+ <action>
1148
+ <action_id>set_permission_8252865997_read_5</action_id>
1149
+ <action_type>set_permission</action_type>
1150
+ <asset>[[output://create_metadata_field_wysiwyg_8252865997.assetid]]</asset>
1151
+ <permission>1</permission>
1152
+ <granted>1</granted>
1153
+ <userid>[[system://public_user]]</userid>
1154
+ </action>
1155
+
1156
+ <action>
1157
+ <action_id>create_metadata_field_wysiwyg_9068724827</action_id>
1158
+ <action_type>create_asset</action_type>
1159
+ <type_code>metadata_field_wysiwyg</type_code>
1160
+ <link_type>2</link_type>
1161
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
1162
+ <value></value>
1163
+ <is_dependant>1</is_dependant>
1164
+ <is_exclusive>0</is_exclusive>
1165
+ </action>
1166
+ <action>
1167
+ <action_id>set_metadata_field_wysiwyg_9068724827_name</action_id>
1168
+ <action_type>set_attribute_value</action_type>
1169
+ <asset>[[output://create_metadata_field_wysiwyg_9068724827.assetid]]</asset>
1170
+ <attribute>name</attribute>
1171
+ <value><![CDATA[col_2_1]]></value>
1172
+ </action>
1173
+ <action>
1174
+ <action_id>set_metadata_field_wysiwyg_9068724827_friendly_name</action_id>
1175
+ <action_type>set_attribute_value</action_type>
1176
+ <asset>[[output://create_metadata_field_wysiwyg_9068724827.assetid]]</asset>
1177
+ <attribute>friendly_name</attribute>
1178
+ <value><![CDATA[Row 2 - Column 1]]></value>
1179
+ </action>
1180
+ <action>
1181
+ <action_id>set_metadata_field_wysiwyg_9068724827_default</action_id>
1182
+ <action_type>set_attribute_value</action_type>
1183
+ <asset>[[output://create_metadata_field_wysiwyg_9068724827.assetid]]</asset>
1184
+ <attribute>default</attribute>
1185
+ <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>
1186
+ </action>
1187
+ <action>
1188
+ <action_id>set_metadata_field_wysiwyg_9068724827_description</action_id>
1189
+ <action_type>set_attribute_value</action_type>
1190
+ <asset>[[output://create_metadata_field_wysiwyg_9068724827.assetid]]</asset>
1191
+ <attribute>description</attribute>
1192
+ <value><![CDATA[]]></value>
1193
+ </action>
1194
+ <action>
1195
+ <action_id>set_metadata_field_wysiwyg_9068724827_editable</action_id>
1196
+ <action_type>set_attribute_value</action_type>
1197
+ <asset>[[output://create_metadata_field_wysiwyg_9068724827.assetid]]</asset>
1198
+ <attribute>editable</attribute>
1199
+ <value><![CDATA[1]]></value>
1200
+ </action>
1201
+ <action>
1202
+ <action_id>set_metadata_field_wysiwyg_9068724827_editable</action_id>
1203
+ <action_type>set_attribute_value</action_type>
1204
+ <asset>[[output://create_metadata_field_wysiwyg_9068724827.assetid]]</asset>
1205
+ <attribute>editable</attribute>
1206
+ <value><![CDATA[1]]></value>
1207
+ </action>
1208
+ <action>
1209
+ <action_id>set_metadata_field_wysiwyg_9068724827_required</action_id>
1210
+ <action_type>set_attribute_value</action_type>
1211
+ <asset>[[output://create_metadata_field_wysiwyg_9068724827.assetid]]</asset>
1212
+ <attribute>required</attribute>
1213
+ <value><![CDATA[0]]></value>
1214
+ </action>
1215
+ <action>
1216
+ <action_id>set_permission_9068724827_read_5</action_id>
1217
+ <action_type>set_permission</action_type>
1218
+ <asset>[[output://create_metadata_field_wysiwyg_9068724827.assetid]]</asset>
1219
+ <permission>1</permission>
1220
+ <granted>1</granted>
1221
+ <userid>[[system://public_user]]</userid>
1222
+ </action>
1223
+
1224
+ <action>
1225
+ <action_id>create_metadata_field_wysiwyg_9865429140</action_id>
1226
+ <action_type>create_asset</action_type>
1227
+ <type_code>metadata_field_wysiwyg</type_code>
1228
+ <link_type>2</link_type>
1229
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
1230
+ <value></value>
1231
+ <is_dependant>1</is_dependant>
1232
+ <is_exclusive>0</is_exclusive>
1233
+ </action>
1234
+ <action>
1235
+ <action_id>set_metadata_field_wysiwyg_9865429140_name</action_id>
1236
+ <action_type>set_attribute_value</action_type>
1237
+ <asset>[[output://create_metadata_field_wysiwyg_9865429140.assetid]]</asset>
1238
+ <attribute>name</attribute>
1239
+ <value><![CDATA[col_2_2]]></value>
1240
+ </action>
1241
+ <action>
1242
+ <action_id>set_metadata_field_wysiwyg_9865429140_friendly_name</action_id>
1243
+ <action_type>set_attribute_value</action_type>
1244
+ <asset>[[output://create_metadata_field_wysiwyg_9865429140.assetid]]</asset>
1245
+ <attribute>friendly_name</attribute>
1246
+ <value><![CDATA[Row 2 - Column 2]]></value>
1247
+ </action>
1248
+ <action>
1249
+ <action_id>set_metadata_field_wysiwyg_9865429140_default</action_id>
1250
+ <action_type>set_attribute_value</action_type>
1251
+ <asset>[[output://create_metadata_field_wysiwyg_9865429140.assetid]]</asset>
1252
+ <attribute>default</attribute>
1253
+ <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>
1254
+ </action>
1255
+ <action>
1256
+ <action_id>set_metadata_field_wysiwyg_9865429140_description</action_id>
1257
+ <action_type>set_attribute_value</action_type>
1258
+ <asset>[[output://create_metadata_field_wysiwyg_9865429140.assetid]]</asset>
1259
+ <attribute>description</attribute>
1260
+ <value><![CDATA[]]></value>
1261
+ </action>
1262
+ <action>
1263
+ <action_id>set_metadata_field_wysiwyg_9865429140_editable</action_id>
1264
+ <action_type>set_attribute_value</action_type>
1265
+ <asset>[[output://create_metadata_field_wysiwyg_9865429140.assetid]]</asset>
1266
+ <attribute>editable</attribute>
1267
+ <value><![CDATA[1]]></value>
1268
+ </action>
1269
+ <action>
1270
+ <action_id>set_metadata_field_wysiwyg_9865429140_editable</action_id>
1271
+ <action_type>set_attribute_value</action_type>
1272
+ <asset>[[output://create_metadata_field_wysiwyg_9865429140.assetid]]</asset>
1273
+ <attribute>editable</attribute>
1274
+ <value><![CDATA[1]]></value>
1275
+ </action>
1276
+ <action>
1277
+ <action_id>set_metadata_field_wysiwyg_9865429140_required</action_id>
1278
+ <action_type>set_attribute_value</action_type>
1279
+ <asset>[[output://create_metadata_field_wysiwyg_9865429140.assetid]]</asset>
1280
+ <attribute>required</attribute>
1281
+ <value><![CDATA[0]]></value>
1282
+ </action>
1283
+ <action>
1284
+ <action_id>set_permission_9865429140_read_5</action_id>
1285
+ <action_type>set_permission</action_type>
1286
+ <asset>[[output://create_metadata_field_wysiwyg_9865429140.assetid]]</asset>
1287
+ <permission>1</permission>
1288
+ <granted>1</granted>
1289
+ <userid>[[system://public_user]]</userid>
1290
+ </action>
1291
+
1292
+ <action>
1293
+ <action_id>create_metadata_field_wysiwyg_9540835903</action_id>
1294
+ <action_type>create_asset</action_type>
1295
+ <type_code>metadata_field_wysiwyg</type_code>
1296
+ <link_type>2</link_type>
1297
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
1298
+ <value></value>
1299
+ <is_dependant>1</is_dependant>
1300
+ <is_exclusive>0</is_exclusive>
1301
+ </action>
1302
+ <action>
1303
+ <action_id>set_metadata_field_wysiwyg_9540835903_name</action_id>
1304
+ <action_type>set_attribute_value</action_type>
1305
+ <asset>[[output://create_metadata_field_wysiwyg_9540835903.assetid]]</asset>
1306
+ <attribute>name</attribute>
1307
+ <value><![CDATA[col_2_3]]></value>
1308
+ </action>
1309
+ <action>
1310
+ <action_id>set_metadata_field_wysiwyg_9540835903_friendly_name</action_id>
1311
+ <action_type>set_attribute_value</action_type>
1312
+ <asset>[[output://create_metadata_field_wysiwyg_9540835903.assetid]]</asset>
1313
+ <attribute>friendly_name</attribute>
1314
+ <value><![CDATA[Row 2 - Column 3]]></value>
1315
+ </action>
1316
+ <action>
1317
+ <action_id>set_metadata_field_wysiwyg_9540835903_default</action_id>
1318
+ <action_type>set_attribute_value</action_type>
1319
+ <asset>[[output://create_metadata_field_wysiwyg_9540835903.assetid]]</asset>
1320
+ <attribute>default</attribute>
1321
+ <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>
1322
+ </action>
1323
+ <action>
1324
+ <action_id>set_metadata_field_wysiwyg_9540835903_description</action_id>
1325
+ <action_type>set_attribute_value</action_type>
1326
+ <asset>[[output://create_metadata_field_wysiwyg_9540835903.assetid]]</asset>
1327
+ <attribute>description</attribute>
1328
+ <value><![CDATA[]]></value>
1329
+ </action>
1330
+ <action>
1331
+ <action_id>set_metadata_field_wysiwyg_9540835903_editable</action_id>
1332
+ <action_type>set_attribute_value</action_type>
1333
+ <asset>[[output://create_metadata_field_wysiwyg_9540835903.assetid]]</asset>
1334
+ <attribute>editable</attribute>
1335
+ <value><![CDATA[1]]></value>
1336
+ </action>
1337
+ <action>
1338
+ <action_id>set_metadata_field_wysiwyg_9540835903_editable</action_id>
1339
+ <action_type>set_attribute_value</action_type>
1340
+ <asset>[[output://create_metadata_field_wysiwyg_9540835903.assetid]]</asset>
1341
+ <attribute>editable</attribute>
1342
+ <value><![CDATA[1]]></value>
1343
+ </action>
1344
+ <action>
1345
+ <action_id>set_metadata_field_wysiwyg_9540835903_required</action_id>
1346
+ <action_type>set_attribute_value</action_type>
1347
+ <asset>[[output://create_metadata_field_wysiwyg_9540835903.assetid]]</asset>
1348
+ <attribute>required</attribute>
1349
+ <value><![CDATA[0]]></value>
1350
+ </action>
1351
+ <action>
1352
+ <action_id>set_permission_9540835903_read_5</action_id>
1353
+ <action_type>set_permission</action_type>
1354
+ <asset>[[output://create_metadata_field_wysiwyg_9540835903.assetid]]</asset>
1355
+ <permission>1</permission>
1356
+ <granted>1</granted>
1357
+ <userid>[[system://public_user]]</userid>
1358
+ </action>
1359
+
1360
+ <action>
1361
+ <action_id>create_metadata_field_wysiwyg_9854475674</action_id>
1362
+ <action_type>create_asset</action_type>
1363
+ <type_code>metadata_field_wysiwyg</type_code>
1364
+ <link_type>2</link_type>
1365
+ <parentid>[[output://create_Metadata_Section_5116242987.assetid]]</parentid>
1366
+ <value></value>
1367
+ <is_dependant>1</is_dependant>
1368
+ <is_exclusive>0</is_exclusive>
1369
+ </action>
1370
+ <action>
1371
+ <action_id>set_metadata_field_wysiwyg_9854475674_name</action_id>
1372
+ <action_type>set_attribute_value</action_type>
1373
+ <asset>[[output://create_metadata_field_wysiwyg_9854475674.assetid]]</asset>
1374
+ <attribute>name</attribute>
1375
+ <value><![CDATA[col_3_1]]></value>
1376
+ </action>
1377
+ <action>
1378
+ <action_id>set_metadata_field_wysiwyg_9854475674_friendly_name</action_id>
1379
+ <action_type>set_attribute_value</action_type>
1380
+ <asset>[[output://create_metadata_field_wysiwyg_9854475674.assetid]]</asset>
1381
+ <attribute>friendly_name</attribute>
1382
+ <value><![CDATA[Row 3 - Column 1]]></value>
1383
+ </action>
1384
+ <action>
1385
+ <action_id>set_metadata_field_wysiwyg_9854475674_default</action_id>
1386
+ <action_type>set_attribute_value</action_type>
1387
+ <asset>[[output://create_metadata_field_wysiwyg_9854475674.assetid]]</asset>
1388
+ <attribute>default</attribute>
1389
+ <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>
1390
+ </action>
1391
+ <action>
1392
+ <action_id>set_metadata_field_wysiwyg_9854475674_description</action_id>
1393
+ <action_type>set_attribute_value</action_type>
1394
+ <asset>[[output://create_metadata_field_wysiwyg_9854475674.assetid]]</asset>
1395
+ <attribute>description</attribute>
1396
+ <value><![CDATA[]]></value>
1397
+ </action>
1398
+ <action>
1399
+ <action_id>set_metadata_field_wysiwyg_9854475674_editable</action_id>
1400
+ <action_type>set_attribute_value</action_type>
1401
+ <asset>[[output://create_metadata_field_wysiwyg_9854475674.assetid]]</asset>
1402
+ <attribute>editable</attribute>
1403
+ <value><![CDATA[1]]></value>
1404
+ </action>
1405
+ <action>
1406
+ <action_id>set_metadata_field_wysiwyg_9854475674_editable</action_id>
1407
+ <action_type>set_attribute_value</action_type>
1408
+ <asset>[[output://create_metadata_field_wysiwyg_9854475674.assetid]]</asset>
1409
+ <attribute>editable</attribute>
1410
+ <value><![CDATA[1]]></value>
1411
+ </action>
1412
+ <action>
1413
+ <action_id>set_metadata_field_wysiwyg_9854475674_required</action_id>
1414
+ <action_type>set_attribute_value</action_type>
1415
+ <asset>[[output://create_metadata_field_wysiwyg_9854475674.assetid]]</asset>
1416
+ <attribute>required</attribute>
1417
+ <value><![CDATA[0]]></value>
1418
+ </action>
1419
+ <action>
1420
+ <action_id>set_permission_9854475674_read_5</action_id>
1421
+ <action_type>set_permission</action_type>
1422
+ <asset>[[output://create_metadata_field_wysiwyg_9854475674.assetid]]</asset>
1423
+ <permission>1</permission>
1424
+ <granted>1</granted>
1425
+ <userid>[[system://public_user]]</userid>
1426
+ </action>
1427
+
1428
+ <action>
1429
+ <action_id>create_metadata_field_wysiwyg_9975490528</action_id>
1430
+ <action_type>create_asset</action_type>
1431
+ <type_code>metadata_field_wysiwyg</type_code>
1432
+ <link_type>2</link_type>
1433
+ <parentid>[[output://create_Metadata_Section_5116242987.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_wysiwyg_9975490528_name</action_id>
1440
+ <action_type>set_attribute_value</action_type>
1441
+ <asset>[[output://create_metadata_field_wysiwyg_9975490528.assetid]]</asset>
1442
+ <attribute>name</attribute>
1443
+ <value><![CDATA[col_3_2]]></value>
1444
+ </action>
1445
+ <action>
1446
+ <action_id>set_metadata_field_wysiwyg_9975490528_friendly_name</action_id>
1447
+ <action_type>set_attribute_value</action_type>
1448
+ <asset>[[output://create_metadata_field_wysiwyg_9975490528.assetid]]</asset>
1449
+ <attribute>friendly_name</attribute>
1450
+ <value><![CDATA[Row 3 - Column 2]]></value>
1451
+ </action>
1452
+ <action>
1453
+ <action_id>set_metadata_field_wysiwyg_9975490528_default</action_id>
1454
+ <action_type>set_attribute_value</action_type>
1455
+ <asset>[[output://create_metadata_field_wysiwyg_9975490528.assetid]]</asset>
1456
+ <attribute>default</attribute>
1457
+ <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>
1458
+ </action>
1459
+ <action>
1460
+ <action_id>set_metadata_field_wysiwyg_9975490528_description</action_id>
1461
+ <action_type>set_attribute_value</action_type>
1462
+ <asset>[[output://create_metadata_field_wysiwyg_9975490528.assetid]]</asset>
1463
+ <attribute>description</attribute>
1464
+ <value><![CDATA[]]></value>
1465
+ </action>
1466
+ <action>
1467
+ <action_id>set_metadata_field_wysiwyg_9975490528_editable</action_id>
1468
+ <action_type>set_attribute_value</action_type>
1469
+ <asset>[[output://create_metadata_field_wysiwyg_9975490528.assetid]]</asset>
1470
+ <attribute>editable</attribute>
1471
+ <value><![CDATA[1]]></value>
1472
+ </action>
1473
+ <action>
1474
+ <action_id>set_metadata_field_wysiwyg_9975490528_editable</action_id>
1475
+ <action_type>set_attribute_value</action_type>
1476
+ <asset>[[output://create_metadata_field_wysiwyg_9975490528.assetid]]</asset>
1477
+ <attribute>editable</attribute>
1478
+ <value><![CDATA[1]]></value>
1479
+ </action>
1480
+ <action>
1481
+ <action_id>set_metadata_field_wysiwyg_9975490528_required</action_id>
1482
+ <action_type>set_attribute_value</action_type>
1483
+ <asset>[[output://create_metadata_field_wysiwyg_9975490528.assetid]]</asset>
1484
+ <attribute>required</attribute>
1485
+ <value><![CDATA[0]]></value>
1486
+ </action>
1487
+ <action>
1488
+ <action_id>set_permission_9975490528_read_5</action_id>
1489
+ <action_type>set_permission</action_type>
1490
+ <asset>[[output://create_metadata_field_wysiwyg_9975490528.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_wysiwyg_5461091440</action_id>
1498
+ <action_type>create_asset</action_type>
1499
+ <type_code>metadata_field_wysiwyg</type_code>
1500
+ <link_type>2</link_type>
1501
+ <parentid>[[output://create_Metadata_Section_5116242987.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_wysiwyg_5461091440_name</action_id>
1508
+ <action_type>set_attribute_value</action_type>
1509
+ <asset>[[output://create_metadata_field_wysiwyg_5461091440.assetid]]</asset>
1510
+ <attribute>name</attribute>
1511
+ <value><![CDATA[col_3_3]]></value>
1512
+ </action>
1513
+ <action>
1514
+ <action_id>set_metadata_field_wysiwyg_5461091440_friendly_name</action_id>
1515
+ <action_type>set_attribute_value</action_type>
1516
+ <asset>[[output://create_metadata_field_wysiwyg_5461091440.assetid]]</asset>
1517
+ <attribute>friendly_name</attribute>
1518
+ <value><![CDATA[Row 3 - Column 3]]></value>
1519
+ </action>
1520
+ <action>
1521
+ <action_id>set_metadata_field_wysiwyg_5461091440_default</action_id>
1522
+ <action_type>set_attribute_value</action_type>
1523
+ <asset>[[output://create_metadata_field_wysiwyg_5461091440.assetid]]</asset>
1524
+ <attribute>default</attribute>
1525
+ <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>
1526
+ </action>
1527
+ <action>
1528
+ <action_id>set_metadata_field_wysiwyg_5461091440_description</action_id>
1529
+ <action_type>set_attribute_value</action_type>
1530
+ <asset>[[output://create_metadata_field_wysiwyg_5461091440.assetid]]</asset>
1531
+ <attribute>description</attribute>
1532
+ <value><![CDATA[]]></value>
1533
+ </action>
1534
+ <action>
1535
+ <action_id>set_metadata_field_wysiwyg_5461091440_editable</action_id>
1536
+ <action_type>set_attribute_value</action_type>
1537
+ <asset>[[output://create_metadata_field_wysiwyg_5461091440.assetid]]</asset>
1538
+ <attribute>editable</attribute>
1539
+ <value><![CDATA[1]]></value>
1540
+ </action>
1541
+ <action>
1542
+ <action_id>set_metadata_field_wysiwyg_5461091440_editable</action_id>
1543
+ <action_type>set_attribute_value</action_type>
1544
+ <asset>[[output://create_metadata_field_wysiwyg_5461091440.assetid]]</asset>
1545
+ <attribute>editable</attribute>
1546
+ <value><![CDATA[1]]></value>
1547
+ </action>
1548
+ <action>
1549
+ <action_id>set_metadata_field_wysiwyg_5461091440_required</action_id>
1550
+ <action_type>set_attribute_value</action_type>
1551
+ <asset>[[output://create_metadata_field_wysiwyg_5461091440.assetid]]</asset>
1552
+ <attribute>required</attribute>
1553
+ <value><![CDATA[0]]></value>
1554
+ </action>
1555
+ <action>
1556
+ <action_id>set_permission_5461091440_read_5</action_id>
1557
+ <action_type>set_permission</action_type>
1558
+ <asset>[[output://create_metadata_field_wysiwyg_5461091440.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_1658505643</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_5116242987.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_1658505643_name</action_id>
1576
+ <action_type>set_attribute_value</action_type>
1577
+ <asset>[[output://create_metadata_field_text_1658505643.assetid]]</asset>
1578
+ <attribute>name</attribute>
1579
+ <value><![CDATA[id_field]]></value>
1580
+ </action>
1581
+ <action>
1582
+ <action_id>set_metadata_field_text_1658505643_friendly_name</action_id>
1583
+ <action_type>set_attribute_value</action_type>
1584
+ <asset>[[output://create_metadata_field_text_1658505643.assetid]]</asset>
1585
+ <attribute>friendly_name</attribute>
1586
+ <value><![CDATA[Id field]]></value>
1587
+ </action>
1588
+ <action>
1589
+ <action_id>set_metadata_field_text_1658505643_default</action_id>
1590
+ <action_type>set_attribute_value</action_type>
1591
+ <asset>[[output://create_metadata_field_text_1658505643.assetid]]</asset>
1592
+ <attribute>default</attribute>
1593
+ <value><![CDATA[]]></value>
1594
+ </action>
1595
+ <action>
1596
+ <action_id>set_metadata_field_text_1658505643_description</action_id>
1597
+ <action_type>set_attribute_value</action_type>
1598
+ <asset>[[output://create_metadata_field_text_1658505643.assetid]]</asset>
1599
+ <attribute>description</attribute>
1600
+ <value><![CDATA[]]></value>
1601
+ </action>
1602
+ <action>
1603
+ <action_id>set_metadata_field_text_1658505643_editable</action_id>
1604
+ <action_type>set_attribute_value</action_type>
1605
+ <asset>[[output://create_metadata_field_text_1658505643.assetid]]</asset>
1606
+ <attribute>editable</attribute>
1607
+ <value><![CDATA[1]]></value>
1608
+ </action>
1609
+ <action>
1610
+ <action_id>set_metadata_field_text_1658505643_editable</action_id>
1611
+ <action_type>set_attribute_value</action_type>
1612
+ <asset>[[output://create_metadata_field_text_1658505643.assetid]]</asset>
1613
+ <attribute>editable</attribute>
1614
+ <value><![CDATA[1]]></value>
1615
+ </action>
1616
+ <action>
1617
+ <action_id>set_metadata_field_text_1658505643_required</action_id>
1618
+ <action_type>set_attribute_value</action_type>
1619
+ <asset>[[output://create_metadata_field_text_1658505643.assetid]]</asset>
1620
+ <attribute>required</attribute>
1621
+ <value><![CDATA[0]]></value>
1622
+ </action>
1623
+ <action>
1624
+ <action_id>set_permission_1658505643_read_5</action_id>
1625
+ <action_type>set_permission</action_type>
1626
+ <asset>[[output://create_metadata_field_text_1658505643.assetid]]</asset>
1627
+ <permission>1</permission>
1628
+ <granted>1</granted>
1629
+ <userid>[[system://public_user]]</userid>
1630
+ </action>
1631
+ </actions>