@useinsider/guido 3.2.0-beta.e0b6612 → 3.2.0-beta.e69fb3b

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 (223) hide show
  1. package/dist/@types/config/schemas.js +1 -1
  2. package/dist/@types/config/validator.js +27 -34
  3. package/dist/components/Guido.vue.js +1 -1
  4. package/dist/components/Guido.vue2.js +76 -81
  5. package/dist/components/organisms/base/Toaster.vue2.js +10 -11
  6. package/dist/components/organisms/email-preview/desktop-preview/DesktopPreview.vue2.js +12 -12
  7. package/dist/components/organisms/email-preview/mobile-preview/ContentView.vue2.js +6 -6
  8. package/dist/components/organisms/email-preview/mobile-preview/InboxView.vue2.js +9 -15
  9. package/dist/components/organisms/extensions/recommendation/FilterItem.vue2.js +31 -40
  10. package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +19 -20
  11. package/dist/components/organisms/extensions/recommendation/Filters.vue2.js +11 -14
  12. package/dist/components/organisms/header/EditorActions.vue.js +11 -12
  13. package/dist/components/organisms/header/EditorActions.vue2.js +18 -22
  14. package/dist/components/organisms/header/HeaderWrapper.vue2.js +12 -15
  15. package/dist/components/organisms/header/LeftSlot.vue2.js +16 -19
  16. package/dist/components/organisms/header/MiddleSlot.vue2.js +14 -11
  17. package/dist/components/organisms/header/RightSlot.vue2.js +14 -17
  18. package/dist/components/organisms/onboarding/AMPOnboarding.vue.js +11 -12
  19. package/dist/components/organisms/onboarding/AMPOnboarding.vue2.js +24 -26
  20. package/dist/components/organisms/onboarding/GenericOnboarding.vue.js +11 -12
  21. package/dist/components/organisms/onboarding/GenericOnboarding.vue2.js +41 -44
  22. package/dist/components/organisms/onboarding/ItemsOnboarding.vue.js +11 -12
  23. package/dist/components/organisms/onboarding/ItemsOnboarding.vue2.js +36 -38
  24. package/dist/components/organisms/onboarding/NewVersionPopup.vue2.js +18 -21
  25. package/dist/components/organisms/onboarding/OnboardingWrapper.vue2.js +27 -31
  26. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.js +11 -12
  27. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue2.js +30 -32
  28. package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue.js +11 -12
  29. package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue2.js +21 -23
  30. package/dist/components/organisms/save-as-template/SaveAsTemplateDrawer.vue2.js +8 -9
  31. package/dist/components/organisms/unsubscribe/UnsubscribeWrapper.vue.js +9 -10
  32. package/dist/composables/useActionsApi.js +37 -38
  33. package/dist/composables/useBlocksConfig.js +26 -26
  34. package/dist/composables/useFullStoryBridge.js +8 -9
  35. package/dist/composables/useHtmlCompiler.js +34 -26
  36. package/dist/composables/useHtmlValidator.js +101 -109
  37. package/dist/composables/useHttp.js +30 -30
  38. package/dist/composables/usePartner.js +1 -1
  39. package/dist/composables/useRecommendation.js +14 -15
  40. package/dist/composables/useRibbonOffset.js +15 -15
  41. package/dist/composables/useSave.js +21 -22
  42. package/dist/composables/useStripo.js +53 -50
  43. package/dist/composables/useSyncModuleExtractor.js +31 -29
  44. package/dist/composables/useTimerClone.js +24 -25
  45. package/dist/composables/useTranslations.js +2 -3
  46. package/dist/composables/useValidation.js +7 -8
  47. package/dist/composables/validators/useLiquidValidator.js +13 -13
  48. package/dist/config/compiler/unsubscribeCompilerRules.js +17 -19
  49. package/dist/config/compiler/utils/recommendationCompilerUtils.js +10 -11
  50. package/dist/config/migrator/checkboxMigrator.js +20 -21
  51. package/dist/config/migrator/couponBlockMigrator.js +18 -19
  52. package/dist/config/migrator/itemsBlockMigrator.js +87 -89
  53. package/dist/config/migrator/radioButtonMigrator.js +42 -63
  54. package/dist/config/migrator/recommendationMigrator.js +106 -109
  55. package/dist/config/migrator/unsubscribeMigrator.js +10 -11
  56. package/dist/enums/unsubscribe.js +18 -19
  57. package/dist/extensions/Blocks/Items/block.js +9 -9
  58. package/dist/extensions/Blocks/Items/controls/button/link.js +14 -14
  59. package/dist/extensions/Blocks/Items/controls/cardComposition.js +89 -97
  60. package/dist/extensions/Blocks/Items/controls/image/link.js +14 -14
  61. package/dist/extensions/Blocks/Items/controls/name/trimming.js +23 -24
  62. package/dist/extensions/Blocks/Items/controls/price/currencyLocation.js +13 -14
  63. package/dist/extensions/Blocks/Items/controls/price/currencySymbol.js +44 -47
  64. package/dist/extensions/Blocks/Items/controls/price/formattedPrice.js +38 -38
  65. package/dist/extensions/Blocks/Items/controls/price/hideDiscount.js +11 -11
  66. package/dist/extensions/Blocks/Items/controls/price/priceOrientation.js +38 -40
  67. package/dist/extensions/Blocks/Items/controls/price/singlePrice.js +35 -35
  68. package/dist/extensions/Blocks/Items/controls/settingsControl.js +155 -162
  69. package/dist/extensions/Blocks/Items/enums/productEnums.js +9 -14
  70. package/dist/extensions/Blocks/Items/template.js +210 -210
  71. package/dist/extensions/Blocks/RadioButton/template.js +1 -1
  72. package/dist/extensions/Blocks/Recommendation/controls/button/index.js +36 -36
  73. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +128 -133
  74. package/dist/extensions/Blocks/Recommendation/controls/customAttribute/index.js +9 -9
  75. package/dist/extensions/Blocks/Recommendation/controls/customAttribute/textTrim.js +10 -10
  76. package/dist/extensions/Blocks/Recommendation/controls/image/index.js +9 -9
  77. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +17 -18
  78. package/dist/extensions/Blocks/Recommendation/controls/main/filters.js +4 -6
  79. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +82 -90
  80. package/dist/extensions/Blocks/Recommendation/controls/main/layoutOrientation.js +18 -18
  81. package/dist/extensions/Blocks/Recommendation/controls/main/productCount.js +4 -4
  82. package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +35 -36
  83. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +134 -135
  84. package/dist/extensions/Blocks/Recommendation/controls/name/index.js +24 -24
  85. package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +10 -10
  86. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/index.js +24 -24
  87. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.js +24 -24
  88. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.js +4 -4
  89. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.js +4 -4
  90. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/index.js +24 -24
  91. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.js +4 -4
  92. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.js +4 -4
  93. package/dist/extensions/Blocks/Recommendation/controls/price/index.js +24 -24
  94. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +32 -32
  95. package/dist/extensions/Blocks/Recommendation/controls/syncInfoMessage.js +18 -20
  96. package/dist/extensions/Blocks/Recommendation/extension.js +31 -32
  97. package/dist/extensions/Blocks/Recommendation/settingsPanel.js +8 -16
  98. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +55 -56
  99. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +22 -23
  100. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +10 -10
  101. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +10 -10
  102. package/dist/extensions/Blocks/Recommendation/templates/index.js +6 -6
  103. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +24 -25
  104. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +1 -1
  105. package/dist/extensions/Blocks/Recommendation/templates/utils.js +45 -47
  106. package/dist/extensions/Blocks/Recommendation/validation/filterSchema.js +13 -16
  107. package/dist/extensions/Blocks/Unsubscribe/control.js +11 -13
  108. package/dist/extensions/Blocks/Unsubscribe/elements/preview.js +16 -18
  109. package/dist/extensions/Blocks/common-control.js +25 -26
  110. package/dist/extensions/DynamicContent/dynamic-content.js +53 -58
  111. package/dist/guido.css +1 -1
  112. package/dist/library.js +11 -12
  113. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +233 -234
  114. package/dist/node_modules/lodash-es/_getValue.js +1 -1
  115. package/dist/node_modules/valibot/dist/index.js +122 -126
  116. package/dist/services/recommendationApi.js +14 -17
  117. package/dist/services/templateLibraryApi.js +37 -38
  118. package/dist/src/components/wrappers/WpModal.vue.d.ts +1 -1
  119. package/dist/src/composables/useHtmlCompiler.d.ts +1 -2
  120. package/dist/src/extensions/Blocks/RadioButton/template.d.ts +1 -1
  121. package/dist/src/stores/dynamic-content.d.ts +3 -3
  122. package/dist/stores/config.js +25 -81
  123. package/dist/stores/dynamic-content.js +6 -11
  124. package/dist/stores/onboarding.js +1 -1
  125. package/dist/stores/preview.js +6 -9
  126. package/dist/stores/unsubscribe.js +1 -4
  127. package/dist/utils/dateUtil.js +7 -10
  128. package/dist/utils/genericUtil.js +10 -13
  129. package/dist/utils/pairProductVariables.js +13 -14
  130. package/package.json +6 -1
  131. package/dist/node_modules/lodash-es/_DataView.js +0 -6
  132. package/dist/node_modules/lodash-es/_Promise.js +0 -6
  133. package/dist/node_modules/lodash-es/_Set.js +0 -6
  134. package/dist/node_modules/lodash-es/_SetCache.js +0 -13
  135. package/dist/node_modules/lodash-es/_Stack.js +0 -18
  136. package/dist/node_modules/lodash-es/_Uint8Array.js +0 -5
  137. package/dist/node_modules/lodash-es/_WeakMap.js +0 -6
  138. package/dist/node_modules/lodash-es/_arrayFilter.js +0 -10
  139. package/dist/node_modules/lodash-es/_arrayLikeKeys.js +0 -20
  140. package/dist/node_modules/lodash-es/_arrayMap.js +0 -8
  141. package/dist/node_modules/lodash-es/_arrayPush.js +0 -8
  142. package/dist/node_modules/lodash-es/_arraySome.js +0 -9
  143. package/dist/node_modules/lodash-es/_baseEach.js +0 -6
  144. package/dist/node_modules/lodash-es/_baseFlatten.js +0 -13
  145. package/dist/node_modules/lodash-es/_baseFor.js +0 -5
  146. package/dist/node_modules/lodash-es/_baseForOwn.js +0 -8
  147. package/dist/node_modules/lodash-es/_baseGet.js +0 -11
  148. package/dist/node_modules/lodash-es/_baseGetAllKeys.js +0 -9
  149. package/dist/node_modules/lodash-es/_baseHasIn.js +0 -6
  150. package/dist/node_modules/lodash-es/_baseIsArguments.js +0 -9
  151. package/dist/node_modules/lodash-es/_baseIsEqual.js +0 -8
  152. package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +0 -32
  153. package/dist/node_modules/lodash-es/_baseIsMatch.js +0 -29
  154. package/dist/node_modules/lodash-es/_baseIsTypedArray.js +0 -12
  155. package/dist/node_modules/lodash-es/_baseIteratee.js +0 -11
  156. package/dist/node_modules/lodash-es/_baseKeys.js +0 -14
  157. package/dist/node_modules/lodash-es/_baseMap.js +0 -11
  158. package/dist/node_modules/lodash-es/_baseMatches.js +0 -12
  159. package/dist/node_modules/lodash-es/_baseMatchesProperty.js +0 -17
  160. package/dist/node_modules/lodash-es/_baseProperty.js +0 -8
  161. package/dist/node_modules/lodash-es/_basePropertyDeep.js +0 -9
  162. package/dist/node_modules/lodash-es/_baseRange.js +0 -9
  163. package/dist/node_modules/lodash-es/_baseTimes.js +0 -8
  164. package/dist/node_modules/lodash-es/_baseToString.js +0 -18
  165. package/dist/node_modules/lodash-es/_baseTrim.js +0 -8
  166. package/dist/node_modules/lodash-es/_baseUnary.js +0 -8
  167. package/dist/node_modules/lodash-es/_cacheHas.js +0 -6
  168. package/dist/node_modules/lodash-es/_castPath.js +0 -10
  169. package/dist/node_modules/lodash-es/_createBaseEach.js +0 -15
  170. package/dist/node_modules/lodash-es/_createBaseFor.js +0 -13
  171. package/dist/node_modules/lodash-es/_createRange.js +0 -11
  172. package/dist/node_modules/lodash-es/_equalArrays.js +0 -40
  173. package/dist/node_modules/lodash-es/_equalByTag.js +0 -45
  174. package/dist/node_modules/lodash-es/_equalObjects.js +0 -36
  175. package/dist/node_modules/lodash-es/_getAllKeys.js +0 -9
  176. package/dist/node_modules/lodash-es/_getMatchData.js +0 -12
  177. package/dist/node_modules/lodash-es/_getSymbols.js +0 -10
  178. package/dist/node_modules/lodash-es/_getTag.js +0 -28
  179. package/dist/node_modules/lodash-es/_hasPath.js +0 -19
  180. package/dist/node_modules/lodash-es/_isFlattenable.js +0 -10
  181. package/dist/node_modules/lodash-es/_isIndex.js +0 -8
  182. package/dist/node_modules/lodash-es/_isIterateeCall.js +0 -13
  183. package/dist/node_modules/lodash-es/_isKey.js +0 -12
  184. package/dist/node_modules/lodash-es/_isPrototype.js +0 -8
  185. package/dist/node_modules/lodash-es/_isStrictComparable.js +0 -7
  186. package/dist/node_modules/lodash-es/_mapToArray.js +0 -9
  187. package/dist/node_modules/lodash-es/_matchesStrictComparable.js +0 -8
  188. package/dist/node_modules/lodash-es/_memoizeCapped.js +0 -11
  189. package/dist/node_modules/lodash-es/_nativeKeys.js +0 -5
  190. package/dist/node_modules/lodash-es/_nodeUtil.js +0 -11
  191. package/dist/node_modules/lodash-es/_overArg.js +0 -8
  192. package/dist/node_modules/lodash-es/_setCacheAdd.js +0 -7
  193. package/dist/node_modules/lodash-es/_setCacheHas.js +0 -6
  194. package/dist/node_modules/lodash-es/_setToArray.js +0 -9
  195. package/dist/node_modules/lodash-es/_stackClear.js +0 -7
  196. package/dist/node_modules/lodash-es/_stackDelete.js +0 -7
  197. package/dist/node_modules/lodash-es/_stackGet.js +0 -6
  198. package/dist/node_modules/lodash-es/_stackHas.js +0 -6
  199. package/dist/node_modules/lodash-es/_stackSet.js +0 -17
  200. package/dist/node_modules/lodash-es/_stringToPath.js +0 -10
  201. package/dist/node_modules/lodash-es/_toKey.js +0 -10
  202. package/dist/node_modules/lodash-es/_trimmedEndIndex.js +0 -9
  203. package/dist/node_modules/lodash-es/flatMap.js +0 -8
  204. package/dist/node_modules/lodash-es/get.js +0 -8
  205. package/dist/node_modules/lodash-es/hasIn.js +0 -8
  206. package/dist/node_modules/lodash-es/identity.js +0 -6
  207. package/dist/node_modules/lodash-es/isArguments.js +0 -10
  208. package/dist/node_modules/lodash-es/isArray.js +0 -4
  209. package/dist/node_modules/lodash-es/isArrayLike.js +0 -8
  210. package/dist/node_modules/lodash-es/isBuffer.js +0 -6
  211. package/dist/node_modules/lodash-es/isLength.js +0 -7
  212. package/dist/node_modules/lodash-es/isObjectLike.js +0 -6
  213. package/dist/node_modules/lodash-es/isSymbol.js +0 -9
  214. package/dist/node_modules/lodash-es/isTypedArray.js +0 -7
  215. package/dist/node_modules/lodash-es/keys.js +0 -9
  216. package/dist/node_modules/lodash-es/map.js +0 -11
  217. package/dist/node_modules/lodash-es/property.js +0 -10
  218. package/dist/node_modules/lodash-es/range.js +0 -5
  219. package/dist/node_modules/lodash-es/stubArray.js +0 -6
  220. package/dist/node_modules/lodash-es/stubFalse.js +0 -6
  221. package/dist/node_modules/lodash-es/toFinite.js +0 -14
  222. package/dist/node_modules/lodash-es/toNumber.js +0 -22
  223. package/dist/node_modules/lodash-es/toString.js +0 -7
@@ -7,11 +7,11 @@ var x = class d {
7
7
  constructor(t, r) {
8
8
  if (r !== d) {
9
9
  d.validatedClasses.has(r) || this.validateImplementation(t, r);
10
- const s = d.validationErrors.get(r);
11
- if (s && s.length > 0)
10
+ const a = d.validationErrors.get(r);
11
+ if (a && a.length > 0)
12
12
  throw new Error(
13
13
  `${r.name} has validation errors:
14
- ${s.map((o) => ` - ${o}`).join(`
14
+ ${a.map((E) => ` - ${E}`).join(`
15
15
  `)}`
16
16
  );
17
17
  }
@@ -21,15 +21,14 @@ ${s.map((o) => ` - ${o}`).join(`
21
21
  * This validation runs only once per class type and results are cached.
22
22
  */
23
23
  validateImplementation(t, r) {
24
- var y;
25
- const s = [], o = r.name, W = Object.getPrototypeOf(this);
24
+ const a = [], E = r.name, $ = Object.getPrototypeOf(this);
26
25
  t.forEach((u) => {
27
26
  if (typeof this[u] != "function") {
28
- s.push(`Method ${u}() is not defined`);
27
+ a.push(`Method ${u}() is not defined`);
29
28
  return;
30
29
  }
31
- W[u] === r.prototype[u] && s.push(`Method ${u}() must be implemented (currently using base class error-throwing implementation)`);
32
- }), d.validatedClasses.add(r), s.length > 0 ? (d.validationErrors.set(r, s), console.error(`[${o} Validation] ${o} validation failed:`, s)) : typeof process < "u" && ((y = process.env) == null ? void 0 : y.NODE_ENV) === "development" && console.log(`[${o} Validation] ✅ ${o} validated successfully`);
30
+ $[u] === r.prototype[u] && a.push(`Method ${u}() must be implemented (currently using base class error-throwing implementation)`);
31
+ }), d.validatedClasses.add(r), a.length > 0 ? (d.validationErrors.set(r, a), console.error(`[${E} Validation] ${E} validation failed:`, a)) : typeof process < "u" && process.env?.NODE_ENV === "development" && console.log(`[${E} Validation] ✅ ${E} validated successfully`);
33
32
  }
34
33
  /**
35
34
  * Lifecycle method for cleaning up resources (e.g., removing DOM artifacts from document.body).
@@ -41,7 +40,7 @@ ${s.map((o) => ` - ${o}`).join(`
41
40
  };
42
41
  x.validatedClasses = /* @__PURE__ */ new Set();
43
42
  x.validationErrors = /* @__PURE__ */ new Map();
44
- var i = x, z = /* @__PURE__ */ ((e) => (e.BLOCK = "BLOCK", e.CONTAINER = "CONTAINER", e.STRUCTURE = "STRUCTURE", e.STRIPE = "STRIPE", e))(z || {}), P = class T extends i {
43
+ var i = x, W = /* @__PURE__ */ ((e) => (e.BLOCK = "BLOCK", e.CONTAINER = "CONTAINER", e.STRUCTURE = "STRUCTURE", e.STRIPE = "STRIPE", e))(W || {}), y = class T extends i {
45
44
  constructor() {
46
45
  super(T.REQUIRED_METHODS, T);
47
46
  }
@@ -221,8 +220,8 @@ var i = x, z = /* @__PURE__ */ ((e) => (e.BLOCK = "BLOCK", e.CONTAINER = "CONTAI
221
220
  throw new Error("Method getDescription() must be implemented by the subclass");
222
221
  }
223
222
  };
224
- P.REQUIRED_METHODS = ["getId", "getTemplate", "getIcon", "getName", "getDescription"];
225
- var Ze = P, Z = class I extends i {
223
+ y.REQUIRED_METHODS = ["getId", "getTemplate", "getIcon", "getName", "getDescription"];
224
+ var ze = y, z = class I extends i {
226
225
  constructor() {
227
226
  super(I.REQUIRED_METHODS, I);
228
227
  }
@@ -238,8 +237,8 @@ var Ze = P, Z = class I extends i {
238
237
  throw new Error("Method getPreviewInnerHtml() must be implemented by the subclass");
239
238
  }
240
239
  };
241
- Z.REQUIRED_METHODS = ["getPreviewInnerHtml"];
242
- var qe = class {
240
+ z.REQUIRED_METHODS = ["getPreviewInnerHtml"];
241
+ var Ze = class {
243
242
  /**
244
243
  * Generates HTML representation for a block item
245
244
  * @param block - The block item to generate HTML for
@@ -313,7 +312,7 @@ var qe = class {
313
312
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
314
313
  getModulesTabIconName(e) {
315
314
  }
316
- }, q = class b extends i {
315
+ }, Z = class b extends i {
317
316
  constructor() {
318
317
  super(b.REQUIRED_METHODS, b);
319
318
  }
@@ -330,86 +329,86 @@ var qe = class {
330
329
  throw new Error("Method onClick() must be implemented by the subclass");
331
330
  }
332
331
  };
333
- q.REQUIRED_METHODS = ["getId", "getIcon", "getLabel", "onClick"];
334
- var j = {
332
+ Z.REQUIRED_METHODS = ["getId", "getIcon", "getLabel", "onClick"];
333
+ var q = {
335
334
  src: "src",
336
335
  alt: "alt",
337
336
  href: "href",
338
337
  width: "width",
339
338
  height: "height"
340
- }, je = {
341
- BLOCK_IMAGE: j
342
- }, U = "esd-block-button", w = "esd-block-text", K = "esd-block-image", J = "esd-structure", ee = "esd-block-video", te = "esd-block-social", re = "esd-block-banner", ae = "esd-block-timer", ne = "esd-block-menu", se = "esd-block-html", ie = "esd-block-spacer", le = "esd-container-frame", Ee = "esd-stripe", oe = "esd-amp-form", c = ((e) => (e.BUTTON = `.${U}`, e.TEXT = `.${w}`, e.IMAGE = `.${K}`, e.STRUCTURE = `.${J}`, e.VIDEO = `.${ee}`, e.SOCIAL = `.${te}`, e.BANNER = `.${re}`, e.TIMER = `.${ae}`, e.MENU = `.${ne}`, e.HTML = `.${se}`, e.SPACER = `.${ie}`, e.CONTAINER = `.${le}`, e.STRIPE = `.${Ee}`, e.FORM = `.${oe}`, e))(c || {}), de = /* @__PURE__ */ ((e) => (e.BLOCK_IMAGE = "BLOCK_IMAGE", e.BLOCK_TEXT = "BLOCK_TEXT", e.BLOCK_BUTTON = "BLOCK_BUTTON", e.BLOCK_SPACER = "BLOCK_SPACER", e.BLOCK_VIDEO = "BLOCK_VIDEO", e.BLOCK_SOCIAL = "BLOCK_SOCIAL", e.BLOCK_BANNER = "BLOCK_BANNER", e.BLOCK_TIMER = "BLOCK_TIMER", e.BLOCK_MENU = "BLOCK_MENU", e.BLOCK_MENU_ITEM = "BLOCK_MENU_ITEM", e.BLOCK_HTML = "BLOCK_HTML", e.BLOCK_AMP_CAROUSEL = "BLOCK_AMP_CAROUSEL", e.BLOCK_AMP_ACCORDION = "BLOCK_AMP_ACCORDION", e.BLOCK_AMP_FORM = "BLOCK_AMP_FORM", e.CONTAINER = "CONTAINER", e.FORM_CONTAINER = "FORM_CONTAINER", e.STRUCTURE = "STRUCTURE", e.STRIPE = "STRIPE", e.EMPTY_CONTAINER = "EMPTY_CONTAINER", e.CUSTOM_BLOCK_LINK = "CUSTOM_BLOCK_LINK", e.CUSTOM_BLOCK_IMAGE = "CUSTOM_BLOCK_IMAGE", e.CUSTOM_BLOCK_TEXT = "CUSTOM_BLOCK_TEXT", e))(de || {}), F = /* @__PURE__ */ ((e) => (e.ANCHOR_LINK_CONTAINER = "anchorLinkFormContainer", e.APPLY_CONDITION = "applyCondition", e.APPLY_CONDITION_SWITCHER = "applyConditionSwitcher", e.BACKGROUND_COLOR = "backgroundColor", e.BACKGROUND_IMAGE = "generalImageContainer", e.TEXT_COLOR = "textColor", e.TEXT_STYLE = "textStyle", e.TEXT_SIZE = "textSize", e.TEXT_LINE_SPACING = "textLineSpacing", e.TEXT_ALIGN = "textAlign", e.FIXED_HEIGHT_SWITCHER = "fixedHeightSwitcherForm", e.HIDDEN_NODE = "hiddenNode", e.SMART_BLOCK = "smartBlock", e.SYNCHRONIZED_MODULE = "synchronizedModuleForm", e.FONT_FAMILY = "generalFontFamilyForm", e.BLOCK_INTERNAL_INDENTS = "generalBlockInternalIndents", e.STRUCTURE_INTERNAL_INDENTS = "generalStructureInternalIndents", e))(F || {}), H = /* @__PURE__ */ ((e) => (e.ADJUST_TO_WIDTH = "adjustToWidth", e.ALIGNMENT = "buttonAlignment", e.BORDER = "buttonBorder", e.BORDER_RADIUS = "buttonBorderRadius", e.COLOR = "buttonColor", e.BUTTON_BLOCK_BACKGROUND_COLOR = "buttonBlockBackgroundColor", e.EXTERNAL_INDENTS = "buttonExternalIndents", e.FIXED_HEIGHT = "buttonFixedHeightForm", e.FONT_COLOR = "buttonFontColor", e.FONT_FAMILY = "buttonFontFamily", e.FONT_SIZE = "buttonFontSize", e.ICON = "buttonIconContainer", e.ICON_ALIGN = "buttonIconAlign", e.ICON_INDENT = "buttonIconIndent", e.ICON_WIDTH = "buttonIconWidth", e.IMAGE = "buttonImageForm", e.INTERNAL_INDENTS = "buttonInternalIndents", e.LINK = "buttonLink", e.MIME_TYPE = "buttonMimeTypeForm", e.SWITCHER_HOVERED_STYLES = "buttonSwitcherHoveredStylesForm", e.TEXT = "buttonText", e.TEXT_STYLE_AND_COLOR = "buttonTextStyleAndColorForm", e.HOVERED_BORDER_COLOR = "hoveredStyleBorderButtonForm", e.HOVERED_COLOR = "hoveredButtonColorForm", e.HOVERED_TEXT_COLOR = "hoveredButtonTextColorForm", e))(H || {}), k = /* @__PURE__ */ ((e) => (e.HIDDEN_NODE = "hiddenNodeText", e.PARAGRAPH_STYLE = "paragraphStyleForm", e.ALIGN = "textAlignmentForm", e.ANCHOR_CONTAINER = "textAnchorForm", e.FONT_BACKGROUND_COLOR = "textBlockFontBackgroundColor", e.TEXT_BLOCK_BACKGROUND_COLOR = "textBlockBackgroundColor", e.FONT_COLOR = "textBlockFontColor", e.TEXT_BLOCK_FONT_FAMILY = "textBlockFontFamily", e.FONT_FAMILY = "textFontFamily", e.FONT_SIZE = "textBlockFontSize", e.FONT_WEIGHT = "textBlockFontWeight", e.DIRECTION = "textBlockDirectionForm", e.INSERT_FORM = "textBlockInsertForm", e.LINK_DATA = "textBlockLinkDataForm", e.FORMAT = "textBlockTextFormatForm", e.FIXED_HEIGHT = "textFixedHeightForm", e.INTERNAL_INDENTS = "textInternalIndents", e.LINE_HEIGHT = "textLineHeightForm", e.MIME_TYPE = "textMimeTypeForm", e.NO_LINE_WRAPS = "textNoLineWrapsForm", e))(k || {}), p = /* @__PURE__ */ ((e) => (e.ALT_TEXT = "altText", e.LINK = "blockLink", e.ALIGNMENT = "imageAlignment", e.ANCHOR_LINK_CONTAINER = "imageAnchorLinkContainerForm", e.BORDER_RADIUS = "imageBorderRadiusForm", e.IMAGE = "imageImageForm", e.EXTERNAL_INDENTS = "imageExternalIndents", e.MIME_TYPE = "imageMimeTypeForm", e.RESPONSIVE = "imageResponsive", e.ROLLOVER_IMAGE = "imageRolloverImageForm", e.ROLLOVER_SWITCHER = "imageRolloverSwitcherForm", e.SIZE = "imageSizeContainer", e))(p || {}), ue = /* @__PURE__ */ ((e) => (e.BACKGROUND_COLOR = "containerBackgroundColorForm", e.BORDER_FORM = "containerBorderForm", e.BORDER_RADIUS = "containerBorderRadiusForm", e.EXTERNAL_INDENTS = "containerExternalIndentsForm", e.IMAGE_CONTAINER = "containerImageContainerForm", e.MIME_TYPE = "containerMimeTypeForm", e.DISPLAY_CONDITIONS = "displayConditions", e.HIDDEN_NODE = "containerHiddenNodeForm", e))(ue || {}), n = {
343
- BLOCK_BUTTON: H,
344
- BLOCK_TEXT: k,
345
- BLOCK_IMAGE: p,
346
- GENERAL: F
347
- }, ce = /* @__PURE__ */ ((e) => (e.previewDeviceMode = "previewDeviceMode", e.panelPosition = "panelPosition", e.themeMode = "themeMode", e))(ce || {}), Te = /* @__PURE__ */ ((e) => (e.DESKTOP = "DESKTOP", e.MOBILE = "MOBILE", e))(Te || {}), Ie = /* @__PURE__ */ ((e) => (e.SETTINGS = "settings", e.STYLES = "styles", e.DATA = "data", e))(Ie || {}), a = {
339
+ }, qe = {
340
+ BLOCK_IMAGE: q
341
+ }, P = "esd-block-button", p = "esd-block-text", U = "esd-block-image", j = "esd-structure", J = "esd-block-video", ee = "esd-block-social", te = "esd-block-banner", re = "esd-block-timer", ne = "esd-block-menu", se = "esd-block-html", ae = "esd-block-spacer", ie = "esd-container-frame", oe = "esd-stripe", le = "esd-amp-form", c = ((e) => (e.BUTTON = `.${P}`, e.TEXT = `.${p}`, e.IMAGE = `.${U}`, e.STRUCTURE = `.${j}`, e.VIDEO = `.${J}`, e.SOCIAL = `.${ee}`, e.BANNER = `.${te}`, e.TIMER = `.${re}`, e.MENU = `.${ne}`, e.HTML = `.${se}`, e.SPACER = `.${ae}`, e.CONTAINER = `.${ie}`, e.STRIPE = `.${oe}`, e.FORM = `.${le}`, e))(c || {}), Ee = /* @__PURE__ */ ((e) => (e.BLOCK_IMAGE = "BLOCK_IMAGE", e.BLOCK_TEXT = "BLOCK_TEXT", e.BLOCK_BUTTON = "BLOCK_BUTTON", e.BLOCK_SPACER = "BLOCK_SPACER", e.BLOCK_VIDEO = "BLOCK_VIDEO", e.BLOCK_SOCIAL = "BLOCK_SOCIAL", e.BLOCK_BANNER = "BLOCK_BANNER", e.BLOCK_TIMER = "BLOCK_TIMER", e.BLOCK_MENU = "BLOCK_MENU", e.BLOCK_MENU_ITEM = "BLOCK_MENU_ITEM", e.BLOCK_HTML = "BLOCK_HTML", e.BLOCK_AMP_CAROUSEL = "BLOCK_AMP_CAROUSEL", e.BLOCK_AMP_ACCORDION = "BLOCK_AMP_ACCORDION", e.BLOCK_AMP_FORM = "BLOCK_AMP_FORM", e.CONTAINER = "CONTAINER", e.FORM_CONTAINER = "FORM_CONTAINER", e.STRUCTURE = "STRUCTURE", e.STRIPE = "STRIPE", e.EMPTY_CONTAINER = "EMPTY_CONTAINER", e.CUSTOM_BLOCK_LINK = "CUSTOM_BLOCK_LINK", e.CUSTOM_BLOCK_IMAGE = "CUSTOM_BLOCK_IMAGE", e.CUSTOM_BLOCK_TEXT = "CUSTOM_BLOCK_TEXT", e))(Ee || {}), w = /* @__PURE__ */ ((e) => (e.ANCHOR_LINK_CONTAINER = "anchorLinkFormContainer", e.APPLY_CONDITION = "applyCondition", e.APPLY_CONDITION_SWITCHER = "applyConditionSwitcher", e.BACKGROUND_COLOR = "backgroundColor", e.BACKGROUND_IMAGE = "generalImageContainer", e.TEXT_COLOR = "textColor", e.TEXT_STYLE = "textStyle", e.TEXT_SIZE = "textSize", e.TEXT_LINE_SPACING = "textLineSpacing", e.TEXT_ALIGN = "textAlign", e.FIXED_HEIGHT_SWITCHER = "fixedHeightSwitcherForm", e.HIDDEN_NODE = "hiddenNode", e.SMART_BLOCK = "smartBlock", e.SYNCHRONIZED_MODULE = "synchronizedModuleForm", e.FONT_FAMILY = "generalFontFamilyForm", e.BLOCK_INTERNAL_INDENTS = "generalBlockInternalIndents", e.STRUCTURE_INTERNAL_INDENTS = "generalStructureInternalIndents", e))(w || {}), K = /* @__PURE__ */ ((e) => (e.ADJUST_TO_WIDTH = "adjustToWidth", e.ALIGNMENT = "buttonAlignment", e.BORDER = "buttonBorder", e.BORDER_RADIUS = "buttonBorderRadius", e.COLOR = "buttonColor", e.BUTTON_BLOCK_BACKGROUND_COLOR = "buttonBlockBackgroundColor", e.EXTERNAL_INDENTS = "buttonExternalIndents", e.FIXED_HEIGHT = "buttonFixedHeightForm", e.FONT_COLOR = "buttonFontColor", e.FONT_FAMILY = "buttonFontFamily", e.FONT_SIZE = "buttonFontSize", e.ICON = "buttonIconContainer", e.ICON_ALIGN = "buttonIconAlign", e.ICON_INDENT = "buttonIconIndent", e.ICON_WIDTH = "buttonIconWidth", e.IMAGE = "buttonImageForm", e.INTERNAL_INDENTS = "buttonInternalIndents", e.LINK = "buttonLink", e.MIME_TYPE = "buttonMimeTypeForm", e.SWITCHER_HOVERED_STYLES = "buttonSwitcherHoveredStylesForm", e.TEXT = "buttonText", e.TEXT_STYLE_AND_COLOR = "buttonTextStyleAndColorForm", e.HOVERED_BORDER_COLOR = "hoveredStyleBorderButtonForm", e.HOVERED_COLOR = "hoveredButtonColorForm", e.HOVERED_TEXT_COLOR = "hoveredButtonTextColorForm", e))(K || {}), F = /* @__PURE__ */ ((e) => (e.HIDDEN_NODE = "hiddenNodeText", e.PARAGRAPH_STYLE = "paragraphStyleForm", e.ALIGN = "textAlignmentForm", e.ANCHOR_CONTAINER = "textAnchorForm", e.FONT_BACKGROUND_COLOR = "textBlockFontBackgroundColor", e.TEXT_BLOCK_BACKGROUND_COLOR = "textBlockBackgroundColor", e.FONT_COLOR = "textBlockFontColor", e.TEXT_BLOCK_FONT_FAMILY = "textBlockFontFamily", e.FONT_FAMILY = "textFontFamily", e.FONT_SIZE = "textBlockFontSize", e.FONT_WEIGHT = "textBlockFontWeight", e.DIRECTION = "textBlockDirectionForm", e.INSERT_FORM = "textBlockInsertForm", e.LINK_DATA = "textBlockLinkDataForm", e.FORMAT = "textBlockTextFormatForm", e.FIXED_HEIGHT = "textFixedHeightForm", e.INTERNAL_INDENTS = "textInternalIndents", e.LINE_HEIGHT = "textLineHeightForm", e.MIME_TYPE = "textMimeTypeForm", e.NO_LINE_WRAPS = "textNoLineWrapsForm", e))(F || {}), H = /* @__PURE__ */ ((e) => (e.ALT_TEXT = "altText", e.LINK = "blockLink", e.ALIGNMENT = "imageAlignment", e.ANCHOR_LINK_CONTAINER = "imageAnchorLinkContainerForm", e.BORDER_RADIUS = "imageBorderRadiusForm", e.IMAGE = "imageImageForm", e.EXTERNAL_INDENTS = "imageExternalIndents", e.MIME_TYPE = "imageMimeTypeForm", e.RESPONSIVE = "imageResponsive", e.ROLLOVER_IMAGE = "imageRolloverImageForm", e.ROLLOVER_SWITCHER = "imageRolloverSwitcherForm", e.SIZE = "imageSizeContainer", e))(H || {}), de = /* @__PURE__ */ ((e) => (e.BACKGROUND_COLOR = "containerBackgroundColorForm", e.BORDER_FORM = "containerBorderForm", e.BORDER_RADIUS = "containerBorderRadiusForm", e.EXTERNAL_INDENTS = "containerExternalIndentsForm", e.IMAGE_CONTAINER = "containerImageContainerForm", e.MIME_TYPE = "containerMimeTypeForm", e.DISPLAY_CONDITIONS = "displayConditions", e.HIDDEN_NODE = "containerHiddenNodeForm", e))(de || {}), s = {
342
+ BLOCK_BUTTON: K,
343
+ BLOCK_TEXT: F,
344
+ BLOCK_IMAGE: H,
345
+ GENERAL: w
346
+ }, ue = /* @__PURE__ */ ((e) => (e.previewDeviceMode = "previewDeviceMode", e.panelPosition = "panelPosition", e.themeMode = "themeMode", e))(ue || {}), ce = /* @__PURE__ */ ((e) => (e.DESKTOP = "DESKTOP", e.MOBILE = "MOBILE", e))(ce || {}), Te = /* @__PURE__ */ ((e) => (e.SETTINGS = "settings", e.STYLES = "styles", e.DATA = "data", e))(Te || {}), n = {
348
347
  name: "name",
349
348
  disabled: "disabled"
350
- }, be = {
351
- ...a,
349
+ }, Ie = {
350
+ ...n,
352
351
  caption: "caption",
353
352
  icon: "icon"
354
- }, he = {
355
- ...a,
353
+ }, be = {
354
+ ...n,
356
355
  caption: "caption"
357
- }, me = {
358
- ...a,
356
+ }, he = {
357
+ ...n,
359
358
  minValue: "min-value",
360
359
  maxValue: "max-value",
361
360
  step: "step"
362
- }, ge = {
363
- ...a,
361
+ }, me = {
362
+ ...n,
364
363
  placeholder: "placeholder",
365
364
  minDate: "min-date"
366
- }, Oe = {
367
- ...a,
365
+ }, ge = {
366
+ ...n,
368
367
  text: "text",
369
368
  hint: "hint"
370
- }, Re = {
371
- ...a,
369
+ }, Oe = {
370
+ ...n,
372
371
  type: "type"
373
- }, Le = {
374
- ...a,
372
+ }, Re = {
373
+ ...n,
375
374
  buttons: "buttons"
376
- }, X = {
377
- ...a,
375
+ }, k = {
376
+ ...n,
378
377
  searchable: "searchable",
379
378
  multiSelect: "multi-select",
380
379
  placeholder: "placeholder",
381
380
  items: "items"
382
- }, _e = {
383
- ...X,
381
+ }, Le = {
382
+ ...k,
384
383
  addCustomFontOption: "add-custom-font-option"
385
- }, Ce = {
386
- ...a,
384
+ }, _e = {
385
+ ...n,
387
386
  text: "text",
388
387
  value: "value"
389
- }, Ae = {
390
- ...a,
388
+ }, Ce = {
389
+ ...n,
391
390
  text: "text",
392
391
  hint: "hint",
393
392
  icon: "icon",
394
393
  value: "value"
395
- }, Ne = {
396
- ...a,
394
+ }, Ae = {
395
+ ...n,
397
396
  buttons: "buttons"
398
- }, De = {
399
- ...a,
397
+ }, Ne = {
398
+ ...n,
400
399
  text: "text",
401
400
  hint: "hint",
402
401
  icon: "icon",
403
402
  value: "value"
404
- }, Se = {
405
- ...a,
403
+ }, De = {
404
+ ...n,
406
405
  placeholder: "placeholder"
407
- }, Me = {
408
- ...a,
406
+ }, Se = {
407
+ ...n,
409
408
  resizable: "resizable",
410
409
  placeholder: "placeholder"
411
- }, Be = {
412
- ...a,
410
+ }, Me = {
411
+ ...n,
413
412
  img: "img",
414
413
  src: "src",
415
414
  title: "title",
@@ -419,61 +418,61 @@ var j = {
419
418
  isActive: "is-active",
420
419
  visibility: "visibility",
421
420
  transform: "transform"
422
- }, xe = {
423
- ...a,
421
+ }, Be = {
422
+ ...n,
424
423
  controlId: "control-id"
425
- }, ve = {
426
- ...a,
424
+ }, xe = {
425
+ ...n,
427
426
  expanded: "expanded"
428
- }, ye = {
429
- ...a,
427
+ }, ve = {
428
+ ...n,
430
429
  icon: "icon",
431
430
  position: "position"
431
+ }, ye = {
432
+ ...n
432
433
  }, Pe = {
433
- ...a
434
- }, Ue = {
435
- ...a,
434
+ ...n,
436
435
  icon: "icon"
436
+ }, pe = {
437
+ ...n
438
+ }, Ue = {
439
+ ...n,
440
+ blockId: "block-id"
437
441
  }, we = {
438
- ...a
442
+ ...n
439
443
  }, Ke = {
440
- ...a,
441
- blockId: "block-id"
442
- }, Fe = {
443
- ...a
444
- }, He = {
445
- ...a,
444
+ ...n,
446
445
  placeholder: "placeholder"
447
- }, Je = {
448
- DEFAULT: a,
449
- BUTTON: be,
450
- CHECKBOX: he,
451
- CHECK_BUTTONS: Ne,
452
- COLOR: a,
453
- COUNTER: me,
454
- DATEPICKER: ge,
455
- LABEL: Oe,
456
- MESSAGE: Re,
457
- RADIO_BUTTONS: Le,
458
- SELECTPICKER: X,
459
- FONT_FAMILY_SELECT: _e,
460
- SWITCHER: a,
461
- TEXT: Se,
462
- TEXTAREA: Me,
463
- ICON: Be,
464
- CHECK_ITEM: Ae,
465
- SELECT_ITEM: Ce,
466
- RADIO_ITEM: De,
467
- NESTED_CONTROL: xe,
468
- EXPANDABLE: ve,
469
- ORDERABLE: ye,
470
- ORDERABLE_ITEM: Pe,
471
- ORDERABLE_ICON: Ue,
472
- REPEATABLE: we,
473
- DRAGGABLE_BLOCK: Ke,
474
- AMP_FORM_SERVICE_PICKER: Fe,
475
- MULTIPLE_SELECT: He
476
- }, ke = /* @__PURE__ */ ((e) => (e.BUTTON = "UE-BUTTON", e.CHECKBOX = "UE-CHECKBOX", e.CHECK_BUTTONS = "UE-CHECK-BUTTONS", e.COLOR = "UE-COLOR", e.COUNTER = "UE-COUNTER", e.DATEPICKER = "UE-DATEPICKER", e.LABEL = "UE-LABEL", e.MESSAGE = "UE-MESSAGE", e.RADIO_BUTTONS = "UE-RADIO-BUTTONS", e.SELECTPICKER = "UE-SELECT", e.SWITCHER = "UE-SWITCHER", e.TEXT = "UE-TEXT", e.TEXTAREA = "UE-TEXTAREA", e.CHECK_ITEM = "UE-CHECK-ITEM", e.RADIO_ITEM = "UE-RADIO-ITEM", e.SELECT_ITEM = "UE-SELECT-ITEM", e.ICON = "UE-ICON", e.MERGETAGS = "UE-MERGETAGS", e.FONT_FAMILY_SELECT = "UE-FONT-FAMILY-SELECT", e.NESTED_CONTROL = "UE-NESTED-CONTROL", e.EXPANDABLE = "UE-EXPANDABLE", e.EXPANDABLE_HEADER = "UE-EXPANDABLE_HEADER", e.EXPANDABLE_CONTENT = "UE-EXPANDABLE_CONTENT", e.ORDERABLE = "UE-ORDERABLE", e.ORDERABLE_ITEM = "UE-ORDERABLE-ITEM", e.ORDERABLE_ICON = "UE-ORDERABLE-ICON", e.REPEATABLE = "UE-REPEATABLE", e.DRAGGABLE_BLOCK = "UE-DRAGGABLE-BLOCK", e.AMP_FORM_SERVICE_PICKER = "UE-AMP-FORM-SERVICE-PICKER", e.MULTIPLE_SELECT = "UE-MULTIPLE_SELECT", e.SCROLLABLE = "UE-SCROLLABLE-CONTAINER", e))(ke || {}), v = class {
446
+ }, je = {
447
+ DEFAULT: n,
448
+ BUTTON: Ie,
449
+ CHECKBOX: be,
450
+ CHECK_BUTTONS: Ae,
451
+ COLOR: n,
452
+ COUNTER: he,
453
+ DATEPICKER: me,
454
+ LABEL: ge,
455
+ MESSAGE: Oe,
456
+ RADIO_BUTTONS: Re,
457
+ SELECTPICKER: k,
458
+ FONT_FAMILY_SELECT: Le,
459
+ SWITCHER: n,
460
+ TEXT: De,
461
+ TEXTAREA: Se,
462
+ ICON: Me,
463
+ CHECK_ITEM: Ce,
464
+ SELECT_ITEM: _e,
465
+ RADIO_ITEM: Ne,
466
+ NESTED_CONTROL: Be,
467
+ EXPANDABLE: xe,
468
+ ORDERABLE: ve,
469
+ ORDERABLE_ITEM: ye,
470
+ ORDERABLE_ICON: Pe,
471
+ REPEATABLE: pe,
472
+ DRAGGABLE_BLOCK: Ue,
473
+ AMP_FORM_SERVICE_PICKER: we,
474
+ MULTIPLE_SELECT: Ke
475
+ }, Fe = /* @__PURE__ */ ((e) => (e.BUTTON = "UE-BUTTON", e.CHECKBOX = "UE-CHECKBOX", e.CHECK_BUTTONS = "UE-CHECK-BUTTONS", e.COLOR = "UE-COLOR", e.COUNTER = "UE-COUNTER", e.DATEPICKER = "UE-DATEPICKER", e.LABEL = "UE-LABEL", e.MESSAGE = "UE-MESSAGE", e.RADIO_BUTTONS = "UE-RADIO-BUTTONS", e.SELECTPICKER = "UE-SELECT", e.SWITCHER = "UE-SWITCHER", e.TEXT = "UE-TEXT", e.TEXTAREA = "UE-TEXTAREA", e.CHECK_ITEM = "UE-CHECK-ITEM", e.RADIO_ITEM = "UE-RADIO-ITEM", e.SELECT_ITEM = "UE-SELECT-ITEM", e.ICON = "UE-ICON", e.MERGETAGS = "UE-MERGETAGS", e.FONT_FAMILY_SELECT = "UE-FONT-FAMILY-SELECT", e.NESTED_CONTROL = "UE-NESTED-CONTROL", e.EXPANDABLE = "UE-EXPANDABLE", e.EXPANDABLE_HEADER = "UE-EXPANDABLE_HEADER", e.EXPANDABLE_CONTENT = "UE-EXPANDABLE_CONTENT", e.ORDERABLE = "UE-ORDERABLE", e.ORDERABLE_ITEM = "UE-ORDERABLE-ITEM", e.ORDERABLE_ICON = "UE-ORDERABLE-ICON", e.REPEATABLE = "UE-REPEATABLE", e.DRAGGABLE_BLOCK = "UE-DRAGGABLE-BLOCK", e.AMP_FORM_SERVICE_PICKER = "UE-AMP-FORM-SERVICE-PICKER", e.MULTIPLE_SELECT = "UE-MULTIPLE_SELECT", e.SCROLLABLE = "UE-SCROLLABLE-CONTAINER", e))(Fe || {}), v = class {
477
476
  /**
478
477
  * @description returns map of nodes parent control operates on
479
478
  */
@@ -504,66 +503,66 @@ var j = {
504
503
  isVisible(e) {
505
504
  return !0;
506
505
  }
507
- }, l = class extends v {
506
+ }, o = class extends v {
508
507
  getTargetNodes(e) {
509
- const t = e.querySelectorAll(c.BUTTON), r = e.asElement().hasClass(U) ? [e] : [];
508
+ const t = e.querySelectorAll(c.BUTTON), r = e.asElement().hasClass(P) ? [e] : [];
510
509
  return t.length ? t : r;
511
510
  }
512
- }, et = class extends l {
511
+ }, Je = class extends o {
513
512
  getParentControlId() {
514
- return n.BLOCK_BUTTON.BORDER_RADIUS;
513
+ return s.BLOCK_BUTTON.BORDER_RADIUS;
515
514
  }
516
515
  getLabels() {
517
516
  }
518
- }, tt = class extends l {
517
+ }, et = class extends o {
519
518
  getParentControlId() {
520
- return n.BLOCK_BUTTON.ALIGNMENT;
519
+ return s.BLOCK_BUTTON.ALIGNMENT;
521
520
  }
522
- }, rt = class extends l {
521
+ }, tt = class extends o {
523
522
  getParentControlId() {
524
- return n.GENERAL.BACKGROUND_COLOR;
523
+ return s.GENERAL.BACKGROUND_COLOR;
525
524
  }
526
- }, at = class extends l {
525
+ }, rt = class extends o {
527
526
  getParentControlId() {
528
- return n.BLOCK_BUTTON.BORDER;
527
+ return s.BLOCK_BUTTON.BORDER;
529
528
  }
530
529
  getLabels() {
531
530
  }
532
- }, nt = class extends l {
531
+ }, nt = class extends o {
533
532
  getParentControlId() {
534
- return n.BLOCK_BUTTON.COLOR;
533
+ return s.BLOCK_BUTTON.COLOR;
535
534
  }
536
- }, st = class extends l {
535
+ }, st = class extends o {
537
536
  getParentControlId() {
538
- return n.BLOCK_BUTTON.ADJUST_TO_WIDTH;
537
+ return s.BLOCK_BUTTON.ADJUST_TO_WIDTH;
539
538
  }
540
- }, it = class extends l {
539
+ }, at = class extends o {
541
540
  getParentControlId() {
542
- return n.BLOCK_BUTTON.FONT_FAMILY;
541
+ return s.BLOCK_BUTTON.FONT_FAMILY;
543
542
  }
544
- }, lt = class extends l {
543
+ }, it = class extends o {
545
544
  getParentControlId() {
546
- return n.BLOCK_BUTTON.EXTERNAL_INDENTS;
545
+ return s.BLOCK_BUTTON.EXTERNAL_INDENTS;
547
546
  }
548
- }, Et = class extends l {
547
+ }, ot = class extends o {
549
548
  getParentControlId() {
550
- return n.BLOCK_BUTTON.INTERNAL_INDENTS;
549
+ return s.BLOCK_BUTTON.INTERNAL_INDENTS;
551
550
  }
552
- }, ot = class extends l {
551
+ }, lt = class extends o {
553
552
  getParentControlId() {
554
- return n.BLOCK_BUTTON.TEXT;
553
+ return s.BLOCK_BUTTON.TEXT;
555
554
  }
556
- }, dt = class extends l {
555
+ }, Et = class extends o {
557
556
  getParentControlId() {
558
- return n.BLOCK_BUTTON.FONT_SIZE;
557
+ return s.BLOCK_BUTTON.FONT_SIZE;
559
558
  }
560
- }, ut = class extends l {
559
+ }, dt = class extends o {
561
560
  getParentControlId() {
562
- return n.BLOCK_BUTTON.TEXT_STYLE_AND_COLOR;
561
+ return s.BLOCK_BUTTON.TEXT_STYLE_AND_COLOR;
563
562
  }
564
563
  getLabels() {
565
564
  }
566
- }, G = class h extends i {
565
+ }, X = class h extends i {
567
566
  constructor() {
568
567
  super(h.REQUIRED_METHODS, h);
569
568
  }
@@ -618,8 +617,8 @@ var j = {
618
617
  onDocumentChanged(t) {
619
618
  }
620
619
  };
621
- G.REQUIRED_METHODS = ["getId", "getTemplate"];
622
- var ct = G, pe = class m extends i {
620
+ X.REQUIRED_METHODS = ["getId", "getTemplate"];
621
+ var ut = X, He = class m extends i {
623
622
  constructor() {
624
623
  super(m.REQUIRED_METHODS, m);
625
624
  }
@@ -688,21 +687,21 @@ var ct = G, pe = class m extends i {
688
687
  onDestroy() {
689
688
  }
690
689
  };
691
- pe.REQUIRED_METHODS = ["getId", "getIcon", "getName", "getTemplate", "getTabIndex"];
692
- var V = class extends v {
690
+ He.REQUIRED_METHODS = ["getId", "getIcon", "getName", "getTemplate", "getTabIndex"];
691
+ var G = class extends v {
693
692
  getTargetNodes(e) {
694
- const t = e.querySelectorAll(c.IMAGE), r = e.asElement().hasClass(K) ? [e] : [];
693
+ const t = e.querySelectorAll(c.IMAGE), r = e.asElement().hasClass(U) ? [e] : [];
695
694
  return t.length ? t : r;
696
695
  }
697
- }, Tt = class extends V {
696
+ }, ct = class extends G {
698
697
  getParentControlId() {
699
- return n.BLOCK_IMAGE.EXTERNAL_INDENTS;
698
+ return s.BLOCK_IMAGE.EXTERNAL_INDENTS;
700
699
  }
701
- }, It = class extends V {
700
+ }, Tt = class extends G {
702
701
  getParentControlId() {
703
- return n.BLOCK_IMAGE.SIZE;
702
+ return s.BLOCK_IMAGE.SIZE;
704
703
  }
705
- }, Xe = class g extends i {
704
+ }, ke = class g extends i {
706
705
  constructor() {
707
706
  super(g.REQUIRED_METHODS, g);
708
707
  }
@@ -766,8 +765,8 @@ var V = class extends v {
766
765
  onDocumentChanged() {
767
766
  }
768
767
  };
769
- Xe.REQUIRED_METHODS = ["getId", "getIcon", "getName", "getTemplate", "getTabIndex"];
770
- var f = class O extends i {
768
+ ke.REQUIRED_METHODS = ["getId", "getIcon", "getName", "getTemplate", "getTabIndex"];
769
+ var V = class O extends i {
771
770
  constructor() {
772
771
  super(O.REQUIRED_METHODS, O);
773
772
  }
@@ -775,8 +774,8 @@ var f = class O extends i {
775
774
  throw new Error("Method registerBlockControls() must be implemented by the subclass");
776
775
  }
777
776
  };
778
- f.REQUIRED_METHODS = ["registerBlockControls"];
779
- var bt = f, ht = class R {
777
+ V.REQUIRED_METHODS = ["registerBlockControls"];
778
+ var It = V, bt = class R {
780
779
  constructor(t, r) {
781
780
  this.tabId = t, this.controls = r.map(R.normalizeControl);
782
781
  }
@@ -796,11 +795,11 @@ var bt = f, ht = class R {
796
795
  return this.label = t, this;
797
796
  }
798
797
  addControl(t, r) {
799
- const s = R.normalizeControl(t);
800
- return r < 0 ? this.controls.unshift(s) : r > this.controls.length ? this.controls.push(s) : this.controls.splice(r, 0, s), this;
798
+ const a = R.normalizeControl(t);
799
+ return r < 0 ? this.controls.unshift(a) : r > this.controls.length ? this.controls.push(a) : this.controls.splice(r, 0, a), this;
801
800
  }
802
801
  deleteControl(t) {
803
- const r = this.controls.findIndex((s) => s.id === t);
802
+ const r = this.controls.findIndex((a) => a.id === t);
804
803
  r !== -1 && this.controls.splice(r, 1);
805
804
  }
806
805
  static normalizeControl(t) {
@@ -813,42 +812,42 @@ var bt = f, ht = class R {
813
812
  id: t.id
814
813
  };
815
814
  }
816
- }, E = class extends v {
815
+ }, l = class extends v {
817
816
  getTargetNodes(e) {
818
- const t = e.querySelectorAll(c.TEXT), r = e.asElement().hasClass(w) ? [e] : [];
817
+ const t = e.querySelectorAll(c.TEXT), r = e.asElement().hasClass(p) ? [e] : [];
819
818
  return t.length ? t : r;
820
819
  }
821
- }, mt = class extends E {
820
+ }, ht = class extends l {
822
821
  getParentControlId() {
823
- return n.GENERAL.TEXT_ALIGN;
822
+ return s.GENERAL.TEXT_ALIGN;
824
823
  }
825
- }, gt = class extends E {
824
+ }, mt = class extends l {
826
825
  getParentControlId() {
827
- return n.GENERAL.TEXT_COLOR;
826
+ return s.GENERAL.TEXT_COLOR;
828
827
  }
829
- }, Ot = class extends E {
828
+ }, gt = class extends l {
830
829
  getParentControlId() {
831
- return n.BLOCK_TEXT.FONT_FAMILY;
830
+ return s.BLOCK_TEXT.FONT_FAMILY;
832
831
  }
833
- }, Rt = class extends E {
832
+ }, Ot = class extends l {
834
833
  getParentControlId() {
835
- return n.GENERAL.TEXT_LINE_SPACING;
834
+ return s.GENERAL.TEXT_LINE_SPACING;
836
835
  }
837
- }, Lt = class extends E {
836
+ }, Rt = class extends l {
838
837
  getParentControlId() {
839
- return n.BLOCK_TEXT.INTERNAL_INDENTS;
838
+ return s.BLOCK_TEXT.INTERNAL_INDENTS;
840
839
  }
841
- }, _t = class extends E {
840
+ }, Lt = class extends l {
842
841
  getParentControlId() {
843
- return n.GENERAL.TEXT_SIZE;
842
+ return s.GENERAL.TEXT_SIZE;
844
843
  }
845
- }, Ct = class extends E {
844
+ }, _t = class extends l {
846
845
  getParentControlId() {
847
- return n.GENERAL.TEXT_STYLE;
846
+ return s.GENERAL.TEXT_STYLE;
848
847
  }
849
- }, Ge = class {
848
+ }, Xe = class {
850
849
  constructor(e) {
851
- this.uiElements = [], this.controls = [], this.contextActions = [], this.blocks = [], this.generalPanelTabs = [], this.modulesPanelTabs = [], this.i18n = e == null ? void 0 : e.i18n, this.styles = e == null ? void 0 : e.styles, this.previewStyles = e == null ? void 0 : e.previewStyles, this.uiElements = (e == null ? void 0 : e.uiElements) ?? [], this.uiElementTagRegistry = e == null ? void 0 : e.uiElementTagRegistry, this.controls = (e == null ? void 0 : e.controls) ?? [], this.settingsPanelRegistry = e == null ? void 0 : e.settingsPanelRegistry, this.contextActions = (e == null ? void 0 : e.contextActions) ?? [], this.blocks = (e == null ? void 0 : e.blocks) ?? [], this.generalPanelTabs = (e == null ? void 0 : e.generalPanelTabs) ?? [], this.modulesPanelTabs = (e == null ? void 0 : e.modulesPanelTabs) ?? [], this.externalSmartElementsLibrary = e == null ? void 0 : e.externalSmartElementsLibrary, this.externalImageLibrary = e == null ? void 0 : e.externalImageLibrary, this.externalImageLibraryTab = e == null ? void 0 : e.externalImageLibraryTab, this.externalAiAssistant = e == null ? void 0 : e.externalAiAssistant, this.externalDisplayConditionsLibrary = e == null ? void 0 : e.externalDisplayConditionsLibrary, this.externalVideoLibrary = e == null ? void 0 : e.externalVideoLibrary, this.blocksPanel = e == null ? void 0 : e.blocksPanel, this.iconsRegistry = e == null ? void 0 : e.iconsRegistry, this.id = Math.random().toString(36).substring(2);
850
+ this.uiElements = [], this.controls = [], this.contextActions = [], this.blocks = [], this.generalPanelTabs = [], this.modulesPanelTabs = [], this.i18n = e?.i18n, this.styles = e?.styles, this.previewStyles = e?.previewStyles, this.uiElements = e?.uiElements ?? [], this.uiElementTagRegistry = e?.uiElementTagRegistry, this.controls = e?.controls ?? [], this.settingsPanelRegistry = e?.settingsPanelRegistry, this.contextActions = e?.contextActions ?? [], this.blocks = e?.blocks ?? [], this.generalPanelTabs = e?.generalPanelTabs ?? [], this.modulesPanelTabs = e?.modulesPanelTabs ?? [], this.externalSmartElementsLibrary = e?.externalSmartElementsLibrary, this.externalImageLibrary = e?.externalImageLibrary, this.externalImageLibraryTab = e?.externalImageLibraryTab, this.externalAiAssistant = e?.externalAiAssistant, this.externalDisplayConditionsLibrary = e?.externalDisplayConditionsLibrary, this.externalVideoLibrary = e?.externalVideoLibrary, this.blocksPanel = e?.blocksPanel, this.iconsRegistry = e?.iconsRegistry, this.id = Math.random().toString(36).substring(2);
852
851
  }
853
852
  getI18n() {
854
853
  return this.i18n;
@@ -910,7 +909,7 @@ var bt = f, ht = class R {
910
909
  getModulesPanelTabs() {
911
910
  return this.modulesPanelTabs;
912
911
  }
913
- }, At = class {
912
+ }, Ct = class {
914
913
  constructor() {
915
914
  this.styles = [], this.uiElements = [], this.controls = [], this.contextActions = [], this.blocks = [], this.generalPanelTabs = [], this.modulesPanelTabs = [];
916
915
  }
@@ -981,7 +980,7 @@ var bt = f, ht = class R {
981
980
  return this.modulesPanelTabs.push(e), this;
982
981
  }
983
982
  build() {
984
- return new Ge({
983
+ return new Xe({
985
984
  i18n: this.i18n,
986
985
  styles: this.styles.map((e) => e.trim()).join(`
987
986
  `),
@@ -1004,7 +1003,7 @@ var bt = f, ht = class R {
1004
1003
  modulesPanelTabs: this.modulesPanelTabs
1005
1004
  });
1006
1005
  }
1007
- }, Ve = class L extends i {
1006
+ }, Ge = class L extends i {
1008
1007
  constructor() {
1009
1008
  super(L.REQUIRED_METHODS, L);
1010
1009
  }
@@ -1012,8 +1011,8 @@ var bt = f, ht = class R {
1012
1011
  throw new Error("Method openAiAssistant() must be implemented by the subclass");
1013
1012
  }
1014
1013
  };
1015
- Ve.REQUIRED_METHODS = ["openAiAssistant"];
1016
- var fe = class _ extends i {
1014
+ Ge.REQUIRED_METHODS = ["openAiAssistant"];
1015
+ var Ve = class _ extends i {
1017
1016
  constructor() {
1018
1017
  super(_.REQUIRED_METHODS, _);
1019
1018
  }
@@ -1032,7 +1031,7 @@ var fe = class _ extends i {
1032
1031
  * @param {ExternalDisplayConditionSelectedCB} _successCallback - Callback executed with the updated or newly created condition upon success.
1033
1032
  * @param {() => void} _cancelCallback - Callback executed when the dialog is closed without making changes.
1034
1033
  */
1035
- openExternalDisplayConditionsDialog(t, r, s) {
1034
+ openExternalDisplayConditionsDialog(t, r, a) {
1036
1035
  throw new Error("Method openExternalDisplayConditionsDialog() must be implemented by the subclass");
1037
1036
  }
1038
1037
  /**
@@ -1053,17 +1052,17 @@ var fe = class _ extends i {
1053
1052
  throw new Error("Method getContextActionIndex() must be implemented by the subclass");
1054
1053
  }
1055
1054
  };
1056
- fe.REQUIRED_METHODS = ["getCategoryName", "openExternalDisplayConditionsDialog"];
1057
- var Qe = class C extends i {
1055
+ Ve.REQUIRED_METHODS = ["getCategoryName", "openExternalDisplayConditionsDialog"];
1056
+ var fe = class C extends i {
1058
1057
  constructor() {
1059
1058
  super(C.REQUIRED_METHODS, C);
1060
1059
  }
1061
- openImageLibrary(t, r, s) {
1060
+ openImageLibrary(t, r, a) {
1062
1061
  throw new Error("Method openImageLibrary() must be implemented by the subclass");
1063
1062
  }
1064
1063
  };
1065
- Qe.REQUIRED_METHODS = ["openImageLibrary"];
1066
- var Ye = class A extends i {
1064
+ fe.REQUIRED_METHODS = ["openImageLibrary"];
1065
+ var Qe = class A extends i {
1067
1066
  constructor() {
1068
1067
  super(A.REQUIRED_METHODS, A);
1069
1068
  }
@@ -1080,12 +1079,12 @@ var Ye = class A extends i {
1080
1079
  * @param _onImageSelectCallback - Callback to invoke when an image is selected
1081
1080
  * @param _selectedNode - (Optional) Selected node for which the gallery is being opened
1082
1081
  */
1083
- openImageLibraryTab(t, r, s) {
1082
+ openImageLibraryTab(t, r, a) {
1084
1083
  throw new Error("Method openImageLibraryTab() must be implemented by the subclass");
1085
1084
  }
1086
1085
  };
1087
- Ye.REQUIRED_METHODS = ["getName", "openImageLibraryTab"];
1088
- var $e = class N extends i {
1086
+ Qe.REQUIRED_METHODS = ["getName", "openImageLibraryTab"];
1087
+ var Ye = class N extends i {
1089
1088
  constructor() {
1090
1089
  super(N.REQUIRED_METHODS, N);
1091
1090
  }
@@ -1093,17 +1092,17 @@ var $e = class N extends i {
1093
1092
  throw new Error("Method openSmartElementsLibrary() must be implemented by the subclass");
1094
1093
  }
1095
1094
  };
1096
- $e.REQUIRED_METHODS = ["openSmartElementsLibrary"];
1097
- var We = class D extends i {
1095
+ Ye.REQUIRED_METHODS = ["openSmartElementsLibrary"];
1096
+ var $e = class D extends i {
1098
1097
  constructor() {
1099
1098
  super(D.REQUIRED_METHODS, D);
1100
1099
  }
1101
- openExternalVideosLibraryDialog(t, r, s) {
1100
+ openExternalVideosLibraryDialog(t, r, a) {
1102
1101
  throw new Error("Method openExternalVideosLibraryDialog() must be implemented by the subclass");
1103
1102
  }
1104
1103
  };
1105
- We.REQUIRED_METHODS = ["openExternalVideosLibraryDialog"];
1106
- var Q = class S extends i {
1104
+ $e.REQUIRED_METHODS = ["openExternalVideosLibraryDialog"];
1105
+ var f = class S extends i {
1107
1106
  constructor() {
1108
1107
  super(S.REQUIRED_METHODS, S);
1109
1108
  }
@@ -1111,8 +1110,8 @@ var Q = class S extends i {
1111
1110
  throw new Error("Method registerIconsSvg() must be implemented by the subclass");
1112
1111
  }
1113
1112
  };
1114
- Q.REQUIRED_METHODS = ["registerIconsSvg"];
1115
- var Nt = Q, Dt = class {
1113
+ f.REQUIRED_METHODS = ["registerIconsSvg"];
1114
+ var At = f, Nt = class {
1116
1115
  constructor(e) {
1117
1116
  this.key = e;
1118
1117
  }
@@ -1125,7 +1124,7 @@ var Nt = Q, Dt = class {
1125
1124
  params: this.params
1126
1125
  };
1127
1126
  }
1128
- }, Y = class M extends i {
1127
+ }, Q = class M extends i {
1129
1128
  constructor() {
1130
1129
  super(M.REQUIRED_METHODS, M);
1131
1130
  }
@@ -1180,8 +1179,8 @@ var Nt = Q, Dt = class {
1180
1179
  throw new Error("Method getTemplate() must be implemented by the subclass");
1181
1180
  }
1182
1181
  };
1183
- Y.REQUIRED_METHODS = ["onRender", "getId", "getTemplate"];
1184
- var St = Y, $ = class B extends i {
1182
+ Q.REQUIRED_METHODS = ["onRender", "getId", "getTemplate"];
1183
+ var Dt = Q, Y = class B extends i {
1185
1184
  constructor() {
1186
1185
  super(B.REQUIRED_METHODS, B);
1187
1186
  }
@@ -1189,55 +1188,55 @@ var St = Y, $ = class B extends i {
1189
1188
  throw new Error("Method registerUiElements() must be implemented by the subclass");
1190
1189
  }
1191
1190
  };
1192
- $.REQUIRED_METHODS = ["registerUiElements"];
1193
- var Mt = $;
1191
+ Y.REQUIRED_METHODS = ["registerUiElements"];
1192
+ var St = Y;
1194
1193
  export {
1195
- Ze as Block,
1196
- je as BlockAttr,
1197
- z as BlockCompositionType,
1194
+ ze as Block,
1195
+ qe as BlockAttr,
1196
+ W as BlockCompositionType,
1198
1197
  c as BlockSelector,
1199
- de as BlockType,
1200
- qe as BlocksPanel,
1198
+ Ee as BlockType,
1199
+ Ze as BlocksPanel,
1201
1200
  v as BuiltInControl,
1202
- n as BuiltInControlTypes,
1203
- tt as ButtonAlignBuiltInControl,
1204
- rt as ButtonBackgroundColorBuiltInControl,
1205
- at as ButtonBorderBuiltInControl,
1206
- et as ButtonBorderRadiusBuiltInControl,
1201
+ s as BuiltInControlTypes,
1202
+ et as ButtonAlignBuiltInControl,
1203
+ tt as ButtonBackgroundColorBuiltInControl,
1204
+ rt as ButtonBorderBuiltInControl,
1205
+ Je as ButtonBorderRadiusBuiltInControl,
1207
1206
  nt as ButtonColorBuiltInControl,
1208
- H as ButtonControls,
1207
+ K as ButtonControls,
1209
1208
  st as ButtonFitToContainerBuiltInControl,
1210
- it as ButtonFontFamilyBuiltInControl,
1211
- lt as ButtonMarginsBuiltInControl,
1212
- Et as ButtonPaddingsBuiltInControl,
1213
- ot as ButtonTextBuiltInControl,
1214
- dt as ButtonTextSizeBuiltInControl,
1215
- ut as ButtonTextStyleAndFontColorBuiltInControl,
1216
- ue as ContainerControls,
1217
- ct as Control,
1218
- ce as EditorStatePropertyType,
1219
- Ge as Extension,
1220
- At as ExtensionBuilder,
1221
- F as GeneralControls,
1222
- Nt as IconsRegistry,
1223
- p as ImageControls,
1224
- Tt as ImageMarginsBuiltInControl,
1225
- It as ImageSizeBuiltInControl,
1226
- Dt as ModificationDescription,
1227
- Te as PreviewDeviceMode,
1228
- bt as SettingsPanelRegistry,
1229
- ht as SettingsPanelTab,
1230
- Ie as SettingsTab,
1231
- mt as TextAlignBuiltInControl,
1232
- gt as TextColorBuiltInControl,
1233
- k as TextControls,
1234
- Ot as TextFontFamilyBuiltInControl,
1235
- Rt as TextLineSpacingBuiltInControl,
1236
- Lt as TextPaddingsBuiltInControl,
1237
- _t as TextSizeBuiltInControl,
1238
- Ct as TextStyleBuiltInControl,
1239
- Je as UEAttr,
1240
- St as UIElement,
1241
- Mt as UIElementTagRegistry,
1242
- ke as UIElementType
1209
+ at as ButtonFontFamilyBuiltInControl,
1210
+ it as ButtonMarginsBuiltInControl,
1211
+ ot as ButtonPaddingsBuiltInControl,
1212
+ lt as ButtonTextBuiltInControl,
1213
+ Et as ButtonTextSizeBuiltInControl,
1214
+ dt as ButtonTextStyleAndFontColorBuiltInControl,
1215
+ de as ContainerControls,
1216
+ ut as Control,
1217
+ ue as EditorStatePropertyType,
1218
+ Xe as Extension,
1219
+ Ct as ExtensionBuilder,
1220
+ w as GeneralControls,
1221
+ At as IconsRegistry,
1222
+ H as ImageControls,
1223
+ ct as ImageMarginsBuiltInControl,
1224
+ Tt as ImageSizeBuiltInControl,
1225
+ Nt as ModificationDescription,
1226
+ ce as PreviewDeviceMode,
1227
+ It as SettingsPanelRegistry,
1228
+ bt as SettingsPanelTab,
1229
+ Te as SettingsTab,
1230
+ ht as TextAlignBuiltInControl,
1231
+ mt as TextColorBuiltInControl,
1232
+ F as TextControls,
1233
+ gt as TextFontFamilyBuiltInControl,
1234
+ Ot as TextLineSpacingBuiltInControl,
1235
+ Rt as TextPaddingsBuiltInControl,
1236
+ Lt as TextSizeBuiltInControl,
1237
+ _t as TextStyleBuiltInControl,
1238
+ je as UEAttr,
1239
+ Dt as UIElement,
1240
+ St as UIElementTagRegistry,
1241
+ Fe as UIElementType
1243
1242
  };