@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,953 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <actions>
3
+ <action>
4
+ <action_id>create_Content_Container_Template_4472062875</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_4472062875_name</action_id>
15
+ <action_type>set_attribute_value</action_type>
16
+ <asset>[[output://create_Content_Container_Template_4472062875.assetid]]</asset>
17
+ <attribute>name</attribute>
18
+ <value><![CDATA[Callout]]></value>
19
+ </action>
20
+
21
+ <action>
22
+ <action_id>set_Content_Container_Template_4472062875_edit_interface_in_admin</action_id>
23
+ <action_type>set_attribute_value</action_type>
24
+ <asset>[[output://create_Content_Container_Template_4472062875.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_4472062875_icon_color</action_id>
31
+ <action_type>set_attribute_value</action_type>
32
+ <asset>[[output://create_Content_Container_Template_4472062875.assetid]]</asset>
33
+ <attribute>icon_color</attribute>
34
+ <value><![CDATA[blue]]></value>
35
+ </action>
36
+
37
+ <action>
38
+ <action_id>create_Metadata_Schema_4682554652</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_4472062875.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_4682554652_name</action_id>
49
+ <action_type>set_attribute_value</action_type>
50
+ <asset>[[output://create_Metadata_Schema_4682554652.assetid]]</asset>
51
+ <attribute>name</attribute>
52
+ <value><![CDATA[Callout]]></value>
53
+ </action>
54
+ <action>
55
+ <action_id>set_permission_4682554652_read_5</action_id>
56
+ <action_type>set_permission</action_type>
57
+ <asset>[[output://create_Metadata_Schema_4682554652.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_6330020016</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_4682554652.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_6330020016_path</action_id>
75
+ <action_type>add_web_path</action_type>
76
+ <asset>[[output://create_Metadata_Section_6330020016.assetid]]</asset>
77
+ <parent_asset>[[output://create_Metadata_Schema_4682554652.assetid]]</parent_asset>
78
+ <path>settings</path>
79
+ </action>
80
+ <action>
81
+ <action_id>set_Metadata_Section_6330020016_name</action_id>
82
+ <action_type>set_attribute_value</action_type>
83
+ <asset>[[output://create_Metadata_Section_6330020016.assetid]]</asset>
84
+ <attribute>name</attribute>
85
+ <value><![CDATA[Settings]]></value>
86
+ </action>
87
+ <action>
88
+ <action_id>set_permission_6330020016_read_5</action_id>
89
+ <action_type>set_permission</action_type>
90
+ <asset>[[output://create_Metadata_Section_6330020016.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_2571795675</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_6330020016.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_2571795675_name</action_id>
108
+ <action_type>set_attribute_value</action_type>
109
+ <asset>[[output://create_metadata_field_select_2571795675.assetid]]</asset>
110
+ <attribute>name</attribute>
111
+ <value><![CDATA[type]]></value>
112
+ </action>
113
+ <action>
114
+ <action_id>set_metadata_field_select_2571795675_friendly_name</action_id>
115
+ <action_type>set_attribute_value</action_type>
116
+ <asset>[[output://create_metadata_field_select_2571795675.assetid]]</asset>
117
+ <attribute>friendly_name</attribute>
118
+ <value><![CDATA[Type]]></value>
119
+ </action>
120
+ <action>
121
+ <action_id>set_metadata_field_select_2571795675_default</action_id>
122
+ <action_type>set_attribute_value</action_type>
123
+ <asset>[[output://create_metadata_field_select_2571795675.assetid]]</asset>
124
+ <attribute>default</attribute>
125
+ <value><![CDATA[]]></value>
126
+ </action>
127
+ <action>
128
+ <action_id>set_metadata_field_select_2571795675_description</action_id>
129
+ <action_type>set_attribute_value</action_type>
130
+ <asset>[[output://create_metadata_field_select_2571795675.assetid]]</asset>
131
+ <attribute>description</attribute>
132
+ <value><![CDATA[]]></value>
133
+ </action>
134
+ <action>
135
+ <action_id>set_metadata_field_select_2571795675_editable</action_id>
136
+ <action_type>set_attribute_value</action_type>
137
+ <asset>[[output://create_metadata_field_select_2571795675.assetid]]</asset>
138
+ <attribute>editable</attribute>
139
+ <value><![CDATA[1]]></value>
140
+ </action>
141
+ <action>
142
+ <action_id>set_metadata_field_select_2571795675_editable</action_id>
143
+ <action_type>set_attribute_value</action_type>
144
+ <asset>[[output://create_metadata_field_select_2571795675.assetid]]</asset>
145
+ <attribute>editable</attribute>
146
+ <value><![CDATA[1]]></value>
147
+ </action>
148
+ <action>
149
+ <action_id>set_metadata_field_select_2571795675_required</action_id>
150
+ <action_type>set_attribute_value</action_type>
151
+ <asset>[[output://create_metadata_field_select_2571795675.assetid]]</asset>
152
+ <attribute>required</attribute>
153
+ <value><![CDATA[0]]></value>
154
+ </action>
155
+ <action>
156
+ <action_id>set_permission_2571795675_read_5</action_id>
157
+ <action_type>set_permission</action_type>
158
+ <asset>[[output://create_metadata_field_select_2571795675.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_2571795675_select_options</action_id>
166
+ <action_type>set_attribute_value</action_type>
167
+ <asset>[[output://create_metadata_field_select_2571795675.assetid]]</asset>
168
+ <attribute>select_options</attribute>
169
+ <value><![CDATA[array ('' => 'Callout','qld__callout--calendar-event' => 'Calendar',);]]></value>
170
+ </action>
171
+ <action>
172
+ <action_id>set_{f.type}_2571795675_edit_params</action_id>
173
+ <action_type>set_attribute_value</action_type>
174
+ <asset>[[output://create_metadata_field_select_2571795675.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_6206489192</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_6330020016.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_6206489192_name</action_id>
198
+ <action_type>set_attribute_value</action_type>
199
+ <asset>[[output://create_metadata_field_select_6206489192.assetid]]</asset>
200
+ <attribute>name</attribute>
201
+ <value><![CDATA[body_background]]></value>
202
+ </action>
203
+ <action>
204
+ <action_id>set_metadata_field_select_6206489192_friendly_name</action_id>
205
+ <action_type>set_attribute_value</action_type>
206
+ <asset>[[output://create_metadata_field_select_6206489192.assetid]]</asset>
207
+ <attribute>friendly_name</attribute>
208
+ <value><![CDATA[Body Background colour]]></value>
209
+ </action>
210
+ <action>
211
+ <action_id>set_metadata_field_select_6206489192_default</action_id>
212
+ <action_type>set_attribute_value</action_type>
213
+ <asset>[[output://create_metadata_field_select_6206489192.assetid]]</asset>
214
+ <attribute>default</attribute>
215
+ <value><![CDATA[]]></value>
216
+ </action>
217
+ <action>
218
+ <action_id>set_metadata_field_select_6206489192_description</action_id>
219
+ <action_type>set_attribute_value</action_type>
220
+ <asset>[[output://create_metadata_field_select_6206489192.assetid]]</asset>
221
+ <attribute>description</attribute>
222
+ <value><![CDATA[]]></value>
223
+ </action>
224
+ <action>
225
+ <action_id>set_metadata_field_select_6206489192_editable</action_id>
226
+ <action_type>set_attribute_value</action_type>
227
+ <asset>[[output://create_metadata_field_select_6206489192.assetid]]</asset>
228
+ <attribute>editable</attribute>
229
+ <value><![CDATA[1]]></value>
230
+ </action>
231
+ <action>
232
+ <action_id>set_metadata_field_select_6206489192_editable</action_id>
233
+ <action_type>set_attribute_value</action_type>
234
+ <asset>[[output://create_metadata_field_select_6206489192.assetid]]</asset>
235
+ <attribute>editable</attribute>
236
+ <value><![CDATA[1]]></value>
237
+ </action>
238
+ <action>
239
+ <action_id>set_metadata_field_select_6206489192_required</action_id>
240
+ <action_type>set_attribute_value</action_type>
241
+ <asset>[[output://create_metadata_field_select_6206489192.assetid]]</asset>
242
+ <attribute>required</attribute>
243
+ <value><![CDATA[0]]></value>
244
+ </action>
245
+ <action>
246
+ <action_id>set_permission_6206489192_read_5</action_id>
247
+ <action_type>set_permission</action_type>
248
+ <asset>[[output://create_metadata_field_select_6206489192.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_6206489192_select_options</action_id>
256
+ <action_type>set_attribute_value</action_type>
257
+ <asset>[[output://create_metadata_field_select_6206489192.assetid]]</asset>
258
+ <attribute>select_options</attribute>
259
+ <value><![CDATA[array ('' => 'Light','qld__body--dark' => 'Dark',);]]></value>
260
+ </action>
261
+ <action>
262
+ <action_id>set_{f.type}_6206489192_edit_params</action_id>
263
+ <action_type>set_attribute_value</action_type>
264
+ <asset>[[output://create_metadata_field_select_6206489192.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_9597419698</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_6330020016.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_9597419698_name</action_id>
288
+ <action_type>set_attribute_value</action_type>
289
+ <asset>[[output://create_metadata_field_select_9597419698.assetid]]</asset>
290
+ <attribute>name</attribute>
291
+ <value><![CDATA[background]]></value>
292
+ </action>
293
+ <action>
294
+ <action_id>set_metadata_field_select_9597419698_friendly_name</action_id>
295
+ <action_type>set_attribute_value</action_type>
296
+ <asset>[[output://create_metadata_field_select_9597419698.assetid]]</asset>
297
+ <attribute>friendly_name</attribute>
298
+ <value><![CDATA[Callout Background colour]]></value>
299
+ </action>
300
+ <action>
301
+ <action_id>set_metadata_field_select_9597419698_default</action_id>
302
+ <action_type>set_attribute_value</action_type>
303
+ <asset>[[output://create_metadata_field_select_9597419698.assetid]]</asset>
304
+ <attribute>default</attribute>
305
+ <value><![CDATA[]]></value>
306
+ </action>
307
+ <action>
308
+ <action_id>set_metadata_field_select_9597419698_description</action_id>
309
+ <action_type>set_attribute_value</action_type>
310
+ <asset>[[output://create_metadata_field_select_9597419698.assetid]]</asset>
311
+ <attribute>description</attribute>
312
+ <value><![CDATA[]]></value>
313
+ </action>
314
+ <action>
315
+ <action_id>set_metadata_field_select_9597419698_editable</action_id>
316
+ <action_type>set_attribute_value</action_type>
317
+ <asset>[[output://create_metadata_field_select_9597419698.assetid]]</asset>
318
+ <attribute>editable</attribute>
319
+ <value><![CDATA[1]]></value>
320
+ </action>
321
+ <action>
322
+ <action_id>set_metadata_field_select_9597419698_editable</action_id>
323
+ <action_type>set_attribute_value</action_type>
324
+ <asset>[[output://create_metadata_field_select_9597419698.assetid]]</asset>
325
+ <attribute>editable</attribute>
326
+ <value><![CDATA[1]]></value>
327
+ </action>
328
+ <action>
329
+ <action_id>set_metadata_field_select_9597419698_required</action_id>
330
+ <action_type>set_attribute_value</action_type>
331
+ <asset>[[output://create_metadata_field_select_9597419698.assetid]]</asset>
332
+ <attribute>required</attribute>
333
+ <value><![CDATA[0]]></value>
334
+ </action>
335
+ <action>
336
+ <action_id>set_permission_9597419698_read_5</action_id>
337
+ <action_type>set_permission</action_type>
338
+ <asset>[[output://create_metadata_field_select_9597419698.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_9597419698_select_options</action_id>
346
+ <action_type>set_attribute_value</action_type>
347
+ <asset>[[output://create_metadata_field_select_9597419698.assetid]]</asset>
348
+ <attribute>select_options</attribute>
349
+ <value><![CDATA[array ('' => 'Light','qld__callout--dark' => 'Dark',);]]></value>
350
+ </action>
351
+ <action>
352
+ <action_id>set_{f.type}_9597419698_edit_params</action_id>
353
+ <action_type>set_attribute_value</action_type>
354
+ <asset>[[output://create_metadata_field_select_9597419698.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_select_2850209640</action_id>
368
+ <action_type>create_asset</action_type>
369
+ <type_code>metadata_field_select</type_code>
370
+ <link_type>2</link_type>
371
+ <parentid>[[output://create_Metadata_Section_6330020016.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_select_2850209640_name</action_id>
378
+ <action_type>set_attribute_value</action_type>
379
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
380
+ <attribute>name</attribute>
381
+ <value><![CDATA[theme]]></value>
382
+ </action>
383
+ <action>
384
+ <action_id>set_metadata_field_select_2850209640_friendly_name</action_id>
385
+ <action_type>set_attribute_value</action_type>
386
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
387
+ <attribute>friendly_name</attribute>
388
+ <value><![CDATA[Colours]]></value>
389
+ </action>
390
+ <action>
391
+ <action_id>set_metadata_field_select_2850209640_default</action_id>
392
+ <action_type>set_attribute_value</action_type>
393
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
394
+ <attribute>default</attribute>
395
+ <value><![CDATA[]]></value>
396
+ </action>
397
+ <action>
398
+ <action_id>set_metadata_field_select_2850209640_description</action_id>
399
+ <action_type>set_attribute_value</action_type>
400
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
401
+ <attribute>description</attribute>
402
+ <value><![CDATA[]]></value>
403
+ </action>
404
+ <action>
405
+ <action_id>set_metadata_field_select_2850209640_editable</action_id>
406
+ <action_type>set_attribute_value</action_type>
407
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
408
+ <attribute>editable</attribute>
409
+ <value><![CDATA[1]]></value>
410
+ </action>
411
+ <action>
412
+ <action_id>set_metadata_field_select_2850209640_editable</action_id>
413
+ <action_type>set_attribute_value</action_type>
414
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
415
+ <attribute>editable</attribute>
416
+ <value><![CDATA[1]]></value>
417
+ </action>
418
+ <action>
419
+ <action_id>set_metadata_field_select_2850209640_required</action_id>
420
+ <action_type>set_attribute_value</action_type>
421
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
422
+ <attribute>required</attribute>
423
+ <value><![CDATA[0]]></value>
424
+ </action>
425
+ <action>
426
+ <action_id>set_permission_2850209640_read_5</action_id>
427
+ <action_type>set_permission</action_type>
428
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
429
+ <permission>1</permission>
430
+ <granted>1</granted>
431
+ <userid>[[system://public_user]]</userid>
432
+ </action>
433
+
434
+ <action>
435
+ <action_id>set_metadata_field_select_2850209640_select_options</action_id>
436
+ <action_type>set_attribute_value</action_type>
437
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
438
+ <attribute>select_options</attribute>
439
+ <value><![CDATA[array ('' => 'Default','qld__callout--alt' => 'Alternate',);]]></value>
440
+ </action>
441
+ <action>
442
+ <action_id>set_{f.type}_2850209640_edit_params</action_id>
443
+ <action_type>set_attribute_value</action_type>
444
+ <asset>[[output://create_metadata_field_select_2850209640.assetid]]</asset>
445
+ <attribute>edit_params</attribute>
446
+ <value><![CDATA[array (
447
+ 'style' => 'list',
448
+ 'type' => 'table',
449
+ 'height' => '',
450
+ 'columns' => '1',
451
+ 'empty_text' => '',
452
+ 'extras' => '',
453
+ );]]></value>
454
+ </action>
455
+
456
+ <action>
457
+ <action_id>create_metadata_field_text_381304866</action_id>
458
+ <action_type>create_asset</action_type>
459
+ <type_code>metadata_field_text</type_code>
460
+ <link_type>2</link_type>
461
+ <parentid>[[output://create_Metadata_Section_6330020016.assetid]]</parentid>
462
+ <value></value>
463
+ <is_dependant>1</is_dependant>
464
+ <is_exclusive>0</is_exclusive>
465
+ </action>
466
+ <action>
467
+ <action_id>set_metadata_field_text_381304866_name</action_id>
468
+ <action_type>set_attribute_value</action_type>
469
+ <asset>[[output://create_metadata_field_text_381304866.assetid]]</asset>
470
+ <attribute>name</attribute>
471
+ <value><![CDATA[heading]]></value>
472
+ </action>
473
+ <action>
474
+ <action_id>set_metadata_field_text_381304866_friendly_name</action_id>
475
+ <action_type>set_attribute_value</action_type>
476
+ <asset>[[output://create_metadata_field_text_381304866.assetid]]</asset>
477
+ <attribute>friendly_name</attribute>
478
+ <value><![CDATA[Heading]]></value>
479
+ </action>
480
+ <action>
481
+ <action_id>set_metadata_field_text_381304866_default</action_id>
482
+ <action_type>set_attribute_value</action_type>
483
+ <asset>[[output://create_metadata_field_text_381304866.assetid]]</asset>
484
+ <attribute>default</attribute>
485
+ <value><![CDATA[Callout heading]]></value>
486
+ </action>
487
+ <action>
488
+ <action_id>set_metadata_field_text_381304866_description</action_id>
489
+ <action_type>set_attribute_value</action_type>
490
+ <asset>[[output://create_metadata_field_text_381304866.assetid]]</asset>
491
+ <attribute>description</attribute>
492
+ <value><![CDATA[]]></value>
493
+ </action>
494
+ <action>
495
+ <action_id>set_metadata_field_text_381304866_editable</action_id>
496
+ <action_type>set_attribute_value</action_type>
497
+ <asset>[[output://create_metadata_field_text_381304866.assetid]]</asset>
498
+ <attribute>editable</attribute>
499
+ <value><![CDATA[1]]></value>
500
+ </action>
501
+ <action>
502
+ <action_id>set_metadata_field_text_381304866_editable</action_id>
503
+ <action_type>set_attribute_value</action_type>
504
+ <asset>[[output://create_metadata_field_text_381304866.assetid]]</asset>
505
+ <attribute>editable</attribute>
506
+ <value><![CDATA[1]]></value>
507
+ </action>
508
+ <action>
509
+ <action_id>set_metadata_field_text_381304866_required</action_id>
510
+ <action_type>set_attribute_value</action_type>
511
+ <asset>[[output://create_metadata_field_text_381304866.assetid]]</asset>
512
+ <attribute>required</attribute>
513
+ <value><![CDATA[0]]></value>
514
+ </action>
515
+ <action>
516
+ <action_id>set_permission_381304866_read_5</action_id>
517
+ <action_type>set_permission</action_type>
518
+ <asset>[[output://create_metadata_field_text_381304866.assetid]]</asset>
519
+ <permission>1</permission>
520
+ <granted>1</granted>
521
+ <userid>[[system://public_user]]</userid>
522
+ </action>
523
+
524
+ <action>
525
+ <action_id>create_metadata_field_select_6842919504</action_id>
526
+ <action_type>create_asset</action_type>
527
+ <type_code>metadata_field_select</type_code>
528
+ <link_type>2</link_type>
529
+ <parentid>[[output://create_Metadata_Section_6330020016.assetid]]</parentid>
530
+ <value></value>
531
+ <is_dependant>1</is_dependant>
532
+ <is_exclusive>0</is_exclusive>
533
+ </action>
534
+ <action>
535
+ <action_id>set_metadata_field_select_6842919504_name</action_id>
536
+ <action_type>set_attribute_value</action_type>
537
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
538
+ <attribute>name</attribute>
539
+ <value><![CDATA[heading_visible]]></value>
540
+ </action>
541
+ <action>
542
+ <action_id>set_metadata_field_select_6842919504_friendly_name</action_id>
543
+ <action_type>set_attribute_value</action_type>
544
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
545
+ <attribute>friendly_name</attribute>
546
+ <value><![CDATA[Show heading?]]></value>
547
+ </action>
548
+ <action>
549
+ <action_id>set_metadata_field_select_6842919504_default</action_id>
550
+ <action_type>set_attribute_value</action_type>
551
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
552
+ <attribute>default</attribute>
553
+ <value><![CDATA[]]></value>
554
+ </action>
555
+ <action>
556
+ <action_id>set_metadata_field_select_6842919504_description</action_id>
557
+ <action_type>set_attribute_value</action_type>
558
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
559
+ <attribute>description</attribute>
560
+ <value><![CDATA[]]></value>
561
+ </action>
562
+ <action>
563
+ <action_id>set_metadata_field_select_6842919504_editable</action_id>
564
+ <action_type>set_attribute_value</action_type>
565
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
566
+ <attribute>editable</attribute>
567
+ <value><![CDATA[1]]></value>
568
+ </action>
569
+ <action>
570
+ <action_id>set_metadata_field_select_6842919504_editable</action_id>
571
+ <action_type>set_attribute_value</action_type>
572
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
573
+ <attribute>editable</attribute>
574
+ <value><![CDATA[1]]></value>
575
+ </action>
576
+ <action>
577
+ <action_id>set_metadata_field_select_6842919504_required</action_id>
578
+ <action_type>set_attribute_value</action_type>
579
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
580
+ <attribute>required</attribute>
581
+ <value><![CDATA[0]]></value>
582
+ </action>
583
+ <action>
584
+ <action_id>set_permission_6842919504_read_5</action_id>
585
+ <action_type>set_permission</action_type>
586
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
587
+ <permission>1</permission>
588
+ <granted>1</granted>
589
+ <userid>[[system://public_user]]</userid>
590
+ </action>
591
+
592
+ <action>
593
+ <action_id>set_metadata_field_select_6842919504_select_options</action_id>
594
+ <action_type>set_attribute_value</action_type>
595
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
596
+ <attribute>select_options</attribute>
597
+ <value><![CDATA[array ('' => 'Yes','qld__callout__heading--sronly' => 'No',);]]></value>
598
+ </action>
599
+ <action>
600
+ <action_id>set_{f.type}_6842919504_edit_params</action_id>
601
+ <action_type>set_attribute_value</action_type>
602
+ <asset>[[output://create_metadata_field_select_6842919504.assetid]]</asset>
603
+ <attribute>edit_params</attribute>
604
+ <value><![CDATA[array (
605
+ 'style' => 'list',
606
+ 'type' => 'table',
607
+ 'height' => '',
608
+ 'columns' => '1',
609
+ 'empty_text' => '',
610
+ 'extras' => '',
611
+ );]]></value>
612
+ </action>
613
+
614
+ <action>
615
+ <action_id>create_metadata_field_wysiwyg_7110997517</action_id>
616
+ <action_type>create_asset</action_type>
617
+ <type_code>metadata_field_wysiwyg</type_code>
618
+ <link_type>2</link_type>
619
+ <parentid>[[output://create_Metadata_Section_6330020016.assetid]]</parentid>
620
+ <value></value>
621
+ <is_dependant>1</is_dependant>
622
+ <is_exclusive>0</is_exclusive>
623
+ </action>
624
+ <action>
625
+ <action_id>set_metadata_field_wysiwyg_7110997517_name</action_id>
626
+ <action_type>set_attribute_value</action_type>
627
+ <asset>[[output://create_metadata_field_wysiwyg_7110997517.assetid]]</asset>
628
+ <attribute>name</attribute>
629
+ <value><![CDATA[body]]></value>
630
+ </action>
631
+ <action>
632
+ <action_id>set_metadata_field_wysiwyg_7110997517_friendly_name</action_id>
633
+ <action_type>set_attribute_value</action_type>
634
+ <asset>[[output://create_metadata_field_wysiwyg_7110997517.assetid]]</asset>
635
+ <attribute>friendly_name</attribute>
636
+ <value><![CDATA[Body]]></value>
637
+ </action>
638
+ <action>
639
+ <action_id>set_metadata_field_wysiwyg_7110997517_default</action_id>
640
+ <action_type>set_attribute_value</action_type>
641
+ <asset>[[output://create_metadata_field_wysiwyg_7110997517.assetid]]</asset>
642
+ <attribute>default</attribute>
643
+ <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>
644
+ </action>
645
+ <action>
646
+ <action_id>set_metadata_field_wysiwyg_7110997517_description</action_id>
647
+ <action_type>set_attribute_value</action_type>
648
+ <asset>[[output://create_metadata_field_wysiwyg_7110997517.assetid]]</asset>
649
+ <attribute>description</attribute>
650
+ <value><![CDATA[]]></value>
651
+ </action>
652
+ <action>
653
+ <action_id>set_metadata_field_wysiwyg_7110997517_editable</action_id>
654
+ <action_type>set_attribute_value</action_type>
655
+ <asset>[[output://create_metadata_field_wysiwyg_7110997517.assetid]]</asset>
656
+ <attribute>editable</attribute>
657
+ <value><![CDATA[1]]></value>
658
+ </action>
659
+ <action>
660
+ <action_id>set_metadata_field_wysiwyg_7110997517_editable</action_id>
661
+ <action_type>set_attribute_value</action_type>
662
+ <asset>[[output://create_metadata_field_wysiwyg_7110997517.assetid]]</asset>
663
+ <attribute>editable</attribute>
664
+ <value><![CDATA[1]]></value>
665
+ </action>
666
+ <action>
667
+ <action_id>set_metadata_field_wysiwyg_7110997517_required</action_id>
668
+ <action_type>set_attribute_value</action_type>
669
+ <asset>[[output://create_metadata_field_wysiwyg_7110997517.assetid]]</asset>
670
+ <attribute>required</attribute>
671
+ <value><![CDATA[0]]></value>
672
+ </action>
673
+ <action>
674
+ <action_id>set_permission_7110997517_read_5</action_id>
675
+ <action_type>set_permission</action_type>
676
+ <asset>[[output://create_metadata_field_wysiwyg_7110997517.assetid]]</asset>
677
+ <permission>1</permission>
678
+ <granted>1</granted>
679
+ <userid>[[system://public_user]]</userid>
680
+ </action>
681
+
682
+ <action>
683
+ <action_id>create_metadata_field_text_1961837015</action_id>
684
+ <action_type>create_asset</action_type>
685
+ <type_code>metadata_field_text</type_code>
686
+ <link_type>2</link_type>
687
+ <parentid>[[output://create_Metadata_Section_6330020016.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_text_1961837015_name</action_id>
694
+ <action_type>set_attribute_value</action_type>
695
+ <asset>[[output://create_metadata_field_text_1961837015.assetid]]</asset>
696
+ <attribute>name</attribute>
697
+ <value><![CDATA[calendar_intro]]></value>
698
+ </action>
699
+ <action>
700
+ <action_id>set_metadata_field_text_1961837015_friendly_name</action_id>
701
+ <action_type>set_attribute_value</action_type>
702
+ <asset>[[output://create_metadata_field_text_1961837015.assetid]]</asset>
703
+ <attribute>friendly_name</attribute>
704
+ <value><![CDATA[Calendar intro text]]></value>
705
+ </action>
706
+ <action>
707
+ <action_id>set_metadata_field_text_1961837015_default</action_id>
708
+ <action_type>set_attribute_value</action_type>
709
+ <asset>[[output://create_metadata_field_text_1961837015.assetid]]</asset>
710
+ <attribute>default</attribute>
711
+ <value><![CDATA[Calendar intro]]></value>
712
+ </action>
713
+ <action>
714
+ <action_id>set_metadata_field_text_1961837015_description</action_id>
715
+ <action_type>set_attribute_value</action_type>
716
+ <asset>[[output://create_metadata_field_text_1961837015.assetid]]</asset>
717
+ <attribute>description</attribute>
718
+ <value><![CDATA[]]></value>
719
+ </action>
720
+ <action>
721
+ <action_id>set_metadata_field_text_1961837015_editable</action_id>
722
+ <action_type>set_attribute_value</action_type>
723
+ <asset>[[output://create_metadata_field_text_1961837015.assetid]]</asset>
724
+ <attribute>editable</attribute>
725
+ <value><![CDATA[1]]></value>
726
+ </action>
727
+ <action>
728
+ <action_id>set_metadata_field_text_1961837015_editable</action_id>
729
+ <action_type>set_attribute_value</action_type>
730
+ <asset>[[output://create_metadata_field_text_1961837015.assetid]]</asset>
731
+ <attribute>editable</attribute>
732
+ <value><![CDATA[1]]></value>
733
+ </action>
734
+ <action>
735
+ <action_id>set_metadata_field_text_1961837015_required</action_id>
736
+ <action_type>set_attribute_value</action_type>
737
+ <asset>[[output://create_metadata_field_text_1961837015.assetid]]</asset>
738
+ <attribute>required</attribute>
739
+ <value><![CDATA[0]]></value>
740
+ </action>
741
+ <action>
742
+ <action_id>set_permission_1961837015_read_5</action_id>
743
+ <action_type>set_permission</action_type>
744
+ <asset>[[output://create_metadata_field_text_1961837015.assetid]]</asset>
745
+ <permission>1</permission>
746
+ <granted>1</granted>
747
+ <userid>[[system://public_user]]</userid>
748
+ </action>
749
+
750
+ <action>
751
+ <action_id>create_metadata_field_date_548772263</action_id>
752
+ <action_type>create_asset</action_type>
753
+ <type_code>metadata_field_date</type_code>
754
+ <link_type>2</link_type>
755
+ <parentid>[[output://create_Metadata_Section_6330020016.assetid]]</parentid>
756
+ <value></value>
757
+ <is_dependant>1</is_dependant>
758
+ <is_exclusive>0</is_exclusive>
759
+ </action>
760
+ <action>
761
+ <action_id>set_metadata_field_date_548772263_name</action_id>
762
+ <action_type>set_attribute_value</action_type>
763
+ <asset>[[output://create_metadata_field_date_548772263.assetid]]</asset>
764
+ <attribute>name</attribute>
765
+ <value><![CDATA[calendar_date]]></value>
766
+ </action>
767
+ <action>
768
+ <action_id>set_metadata_field_date_548772263_friendly_name</action_id>
769
+ <action_type>set_attribute_value</action_type>
770
+ <asset>[[output://create_metadata_field_date_548772263.assetid]]</asset>
771
+ <attribute>friendly_name</attribute>
772
+ <value><![CDATA[Calendar date]]></value>
773
+ </action>
774
+ <action>
775
+ <action_id>set_metadata_field_date_548772263_default</action_id>
776
+ <action_type>set_attribute_value</action_type>
777
+ <asset>[[output://create_metadata_field_date_548772263.assetid]]</asset>
778
+ <attribute>default</attribute>
779
+ <value><![CDATA[2020-01-01]]></value>
780
+ </action>
781
+ <action>
782
+ <action_id>set_metadata_field_date_548772263_description</action_id>
783
+ <action_type>set_attribute_value</action_type>
784
+ <asset>[[output://create_metadata_field_date_548772263.assetid]]</asset>
785
+ <attribute>description</attribute>
786
+ <value><![CDATA[]]></value>
787
+ </action>
788
+ <action>
789
+ <action_id>set_metadata_field_date_548772263_editable</action_id>
790
+ <action_type>set_attribute_value</action_type>
791
+ <asset>[[output://create_metadata_field_date_548772263.assetid]]</asset>
792
+ <attribute>editable</attribute>
793
+ <value><![CDATA[1]]></value>
794
+ </action>
795
+ <action>
796
+ <action_id>set_metadata_field_date_548772263_editable</action_id>
797
+ <action_type>set_attribute_value</action_type>
798
+ <asset>[[output://create_metadata_field_date_548772263.assetid]]</asset>
799
+ <attribute>editable</attribute>
800
+ <value><![CDATA[1]]></value>
801
+ </action>
802
+ <action>
803
+ <action_id>set_metadata_field_date_548772263_required</action_id>
804
+ <action_type>set_attribute_value</action_type>
805
+ <asset>[[output://create_metadata_field_date_548772263.assetid]]</asset>
806
+ <attribute>required</attribute>
807
+ <value><![CDATA[0]]></value>
808
+ </action>
809
+ <action>
810
+ <action_id>set_permission_548772263_read_5</action_id>
811
+ <action_type>set_permission</action_type>
812
+ <asset>[[output://create_metadata_field_date_548772263.assetid]]</asset>
813
+ <permission>1</permission>
814
+ <granted>1</granted>
815
+ <userid>[[system://public_user]]</userid>
816
+ </action>
817
+
818
+ <action>
819
+ <action_id>create_metadata_field_text_2490588445</action_id>
820
+ <action_type>create_asset</action_type>
821
+ <type_code>metadata_field_text</type_code>
822
+ <link_type>2</link_type>
823
+ <parentid>[[output://create_Metadata_Section_6330020016.assetid]]</parentid>
824
+ <value></value>
825
+ <is_dependant>1</is_dependant>
826
+ <is_exclusive>0</is_exclusive>
827
+ </action>
828
+ <action>
829
+ <action_id>set_metadata_field_text_2490588445_name</action_id>
830
+ <action_type>set_attribute_value</action_type>
831
+ <asset>[[output://create_metadata_field_text_2490588445.assetid]]</asset>
832
+ <attribute>name</attribute>
833
+ <value><![CDATA[calendar_name]]></value>
834
+ </action>
835
+ <action>
836
+ <action_id>set_metadata_field_text_2490588445_friendly_name</action_id>
837
+ <action_type>set_attribute_value</action_type>
838
+ <asset>[[output://create_metadata_field_text_2490588445.assetid]]</asset>
839
+ <attribute>friendly_name</attribute>
840
+ <value><![CDATA[Calendar date name]]></value>
841
+ </action>
842
+ <action>
843
+ <action_id>set_metadata_field_text_2490588445_default</action_id>
844
+ <action_type>set_attribute_value</action_type>
845
+ <asset>[[output://create_metadata_field_text_2490588445.assetid]]</asset>
846
+ <attribute>default</attribute>
847
+ <value><![CDATA[Date name]]></value>
848
+ </action>
849
+ <action>
850
+ <action_id>set_metadata_field_text_2490588445_description</action_id>
851
+ <action_type>set_attribute_value</action_type>
852
+ <asset>[[output://create_metadata_field_text_2490588445.assetid]]</asset>
853
+ <attribute>description</attribute>
854
+ <value><![CDATA[]]></value>
855
+ </action>
856
+ <action>
857
+ <action_id>set_metadata_field_text_2490588445_editable</action_id>
858
+ <action_type>set_attribute_value</action_type>
859
+ <asset>[[output://create_metadata_field_text_2490588445.assetid]]</asset>
860
+ <attribute>editable</attribute>
861
+ <value><![CDATA[1]]></value>
862
+ </action>
863
+ <action>
864
+ <action_id>set_metadata_field_text_2490588445_editable</action_id>
865
+ <action_type>set_attribute_value</action_type>
866
+ <asset>[[output://create_metadata_field_text_2490588445.assetid]]</asset>
867
+ <attribute>editable</attribute>
868
+ <value><![CDATA[1]]></value>
869
+ </action>
870
+ <action>
871
+ <action_id>set_metadata_field_text_2490588445_required</action_id>
872
+ <action_type>set_attribute_value</action_type>
873
+ <asset>[[output://create_metadata_field_text_2490588445.assetid]]</asset>
874
+ <attribute>required</attribute>
875
+ <value><![CDATA[0]]></value>
876
+ </action>
877
+ <action>
878
+ <action_id>set_permission_2490588445_read_5</action_id>
879
+ <action_type>set_permission</action_type>
880
+ <asset>[[output://create_metadata_field_text_2490588445.assetid]]</asset>
881
+ <permission>1</permission>
882
+ <granted>1</granted>
883
+ <userid>[[system://public_user]]</userid>
884
+ </action>
885
+
886
+ <action>
887
+ <action_id>create_metadata_field_text_5913008035</action_id>
888
+ <action_type>create_asset</action_type>
889
+ <type_code>metadata_field_text</type_code>
890
+ <link_type>2</link_type>
891
+ <parentid>[[output://create_Metadata_Section_6330020016.assetid]]</parentid>
892
+ <value></value>
893
+ <is_dependant>1</is_dependant>
894
+ <is_exclusive>0</is_exclusive>
895
+ </action>
896
+ <action>
897
+ <action_id>set_metadata_field_text_5913008035_name</action_id>
898
+ <action_type>set_attribute_value</action_type>
899
+ <asset>[[output://create_metadata_field_text_5913008035.assetid]]</asset>
900
+ <attribute>name</attribute>
901
+ <value><![CDATA[id_field]]></value>
902
+ </action>
903
+ <action>
904
+ <action_id>set_metadata_field_text_5913008035_friendly_name</action_id>
905
+ <action_type>set_attribute_value</action_type>
906
+ <asset>[[output://create_metadata_field_text_5913008035.assetid]]</asset>
907
+ <attribute>friendly_name</attribute>
908
+ <value><![CDATA[Id field]]></value>
909
+ </action>
910
+ <action>
911
+ <action_id>set_metadata_field_text_5913008035_default</action_id>
912
+ <action_type>set_attribute_value</action_type>
913
+ <asset>[[output://create_metadata_field_text_5913008035.assetid]]</asset>
914
+ <attribute>default</attribute>
915
+ <value><![CDATA[]]></value>
916
+ </action>
917
+ <action>
918
+ <action_id>set_metadata_field_text_5913008035_description</action_id>
919
+ <action_type>set_attribute_value</action_type>
920
+ <asset>[[output://create_metadata_field_text_5913008035.assetid]]</asset>
921
+ <attribute>description</attribute>
922
+ <value><![CDATA[]]></value>
923
+ </action>
924
+ <action>
925
+ <action_id>set_metadata_field_text_5913008035_editable</action_id>
926
+ <action_type>set_attribute_value</action_type>
927
+ <asset>[[output://create_metadata_field_text_5913008035.assetid]]</asset>
928
+ <attribute>editable</attribute>
929
+ <value><![CDATA[1]]></value>
930
+ </action>
931
+ <action>
932
+ <action_id>set_metadata_field_text_5913008035_editable</action_id>
933
+ <action_type>set_attribute_value</action_type>
934
+ <asset>[[output://create_metadata_field_text_5913008035.assetid]]</asset>
935
+ <attribute>editable</attribute>
936
+ <value><![CDATA[1]]></value>
937
+ </action>
938
+ <action>
939
+ <action_id>set_metadata_field_text_5913008035_required</action_id>
940
+ <action_type>set_attribute_value</action_type>
941
+ <asset>[[output://create_metadata_field_text_5913008035.assetid]]</asset>
942
+ <attribute>required</attribute>
943
+ <value><![CDATA[0]]></value>
944
+ </action>
945
+ <action>
946
+ <action_id>set_permission_5913008035_read_5</action_id>
947
+ <action_type>set_permission</action_type>
948
+ <asset>[[output://create_metadata_field_text_5913008035.assetid]]</asset>
949
+ <permission>1</permission>
950
+ <granted>1</granted>
951
+ <userid>[[system://public_user]]</userid>
952
+ </action>
953
+ </actions>