@builder.io/sdk-vue 0.0.2-2 → 0.0.3-0

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 (249) hide show
  1. package/package.json +3 -1
  2. package/packages/_vue2/dist/block-styles.69994573.cjs +6 -0
  3. package/packages/_vue2/dist/block-styles.f1cd7e30.js +86 -0
  4. package/packages/_vue2/dist/env.d.ts +1 -0
  5. package/packages/_vue2/dist/get-processed-block.53da1bfe.js +40 -0
  6. package/packages/_vue2/dist/get-processed-block.b71c1bb2.cjs +1 -0
  7. package/packages/_vue2/dist/{index.e1356b24.js → index.a5e0b693.js} +143 -119
  8. package/packages/_vue2/dist/index.a63c466e.cjs +4 -0
  9. package/packages/_vue2/dist/render-block.7c0c9395.js +230 -0
  10. package/packages/_vue2/dist/render-block.8c8b9fed.cjs +3 -0
  11. package/packages/_vue2/dist/render-component-with-context.884e23d0.js +53 -0
  12. package/packages/_vue2/dist/render-component-with-context.eb721952.cjs +1 -0
  13. package/packages/_vue2/dist/{render-component.76541f08.js → render-component.7e81a5e0.js} +14 -14
  14. package/packages/_vue2/dist/render-component.92306f84.cjs +1 -0
  15. package/packages/_vue2/dist/{render-inlined-styles.0a71b4a1.cjs → render-inlined-styles.0458e786.cjs} +1 -1
  16. package/packages/_vue2/dist/{render-inlined-styles.fb54d112.js → render-inlined-styles.64527ebc.js} +1 -1
  17. package/packages/_vue2/dist/render-repeated-block.2192d332.cjs +1 -0
  18. package/packages/_vue2/dist/{render-repeated-block.caf201fb.js → render-repeated-block.bd19b766.js} +11 -8
  19. package/packages/_vue2/dist/{render-styles.79b15aed.js → render-styles.67a8bb35.js} +8 -8
  20. package/packages/_vue2/dist/{render-styles.76adf086.cjs → render-styles.7ab6335e.cjs} +1 -1
  21. package/packages/_vue2/dist/sdk.cjs +1 -1
  22. package/packages/_vue2/dist/sdk.d.ts +1 -0
  23. package/packages/_vue2/dist/sdk.js +4 -4
  24. package/packages/_vue2/dist/src/blocks/button/button.vue.d.ts +11 -0
  25. package/packages/_vue2/dist/src/blocks/button/component-info.d.ts +2 -0
  26. package/packages/_vue2/dist/src/blocks/columns/columns.vue.d.ts +306 -0
  27. package/packages/_vue2/dist/src/blocks/columns/component-info.d.ts +2 -0
  28. package/packages/_vue2/dist/src/blocks/custom-code/component-info.d.ts +2 -0
  29. package/packages/_vue2/dist/src/blocks/custom-code/custom-code.vue.d.ts +18 -0
  30. package/packages/_vue2/dist/src/blocks/embed/component-info.d.ts +2 -0
  31. package/packages/_vue2/dist/src/blocks/embed/embed.vue.d.ts +22 -0
  32. package/packages/_vue2/dist/src/blocks/embed/helpers.d.ts +1 -0
  33. package/packages/_vue2/dist/src/blocks/fragment/component-info.d.ts +2 -0
  34. package/packages/_vue2/dist/src/blocks/fragment/fragment.vue.d.ts +10 -0
  35. package/packages/_vue2/dist/src/blocks/image/component-info.d.ts +2 -0
  36. package/packages/_vue2/dist/src/blocks/image/image.helpers.d.ts +1 -0
  37. package/packages/_vue2/dist/src/blocks/img/component-info.d.ts +2 -0
  38. package/packages/_vue2/dist/src/blocks/img/img.vue.d.ts +17 -0
  39. package/packages/_vue2/dist/src/blocks/section/component-info.d.ts +2 -0
  40. package/packages/_vue2/dist/src/blocks/section/section.vue.d.ts +11 -0
  41. package/packages/_vue2/dist/src/blocks/symbol/component-info.d.ts +2 -0
  42. package/packages/_vue2/dist/src/blocks/symbol/symbol.vue.d.ts +396 -0
  43. package/packages/_vue2/dist/src/blocks/text/component-info.d.ts +2 -0
  44. package/packages/_vue2/dist/src/blocks/text/text.vue.d.ts +8 -0
  45. package/packages/_vue2/dist/src/blocks/util.d.ts +1 -0
  46. package/packages/_vue2/dist/src/blocks/video/component-info.d.ts +2 -0
  47. package/packages/_vue2/dist/src/blocks/video/video.vue.d.ts +25 -0
  48. package/packages/_vue2/dist/src/components/render-block/block-styles.vue.d.ts +31 -0
  49. package/packages/_vue2/dist/src/components/render-block/render-block.helpers.d.ts +1 -0
  50. package/packages/_vue2/dist/src/components/render-block/render-block.vue.d.ts +237 -0
  51. package/packages/_vue2/dist/src/components/render-block/render-component-with-context.vue.d.ts +116 -0
  52. package/packages/_vue2/dist/src/components/render-block/render-component.vue.d.ts +141 -0
  53. package/packages/_vue2/dist/src/components/render-block/render-repeated-block.vue.d.ts +231 -0
  54. package/packages/_vue2/dist/src/components/render-block/types.d.ts +6 -0
  55. package/packages/_vue2/dist/src/components/render-blocks.vue.d.ts +279 -0
  56. package/packages/_vue2/dist/src/components/render-content/components/render-styles.vue.d.ts +27 -0
  57. package/packages/_vue2/dist/src/components/render-content/render-content.vue.d.ts +368 -0
  58. package/packages/_vue2/dist/src/components/render-inlined-styles.vue.d.ts +12 -0
  59. package/packages/_vue2/dist/src/constants/builder-registered-components.d.ts +6 -0
  60. package/packages/_vue2/dist/src/constants/device-sizes.d.ts +2 -0
  61. package/packages/_vue2/dist/src/constants/target.d.ts +2 -0
  62. package/packages/_vue2/dist/src/context/builder.context.d.ts +2 -0
  63. package/packages/_vue2/dist/src/context/types.d.ts +17 -0
  64. package/packages/_vue2/dist/src/functions/camel-to-kebab-case.d.ts +1 -0
  65. package/packages/_vue2/dist/src/functions/evaluate.d.ts +5 -0
  66. package/packages/_vue2/dist/src/functions/event-handler-name.d.ts +1 -0
  67. package/packages/_vue2/dist/src/functions/extract-text-styles.d.ts +4 -0
  68. package/packages/_vue2/dist/src/functions/fast-clone.d.ts +4 -0
  69. package/packages/_vue2/dist/src/functions/get-block-actions-handler.d.ts +5 -0
  70. package/packages/_vue2/dist/src/functions/get-block-actions.d.ts +9 -0
  71. package/packages/_vue2/dist/src/functions/get-block-component-options.d.ts +2 -0
  72. package/packages/_vue2/dist/src/functions/get-block-properties.d.ts +5 -0
  73. package/packages/_vue2/dist/src/functions/get-block-tag.d.ts +3 -0
  74. package/packages/_vue2/dist/src/functions/get-builder-search-params/index.d.ts +6 -0
  75. package/packages/_vue2/dist/src/functions/get-content/ab-testing.d.ts +5 -0
  76. package/packages/_vue2/dist/src/functions/get-content/index.d.ts +9 -0
  77. package/packages/_vue2/dist/src/functions/get-content/types.d.ts +31 -0
  78. package/packages/_vue2/dist/src/functions/get-fetch.d.ts +1 -0
  79. package/packages/_vue2/dist/src/functions/get-global-this.d.ts +1 -0
  80. package/packages/_vue2/dist/src/functions/get-processed-block.d.ts +10 -0
  81. package/packages/_vue2/dist/src/functions/get-react-native-block-styles.d.ts +6 -0
  82. package/packages/_vue2/dist/src/functions/is-browser.d.ts +1 -0
  83. package/packages/_vue2/dist/src/functions/is-editing.d.ts +1 -0
  84. package/packages/_vue2/dist/src/functions/is-iframe.d.ts +1 -0
  85. package/packages/_vue2/dist/src/functions/is-previewing.d.ts +1 -0
  86. package/packages/_vue2/dist/src/functions/mark-mutable.d.ts +2 -0
  87. package/packages/_vue2/dist/src/functions/register-component.d.ts +14 -0
  88. package/packages/_vue2/dist/src/functions/register.d.ts +16 -0
  89. package/packages/_vue2/dist/src/functions/sanitize-react-native-block-styles.d.ts +3 -0
  90. package/packages/_vue2/dist/src/functions/set-editor-settings.d.ts +4 -0
  91. package/packages/_vue2/dist/src/functions/set.d.ts +7 -0
  92. package/packages/_vue2/dist/src/functions/track.d.ts +21 -0
  93. package/packages/_vue2/dist/src/functions/transform-block.d.ts +2 -0
  94. package/packages/_vue2/dist/src/helpers/ab-tests.d.ts +8 -0
  95. package/packages/_vue2/dist/src/helpers/cookie.d.ts +15 -0
  96. package/packages/_vue2/dist/src/helpers/css.d.ts +5 -0
  97. package/packages/_vue2/dist/src/helpers/flatten.d.ts +6 -0
  98. package/packages/_vue2/dist/src/helpers/localStorage.d.ts +8 -0
  99. package/packages/_vue2/dist/src/helpers/nullable.d.ts +2 -0
  100. package/packages/_vue2/dist/src/helpers/sessionId.d.ts +6 -0
  101. package/packages/_vue2/dist/src/helpers/url.d.ts +6 -0
  102. package/packages/_vue2/dist/src/helpers/uuid.d.ts +8 -0
  103. package/packages/_vue2/dist/src/helpers/visitorId.d.ts +6 -0
  104. package/packages/_vue2/dist/src/index-helpers/blocks-exports.d.ts +10 -0
  105. package/packages/_vue2/dist/src/index-helpers/top-of-file.d.ts +1 -0
  106. package/packages/_vue2/dist/src/index.d.ts +8 -0
  107. package/packages/_vue2/dist/src/scripts/init-editing.d.ts +2 -0
  108. package/packages/_vue2/dist/src/types/builder-block.d.ts +57 -0
  109. package/packages/_vue2/dist/src/types/builder-content.d.ts +38 -0
  110. package/packages/_vue2/dist/src/types/can-track.d.ts +3 -0
  111. package/packages/_vue2/dist/src/types/components.d.ts +177 -0
  112. package/packages/_vue2/dist/src/types/deep-partial.d.ts +3 -0
  113. package/packages/_vue2/dist/src/types/element.d.ts +59 -0
  114. package/packages/_vue2/dist/src/types/typescript.d.ts +5 -0
  115. package/packages/_vue2/dist/style.css +1 -1
  116. package/packages/_vue3/dist/block-styles.a49e972d.cjs +6 -0
  117. package/packages/_vue3/dist/block-styles.a91eeb93.js +83 -0
  118. package/packages/_vue3/dist/env.d.ts +1 -0
  119. package/packages/_vue3/dist/get-processed-block.0d08be3e.js +40 -0
  120. package/packages/_vue3/dist/get-processed-block.f32aca5e.cjs +1 -0
  121. package/packages/_vue3/dist/{index.eb0e01ba.js → index.06c0f5c8.js} +283 -269
  122. package/packages/_vue3/dist/index.4ab36c30.cjs +4 -0
  123. package/packages/_vue3/dist/render-block.425938f2.js +241 -0
  124. package/packages/_vue3/dist/render-block.5db91f52.cjs +3 -0
  125. package/packages/_vue3/dist/render-component-with-context.9805829c.js +50 -0
  126. package/packages/_vue3/dist/render-component-with-context.d09cfab0.cjs +1 -0
  127. package/packages/_vue3/dist/render-component.863aa9a1.cjs +1 -0
  128. package/packages/_vue3/dist/{render-component.963a01c2.js → render-component.87cc6d83.js} +15 -16
  129. package/packages/_vue3/dist/render-inlined-styles.5b918790.cjs +1 -0
  130. package/packages/_vue3/dist/{render-inlined-styles.1c41d49e.js → render-inlined-styles.9ac8320c.js} +7 -8
  131. package/packages/_vue3/dist/{render-repeated-block.760bb69a.js → render-repeated-block.3d799bba.js} +11 -9
  132. package/packages/_vue3/dist/render-repeated-block.9dc8238b.cjs +1 -0
  133. package/packages/_vue3/dist/{render-styles.750ea842.js → render-styles.9c635f29.js} +14 -15
  134. package/packages/_vue3/dist/{render-styles.c0cc9565.cjs → render-styles.cb10c812.cjs} +2 -2
  135. package/packages/_vue3/dist/sdk.cjs +1 -1
  136. package/packages/_vue3/dist/sdk.d.ts +1 -0
  137. package/packages/_vue3/dist/sdk.js +7 -7
  138. package/packages/_vue3/dist/src/blocks/button/button.vue.d.ts +11 -0
  139. package/packages/_vue3/dist/src/blocks/button/component-info.d.ts +2 -0
  140. package/packages/_vue3/dist/src/blocks/columns/columns.vue.d.ts +77 -0
  141. package/packages/_vue3/dist/src/blocks/columns/component-info.d.ts +2 -0
  142. package/packages/_vue3/dist/src/blocks/custom-code/component-info.d.ts +2 -0
  143. package/packages/_vue3/dist/src/blocks/custom-code/custom-code.vue.d.ts +18 -0
  144. package/packages/_vue3/dist/src/blocks/embed/component-info.d.ts +2 -0
  145. package/packages/_vue3/dist/src/blocks/embed/embed.vue.d.ts +22 -0
  146. package/packages/_vue3/dist/src/blocks/embed/helpers.d.ts +1 -0
  147. package/packages/_vue3/dist/src/blocks/fragment/component-info.d.ts +2 -0
  148. package/packages/_vue3/dist/src/blocks/fragment/fragment.vue.d.ts +10 -0
  149. package/packages/_vue3/dist/src/blocks/image/component-info.d.ts +2 -0
  150. package/packages/_vue3/dist/src/blocks/image/image.helpers.d.ts +1 -0
  151. package/packages/_vue3/dist/src/blocks/image/image.vue.d.ts +31 -0
  152. package/packages/_vue3/dist/src/blocks/img/component-info.d.ts +2 -0
  153. package/packages/_vue3/dist/src/blocks/img/img.vue.d.ts +17 -0
  154. package/packages/_vue3/dist/src/blocks/section/component-info.d.ts +2 -0
  155. package/packages/_vue3/dist/src/blocks/section/section.vue.d.ts +11 -0
  156. package/packages/_vue3/dist/src/blocks/symbol/component-info.d.ts +2 -0
  157. package/packages/_vue3/dist/src/blocks/symbol/symbol.vue.d.ts +167 -0
  158. package/packages/_vue3/dist/src/blocks/text/component-info.d.ts +2 -0
  159. package/packages/_vue3/dist/src/blocks/text/text.vue.d.ts +8 -0
  160. package/packages/_vue3/dist/src/blocks/util.d.ts +1 -0
  161. package/packages/_vue3/dist/src/blocks/video/component-info.d.ts +2 -0
  162. package/packages/_vue3/dist/src/blocks/video/video.vue.d.ts +25 -0
  163. package/packages/_vue3/dist/src/components/render-block/block-styles.vue.d.ts +31 -0
  164. package/packages/_vue3/dist/src/components/render-block/render-block.helpers.d.ts +1 -0
  165. package/packages/_vue3/dist/src/components/render-block/render-block.vue.d.ts +8 -0
  166. package/packages/_vue3/dist/src/components/render-block/render-component-with-context.vue.d.ts +51 -0
  167. package/packages/_vue3/dist/src/components/render-block/render-component.vue.d.ts +44 -0
  168. package/packages/_vue3/dist/src/components/render-block/render-repeated-block.vue.d.ts +2 -0
  169. package/packages/_vue3/dist/src/components/render-block/types.d.ts +6 -0
  170. package/packages/_vue3/dist/src/components/render-blocks.vue.d.ts +50 -0
  171. package/packages/_vue3/dist/src/components/render-content/components/render-styles.vue.d.ts +27 -0
  172. package/packages/_vue3/dist/src/components/render-content/render-content.vue.d.ts +139 -0
  173. package/packages/_vue3/dist/src/components/render-inlined-styles.vue.d.ts +12 -0
  174. package/packages/_vue3/dist/src/constants/builder-registered-components.d.ts +6 -0
  175. package/packages/_vue3/dist/src/constants/device-sizes.d.ts +2 -0
  176. package/packages/_vue3/dist/src/constants/target.d.ts +2 -0
  177. package/packages/_vue3/dist/src/context/builder.context.d.ts +2 -0
  178. package/packages/_vue3/dist/src/context/types.d.ts +17 -0
  179. package/packages/_vue3/dist/src/functions/camel-to-kebab-case.d.ts +1 -0
  180. package/packages/_vue3/dist/src/functions/evaluate.d.ts +5 -0
  181. package/packages/_vue3/dist/src/functions/event-handler-name.d.ts +1 -0
  182. package/packages/_vue3/dist/src/functions/extract-text-styles.d.ts +4 -0
  183. package/packages/_vue3/dist/src/functions/fast-clone.d.ts +4 -0
  184. package/packages/_vue3/dist/src/functions/get-block-actions-handler.d.ts +5 -0
  185. package/packages/_vue3/dist/src/functions/get-block-actions.d.ts +9 -0
  186. package/packages/_vue3/dist/src/functions/get-block-component-options.d.ts +2 -0
  187. package/packages/_vue3/dist/src/functions/get-block-properties.d.ts +5 -0
  188. package/packages/_vue3/dist/src/functions/get-block-tag.d.ts +3 -0
  189. package/packages/_vue3/dist/src/functions/get-builder-search-params/index.d.ts +6 -0
  190. package/packages/_vue3/dist/src/functions/get-content/ab-testing.d.ts +5 -0
  191. package/packages/_vue3/dist/src/functions/get-content/index.d.ts +9 -0
  192. package/packages/_vue3/dist/src/functions/get-content/types.d.ts +31 -0
  193. package/packages/_vue3/dist/src/functions/get-fetch.d.ts +1 -0
  194. package/packages/_vue3/dist/src/functions/get-global-this.d.ts +1 -0
  195. package/packages/_vue3/dist/src/functions/get-processed-block.d.ts +10 -0
  196. package/packages/_vue3/dist/src/functions/get-react-native-block-styles.d.ts +6 -0
  197. package/packages/_vue3/dist/src/functions/is-browser.d.ts +1 -0
  198. package/packages/_vue3/dist/src/functions/is-editing.d.ts +1 -0
  199. package/packages/_vue3/dist/src/functions/is-iframe.d.ts +1 -0
  200. package/packages/_vue3/dist/src/functions/is-previewing.d.ts +1 -0
  201. package/packages/_vue3/dist/src/functions/mark-mutable.d.ts +2 -0
  202. package/packages/_vue3/dist/src/functions/register-component.d.ts +14 -0
  203. package/packages/_vue3/dist/src/functions/register.d.ts +16 -0
  204. package/packages/_vue3/dist/src/functions/sanitize-react-native-block-styles.d.ts +3 -0
  205. package/packages/_vue3/dist/src/functions/set-editor-settings.d.ts +4 -0
  206. package/packages/_vue3/dist/src/functions/set.d.ts +7 -0
  207. package/packages/_vue3/dist/src/functions/track.d.ts +21 -0
  208. package/packages/_vue3/dist/src/functions/transform-block.d.ts +2 -0
  209. package/packages/_vue3/dist/src/helpers/ab-tests.d.ts +8 -0
  210. package/packages/_vue3/dist/src/helpers/cookie.d.ts +15 -0
  211. package/packages/_vue3/dist/src/helpers/css.d.ts +5 -0
  212. package/packages/_vue3/dist/src/helpers/flatten.d.ts +6 -0
  213. package/packages/_vue3/dist/src/helpers/localStorage.d.ts +8 -0
  214. package/packages/_vue3/dist/src/helpers/nullable.d.ts +2 -0
  215. package/packages/_vue3/dist/src/helpers/sessionId.d.ts +6 -0
  216. package/packages/_vue3/dist/src/helpers/url.d.ts +6 -0
  217. package/packages/_vue3/dist/src/helpers/uuid.d.ts +8 -0
  218. package/packages/_vue3/dist/src/helpers/visitorId.d.ts +6 -0
  219. package/packages/_vue3/dist/src/index-helpers/blocks-exports.d.ts +10 -0
  220. package/packages/_vue3/dist/src/index-helpers/top-of-file.d.ts +1 -0
  221. package/packages/_vue3/dist/src/index.d.ts +8 -0
  222. package/packages/_vue3/dist/src/scripts/init-editing.d.ts +2 -0
  223. package/packages/_vue3/dist/src/types/builder-block.d.ts +57 -0
  224. package/packages/_vue3/dist/src/types/builder-content.d.ts +38 -0
  225. package/packages/_vue3/dist/src/types/can-track.d.ts +3 -0
  226. package/packages/_vue3/dist/src/types/components.d.ts +177 -0
  227. package/packages/_vue3/dist/src/types/deep-partial.d.ts +3 -0
  228. package/packages/_vue3/dist/src/types/element.d.ts +59 -0
  229. package/packages/_vue3/dist/src/types/typescript.d.ts +5 -0
  230. package/packages/_vue3/dist/style.css +1 -1
  231. package/packages/_vue2/dist/block-styles.7900ea80.cjs +0 -10
  232. package/packages/_vue2/dist/block-styles.dd3d70e3.js +0 -56
  233. package/packages/_vue2/dist/get-processed-block.14848083.cjs +0 -1
  234. package/packages/_vue2/dist/get-processed-block.eda4b627.js +0 -57
  235. package/packages/_vue2/dist/index.9247eff2.cjs +0 -4
  236. package/packages/_vue2/dist/render-block.a2f51c18.js +0 -237
  237. package/packages/_vue2/dist/render-block.e4f18476.cjs +0 -3
  238. package/packages/_vue2/dist/render-component.fc56f8dc.cjs +0 -1
  239. package/packages/_vue2/dist/render-repeated-block.0990371f.cjs +0 -1
  240. package/packages/_vue3/dist/block-styles.1f1fb83d.js +0 -54
  241. package/packages/_vue3/dist/block-styles.eb8f30fe.cjs +0 -10
  242. package/packages/_vue3/dist/get-processed-block.b7ff491d.cjs +0 -1
  243. package/packages/_vue3/dist/get-processed-block.c491559e.js +0 -57
  244. package/packages/_vue3/dist/index.36507004.cjs +0 -4
  245. package/packages/_vue3/dist/render-block.3cdd0c66.js +0 -254
  246. package/packages/_vue3/dist/render-block.98541a38.cjs +0 -3
  247. package/packages/_vue3/dist/render-component.442d659d.cjs +0 -1
  248. package/packages/_vue3/dist/render-inlined-styles.662df301.cjs +0 -1
  249. package/packages/_vue3/dist/render-repeated-block.2212c878.cjs +0 -1
@@ -1,12 +1,12 @@
1
- import { defineAsyncComponent as y, resolveComponent as v, openBlock as l, createElementBlock as d, normalizeStyle as C, Fragment as R, renderList as E, createVNode as z, createElementVNode as I, createCommentVNode as b, normalizeClass as O, renderSlot as k, mergeProps as x, toDisplayString as $, createBlock as w } from "vue";
2
- const j = "reactNative";
1
+ import { defineAsyncComponent as y, resolveComponent as v, openBlock as l, createElementBlock as d, normalizeStyle as _, Fragment as C, renderList as E, createVNode as q, createElementVNode as T, createCommentVNode as b, normalizeClass as j, renderSlot as w, mergeProps as x, toDisplayString as P, createBlock as S } from "vue";
2
+ const U = "vue3";
3
3
  function h() {
4
4
  return typeof window < "u" && typeof document < "u";
5
5
  }
6
- const P = {};
6
+ const $ = {};
7
7
  function ae(e, n) {
8
- let t = P[e];
9
- if (t || (t = P[e] = []), t.push(n), h()) {
8
+ let t = $[e];
9
+ if (t || (t = $[e] = []), t.push(n), h()) {
10
10
  const o = {
11
11
  type: "builder.register",
12
12
  data: {
@@ -29,7 +29,11 @@ const ie = () => {
29
29
  { name: "Box" },
30
30
  { name: "Text" },
31
31
  { name: "Image" },
32
- { name: "Columns" }
32
+ { name: "Columns" },
33
+ { name: "Core:Section" },
34
+ { name: "Core:Button" },
35
+ { name: "Embed" },
36
+ { name: "Custom Code" }
33
37
  ]
34
38
  });
35
39
  }, ce = () => {
@@ -38,14 +42,15 @@ const ie = () => {
38
42
  {
39
43
  type: "builder.sdkInfo",
40
44
  data: {
41
- target: j,
42
- supportsPatchUpdates: !1
45
+ target: U,
46
+ supportsPatchUpdates: !1,
47
+ supportsAddBlockScoping: !0
43
48
  }
44
49
  },
45
50
  "*"
46
51
  ), window.addEventListener("message", ({ data: n }) => {
47
52
  var t, o;
48
- if (n)
53
+ if (!!(n != null && n.type))
49
54
  switch (n.type) {
50
55
  case "builder.evaluate": {
51
56
  const r = n.data.text, s = n.data.arguments || [], a = n.data.id, c = new Function(r);
@@ -82,10 +87,10 @@ const ie = () => {
82
87
  }
83
88
  }));
84
89
  };
85
- function U(e) {
90
+ function A(e) {
86
91
  return e;
87
92
  }
88
- function pn(e) {
93
+ function mn(e) {
89
94
  return e;
90
95
  }
91
96
  const le = () => Promise.resolve().then(() => se).then((e) => e.default).catch((e) => {
@@ -95,7 +100,7 @@ const le = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
95
100
  ), e;
96
101
  }), de = {
97
102
  name: "builder-columns",
98
- components: { "render-blocks": y(le) },
103
+ components: { RenderBlocks: y(le) },
99
104
  props: [
100
105
  "space",
101
106
  "columns",
@@ -103,7 +108,7 @@ const le = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
103
108
  "reverseColumnsWhenStacked",
104
109
  "builderBlock"
105
110
  ],
106
- data: () => ({ markMutable: U }),
111
+ data: () => ({ markMutable: A }),
107
112
  computed: {
108
113
  columnsCssVars() {
109
114
  const e = this.stackColumnsAt === "never" ? "inherit" : this.reverseColumnsWhenStacked ? "column-reverse" : "column";
@@ -141,8 +146,7 @@ const le = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
141
146
  maybeApplyForTablet(e) {
142
147
  return (this.stackColumnsAt || "tablet") === "tablet" ? e : "inherit";
143
148
  }
144
- },
145
- compatConfig: { MODE: 3 }
149
+ }
146
150
  };
147
151
  const f = (e, n) => {
148
152
  const t = e.__vccOpts || e;
@@ -153,27 +157,30 @@ const f = (e, n) => {
153
157
  function ue(e, n, t, o, r, s) {
154
158
  const a = v("render-blocks");
155
159
  return l(), d("div", {
156
- class: "builder-columns div-2btisl9m7v3",
157
- style: C(s.columnsCssVars)
160
+ class: "builder-columns div-256wrwn33ry",
161
+ style: _(s.columnsCssVars)
158
162
  }, [
159
- (l(!0), d(R, null, E(t.columns, (c, i) => (l(), d("div", {
163
+ (l(!0), d(C, null, E(t.columns, (c, i) => (l(), d("div", {
160
164
  key: i,
161
- class: "builder-column div-2btisl9m7v3-2",
162
- style: C({
165
+ class: "builder-column div-256wrwn33ry-2",
166
+ style: _({
163
167
  width: s.getColumnCssWidth(i),
164
168
  marginLeft: `${i === 0 ? 0 : s.getGutterSize()}px`,
165
169
  ...s.columnCssVars
166
170
  })
167
171
  }, [
168
- z(a, {
172
+ q(a, {
169
173
  blocks: e.markMutable(c.blocks),
170
174
  path: `component.options.columns.${i}.blocks`,
171
- parent: t.builderBlock.id
175
+ parent: t.builderBlock.id,
176
+ styleProp: {
177
+ flexGrow: "1"
178
+ }
172
179
  }, null, 8, ["blocks", "path", "parent"])
173
180
  ], 4))), 128))
174
181
  ], 4);
175
182
  }
176
- const me = /* @__PURE__ */ f(de, [["render", ue], ["__scopeId", "data-v-ce668c7d"]]);
183
+ const me = /* @__PURE__ */ f(de, [["render", ue], ["__scopeId", "data-v-2e5dc506"]]);
177
184
  function W(e) {
178
185
  return e.replace(/http(s)?:/, "");
179
186
  }
@@ -195,7 +202,7 @@ function he(e, n) {
195
202
  }
196
203
  return null;
197
204
  }
198
- function T(e) {
205
+ function R(e) {
199
206
  if (!e)
200
207
  return e;
201
208
  const n = [100, 200, 400, 800, 1200, 1600, 2e3];
@@ -218,8 +225,8 @@ const fe = {
218
225
  "className",
219
226
  "sizes",
220
227
  "aspectRatio",
221
- "fitContent",
222
- "builderBlock"
228
+ "builderBlock",
229
+ "fitContent"
223
230
  ],
224
231
  computed: {
225
232
  srcSetToUse() {
@@ -229,10 +236,10 @@ const fe = {
229
236
  return this.srcset;
230
237
  if (this.srcset && ((t = this.image) == null ? void 0 : t.includes("builder.io/api/v1/image"))) {
231
238
  if (!this.srcset.includes(this.image.split("?")[0]))
232
- return console.debug("Removed given srcset"), T(n);
239
+ return console.debug("Removed given srcset"), R(n);
233
240
  } else if (this.image && !this.srcset)
234
- return T(n);
235
- return T(n);
241
+ return R(n);
242
+ return R(n);
236
243
  },
237
244
  webpSrcSet() {
238
245
  var e;
@@ -249,66 +256,64 @@ const fe = {
249
256
  n[o] = !0;
250
257
  return n;
251
258
  }
252
- },
253
- compatConfig: { MODE: 3 }
259
+ }
254
260
  };
255
- const ge = { class: "div-1fogms4bee0" }, be = ["srcset"], ye = ["alt", "role", "src", "srcset", "sizes"], ve = ["srcset"], xe = {
261
+ const ge = ["srcset"], be = ["alt", "role", "src", "srcset", "sizes"], ye = ["srcset"], ve = {
256
262
  key: 2,
257
- class: "div-1fogms4bee0-3"
263
+ class: "div-kd7f8ex7am-2"
258
264
  };
259
- function _e(e, n, t, o, r, s) {
265
+ function xe(e, n, t, o, r, s) {
260
266
  var a, c, i, u;
261
- return l(), d("div", ge, [
262
- I("picture", null, [
267
+ return l(), d(C, null, [
268
+ T("picture", null, [
263
269
  s.webpSrcSet ? (l(), d("source", {
264
270
  key: 0,
265
271
  type: "image/webp",
266
272
  srcset: s.webpSrcSet
267
- }, null, 8, be)) : b("", !0),
268
- I("img", {
273
+ }, null, 8, ge)) : b("", !0),
274
+ T("img", {
269
275
  loading: "lazy",
270
276
  alt: t.altText,
271
277
  role: t.altText ? "presentation" : void 0,
272
- style: C({
278
+ style: _({
273
279
  objectPosition: t.backgroundSize || "center",
274
280
  objectFit: t.backgroundSize || "cover"
275
281
  }),
276
- class: O(
282
+ class: j(
277
283
  s._classStringToObject(
278
- "builder-image" + (t.className ? " " + t.className : "") + " img-1fogms4bee0"
284
+ "builder-image" + (t.className ? " " + t.className : "") + " img-kd7f8ex7am"
279
285
  )
280
286
  ),
281
287
  src: t.image,
282
288
  srcset: s.srcSetToUse,
283
289
  sizes: t.sizes
284
- }, null, 14, ye),
285
- I("source", { srcset: s.srcSetToUse }, null, 8, ve)
290
+ }, null, 14, be),
291
+ T("source", { srcset: s.srcSetToUse }, null, 8, ye)
286
292
  ]),
287
- t.aspectRatio && !(t.fitContent && ((c = (a = t.builderBlock) == null ? void 0 : a.children) == null ? void 0 : c.length)) ? (l(), d("div", {
293
+ t.aspectRatio && !(((c = (a = t.builderBlock) == null ? void 0 : a.children) == null ? void 0 : c.length) && t.fitContent) ? (l(), d("div", {
288
294
  key: 0,
289
- class: "builder-image-sizer div-1fogms4bee0-2",
290
- style: C({
295
+ class: "builder-image-sizer div-kd7f8ex7am",
296
+ style: _({
291
297
  paddingTop: t.aspectRatio * 100 + "%"
292
298
  })
293
299
  }, null, 4)) : b("", !0),
294
- ((u = (i = t.builderBlock) == null ? void 0 : i.children) == null ? void 0 : u.length) && t.fitContent ? k(e.$slots, "default", { key: 1 }, void 0, !0) : b("", !0),
295
- t.fitContent ? b("", !0) : (l(), d("div", xe, [
296
- k(e.$slots, "default", {}, void 0, !0)
297
- ]))
298
- ]);
300
+ ((u = (i = t.builderBlock) == null ? void 0 : i.children) == null ? void 0 : u.length) && t.fitContent ? w(e.$slots, "default", { key: 1 }, void 0, !0) : b("", !0),
301
+ !t.fitContent && e.children ? (l(), d("div", ve, [
302
+ w(e.$slots, "default", {}, void 0, !0)
303
+ ])) : b("", !0)
304
+ ], 64);
299
305
  }
300
- const Ce = /* @__PURE__ */ f(fe, [["render", _e], ["__scopeId", "data-v-83d4ef2e"]]), ke = {
306
+ const ke = /* @__PURE__ */ f(fe, [["render", xe], ["__scopeId", "data-v-ebf1c7e3"]]), _e = {
301
307
  name: "builder-text",
302
- props: ["text"],
303
- compatConfig: { MODE: 3 }
304
- }, we = ["innerHTML"];
305
- function Se(e, n, t, o, r, s) {
308
+ props: ["text"]
309
+ }, Ce = ["innerHTML"];
310
+ function we(e, n, t, o, r, s) {
306
311
  return l(), d("span", {
307
312
  class: "builder-text",
308
313
  innerHTML: t.text
309
- }, null, 8, we);
314
+ }, null, 8, Ce);
310
315
  }
311
- const Ie = /* @__PURE__ */ f(ke, [["render", Se]]), Te = {
316
+ const Se = /* @__PURE__ */ f(_e, [["render", we]]), Ie = {
312
317
  name: "builder-video",
313
318
  props: [
314
319
  "autoPlay",
@@ -341,13 +346,18 @@ const Ie = /* @__PURE__ */ f(ke, [["render", Se]]), Te = {
341
346
  playsInline: !0
342
347
  } : {}
343
348
  };
349
+ },
350
+ spreadProps() {
351
+ return {
352
+ ...this.attributes,
353
+ ...this.videoProps
354
+ };
344
355
  }
345
- },
346
- compatConfig: { MODE: 3 }
347
- }, Re = ["src", "poster"];
348
- function Ee(e, n, t, o, r, s) {
356
+ }
357
+ }, Te = ["src", "poster"];
358
+ function Re(e, n, t, o, r, s) {
349
359
  var a;
350
- return l(), d("video", x(s.videoProps, {
360
+ return l(), d("video", x(s.spreadProps, {
351
361
  style: {
352
362
  width: "100%",
353
363
  height: "100%",
@@ -358,9 +368,9 @@ function Ee(e, n, t, o, r, s) {
358
368
  },
359
369
  src: t.video || "no-src",
360
370
  poster: t.posterImage
361
- }), null, 16, Re);
371
+ }), null, 16, Te);
362
372
  }
363
- const Fe = /* @__PURE__ */ f(Te, [["render", Ee]]);
373
+ const Ee = /* @__PURE__ */ f(Ie, [["render", Re]]);
364
374
  function F(e, n = null, t = ".") {
365
375
  return Object.keys(e).reduce((o, r) => {
366
376
  const s = e[r], a = [n, r].filter(Boolean).join(t);
@@ -371,7 +381,7 @@ function F(e, n = null, t = ".") {
371
381
  ].every(Boolean) ? { ...o, ...F(s, a, t) } : { ...o, [a]: s };
372
382
  }, {});
373
383
  }
374
- const B = "builder.", Oe = (e) => {
384
+ const L = "builder.", Fe = (e) => {
375
385
  const n = {};
376
386
  return e.forEach((t, o) => {
377
387
  n[o] = t;
@@ -379,10 +389,10 @@ const B = "builder.", Oe = (e) => {
379
389
  }, je = (e) => {
380
390
  if (!e)
381
391
  return {};
382
- const n = q(e), t = {};
392
+ const n = D(e), t = {};
383
393
  return Object.keys(n).forEach((o) => {
384
- if (o.startsWith(B)) {
385
- const r = o.replace(B, "");
394
+ if (o.startsWith(L)) {
395
+ const r = o.replace(L, "");
386
396
  t[r] = n[o];
387
397
  }
388
398
  }), t;
@@ -391,12 +401,12 @@ const B = "builder.", Oe = (e) => {
391
401
  return {};
392
402
  const e = new URLSearchParams(window.location.search);
393
403
  return je(e);
394
- }, q = (e) => e instanceof URLSearchParams ? Oe(e) : e;
395
- function Me() {
404
+ }, D = (e) => e instanceof URLSearchParams ? Fe(e) : e;
405
+ function Ae() {
396
406
  return typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : null;
397
407
  }
398
408
  async function K() {
399
- const e = Me().fetch;
409
+ const e = Ae().fetch;
400
410
  if (typeof e > "u" && typeof global < "u") {
401
411
  const n = import("node-fetch").then((t) => t.default);
402
412
  return n.default || n;
@@ -406,7 +416,7 @@ async function K() {
406
416
  const Ve = (e) => {
407
417
  const n = e.split(".");
408
418
  return n.length > 2 ? n.slice(1).join(".") : e;
409
- }, J = async ({
419
+ }, G = async ({
410
420
  name: e,
411
421
  canTrack: n
412
422
  }) => {
@@ -416,7 +426,7 @@ const Ve = (e) => {
416
426
  } catch (o) {
417
427
  console.debug("[COOKIE] GET error: ", o);
418
428
  }
419
- }, Ae = (e) => e.map(([n, t]) => t ? `${n}=${t}` : n).join("; "), $e = [
429
+ }, Oe = (e) => e.map(([n, t]) => t ? `${n}=${t}` : n).join("; "), Be = [
420
430
  ["secure", ""],
421
431
  ["SameSite", "None"]
422
432
  ], Pe = ({
@@ -424,15 +434,15 @@ const Ve = (e) => {
424
434
  value: n,
425
435
  expires: t
426
436
  }) => {
427
- const r = (h() ? location.protocol === "https:" : !0) ? $e : [[]], s = t ? [["expires", t.toUTCString()]] : [[]], a = [
437
+ const r = (h() ? location.protocol === "https:" : !0) ? Be : [[]], s = t ? [["expires", t.toUTCString()]] : [[]], a = [
428
438
  [e, n],
429
439
  ...s,
430
440
  ["path", "/"],
431
441
  ["domain", Ve(window.location.hostname)],
432
442
  ...r
433
443
  ];
434
- return Ae(a);
435
- }, G = async ({
444
+ return Oe(a);
445
+ }, J = async ({
436
446
  name: e,
437
447
  value: n,
438
448
  expires: t,
@@ -446,14 +456,14 @@ const Ve = (e) => {
446
456
  } catch (r) {
447
457
  console.warn("[COOKIE] SET error: ", r);
448
458
  }
449
- }, We = "builderio.variations", Y = (e) => `${We}.${e}`, Be = ({
459
+ }, $e = "builderio.variations", Y = (e) => `${$e}.${e}`, We = ({
450
460
  contentId: e,
451
461
  canTrack: n
452
- }) => J({ name: Y(e), canTrack: n }), Le = ({
462
+ }) => G({ name: Y(e), canTrack: n }), Le = ({
453
463
  contentId: e,
454
464
  canTrack: n,
455
465
  value: t
456
- }) => G({ name: Y(e), value: t, canTrack: n }), S = (e) => e != null, Ne = (e) => S(e.id) && S(e.variations) && Object.keys(e.variations).length > 0, De = ({
466
+ }) => J({ name: Y(e), value: t, canTrack: n }), I = (e) => e != null, Me = (e) => I(e.id) && I(e.variations) && Object.keys(e.variations).length > 0, Ne = ({
457
467
  id: e,
458
468
  variations: n
459
469
  }) => {
@@ -464,7 +474,7 @@ const Ve = (e) => {
464
474
  if (t += (r = n[s]) == null ? void 0 : r.testRatio, o < t)
465
475
  return s;
466
476
  return e;
467
- }, L = ({
477
+ }, M = ({
468
478
  item: e,
469
479
  testGroupId: n
470
480
  }) => {
@@ -481,14 +491,14 @@ const Ve = (e) => {
481
491
  item: e,
482
492
  canTrack: n
483
493
  }) => {
484
- const t = await Be({
494
+ const t = await We({
485
495
  canTrack: n,
486
496
  contentId: e.id
487
- }), o = t ? L({ item: e, testGroupId: t }) : void 0;
497
+ }), o = t ? M({ item: e, testGroupId: t }) : void 0;
488
498
  if (o)
489
499
  return o;
490
500
  {
491
- const r = De({
501
+ const r = Ne({
492
502
  variations: e.variations,
493
503
  id: e.id
494
504
  });
@@ -498,19 +508,19 @@ const Ve = (e) => {
498
508
  canTrack: n
499
509
  }).catch((s) => {
500
510
  console.error("could not store A/B test variation: ", s);
501
- }), L({ item: e, testGroupId: r });
511
+ }), M({ item: e, testGroupId: r });
502
512
  }
503
513
  }, ze = async ({
504
514
  item: e,
505
515
  canTrack: n
506
516
  }) => {
507
- if (!Ne(e))
517
+ if (!Me(e))
508
518
  return;
509
519
  const t = await He({ item: e, canTrack: n });
510
520
  Object.assign(e, t);
511
521
  };
512
522
  async function X(e) {
513
- return (await Ke({ ...e, limit: 1 })).results[0] || null;
523
+ return (await De({ ...e, limit: 1 })).results[0] || null;
514
524
  }
515
525
  const qe = (e) => {
516
526
  const {
@@ -524,7 +534,7 @@ const qe = (e) => {
524
534
  `https://cdn.builder.io/api/v2/content/${s}?apiKey=${a}&limit=${n}&noTraverse=${r}`
525
535
  ), i = {
526
536
  ...Ue(),
527
- ...q(e.options || {})
537
+ ...D(e.options || {})
528
538
  }, u = F(i);
529
539
  for (const m in u)
530
540
  c.searchParams.set(m, String(u[m]));
@@ -535,7 +545,7 @@ const qe = (e) => {
535
545
  }
536
546
  return c;
537
547
  };
538
- async function Ke(e) {
548
+ async function De(e) {
539
549
  const n = qe(e), o = await (await K())(n.href).then(
540
550
  (s) => s.json()
541
551
  ), r = e.canTrack !== !1;
@@ -544,42 +554,46 @@ async function Ke(e) {
544
554
  await ze({ item: s, canTrack: r });
545
555
  return o;
546
556
  }
547
- const Je = () => Promise.resolve().then(() => sn).then((e) => e.default).catch((e) => {
557
+ const Ke = () => Promise.resolve().then(() => on).then((e) => e.default).catch((e) => {
548
558
  throw console.error(
549
559
  "Error while attempting to dynamically import component RenderContent at ../../components/render-content/render-content.vue",
550
560
  e
551
561
  ), e;
552
562
  }), Ge = {
553
563
  name: "builder-symbol",
554
- components: { "render-content": y(Je) },
564
+ components: { RenderContent: y(Ke) },
555
565
  props: ["symbol", "attributes"],
556
- data: () => ({ className: "builder-symbol", content: null, markMutable: U }),
566
+ data: () => ({
567
+ className: "builder-symbol",
568
+ fetchedContent: null,
569
+ markMutable: A
570
+ }),
557
571
  inject: {
558
572
  builderContext: "BuilderContext"
559
573
  },
560
- mounted() {
561
- var e;
562
- this.content = (e = this.symbol) == null ? void 0 : e.content;
563
- },
564
574
  watch: {
565
575
  onUpdateHook0() {
566
576
  const e = this.symbol;
567
- e && !e.content && !this.content && e.model && X({
577
+ e && !e.content && !this.fetchedContent && e.model && X({
568
578
  model: e.model,
569
579
  apiKey: this.builderContext.apiKey,
570
580
  query: {
571
581
  id: e.entry
572
582
  }
573
583
  }).then((n) => {
574
- this.content = n;
584
+ this.fetchedContent = n;
575
585
  });
576
586
  }
577
587
  },
578
588
  computed: {
589
+ contentToUse() {
590
+ var e;
591
+ return ((e = this.symbol) == null ? void 0 : e.content) || this.fetchedContent;
592
+ },
579
593
  onUpdateHook0() {
580
594
  return {
581
595
  0: this.symbol,
582
- 1: this.content
596
+ 1: this.fetchedContent
583
597
  };
584
598
  }
585
599
  },
@@ -593,10 +607,9 @@ const Je = () => Promise.resolve().then(() => sn).then((e) => e.default).catch((
593
607
  n[o] = !0;
594
608
  return n;
595
609
  }
596
- },
597
- compatConfig: { MODE: 3 }
598
- }, Ye = ["dataSet"];
599
- function Xe(e, n, t, o, r, s) {
610
+ }
611
+ }, Je = ["dataSet"];
612
+ function Ye(e, n, t, o, r, s) {
600
613
  var c, i, u, m, p;
601
614
  const a = v("render-content");
602
615
  return l(), d("div", x(t.attributes, {
@@ -605,7 +618,7 @@ function Xe(e, n, t, o, r, s) {
605
618
  },
606
619
  class: s._classStringToObject(e.className)
607
620
  }), [
608
- z(a, {
621
+ q(a, {
609
622
  apiKey: s.builderContext.apiKey,
610
623
  context: s.builderContext.context,
611
624
  customComponents: e.markMutable(Object.values(s.builderContext.registeredComponents)),
@@ -615,48 +628,45 @@ function Xe(e, n, t, o, r, s) {
615
628
  ...(m = (u = (i = t.symbol) == null ? void 0 : i.content) == null ? void 0 : u.data) == null ? void 0 : m.state
616
629
  }),
617
630
  model: (p = t.symbol) == null ? void 0 : p.model,
618
- content: e.markMutable(e.content)
631
+ content: e.markMutable(s.contentToUse)
619
632
  }, null, 8, ["apiKey", "context", "customComponents", "data", "model", "content"])
620
- ], 16, Ye);
633
+ ], 16, Je);
621
634
  }
622
- const Qe = /* @__PURE__ */ f(Ge, [["render", Xe]]), Ze = {
635
+ const Xe = /* @__PURE__ */ f(Ge, [["render", Ye]]), Qe = {
623
636
  name: "builder-button",
624
- props: ["attributes", "text", "link", "openLinkInNewTab"],
625
- compatConfig: { MODE: 3 }
637
+ props: ["attributes", "text", "link", "openLinkInNewTab"]
626
638
  };
627
- const et = ["href", "target"];
628
- function tt(e, n, t, o, r, s) {
639
+ const Ze = ["href", "target"];
640
+ function et(e, n, t, o, r, s) {
629
641
  return t.link ? (l(), d("a", x({ key: 0 }, t.attributes, {
630
642
  role: "button",
631
643
  href: t.link,
632
644
  target: t.openLinkInNewTab ? "_blank" : void 0
633
- }), $(t.text), 17, et)) : (l(), d("button", x({ key: 1 }, t.attributes, { class: "button-1eih9th5ow6" }), $(t.text), 17));
645
+ }), P(t.text), 17, Ze)) : (l(), d("button", x({ key: 1 }, t.attributes, { class: "button-7jvpanrlkn" }), P(t.text), 17));
634
646
  }
635
- const nt = /* @__PURE__ */ f(Ze, [["render", tt], ["__scopeId", "data-v-64b92e6e"]]), ot = {
647
+ const tt = /* @__PURE__ */ f(Qe, [["render", et], ["__scopeId", "data-v-3fad88c8"]]), nt = {
636
648
  name: "builder-section-component",
637
- props: ["attributes", "maxWidth"],
638
- compatConfig: { MODE: 3 }
649
+ props: ["attributes", "maxWidth"]
639
650
  };
640
- function st(e, n, t, o, r, s) {
651
+ function ot(e, n, t, o, r, s) {
641
652
  return l(), d("section", x(t.attributes, {
642
653
  style: t.maxWidth && typeof t.maxWidth == "number" ? {
643
654
  maxWidth: t.maxWidth
644
655
  } : void 0
645
656
  }), [
646
- k(e.$slots, "default")
657
+ w(e.$slots, "default")
647
658
  ], 16);
648
659
  }
649
- const rt = /* @__PURE__ */ f(ot, [["render", st]]), at = {
660
+ const st = /* @__PURE__ */ f(nt, [["render", ot]]), rt = {
650
661
  name: "builder-fragment-component",
651
- props: [],
652
- compatConfig: { MODE: 3 }
662
+ props: []
653
663
  };
654
- function it(e, n, t, o, r, s) {
664
+ function at(e, n, t, o, r, s) {
655
665
  return l(), d("span", null, [
656
- k(e.$slots, "default")
666
+ w(e.$slots, "default")
657
667
  ]);
658
668
  }
659
- const ct = /* @__PURE__ */ f(at, [["render", it]]), lt = {
669
+ const it = /* @__PURE__ */ f(rt, [["render", at]]), ct = {
660
670
  name: "Core:Button",
661
671
  builtIn: !0,
662
672
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F81a15681c3e74df09677dfc57a615b13",
@@ -694,10 +704,10 @@ const ct = /* @__PURE__ */ f(at, [["render", it]]), lt = {
694
704
  static: !0,
695
705
  noWrap: !0
696
706
  };
697
- function M(e) {
707
+ function V(e) {
698
708
  return e.__qwik_serializable__ = !0, e;
699
709
  }
700
- const dt = {
710
+ const lt = {
701
711
  name: "Columns",
702
712
  builtIn: !0,
703
713
  inputs: [
@@ -885,7 +895,7 @@ const dt = {
885
895
  ]
886
896
  }
887
897
  ],
888
- onChange: M((e) => {
898
+ onChange: V((e) => {
889
899
  function n() {
890
900
  t.forEach((o) => {
891
901
  o.delete("width");
@@ -922,14 +932,14 @@ const dt = {
922
932
  advanced: !0
923
933
  }
924
934
  ]
925
- }, ut = {
935
+ }, dt = {
926
936
  name: "Fragment",
927
937
  static: !0,
928
938
  hidden: !0,
929
939
  builtIn: !0,
930
940
  canHaveChildren: !0,
931
941
  noWrap: !0
932
- }, mt = {
942
+ }, ut = {
933
943
  name: "Image",
934
944
  static: !0,
935
945
  builtIn: !0,
@@ -949,7 +959,7 @@ const dt = {
949
959
  allowedFileTypes: ["jpeg", "jpg", "png", "svg"],
950
960
  required: !0,
951
961
  defaultValue: "https://cdn.builder.io/api/v1/image/assets%2Fpwgjf0RoYWbdnJSbpBAjXNRMe9F2%2Ffb27a7c790324294af8be1c35fe30f4d",
952
- onChange: M((e) => {
962
+ onChange: V((e) => {
953
963
  e.delete("srcset"), e.delete("noWebp");
954
964
  function t(a, c = 6e4) {
955
965
  return new Promise((i, u) => {
@@ -957,8 +967,8 @@ const dt = {
957
967
  let p = !1;
958
968
  m.onload = () => {
959
969
  p = !0, i(m);
960
- }, m.addEventListener("error", (_) => {
961
- console.warn("Image load failed", _.error), u(_.error);
970
+ }, m.addEventListener("error", (k) => {
971
+ console.warn("Image load failed", k.error), u(k.error);
962
972
  }), m.src = a, setTimeout(() => {
963
973
  p || u(new Error("Image load timed out"));
964
974
  }, c);
@@ -1055,7 +1065,7 @@ const dt = {
1055
1065
  defaultValue: 0.7041
1056
1066
  }
1057
1067
  ]
1058
- }, pt = {
1068
+ }, mt = {
1059
1069
  name: "Core:Section",
1060
1070
  static: !0,
1061
1071
  builtIn: !0,
@@ -1100,7 +1110,7 @@ const dt = {
1100
1110
  }
1101
1111
  }
1102
1112
  ]
1103
- }, ht = {
1113
+ }, pt = {
1104
1114
  name: "Symbol",
1105
1115
  noWrap: !0,
1106
1116
  static: !0,
@@ -1139,7 +1149,7 @@ const dt = {
1139
1149
  type: "boolean"
1140
1150
  }
1141
1151
  ]
1142
- }, ft = {
1152
+ }, ht = {
1143
1153
  name: "Text",
1144
1154
  static: !0,
1145
1155
  builtIn: !0,
@@ -1159,7 +1169,7 @@ const dt = {
1159
1169
  height: "auto",
1160
1170
  textAlign: "center"
1161
1171
  }
1162
- }, gt = {
1172
+ }, ft = {
1163
1173
  name: "Video",
1164
1174
  canHaveChildren: !0,
1165
1175
  builtIn: !0,
@@ -1261,7 +1271,7 @@ const dt = {
1261
1271
  advanced: !0
1262
1272
  }
1263
1273
  ]
1264
- }, bt = {
1274
+ }, gt = {
1265
1275
  name: "Embed",
1266
1276
  static: !0,
1267
1277
  builtIn: !0,
@@ -1272,7 +1282,7 @@ const dt = {
1272
1282
  required: !0,
1273
1283
  defaultValue: "",
1274
1284
  helperText: "e.g. enter a youtube url, google map, etc",
1275
- onChange: M((e) => {
1285
+ onChange: V((e) => {
1276
1286
  const n = e.get("url");
1277
1287
  if (n)
1278
1288
  return e.set("content", "Loading..."), fetch(
@@ -1295,11 +1305,11 @@ const dt = {
1295
1305
  hideFromUI: !0
1296
1306
  }
1297
1307
  ]
1298
- }, yt = [
1308
+ }, bt = [
1299
1309
  "text/javascript",
1300
1310
  "application/javascript",
1301
1311
  "application/ecmascript"
1302
- ], vt = (e) => yt.includes(e.type), xt = {
1312
+ ], yt = (e) => bt.includes(e.type), vt = {
1303
1313
  name: "builder-embed",
1304
1314
  props: ["content"],
1305
1315
  data: () => ({ scriptsInserted: [], scriptsRun: [], ranInitFn: !1 }),
@@ -1327,7 +1337,7 @@ const dt = {
1327
1337
  this.scriptsInserted.push(t.src);
1328
1338
  const o = document.createElement("script");
1329
1339
  o.async = !0, o.src = t.src, document.head.appendChild(o);
1330
- } else if (vt(t) && !this.scriptsRun.includes(t.innerText))
1340
+ } else if (yt(t) && !this.scriptsRun.includes(t.innerText))
1331
1341
  try {
1332
1342
  this.scriptsRun.push(t.innerText), new Function(t.innerText)();
1333
1343
  } catch (o) {
@@ -1335,24 +1345,23 @@ const dt = {
1335
1345
  }
1336
1346
  }
1337
1347
  }
1338
- },
1339
- compatConfig: { MODE: 3 }
1340
- }, _t = ["innerHTML"];
1341
- function Ct(e, n, t, o, r, s) {
1348
+ }
1349
+ }, xt = ["innerHTML"];
1350
+ function kt(e, n, t, o, r, s) {
1342
1351
  return l(), d("div", {
1343
1352
  class: "builder-embed",
1344
1353
  ref: "elem",
1345
1354
  innerHTML: t.content
1346
- }, null, 8, _t);
1355
+ }, null, 8, xt);
1347
1356
  }
1348
- const kt = /* @__PURE__ */ f(xt, [["render", Ct]]);
1349
- function wt() {
1357
+ const _t = /* @__PURE__ */ f(vt, [["render", kt]]);
1358
+ function Ct() {
1350
1359
  return h() && window.self !== window.top;
1351
1360
  }
1352
1361
  function g() {
1353
- return wt() && window.location.search.indexOf("builder.frameEditing=") !== -1;
1362
+ return Ct() && window.location.search.indexOf("builder.frameEditing=") !== -1;
1354
1363
  }
1355
- const St = {
1364
+ const wt = {
1356
1365
  name: "builder-img-component",
1357
1366
  props: [
1358
1367
  "backgroundSize",
@@ -1362,10 +1371,9 @@ const St = {
1362
1371
  "image",
1363
1372
  "attributes"
1364
1373
  ],
1365
- data: () => ({ isEditing: g }),
1366
- compatConfig: { MODE: 3 }
1367
- }, It = ["alt", "src"];
1368
- function Tt(e, n, t, o, r, s) {
1374
+ data: () => ({ isEditing: g })
1375
+ }, St = ["alt", "src"];
1376
+ function It(e, n, t, o, r, s) {
1369
1377
  return l(), d("img", x(t.attributes, {
1370
1378
  style: {
1371
1379
  objectFit: t.backgroundSize || "cover",
@@ -1374,9 +1382,9 @@ function Tt(e, n, t, o, r, s) {
1374
1382
  key: e.isEditing() && t.imgSrc || "default-key",
1375
1383
  alt: t.altText,
1376
1384
  src: t.imgSrc || t.image
1377
- }), null, 16, It);
1385
+ }), null, 16, St);
1378
1386
  }
1379
- const Rt = /* @__PURE__ */ f(St, [["render", Tt]]), Et = {
1387
+ const Tt = /* @__PURE__ */ f(wt, [["render", It]]), Rt = {
1380
1388
  name: "Raw:Img",
1381
1389
  hideFromInsertMenu: !0,
1382
1390
  builtIn: !0,
@@ -1392,7 +1400,7 @@ const Rt = /* @__PURE__ */ f(St, [["render", Tt]]), Et = {
1392
1400
  ],
1393
1401
  noWrap: !0,
1394
1402
  static: !0
1395
- }, Ft = {
1403
+ }, Et = {
1396
1404
  name: "builder-custom-code",
1397
1405
  props: ["replaceNodes", "code"],
1398
1406
  data: () => ({ scriptsInserted: [], scriptsRun: [] }),
@@ -1436,21 +1444,20 @@ const Rt = /* @__PURE__ */ f(St, [["render", Tt]]), Et = {
1436
1444
  n[o] = !0;
1437
1445
  return n;
1438
1446
  }
1439
- },
1440
- compatConfig: { MODE: 3 }
1441
- }, Ot = ["innerHTML"];
1447
+ }
1448
+ }, Ft = ["innerHTML"];
1442
1449
  function jt(e, n, t, o, r, s) {
1443
1450
  return l(), d("div", {
1444
1451
  ref: "elem",
1445
- class: O(
1452
+ class: j(
1446
1453
  s._classStringToObject(
1447
1454
  "builder-custom-code" + (t.replaceNodes ? " replace-nodes" : "")
1448
1455
  )
1449
1456
  ),
1450
1457
  innerHTML: t.code
1451
- }, null, 10, Ot);
1458
+ }, null, 10, Ft);
1452
1459
  }
1453
- const Ut = /* @__PURE__ */ f(Ft, [["render", jt]]), Mt = {
1460
+ const Ut = /* @__PURE__ */ f(Et, [["render", jt]]), At = {
1454
1461
  name: "Custom Code",
1455
1462
  static: !0,
1456
1463
  builtIn: !0,
@@ -1478,17 +1485,17 @@ const Ut = /* @__PURE__ */ f(Ft, [["render", jt]]), Mt = {
1478
1485
  }
1479
1486
  ]
1480
1487
  }, Vt = () => [
1481
- { component: me, ...dt },
1482
- { component: Ce, ...mt },
1483
- { component: Rt, ...Et },
1484
- { component: Ie, ...ft },
1485
- { component: Fe, ...gt },
1486
- { component: Qe, ...ht },
1487
- { component: nt, ...lt },
1488
- { component: rt, ...pt },
1489
- { component: ct, ...ut },
1490
- { component: kt, ...bt },
1491
- { component: Ut, ...Mt }
1488
+ { component: me, ...lt },
1489
+ { component: ke, ...ut },
1490
+ { component: Tt, ...Rt },
1491
+ { component: Se, ...ht },
1492
+ { component: Ee, ...ft },
1493
+ { component: Xe, ...pt },
1494
+ { component: tt, ...ct },
1495
+ { component: st, ...mt },
1496
+ { component: it, ...dt },
1497
+ { component: _t, ...gt },
1498
+ { component: Ut, ...At }
1492
1499
  ];
1493
1500
  function N({
1494
1501
  code: e,
@@ -1526,29 +1533,29 @@ function N({
1526
1533
  );
1527
1534
  }
1528
1535
  }
1529
- function At() {
1536
+ function Ot() {
1530
1537
  return !h() || g() ? !1 : Boolean(location.search.indexOf("builder.preview=") !== -1);
1531
1538
  }
1532
- const Q = [];
1533
- function hn(e, n) {
1534
- return Q.push({ component: e, ...n }), console.warn(
1539
+ const Q = (e) => JSON.parse(JSON.stringify(e)), Z = [];
1540
+ function pn(e, n) {
1541
+ return Z.push({ component: e, ...n }), console.warn(
1535
1542
  "registerComponent is deprecated. Use the `customComponents` prop in RenderContent instead to provide your custom components to the builder SDK."
1536
1543
  ), e;
1537
1544
  }
1538
- const $t = ({
1545
+ const Bt = ({
1539
1546
  component: e,
1540
1547
  ...n
1541
1548
  }) => ({
1542
1549
  type: "builder.registerComponent",
1543
- data: Bt(n)
1544
- }), Z = (e) => JSON.parse(JSON.stringify(e)), Pt = (e) => typeof e == "function" ? Wt(e) : Z(e), Wt = (e) => {
1550
+ data: Wt(n)
1551
+ }), Pt = (e) => typeof e == "function" ? $t(e) : Q(e), $t = (e) => {
1545
1552
  const n = e.toString().trim();
1546
1553
  return `return (${!n.startsWith("function") && !n.startsWith("(") ? "function " : ""}${n}).apply(this, arguments)`;
1547
- }, Bt = ({
1554
+ }, Wt = ({
1548
1555
  inputs: e,
1549
1556
  ...n
1550
1557
  }) => ({
1551
- ...Z(n),
1558
+ ...Q(n),
1552
1559
  inputs: e == null ? void 0 : e.map(
1553
1560
  (t) => Object.entries(t).reduce(
1554
1561
  (o, [r, s]) => ({
@@ -1568,23 +1575,23 @@ function Lt() {
1568
1575
  function ee() {
1569
1576
  return Lt().replace(/-/g, "");
1570
1577
  }
1571
- const te = "builderSessionId", Nt = async ({ canTrack: e }) => {
1578
+ const te = "builderSessionId", Mt = async ({ canTrack: e }) => {
1572
1579
  if (!e)
1573
1580
  return;
1574
- const n = await J({
1581
+ const n = await G({
1575
1582
  name: te,
1576
1583
  canTrack: e
1577
1584
  });
1578
- if (S(n))
1585
+ if (I(n))
1579
1586
  return n;
1580
1587
  {
1581
- const t = Dt();
1588
+ const t = Nt();
1582
1589
  Ht({ id: t, canTrack: e });
1583
1590
  }
1584
- }, Dt = () => ee(), Ht = ({
1591
+ }, Nt = () => ee(), Ht = ({
1585
1592
  id: e,
1586
1593
  canTrack: n
1587
- }) => G({ name: te, value: e, canTrack: n }), ne = () => h() && typeof localStorage < "u" ? localStorage : void 0, zt = ({
1594
+ }) => J({ name: te, value: e, canTrack: n }), ne = () => h() && typeof localStorage < "u" ? localStorage : void 0, zt = ({
1588
1595
  key: e,
1589
1596
  canTrack: n
1590
1597
  }) => {
@@ -1605,37 +1612,37 @@ const te = "builderSessionId", Nt = async ({ canTrack: e }) => {
1605
1612
  } catch (r) {
1606
1613
  console.debug("[LocalStorage] SET error: ", r);
1607
1614
  }
1608
- }, oe = "builderVisitorId", Kt = ({ canTrack: e }) => {
1615
+ }, oe = "builderVisitorId", Dt = ({ canTrack: e }) => {
1609
1616
  if (!e)
1610
1617
  return;
1611
1618
  const n = zt({
1612
1619
  key: oe,
1613
1620
  canTrack: e
1614
1621
  });
1615
- if (S(n))
1622
+ if (I(n))
1616
1623
  return n;
1617
1624
  {
1618
- const t = Jt();
1625
+ const t = Kt();
1619
1626
  Gt({ id: t, canTrack: e });
1620
1627
  }
1621
- }, Jt = () => ee(), Gt = ({
1628
+ }, Kt = () => ee(), Gt = ({
1622
1629
  id: e,
1623
1630
  canTrack: n
1624
1631
  }) => qt({
1625
1632
  key: oe,
1626
1633
  value: e,
1627
1634
  canTrack: n
1628
- }), Yt = async ({
1635
+ }), Jt = async ({
1629
1636
  canTrack: e
1630
1637
  }) => {
1631
1638
  if (!e)
1632
1639
  return { visitorId: void 0, sessionId: void 0 };
1633
- const n = await Nt({ canTrack: e }), t = Kt({ canTrack: e });
1640
+ const n = await Mt({ canTrack: e }), t = Dt({ canTrack: e });
1634
1641
  return {
1635
1642
  sessionId: n,
1636
1643
  visitorId: t
1637
1644
  };
1638
- }, Xt = async ({
1645
+ }, Yt = async ({
1639
1646
  type: e,
1640
1647
  canTrack: n,
1641
1648
  orgId: t,
@@ -1645,17 +1652,17 @@ const te = "builderSessionId", Nt = async ({ canTrack: e }) => {
1645
1652
  type: e,
1646
1653
  data: {
1647
1654
  ...r,
1648
- ...await Yt({ canTrack: n }),
1655
+ ...await Jt({ canTrack: n }),
1649
1656
  ownerId: t,
1650
1657
  contentId: o
1651
1658
  }
1652
1659
  });
1653
- async function D(e) {
1654
- if (!!e.canTrack && !g() && !!(h() || j === "reactNative"))
1660
+ async function H(e) {
1661
+ if (!!e.canTrack && !g() && !!(h() || U === "reactNative"))
1655
1662
  return fetch("https://builder.io/api/v1/track", {
1656
1663
  method: "POST",
1657
1664
  body: JSON.stringify({
1658
- events: [await Xt(e)]
1665
+ events: [await Yt(e)]
1659
1666
  }),
1660
1667
  headers: {
1661
1668
  "content-type": "application/json"
@@ -1665,21 +1672,21 @@ async function D(e) {
1665
1672
  console.error("Failed to track: ", n);
1666
1673
  });
1667
1674
  }
1668
- const Qt = () => Promise.resolve().then(() => se).then((e) => e.default).catch((e) => {
1675
+ const Xt = () => Promise.resolve().then(() => se).then((e) => e.default).catch((e) => {
1669
1676
  throw console.error(
1670
1677
  "Error while attempting to dynamically import component RenderBlocks at ../render-blocks.vue",
1671
1678
  e
1672
1679
  ), e;
1673
- }), Zt = () => import("./render-styles.750ea842.js").then((e) => e.default).catch((e) => {
1680
+ }), Qt = () => import("./render-styles.9c635f29.js").then((e) => e.default).catch((e) => {
1674
1681
  throw console.error(
1675
1682
  "Error while attempting to dynamically import component RenderContentStyles at ./components/render-styles.vue",
1676
1683
  e
1677
1684
  ), e;
1678
- }), en = {
1685
+ }), Zt = {
1679
1686
  name: "render-content",
1680
1687
  components: {
1681
- "render-content-styles": y(Zt),
1682
- "render-blocks": y(Qt)
1688
+ RenderContentStyles: y(Qt),
1689
+ RenderBlocks: y(Xt)
1683
1690
  },
1684
1691
  props: [
1685
1692
  "content",
@@ -1695,7 +1702,7 @@ const Qt = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
1695
1702
  overrideContent: null,
1696
1703
  update: 0,
1697
1704
  overrideState: {},
1698
- markMutable: U
1705
+ markMutable: A
1699
1706
  }),
1700
1707
  provide() {
1701
1708
  const e = this;
@@ -1725,18 +1732,18 @@ const Qt = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
1725
1732
  if (g() && (this.forceReRenderCount = this.forceReRenderCount + 1, ie(), ce(), Object.values(this.allRegisteredComponents).forEach(
1726
1733
  (n) => {
1727
1734
  var o;
1728
- const t = $t(n);
1735
+ const t = Bt(n);
1729
1736
  (o = window.parent) == null || o.postMessage(t, "*");
1730
1737
  }
1731
1738
  ), window.addEventListener("message", this.processMessage), window.addEventListener(
1732
1739
  "builder:component:stateChangeListenerActivated",
1733
1740
  this.emitStateUpdate
1734
- )), this.useContent && D({
1741
+ )), this.useContent && H({
1735
1742
  type: "impression",
1736
1743
  canTrack: this.canTrackToUse,
1737
1744
  contentId: (e = this.useContent) == null ? void 0 : e.id,
1738
1745
  orgId: this.apiKey
1739
- }), At()) {
1746
+ }), Ot()) {
1740
1747
  const n = new URL(location.href).searchParams;
1741
1748
  if (this.model && n.get("builder.preview") === this.model) {
1742
1749
  const t = n.get("apiKey") || n.get("builder.space");
@@ -1798,10 +1805,13 @@ const Qt = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
1798
1805
  allRegisteredComponents() {
1799
1806
  return [
1800
1807
  ...Vt(),
1801
- ...Q,
1808
+ ...Z,
1802
1809
  ...this.customComponents || []
1803
1810
  ].reduce(
1804
- (t, o) => ({ ...t, [o.name]: o }),
1811
+ (t, o) => ({
1812
+ ...t,
1813
+ [o.name]: o
1814
+ }),
1805
1815
  {}
1806
1816
  );
1807
1817
  },
@@ -1811,7 +1821,7 @@ const Qt = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
1811
1821
  shouldRenderContentStyles() {
1812
1822
  var e, n, t, o, r;
1813
1823
  return Boolean(
1814
- (((n = (e = this.useContent) == null ? void 0 : e.data) == null ? void 0 : n.cssCode) || ((r = (o = (t = this.useContent) == null ? void 0 : t.data) == null ? void 0 : o.customFonts) == null ? void 0 : r.length)) && j !== "reactNative"
1824
+ (((n = (e = this.useContent) == null ? void 0 : e.data) == null ? void 0 : n.cssCode) || ((r = (o = (t = this.useContent) == null ? void 0 : t.data) == null ? void 0 : o.customFonts) == null ? void 0 : r.length)) && U !== "reactNative"
1815
1825
  );
1816
1826
  },
1817
1827
  onUpdateHook0() {
@@ -1855,7 +1865,7 @@ const Qt = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
1855
1865
  },
1856
1866
  onClick(e) {
1857
1867
  var n;
1858
- this.useContent && D({
1868
+ this.useContent && H({
1859
1869
  type: "click",
1860
1870
  canTrack: this.canTrackToUse,
1861
1871
  contentId: (n = this.useContent) == null ? void 0 : n.id,
@@ -1874,7 +1884,10 @@ const Qt = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
1874
1884
  },
1875
1885
  handleRequest({ url: e, key: n }) {
1876
1886
  K().then((t) => t(e)).then((t) => t.json()).then((t) => {
1877
- const o = { ...this.overrideState, [n]: t };
1887
+ const o = {
1888
+ ...this.overrideState,
1889
+ [n]: t
1890
+ };
1878
1891
  this.overrideState = o;
1879
1892
  }).catch((t) => {
1880
1893
  console.log("error fetching dynamic data", e, t);
@@ -1905,49 +1918,49 @@ const Qt = () => Promise.resolve().then(() => se).then((e) => e.default).catch((
1905
1918
  })
1906
1919
  );
1907
1920
  }
1908
- },
1909
- compatConfig: { MODE: 3 }
1910
- }, tn = ["builder-content-id"];
1911
- function nn(e, n, t, o, r, s) {
1912
- var i, u, m, p, _, V, A;
1921
+ }
1922
+ }, en = ["builder-content-id", "builder-model"];
1923
+ function tn(e, n, t, o, r, s) {
1924
+ var i, u, m, p, k, O, B;
1913
1925
  const a = v("render-content-styles"), c = v("render-blocks");
1914
1926
  return s.useContent ? (l(), d("div", {
1915
1927
  key: 0,
1916
1928
  ref: "elementRef",
1917
1929
  onClick: n[0] || (n[0] = (re) => s.onClick(re)),
1918
- "builder-content-id": (i = s.useContent) == null ? void 0 : i.id
1930
+ "builder-content-id": (i = s.useContent) == null ? void 0 : i.id,
1931
+ "builder-model": t.model
1919
1932
  }, [
1920
- s.shouldRenderContentStyles ? (l(), w(a, {
1933
+ s.shouldRenderContentStyles ? (l(), S(a, {
1921
1934
  key: 0,
1922
1935
  cssCode: (m = (u = s.useContent) == null ? void 0 : u.data) == null ? void 0 : m.cssCode,
1923
- customFonts: (_ = (p = s.useContent) == null ? void 0 : p.data) == null ? void 0 : _.customFonts
1936
+ customFonts: (k = (p = s.useContent) == null ? void 0 : p.data) == null ? void 0 : k.customFonts
1924
1937
  }, null, 8, ["cssCode", "customFonts"])) : b("", !0),
1925
- (l(), w(c, {
1926
- blocks: e.markMutable((A = (V = s.useContent) == null ? void 0 : V.data) == null ? void 0 : A.blocks),
1938
+ (l(), S(c, {
1939
+ blocks: e.markMutable((B = (O = s.useContent) == null ? void 0 : O.data) == null ? void 0 : B.blocks),
1927
1940
  key: e.forceReRenderCount
1928
1941
  }, null, 8, ["blocks"]))
1929
- ], 8, tn)) : b("", !0);
1942
+ ], 8, en)) : b("", !0);
1930
1943
  }
1931
- const on = /* @__PURE__ */ f(en, [["render", nn]]), sn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1944
+ const nn = /* @__PURE__ */ f(Zt, [["render", tn]]), on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1932
1945
  __proto__: null,
1933
- default: on
1934
- }, Symbol.toStringTag, { value: "Module" })), rn = () => import("./block-styles.1f1fb83d.js").then((e) => e.default).catch((e) => {
1946
+ default: nn
1947
+ }, Symbol.toStringTag, { value: "Module" })), sn = () => import("./block-styles.a91eeb93.js").then((e) => e.default).catch((e) => {
1935
1948
  throw console.error(
1936
1949
  "Error while attempting to dynamically import component BlockStyles at ./render-block/block-styles.vue",
1937
1950
  e
1938
1951
  ), e;
1939
- }), an = () => import("./render-block.3cdd0c66.js").then((e) => e.default).catch((e) => {
1952
+ }), rn = () => import("./render-block.425938f2.js").then((e) => e.default).catch((e) => {
1940
1953
  throw console.error(
1941
1954
  "Error while attempting to dynamically import component RenderBlock at ./render-block/render-block.vue",
1942
1955
  e
1943
1956
  ), e;
1944
- }), cn = {
1957
+ }), an = {
1945
1958
  name: "render-blocks",
1946
1959
  components: {
1947
- "render-block": y(an),
1948
- "block-styles": y(rn)
1960
+ RenderBlock: y(rn),
1961
+ BlockStyles: y(sn)
1949
1962
  },
1950
- props: ["blocks", "parent", "path"],
1963
+ props: ["blocks", "parent", "path", "styleProp"],
1951
1964
  inject: {
1952
1965
  builderContext: "BuilderContext"
1953
1966
  },
@@ -1993,75 +2006,76 @@ const on = /* @__PURE__ */ f(en, [["render", nn]]), sn = /* @__PURE__ */ Object.
1993
2006
  n[o] = !0;
1994
2007
  return n;
1995
2008
  }
1996
- },
1997
- compatConfig: { MODE: 3 }
2009
+ }
1998
2010
  };
1999
- const ln = ["builder-path", "builder-parent-id", "dataSet"];
2000
- function dn(e, n, t, o, r, s) {
2011
+ const cn = ["builder-path", "builder-parent-id", "dataSet"];
2012
+ function ln(e, n, t, o, r, s) {
2001
2013
  const a = v("render-block"), c = v("block-styles");
2002
2014
  return l(), d("div", {
2003
- class: O(s._classStringToObject(s.className + " div-3q96myty4lk")),
2015
+ class: j(s._classStringToObject(s.className + " div-2oa2wtipkzk")),
2004
2016
  "builder-path": t.path,
2005
2017
  "builder-parent-id": t.parent,
2006
2018
  dataSet: {
2007
2019
  class: s.className
2008
2020
  },
2021
+ style: _(t.styleProp),
2009
2022
  onClick: n[0] || (n[0] = (i) => s.onClick()),
2010
2023
  onMouseenter: n[1] || (n[1] = (i) => s.onMouseEnter())
2011
2024
  }, [
2012
- t.blocks ? (l(!0), d(R, { key: 0 }, E(t.blocks, (i, u) => (l(), w(a, {
2025
+ t.blocks ? (l(!0), d(C, { key: 0 }, E(t.blocks, (i, u) => (l(), S(a, {
2013
2026
  key: "render-block-" + i.id,
2014
2027
  block: i,
2015
2028
  context: s.builderContext
2016
2029
  }, null, 8, ["block", "context"]))), 128)) : b("", !0),
2017
- t.blocks ? (l(!0), d(R, { key: 1 }, E(t.blocks, (i, u) => (l(), w(c, {
2030
+ t.blocks ? (l(!0), d(C, { key: 1 }, E(t.blocks, (i, u) => (l(), S(c, {
2018
2031
  key: "block-style-" + i.id,
2019
2032
  block: i,
2020
2033
  context: s.builderContext
2021
2034
  }, null, 8, ["block", "context"]))), 128)) : b("", !0)
2022
- ], 42, ln);
2035
+ ], 46, cn);
2023
2036
  }
2024
- const un = /* @__PURE__ */ f(cn, [["render", dn], ["__scopeId", "data-v-b37c318e"]]), se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2037
+ const dn = /* @__PURE__ */ f(an, [["render", ln], ["__scopeId", "data-v-75c39314"]]), se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2025
2038
  __proto__: null,
2026
- default: un
2027
- }, Symbol.toStringTag, { value: "Module" })), H = {};
2028
- function fn(e) {
2039
+ default: dn
2040
+ }, Symbol.toStringTag, { value: "Module" })), z = {};
2041
+ function hn(e) {
2029
2042
  if (h()) {
2030
- Object.assign(H, e);
2043
+ Object.assign(z, e);
2031
2044
  const n = {
2032
2045
  type: "builder.settingsChange",
2033
- data: H
2046
+ data: z
2034
2047
  };
2035
2048
  parent.postMessage(n, "*");
2036
2049
  }
2037
2050
  }
2038
2051
  export {
2039
- nt as B,
2052
+ tt as B,
2040
2053
  me as C,
2041
- ct as F,
2042
- Ce as I,
2043
- Qe as S,
2044
- j as T,
2045
- Fe as V,
2054
+ it as F,
2055
+ ke as I,
2056
+ Xe as S,
2057
+ U as T,
2058
+ Ee as V,
2046
2059
  f as _,
2047
- Ie as a,
2048
- rt as b,
2049
- un as c,
2050
- At as d,
2060
+ Se as a,
2061
+ st as b,
2062
+ dn as c,
2063
+ Ot as d,
2051
2064
  N as e,
2052
2065
  Q as f,
2053
- hn as g,
2054
- $t as h,
2066
+ Z as g,
2067
+ pn as h,
2055
2068
  g as i,
2056
- ae as j,
2057
- X as k,
2058
- qe as l,
2059
- pn as m,
2060
- Ke as n,
2061
- Oe as o,
2062
- je as p,
2063
- Ue as q,
2064
- on as r,
2065
- fn as s,
2066
- q as t
2069
+ Bt as j,
2070
+ ae as k,
2071
+ X as l,
2072
+ mn as m,
2073
+ qe as n,
2074
+ De as o,
2075
+ Fe as p,
2076
+ je as q,
2077
+ nn as r,
2078
+ hn as s,
2079
+ Ue as t,
2080
+ D as u
2067
2081
  };