@builder.io/sdk-vue 0.0.2-1 → 0.0.2

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 (230) hide show
  1. package/package.json +1 -1
  2. package/packages/_vue2/dist/{block-styles.4b780e2e.js → block-styles.a3384cd8.js} +31 -15
  3. package/packages/_vue2/dist/block-styles.b8f018af.cjs +10 -0
  4. package/packages/_vue2/dist/env.d.ts +1 -0
  5. package/packages/_vue2/dist/get-processed-block.53761199.js +40 -0
  6. package/packages/_vue2/dist/get-processed-block.5b7d0290.cjs +1 -0
  7. package/packages/_vue2/dist/index.3fb2f85b.cjs +4 -0
  8. package/packages/_vue2/dist/{index.35b10c2f.js → index.93374a52.js} +124 -120
  9. package/packages/_vue2/dist/render-block.31ab55d9.cjs +3 -0
  10. package/packages/_vue2/dist/{render-block.3112f40b.js → render-block.f95552ec.js} +64 -77
  11. package/packages/_vue2/dist/{render-component.7c5a2af0.js → render-component.10d6d66e.js} +3 -3
  12. package/packages/_vue2/dist/{render-component.3c148966.cjs → render-component.4714b27b.cjs} +1 -1
  13. package/packages/_vue2/dist/{render-inlined-styles.f67a4c7d.js → render-inlined-styles.0fed22b4.js} +1 -1
  14. package/packages/_vue2/dist/{render-inlined-styles.c3478295.cjs → render-inlined-styles.3826da36.cjs} +1 -1
  15. package/packages/_vue2/dist/{render-repeated-block.ea4adce6.cjs → render-repeated-block.d8e1f3e2.cjs} +1 -1
  16. package/packages/_vue2/dist/{render-repeated-block.006af118.js → render-repeated-block.f29194a7.js} +2 -2
  17. package/packages/_vue2/dist/{render-styles.e6d20f13.cjs → render-styles.9ff97301.cjs} +1 -1
  18. package/packages/_vue2/dist/{render-styles.90704267.js → render-styles.cd30abd1.js} +2 -2
  19. package/packages/_vue2/dist/sdk.cjs +1 -1
  20. package/packages/_vue2/dist/sdk.d.ts +1 -0
  21. package/packages/_vue2/dist/sdk.js +1 -1
  22. package/packages/_vue2/dist/src/blocks/button/button.vue.d.ts +11 -0
  23. package/packages/_vue2/dist/src/blocks/button/component-info.d.ts +2 -0
  24. package/packages/_vue2/dist/src/blocks/columns/columns.vue.d.ts +174 -0
  25. package/packages/_vue2/dist/src/blocks/columns/component-info.d.ts +2 -0
  26. package/packages/_vue2/dist/src/blocks/custom-code/component-info.d.ts +2 -0
  27. package/packages/_vue2/dist/src/blocks/custom-code/custom-code.vue.d.ts +18 -0
  28. package/packages/_vue2/dist/src/blocks/embed/component-info.d.ts +2 -0
  29. package/packages/_vue2/dist/src/blocks/embed/embed.vue.d.ts +22 -0
  30. package/packages/_vue2/dist/src/blocks/embed/helpers.d.ts +1 -0
  31. package/packages/_vue2/dist/src/blocks/fragment/component-info.d.ts +2 -0
  32. package/packages/_vue2/dist/src/blocks/fragment/fragment.vue.d.ts +10 -0
  33. package/packages/_vue2/dist/src/blocks/image/component-info.d.ts +2 -0
  34. package/packages/_vue2/dist/src/blocks/image/image.helpers.d.ts +1 -0
  35. package/packages/_vue2/dist/src/blocks/img/component-info.d.ts +2 -0
  36. package/packages/_vue2/dist/src/blocks/img/img.vue.d.ts +17 -0
  37. package/packages/_vue2/dist/src/blocks/section/component-info.d.ts +2 -0
  38. package/packages/_vue2/dist/src/blocks/section/section.vue.d.ts +11 -0
  39. package/packages/_vue2/dist/src/blocks/symbol/component-info.d.ts +2 -0
  40. package/packages/_vue2/dist/src/blocks/symbol/symbol.vue.d.ts +264 -0
  41. package/packages/_vue2/dist/src/blocks/text/component-info.d.ts +2 -0
  42. package/packages/_vue2/dist/src/blocks/text/text.vue.d.ts +8 -0
  43. package/packages/_vue2/dist/src/blocks/util.d.ts +1 -0
  44. package/packages/_vue2/dist/src/blocks/video/component-info.d.ts +2 -0
  45. package/packages/_vue2/dist/src/blocks/video/video.vue.d.ts +24 -0
  46. package/packages/_vue2/dist/src/components/render-block/block-styles.vue.d.ts +31 -0
  47. package/packages/_vue2/dist/src/components/render-block/render-block.helpers.d.ts +1 -0
  48. package/packages/_vue2/dist/src/components/render-block/render-block.vue.d.ts +105 -0
  49. package/packages/_vue2/dist/src/components/render-block/render-component.vue.d.ts +108 -0
  50. package/packages/_vue2/dist/src/components/render-block/render-repeated-block.vue.d.ts +99 -0
  51. package/packages/_vue2/dist/src/components/render-block/types.d.ts +6 -0
  52. package/packages/_vue2/dist/src/components/render-blocks.vue.d.ts +146 -0
  53. package/packages/_vue2/dist/src/components/render-content/components/render-styles.vue.d.ts +27 -0
  54. package/packages/_vue2/dist/src/components/render-content/render-content.vue.d.ts +236 -0
  55. package/packages/_vue2/dist/src/components/render-inlined-styles.vue.d.ts +12 -0
  56. package/packages/_vue2/dist/src/constants/builder-registered-components.d.ts +6 -0
  57. package/packages/_vue2/dist/src/constants/device-sizes.d.ts +2 -0
  58. package/packages/_vue2/dist/src/constants/target.d.ts +2 -0
  59. package/packages/_vue2/dist/src/context/builder.context.d.ts +2 -0
  60. package/packages/_vue2/dist/src/context/types.d.ts +16 -0
  61. package/packages/_vue2/dist/src/functions/camel-to-kebab-case.d.ts +1 -0
  62. package/packages/_vue2/dist/src/functions/evaluate.d.ts +5 -0
  63. package/packages/_vue2/dist/src/functions/event-handler-name.d.ts +1 -0
  64. package/packages/_vue2/dist/src/functions/get-block-actions-handler.d.ts +5 -0
  65. package/packages/_vue2/dist/src/functions/get-block-actions.d.ts +9 -0
  66. package/packages/_vue2/dist/src/functions/get-block-component-options.d.ts +2 -0
  67. package/packages/_vue2/dist/src/functions/get-block-properties.d.ts +5 -0
  68. package/packages/_vue2/dist/src/functions/get-block-styles.d.ts +1 -0
  69. package/packages/_vue2/dist/src/functions/get-block-tag.d.ts +3 -0
  70. package/packages/_vue2/dist/src/functions/get-builder-search-params/index.d.ts +6 -0
  71. package/packages/_vue2/dist/src/functions/get-content/ab-testing.d.ts +5 -0
  72. package/packages/_vue2/dist/src/functions/get-content/index.d.ts +9 -0
  73. package/packages/_vue2/dist/src/functions/get-content/types.d.ts +31 -0
  74. package/packages/_vue2/dist/src/functions/get-fetch.d.ts +1 -0
  75. package/packages/_vue2/dist/src/functions/get-global-this.d.ts +1 -0
  76. package/packages/_vue2/dist/src/functions/get-processed-block.d.ts +10 -0
  77. package/packages/_vue2/dist/src/functions/is-browser.d.ts +1 -0
  78. package/packages/_vue2/dist/src/functions/is-editing.d.ts +1 -0
  79. package/packages/_vue2/dist/src/functions/is-iframe.d.ts +1 -0
  80. package/packages/_vue2/dist/src/functions/is-previewing.d.ts +1 -0
  81. package/packages/_vue2/dist/src/functions/mark-mutable.d.ts +2 -0
  82. package/packages/_vue2/dist/src/functions/register-component.d.ts +14 -0
  83. package/packages/_vue2/dist/src/functions/register.d.ts +16 -0
  84. package/packages/_vue2/dist/src/functions/set-editor-settings.d.ts +4 -0
  85. package/packages/_vue2/dist/src/functions/set.d.ts +7 -0
  86. package/packages/_vue2/dist/src/functions/track.d.ts +21 -0
  87. package/packages/_vue2/dist/src/functions/transform-block.d.ts +2 -0
  88. package/packages/_vue2/dist/src/helpers/ab-tests.d.ts +8 -0
  89. package/packages/_vue2/dist/src/helpers/cookie.d.ts +15 -0
  90. package/packages/_vue2/dist/src/helpers/css.d.ts +1 -0
  91. package/packages/_vue2/dist/src/helpers/flatten.d.ts +6 -0
  92. package/packages/_vue2/dist/src/helpers/localStorage.d.ts +8 -0
  93. package/packages/_vue2/dist/src/helpers/nullable.d.ts +2 -0
  94. package/packages/_vue2/dist/src/helpers/sessionId.d.ts +6 -0
  95. package/packages/_vue2/dist/src/helpers/url.d.ts +6 -0
  96. package/packages/_vue2/dist/src/helpers/uuid.d.ts +8 -0
  97. package/packages/_vue2/dist/src/helpers/visitorId.d.ts +6 -0
  98. package/packages/_vue2/dist/src/index-helpers/blocks-exports.d.ts +10 -0
  99. package/packages/_vue2/dist/src/index-helpers/top-of-file.d.ts +1 -0
  100. package/packages/_vue2/dist/src/index.d.ts +8 -0
  101. package/packages/_vue2/dist/src/scripts/init-editing.d.ts +2 -0
  102. package/packages/_vue2/dist/src/types/builder-block.d.ts +57 -0
  103. package/packages/_vue2/dist/src/types/builder-content.d.ts +38 -0
  104. package/packages/_vue2/dist/src/types/can-track.d.ts +3 -0
  105. package/packages/_vue2/dist/src/types/components.d.ts +177 -0
  106. package/packages/_vue2/dist/src/types/deep-partial.d.ts +3 -0
  107. package/packages/_vue2/dist/src/types/element.d.ts +59 -0
  108. package/packages/_vue2/dist/src/types/typescript.d.ts +5 -0
  109. package/packages/_vue2/dist/style.css +1 -1
  110. package/packages/_vue3/dist/block-styles.867fd8f0.js +69 -0
  111. package/packages/_vue3/dist/block-styles.b9355d79.cjs +10 -0
  112. package/packages/_vue3/dist/env.d.ts +1 -0
  113. package/packages/_vue3/dist/get-processed-block.4d9c7a48.cjs +1 -0
  114. package/packages/_vue3/dist/get-processed-block.77923ee6.js +40 -0
  115. package/packages/_vue3/dist/{index.fa54ce28.js → index.7b49e825.js} +36 -32
  116. package/packages/_vue3/dist/index.bbfd8c89.cjs +4 -0
  117. package/packages/_vue3/dist/render-block.1e996e4e.cjs +3 -0
  118. package/packages/_vue3/dist/render-block.3110fec0.js +243 -0
  119. package/packages/_vue3/dist/{render-component.c2e224cc.cjs → render-component.470525d5.cjs} +1 -1
  120. package/packages/_vue3/dist/{render-component.9668419b.js → render-component.7ca6729a.js} +3 -3
  121. package/packages/_vue3/dist/{render-inlined-styles.08569ffb.js → render-inlined-styles.0b1e087d.js} +1 -1
  122. package/packages/_vue3/dist/{render-inlined-styles.32f5f3bc.cjs → render-inlined-styles.56082955.cjs} +1 -1
  123. package/packages/_vue3/dist/{render-repeated-block.73309b84.js → render-repeated-block.0b974ccc.js} +2 -2
  124. package/packages/_vue3/dist/{render-repeated-block.8c10514d.cjs → render-repeated-block.10c41242.cjs} +1 -1
  125. package/packages/_vue3/dist/{render-styles.63eb2def.js → render-styles.65bace65.js} +2 -2
  126. package/packages/_vue3/dist/{render-styles.22ddc0bf.cjs → render-styles.d4412af2.cjs} +1 -1
  127. package/packages/_vue3/dist/sdk.cjs +1 -1
  128. package/packages/_vue3/dist/sdk.d.ts +1 -0
  129. package/packages/_vue3/dist/sdk.js +1 -1
  130. package/packages/_vue3/dist/src/blocks/button/button.vue.d.ts +11 -0
  131. package/packages/_vue3/dist/src/blocks/button/component-info.d.ts +2 -0
  132. package/packages/_vue3/dist/src/blocks/columns/columns.vue.d.ts +77 -0
  133. package/packages/_vue3/dist/src/blocks/columns/component-info.d.ts +2 -0
  134. package/packages/_vue3/dist/src/blocks/custom-code/component-info.d.ts +2 -0
  135. package/packages/_vue3/dist/src/blocks/custom-code/custom-code.vue.d.ts +18 -0
  136. package/packages/_vue3/dist/src/blocks/embed/component-info.d.ts +2 -0
  137. package/packages/_vue3/dist/src/blocks/embed/embed.vue.d.ts +22 -0
  138. package/packages/_vue3/dist/src/blocks/embed/helpers.d.ts +1 -0
  139. package/packages/_vue3/dist/src/blocks/fragment/component-info.d.ts +2 -0
  140. package/packages/_vue3/dist/src/blocks/fragment/fragment.vue.d.ts +10 -0
  141. package/packages/_vue3/dist/src/blocks/image/component-info.d.ts +2 -0
  142. package/packages/_vue3/dist/src/blocks/image/image.helpers.d.ts +1 -0
  143. package/packages/_vue3/dist/src/blocks/image/image.vue.d.ts +31 -0
  144. package/packages/_vue3/dist/src/blocks/img/component-info.d.ts +2 -0
  145. package/packages/_vue3/dist/src/blocks/img/img.vue.d.ts +17 -0
  146. package/packages/_vue3/dist/src/blocks/section/component-info.d.ts +2 -0
  147. package/packages/_vue3/dist/src/blocks/section/section.vue.d.ts +11 -0
  148. package/packages/_vue3/dist/src/blocks/symbol/component-info.d.ts +2 -0
  149. package/packages/_vue3/dist/src/blocks/symbol/symbol.vue.d.ts +167 -0
  150. package/packages/_vue3/dist/src/blocks/text/component-info.d.ts +2 -0
  151. package/packages/_vue3/dist/src/blocks/text/text.vue.d.ts +8 -0
  152. package/packages/_vue3/dist/src/blocks/util.d.ts +1 -0
  153. package/packages/_vue3/dist/src/blocks/video/component-info.d.ts +2 -0
  154. package/packages/_vue3/dist/src/blocks/video/video.vue.d.ts +24 -0
  155. package/packages/_vue3/dist/src/components/render-block/block-styles.vue.d.ts +31 -0
  156. package/packages/_vue3/dist/src/components/render-block/render-block.helpers.d.ts +1 -0
  157. package/packages/_vue3/dist/src/components/render-block/render-block.vue.d.ts +8 -0
  158. package/packages/_vue3/dist/src/components/render-block/render-component.vue.d.ts +10 -0
  159. package/packages/_vue3/dist/src/components/render-block/render-repeated-block.vue.d.ts +17 -0
  160. package/packages/_vue3/dist/src/components/render-block/types.d.ts +6 -0
  161. package/packages/_vue3/dist/src/components/render-blocks.vue.d.ts +49 -0
  162. package/packages/_vue3/dist/src/components/render-content/components/render-styles.vue.d.ts +27 -0
  163. package/packages/_vue3/dist/src/components/render-content/render-content.vue.d.ts +139 -0
  164. package/packages/_vue3/dist/src/components/render-inlined-styles.vue.d.ts +12 -0
  165. package/packages/_vue3/dist/src/constants/builder-registered-components.d.ts +6 -0
  166. package/packages/_vue3/dist/src/constants/device-sizes.d.ts +2 -0
  167. package/packages/_vue3/dist/src/constants/target.d.ts +2 -0
  168. package/packages/_vue3/dist/src/context/builder.context.d.ts +2 -0
  169. package/packages/_vue3/dist/src/context/types.d.ts +16 -0
  170. package/packages/_vue3/dist/src/functions/camel-to-kebab-case.d.ts +1 -0
  171. package/packages/_vue3/dist/src/functions/evaluate.d.ts +5 -0
  172. package/packages/_vue3/dist/src/functions/event-handler-name.d.ts +1 -0
  173. package/packages/_vue3/dist/src/functions/get-block-actions-handler.d.ts +5 -0
  174. package/packages/_vue3/dist/src/functions/get-block-actions.d.ts +9 -0
  175. package/packages/_vue3/dist/src/functions/get-block-component-options.d.ts +2 -0
  176. package/packages/_vue3/dist/src/functions/get-block-properties.d.ts +5 -0
  177. package/packages/_vue3/dist/src/functions/get-block-styles.d.ts +1 -0
  178. package/packages/_vue3/dist/src/functions/get-block-tag.d.ts +3 -0
  179. package/packages/_vue3/dist/src/functions/get-builder-search-params/index.d.ts +6 -0
  180. package/packages/_vue3/dist/src/functions/get-content/ab-testing.d.ts +5 -0
  181. package/packages/_vue3/dist/src/functions/get-content/index.d.ts +9 -0
  182. package/packages/_vue3/dist/src/functions/get-content/types.d.ts +31 -0
  183. package/packages/_vue3/dist/src/functions/get-fetch.d.ts +1 -0
  184. package/packages/_vue3/dist/src/functions/get-global-this.d.ts +1 -0
  185. package/packages/_vue3/dist/src/functions/get-processed-block.d.ts +10 -0
  186. package/packages/_vue3/dist/src/functions/is-browser.d.ts +1 -0
  187. package/packages/_vue3/dist/src/functions/is-editing.d.ts +1 -0
  188. package/packages/_vue3/dist/src/functions/is-iframe.d.ts +1 -0
  189. package/packages/_vue3/dist/src/functions/is-previewing.d.ts +1 -0
  190. package/packages/_vue3/dist/src/functions/mark-mutable.d.ts +2 -0
  191. package/packages/_vue3/dist/src/functions/register-component.d.ts +14 -0
  192. package/packages/_vue3/dist/src/functions/register.d.ts +16 -0
  193. package/packages/_vue3/dist/src/functions/set-editor-settings.d.ts +4 -0
  194. package/packages/_vue3/dist/src/functions/set.d.ts +7 -0
  195. package/packages/_vue3/dist/src/functions/track.d.ts +21 -0
  196. package/packages/_vue3/dist/src/functions/transform-block.d.ts +2 -0
  197. package/packages/_vue3/dist/src/helpers/ab-tests.d.ts +8 -0
  198. package/packages/_vue3/dist/src/helpers/cookie.d.ts +15 -0
  199. package/packages/_vue3/dist/src/helpers/css.d.ts +1 -0
  200. package/packages/_vue3/dist/src/helpers/flatten.d.ts +6 -0
  201. package/packages/_vue3/dist/src/helpers/localStorage.d.ts +8 -0
  202. package/packages/_vue3/dist/src/helpers/nullable.d.ts +2 -0
  203. package/packages/_vue3/dist/src/helpers/sessionId.d.ts +6 -0
  204. package/packages/_vue3/dist/src/helpers/url.d.ts +6 -0
  205. package/packages/_vue3/dist/src/helpers/uuid.d.ts +8 -0
  206. package/packages/_vue3/dist/src/helpers/visitorId.d.ts +6 -0
  207. package/packages/_vue3/dist/src/index-helpers/blocks-exports.d.ts +10 -0
  208. package/packages/_vue3/dist/src/index-helpers/top-of-file.d.ts +1 -0
  209. package/packages/_vue3/dist/src/index.d.ts +8 -0
  210. package/packages/_vue3/dist/src/scripts/init-editing.d.ts +2 -0
  211. package/packages/_vue3/dist/src/types/builder-block.d.ts +57 -0
  212. package/packages/_vue3/dist/src/types/builder-content.d.ts +38 -0
  213. package/packages/_vue3/dist/src/types/can-track.d.ts +3 -0
  214. package/packages/_vue3/dist/src/types/components.d.ts +177 -0
  215. package/packages/_vue3/dist/src/types/deep-partial.d.ts +3 -0
  216. package/packages/_vue3/dist/src/types/element.d.ts +59 -0
  217. package/packages/_vue3/dist/src/types/typescript.d.ts +5 -0
  218. package/packages/_vue3/dist/style.css +1 -1
  219. package/packages/_vue2/dist/block-styles.d7caff48.cjs +0 -10
  220. package/packages/_vue2/dist/get-processed-block.1b0392ce.js +0 -57
  221. package/packages/_vue2/dist/get-processed-block.a69f90d1.cjs +0 -1
  222. package/packages/_vue2/dist/index.e881a81c.cjs +0 -4
  223. package/packages/_vue2/dist/render-block.37a4bbe9.cjs +0 -3
  224. package/packages/_vue3/dist/block-styles.13caf8d7.js +0 -53
  225. package/packages/_vue3/dist/block-styles.8cb7f734.cjs +0 -10
  226. package/packages/_vue3/dist/get-processed-block.15d39b53.cjs +0 -1
  227. package/packages/_vue3/dist/get-processed-block.bebdc794.js +0 -57
  228. package/packages/_vue3/dist/index.f58628dd.cjs +0 -4
  229. package/packages/_vue3/dist/render-block.23c16bfb.cjs +0 -3
  230. package/packages/_vue3/dist/render-block.9c550b26.js +0 -253
@@ -1,11 +1,11 @@
1
- const _ = "reactNative";
2
- function u() {
1
+ const _ = "vue2";
2
+ function d() {
3
3
  return typeof window < "u" && typeof document < "u";
4
4
  }
5
- const k = {};
6
- function H(t, e) {
7
- let n = k[t];
8
- if (n || (n = k[t] = []), n.push(e), u()) {
5
+ const w = {};
6
+ function z(t, e) {
7
+ let n = w[t];
8
+ if (n || (n = w[t] = []), n.push(e), d()) {
9
9
  const o = {
10
10
  type: "builder.register",
11
11
  data: {
@@ -21,19 +21,23 @@ function H(t, e) {
21
21
  }
22
22
  }
23
23
  const q = () => {
24
- H("insertMenu", {
24
+ z("insertMenu", {
25
25
  name: "_default",
26
26
  default: !0,
27
27
  items: [
28
28
  { name: "Box" },
29
29
  { name: "Text" },
30
30
  { name: "Image" },
31
- { name: "Columns" }
31
+ { name: "Columns" },
32
+ { name: "Core:Section" },
33
+ { name: "Core:Button" },
34
+ { name: "Embed" },
35
+ { name: "Custom Code" }
32
36
  ]
33
37
  });
34
38
  }, D = () => {
35
39
  var t;
36
- u() && ((t = window.parent) == null || t.postMessage(
40
+ d() && ((t = window.parent) == null || t.postMessage(
37
41
  {
38
42
  type: "builder.sdkInfo",
39
43
  data: {
@@ -51,8 +55,8 @@ const q = () => {
51
55
  let i, l = null;
52
56
  try {
53
57
  i = c.apply(null, r);
54
- } catch (d) {
55
- l = d;
58
+ } catch (u) {
59
+ l = u;
56
60
  }
57
61
  l ? (n = window.parent) == null || n.postMessage(
58
62
  {
@@ -60,12 +64,12 @@ const q = () => {
60
64
  data: { id: a, error: l.message }
61
65
  },
62
66
  "*"
63
- ) : i && typeof i.then == "function" ? i.then((d) => {
64
- var h;
65
- (h = window.parent) == null || h.postMessage(
67
+ ) : i && typeof i.then == "function" ? i.then((u) => {
68
+ var f;
69
+ (f = window.parent) == null || f.postMessage(
66
70
  {
67
71
  type: "builder.evaluateResult",
68
- data: { id: a, result: d }
72
+ data: { id: a, result: u }
69
73
  },
70
74
  "*"
71
75
  );
@@ -156,13 +160,13 @@ function p(t, e, n, o, s, r, a, c) {
156
160
  } : s), l)
157
161
  if (i.functional) {
158
162
  i._injectStyles = l;
159
- var d = i.render;
160
- i.render = function(z, C) {
161
- return l.call(C), d(z, C);
163
+ var u = i.render;
164
+ i.render = function(H, C) {
165
+ return l.call(C), u(H, C);
162
166
  };
163
167
  } else {
164
- var h = i.beforeCreate;
165
- i.beforeCreate = h ? [].concat(h, l) : [l];
168
+ var f = i.beforeCreate;
169
+ i.beforeCreate = f ? [].concat(f, l) : [l];
166
170
  }
167
171
  return {
168
172
  exports: t,
@@ -171,8 +175,8 @@ function p(t, e, n, o, s, r, a, c) {
171
175
  }
172
176
  var G = function() {
173
177
  var e = this, n = e._self._c;
174
- return n("div", { staticClass: "builder-columns div-2fnk003dqad", style: e.columnsCssVars }, e._l(e.columns, function(o, s) {
175
- return n("div", { key: s, staticClass: "builder-column div-2fnk003dqad-2", style: {
178
+ return n("div", { staticClass: "builder-columns div-20351ewpue7", style: e.columnsCssVars }, e._l(e.columns, function(o, s) {
179
+ return n("div", { key: s, staticClass: "builder-column div-20351ewpue7-2", style: {
176
180
  width: e.getColumnCssWidth(s),
177
181
  marginLeft: `${s === 0 ? 0 : e.getGutterSize()}px`,
178
182
  ...e.columnCssVars
@@ -184,12 +188,12 @@ var G = function() {
184
188
  X,
185
189
  !1,
186
190
  null,
187
- "d3bc5674",
191
+ "074f8045",
188
192
  null,
189
193
  null
190
194
  );
191
195
  const Q = Y.exports;
192
- function w(t) {
196
+ function k(t) {
193
197
  return t.replace(/http(s)?:/, "");
194
198
  }
195
199
  function Z(t = "", e, n) {
@@ -200,13 +204,13 @@ function ee(t, e) {
200
204
  if (!t || !(t != null && t.match(/cdn\.shopify\.com/)) || !e)
201
205
  return t;
202
206
  if (e === "master")
203
- return w(t);
207
+ return k(t);
204
208
  const n = t.match(
205
209
  /(_\d+x(\d+)?)?(\.(jpg|jpeg|gif|png|bmp|bitmap|tiff|tif)(\?v=\d+)?)/i
206
210
  );
207
211
  if (n) {
208
212
  const o = t.split(n[0]), s = n[3], r = e.match("x") ? e : `${e}x`;
209
- return w(`${o[0]}_${r}${s}`);
213
+ return k(`${o[0]}_${r}${s}`);
210
214
  }
211
215
  return null;
212
216
  }
@@ -269,21 +273,21 @@ const te = {
269
273
  var ne = function() {
270
274
  var o, s, r, a;
271
275
  var e = this, n = e._self._c;
272
- return n("div", { staticClass: "div-1pl23ac79ld" }, [n("picture", [e.webpSrcSet ? [n("source", { attrs: { type: "image/webp", srcset: e.webpSrcSet } })] : e._e(), n("img", { class: e._classStringToObject(
273
- "builder-image" + (e.className ? " " + e.className : "") + " img-1pl23ac79ld"
276
+ return n("div", { staticClass: "div-1ifnufbde19" }, [n("picture", [e.webpSrcSet ? [n("source", { attrs: { type: "image/webp", srcset: e.webpSrcSet } })] : e._e(), n("img", { class: e._classStringToObject(
277
+ "builder-image" + (e.className ? " " + e.className : "") + " img-1ifnufbde19"
274
278
  ), style: {
275
279
  objectPosition: e.backgroundSize || "center",
276
280
  objectFit: e.backgroundSize || "cover"
277
- }, attrs: { loading: "lazy", alt: e.altText, role: e.altText ? "presentation" : void 0, src: e.image, srcset: e.srcSetToUse, sizes: e.sizes } }), n("source", { attrs: { srcset: e.srcSetToUse } })], 2), e.aspectRatio && !(e.fitContent && ((s = (o = e.builderBlock) == null ? void 0 : o.children) == null ? void 0 : s.length)) ? [n("div", { staticClass: "builder-image-sizer div-1pl23ac79ld-2", style: {
281
+ }, attrs: { loading: "lazy", alt: e.altText, role: e.altText ? "presentation" : void 0, src: e.image, srcset: e.srcSetToUse, sizes: e.sizes } }), n("source", { attrs: { srcset: e.srcSetToUse } })], 2), e.aspectRatio && !(e.fitContent && ((s = (o = e.builderBlock) == null ? void 0 : o.children) == null ? void 0 : s.length)) ? [n("div", { staticClass: "builder-image-sizer div-1ifnufbde19-2", style: {
278
282
  paddingTop: e.aspectRatio * 100 + "%"
279
- } })] : e._e(), ((a = (r = e.builderBlock) == null ? void 0 : r.children) == null ? void 0 : a.length) && e.fitContent ? [e._t("default")] : e._e(), e.fitContent ? e._e() : [n("div", { staticClass: "div-1pl23ac79ld-3" }, [e._t("default")], 2)]], 2);
283
+ } })] : e._e(), ((a = (r = e.builderBlock) == null ? void 0 : r.children) == null ? void 0 : a.length) && e.fitContent ? [e._t("default")] : e._e(), e.fitContent ? e._e() : [n("div", { staticClass: "div-1ifnufbde19-3" }, [e._t("default")], 2)]], 2);
280
284
  }, oe = [], se = /* @__PURE__ */ p(
281
285
  te,
282
286
  ne,
283
287
  oe,
284
288
  !1,
285
289
  null,
286
- "6a74cb4f",
290
+ "9208289b",
287
291
  null,
288
292
  null
289
293
  );
@@ -304,7 +308,7 @@ var ie = function() {
304
308
  null,
305
309
  null
306
310
  );
307
- const de = le.exports, ue = {
311
+ const ue = le.exports, de = {
308
312
  name: "builder-video",
309
313
  props: [
310
314
  "autoPlay",
@@ -351,8 +355,8 @@ var pe = function() {
351
355
  objectPosition: e.position,
352
356
  borderRadius: 1
353
357
  }, attrs: { src: e.video || "no-src", poster: e.posterImage } }, "video", e.videoProps, !1));
354
- }, me = [], he = /* @__PURE__ */ p(
355
- ue,
358
+ }, me = [], fe = /* @__PURE__ */ p(
359
+ de,
356
360
  pe,
357
361
  me,
358
362
  !1,
@@ -361,7 +365,7 @@ var pe = function() {
361
365
  null,
362
366
  null
363
367
  );
364
- const fe = he.exports;
368
+ const he = fe.exports;
365
369
  function v(t, e = null, n = ".") {
366
370
  return Object.keys(t).reduce((o, s) => {
367
371
  const r = t[s], a = [e, s].filter(Boolean).join(n);
@@ -380,7 +384,7 @@ const S = "builder.", ge = (t) => {
380
384
  }, be = (t) => {
381
385
  if (!t)
382
386
  return {};
383
- const e = F(t), n = {};
387
+ const e = E(t), n = {};
384
388
  return Object.keys(e).forEach((o) => {
385
389
  if (o.startsWith(S)) {
386
390
  const s = o.replace(S, "");
@@ -388,15 +392,15 @@ const S = "builder.", ge = (t) => {
388
392
  }
389
393
  }), n;
390
394
  }, ve = () => {
391
- if (!u())
395
+ if (!d())
392
396
  return {};
393
397
  const t = new URLSearchParams(window.location.search);
394
398
  return be(t);
395
- }, F = (t) => t instanceof URLSearchParams ? ge(t) : t;
399
+ }, E = (t) => t instanceof URLSearchParams ? ge(t) : t;
396
400
  function _e() {
397
401
  return typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : null;
398
402
  }
399
- async function E() {
403
+ async function F() {
400
404
  const t = _e().fetch;
401
405
  if (typeof t > "u" && typeof global < "u") {
402
406
  const e = import("node-fetch").then((n) => n.default);
@@ -420,12 +424,12 @@ const ye = (t) => {
420
424
  }, xe = (t) => t.map(([e, n]) => n ? `${e}=${n}` : e).join("; "), Ce = [
421
425
  ["secure", ""],
422
426
  ["SameSite", "None"]
423
- ], ke = ({
427
+ ], we = ({
424
428
  name: t,
425
429
  value: e,
426
430
  expires: n
427
431
  }) => {
428
- const s = (u() ? location.protocol === "https:" : !0) ? Ce : [[]], r = n ? [["expires", n.toUTCString()]] : [[]], a = [
432
+ const s = (d() ? location.protocol === "https:" : !0) ? Ce : [[]], r = n ? [["expires", n.toUTCString()]] : [[]], a = [
429
433
  [t, e],
430
434
  ...r,
431
435
  ["path", "/"],
@@ -442,12 +446,12 @@ const ye = (t) => {
442
446
  try {
443
447
  if (!o)
444
448
  return;
445
- const s = ke({ name: t, value: e, expires: n });
449
+ const s = we({ name: t, value: e, expires: n });
446
450
  document.cookie = s;
447
451
  } catch (s) {
448
452
  console.warn("[COOKIE] SET error: ", s);
449
453
  }
450
- }, we = "builderio.variations", V = (t) => `${we}.${t}`, Se = ({
454
+ }, ke = "builderio.variations", V = (t) => `${ke}.${t}`, Se = ({
451
455
  contentId: t,
452
456
  canTrack: e
453
457
  }) => j({ name: V(t), canTrack: e }), Ie = ({
@@ -501,7 +505,7 @@ const ye = (t) => {
501
505
  console.error("could not store A/B test variation: ", r);
502
506
  }), I({ item: t, testGroupId: s });
503
507
  }
504
- }, Fe = async ({
508
+ }, Ee = async ({
505
509
  item: t,
506
510
  canTrack: e
507
511
  }) => {
@@ -513,7 +517,7 @@ const ye = (t) => {
513
517
  async function A(t) {
514
518
  return (await je({ ...t, limit: 1 })).results[0] || null;
515
519
  }
516
- const Ee = (t) => {
520
+ const Fe = (t) => {
517
521
  const {
518
522
  limit: e = 30,
519
523
  userAttributes: n,
@@ -525,24 +529,24 @@ const Ee = (t) => {
525
529
  `https://cdn.builder.io/api/v2/content/${r}?apiKey=${a}&limit=${e}&noTraverse=${s}`
526
530
  ), i = {
527
531
  ...ve(),
528
- ...F(t.options || {})
532
+ ...E(t.options || {})
529
533
  }, l = v(i);
530
- for (const d in l)
531
- c.searchParams.set(d, String(l[d]));
534
+ for (const u in l)
535
+ c.searchParams.set(u, String(l[u]));
532
536
  if (n && c.searchParams.set("userAttributes", JSON.stringify(n)), o) {
533
- const d = v({ query: o });
534
- for (const h in d)
535
- c.searchParams.set(h, JSON.stringify(d[h]));
537
+ const u = v({ query: o });
538
+ for (const f in u)
539
+ c.searchParams.set(f, JSON.stringify(u[f]));
536
540
  }
537
541
  return c;
538
542
  };
539
543
  async function je(t) {
540
- const e = Ee(t), o = await (await E())(e.href).then(
544
+ const e = Fe(t), o = await (await F())(e.href).then(
541
545
  (r) => r.json()
542
546
  ), s = t.canTrack !== !1;
543
547
  if (s)
544
548
  for (const r of o.results)
545
- await Fe({ item: r, canTrack: s });
549
+ await Ee({ item: r, canTrack: s });
546
550
  return o;
547
551
  }
548
552
  const Ue = () => Promise.resolve().then(() => Zt).then((t) => t.default).catch((t) => {
@@ -622,18 +626,18 @@ const We = Pe.exports, Be = {
622
626
  };
623
627
  var Le = function() {
624
628
  var e = this, n = e._self._c;
625
- return e.link ? n("a", e._b({ attrs: { role: "button", href: e.link, target: e.openLinkInNewTab ? "_blank" : void 0 } }, "a", e.attributes, !1), [e._v(" " + e._s(e.text) + " ")]) : n("button", e._b({ staticClass: "button-16nol0lwi20" }, "button", e.attributes, !1), [e._v(" " + e._s(e.text) + " ")]);
629
+ return e.link ? n("a", e._b({ attrs: { role: "button", href: e.link, target: e.openLinkInNewTab ? "_blank" : void 0 } }, "a", e.attributes, !1), [e._v(" " + e._s(e.text) + " ")]) : n("button", e._b({ staticClass: "button-4wbls88y960" }, "button", e.attributes, !1), [e._v(" " + e._s(e.text) + " ")]);
626
630
  }, Me = [], Ne = /* @__PURE__ */ p(
627
631
  Be,
628
632
  Le,
629
633
  Me,
630
634
  !1,
631
635
  null,
632
- "844ae72b",
636
+ "e55cf307",
633
637
  null,
634
638
  null
635
639
  );
636
- const ze = Ne.exports, He = {
640
+ const He = Ne.exports, ze = {
637
641
  name: "builder-section-component",
638
642
  props: ["attributes", "maxWidth"]
639
643
  };
@@ -643,7 +647,7 @@ var qe = function() {
643
647
  maxWidth: e.maxWidth
644
648
  } : void 0 }, "section", e.attributes, !1), [e._t("default")], 2);
645
649
  }, De = [], Ke = /* @__PURE__ */ p(
646
- He,
650
+ ze,
647
651
  qe,
648
652
  De,
649
653
  !1,
@@ -966,14 +970,14 @@ const tt = {
966
970
  t.delete("srcset"), t.delete("noWebp");
967
971
  function n(a, c = 6e4) {
968
972
  return new Promise((i, l) => {
969
- const d = document.createElement("img");
970
- let h = !1;
971
- d.onload = () => {
972
- h = !0, i(d);
973
- }, d.addEventListener("error", (m) => {
973
+ const u = document.createElement("img");
974
+ let f = !1;
975
+ u.onload = () => {
976
+ f = !0, i(u);
977
+ }, u.addEventListener("error", (m) => {
974
978
  console.warn("Image load failed", m.error), l(m.error);
975
- }), d.src = a, setTimeout(() => {
976
- h || l(new Error("Image load timed out"));
979
+ }), u.src = a, setTimeout(() => {
980
+ f || l(new Error("Image load timed out"));
977
981
  }, c);
978
982
  });
979
983
  }
@@ -1312,7 +1316,7 @@ const tt = {
1312
1316
  "text/javascript",
1313
1317
  "application/javascript",
1314
1318
  "application/ecmascript"
1315
- ], dt = (t) => lt.includes(t.type), ut = {
1319
+ ], ut = (t) => lt.includes(t.type), dt = {
1316
1320
  name: "builder-embed",
1317
1321
  props: ["content"],
1318
1322
  data: () => ({ scriptsInserted: [], scriptsRun: [], ranInitFn: !1 }),
@@ -1340,7 +1344,7 @@ const tt = {
1340
1344
  this.scriptsInserted.push(n.src);
1341
1345
  const o = document.createElement("script");
1342
1346
  o.async = !0, o.src = n.src, document.head.appendChild(o);
1343
- } else if (dt(n) && !this.scriptsRun.includes(n.innerText))
1347
+ } else if (ut(n) && !this.scriptsRun.includes(n.innerText))
1344
1348
  try {
1345
1349
  this.scriptsRun.push(n.innerText), new Function(n.innerText)();
1346
1350
  } catch (o) {
@@ -1353,8 +1357,8 @@ const tt = {
1353
1357
  var pt = function() {
1354
1358
  var e = this, n = e._self._c;
1355
1359
  return n("div", { ref: "elem", staticClass: "builder-embed", domProps: { innerHTML: e._s(e.content) } });
1356
- }, mt = [], ht = /* @__PURE__ */ p(
1357
- ut,
1360
+ }, mt = [], ft = /* @__PURE__ */ p(
1361
+ dt,
1358
1362
  pt,
1359
1363
  mt,
1360
1364
  !1,
@@ -1363,11 +1367,11 @@ var pt = function() {
1363
1367
  null,
1364
1368
  null
1365
1369
  );
1366
- const ft = ht.exports;
1370
+ const ht = ft.exports;
1367
1371
  function gt() {
1368
- return u() && window.self !== window.top;
1372
+ return d() && window.self !== window.top;
1369
1373
  }
1370
- function f() {
1374
+ function h() {
1371
1375
  return gt() && window.location.search.indexOf("builder.frameEditing=") !== -1;
1372
1376
  }
1373
1377
  const bt = {
@@ -1380,7 +1384,7 @@ const bt = {
1380
1384
  "image",
1381
1385
  "attributes"
1382
1386
  ],
1383
- data: () => ({ isEditing: f })
1387
+ data: () => ({ isEditing: h })
1384
1388
  };
1385
1389
  var vt = function() {
1386
1390
  var e = this, n = e._self._c;
@@ -1414,7 +1418,7 @@ const xt = yt.exports, Ct = {
1414
1418
  ],
1415
1419
  noWrap: !0,
1416
1420
  static: !0
1417
- }, kt = {
1421
+ }, wt = {
1418
1422
  name: "builder-custom-code",
1419
1423
  props: ["replaceNodes", "code"],
1420
1424
  data: () => ({ scriptsInserted: [], scriptsRun: [] }),
@@ -1460,14 +1464,14 @@ const xt = yt.exports, Ct = {
1460
1464
  }
1461
1465
  }
1462
1466
  };
1463
- var wt = function() {
1467
+ var kt = function() {
1464
1468
  var e = this, n = e._self._c;
1465
1469
  return n("div", { ref: "elem", class: e._classStringToObject(
1466
1470
  "builder-custom-code" + (e.replaceNodes ? " replace-nodes" : "")
1467
1471
  ), domProps: { innerHTML: e._s(e.code) } });
1468
1472
  }, St = [], It = /* @__PURE__ */ p(
1469
- kt,
1470
1473
  wt,
1474
+ kt,
1471
1475
  St,
1472
1476
  !1,
1473
1477
  null,
@@ -1506,13 +1510,13 @@ const Tt = It.exports, Rt = {
1506
1510
  { component: Q, ...tt },
1507
1511
  { component: re, ...ot },
1508
1512
  { component: xt, ...Ct },
1509
- { component: de, ...at },
1510
- { component: fe, ...it },
1513
+ { component: ue, ...at },
1514
+ { component: he, ...it },
1511
1515
  { component: We, ...rt },
1512
- { component: ze, ...et },
1516
+ { component: He, ...et },
1513
1517
  { component: Je, ...st },
1514
1518
  { component: Ze, ...nt },
1515
- { component: ft, ...ct },
1519
+ { component: ht, ...ct },
1516
1520
  { component: Tt, ...Rt }
1517
1521
  ];
1518
1522
  function T({
@@ -1526,9 +1530,9 @@ function T({
1526
1530
  return;
1527
1531
  }
1528
1532
  const s = {
1529
- isEditing: f(),
1530
- isBrowser: u(),
1531
- isServer: !u()
1533
+ isEditing: h(),
1534
+ isBrowser: d(),
1535
+ isServer: !d()
1532
1536
  }, a = !(t.includes(";") || t.includes(" return ") || t.trim().startsWith("return ")) ? `return (${t});` : t;
1533
1537
  try {
1534
1538
  return new Function(
@@ -1551,8 +1555,8 @@ function T({
1551
1555
  );
1552
1556
  }
1553
1557
  }
1554
- function Ft() {
1555
- return !u() || f() ? !1 : Boolean(location.search.indexOf("builder.preview=") !== -1);
1558
+ function Et() {
1559
+ return !d() || h() ? !1 : Boolean(location.search.indexOf("builder.preview=") !== -1);
1556
1560
  }
1557
1561
  const O = [];
1558
1562
  function ln(t, e) {
@@ -1560,7 +1564,7 @@ function ln(t, e) {
1560
1564
  "registerComponent is deprecated. Use the `customComponents` prop in RenderContent instead to provide your custom components to the builder SDK."
1561
1565
  ), t;
1562
1566
  }
1563
- const Et = ({
1567
+ const Ft = ({
1564
1568
  component: t,
1565
1569
  ...e
1566
1570
  }) => ({
@@ -1609,7 +1613,7 @@ const B = "builderSessionId", Ot = async ({ canTrack: t }) => {
1609
1613
  }, Pt = () => W(), Wt = ({
1610
1614
  id: t,
1611
1615
  canTrack: e
1612
- }) => U({ name: B, value: t, canTrack: e }), L = () => u() && typeof localStorage < "u" ? localStorage : void 0, Bt = ({
1616
+ }) => U({ name: B, value: t, canTrack: e }), L = () => d() && typeof localStorage < "u" ? localStorage : void 0, Bt = ({
1613
1617
  key: t,
1614
1618
  canTrack: e
1615
1619
  }) => {
@@ -1641,16 +1645,16 @@ const B = "builderSessionId", Ot = async ({ canTrack: t }) => {
1641
1645
  return e;
1642
1646
  {
1643
1647
  const n = Nt();
1644
- zt({ id: n, canTrack: t });
1648
+ Ht({ id: n, canTrack: t });
1645
1649
  }
1646
- }, Nt = () => W(), zt = ({
1650
+ }, Nt = () => W(), Ht = ({
1647
1651
  id: t,
1648
1652
  canTrack: e
1649
1653
  }) => Lt({
1650
1654
  key: M,
1651
1655
  value: t,
1652
1656
  canTrack: e
1653
- }), Ht = async ({
1657
+ }), zt = async ({
1654
1658
  canTrack: t
1655
1659
  }) => {
1656
1660
  if (!t)
@@ -1670,13 +1674,13 @@ const B = "builderSessionId", Ot = async ({ canTrack: t }) => {
1670
1674
  type: t,
1671
1675
  data: {
1672
1676
  ...s,
1673
- ...await Ht({ canTrack: e }),
1677
+ ...await zt({ canTrack: e }),
1674
1678
  ownerId: n,
1675
1679
  contentId: o
1676
1680
  }
1677
1681
  });
1678
1682
  async function R(t) {
1679
- if (!!t.canTrack && !f() && !!(u() || _ === "reactNative"))
1683
+ if (!!t.canTrack && !h() && !!(d() || _ === "reactNative"))
1680
1684
  return fetch("https://builder.io/api/v1/track", {
1681
1685
  method: "POST",
1682
1686
  body: JSON.stringify({
@@ -1695,7 +1699,7 @@ const Dt = () => Promise.resolve().then(() => N).then((t) => t.default).catch((t
1695
1699
  "Error while attempting to dynamically import component RenderBlocks at ../render-blocks.vue",
1696
1700
  t
1697
1701
  ), t;
1698
- }), Kt = () => import("./render-styles.90704267.js").then((t) => t.default).catch((t) => {
1702
+ }), Kt = () => import("./render-styles.cd30abd1.js").then((t) => t.default).catch((t) => {
1699
1703
  throw console.error(
1700
1704
  "Error while attempting to dynamically import component RenderContentStyles at ./components/render-styles.vue",
1701
1705
  t
@@ -1746,11 +1750,11 @@ const Dt = () => Promise.resolve().then(() => N).then((t) => t.default).catch((t
1746
1750
  },
1747
1751
  mounted() {
1748
1752
  var t;
1749
- if (u()) {
1750
- if (f() && (this.forceReRenderCount = this.forceReRenderCount + 1, q(), D(), Object.values(this.allRegisteredComponents).forEach(
1753
+ if (d()) {
1754
+ if (h() && (this.forceReRenderCount = this.forceReRenderCount + 1, q(), D(), Object.values(this.allRegisteredComponents).forEach(
1751
1755
  (e) => {
1752
1756
  var o;
1753
- const n = Et(e);
1757
+ const n = Ft(e);
1754
1758
  (o = window.parent) == null || o.postMessage(n, "*");
1755
1759
  }
1756
1760
  ), window.addEventListener("message", this.processMessage), window.addEventListener(
@@ -1761,7 +1765,7 @@ const Dt = () => Promise.resolve().then(() => N).then((t) => t.default).catch((t
1761
1765
  canTrack: this.canTrackToUse,
1762
1766
  contentId: (t = this.useContent) == null ? void 0 : t.id,
1763
1767
  orgId: this.apiKey
1764
- }), Ft()) {
1768
+ }), Et()) {
1765
1769
  const e = new URL(location.href).searchParams;
1766
1770
  if (this.model && e.get("builder.preview") === this.model) {
1767
1771
  const n = e.get("apiKey") || e.get("builder.space");
@@ -1788,7 +1792,7 @@ const Dt = () => Promise.resolve().then(() => N).then((t) => t.default).catch((t
1788
1792
  }
1789
1793
  },
1790
1794
  unmounted() {
1791
- u() && (window.removeEventListener("message", this.processMessage), window.removeEventListener(
1795
+ d() && (window.removeEventListener("message", this.processMessage), window.removeEventListener(
1792
1796
  "builder:component:stateChangeListenerActivated",
1793
1797
  this.emitStateUpdate
1794
1798
  ));
@@ -1898,7 +1902,7 @@ const Dt = () => Promise.resolve().then(() => N).then((t) => t.default).catch((t
1898
1902
  );
1899
1903
  },
1900
1904
  handleRequest({ url: t, key: e }) {
1901
- E().then((n) => n(t)).then((n) => n.json()).then((n) => {
1905
+ F().then((n) => n(t)).then((n) => n.json()).then((n) => {
1902
1906
  const o = { ...this.overrideState, [e]: n };
1903
1907
  this.overrideState = o;
1904
1908
  }).catch((n) => {
@@ -1909,7 +1913,7 @@ const Dt = () => Promise.resolve().then(() => N).then((t) => t.default).catch((t
1909
1913
  var e, n, o;
1910
1914
  const t = (o = (n = (e = this.useContent) == null ? void 0 : e.data) == null ? void 0 : n.httpRequests) != null ? o : {};
1911
1915
  Object.entries(t).forEach(([s, r]) => {
1912
- if (r && (!this.httpReqsData[s] || f())) {
1916
+ if (r && (!this.httpReqsData[s] || h())) {
1913
1917
  const a = this.evalExpression(r);
1914
1918
  this.handleRequest({
1915
1919
  url: a,
@@ -1919,7 +1923,7 @@ const Dt = () => Promise.resolve().then(() => N).then((t) => t.default).catch((t
1919
1923
  });
1920
1924
  },
1921
1925
  emitStateUpdate() {
1922
- f() && window.dispatchEvent(
1926
+ h() && window.dispatchEvent(
1923
1927
  new CustomEvent("builder:component:stateChange", {
1924
1928
  detail: {
1925
1929
  state: this.contentState,
@@ -1935,8 +1939,8 @@ const Dt = () => Promise.resolve().then(() => N).then((t) => t.default).catch((t
1935
1939
  var Gt = function() {
1936
1940
  var o, s, r, a, c, i, l;
1937
1941
  var e = this, n = e._self._c;
1938
- return e.useContent ? n("div", { ref: "elementRef", attrs: { "builder-content-id": (o = e.useContent) == null ? void 0 : o.id }, on: { click: function(d) {
1939
- return e.onClick(d);
1942
+ return e.useContent ? n("div", { ref: "elementRef", attrs: { "builder-content-id": (o = e.useContent) == null ? void 0 : o.id }, on: { click: function(u) {
1943
+ return e.onClick(u);
1940
1944
  } } }, [e.shouldRenderContentStyles ? [n("render-content-styles", { attrs: { cssCode: (r = (s = e.useContent) == null ? void 0 : s.data) == null ? void 0 : r.cssCode, customFonts: (c = (a = e.useContent) == null ? void 0 : a.data) == null ? void 0 : c.customFonts } })] : e._e(), n("render-blocks", { key: e.forceReRenderCount, attrs: { blocks: e.markMutable((l = (i = e.useContent) == null ? void 0 : i.data) == null ? void 0 : l.blocks) } })], 2) : e._e();
1941
1945
  }, Xt = [], Yt = /* @__PURE__ */ p(
1942
1946
  Jt,
@@ -1951,12 +1955,12 @@ var Gt = function() {
1951
1955
  const Qt = Yt.exports, Zt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1952
1956
  __proto__: null,
1953
1957
  default: Qt
1954
- }, Symbol.toStringTag, { value: "Module" })), en = () => import("./block-styles.4b780e2e.js").then((t) => t.default).catch((t) => {
1958
+ }, Symbol.toStringTag, { value: "Module" })), en = () => import("./block-styles.a3384cd8.js").then((t) => t.default).catch((t) => {
1955
1959
  throw console.error(
1956
1960
  "Error while attempting to dynamically import component BlockStyles at ./render-block/block-styles.vue",
1957
1961
  t
1958
1962
  ), t;
1959
- }), tn = () => import("./render-block.3112f40b.js").then((t) => t.default).catch((t) => {
1963
+ }), tn = () => import("./render-block.f95552ec.js").then((t) => t.default).catch((t) => {
1960
1964
  throw console.error(
1961
1965
  "Error while attempting to dynamically import component RenderBlock at ./render-block/render-block.vue",
1962
1966
  t
@@ -1977,7 +1981,7 @@ const Qt = Yt.exports, Zt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object
1977
1981
  methods: {
1978
1982
  onClick() {
1979
1983
  var t, e;
1980
- f() && !((t = this.blocks) != null && t.length) && ((e = window.parent) == null || e.postMessage(
1984
+ h() && !((t = this.blocks) != null && t.length) && ((e = window.parent) == null || e.postMessage(
1981
1985
  {
1982
1986
  type: "builder.clickEmptyBlocks",
1983
1987
  data: {
@@ -1990,7 +1994,7 @@ const Qt = Yt.exports, Zt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object
1990
1994
  },
1991
1995
  onMouseEnter() {
1992
1996
  var t, e;
1993
- f() && !((t = this.blocks) != null && t.length) && ((e = window.parent) == null || e.postMessage(
1997
+ h() && !((t = this.blocks) != null && t.length) && ((e = window.parent) == null || e.postMessage(
1994
1998
  {
1995
1999
  type: "builder.hoverEmptyBlocks",
1996
2000
  data: {
@@ -2014,7 +2018,7 @@ const Qt = Yt.exports, Zt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object
2014
2018
  };
2015
2019
  var on = function() {
2016
2020
  var e = this, n = e._self._c;
2017
- return n("div", { class: e._classStringToObject(e.className + " div-21azgz5avex"), attrs: { "builder-path": e.path, "builder-parent-id": e.parent, dataSet: {
2021
+ return n("div", { class: e._classStringToObject(e.className + " div-23e8fqt91nf"), attrs: { "builder-path": e.path, "builder-parent-id": e.parent, dataSet: {
2018
2022
  class: e.className
2019
2023
  } }, on: { click: function(o) {
2020
2024
  return e.onClick();
@@ -2031,7 +2035,7 @@ var on = function() {
2031
2035
  sn,
2032
2036
  !1,
2033
2037
  null,
2034
- "3c408a8a",
2038
+ "69abb8b2",
2035
2039
  null,
2036
2040
  null
2037
2041
  );
@@ -2039,8 +2043,8 @@ const an = rn.exports, N = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.
2039
2043
  __proto__: null,
2040
2044
  default: an
2041
2045
  }, Symbol.toStringTag, { value: "Module" })), $ = {};
2042
- function dn(t) {
2043
- if (u()) {
2046
+ function un(t) {
2047
+ if (d()) {
2044
2048
  Object.assign($, t);
2045
2049
  const e = {
2046
2050
  type: "builder.settingsChange",
@@ -2050,32 +2054,32 @@ function dn(t) {
2050
2054
  }
2051
2055
  }
2052
2056
  export {
2053
- ze as B,
2057
+ He as B,
2054
2058
  Q as C,
2055
2059
  Ze as F,
2056
2060
  re as I,
2057
2061
  We as S,
2058
2062
  _ as T,
2059
- fe as V,
2060
- de as a,
2063
+ he as V,
2064
+ ue as a,
2061
2065
  Je as b,
2062
2066
  an as c,
2063
- Ft as d,
2067
+ Et as d,
2064
2068
  T as e,
2065
2069
  O as f,
2066
2070
  ln as g,
2067
- Et as h,
2068
- f as i,
2069
- H as j,
2071
+ Ft as h,
2072
+ h as i,
2073
+ z as j,
2070
2074
  A as k,
2071
- Ee as l,
2075
+ Fe as l,
2072
2076
  cn as m,
2073
2077
  p as n,
2074
2078
  je as o,
2075
2079
  ge as p,
2076
2080
  be as q,
2077
2081
  Qt as r,
2078
- dn as s,
2082
+ un as s,
2079
2083
  ve as t,
2080
- F as u
2084
+ E as u
2081
2085
  };