@pro-laico/create-atomic-payload 0.1.4

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 (423) hide show
  1. package/bin/cli.js +159 -0
  2. package/package.json +29 -0
  3. package/template/.env.example +35 -0
  4. package/template/.gitattributes +2 -0
  5. package/template/.prettierrc.json +6 -0
  6. package/template/.vscode/extensions.json +3 -0
  7. package/template/.vscode/launch.json +24 -0
  8. package/template/.vscode/settings.json +86 -0
  9. package/template/.yarnrc +1 -0
  10. package/template/LICENSE.md +22 -0
  11. package/template/README.md +128 -0
  12. package/template/eslint.config.mjs +32 -0
  13. package/template/next-env.d.ts +6 -0
  14. package/template/next.config.ts +36 -0
  15. package/template/package.json +75 -0
  16. package/template/public/adminFavicon.svg +1 -0
  17. package/template/public/ogImage.webp +0 -0
  18. package/template/src/access/anyone.ts +3 -0
  19. package/template/src/access/authenticated.ts +7 -0
  20. package/template/src/access/authenticatedOrPublished.ts +6 -0
  21. package/template/src/app/(frontend)/[...slug]/page.tsx +48 -0
  22. package/template/src/app/(frontend)/layout.tsx +49 -0
  23. package/template/src/app/(frontend)/next/exit-preview/route.ts +7 -0
  24. package/template/src/app/(frontend)/next/preview/route.ts +45 -0
  25. package/template/src/app/(frontend)/next/seed/route.ts +31 -0
  26. package/template/src/app/(frontend)/not-found.tsx +93 -0
  27. package/template/src/app/(frontend)/page.tsx +5 -0
  28. package/template/src/app/(frontend)/sitemap.ts +14 -0
  29. package/template/src/app/(payload)/admin/[[...segments]]/not-found.tsx +24 -0
  30. package/template/src/app/(payload)/admin/[[...segments]]/page.tsx +24 -0
  31. package/template/src/app/(payload)/admin/importMap.js +85 -0
  32. package/template/src/app/(payload)/api/[...slug]/route.ts +19 -0
  33. package/template/src/app/(payload)/custom.scss +29 -0
  34. package/template/src/app/(payload)/layout.tsx +31 -0
  35. package/template/src/blocks/actions/blocks.ts +27 -0
  36. package/template/src/blocks/actions/cookieConsent/set/block.ts +17 -0
  37. package/template/src/blocks/actions/cookieConsent/set/filter.ts +3 -0
  38. package/template/src/blocks/actions/cookieConsent/set/options.ts +35 -0
  39. package/template/src/blocks/actions/cookieConsent/toDA/block.ts +14 -0
  40. package/template/src/blocks/actions/cookieConsent/toDA/filter.ts +3 -0
  41. package/template/src/blocks/actions/cookieConsent/toDA/options.ts +19 -0
  42. package/template/src/blocks/actions/dynamicStore/boolean/set/block.ts +15 -0
  43. package/template/src/blocks/actions/dynamicStore/boolean/set/filter.ts +4 -0
  44. package/template/src/blocks/actions/dynamicStore/boolean/set/options.ts +18 -0
  45. package/template/src/blocks/actions/dynamicStore/boolean/toDA/block.ts +10 -0
  46. package/template/src/blocks/actions/dynamicStore/boolean/toDA/filter.ts +3 -0
  47. package/template/src/blocks/actions/dynamicStore/boolean/toDA/options.ts +12 -0
  48. package/template/src/blocks/actions/dynamicStore/text/cycle/block.ts +41 -0
  49. package/template/src/blocks/actions/dynamicStore/text/cycle/filter.ts +4 -0
  50. package/template/src/blocks/actions/dynamicStore/text/cycle/options.ts +23 -0
  51. package/template/src/blocks/actions/dynamicStore/text/toDA/block.ts +10 -0
  52. package/template/src/blocks/actions/dynamicStore/text/toDA/filter.ts +3 -0
  53. package/template/src/blocks/actions/dynamicStore/text/toDA/options.ts +12 -0
  54. package/template/src/blocks/actions/filters.ts +27 -0
  55. package/template/src/blocks/actions/form/errorToDA/block.ts +18 -0
  56. package/template/src/blocks/actions/form/errorToDA/filter.ts +3 -0
  57. package/template/src/blocks/actions/form/errorToDA/options.ts +15 -0
  58. package/template/src/blocks/actions/form/reset/block.ts +18 -0
  59. package/template/src/blocks/actions/form/reset/filter.ts +3 -0
  60. package/template/src/blocks/actions/form/reset/options.ts +30 -0
  61. package/template/src/blocks/actions/form/statusToDA/block.ts +12 -0
  62. package/template/src/blocks/actions/form/statusToDA/filter.ts +3 -0
  63. package/template/src/blocks/actions/form/statusToDA/options.ts +15 -0
  64. package/template/src/blocks/actions/form/submit/block.ts +18 -0
  65. package/template/src/blocks/actions/form/submit/filter.ts +3 -0
  66. package/template/src/blocks/actions/form/submit/options.ts +35 -0
  67. package/template/src/blocks/actions/portal/set/block.ts +25 -0
  68. package/template/src/blocks/actions/portal/set/filter.ts +3 -0
  69. package/template/src/blocks/actions/portal/set/options.ts +43 -0
  70. package/template/src/blocks/actions/processor.ts +263 -0
  71. package/template/src/blocks/actions/theme/set/block.ts +10 -0
  72. package/template/src/blocks/actions/theme/set/filter.ts +3 -0
  73. package/template/src/blocks/actions/theme/set/options.ts +9 -0
  74. package/template/src/blocks/actions/zap.ts +4 -0
  75. package/template/src/blocks/children/atomic/block.ts +123 -0
  76. package/template/src/blocks/children/atomic/controlBar.ts +43 -0
  77. package/template/src/blocks/children/atomic/variants/button/typeField.ts +16 -0
  78. package/template/src/blocks/children/atomic/variants/button/variants/link/component.client.tsx +21 -0
  79. package/template/src/blocks/children/atomic/variants/button/variants/link/component.tsx +13 -0
  80. package/template/src/blocks/children/atomic/variants/button/variants/link/controlBar.ts +73 -0
  81. package/template/src/blocks/children/atomic/variants/button/variants/link/settings.ts +26 -0
  82. package/template/src/blocks/children/atomic/variants/button/variants/portal/controlBar.ts +35 -0
  83. package/template/src/blocks/children/atomic/variants/button/variants/portal/dialog/component.tsx +36 -0
  84. package/template/src/blocks/children/atomic/variants/button/variants/portal/dialog/settings.ts +24 -0
  85. package/template/src/blocks/children/atomic/variants/button/variants/portal/popover/component.tsx +41 -0
  86. package/template/src/blocks/children/atomic/variants/button/variants/portal/popover/settings.ts +111 -0
  87. package/template/src/blocks/children/atomic/variants/button/variants/regular/component.client.tsx +19 -0
  88. package/template/src/blocks/children/atomic/variants/button/variants/regular/component.tsx +11 -0
  89. package/template/src/blocks/children/atomic/variants/form/component.tsx +18 -0
  90. package/template/src/blocks/children/atomic/variants/form/controlBar.ts +22 -0
  91. package/template/src/blocks/children/atomic/variants/form/settings.ts +20 -0
  92. package/template/src/blocks/children/atomic/variants/input/autoCompleteOptions.ts +51 -0
  93. package/template/src/blocks/children/atomic/variants/input/controlBar.ts +13 -0
  94. package/template/src/blocks/children/atomic/variants/input/settings.ts +35 -0
  95. package/template/src/blocks/children/atomic/variants/input/typeField.ts +23 -0
  96. package/template/src/blocks/children/atomic/variants/input/variants/checkBox/component.client.tsx +12 -0
  97. package/template/src/blocks/children/atomic/variants/input/variants/checkBox/component.tsx +6 -0
  98. package/template/src/blocks/children/atomic/variants/input/variants/checkBox/settings.ts +9 -0
  99. package/template/src/blocks/children/atomic/variants/input/variants/number/component.client.tsx +12 -0
  100. package/template/src/blocks/children/atomic/variants/input/variants/number/component.tsx +6 -0
  101. package/template/src/blocks/children/atomic/variants/input/variants/number/settings.ts +9 -0
  102. package/template/src/blocks/children/atomic/variants/input/variants/radio/component.client.tsx +12 -0
  103. package/template/src/blocks/children/atomic/variants/input/variants/radio/component.tsx +6 -0
  104. package/template/src/blocks/children/atomic/variants/input/variants/radio/settings.ts +9 -0
  105. package/template/src/blocks/children/atomic/variants/input/variants/text/component.client.tsx +12 -0
  106. package/template/src/blocks/children/atomic/variants/input/variants/text/component.tsx +7 -0
  107. package/template/src/blocks/children/atomic/variants/input/variants/text/settings.ts +12 -0
  108. package/template/src/blocks/children/atomic/variants/tag/component.client.tsx +17 -0
  109. package/template/src/blocks/children/atomic/variants/tag/component.tsx +13 -0
  110. package/template/src/blocks/children/atomic/variants/tag/controlBar.ts +6 -0
  111. package/template/src/blocks/children/atomic/variants/tag/settings.ts +9 -0
  112. package/template/src/blocks/children/blocks.ts +13 -0
  113. package/template/src/blocks/children/icon/block.ts +41 -0
  114. package/template/src/blocks/children/icon/component.tsx +17 -0
  115. package/template/src/blocks/children/image/block.ts +80 -0
  116. package/template/src/blocks/children/image/component.tsx +21 -0
  117. package/template/src/blocks/children/richText/block.ts +50 -0
  118. package/template/src/blocks/children/richText/component/converters/index.tsx +10 -0
  119. package/template/src/blocks/children/richText/component/converters/internalLink.tsx +8 -0
  120. package/template/src/blocks/children/richText/component/index.tsx +10 -0
  121. package/template/src/blocks/children/richText/component.tsx +7 -0
  122. package/template/src/blocks/children/richText/defaultLexical.ts +65 -0
  123. package/template/src/blocks/children/simpleText/block.ts +41 -0
  124. package/template/src/blocks/children/simpleText/component.client.tsx +18 -0
  125. package/template/src/blocks/children/simpleText/component.tsx +11 -0
  126. package/template/src/blocks/children/svg/block.ts +39 -0
  127. package/template/src/blocks/children/svg/component.tsx +6 -0
  128. package/template/src/blocks/children/video/block.ts +70 -0
  129. package/template/src/blocks/children/video/component.tsx +11 -0
  130. package/template/src/blocks/children/zap.ts +54 -0
  131. package/template/src/blocks/submitForm/form/rateLimiting/blocks.ts +5 -0
  132. package/template/src/blocks/submitForm/form/rateLimiting/functions.ts +1 -0
  133. package/template/src/blocks/submitForm/form/rateLimiting/simpleSlidingWindow/block.ts +23 -0
  134. package/template/src/blocks/submitForm/form/rateLimiting/simpleSlidingWindow/serverFunction.ts +46 -0
  135. package/template/src/blocks/submitForm/form/sanitation/blocks.ts +6 -0
  136. package/template/src/blocks/submitForm/form/sanitation/combineTwoFields/block.ts +19 -0
  137. package/template/src/blocks/submitForm/form/sanitation/combineTwoFields/serverFunction.ts +22 -0
  138. package/template/src/blocks/submitForm/form/sanitation/functions.ts +1 -0
  139. package/template/src/blocks/submitForm/form/validation/blocks.ts +6 -0
  140. package/template/src/blocks/submitForm/form/validation/functions.ts +1 -0
  141. package/template/src/blocks/submitForm/form/validation/isUnique/block.ts +19 -0
  142. package/template/src/blocks/submitForm/form/validation/isUnique/serverFunction.ts +40 -0
  143. package/template/src/blocks/submitForm/form/zap.ts +8 -0
  144. package/template/src/blocks/submitForm/formProcessor.ts +222 -0
  145. package/template/src/blocks/submitForm/input/sanitation/blocks.ts +5 -0
  146. package/template/src/blocks/submitForm/input/sanitation/functions.ts +1 -0
  147. package/template/src/blocks/submitForm/input/sanitation/trimText/block.ts +24 -0
  148. package/template/src/blocks/submitForm/input/sanitation/trimText/serverFunction.ts +63 -0
  149. package/template/src/blocks/submitForm/input/useOn.ts +8 -0
  150. package/template/src/blocks/submitForm/input/validation/blocks.ts +6 -0
  151. package/template/src/blocks/submitForm/input/validation/contains/block.ts +12 -0
  152. package/template/src/blocks/submitForm/input/validation/contains/serverFunction.ts +23 -0
  153. package/template/src/blocks/submitForm/input/validation/doesNotContain/block.ts +12 -0
  154. package/template/src/blocks/submitForm/input/validation/doesNotContain/serverFunction.ts +23 -0
  155. package/template/src/blocks/submitForm/input/validation/functions.ts +2 -0
  156. package/template/src/blocks/submitForm/input/zap.ts +6 -0
  157. package/template/src/blocks/submitForm/serverFunction.ts +42 -0
  158. package/template/src/collections/designSets/collection.ts +44 -0
  159. package/template/src/collections/designSets/defaults.ts +20 -0
  160. package/template/src/collections/designSets/tabs/animation.ts +71 -0
  161. package/template/src/collections/designSets/tabs/colors.ts +31 -0
  162. package/template/src/collections/designSets/tabs/fonts.ts +53 -0
  163. package/template/src/collections/designSets/tabs/miscellaneous.ts +22 -0
  164. package/template/src/collections/designSets/tabs/prose.ts +151 -0
  165. package/template/src/collections/designSets/tabs/settings.ts +52 -0
  166. package/template/src/collections/designSets/tabs/sizes.ts +30 -0
  167. package/template/src/collections/designSets/tabs/storage.ts +51 -0
  168. package/template/src/collections/designSets/tabs/variables.ts +28 -0
  169. package/template/src/collections/favicons.ts +11 -0
  170. package/template/src/collections/fonts/collection.ts +20 -0
  171. package/template/src/collections/fonts/script.ts +199 -0
  172. package/template/src/collections/footers/collection.ts +48 -0
  173. package/template/src/collections/footers/component.tsx +13 -0
  174. package/template/src/collections/headers/collection.ts +47 -0
  175. package/template/src/collections/headers/component.tsx +13 -0
  176. package/template/src/collections/iconSets/collection.ts +80 -0
  177. package/template/src/collections/iconSets/defaults.ts +81 -0
  178. package/template/src/collections/icons.ts +20 -0
  179. package/template/src/collections/images.ts +29 -0
  180. package/template/src/collections/index.ts +17 -0
  181. package/template/src/collections/muxVideos.ts +13 -0
  182. package/template/src/collections/pages/collection.ts +88 -0
  183. package/template/src/collections/pages/tabs/SEO.ts +70 -0
  184. package/template/src/collections/pages/tabs/settings.ts +17 -0
  185. package/template/src/collections/posthogProperty.ts +48 -0
  186. package/template/src/collections/shortcutSets/collection.ts +30 -0
  187. package/template/src/collections/shortcutSets/defaults.ts +1 -0
  188. package/template/src/collections/shortcutSets/protectedNames.ts +135 -0
  189. package/template/src/collections/shortcutSets/tabs/settings.ts +13 -0
  190. package/template/src/collections/shortcutSets/tabs/shortcuts.ts +70 -0
  191. package/template/src/collections/users.ts +11 -0
  192. package/template/src/collections/zap.ts +59 -0
  193. package/template/src/components/child/SSRProps.ts +381 -0
  194. package/template/src/components/child/renderChildren.tsx +148 -0
  195. package/template/src/components/livePreviewListener.tsx +10 -0
  196. package/template/src/components/providers/formProvider.tsx +11 -0
  197. package/template/src/components/providers/tracking/gtm.tsx +11 -0
  198. package/template/src/components/providers/tracking/index.tsx +46 -0
  199. package/template/src/components/providers/tracking/postHog.tsx +41 -0
  200. package/template/src/components/providers/tracking/vercel.tsx +10 -0
  201. package/template/src/components/toast/index.module.css +142 -0
  202. package/template/src/components/toast/index.tsx +55 -0
  203. package/template/src/endpoints/seed/backendForm.ts +48 -0
  204. package/template/src/endpoints/seed/designSet.ts +476 -0
  205. package/template/src/endpoints/seed/footer.ts +389 -0
  206. package/template/src/endpoints/seed/header.ts +3511 -0
  207. package/template/src/endpoints/seed/iconSet.ts +19 -0
  208. package/template/src/endpoints/seed/icons/assets/check.svg +4 -0
  209. package/template/src/endpoints/seed/icons/assets/close.svg +4 -0
  210. package/template/src/endpoints/seed/icons/assets/cookie.svg +7 -0
  211. package/template/src/endpoints/seed/icons/assets/github.svg +1 -0
  212. package/template/src/endpoints/seed/icons/assets/logo.svg +11 -0
  213. package/template/src/endpoints/seed/icons/assets/menu.svg +4 -0
  214. package/template/src/endpoints/seed/icons/assets/theme.svg +4 -0
  215. package/template/src/endpoints/seed/icons/check.ts +14 -0
  216. package/template/src/endpoints/seed/icons/close.ts +14 -0
  217. package/template/src/endpoints/seed/icons/cookie.ts +14 -0
  218. package/template/src/endpoints/seed/icons/github.ts +14 -0
  219. package/template/src/endpoints/seed/icons/index.ts +7 -0
  220. package/template/src/endpoints/seed/icons/logo.ts +14 -0
  221. package/template/src/endpoints/seed/icons/menu.ts +14 -0
  222. package/template/src/endpoints/seed/icons/theme.ts +14 -0
  223. package/template/src/endpoints/seed/index.ts +100 -0
  224. package/template/src/endpoints/seed/pages/home.ts +858 -0
  225. package/template/src/endpoints/seed/pages/index.ts +4 -0
  226. package/template/src/endpoints/seed/pages/notFoundPage.ts +287 -0
  227. package/template/src/endpoints/seed/pages/prose.ts +1436 -0
  228. package/template/src/endpoints/seed/pages/testing.ts +2181 -0
  229. package/template/src/endpoints/seed/shortcutSet.ts +187 -0
  230. package/template/src/endpoints/seed/siteMetaData.ts +10 -0
  231. package/template/src/fields/actions/changeKey.ts +12 -0
  232. package/template/src/fields/actions/index.ts +6 -0
  233. package/template/src/fields/actions/initialValueCheckbox.ts +14 -0
  234. package/template/src/fields/actions/keyText.ts +10 -0
  235. package/template/src/fields/actions/persisted.ts +14 -0
  236. package/template/src/fields/actions/setData.ts +20 -0
  237. package/template/src/fields/actions/strict/index.ts +3 -0
  238. package/template/src/fields/actions/strict/keySelect.ts +28 -0
  239. package/template/src/fields/actions/strict/listenSelect.ts +28 -0
  240. package/template/src/fields/actions/strict/performSelect.ts +30 -0
  241. package/template/src/fields/actions/strict/registry/cookieConsent.ts +14 -0
  242. package/template/src/fields/actions/strict/registry/index.ts +6 -0
  243. package/template/src/fields/actions/strict/registry/theme.ts +9 -0
  244. package/template/src/fields/active.ts +16 -0
  245. package/template/src/fields/apf/index.ts +69 -0
  246. package/template/src/fields/apf/storage.ts +38 -0
  247. package/template/src/fields/blocks/actions.ts +30 -0
  248. package/template/src/fields/blocks/backdropChildren.ts +11 -0
  249. package/template/src/fields/blocks/children.ts +15 -0
  250. package/template/src/fields/blocks/submitForm/form.ts +24 -0
  251. package/template/src/fields/blocks/submitForm/input.ts +25 -0
  252. package/template/src/fields/className.ts +26 -0
  253. package/template/src/fields/coloredEnd.ts +5 -0
  254. package/template/src/fields/defaultOpen.ts +14 -0
  255. package/template/src/fields/designSets/value.ts +80 -0
  256. package/template/src/fields/devMode.ts +11 -0
  257. package/template/src/fields/favicon.ts +18 -0
  258. package/template/src/fields/for.ts +11 -0
  259. package/template/src/fields/keepMounted.ts +11 -0
  260. package/template/src/fields/modal.ts +16 -0
  261. package/template/src/fields/slug.ts +35 -0
  262. package/template/src/fields/staticDataAttributes.ts +29 -0
  263. package/template/src/fields/tabs/block/children/actions.ts +49 -0
  264. package/template/src/fields/tabs/block/children/backdrop.ts +17 -0
  265. package/template/src/fields/tabs/block/children/settings.ts +45 -0
  266. package/template/src/fields/tabs/block/children/submitForm/form.ts +23 -0
  267. package/template/src/fields/tabs/block/children/submitForm/input.ts +14 -0
  268. package/template/src/fields/tabs/block/children/tracking.ts +25 -0
  269. package/template/src/fields/tabs/collection/storage.ts +55 -0
  270. package/template/src/fields/tagType.ts +32 -0
  271. package/template/src/fields/testPath.ts +3 -0
  272. package/template/src/fields/uniqueTitle.ts +8 -0
  273. package/template/src/fields/validationMessage.ts +13 -0
  274. package/template/src/globals/index.ts +8 -0
  275. package/template/src/globals/settings.ts +36 -0
  276. package/template/src/globals/siteMetaData.ts +29 -0
  277. package/template/src/globals/storage.ts +15 -0
  278. package/template/src/globals/tracking/global.ts +25 -0
  279. package/template/src/globals/tracking/tabs/gtm.ts +18 -0
  280. package/template/src/globals/tracking/tabs/postHog.ts +35 -0
  281. package/template/src/hooks/collection/atomicHook/atomicHook.ts +223 -0
  282. package/template/src/hooks/collection/atomicHook/processors/cssProcessor.ts +60 -0
  283. package/template/src/hooks/collection/atomicHook/processors/processDesignSet/generatePreflights.ts +36 -0
  284. package/template/src/hooks/collection/atomicHook/processors/processDesignSet/index.ts +176 -0
  285. package/template/src/hooks/collection/atomicHook/processors/unsetActive.ts +24 -0
  286. package/template/src/hooks/collection/formatSVG.ts +157 -0
  287. package/template/src/hooks/collection/revalidate.ts +53 -0
  288. package/template/src/hooks/collection/sanitizeCollection.ts +5 -0
  289. package/template/src/hooks/field/apf.ts +59 -0
  290. package/template/src/hooks/field/formatSlug.ts +23 -0
  291. package/template/src/hooks/field/href.ts +6 -0
  292. package/template/src/hooks/field/publishedAt.ts +5 -0
  293. package/template/src/hooks/frontEnd/atomicStore/create.ts +69 -0
  294. package/template/src/hooks/frontEnd/atomicStore/index.tsx +20 -0
  295. package/template/src/hooks/frontEnd/atomicStore/slices/base.ts +7 -0
  296. package/template/src/hooks/frontEnd/atomicStore/slices/consent.ts +76 -0
  297. package/template/src/hooks/frontEnd/atomicStore/slices/dynamic.ts +51 -0
  298. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/boolToDA/function.ts +14 -0
  299. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/boolToDA/zap.ts +12 -0
  300. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/cCToDA/function.ts +34 -0
  301. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/cCToDA/zap.ts +17 -0
  302. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/errorToDA/function.ts +22 -0
  303. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/errorToDA/zap.ts +10 -0
  304. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/function.ts +20 -0
  305. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/statusToDA/function.ts +24 -0
  306. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/statusToDA/zap.ts +10 -0
  307. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/textToDA/function.ts +21 -0
  308. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/textToDA/zap.ts +12 -0
  309. package/template/src/hooks/frontEnd/useActions/dispatch/attributer/zap.ts +15 -0
  310. package/template/src/hooks/frontEnd/useActions/dispatch/index.ts +2 -0
  311. package/template/src/hooks/frontEnd/useActions/dispatch/runner/cycleText/function.ts +30 -0
  312. package/template/src/hooks/frontEnd/useActions/dispatch/runner/cycleText/zap.ts +12 -0
  313. package/template/src/hooks/frontEnd/useActions/dispatch/runner/function.ts +21 -0
  314. package/template/src/hooks/frontEnd/useActions/dispatch/runner/resetForm/function.ts +7 -0
  315. package/template/src/hooks/frontEnd/useActions/dispatch/runner/resetForm/zap.ts +9 -0
  316. package/template/src/hooks/frontEnd/useActions/dispatch/runner/setBool/function.ts +10 -0
  317. package/template/src/hooks/frontEnd/useActions/dispatch/runner/setBool/zap.ts +11 -0
  318. package/template/src/hooks/frontEnd/useActions/dispatch/runner/setCCs/function.ts +33 -0
  319. package/template/src/hooks/frontEnd/useActions/dispatch/runner/setCCs/zap.ts +14 -0
  320. package/template/src/hooks/frontEnd/useActions/dispatch/runner/setThemes/function.ts +11 -0
  321. package/template/src/hooks/frontEnd/useActions/dispatch/runner/setThemes/zap.ts +10 -0
  322. package/template/src/hooks/frontEnd/useActions/dispatch/runner/submitForm/function.ts +32 -0
  323. package/template/src/hooks/frontEnd/useActions/dispatch/runner/submitForm/zap.ts +9 -0
  324. package/template/src/hooks/frontEnd/useActions/dispatch/runner/zap.ts +16 -0
  325. package/template/src/hooks/frontEnd/useActions/dispatch/zap.ts +2 -0
  326. package/template/src/hooks/frontEnd/useActions/index.ts +6 -0
  327. package/template/src/hooks/frontEnd/useActions/useActionContext.ts +21 -0
  328. package/template/src/hooks/frontEnd/useActions/useButtonActions.ts +17 -0
  329. package/template/src/hooks/frontEnd/useActions/useDaToText.ts +34 -0
  330. package/template/src/hooks/frontEnd/useActions/useForm.ts +114 -0
  331. package/template/src/hooks/frontEnd/useActions/usePortal.ts +33 -0
  332. package/template/src/hooks/frontEnd/useActions/useToDa.ts +12 -0
  333. package/template/src/hooks/global/revalidate.ts +26 -0
  334. package/template/src/payload.config.ts +78 -0
  335. package/template/src/plugins/blurDataUrls.ts +8 -0
  336. package/template/src/plugins/formBuilder.ts +40 -0
  337. package/template/src/plugins/index.ts +17 -0
  338. package/template/src/plugins/muxVideo.ts +13 -0
  339. package/template/src/plugins/nestedDocs.ts +9 -0
  340. package/template/src/plugins/vercelBlobStorage.ts +8 -0
  341. package/template/src/ts/JSONSchema.ts +93 -0
  342. package/template/src/ts/declarations.ts +24 -0
  343. package/template/src/ts/types/actions.ts +175 -0
  344. package/template/src/ts/types/apf.ts +108 -0
  345. package/template/src/ts/types/cache.ts +166 -0
  346. package/template/src/ts/types/css.ts +14 -0
  347. package/template/src/ts/types/forms.ts +214 -0
  348. package/template/src/ts/types/frontEnd.ts +115 -0
  349. package/template/src/ts/types/index.ts +49 -0
  350. package/template/src/ts/types/payload-types.ts +3684 -0
  351. package/template/src/ts/zap/ap.ts +82 -0
  352. package/template/src/ts/zap/index.ts +4 -0
  353. package/template/src/ui/apf/controls.tsx +88 -0
  354. package/template/src/ui/apf/field.tsx +81 -0
  355. package/template/src/ui/apf/index.scss +59 -0
  356. package/template/src/ui/apf/label.tsx +23 -0
  357. package/template/src/ui/assets/Icon.tsx +21 -0
  358. package/template/src/ui/assets/Logo.tsx +21 -0
  359. package/template/src/ui/assets/atomicIcon.tsx +27 -0
  360. package/template/src/ui/assets/warningIcon.ts +6 -0
  361. package/template/src/ui/blocks/actionBlock.tsx +44 -0
  362. package/template/src/ui/blocks/inputBlock.tsx +24 -0
  363. package/template/src/ui/decorative/coloredEnd.tsx +16 -0
  364. package/template/src/ui/decorative/index.scss +46 -0
  365. package/template/src/ui/fields/iconSelect/index.tsx +19 -0
  366. package/template/src/ui/fields/slug/index.scss +12 -0
  367. package/template/src/ui/fields/slug/index.tsx +72 -0
  368. package/template/src/ui/index.ts +32 -0
  369. package/template/src/ui/root/beforeDashboard/index.scss +22 -0
  370. package/template/src/ui/root/beforeDashboard/index.tsx +39 -0
  371. package/template/src/ui/root/beforeDashboard/seedButton/index.scss +12 -0
  372. package/template/src/ui/root/beforeDashboard/seedButton/index.tsx +84 -0
  373. package/template/src/ui/root/siteTriggers/index.scss +22 -0
  374. package/template/src/ui/root/siteTriggers/index.tsx +94 -0
  375. package/template/src/ui/root/siteTriggers/triggerVercelDeploy.ts +37 -0
  376. package/template/src/ui/rowLabels/animation.tsx +27 -0
  377. package/template/src/ui/rowLabels/atomic/index.scss +62 -0
  378. package/template/src/ui/rowLabels/atomic/index.tsx +96 -0
  379. package/template/src/ui/rowLabels/color.tsx +33 -0
  380. package/template/src/ui/rowLabels/designToken.tsx +30 -0
  381. package/template/src/ui/rowLabels/icon.tsx +32 -0
  382. package/template/src/ui/rowLabels/shortcut/index.scss +21 -0
  383. package/template/src/ui/rowLabels/shortcut/index.tsx +30 -0
  384. package/template/src/ui/rowLabels/simpleText.tsx +41 -0
  385. package/template/src/utilities/deepMerge.ts +30 -0
  386. package/template/src/utilities/extractSVG.ts +9 -0
  387. package/template/src/utilities/format/toKebabCase.ts +79 -0
  388. package/template/src/utilities/format/toTitleCase.ts +47 -0
  389. package/template/src/utilities/formatDurationWithTokens.ts +56 -0
  390. package/template/src/utilities/generateMetaData.ts +45 -0
  391. package/template/src/utilities/generatePreviewPath.ts +43 -0
  392. package/template/src/utilities/get/cache/getAtomicActions.ts +48 -0
  393. package/template/src/utilities/get/cache/getAtomicClasses.ts +20 -0
  394. package/template/src/utilities/get/cache/getDesignSet.ts +15 -0
  395. package/template/src/utilities/get/cache/getFooter.ts +17 -0
  396. package/template/src/utilities/get/cache/getFormSubmissions.ts +17 -0
  397. package/template/src/utilities/get/cache/getForms.ts +43 -0
  398. package/template/src/utilities/get/cache/getHeader.ts +17 -0
  399. package/template/src/utilities/get/cache/getIcon.ts +51 -0
  400. package/template/src/utilities/get/cache/getImage.ts +20 -0
  401. package/template/src/utilities/get/cache/getPage.ts +35 -0
  402. package/template/src/utilities/get/cache/getPages.ts +24 -0
  403. package/template/src/utilities/get/cache/getShortcutSet.ts +17 -0
  404. package/template/src/utilities/get/cache/getSiteCSS.ts +17 -0
  405. package/template/src/utilities/get/cache/getSiteMetadata.ts +14 -0
  406. package/template/src/utilities/get/cache/getSitemap.ts +50 -0
  407. package/template/src/utilities/get/cache/getTracking.ts +14 -0
  408. package/template/src/utilities/get/cache/index.ts +129 -0
  409. package/template/src/utilities/get/cache/react.ts +5 -0
  410. package/template/src/utilities/get/getImageURL.ts +20 -0
  411. package/template/src/utilities/get/getMeUser.ts +22 -0
  412. package/template/src/utilities/get/getURL.ts +20 -0
  413. package/template/src/utilities/log/cache.ts +8 -0
  414. package/template/src/utilities/log/manual.ts +11 -0
  415. package/template/src/utilities/log/revalidation.ts +6 -0
  416. package/template/src/utilities/mergeTags.ts +7 -0
  417. package/template/src/utilities/propertyApplicatorUtility.ts +20 -0
  418. package/template/src/utilities/revalidateTag.ts +55 -0
  419. package/template/src/utilities/runAPF.ts +10 -0
  420. package/template/src/utilities/sanitizeData.ts +24 -0
  421. package/template/src/utilities/seedNestedRelationship.ts +5 -0
  422. package/template/tailwind.config.js +9 -0
  423. package/template/tsconfig.json +49 -0
@@ -0,0 +1,3511 @@
1
+ import { Header, Page } from '@/ts/types'
2
+ import { toPageRelationship } from '@/utilities/seedNestedRelationship'
3
+
4
+ type HeaderArgs = { testing: Page; home: Page; prose: Page }
5
+
6
+ export const header: (args: HeaderArgs) => Omit<Header, 'createdAt' | 'updatedAt' | 'id'> = ({ testing, home, prose }) => {
7
+ return {
8
+ active: true,
9
+ devMode: false,
10
+ title: 'Base header',
11
+ _status: 'published',
12
+
13
+ testPath: testing,
14
+ ClassName: 'bg-background sticky top-0 z-50 w-full',
15
+
16
+ children: [
17
+ {
18
+ blockType: 'AtomicChild',
19
+ type: 'tag',
20
+ tagType: 'div',
21
+ ClassName: 'container-wrapper 3xl:fixed:px-0 px-6',
22
+
23
+ children: [
24
+ {
25
+ blockType: 'AtomicChild',
26
+ type: 'tag',
27
+ tagType: 'div',
28
+ ClassName: '3xl:fixed:container flex h-hh items-center **:data-[slot=separator]:!h-4',
29
+
30
+ children: [
31
+ {
32
+ blockType: 'AtomicChild',
33
+ type: 'button',
34
+ tagType: 'div',
35
+ buttonType: 'portal',
36
+ portalType: 'dialog',
37
+ portalName: 'menu',
38
+ ClassName:
39
+ 'fixed top-[calc(var(--spacing)*14)] bottom-0 left-0 right-0 min-h-dvh transition-all duration-150 data-[ending-style]:opacity-0 data-[starting-style]:opacity-0 overflow-y-auto backdrop-blur bg-background/80 no-scrollbar',
40
+
41
+ children: [
42
+ {
43
+ blockType: 'AtomicChild',
44
+ type: 'tag',
45
+ tagType: 'div',
46
+ ClassName: 'flex flex-col gap-12 overflow-auto px-6 py-6',
47
+
48
+ children: [
49
+ {
50
+ blockType: 'AtomicChild',
51
+ type: 'tag',
52
+ tagType: 'div',
53
+ ClassName: 'flex flex-col gap-4',
54
+
55
+ children: [
56
+ {
57
+ blockType: 'SimpleTextChild',
58
+ tagType: 'div',
59
+ ClassName: 'text-muted-foreground text-sm font-medium',
60
+ text: 'Menu',
61
+ id: '6928b638ae41f527d2ef0b80',
62
+
63
+ contentActions: {
64
+ actionBlocks: [],
65
+ },
66
+
67
+ staticDataAttributes: [],
68
+ },
69
+
70
+ {
71
+ blockType: 'AtomicChild',
72
+ type: 'tag',
73
+ tagType: 'div',
74
+ ClassName: 'flex flex-col gap-3',
75
+
76
+ children: [
77
+ {
78
+ blockType: 'AtomicChild',
79
+ type: 'button',
80
+ tagType: 'div',
81
+ buttonType: 'link',
82
+ linkType: 'internalLink',
83
+
84
+ internalLink: toPageRelationship(home),
85
+ triggerClassName: 'text-2xl font-medium',
86
+
87
+ triggerChildren: [
88
+ {
89
+ blockType: 'SimpleTextChild',
90
+ tagType: 'span',
91
+ text: 'Home',
92
+ id: '6928b681ae41f527d2ef0b83',
93
+
94
+ contentActions: {
95
+ actionBlocks: [],
96
+ },
97
+
98
+ staticDataAttributes: [],
99
+ },
100
+ ],
101
+
102
+ triggerActions: {
103
+ actionBlocks: [
104
+ {
105
+ blockType: 'ActSetPortalOpen',
106
+ portal: 'menu',
107
+ id: '6931e71f7deeea1f1c1366ec',
108
+ },
109
+ ],
110
+
111
+ actions: ['ActSetPortalOpen'],
112
+
113
+ runners: [
114
+ {
115
+ type: 'RunSetBool',
116
+ key: 'menu',
117
+ initialValue: false,
118
+ persisted: false,
119
+ },
120
+ ],
121
+
122
+ attributers: [],
123
+ },
124
+ id: '6928b661ae41f527d2ef0b82',
125
+ blockName: 'Home',
126
+
127
+ children: [],
128
+
129
+ contentActions: {
130
+ actionBlocks: [],
131
+ },
132
+
133
+ formRateLimitBlocks: [],
134
+
135
+ formSanitationBlocks: [],
136
+
137
+ formValidationBlocks: [],
138
+
139
+ inputSanitationBlocks: [],
140
+
141
+ inputValidationBlocks: [],
142
+
143
+ backdropChildren: [],
144
+
145
+ ds: {},
146
+
147
+ pops: {},
148
+
149
+ triggerStaticDataAttributes: [],
150
+
151
+ staticDataAttributes: [],
152
+ },
153
+
154
+ {
155
+ blockType: 'AtomicChild',
156
+ type: 'button',
157
+ tagType: 'div',
158
+ buttonType: 'link',
159
+ linkType: 'internalLink',
160
+
161
+ internalLink: toPageRelationship(testing),
162
+ triggerClassName: 'text-2xl font-medium',
163
+
164
+ triggerChildren: [
165
+ {
166
+ blockType: 'SimpleTextChild',
167
+ tagType: 'span',
168
+ text: 'Testing',
169
+ id: '6928b772ae41f527d2ef0b87',
170
+
171
+ contentActions: {
172
+ actionBlocks: [],
173
+ },
174
+
175
+ staticDataAttributes: [],
176
+ },
177
+ ],
178
+
179
+ triggerActions: {
180
+ actionBlocks: [
181
+ {
182
+ blockType: 'ActSetPortalOpen',
183
+ portal: 'menu',
184
+ id: '6931e6fa7deeea1f1c1366eb',
185
+ },
186
+ ],
187
+
188
+ actions: ['ActSetPortalOpen'],
189
+
190
+ runners: [
191
+ {
192
+ type: 'RunSetBool',
193
+ key: 'menu',
194
+ initialValue: false,
195
+ persisted: false,
196
+ },
197
+ ],
198
+
199
+ attributers: [],
200
+ },
201
+ id: '6928b772ae41f527d2ef0b86',
202
+ blockName: 'Testing',
203
+
204
+ children: [],
205
+
206
+ contentActions: {
207
+ actionBlocks: [],
208
+ },
209
+
210
+ formRateLimitBlocks: [],
211
+
212
+ formSanitationBlocks: [],
213
+
214
+ formValidationBlocks: [],
215
+
216
+ inputSanitationBlocks: [],
217
+
218
+ inputValidationBlocks: [],
219
+
220
+ backdropChildren: [],
221
+
222
+ ds: {},
223
+
224
+ pops: {},
225
+
226
+ triggerStaticDataAttributes: [],
227
+
228
+ staticDataAttributes: [],
229
+ },
230
+ {
231
+ blockType: 'AtomicChild',
232
+ type: 'button',
233
+ tagType: 'div',
234
+ buttonType: 'link',
235
+ linkType: 'internalLink',
236
+
237
+ internalLink: toPageRelationship(prose),
238
+ triggerClassName: 'text-2xl font-medium',
239
+
240
+ triggerChildren: [
241
+ {
242
+ blockType: 'SimpleTextChild',
243
+ tagType: 'span',
244
+ text: 'Prose',
245
+ id: '6928b772ae41f527d2ef0b87',
246
+
247
+ contentActions: {
248
+ actionBlocks: [],
249
+ },
250
+
251
+ staticDataAttributes: [],
252
+ },
253
+ ],
254
+
255
+ triggerActions: {
256
+ actionBlocks: [
257
+ {
258
+ blockType: 'ActSetPortalOpen',
259
+ portal: 'menu',
260
+ id: '6931e6fa7deeea1f1c1366eb',
261
+ },
262
+ ],
263
+
264
+ actions: ['ActSetPortalOpen'],
265
+
266
+ runners: [
267
+ {
268
+ type: 'RunSetBool',
269
+ key: 'menu',
270
+ initialValue: false,
271
+ persisted: false,
272
+ },
273
+ ],
274
+
275
+ attributers: [],
276
+ },
277
+ id: '6928b772ae41f527d2ef0b86',
278
+ blockName: 'Prose',
279
+
280
+ children: [],
281
+
282
+ contentActions: {
283
+ actionBlocks: [],
284
+ },
285
+
286
+ formRateLimitBlocks: [],
287
+
288
+ formSanitationBlocks: [],
289
+
290
+ formValidationBlocks: [],
291
+
292
+ inputSanitationBlocks: [],
293
+
294
+ inputValidationBlocks: [],
295
+
296
+ backdropChildren: [],
297
+
298
+ ds: {},
299
+
300
+ pops: {},
301
+
302
+ triggerStaticDataAttributes: [],
303
+
304
+ staticDataAttributes: [],
305
+ },
306
+ ],
307
+ id: '6928b653ae41f527d2ef0b81',
308
+ blockName: 'Links',
309
+
310
+ triggerChildren: [],
311
+
312
+ triggerActions: {
313
+ actionBlocks: [],
314
+ },
315
+
316
+ contentActions: {
317
+ actionBlocks: [],
318
+ },
319
+
320
+ formRateLimitBlocks: [],
321
+
322
+ formSanitationBlocks: [],
323
+
324
+ formValidationBlocks: [],
325
+
326
+ inputSanitationBlocks: [],
327
+
328
+ inputValidationBlocks: [],
329
+
330
+ backdropChildren: [],
331
+
332
+ ds: {},
333
+
334
+ pops: {},
335
+
336
+ triggerStaticDataAttributes: [],
337
+
338
+ staticDataAttributes: [],
339
+ },
340
+ ],
341
+ id: '6928b630ae41f527d2ef0b7f',
342
+ blockName: 'Menu Links',
343
+
344
+ triggerChildren: [],
345
+
346
+ triggerActions: {
347
+ actionBlocks: [],
348
+ },
349
+
350
+ contentActions: {
351
+ actionBlocks: [],
352
+ },
353
+
354
+ formRateLimitBlocks: [],
355
+
356
+ formSanitationBlocks: [],
357
+
358
+ formValidationBlocks: [],
359
+
360
+ inputSanitationBlocks: [],
361
+
362
+ inputValidationBlocks: [],
363
+
364
+ backdropChildren: [],
365
+
366
+ ds: {},
367
+
368
+ pops: {},
369
+
370
+ triggerStaticDataAttributes: [],
371
+
372
+ staticDataAttributes: [],
373
+ },
374
+
375
+ {
376
+ blockType: 'AtomicChild',
377
+ type: 'tag',
378
+ tagType: 'div',
379
+ ClassName: 'flex flex-col gap-4',
380
+
381
+ children: [
382
+ {
383
+ blockType: 'SimpleTextChild',
384
+ tagType: 'div',
385
+ ClassName: 'text-muted-foreground text-sm font-medium',
386
+ text: 'Reference',
387
+ id: '6931e6a97deeea1f1c1366e3',
388
+
389
+ contentActions: {
390
+ actionBlocks: [],
391
+ },
392
+
393
+ staticDataAttributes: [],
394
+ },
395
+
396
+ {
397
+ blockType: 'AtomicChild',
398
+ type: 'tag',
399
+ tagType: 'div',
400
+ ClassName: 'flex flex-col gap-3',
401
+
402
+ children: [
403
+ {
404
+ blockType: 'AtomicChild',
405
+ type: 'button',
406
+ tagType: 'div',
407
+ buttonType: 'link',
408
+ linkType: 'externalLink',
409
+ externalLink: 'atomicpayload.com',
410
+ triggerClassName: 'text-2xl font-medium',
411
+
412
+ triggerChildren: [
413
+ {
414
+ blockType: 'SimpleTextChild',
415
+ tagType: 'span',
416
+ text: 'Docs',
417
+ id: '6931e6a97deeea1f1c1366e6',
418
+
419
+ contentActions: {
420
+ actionBlocks: [],
421
+ },
422
+
423
+ staticDataAttributes: [],
424
+ },
425
+ ],
426
+ id: '6931e6a97deeea1f1c1366e5',
427
+ blockName: 'Docs',
428
+
429
+ children: [],
430
+
431
+ triggerActions: {
432
+ actionBlocks: [],
433
+ },
434
+
435
+ contentActions: {
436
+ actionBlocks: [],
437
+ },
438
+
439
+ formRateLimitBlocks: [],
440
+
441
+ formSanitationBlocks: [],
442
+
443
+ formValidationBlocks: [],
444
+
445
+ inputSanitationBlocks: [],
446
+
447
+ inputValidationBlocks: [],
448
+
449
+ backdropChildren: [],
450
+
451
+ ds: {},
452
+
453
+ pops: {},
454
+
455
+ triggerStaticDataAttributes: [],
456
+
457
+ staticDataAttributes: [],
458
+ },
459
+ ],
460
+ id: '6931e6a97deeea1f1c1366e4',
461
+ blockName: 'Links',
462
+
463
+ triggerChildren: [],
464
+
465
+ triggerActions: {
466
+ actionBlocks: [],
467
+ },
468
+
469
+ contentActions: {
470
+ actionBlocks: [],
471
+ },
472
+
473
+ formRateLimitBlocks: [],
474
+
475
+ formSanitationBlocks: [],
476
+
477
+ formValidationBlocks: [],
478
+
479
+ inputSanitationBlocks: [],
480
+
481
+ inputValidationBlocks: [],
482
+
483
+ backdropChildren: [],
484
+
485
+ ds: {},
486
+
487
+ pops: {},
488
+
489
+ triggerStaticDataAttributes: [],
490
+
491
+ staticDataAttributes: [],
492
+ },
493
+ ],
494
+ id: '6931e6a97deeea1f1c1366e2',
495
+ blockName: 'Reference Links',
496
+
497
+ triggerChildren: [],
498
+
499
+ triggerActions: {
500
+ actionBlocks: [],
501
+ },
502
+
503
+ contentActions: {
504
+ actionBlocks: [],
505
+ },
506
+
507
+ formRateLimitBlocks: [],
508
+
509
+ formSanitationBlocks: [],
510
+
511
+ formValidationBlocks: [],
512
+
513
+ inputSanitationBlocks: [],
514
+
515
+ inputValidationBlocks: [],
516
+
517
+ backdropChildren: [],
518
+
519
+ ds: {},
520
+
521
+ pops: {},
522
+
523
+ triggerStaticDataAttributes: [],
524
+
525
+ staticDataAttributes: [],
526
+ },
527
+ ],
528
+ id: '6928b626ae41f527d2ef0b7e',
529
+
530
+ triggerChildren: [],
531
+
532
+ triggerActions: {
533
+ actionBlocks: [],
534
+ },
535
+
536
+ contentActions: {
537
+ actionBlocks: [],
538
+ },
539
+
540
+ formRateLimitBlocks: [],
541
+
542
+ formSanitationBlocks: [],
543
+
544
+ formValidationBlocks: [],
545
+
546
+ inputSanitationBlocks: [],
547
+
548
+ inputValidationBlocks: [],
549
+
550
+ backdropChildren: [],
551
+
552
+ ds: {},
553
+
554
+ pops: {},
555
+
556
+ triggerStaticDataAttributes: [],
557
+
558
+ staticDataAttributes: [],
559
+ },
560
+ ],
561
+ triggerClassName:
562
+ " flex lg:hidden cursor-pointer group/menu text-xl whitespace-nowrap rounded-md font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:text-accent-foreground px-4 py-2 has-[>svg]:px-3 extend-touch-target touch-manipulation items-center justify-start gap-2.5 !p-0 hover:bg-transparent focus-visible:bg-transparent focus-visible:ring-0 active:bg-transparent dark:hover:bg-transparent",
563
+
564
+ triggerChildren: [
565
+ {
566
+ blockType: 'IconChild',
567
+ icon: 'menu',
568
+ ClassName: 'group-data-[popup-open]/menu:hidden flex',
569
+ id: '692f33d7d7ed1cbbd4cb346d',
570
+ blockName: 'Menu',
571
+
572
+ staticDataAttributes: [],
573
+ },
574
+
575
+ {
576
+ blockType: 'IconChild',
577
+ icon: 'close',
578
+ ClassName: 'group-data-[popup-open]/menu:flex hidden',
579
+ id: '692f33dcd7ed1cbbd4cb346e',
580
+ blockName: '',
581
+
582
+ staticDataAttributes: [],
583
+ },
584
+
585
+ {
586
+ blockType: 'SimpleTextChild',
587
+ tagType: 'span',
588
+ ClassName: 'flex items-center leading-none font-medium ',
589
+ text: 'Menu',
590
+ id: '692893c518f4a1a54c700a69',
591
+
592
+ contentActions: {
593
+ actionBlocks: [],
594
+ },
595
+
596
+ staticDataAttributes: [],
597
+ },
598
+ ],
599
+
600
+ triggerActions: {
601
+ actionBlocks: [],
602
+
603
+ actions: ['ActSetPortalOpen'],
604
+
605
+ runners: [
606
+ {
607
+ type: 'RunSetBool',
608
+ key: 'menu',
609
+ persisted: false,
610
+ initialValue: false,
611
+ },
612
+ ],
613
+
614
+ attributers: [],
615
+ },
616
+ backdropClassName: '',
617
+ id: '6928923418f4a1a54c700a67',
618
+
619
+ contentActions: {
620
+ actionBlocks: [],
621
+ },
622
+
623
+ formRateLimitBlocks: [],
624
+
625
+ formSanitationBlocks: [],
626
+
627
+ formValidationBlocks: [],
628
+
629
+ inputSanitationBlocks: [],
630
+
631
+ inputValidationBlocks: [],
632
+
633
+ backdropChildren: [],
634
+
635
+ ds: {},
636
+
637
+ pops: {},
638
+
639
+ triggerStaticDataAttributes: [],
640
+
641
+ staticDataAttributes: [],
642
+ },
643
+
644
+ {
645
+ blockType: 'AtomicChild',
646
+ type: 'button',
647
+ tagType: 'div',
648
+ buttonType: 'link',
649
+ linkType: 'internalLink',
650
+
651
+ internalLink: toPageRelationship(home),
652
+ triggerClassName: 'menu-trigger-icon hidden lg:flex',
653
+
654
+ triggerChildren: [
655
+ {
656
+ blockType: 'IconChild',
657
+ icon: 'logo',
658
+ ClassName: 'size-5',
659
+ id: '69288190df37686e6978aec2',
660
+
661
+ staticDataAttributes: [],
662
+ },
663
+ ],
664
+ id: '69288150df37686e6978aec1',
665
+ blockName: 'Logo Home Page Link',
666
+
667
+ children: [],
668
+
669
+ triggerActions: {
670
+ actionBlocks: [],
671
+ },
672
+
673
+ contentActions: {
674
+ actionBlocks: [],
675
+ },
676
+
677
+ formRateLimitBlocks: [],
678
+
679
+ formSanitationBlocks: [],
680
+
681
+ formValidationBlocks: [],
682
+
683
+ inputSanitationBlocks: [],
684
+
685
+ inputValidationBlocks: [],
686
+
687
+ backdropChildren: [],
688
+
689
+ ds: {},
690
+
691
+ pops: {},
692
+
693
+ triggerStaticDataAttributes: [],
694
+
695
+ staticDataAttributes: [],
696
+ },
697
+
698
+ {
699
+ blockType: 'AtomicChild',
700
+ type: 'tag',
701
+ tagType: 'nav',
702
+ ClassName: 'items-center hidden lg:flex',
703
+
704
+ children: [
705
+ {
706
+ blockType: 'AtomicChild',
707
+ type: 'button',
708
+ tagType: 'div',
709
+ buttonType: 'link',
710
+ linkType: 'internalLink',
711
+
712
+ internalLink: toPageRelationship(testing),
713
+ triggerClassName: 'menu-trigger-text',
714
+
715
+ triggerChildren: [
716
+ {
717
+ blockType: 'SimpleTextChild',
718
+ tagType: 'span',
719
+ text: 'Testing',
720
+ id: '69287facdf37686e6978aeb5',
721
+
722
+ contentActions: {
723
+ actionBlocks: [],
724
+ },
725
+
726
+ staticDataAttributes: [],
727
+ },
728
+ ],
729
+ id: '69287facdf37686e6978aeb4',
730
+ blockName: 'Testing',
731
+
732
+ children: [],
733
+
734
+ triggerActions: {
735
+ actionBlocks: [],
736
+ },
737
+
738
+ contentActions: {
739
+ actionBlocks: [],
740
+ },
741
+
742
+ formRateLimitBlocks: [],
743
+
744
+ formSanitationBlocks: [],
745
+
746
+ formValidationBlocks: [],
747
+
748
+ inputSanitationBlocks: [],
749
+
750
+ inputValidationBlocks: [],
751
+
752
+ backdropChildren: [],
753
+
754
+ ds: {},
755
+
756
+ pops: {},
757
+
758
+ triggerStaticDataAttributes: [],
759
+
760
+ staticDataAttributes: [],
761
+ },
762
+
763
+ {
764
+ blockType: 'AtomicChild',
765
+ type: 'button',
766
+ tagType: 'div',
767
+ buttonType: 'link',
768
+ linkType: 'internalLink',
769
+
770
+ internalLink: toPageRelationship(prose),
771
+ triggerClassName: 'menu-trigger-text',
772
+
773
+ triggerChildren: [
774
+ {
775
+ blockType: 'SimpleTextChild',
776
+ tagType: 'span',
777
+ text: 'Prose',
778
+ id: '69287facdf37686e6978aeb5',
779
+
780
+ contentActions: {
781
+ actionBlocks: [],
782
+ },
783
+
784
+ staticDataAttributes: [],
785
+ },
786
+ ],
787
+ id: '69287facdf37686e6978aeb4',
788
+ blockName: 'Prose',
789
+
790
+ children: [],
791
+
792
+ triggerActions: {
793
+ actionBlocks: [],
794
+ },
795
+
796
+ contentActions: {
797
+ actionBlocks: [],
798
+ },
799
+
800
+ formRateLimitBlocks: [],
801
+
802
+ formSanitationBlocks: [],
803
+
804
+ formValidationBlocks: [],
805
+
806
+ inputSanitationBlocks: [],
807
+
808
+ inputValidationBlocks: [],
809
+
810
+ backdropChildren: [],
811
+
812
+ ds: {},
813
+
814
+ pops: {},
815
+
816
+ triggerStaticDataAttributes: [],
817
+
818
+ staticDataAttributes: [],
819
+ },
820
+
821
+ {
822
+ blockType: 'AtomicChild',
823
+ type: 'button',
824
+ tagType: 'div',
825
+ buttonType: 'link',
826
+ linkType: 'externalLink',
827
+ externalLink: 'atomicpayload.com',
828
+ triggerClassName: 'menu-trigger-text',
829
+
830
+ triggerChildren: [
831
+ {
832
+ blockType: 'SimpleTextChild',
833
+ tagType: 'span',
834
+ text: 'Docs',
835
+ id: '69287e50df37686e6978aeb2',
836
+
837
+ contentActions: {
838
+ actionBlocks: [],
839
+ },
840
+
841
+ staticDataAttributes: [],
842
+ },
843
+ ],
844
+ id: '69287e2ddf37686e6978aeb1',
845
+ blockName: 'Docs',
846
+
847
+ children: [],
848
+
849
+ triggerActions: {
850
+ actionBlocks: [],
851
+ },
852
+
853
+ contentActions: {
854
+ actionBlocks: [],
855
+ },
856
+
857
+ formRateLimitBlocks: [],
858
+
859
+ formSanitationBlocks: [],
860
+
861
+ formValidationBlocks: [],
862
+
863
+ inputSanitationBlocks: [],
864
+
865
+ inputValidationBlocks: [],
866
+
867
+ backdropChildren: [],
868
+
869
+ ds: {},
870
+
871
+ pops: {},
872
+
873
+ triggerStaticDataAttributes: [],
874
+
875
+ staticDataAttributes: [],
876
+ },
877
+ ],
878
+ id: '69287e05df37686e6978aeb0',
879
+ blockName: 'Main Nav',
880
+
881
+ triggerChildren: [],
882
+
883
+ triggerActions: {
884
+ actionBlocks: [],
885
+ },
886
+
887
+ contentActions: {
888
+ actionBlocks: [],
889
+ },
890
+
891
+ formRateLimitBlocks: [],
892
+
893
+ formSanitationBlocks: [],
894
+
895
+ formValidationBlocks: [],
896
+
897
+ inputSanitationBlocks: [],
898
+
899
+ inputValidationBlocks: [],
900
+
901
+ backdropChildren: [],
902
+
903
+ ds: {},
904
+
905
+ pops: {},
906
+
907
+ triggerStaticDataAttributes: [],
908
+
909
+ staticDataAttributes: [],
910
+ },
911
+
912
+ {
913
+ blockType: 'AtomicChild',
914
+ type: 'tag',
915
+ tagType: 'div',
916
+ ClassName: 'ml-auto flex items-center gap-2 md:flex-1 md:justify-end',
917
+
918
+ children: [
919
+ {
920
+ blockType: 'AtomicChild',
921
+ type: 'button',
922
+ tagType: 'div',
923
+ buttonType: 'link',
924
+ linkType: 'externalLink',
925
+ externalLink: 'www.github.com',
926
+ triggerClassName: 'menu-trigger-both',
927
+
928
+ triggerChildren: [
929
+ {
930
+ blockType: 'IconChild',
931
+ icon: 'github',
932
+ ClassName: 'position-center',
933
+ id: '69288c9e18f4a1a54c700a57',
934
+
935
+ staticDataAttributes: [],
936
+ },
937
+
938
+ {
939
+ blockType: 'SimpleTextChild',
940
+ tagType: 'span',
941
+ ClassName: 'text-muted-foreground w-fit text-xs tabular-nums',
942
+ text: 'Github',
943
+ id: '692882d1df37686e6978aec8',
944
+
945
+ contentActions: {
946
+ actionBlocks: [],
947
+ },
948
+
949
+ staticDataAttributes: [],
950
+ },
951
+ ],
952
+ id: '692882bfdf37686e6978aec7',
953
+ blockName: 'Github Link',
954
+
955
+ children: [],
956
+
957
+ triggerActions: {
958
+ actionBlocks: [],
959
+ },
960
+
961
+ contentActions: {
962
+ actionBlocks: [],
963
+ },
964
+
965
+ formRateLimitBlocks: [],
966
+
967
+ formSanitationBlocks: [],
968
+
969
+ formValidationBlocks: [],
970
+
971
+ inputSanitationBlocks: [],
972
+
973
+ inputValidationBlocks: [],
974
+
975
+ backdropChildren: [],
976
+
977
+ ds: {},
978
+
979
+ pops: {},
980
+
981
+ triggerStaticDataAttributes: [],
982
+
983
+ staticDataAttributes: [],
984
+ },
985
+
986
+ {
987
+ blockType: 'AtomicChild',
988
+ type: 'tag',
989
+ tagType: 'div',
990
+ ClassName: 'ui-seperator',
991
+
992
+ staticDataAttributes: [
993
+ {
994
+ key: 'orientation',
995
+ value: 'vertical',
996
+ id: '692882acdf37686e6978aec6',
997
+ },
998
+ ],
999
+ id: '69288266df37686e6978aec4',
1000
+ blockName: 'Seperator',
1001
+
1002
+ children: [],
1003
+
1004
+ triggerChildren: [],
1005
+
1006
+ triggerActions: {
1007
+ actionBlocks: [],
1008
+ },
1009
+
1010
+ contentActions: {
1011
+ actionBlocks: [],
1012
+ },
1013
+
1014
+ formRateLimitBlocks: [],
1015
+
1016
+ formSanitationBlocks: [],
1017
+
1018
+ formValidationBlocks: [],
1019
+
1020
+ inputSanitationBlocks: [],
1021
+
1022
+ inputValidationBlocks: [],
1023
+
1024
+ backdropChildren: [],
1025
+
1026
+ ds: {},
1027
+
1028
+ pops: {},
1029
+
1030
+ triggerStaticDataAttributes: [],
1031
+ },
1032
+
1033
+ {
1034
+ blockType: 'AtomicChild',
1035
+ type: 'button',
1036
+ tagType: 'div',
1037
+ buttonType: 'portal',
1038
+ portalType: 'dialog',
1039
+ portalName: 'consent',
1040
+ persisted: true,
1041
+ ClassName:
1042
+ 'fixed top-[calc(50%+1.25rem*var(--nested-dialogs))] left-1/2 -mt-8 w-96 max-w-[calc(100vw-3rem)] -translate-x-1/2 -translate-y-1/2 scale-[calc(1-0.1*var(--nested-dialogs))] rounded-lg bg-background p-6 text-foreground outline outline-1 outline-border transition-all duration-150 data-[ending-style]:scale-90 data-[ending-style]:opacity-0 data-[nested-dialog-open]:after:absolute data-[nested-dialog-open]:after:inset-0 data-[nested-dialog-open]:after:rounded-[inherit] data-[nested-dialog-open]:after:bg-accent/5 data-[starting-style]:scale-90 data-[starting-style]:opacity-0 border-border',
1043
+
1044
+ children: [
1045
+ {
1046
+ blockType: 'AtomicChild',
1047
+ type: 'tag',
1048
+ tagType: 'div',
1049
+ ClassName: 'flex flex-col gap-1.5 relative',
1050
+
1051
+ children: [
1052
+ {
1053
+ blockType: 'SimpleTextChild',
1054
+ tagType: 'h3',
1055
+ ClassName: 'text-2xl leading-none',
1056
+ text: 'Cookie Consent',
1057
+ id: '69330e270e7c3976269e9092',
1058
+
1059
+ contentActions: {
1060
+ actionBlocks: [],
1061
+ },
1062
+
1063
+ staticDataAttributes: [],
1064
+ },
1065
+
1066
+ {
1067
+ blockType: 'SimpleTextChild',
1068
+ tagType: 'p',
1069
+ text: 'This is the cookie consent management dialog. Enhance as you see fit.',
1070
+ id: '69330e3d0e7c3976269e9093',
1071
+
1072
+ contentActions: {
1073
+ actionBlocks: [],
1074
+ },
1075
+
1076
+ staticDataAttributes: [],
1077
+ },
1078
+
1079
+ {
1080
+ blockType: 'AtomicChild',
1081
+ type: 'button',
1082
+ tagType: 'div',
1083
+ buttonType: 'regular',
1084
+ triggerClassName: 'trigger trigger-style-ghost trigger-size-sm absolute top-0 right-0 mt-[-8px] mr-[-4px]',
1085
+ screenReaderText: 'Close consent dialog.',
1086
+
1087
+ triggerChildren: [
1088
+ {
1089
+ blockType: 'IconChild',
1090
+ icon: 'close',
1091
+ ariaHidden: true,
1092
+ ClassName: 'size-3',
1093
+ id: '693334d6187048963ccfa145',
1094
+
1095
+ staticDataAttributes: [],
1096
+ },
1097
+ ],
1098
+
1099
+ triggerActions: {
1100
+ actionBlocks: [
1101
+ {
1102
+ blockType: 'ActSetPortalOpen',
1103
+ portal: 'consent',
1104
+ id: '693334d6187048963ccfa146',
1105
+ },
1106
+ ],
1107
+
1108
+ actions: ['ActSetPortalOpen'],
1109
+
1110
+ runners: [
1111
+ {
1112
+ type: 'RunSetBool',
1113
+ key: 'consent',
1114
+ initialValue: true,
1115
+ persisted: true,
1116
+ },
1117
+ ],
1118
+
1119
+ attributers: [],
1120
+ },
1121
+ id: '693334ce3dc3aa372c7fa57d',
1122
+
1123
+ children: [],
1124
+
1125
+ contentActions: {
1126
+ actionBlocks: [],
1127
+ },
1128
+
1129
+ formRateLimitBlocks: [],
1130
+
1131
+ formSanitationBlocks: [],
1132
+
1133
+ formValidationBlocks: [],
1134
+
1135
+ inputSanitationBlocks: [],
1136
+
1137
+ inputValidationBlocks: [],
1138
+
1139
+ backdropChildren: [],
1140
+
1141
+ ds: {},
1142
+
1143
+ pops: {},
1144
+
1145
+ triggerStaticDataAttributes: [],
1146
+
1147
+ staticDataAttributes: [],
1148
+ },
1149
+ ],
1150
+ id: '69330e180e7c3976269e9091',
1151
+ blockName: 'Title & Description & Close',
1152
+
1153
+ triggerChildren: [],
1154
+
1155
+ triggerActions: {
1156
+ actionBlocks: [],
1157
+ },
1158
+
1159
+ contentActions: {
1160
+ actionBlocks: [],
1161
+ },
1162
+
1163
+ formRateLimitBlocks: [],
1164
+
1165
+ formSanitationBlocks: [],
1166
+
1167
+ formValidationBlocks: [],
1168
+
1169
+ inputSanitationBlocks: [],
1170
+
1171
+ inputValidationBlocks: [],
1172
+
1173
+ backdropChildren: [],
1174
+
1175
+ ds: {},
1176
+
1177
+ pops: {},
1178
+
1179
+ triggerStaticDataAttributes: [],
1180
+
1181
+ staticDataAttributes: [],
1182
+ },
1183
+
1184
+ {
1185
+ blockType: 'AtomicChild',
1186
+ type: 'tag',
1187
+ tagType: 'div',
1188
+ ClassName: 'flex flex-col gap-2 mt-4',
1189
+
1190
+ children: [
1191
+ {
1192
+ blockType: 'AtomicChild',
1193
+ type: 'tag',
1194
+ tagType: 'div',
1195
+ ClassName: 'flex flex-row justify-between items-center',
1196
+
1197
+ children: [
1198
+ {
1199
+ blockType: 'SimpleTextChild',
1200
+ tagType: 'label',
1201
+ ClassName: 'text-lg',
1202
+ htmlFor: 'functional',
1203
+ text: 'Functional',
1204
+ id: '693326e43dc3aa372c7fa53e',
1205
+
1206
+ contentActions: {
1207
+ actionBlocks: [],
1208
+ },
1209
+
1210
+ staticDataAttributes: [],
1211
+ },
1212
+
1213
+ {
1214
+ blockType: 'AtomicChild',
1215
+ type: 'button',
1216
+ tagType: 'div',
1217
+ buttonType: 'regular',
1218
+ triggerClassName: 'trigger consent-trigger group',
1219
+
1220
+ triggerChildren: [
1221
+ {
1222
+ blockType: 'SimpleTextChild',
1223
+ tagType: 'span',
1224
+ ClassName: 'group-data-[enabled]:flex hidden',
1225
+ text: 'Enabled',
1226
+ id: '693327423dc3aa372c7fa540',
1227
+
1228
+ contentActions: {
1229
+ actionBlocks: [],
1230
+ },
1231
+
1232
+ staticDataAttributes: [],
1233
+ },
1234
+
1235
+ {
1236
+ blockType: 'SimpleTextChild',
1237
+ tagType: 'span',
1238
+ ClassName: 'group-data-[enabled]:hidden flex',
1239
+ text: 'Disabled',
1240
+ id: '6933280d3dc3aa372c7fa542',
1241
+
1242
+ contentActions: {
1243
+ actionBlocks: [],
1244
+ },
1245
+
1246
+ staticDataAttributes: [],
1247
+ },
1248
+ ],
1249
+
1250
+ triggerActions: {
1251
+ actionBlocks: [
1252
+ {
1253
+ blockType: 'ActSetCC',
1254
+ perform: 'preference',
1255
+ key: 'functional',
1256
+ setDA: true,
1257
+ changeKey: 'enabled',
1258
+ id: '6933282b3dc3aa372c7fa543',
1259
+ },
1260
+ ],
1261
+
1262
+ actions: ['ActSetCC'],
1263
+
1264
+ runners: [
1265
+ {
1266
+ type: 'RunSetCC',
1267
+
1268
+ values: {
1269
+ perform: 'preference',
1270
+ key: 'functional',
1271
+ },
1272
+ },
1273
+ ],
1274
+
1275
+ attributers: [
1276
+ {
1277
+ type: 'AttCCToDA',
1278
+
1279
+ listen: {
1280
+ listen: 'preference',
1281
+ key: 'functional',
1282
+ },
1283
+ changeKey: 'enabled',
1284
+ },
1285
+ ],
1286
+ },
1287
+ cid: 'functional',
1288
+ id: '693327103dc3aa372c7fa53f',
1289
+
1290
+ children: [],
1291
+
1292
+ contentActions: {
1293
+ actionBlocks: [],
1294
+ },
1295
+
1296
+ formRateLimitBlocks: [],
1297
+
1298
+ formSanitationBlocks: [],
1299
+
1300
+ formValidationBlocks: [],
1301
+
1302
+ inputSanitationBlocks: [],
1303
+
1304
+ inputValidationBlocks: [],
1305
+
1306
+ backdropChildren: [],
1307
+
1308
+ ds: {},
1309
+
1310
+ pops: {},
1311
+
1312
+ triggerStaticDataAttributes: [],
1313
+
1314
+ staticDataAttributes: [],
1315
+ },
1316
+ ],
1317
+ id: '693326773dc3aa372c7fa53d',
1318
+ blockName: 'Functional',
1319
+
1320
+ triggerChildren: [],
1321
+
1322
+ triggerActions: {
1323
+ actionBlocks: [],
1324
+ },
1325
+
1326
+ contentActions: {
1327
+ actionBlocks: [],
1328
+ },
1329
+
1330
+ formRateLimitBlocks: [],
1331
+
1332
+ formSanitationBlocks: [],
1333
+
1334
+ formValidationBlocks: [],
1335
+
1336
+ inputSanitationBlocks: [],
1337
+
1338
+ inputValidationBlocks: [],
1339
+
1340
+ backdropChildren: [],
1341
+
1342
+ ds: {},
1343
+
1344
+ pops: {},
1345
+
1346
+ triggerStaticDataAttributes: [],
1347
+
1348
+ staticDataAttributes: [],
1349
+ },
1350
+
1351
+ {
1352
+ blockType: 'AtomicChild',
1353
+ type: 'tag',
1354
+ tagType: 'div',
1355
+ ClassName: 'flex flex-row justify-between items-center',
1356
+
1357
+ children: [
1358
+ {
1359
+ blockType: 'SimpleTextChild',
1360
+ tagType: 'label',
1361
+ ClassName: 'text-lg',
1362
+ htmlFor: 'security',
1363
+ text: 'Security',
1364
+ id: '69332c933dc3aa372c7fa555',
1365
+
1366
+ contentActions: {
1367
+ actionBlocks: [],
1368
+ },
1369
+
1370
+ staticDataAttributes: [],
1371
+ },
1372
+
1373
+ {
1374
+ blockType: 'AtomicChild',
1375
+ type: 'button',
1376
+ tagType: 'div',
1377
+ buttonType: 'regular',
1378
+ triggerClassName: 'trigger consent-trigger group',
1379
+
1380
+ triggerChildren: [
1381
+ {
1382
+ blockType: 'SimpleTextChild',
1383
+ tagType: 'span',
1384
+ ClassName: 'group-data-[enabled]:flex hidden',
1385
+ text: 'Enabled',
1386
+ id: '69332c933dc3aa372c7fa557',
1387
+
1388
+ contentActions: {
1389
+ actionBlocks: [],
1390
+ },
1391
+
1392
+ staticDataAttributes: [],
1393
+ },
1394
+
1395
+ {
1396
+ blockType: 'SimpleTextChild',
1397
+ tagType: 'span',
1398
+ ClassName: 'group-data-[enabled]:hidden flex',
1399
+ text: 'Disabled',
1400
+ id: '69332c933dc3aa372c7fa558',
1401
+
1402
+ contentActions: {
1403
+ actionBlocks: [],
1404
+ },
1405
+
1406
+ staticDataAttributes: [],
1407
+ },
1408
+ ],
1409
+
1410
+ triggerActions: {
1411
+ actionBlocks: [
1412
+ {
1413
+ blockType: 'ActSetCC',
1414
+ perform: 'preference',
1415
+ key: 'security',
1416
+ setDA: true,
1417
+ changeKey: 'enabled',
1418
+ id: '69332c933dc3aa372c7fa559',
1419
+ },
1420
+ ],
1421
+
1422
+ actions: ['ActSetCC'],
1423
+
1424
+ runners: [
1425
+ {
1426
+ type: 'RunSetCC',
1427
+
1428
+ values: {
1429
+ perform: 'preference',
1430
+ key: 'security',
1431
+ },
1432
+ },
1433
+ ],
1434
+
1435
+ attributers: [
1436
+ {
1437
+ type: 'AttCCToDA',
1438
+
1439
+ listen: {
1440
+ listen: 'preference',
1441
+ key: 'security',
1442
+ },
1443
+ changeKey: 'enabled',
1444
+ },
1445
+ ],
1446
+ },
1447
+ cid: 'security',
1448
+ id: '69332c933dc3aa372c7fa556',
1449
+
1450
+ children: [],
1451
+
1452
+ contentActions: {
1453
+ actionBlocks: [],
1454
+ },
1455
+
1456
+ formRateLimitBlocks: [],
1457
+
1458
+ formSanitationBlocks: [],
1459
+
1460
+ formValidationBlocks: [],
1461
+
1462
+ inputSanitationBlocks: [],
1463
+
1464
+ inputValidationBlocks: [],
1465
+
1466
+ backdropChildren: [],
1467
+
1468
+ ds: {},
1469
+
1470
+ pops: {},
1471
+
1472
+ triggerStaticDataAttributes: [],
1473
+
1474
+ staticDataAttributes: [],
1475
+ },
1476
+ ],
1477
+ id: '69332c933dc3aa372c7fa554',
1478
+ blockName: 'Security',
1479
+
1480
+ triggerChildren: [],
1481
+
1482
+ triggerActions: {
1483
+ actionBlocks: [],
1484
+ },
1485
+
1486
+ contentActions: {
1487
+ actionBlocks: [],
1488
+ },
1489
+
1490
+ formRateLimitBlocks: [],
1491
+
1492
+ formSanitationBlocks: [],
1493
+
1494
+ formValidationBlocks: [],
1495
+
1496
+ inputSanitationBlocks: [],
1497
+
1498
+ inputValidationBlocks: [],
1499
+
1500
+ backdropChildren: [],
1501
+
1502
+ ds: {},
1503
+
1504
+ pops: {},
1505
+
1506
+ triggerStaticDataAttributes: [],
1507
+
1508
+ staticDataAttributes: [],
1509
+ },
1510
+
1511
+ {
1512
+ blockType: 'AtomicChild',
1513
+ type: 'tag',
1514
+ tagType: 'div',
1515
+ ClassName: 'flex flex-row justify-between items-center',
1516
+
1517
+ children: [
1518
+ {
1519
+ blockType: 'SimpleTextChild',
1520
+ tagType: 'label',
1521
+ ClassName: 'text-lg',
1522
+ htmlFor: 'analytics',
1523
+ text: 'Analytics',
1524
+ id: '69332ce63dc3aa372c7fa55b',
1525
+
1526
+ contentActions: {
1527
+ actionBlocks: [],
1528
+ },
1529
+
1530
+ staticDataAttributes: [],
1531
+ },
1532
+
1533
+ {
1534
+ blockType: 'AtomicChild',
1535
+ type: 'button',
1536
+ tagType: 'div',
1537
+ buttonType: 'regular',
1538
+ triggerClassName: 'trigger consent-trigger group',
1539
+
1540
+ triggerChildren: [
1541
+ {
1542
+ blockType: 'SimpleTextChild',
1543
+ tagType: 'span',
1544
+ ClassName: 'group-data-[enabled]:flex hidden',
1545
+ text: 'Enabled',
1546
+ id: '69332ce63dc3aa372c7fa55d',
1547
+
1548
+ contentActions: {
1549
+ actionBlocks: [],
1550
+ },
1551
+
1552
+ staticDataAttributes: [],
1553
+ },
1554
+
1555
+ {
1556
+ blockType: 'SimpleTextChild',
1557
+ tagType: 'span',
1558
+ ClassName: 'group-data-[enabled]:hidden flex',
1559
+ text: 'Disabled',
1560
+ id: '69332ce63dc3aa372c7fa55e',
1561
+
1562
+ contentActions: {
1563
+ actionBlocks: [],
1564
+ },
1565
+
1566
+ staticDataAttributes: [],
1567
+ },
1568
+ ],
1569
+
1570
+ triggerActions: {
1571
+ actionBlocks: [
1572
+ {
1573
+ blockType: 'ActSetCC',
1574
+ perform: 'preference',
1575
+ key: 'analytics',
1576
+ setDA: true,
1577
+ changeKey: 'enabled',
1578
+ id: '69332ce63dc3aa372c7fa55f',
1579
+ },
1580
+ ],
1581
+
1582
+ actions: ['ActSetCC'],
1583
+
1584
+ runners: [
1585
+ {
1586
+ type: 'RunSetCC',
1587
+
1588
+ values: {
1589
+ perform: 'preference',
1590
+ key: 'analytics',
1591
+ },
1592
+ },
1593
+ ],
1594
+
1595
+ attributers: [
1596
+ {
1597
+ type: 'AttCCToDA',
1598
+
1599
+ listen: {
1600
+ listen: 'preference',
1601
+ key: 'analytics',
1602
+ },
1603
+ changeKey: 'enabled',
1604
+ },
1605
+ ],
1606
+ },
1607
+ cid: 'analytics',
1608
+ id: '69332ce63dc3aa372c7fa55c',
1609
+
1610
+ children: [],
1611
+
1612
+ contentActions: {
1613
+ actionBlocks: [],
1614
+ },
1615
+
1616
+ formRateLimitBlocks: [],
1617
+
1618
+ formSanitationBlocks: [],
1619
+
1620
+ formValidationBlocks: [],
1621
+
1622
+ inputSanitationBlocks: [],
1623
+
1624
+ inputValidationBlocks: [],
1625
+
1626
+ backdropChildren: [],
1627
+
1628
+ ds: {},
1629
+
1630
+ pops: {},
1631
+
1632
+ triggerStaticDataAttributes: [],
1633
+
1634
+ staticDataAttributes: [],
1635
+ },
1636
+ ],
1637
+ id: '69332ce63dc3aa372c7fa55a',
1638
+ blockName: 'Analytics',
1639
+
1640
+ triggerChildren: [],
1641
+
1642
+ triggerActions: {
1643
+ actionBlocks: [],
1644
+ },
1645
+
1646
+ contentActions: {
1647
+ actionBlocks: [],
1648
+ },
1649
+
1650
+ formRateLimitBlocks: [],
1651
+
1652
+ formSanitationBlocks: [],
1653
+
1654
+ formValidationBlocks: [],
1655
+
1656
+ inputSanitationBlocks: [],
1657
+
1658
+ inputValidationBlocks: [],
1659
+
1660
+ backdropChildren: [],
1661
+
1662
+ ds: {},
1663
+
1664
+ pops: {},
1665
+
1666
+ triggerStaticDataAttributes: [],
1667
+
1668
+ staticDataAttributes: [],
1669
+ },
1670
+
1671
+ {
1672
+ blockType: 'AtomicChild',
1673
+ type: 'tag',
1674
+ tagType: 'div',
1675
+ ClassName: 'flex flex-row justify-between items-center',
1676
+
1677
+ children: [
1678
+ {
1679
+ blockType: 'SimpleTextChild',
1680
+ tagType: 'label',
1681
+ ClassName: 'text-lg',
1682
+ htmlFor: 'marketing',
1683
+ text: 'Marketing',
1684
+ id: '693330dc3dc3aa372c7fa561',
1685
+
1686
+ contentActions: {
1687
+ actionBlocks: [],
1688
+ },
1689
+
1690
+ staticDataAttributes: [],
1691
+ },
1692
+
1693
+ {
1694
+ blockType: 'AtomicChild',
1695
+ type: 'button',
1696
+ tagType: 'div',
1697
+ buttonType: 'regular',
1698
+ triggerClassName: 'trigger consent-trigger group',
1699
+
1700
+ triggerChildren: [
1701
+ {
1702
+ blockType: 'SimpleTextChild',
1703
+ tagType: 'span',
1704
+ ClassName: 'group-data-[enabled]:flex hidden',
1705
+ text: 'Enabled',
1706
+ id: '693330dc3dc3aa372c7fa563',
1707
+
1708
+ contentActions: {
1709
+ actionBlocks: [],
1710
+ },
1711
+
1712
+ staticDataAttributes: [],
1713
+ },
1714
+
1715
+ {
1716
+ blockType: 'SimpleTextChild',
1717
+ tagType: 'span',
1718
+ ClassName: 'group-data-[enabled]:hidden flex',
1719
+ text: 'Disabled',
1720
+ id: '693330dc3dc3aa372c7fa564',
1721
+
1722
+ contentActions: {
1723
+ actionBlocks: [],
1724
+ },
1725
+
1726
+ staticDataAttributes: [],
1727
+ },
1728
+ ],
1729
+
1730
+ triggerActions: {
1731
+ actionBlocks: [
1732
+ {
1733
+ blockType: 'ActSetCC',
1734
+ perform: 'preference',
1735
+ key: 'marketing',
1736
+ setDA: true,
1737
+ changeKey: 'enabled',
1738
+ id: '693330dc3dc3aa372c7fa565',
1739
+ },
1740
+ ],
1741
+
1742
+ actions: ['ActSetCC'],
1743
+
1744
+ runners: [
1745
+ {
1746
+ type: 'RunSetCC',
1747
+
1748
+ values: {
1749
+ perform: 'preference',
1750
+ key: 'marketing',
1751
+ },
1752
+ },
1753
+ ],
1754
+
1755
+ attributers: [
1756
+ {
1757
+ type: 'AttCCToDA',
1758
+
1759
+ listen: {
1760
+ listen: 'preference',
1761
+ key: 'marketing',
1762
+ },
1763
+ changeKey: 'enabled',
1764
+ },
1765
+ ],
1766
+ },
1767
+ cid: 'marketing',
1768
+ id: '693330dc3dc3aa372c7fa562',
1769
+
1770
+ children: [],
1771
+
1772
+ contentActions: {
1773
+ actionBlocks: [],
1774
+ },
1775
+
1776
+ formRateLimitBlocks: [],
1777
+
1778
+ formSanitationBlocks: [],
1779
+
1780
+ formValidationBlocks: [],
1781
+
1782
+ inputSanitationBlocks: [],
1783
+
1784
+ inputValidationBlocks: [],
1785
+
1786
+ backdropChildren: [],
1787
+
1788
+ ds: {},
1789
+
1790
+ pops: {},
1791
+
1792
+ triggerStaticDataAttributes: [],
1793
+
1794
+ staticDataAttributes: [],
1795
+ },
1796
+ ],
1797
+ id: '693330dc3dc3aa372c7fa560',
1798
+ blockName: 'Marketing',
1799
+
1800
+ triggerChildren: [],
1801
+
1802
+ triggerActions: {
1803
+ actionBlocks: [],
1804
+ },
1805
+
1806
+ contentActions: {
1807
+ actionBlocks: [],
1808
+ },
1809
+
1810
+ formRateLimitBlocks: [],
1811
+
1812
+ formSanitationBlocks: [],
1813
+
1814
+ formValidationBlocks: [],
1815
+
1816
+ inputSanitationBlocks: [],
1817
+
1818
+ inputValidationBlocks: [],
1819
+
1820
+ backdropChildren: [],
1821
+
1822
+ ds: {},
1823
+
1824
+ pops: {},
1825
+
1826
+ triggerStaticDataAttributes: [],
1827
+
1828
+ staticDataAttributes: [],
1829
+ },
1830
+
1831
+ {
1832
+ blockType: 'AtomicChild',
1833
+ type: 'tag',
1834
+ tagType: 'div',
1835
+ ClassName: 'flex flex-row justify-between items-center',
1836
+
1837
+ children: [
1838
+ {
1839
+ blockType: 'SimpleTextChild',
1840
+ tagType: 'label',
1841
+ ClassName: 'text-lg',
1842
+ htmlFor: 'userData',
1843
+ text: 'User Data',
1844
+ id: '6933311d3dc3aa372c7fa567',
1845
+
1846
+ contentActions: {
1847
+ actionBlocks: [],
1848
+ },
1849
+
1850
+ staticDataAttributes: [],
1851
+ },
1852
+
1853
+ {
1854
+ blockType: 'AtomicChild',
1855
+ type: 'button',
1856
+ tagType: 'div',
1857
+ buttonType: 'regular',
1858
+ triggerClassName: 'trigger consent-trigger group',
1859
+
1860
+ triggerChildren: [
1861
+ {
1862
+ blockType: 'SimpleTextChild',
1863
+ tagType: 'span',
1864
+ ClassName: 'group-data-[enabled]:flex hidden',
1865
+ text: 'Enabled',
1866
+ id: '6933311d3dc3aa372c7fa569',
1867
+
1868
+ contentActions: {
1869
+ actionBlocks: [],
1870
+ },
1871
+
1872
+ staticDataAttributes: [],
1873
+ },
1874
+
1875
+ {
1876
+ blockType: 'SimpleTextChild',
1877
+ tagType: 'span',
1878
+ ClassName: 'group-data-[enabled]:hidden flex',
1879
+ text: 'Disabled',
1880
+ id: '6933311d3dc3aa372c7fa56a',
1881
+
1882
+ contentActions: {
1883
+ actionBlocks: [],
1884
+ },
1885
+
1886
+ staticDataAttributes: [],
1887
+ },
1888
+ ],
1889
+
1890
+ triggerActions: {
1891
+ actionBlocks: [
1892
+ {
1893
+ blockType: 'ActSetCC',
1894
+ perform: 'preference',
1895
+ key: 'userData',
1896
+ setDA: true,
1897
+ changeKey: 'enabled',
1898
+ id: '6933311d3dc3aa372c7fa56b',
1899
+ },
1900
+ ],
1901
+
1902
+ actions: ['ActSetCC'],
1903
+
1904
+ runners: [
1905
+ {
1906
+ type: 'RunSetCC',
1907
+
1908
+ values: {
1909
+ perform: 'preference',
1910
+ key: 'userData',
1911
+ },
1912
+ },
1913
+ ],
1914
+
1915
+ attributers: [
1916
+ {
1917
+ type: 'AttCCToDA',
1918
+
1919
+ listen: {
1920
+ listen: 'preference',
1921
+ key: 'userData',
1922
+ },
1923
+ changeKey: 'enabled',
1924
+ },
1925
+ ],
1926
+ },
1927
+ cid: 'userData',
1928
+ id: '6933311d3dc3aa372c7fa568',
1929
+
1930
+ children: [],
1931
+
1932
+ contentActions: {
1933
+ actionBlocks: [],
1934
+ },
1935
+
1936
+ formRateLimitBlocks: [],
1937
+
1938
+ formSanitationBlocks: [],
1939
+
1940
+ formValidationBlocks: [],
1941
+
1942
+ inputSanitationBlocks: [],
1943
+
1944
+ inputValidationBlocks: [],
1945
+
1946
+ backdropChildren: [],
1947
+
1948
+ ds: {},
1949
+
1950
+ pops: {},
1951
+
1952
+ triggerStaticDataAttributes: [],
1953
+
1954
+ staticDataAttributes: [],
1955
+ },
1956
+ ],
1957
+ id: '6933311d3dc3aa372c7fa566',
1958
+ blockName: 'User Data',
1959
+
1960
+ triggerChildren: [],
1961
+
1962
+ triggerActions: {
1963
+ actionBlocks: [],
1964
+ },
1965
+
1966
+ contentActions: {
1967
+ actionBlocks: [],
1968
+ },
1969
+
1970
+ formRateLimitBlocks: [],
1971
+
1972
+ formSanitationBlocks: [],
1973
+
1974
+ formValidationBlocks: [],
1975
+
1976
+ inputSanitationBlocks: [],
1977
+
1978
+ inputValidationBlocks: [],
1979
+
1980
+ backdropChildren: [],
1981
+
1982
+ ds: {},
1983
+
1984
+ pops: {},
1985
+
1986
+ triggerStaticDataAttributes: [],
1987
+
1988
+ staticDataAttributes: [],
1989
+ },
1990
+
1991
+ {
1992
+ blockType: 'AtomicChild',
1993
+ type: 'tag',
1994
+ tagType: 'div',
1995
+ ClassName: 'flex flex-row justify-between items-center',
1996
+
1997
+ children: [
1998
+ {
1999
+ blockType: 'SimpleTextChild',
2000
+ tagType: 'label',
2001
+ ClassName: 'text-lg',
2002
+ htmlFor: 'adPersonalization',
2003
+ text: 'Ad Personalization',
2004
+ id: '693331693dc3aa372c7fa56d',
2005
+
2006
+ contentActions: {
2007
+ actionBlocks: [],
2008
+ },
2009
+
2010
+ staticDataAttributes: [],
2011
+ },
2012
+
2013
+ {
2014
+ blockType: 'AtomicChild',
2015
+ type: 'button',
2016
+ tagType: 'div',
2017
+ buttonType: 'regular',
2018
+ triggerClassName: 'trigger consent-trigger group',
2019
+
2020
+ triggerChildren: [
2021
+ {
2022
+ blockType: 'SimpleTextChild',
2023
+ tagType: 'span',
2024
+ ClassName: 'group-data-[enabled]:flex hidden',
2025
+ text: 'Enabled',
2026
+ id: '693331693dc3aa372c7fa56f',
2027
+
2028
+ contentActions: {
2029
+ actionBlocks: [],
2030
+ },
2031
+
2032
+ staticDataAttributes: [],
2033
+ },
2034
+
2035
+ {
2036
+ blockType: 'SimpleTextChild',
2037
+ tagType: 'span',
2038
+ ClassName: 'group-data-[enabled]:hidden flex',
2039
+ text: 'Disabled',
2040
+ id: '693331693dc3aa372c7fa570',
2041
+
2042
+ contentActions: {
2043
+ actionBlocks: [],
2044
+ },
2045
+
2046
+ staticDataAttributes: [],
2047
+ },
2048
+ ],
2049
+
2050
+ triggerActions: {
2051
+ actionBlocks: [
2052
+ {
2053
+ blockType: 'ActSetCC',
2054
+ perform: 'preference',
2055
+ key: 'adPersonalization',
2056
+ setDA: true,
2057
+ changeKey: 'enabled',
2058
+ id: '693331693dc3aa372c7fa571',
2059
+ },
2060
+ ],
2061
+
2062
+ actions: ['ActSetCC'],
2063
+
2064
+ runners: [
2065
+ {
2066
+ type: 'RunSetCC',
2067
+
2068
+ values: {
2069
+ perform: 'preference',
2070
+ key: 'adPersonalization',
2071
+ },
2072
+ },
2073
+ ],
2074
+
2075
+ attributers: [
2076
+ {
2077
+ type: 'AttCCToDA',
2078
+
2079
+ listen: {
2080
+ listen: 'preference',
2081
+ key: 'adPersonalization',
2082
+ },
2083
+ changeKey: 'enabled',
2084
+ },
2085
+ ],
2086
+ },
2087
+ cid: 'adPersonalization',
2088
+ id: '693331693dc3aa372c7fa56e',
2089
+
2090
+ children: [],
2091
+
2092
+ contentActions: {
2093
+ actionBlocks: [],
2094
+ },
2095
+
2096
+ formRateLimitBlocks: [],
2097
+
2098
+ formSanitationBlocks: [],
2099
+
2100
+ formValidationBlocks: [],
2101
+
2102
+ inputSanitationBlocks: [],
2103
+
2104
+ inputValidationBlocks: [],
2105
+
2106
+ backdropChildren: [],
2107
+
2108
+ ds: {},
2109
+
2110
+ pops: {},
2111
+
2112
+ triggerStaticDataAttributes: [],
2113
+
2114
+ staticDataAttributes: [],
2115
+ },
2116
+ ],
2117
+ id: '693331693dc3aa372c7fa56c',
2118
+ blockName: 'Ad Personalization',
2119
+
2120
+ triggerChildren: [],
2121
+
2122
+ triggerActions: {
2123
+ actionBlocks: [],
2124
+ },
2125
+
2126
+ contentActions: {
2127
+ actionBlocks: [],
2128
+ },
2129
+
2130
+ formRateLimitBlocks: [],
2131
+
2132
+ formSanitationBlocks: [],
2133
+
2134
+ formValidationBlocks: [],
2135
+
2136
+ inputSanitationBlocks: [],
2137
+
2138
+ inputValidationBlocks: [],
2139
+
2140
+ backdropChildren: [],
2141
+
2142
+ ds: {},
2143
+
2144
+ pops: {},
2145
+
2146
+ triggerStaticDataAttributes: [],
2147
+
2148
+ staticDataAttributes: [],
2149
+ },
2150
+
2151
+ {
2152
+ blockType: 'AtomicChild',
2153
+ type: 'tag',
2154
+ tagType: 'div',
2155
+ ClassName: 'flex flex-row justify-between items-center',
2156
+
2157
+ children: [
2158
+ {
2159
+ blockType: 'SimpleTextChild',
2160
+ tagType: 'label',
2161
+ ClassName: 'text-lg',
2162
+ htmlFor: 'contentPersonalization',
2163
+ text: 'Content Personalization',
2164
+ id: '693331be3dc3aa372c7fa573',
2165
+
2166
+ contentActions: {
2167
+ actionBlocks: [],
2168
+ },
2169
+
2170
+ staticDataAttributes: [],
2171
+ },
2172
+
2173
+ {
2174
+ blockType: 'AtomicChild',
2175
+ type: 'button',
2176
+ tagType: 'div',
2177
+ buttonType: 'regular',
2178
+ triggerClassName: 'trigger consent-trigger group',
2179
+
2180
+ triggerChildren: [
2181
+ {
2182
+ blockType: 'SimpleTextChild',
2183
+ tagType: 'span',
2184
+ ClassName: 'group-data-[enabled]:flex hidden',
2185
+ text: 'Enabled',
2186
+ id: '693331be3dc3aa372c7fa575',
2187
+
2188
+ contentActions: {
2189
+ actionBlocks: [],
2190
+ },
2191
+
2192
+ staticDataAttributes: [],
2193
+ },
2194
+
2195
+ {
2196
+ blockType: 'SimpleTextChild',
2197
+ tagType: 'span',
2198
+ ClassName: 'group-data-[enabled]:hidden flex',
2199
+ text: 'Disabled',
2200
+ id: '693331be3dc3aa372c7fa576',
2201
+
2202
+ contentActions: {
2203
+ actionBlocks: [],
2204
+ },
2205
+
2206
+ staticDataAttributes: [],
2207
+ },
2208
+ ],
2209
+
2210
+ triggerActions: {
2211
+ actionBlocks: [
2212
+ {
2213
+ blockType: 'ActSetCC',
2214
+ perform: 'preference',
2215
+ key: 'contentPersonalization',
2216
+ setDA: true,
2217
+ changeKey: 'enabled',
2218
+ id: '693331be3dc3aa372c7fa577',
2219
+ },
2220
+ ],
2221
+
2222
+ actions: ['ActSetCC'],
2223
+
2224
+ runners: [
2225
+ {
2226
+ type: 'RunSetCC',
2227
+
2228
+ values: {
2229
+ perform: 'preference',
2230
+ key: 'contentPersonalization',
2231
+ },
2232
+ },
2233
+ ],
2234
+
2235
+ attributers: [
2236
+ {
2237
+ type: 'AttCCToDA',
2238
+
2239
+ listen: {
2240
+ listen: 'preference',
2241
+ key: 'contentPersonalization',
2242
+ },
2243
+ changeKey: 'enabled',
2244
+ },
2245
+ ],
2246
+ },
2247
+ cid: 'contentPersonalization',
2248
+ id: '693331be3dc3aa372c7fa574',
2249
+
2250
+ children: [],
2251
+
2252
+ contentActions: {
2253
+ actionBlocks: [],
2254
+ },
2255
+
2256
+ formRateLimitBlocks: [],
2257
+
2258
+ formSanitationBlocks: [],
2259
+
2260
+ formValidationBlocks: [],
2261
+
2262
+ inputSanitationBlocks: [],
2263
+
2264
+ inputValidationBlocks: [],
2265
+
2266
+ backdropChildren: [],
2267
+
2268
+ ds: {},
2269
+
2270
+ pops: {},
2271
+
2272
+ triggerStaticDataAttributes: [],
2273
+
2274
+ staticDataAttributes: [],
2275
+ },
2276
+ ],
2277
+ id: '693331be3dc3aa372c7fa572',
2278
+ blockName: 'Content Personalization',
2279
+
2280
+ triggerChildren: [],
2281
+
2282
+ triggerActions: {
2283
+ actionBlocks: [],
2284
+ },
2285
+
2286
+ contentActions: {
2287
+ actionBlocks: [],
2288
+ },
2289
+
2290
+ formRateLimitBlocks: [],
2291
+
2292
+ formSanitationBlocks: [],
2293
+
2294
+ formValidationBlocks: [],
2295
+
2296
+ inputSanitationBlocks: [],
2297
+
2298
+ inputValidationBlocks: [],
2299
+
2300
+ backdropChildren: [],
2301
+
2302
+ ds: {},
2303
+
2304
+ pops: {},
2305
+
2306
+ triggerStaticDataAttributes: [],
2307
+
2308
+ staticDataAttributes: [],
2309
+ },
2310
+ ],
2311
+ id: '693326473dc3aa372c7fa53c',
2312
+ blockName: 'Toggles',
2313
+
2314
+ triggerChildren: [],
2315
+
2316
+ triggerActions: {
2317
+ actionBlocks: [],
2318
+ },
2319
+
2320
+ contentActions: {
2321
+ actionBlocks: [],
2322
+ },
2323
+
2324
+ formRateLimitBlocks: [],
2325
+
2326
+ formSanitationBlocks: [],
2327
+
2328
+ formValidationBlocks: [],
2329
+
2330
+ inputSanitationBlocks: [],
2331
+
2332
+ inputValidationBlocks: [],
2333
+
2334
+ backdropChildren: [],
2335
+
2336
+ ds: {},
2337
+
2338
+ pops: {},
2339
+
2340
+ triggerStaticDataAttributes: [],
2341
+
2342
+ staticDataAttributes: [],
2343
+ },
2344
+
2345
+ {
2346
+ blockType: 'AtomicChild',
2347
+ type: 'tag',
2348
+ tagType: 'div',
2349
+ ClassName: 'flex flex-row justify-between mt-4',
2350
+
2351
+ children: [
2352
+ {
2353
+ blockType: 'AtomicChild',
2354
+ type: 'button',
2355
+ tagType: 'div',
2356
+ buttonType: 'regular',
2357
+ triggerClassName: 'trigger trigger-style-destructive trigger-size-base',
2358
+
2359
+ triggerChildren: [
2360
+ {
2361
+ blockType: 'SimpleTextChild',
2362
+ tagType: 'fragment',
2363
+ text: 'Decline',
2364
+ id: '693336213dc3aa372c7fa580',
2365
+
2366
+ contentActions: {
2367
+ actionBlocks: [],
2368
+ },
2369
+
2370
+ staticDataAttributes: [],
2371
+ },
2372
+ ],
2373
+
2374
+ triggerActions: {
2375
+ actionBlocks: [
2376
+ {
2377
+ blockType: 'ActSetCC',
2378
+ perform: 'decline',
2379
+ setDA: true,
2380
+ id: '6933364d3dc3aa372c7fa581',
2381
+ },
2382
+
2383
+ {
2384
+ blockType: 'ActSetPortalOpen',
2385
+ portal: 'consent',
2386
+ id: '6933365b3dc3aa372c7fa582',
2387
+ },
2388
+ ],
2389
+
2390
+ actions: ['ActSetCC', 'ActSetPortalOpen'],
2391
+
2392
+ runners: [
2393
+ {
2394
+ type: 'RunSetCC',
2395
+
2396
+ values: {
2397
+ perform: 'decline',
2398
+ },
2399
+ },
2400
+
2401
+ {
2402
+ type: 'RunSetBool',
2403
+ key: 'consent',
2404
+ initialValue: true,
2405
+ persisted: true,
2406
+ },
2407
+ ],
2408
+
2409
+ attributers: [
2410
+ {
2411
+ type: 'AttCCToDA',
2412
+
2413
+ listen: {
2414
+ listen: 'decline',
2415
+ },
2416
+ },
2417
+ ],
2418
+ },
2419
+ id: '693335f93dc3aa372c7fa57f',
2420
+ blockName: 'Decline',
2421
+
2422
+ children: [],
2423
+
2424
+ contentActions: {
2425
+ actionBlocks: [],
2426
+ },
2427
+
2428
+ formRateLimitBlocks: [],
2429
+
2430
+ formSanitationBlocks: [],
2431
+
2432
+ formValidationBlocks: [],
2433
+
2434
+ inputSanitationBlocks: [],
2435
+
2436
+ inputValidationBlocks: [],
2437
+
2438
+ backdropChildren: [],
2439
+
2440
+ ds: {},
2441
+
2442
+ pops: {},
2443
+
2444
+ triggerStaticDataAttributes: [],
2445
+
2446
+ staticDataAttributes: [],
2447
+ },
2448
+
2449
+ {
2450
+ blockType: 'AtomicChild',
2451
+ type: 'button',
2452
+ tagType: 'div',
2453
+ buttonType: 'regular',
2454
+ triggerClassName: 'trigger trigger-size-base bg-success/60 hover:bg-success/80 data-[accepted]:bg-success/80',
2455
+
2456
+ triggerChildren: [
2457
+ {
2458
+ blockType: 'SimpleTextChild',
2459
+ tagType: 'fragment',
2460
+ text: 'Accept',
2461
+ id: '6933367f3dc3aa372c7fa584',
2462
+
2463
+ contentActions: {
2464
+ actionBlocks: [],
2465
+ },
2466
+
2467
+ staticDataAttributes: [],
2468
+ },
2469
+ ],
2470
+
2471
+ triggerActions: {
2472
+ actionBlocks: [
2473
+ {
2474
+ blockType: 'ActSetCC',
2475
+ perform: 'accept',
2476
+ setDA: true,
2477
+ id: '6933367f3dc3aa372c7fa585',
2478
+ },
2479
+
2480
+ {
2481
+ blockType: 'ActSetPortalOpen',
2482
+ portal: 'consent',
2483
+ id: '6933367f3dc3aa372c7fa586',
2484
+ },
2485
+ ],
2486
+
2487
+ actions: ['ActSetCC', 'ActSetPortalOpen'],
2488
+
2489
+ runners: [
2490
+ {
2491
+ type: 'RunSetCC',
2492
+
2493
+ values: {
2494
+ perform: 'accept',
2495
+ },
2496
+ },
2497
+
2498
+ {
2499
+ type: 'RunSetBool',
2500
+ key: 'consent',
2501
+ initialValue: true,
2502
+ persisted: true,
2503
+ },
2504
+ ],
2505
+
2506
+ attributers: [
2507
+ {
2508
+ type: 'AttCCToDA',
2509
+
2510
+ listen: {
2511
+ listen: 'accept',
2512
+ },
2513
+ },
2514
+ ],
2515
+ },
2516
+ id: '6933367f3dc3aa372c7fa583',
2517
+ blockName: 'Accept',
2518
+
2519
+ children: [],
2520
+
2521
+ contentActions: {
2522
+ actionBlocks: [],
2523
+ },
2524
+
2525
+ formRateLimitBlocks: [],
2526
+
2527
+ formSanitationBlocks: [],
2528
+
2529
+ formValidationBlocks: [],
2530
+
2531
+ inputSanitationBlocks: [],
2532
+
2533
+ inputValidationBlocks: [],
2534
+
2535
+ backdropChildren: [],
2536
+
2537
+ ds: {},
2538
+
2539
+ pops: {},
2540
+
2541
+ triggerStaticDataAttributes: [],
2542
+
2543
+ staticDataAttributes: [],
2544
+ },
2545
+
2546
+ {
2547
+ blockType: 'AtomicChild',
2548
+ type: 'button',
2549
+ tagType: 'div',
2550
+ buttonType: 'regular',
2551
+ triggerClassName: 'trigger trigger-size-base bg-success/60 hover:bg-success/80 data-[accepted]:bg-success/80',
2552
+
2553
+ triggerChildren: [
2554
+ {
2555
+ blockType: 'SimpleTextChild',
2556
+ tagType: 'fragment',
2557
+ text: 'Accept All',
2558
+ id: '693337053dc3aa372c7fa588',
2559
+
2560
+ contentActions: {
2561
+ actionBlocks: [],
2562
+ },
2563
+
2564
+ staticDataAttributes: [],
2565
+ },
2566
+ ],
2567
+
2568
+ triggerActions: {
2569
+ actionBlocks: [
2570
+ {
2571
+ blockType: 'ActSetCC',
2572
+ perform: 'accept',
2573
+ acceptAll: true,
2574
+ setDA: true,
2575
+ changeKey: '',
2576
+ id: '693337053dc3aa372c7fa589',
2577
+ },
2578
+
2579
+ {
2580
+ blockType: 'ActSetPortalOpen',
2581
+ portal: 'consent',
2582
+ id: '693337053dc3aa372c7fa58a',
2583
+ },
2584
+ ],
2585
+
2586
+ actions: ['ActSetCC', 'ActSetPortalOpen'],
2587
+
2588
+ runners: [
2589
+ {
2590
+ type: 'RunSetCC',
2591
+
2592
+ values: {
2593
+ perform: 'accept',
2594
+ acceptAll: true,
2595
+ },
2596
+ },
2597
+
2598
+ {
2599
+ type: 'RunSetBool',
2600
+ key: 'consent',
2601
+ initialValue: true,
2602
+ persisted: true,
2603
+ },
2604
+ ],
2605
+
2606
+ attributers: [
2607
+ {
2608
+ type: 'AttCCToDA',
2609
+
2610
+ listen: {
2611
+ listen: 'accept',
2612
+ },
2613
+ changeKey: '',
2614
+ },
2615
+ ],
2616
+ },
2617
+ id: '693337053dc3aa372c7fa587',
2618
+ blockName: 'Accept All',
2619
+
2620
+ children: [],
2621
+
2622
+ contentActions: {
2623
+ actionBlocks: [],
2624
+ },
2625
+
2626
+ formRateLimitBlocks: [],
2627
+
2628
+ formSanitationBlocks: [],
2629
+
2630
+ formValidationBlocks: [],
2631
+
2632
+ inputSanitationBlocks: [],
2633
+
2634
+ inputValidationBlocks: [],
2635
+
2636
+ backdropChildren: [],
2637
+
2638
+ ds: {},
2639
+
2640
+ pops: {},
2641
+
2642
+ triggerStaticDataAttributes: [],
2643
+
2644
+ staticDataAttributes: [],
2645
+ },
2646
+ ],
2647
+ id: '693335af3dc3aa372c7fa57e',
2648
+ blockName: 'Decline & Accepts',
2649
+
2650
+ triggerChildren: [],
2651
+
2652
+ triggerActions: {
2653
+ actionBlocks: [],
2654
+ },
2655
+
2656
+ contentActions: {
2657
+ actionBlocks: [],
2658
+ },
2659
+
2660
+ formRateLimitBlocks: [],
2661
+
2662
+ formSanitationBlocks: [],
2663
+
2664
+ formValidationBlocks: [],
2665
+
2666
+ inputSanitationBlocks: [],
2667
+
2668
+ inputValidationBlocks: [],
2669
+
2670
+ backdropChildren: [],
2671
+
2672
+ ds: {},
2673
+
2674
+ pops: {},
2675
+
2676
+ triggerStaticDataAttributes: [],
2677
+
2678
+ staticDataAttributes: [],
2679
+ },
2680
+ ],
2681
+ triggerClassName: 'menu-trigger-icon flex',
2682
+ screenReaderText: 'Toggle theme',
2683
+
2684
+ triggerChildren: [
2685
+ {
2686
+ blockType: 'IconChild',
2687
+ icon: 'cookie',
2688
+ ClassName: 'size-4.5',
2689
+ id: '69330b9e0e7c3976269e908f',
2690
+
2691
+ staticDataAttributes: [],
2692
+ },
2693
+ ],
2694
+
2695
+ triggerActions: {
2696
+ actionBlocks: [],
2697
+
2698
+ actions: ['ActSetPortalOpen'],
2699
+
2700
+ runners: [
2701
+ {
2702
+ type: 'RunSetBool',
2703
+ key: 'consent',
2704
+ persisted: true,
2705
+ initialValue: true,
2706
+ },
2707
+ ],
2708
+
2709
+ attributers: [],
2710
+ },
2711
+ backdropClassName:
2712
+ 'fixed inset-0 min-h-dvh bg-black opacity-20 transition-all duration-150 data-[ending-style]:opacity-0 data-[starting-style]:opacity-0 dark:opacity-70 supports-[-webkit-touch-callout:none]:absolute',
2713
+
2714
+ ds: {
2715
+ defaultOpen: true,
2716
+ dismissible: true,
2717
+ },
2718
+ id: '69330b9e0e7c3976269e908e',
2719
+ blockName: 'Cookie Toggle',
2720
+
2721
+ contentActions: {
2722
+ actionBlocks: [],
2723
+ },
2724
+
2725
+ formRateLimitBlocks: [],
2726
+
2727
+ formSanitationBlocks: [],
2728
+
2729
+ formValidationBlocks: [],
2730
+
2731
+ inputSanitationBlocks: [],
2732
+
2733
+ inputValidationBlocks: [],
2734
+
2735
+ backdropChildren: [],
2736
+
2737
+ pops: {},
2738
+
2739
+ triggerStaticDataAttributes: [],
2740
+
2741
+ staticDataAttributes: [],
2742
+ },
2743
+
2744
+ {
2745
+ blockType: 'AtomicChild',
2746
+ type: 'tag',
2747
+ tagType: 'div',
2748
+ ClassName: 'ui-seperator',
2749
+
2750
+ staticDataAttributes: [
2751
+ {
2752
+ key: 'orientation',
2753
+ value: 'vertical',
2754
+ id: '693309ab0e7c3976269e908a',
2755
+ },
2756
+ ],
2757
+ id: '693309ab0e7c3976269e9089',
2758
+ blockName: 'Seperator',
2759
+
2760
+ children: [],
2761
+
2762
+ triggerChildren: [],
2763
+
2764
+ triggerActions: {
2765
+ actionBlocks: [],
2766
+ },
2767
+
2768
+ contentActions: {
2769
+ actionBlocks: [],
2770
+ },
2771
+
2772
+ formRateLimitBlocks: [],
2773
+
2774
+ formSanitationBlocks: [],
2775
+
2776
+ formValidationBlocks: [],
2777
+
2778
+ inputSanitationBlocks: [],
2779
+
2780
+ inputValidationBlocks: [],
2781
+
2782
+ backdropChildren: [],
2783
+
2784
+ ds: {},
2785
+
2786
+ pops: {},
2787
+
2788
+ triggerStaticDataAttributes: [],
2789
+ },
2790
+
2791
+ {
2792
+ blockType: 'AtomicChild',
2793
+ type: 'button',
2794
+ tagType: 'div',
2795
+ buttonType: 'regular',
2796
+ triggerClassName: 'menu-trigger-icon flex',
2797
+ screenReaderText: 'Toggle theme',
2798
+
2799
+ triggerChildren: [
2800
+ {
2801
+ blockType: 'IconChild',
2802
+ icon: 'theme',
2803
+ ClassName: 'size-4.5',
2804
+ id: '6928859adf37686e6978aeca',
2805
+
2806
+ staticDataAttributes: [],
2807
+ },
2808
+ ],
2809
+
2810
+ triggerActions: {
2811
+ actionBlocks: [
2812
+ {
2813
+ blockType: 'ActSetTheme',
2814
+ perform: 'cycle',
2815
+ id: '692885eb5a0c1e888eb3e6f1',
2816
+ },
2817
+ ],
2818
+
2819
+ actions: ['ActSetTheme'],
2820
+
2821
+ runners: [
2822
+ {
2823
+ type: 'RunSetTheme',
2824
+ perform: 'cycle',
2825
+ },
2826
+ ],
2827
+
2828
+ attributers: [],
2829
+ },
2830
+ id: '69288588df37686e6978aec9',
2831
+ blockName: 'Theme Toggle',
2832
+
2833
+ children: [],
2834
+
2835
+ contentActions: {
2836
+ actionBlocks: [],
2837
+ },
2838
+
2839
+ formRateLimitBlocks: [],
2840
+
2841
+ formSanitationBlocks: [],
2842
+
2843
+ formValidationBlocks: [],
2844
+
2845
+ inputSanitationBlocks: [],
2846
+
2847
+ inputValidationBlocks: [],
2848
+
2849
+ backdropChildren: [],
2850
+
2851
+ ds: {},
2852
+
2853
+ pops: {},
2854
+
2855
+ triggerStaticDataAttributes: [],
2856
+
2857
+ staticDataAttributes: [],
2858
+ },
2859
+ ],
2860
+ id: '692881e8df37686e6978aec3',
2861
+ blockName: 'Right Side Nav / Functional Buttons',
2862
+
2863
+ triggerChildren: [],
2864
+
2865
+ triggerActions: {
2866
+ actionBlocks: [],
2867
+ },
2868
+
2869
+ contentActions: {
2870
+ actionBlocks: [],
2871
+ },
2872
+
2873
+ formRateLimitBlocks: [],
2874
+
2875
+ formSanitationBlocks: [],
2876
+
2877
+ formValidationBlocks: [],
2878
+
2879
+ inputSanitationBlocks: [],
2880
+
2881
+ inputValidationBlocks: [],
2882
+
2883
+ backdropChildren: [],
2884
+
2885
+ ds: {},
2886
+
2887
+ pops: {},
2888
+
2889
+ triggerStaticDataAttributes: [],
2890
+
2891
+ staticDataAttributes: [],
2892
+ },
2893
+ ],
2894
+ id: '69275275eb8aaaca85b3a423',
2895
+
2896
+ triggerChildren: [],
2897
+
2898
+ triggerActions: {
2899
+ actionBlocks: [],
2900
+ },
2901
+
2902
+ contentActions: {
2903
+ actionBlocks: [],
2904
+ },
2905
+
2906
+ formRateLimitBlocks: [],
2907
+
2908
+ formSanitationBlocks: [],
2909
+
2910
+ formValidationBlocks: [],
2911
+
2912
+ inputSanitationBlocks: [],
2913
+
2914
+ inputValidationBlocks: [],
2915
+
2916
+ backdropChildren: [],
2917
+
2918
+ ds: {},
2919
+
2920
+ pops: {},
2921
+
2922
+ triggerStaticDataAttributes: [],
2923
+
2924
+ staticDataAttributes: [],
2925
+ },
2926
+ ],
2927
+ id: '69275249eb8aaaca85b3a422',
2928
+
2929
+ triggerChildren: [],
2930
+
2931
+ triggerActions: {
2932
+ actionBlocks: [],
2933
+ },
2934
+
2935
+ contentActions: {
2936
+ actionBlocks: [],
2937
+ },
2938
+
2939
+ formRateLimitBlocks: [],
2940
+
2941
+ formSanitationBlocks: [],
2942
+
2943
+ formValidationBlocks: [],
2944
+
2945
+ inputSanitationBlocks: [],
2946
+
2947
+ inputValidationBlocks: [],
2948
+
2949
+ backdropChildren: [],
2950
+
2951
+ ds: {},
2952
+
2953
+ pops: {},
2954
+
2955
+ triggerStaticDataAttributes: [],
2956
+
2957
+ staticDataAttributes: [],
2958
+ },
2959
+ ] as any,
2960
+
2961
+ storedAtomicClasses: [
2962
+ 'bg-background',
2963
+ 'sticky',
2964
+ 'top-0',
2965
+ 'z-50',
2966
+ 'w-full',
2967
+ 'container-wrapper',
2968
+ '3xl:fixed:px-0',
2969
+ 'px-6',
2970
+ '3xl:fixed:container',
2971
+ 'flex',
2972
+ 'h-hh',
2973
+ 'items-center',
2974
+ '**:data-[slot=separator]:!h-4',
2975
+ 'fixed',
2976
+ 'top-[calc(var(--spacing)*14)]',
2977
+ 'bottom-0',
2978
+ 'left-0',
2979
+ 'right-0',
2980
+ 'min-h-dvh',
2981
+ 'transition-all',
2982
+ 'duration-150',
2983
+ 'data-[ending-style]:opacity-0',
2984
+ 'data-[starting-style]:opacity-0',
2985
+ 'overflow-y-auto',
2986
+ 'backdrop-blur',
2987
+ 'bg-background/80',
2988
+ 'no-scrollbar',
2989
+ 'flex-col',
2990
+ 'gap-12',
2991
+ 'overflow-auto',
2992
+ 'py-6',
2993
+ 'gap-4',
2994
+ 'text-muted-foreground',
2995
+ 'text-sm',
2996
+ 'font-medium',
2997
+ 'gap-3',
2998
+ 'text-2xl',
2999
+ '',
3000
+ 'lg:hidden',
3001
+ 'cursor-pointer',
3002
+ 'group/menu',
3003
+ 'text-xl',
3004
+ 'whitespace-nowrap',
3005
+ 'rounded-md',
3006
+ 'disabled:pointer-events-none',
3007
+ 'disabled:opacity-50',
3008
+ '[&_svg]:pointer-events-none',
3009
+ "[&_svg:not([class*='size-'])]:size-4",
3010
+ 'shrink-0',
3011
+ '[&_svg]:shrink-0',
3012
+ 'outline-none',
3013
+ 'focus-visible:border-ring',
3014
+ 'focus-visible:ring-ring/50',
3015
+ 'aria-invalid:ring-destructive/20',
3016
+ 'dark:aria-invalid:ring-destructive/40',
3017
+ 'aria-invalid:border-destructive',
3018
+ 'hover:text-accent-foreground',
3019
+ 'px-4',
3020
+ 'py-2',
3021
+ 'has-[>svg]:px-3',
3022
+ 'extend-touch-target',
3023
+ 'touch-manipulation',
3024
+ 'justify-start',
3025
+ 'gap-2.5',
3026
+ '!p-0',
3027
+ 'hover:bg-transparent',
3028
+ 'focus-visible:bg-transparent',
3029
+ 'focus-visible:ring-0',
3030
+ 'active:bg-transparent',
3031
+ 'dark:hover:bg-transparent',
3032
+ 'group-data-[popup-open]/menu:hidden',
3033
+ 'group-data-[popup-open]/menu:flex',
3034
+ 'hidden',
3035
+ 'leading-none',
3036
+ 'menu-trigger-icon',
3037
+ 'lg:flex',
3038
+ 'size-5',
3039
+ 'menu-trigger-text',
3040
+ 'ml-auto',
3041
+ 'gap-2',
3042
+ 'md:flex-1',
3043
+ 'md:justify-end',
3044
+ 'menu-trigger-both',
3045
+ 'position-center',
3046
+ 'w-fit',
3047
+ 'text-xs',
3048
+ 'tabular-nums',
3049
+ 'ui-seperator',
3050
+ 'top-[calc(50%+1.25rem*var(--nested-dialogs))]',
3051
+ 'left-1/2',
3052
+ '-mt-8',
3053
+ 'w-96',
3054
+ 'max-w-[calc(100vw-3rem)]',
3055
+ '-translate-x-1/2',
3056
+ '-translate-y-1/2',
3057
+ 'scale-[calc(1-0.1*var(--nested-dialogs))]',
3058
+ 'rounded-lg',
3059
+ 'p-6',
3060
+ 'text-foreground',
3061
+ 'outline',
3062
+ 'outline-1',
3063
+ 'outline-border',
3064
+ 'data-[ending-style]:scale-90',
3065
+ 'data-[nested-dialog-open]:after:absolute',
3066
+ 'data-[nested-dialog-open]:after:inset-0',
3067
+ 'data-[nested-dialog-open]:after:rounded-[inherit]',
3068
+ 'data-[nested-dialog-open]:after:bg-accent/5',
3069
+ 'data-[starting-style]:scale-90',
3070
+ 'border-border',
3071
+ 'gap-1.5',
3072
+ 'relative',
3073
+ 'trigger',
3074
+ 'trigger-style-ghost',
3075
+ 'trigger-size-sm',
3076
+ 'absolute',
3077
+ 'mt-[-8px]',
3078
+ 'mr-[-4px]',
3079
+ 'size-3',
3080
+ 'mt-4',
3081
+ 'flex-row',
3082
+ 'justify-between',
3083
+ 'text-lg',
3084
+ 'consent-trigger',
3085
+ 'group',
3086
+ 'group-data-[enabled]:flex',
3087
+ 'group-data-[enabled]:hidden',
3088
+ 'trigger-style-destructive',
3089
+ 'trigger-size-base',
3090
+ 'bg-success/60',
3091
+ 'hover:bg-success/80',
3092
+ 'data-[accepted]:bg-success/80',
3093
+ 'inset-0',
3094
+ 'bg-black',
3095
+ 'opacity-20',
3096
+ 'dark:opacity-70',
3097
+ 'supports-[-webkit-touch-callout:none]:absolute',
3098
+ 'size-4.5',
3099
+ ],
3100
+
3101
+ storedAtomicForms: [],
3102
+
3103
+ storedAtomicActions: {
3104
+ '6928b661ae41f527d2ef0b82': {
3105
+ id: '6928b661ae41f527d2ef0b82',
3106
+
3107
+ actions: ['ActSetPortalOpen'],
3108
+
3109
+ runners: [
3110
+ {
3111
+ type: 'RunSetBool',
3112
+ key: 'menu',
3113
+ initialValue: false,
3114
+ persisted: false,
3115
+ },
3116
+ ],
3117
+
3118
+ attributers: [],
3119
+ },
3120
+
3121
+ '6928b772ae41f527d2ef0b86': {
3122
+ id: '6928b772ae41f527d2ef0b86',
3123
+
3124
+ actions: ['ActSetPortalOpen'],
3125
+
3126
+ runners: [
3127
+ {
3128
+ type: 'RunSetBool',
3129
+ key: 'menu',
3130
+ initialValue: false,
3131
+ persisted: false,
3132
+ },
3133
+ ],
3134
+
3135
+ attributers: [],
3136
+ },
3137
+
3138
+ '6928923418f4a1a54c700a67': {
3139
+ id: '6928923418f4a1a54c700a67',
3140
+
3141
+ actions: ['ActSetPortalOpen'],
3142
+
3143
+ runners: [
3144
+ {
3145
+ type: 'RunSetBool',
3146
+ key: 'menu',
3147
+ persisted: false,
3148
+ initialValue: false,
3149
+ },
3150
+ ],
3151
+
3152
+ attributers: [],
3153
+ },
3154
+
3155
+ '693334ce3dc3aa372c7fa57d': {
3156
+ id: '693334ce3dc3aa372c7fa57d',
3157
+
3158
+ actions: ['ActSetPortalOpen'],
3159
+
3160
+ runners: [
3161
+ {
3162
+ type: 'RunSetBool',
3163
+ key: 'consent',
3164
+ initialValue: true,
3165
+ persisted: true,
3166
+ },
3167
+ ],
3168
+
3169
+ attributers: [],
3170
+ },
3171
+
3172
+ '693327103dc3aa372c7fa53f': {
3173
+ id: '693327103dc3aa372c7fa53f',
3174
+
3175
+ actions: ['ActSetCC'],
3176
+
3177
+ runners: [
3178
+ {
3179
+ type: 'RunSetCC',
3180
+
3181
+ values: {
3182
+ perform: 'preference',
3183
+ key: 'functional',
3184
+ },
3185
+ },
3186
+ ],
3187
+
3188
+ attributers: [
3189
+ {
3190
+ type: 'AttCCToDA',
3191
+
3192
+ listen: {
3193
+ listen: 'preference',
3194
+ key: 'functional',
3195
+ },
3196
+ changeKey: 'enabled',
3197
+ },
3198
+ ],
3199
+ },
3200
+
3201
+ '69332c933dc3aa372c7fa556': {
3202
+ id: '69332c933dc3aa372c7fa556',
3203
+
3204
+ actions: ['ActSetCC'],
3205
+
3206
+ runners: [
3207
+ {
3208
+ type: 'RunSetCC',
3209
+
3210
+ values: {
3211
+ perform: 'preference',
3212
+ key: 'security',
3213
+ },
3214
+ },
3215
+ ],
3216
+
3217
+ attributers: [
3218
+ {
3219
+ type: 'AttCCToDA',
3220
+
3221
+ listen: {
3222
+ listen: 'preference',
3223
+ key: 'security',
3224
+ },
3225
+ changeKey: 'enabled',
3226
+ },
3227
+ ],
3228
+ },
3229
+
3230
+ '69332ce63dc3aa372c7fa55c': {
3231
+ id: '69332ce63dc3aa372c7fa55c',
3232
+
3233
+ actions: ['ActSetCC'],
3234
+
3235
+ runners: [
3236
+ {
3237
+ type: 'RunSetCC',
3238
+
3239
+ values: {
3240
+ perform: 'preference',
3241
+ key: 'analytics',
3242
+ },
3243
+ },
3244
+ ],
3245
+
3246
+ attributers: [
3247
+ {
3248
+ type: 'AttCCToDA',
3249
+
3250
+ listen: {
3251
+ listen: 'preference',
3252
+ key: 'analytics',
3253
+ },
3254
+ changeKey: 'enabled',
3255
+ },
3256
+ ],
3257
+ },
3258
+
3259
+ '693330dc3dc3aa372c7fa562': {
3260
+ id: '693330dc3dc3aa372c7fa562',
3261
+
3262
+ actions: ['ActSetCC'],
3263
+
3264
+ runners: [
3265
+ {
3266
+ type: 'RunSetCC',
3267
+
3268
+ values: {
3269
+ perform: 'preference',
3270
+ key: 'marketing',
3271
+ },
3272
+ },
3273
+ ],
3274
+
3275
+ attributers: [
3276
+ {
3277
+ type: 'AttCCToDA',
3278
+
3279
+ listen: {
3280
+ listen: 'preference',
3281
+ key: 'marketing',
3282
+ },
3283
+ changeKey: 'enabled',
3284
+ },
3285
+ ],
3286
+ },
3287
+
3288
+ '6933311d3dc3aa372c7fa568': {
3289
+ id: '6933311d3dc3aa372c7fa568',
3290
+
3291
+ actions: ['ActSetCC'],
3292
+
3293
+ runners: [
3294
+ {
3295
+ type: 'RunSetCC',
3296
+
3297
+ values: {
3298
+ perform: 'preference',
3299
+ key: 'userData',
3300
+ },
3301
+ },
3302
+ ],
3303
+
3304
+ attributers: [
3305
+ {
3306
+ type: 'AttCCToDA',
3307
+
3308
+ listen: {
3309
+ listen: 'preference',
3310
+ key: 'userData',
3311
+ },
3312
+ changeKey: 'enabled',
3313
+ },
3314
+ ],
3315
+ },
3316
+
3317
+ '693331693dc3aa372c7fa56e': {
3318
+ id: '693331693dc3aa372c7fa56e',
3319
+
3320
+ actions: ['ActSetCC'],
3321
+
3322
+ runners: [
3323
+ {
3324
+ type: 'RunSetCC',
3325
+
3326
+ values: {
3327
+ perform: 'preference',
3328
+ key: 'adPersonalization',
3329
+ },
3330
+ },
3331
+ ],
3332
+
3333
+ attributers: [
3334
+ {
3335
+ type: 'AttCCToDA',
3336
+
3337
+ listen: {
3338
+ listen: 'preference',
3339
+ key: 'adPersonalization',
3340
+ },
3341
+ changeKey: 'enabled',
3342
+ },
3343
+ ],
3344
+ },
3345
+
3346
+ '693331be3dc3aa372c7fa574': {
3347
+ id: '693331be3dc3aa372c7fa574',
3348
+
3349
+ actions: ['ActSetCC'],
3350
+
3351
+ runners: [
3352
+ {
3353
+ type: 'RunSetCC',
3354
+
3355
+ values: {
3356
+ perform: 'preference',
3357
+ key: 'contentPersonalization',
3358
+ },
3359
+ },
3360
+ ],
3361
+
3362
+ attributers: [
3363
+ {
3364
+ type: 'AttCCToDA',
3365
+
3366
+ listen: {
3367
+ listen: 'preference',
3368
+ key: 'contentPersonalization',
3369
+ },
3370
+ changeKey: 'enabled',
3371
+ },
3372
+ ],
3373
+ },
3374
+
3375
+ '693335f93dc3aa372c7fa57f': {
3376
+ id: '693335f93dc3aa372c7fa57f',
3377
+
3378
+ actions: ['ActSetCC', 'ActSetPortalOpen'],
3379
+
3380
+ runners: [
3381
+ {
3382
+ type: 'RunSetCC',
3383
+
3384
+ values: {
3385
+ perform: 'decline',
3386
+ },
3387
+ },
3388
+
3389
+ {
3390
+ type: 'RunSetBool',
3391
+ key: 'consent',
3392
+ initialValue: true,
3393
+ persisted: true,
3394
+ },
3395
+ ],
3396
+
3397
+ attributers: [
3398
+ {
3399
+ type: 'AttCCToDA',
3400
+
3401
+ listen: {
3402
+ listen: 'decline',
3403
+ },
3404
+ changeKey: null,
3405
+ },
3406
+ ],
3407
+ },
3408
+
3409
+ '6933367f3dc3aa372c7fa583': {
3410
+ id: '6933367f3dc3aa372c7fa583',
3411
+
3412
+ actions: ['ActSetCC', 'ActSetPortalOpen'],
3413
+
3414
+ runners: [
3415
+ {
3416
+ type: 'RunSetCC',
3417
+
3418
+ values: {
3419
+ perform: 'accept',
3420
+ },
3421
+ },
3422
+
3423
+ {
3424
+ type: 'RunSetBool',
3425
+ key: 'consent',
3426
+ initialValue: true,
3427
+ persisted: true,
3428
+ },
3429
+ ],
3430
+
3431
+ attributers: [
3432
+ {
3433
+ type: 'AttCCToDA',
3434
+
3435
+ listen: {
3436
+ listen: 'accept',
3437
+ },
3438
+ changeKey: null,
3439
+ },
3440
+ ],
3441
+ },
3442
+
3443
+ '693337053dc3aa372c7fa587': {
3444
+ id: '693337053dc3aa372c7fa587',
3445
+
3446
+ actions: ['ActSetCC', 'ActSetPortalOpen'],
3447
+
3448
+ runners: [
3449
+ {
3450
+ type: 'RunSetCC',
3451
+
3452
+ values: {
3453
+ perform: 'accept',
3454
+ acceptAll: true,
3455
+ },
3456
+ },
3457
+
3458
+ {
3459
+ type: 'RunSetBool',
3460
+ key: 'consent',
3461
+ initialValue: true,
3462
+ persisted: true,
3463
+ },
3464
+ ],
3465
+
3466
+ attributers: [
3467
+ {
3468
+ type: 'AttCCToDA',
3469
+
3470
+ listen: {
3471
+ listen: 'accept',
3472
+ },
3473
+ changeKey: '',
3474
+ },
3475
+ ],
3476
+ },
3477
+
3478
+ '69330b9e0e7c3976269e908e': {
3479
+ id: '69330b9e0e7c3976269e908e',
3480
+
3481
+ actions: ['ActSetPortalOpen'],
3482
+
3483
+ runners: [
3484
+ {
3485
+ type: 'RunSetBool',
3486
+ key: 'consent',
3487
+ persisted: true,
3488
+ initialValue: true,
3489
+ },
3490
+ ],
3491
+
3492
+ attributers: [],
3493
+ },
3494
+
3495
+ '69288588df37686e6978aec9': {
3496
+ id: '69288588df37686e6978aec9',
3497
+
3498
+ actions: ['ActSetTheme'],
3499
+
3500
+ runners: [
3501
+ {
3502
+ type: 'RunSetTheme',
3503
+ perform: 'cycle',
3504
+ },
3505
+ ],
3506
+
3507
+ attributers: [],
3508
+ },
3509
+ },
3510
+ }
3511
+ }