@useinsider/guido 2.1.0-beta.efb0c6b → 2.1.0-beta.f1f7f05

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 (327) hide show
  1. package/README.md +36 -0
  2. package/dist/@types/config/schemas.js +71 -66
  3. package/dist/components/Guido.vue.js +3 -3
  4. package/dist/components/Guido.vue2.js +74 -61
  5. package/dist/components/organisms/base/Toaster.vue.js +6 -6
  6. package/dist/components/organisms/email-preview/PreviewContainer.vue.js +3 -3
  7. package/dist/components/organisms/email-preview/amp/AmpErrorModal.vue.js +6 -6
  8. package/dist/components/organisms/email-preview/amp/AmpErrorModal.vue2.js +17 -13
  9. package/dist/components/organisms/email-preview/amp/AmpToggle.vue.js +6 -6
  10. package/dist/components/organisms/email-preview/amp/AmpToggle.vue2.js +14 -12
  11. package/dist/components/organisms/email-preview/desktop-preview/DesktopBrowserHeader.vue.js +18 -0
  12. package/dist/components/organisms/email-preview/desktop-preview/DesktopBrowserHeader.vue2.js +15 -0
  13. package/dist/components/organisms/email-preview/desktop-preview/DesktopPreview.vue.js +16 -15
  14. package/dist/components/organisms/email-preview/desktop-preview/DesktopPreview.vue2.js +14 -22
  15. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue.js +5 -5
  16. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue2.js +2 -2
  17. package/dist/components/organisms/email-preview/mobile-preview/ContentView.vue.js +12 -11
  18. package/dist/components/organisms/email-preview/mobile-preview/InboxView.vue.js +12 -10
  19. package/dist/components/organisms/email-preview/mobile-preview/MobilePreview.vue.js +11 -10
  20. package/dist/components/organisms/email-preview/mobile-preview/MobilePreview.vue2.js +15 -14
  21. package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +15 -14
  22. package/dist/components/organisms/header/EditorActions.vue.js +21 -0
  23. package/dist/components/organisms/header/EditorActions.vue2.js +41 -0
  24. package/dist/components/organisms/header/EditorToolbar.vue.js +18 -0
  25. package/dist/components/organisms/header/EditorToolbar.vue2.js +17 -0
  26. package/dist/components/organisms/header/HeaderWrapper.vue.js +10 -9
  27. package/dist/components/organisms/header/LeftSlot.vue.js +11 -11
  28. package/dist/components/organisms/header/LeftSlot.vue2.js +27 -23
  29. package/dist/components/organisms/header/MiddleSlot.vue.js +7 -7
  30. package/dist/components/organisms/header/MiddleSlot.vue2.js +11 -15
  31. package/dist/components/organisms/header/RightSlot.vue.js +11 -14
  32. package/dist/components/organisms/header/RightSlot.vue2.js +13 -30
  33. package/dist/components/organisms/header/version-history/VersionHistory.vue.js +5 -5
  34. package/dist/components/organisms/onboarding/NewVersionPopup.vue2.js +15 -15
  35. package/dist/components/organisms/unsubscribe/UnsubscribeTypeSelection.vue.js +1 -1
  36. package/dist/components/organisms/unsubscribe/UnsubscribeTypeSelection.vue2.js +20 -19
  37. package/dist/composables/useActionsApi.js +37 -32
  38. package/dist/composables/useBlocksConfig.js +26 -16
  39. package/dist/composables/useHtmlValidator.js +114 -104
  40. package/dist/composables/useRecommendation.js +54 -21
  41. package/dist/config/compiler/recommendationCompilerRules.js +45 -39
  42. package/dist/config/compiler/utils/recommendationCompilerUtils.js +121 -0
  43. package/dist/config/migrator/index.js +9 -8
  44. package/dist/config/migrator/itemsBlockMigrator.js +355 -0
  45. package/dist/config/migrator/recommendationMigrator.js +2 -2
  46. package/dist/enums/academy.js +8 -0
  47. package/dist/enums/defaults.js +8 -4
  48. package/dist/enums/extensions/recommendationBlock.js +1 -1
  49. package/dist/enums/onboarding.js +1 -2
  50. package/dist/enums/recommendation.js +16 -15
  51. package/dist/enums/unsubscribe.js +20 -21
  52. package/dist/extensions/Blocks/Items/block.js +28 -41
  53. package/dist/extensions/Blocks/Items/controls/button/link.js +18 -37
  54. package/dist/extensions/Blocks/Items/controls/cardComposition.js +164 -96
  55. package/dist/extensions/Blocks/Items/controls/image/link.js +16 -35
  56. package/dist/extensions/Blocks/Items/controls/name/trimming.js +30 -42
  57. package/dist/extensions/Blocks/Items/controls/price/currencyLocation.js +35 -45
  58. package/dist/extensions/Blocks/Items/controls/price/currencySymbol.js +56 -59
  59. package/dist/extensions/Blocks/Items/controls/price/formattedPrice.js +45 -48
  60. package/dist/extensions/Blocks/Items/controls/price/hideDiscount.js +23 -34
  61. package/dist/extensions/Blocks/Items/controls/price/priceOrientation.js +47 -57
  62. package/dist/extensions/Blocks/Items/controls/price/singlePrice.js +75 -0
  63. package/dist/extensions/Blocks/Items/controls/settingsControl.js +198 -184
  64. package/dist/extensions/Blocks/Items/enums/controlEnums.js +2 -2
  65. package/dist/extensions/Blocks/Items/enums/productEnums.js +43 -45
  66. package/dist/extensions/Blocks/Items/enums/settingsEnums.js +3 -6
  67. package/dist/extensions/Blocks/Items/extension.js +7 -6
  68. package/dist/extensions/Blocks/Items/layouts/horizontal.html.js +58 -49
  69. package/dist/extensions/Blocks/Items/layouts/vertical.html.js +48 -59
  70. package/dist/extensions/Blocks/Items/settingsPanel.js +28 -32
  71. package/dist/extensions/Blocks/Items/template.js +397 -143
  72. package/dist/extensions/Blocks/Items/utils/nodeConfigUtils.js +176 -0
  73. package/dist/extensions/Blocks/Recommendation/block.js +133 -9
  74. package/dist/extensions/Blocks/Recommendation/constants/blockIds.js +4 -0
  75. package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +4 -0
  76. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +66 -0
  77. package/dist/extensions/Blocks/Recommendation/constants/layout.js +22 -0
  78. package/dist/extensions/Blocks/Recommendation/constants/selectors.js +21 -0
  79. package/dist/extensions/Blocks/Recommendation/controls/button/index.js +64 -0
  80. package/dist/extensions/Blocks/Recommendation/controls/cardBackground/index.js +80 -0
  81. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +232 -0
  82. package/dist/extensions/Blocks/Recommendation/controls/image/index.js +19 -0
  83. package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +92 -0
  84. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +102 -0
  85. package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +209 -0
  86. package/dist/extensions/Blocks/Recommendation/controls/main/filters.js +52 -0
  87. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +250 -0
  88. package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +70 -0
  89. package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +160 -0
  90. package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +67 -0
  91. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +307 -0
  92. package/dist/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.js +21 -0
  93. package/dist/extensions/Blocks/Recommendation/controls/name/index.js +46 -0
  94. package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +108 -0
  95. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/index.js +44 -0
  96. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.js +48 -0
  97. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.js +73 -0
  98. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.js +73 -0
  99. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/index.js +48 -0
  100. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.js +73 -0
  101. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.js +73 -0
  102. package/dist/extensions/Blocks/Recommendation/controls/price/index.js +44 -0
  103. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +222 -0
  104. package/dist/extensions/Blocks/Recommendation/extension.js +40 -43
  105. package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +19 -3
  106. package/dist/extensions/Blocks/Recommendation/recommendation.css.js +13 -4
  107. package/dist/extensions/Blocks/Recommendation/services/configService.js +240 -0
  108. package/dist/extensions/Blocks/Recommendation/settingsPanel.js +128 -72
  109. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +254 -207
  110. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +228 -0
  111. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +251 -0
  112. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +66 -0
  113. package/dist/extensions/Blocks/Recommendation/templates/index.js +12 -0
  114. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +169 -0
  115. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +73 -0
  116. package/dist/extensions/Blocks/Recommendation/templates/utils.js +134 -0
  117. package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +6 -0
  118. package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +9 -9
  119. package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +36 -0
  120. package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +29 -0
  121. package/dist/extensions/Blocks/Recommendation/utils/tagName.js +46 -0
  122. package/dist/extensions/Blocks/common-control.js +104 -106
  123. package/dist/extensions/Blocks/controlFactories.js +162 -120
  124. package/dist/extensions/ModulesTabIcons/extension.js +17 -0
  125. package/dist/guido.css +1 -1
  126. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +520 -322
  127. package/dist/package.json.js +1 -1
  128. package/dist/services/recommendationApi.js +11 -8
  129. package/dist/services/templateLibraryApi.js +16 -13
  130. package/dist/src/@types/config/schemas.d.ts +10 -2
  131. package/dist/src/components/organisms/email-preview/desktop-preview/DesktopBrowserHeader.vue.d.ts +2 -0
  132. package/dist/src/components/organisms/header/EditorActions.vue.d.ts +4 -0
  133. package/dist/src/components/organisms/header/EditorToolbar.vue.d.ts +2 -0
  134. package/dist/src/components/organisms/header/RightSlot.vue.d.ts +1 -1
  135. package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
  136. package/dist/src/composables/useActionsApi.d.ts +1 -0
  137. package/dist/src/composables/useConfig.d.ts +4 -0
  138. package/dist/src/composables/useRecommendation.d.ts +1 -0
  139. package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +17 -0
  140. package/dist/src/config/migrator/itemsBlockMigrator.d.ts +6 -0
  141. package/dist/src/enums/academy.d.ts +12 -0
  142. package/dist/src/enums/defaults.d.ts +4 -0
  143. package/dist/src/enums/onboarding.d.ts +0 -1
  144. package/dist/src/enums/unsubscribe.d.ts +0 -1
  145. package/dist/src/extensions/Blocks/Items/block.d.ts +0 -1
  146. package/dist/src/extensions/Blocks/Items/controls/button/link.d.ts +0 -3
  147. package/dist/src/extensions/Blocks/Items/controls/cardComposition.d.ts +13 -4
  148. package/dist/src/extensions/Blocks/Items/controls/image/link.d.ts +0 -3
  149. package/dist/src/extensions/Blocks/Items/controls/name/trimming.d.ts +0 -1
  150. package/dist/src/extensions/Blocks/Items/controls/price/currencyLocation.d.ts +0 -1
  151. package/dist/src/extensions/Blocks/Items/controls/price/currencySymbol.d.ts +0 -1
  152. package/dist/src/extensions/Blocks/Items/controls/price/formattedPrice.d.ts +0 -1
  153. package/dist/src/extensions/Blocks/Items/controls/price/hideDiscount.d.ts +0 -1
  154. package/dist/src/extensions/Blocks/Items/controls/price/priceOrientation.d.ts +1 -2
  155. package/dist/src/extensions/Blocks/Items/controls/price/singlePrice.d.ts +13 -0
  156. package/dist/src/extensions/Blocks/Items/controls/settingsControl.d.ts +10 -16
  157. package/dist/src/extensions/Blocks/Items/enums/controlEnums.d.ts +1 -0
  158. package/dist/src/extensions/Blocks/Items/enums/productEnums.d.ts +24 -26
  159. package/dist/src/extensions/Blocks/Items/enums/settingsEnums.d.ts +1 -2
  160. package/dist/src/extensions/Blocks/Items/template.d.ts +22 -1
  161. package/dist/src/extensions/Blocks/Items/utils/nodeConfigUtils.d.ts +77 -0
  162. package/dist/src/extensions/Blocks/Recommendation/block.d.ts +67 -0
  163. package/dist/src/extensions/Blocks/Recommendation/constants/blockIds.d.ts +13 -0
  164. package/dist/src/extensions/Blocks/Recommendation/{constants.d.ts → constants/controlIds.d.ts} +19 -11
  165. package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +49 -0
  166. package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +13 -0
  167. package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +41 -0
  168. package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +35 -0
  169. package/dist/src/extensions/Blocks/Recommendation/controls/button/index.d.ts +143 -0
  170. package/dist/src/extensions/Blocks/Recommendation/controls/cardBackground/index.d.ts +31 -0
  171. package/dist/src/extensions/Blocks/Recommendation/controls/cardBackgroundColorControl.d.ts +25 -0
  172. package/dist/src/extensions/Blocks/Recommendation/controls/cardComposition/index.d.ts +95 -0
  173. package/dist/src/extensions/Blocks/Recommendation/controls/image/index.d.ts +35 -0
  174. package/dist/src/extensions/Blocks/Recommendation/controls/index.d.ts +24 -0
  175. package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +37 -0
  176. package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +29 -0
  177. package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +52 -0
  178. package/dist/src/extensions/Blocks/Recommendation/controls/main/filters.d.ts +22 -0
  179. package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +79 -0
  180. package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +24 -0
  181. package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +60 -0
  182. package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +23 -0
  183. package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +221 -0
  184. package/dist/src/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.d.ts +29 -0
  185. package/dist/src/extensions/Blocks/Recommendation/controls/name/index.d.ts +97 -0
  186. package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +34 -0
  187. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/index.d.ts +95 -0
  188. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.d.ts +100 -0
  189. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.d.ts +15 -0
  190. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.d.ts +15 -0
  191. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscountTextAfterControl.d.ts +15 -0
  192. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscountTextBeforeControl.d.ts +15 -0
  193. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/index.d.ts +100 -0
  194. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.d.ts +15 -0
  195. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.d.ts +15 -0
  196. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPriceTextAfterControl.d.ts +15 -0
  197. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPriceTextBeforeControl.d.ts +15 -0
  198. package/dist/src/extensions/Blocks/Recommendation/controls/price/index.d.ts +95 -0
  199. package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +83 -0
  200. package/dist/src/extensions/Blocks/Recommendation/controls/spacingControl.d.ts +60 -0
  201. package/dist/src/extensions/Blocks/Recommendation/extension.d.ts +9 -0
  202. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +151 -0
  203. package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +6 -0
  204. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +138 -468
  205. package/dist/src/extensions/Blocks/Recommendation/templates/grid/elementRenderer.d.ts +20 -0
  206. package/dist/src/extensions/Blocks/Recommendation/templates/{migrationTemplate.d.ts → grid/migration.d.ts} +11 -4
  207. package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +33 -0
  208. package/dist/src/extensions/Blocks/Recommendation/templates/index.d.ts +41 -0
  209. package/dist/src/extensions/Blocks/Recommendation/templates/list/elementRenderer.d.ts +8 -0
  210. package/dist/src/extensions/Blocks/Recommendation/templates/list/migration.d.ts +25 -0
  211. package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +18 -0
  212. package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +66 -0
  213. package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +7 -0
  214. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +166 -0
  215. package/dist/src/extensions/Blocks/Recommendation/utils/preserveTextStyles.d.ts +19 -0
  216. package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +33 -0
  217. package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +113 -0
  218. package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +77 -0
  219. package/dist/src/extensions/Blocks/common-control.d.ts +10 -12
  220. package/dist/src/extensions/ModulesTabIcons/extension.d.ts +2 -0
  221. package/dist/src/stores/config.d.ts +36 -0
  222. package/dist/src/stores/editor.d.ts +21 -0
  223. package/dist/static/assets/desktop/desktop-mockup-center.svg.js +4 -0
  224. package/dist/static/assets/desktop/desktop-mockup-left.svg.js +4 -0
  225. package/dist/static/assets/desktop/desktop-mockup-right.svg.js +4 -0
  226. package/dist/static/assets/mobile/email-mockup.svg.js +4 -0
  227. package/dist/static/assets/mobile/inbox-mockup.svg.js +4 -0
  228. package/dist/static/styles/components/notification.css.js +1 -0
  229. package/dist/static/styles/components/version-history.css.js +10 -2
  230. package/dist/static/styles/components/wide-panel.css.js +18 -6
  231. package/dist/static/styles/customEditorStyle.css.js +39 -2
  232. package/dist/stores/editor.js +1 -0
  233. package/dist/utils/pairProductVariables.js +74 -70
  234. package/dist/utils/templatePreparation.js +19 -18
  235. package/package.json +3 -3
  236. package/dist/components/organisms/email-preview/desktop-preview/EmailHeaderInfo.vue.js +0 -17
  237. package/dist/components/organisms/email-preview/desktop-preview/EmailHeaderInfo.vue2.js +0 -20
  238. package/dist/extensions/Blocks/Items/store/items-block.js +0 -75
  239. package/dist/extensions/Blocks/Items/utils/configBlockUtils.js +0 -17
  240. package/dist/extensions/Blocks/Items/utils/syncAttributeFromConfigBlock.js +0 -28
  241. package/dist/extensions/Blocks/Items/utils/syncAttributesFromConfigBlock.js +0 -76
  242. package/dist/extensions/Blocks/Items/utils/updateAttributes.js +0 -46
  243. package/dist/extensions/Blocks/Recommendation/cardCompositionControl.js +0 -103
  244. package/dist/extensions/Blocks/Recommendation/constants.js +0 -5
  245. package/dist/extensions/Blocks/Recommendation/control.js +0 -306
  246. package/dist/extensions/Blocks/Recommendation/controls/button/align.js +0 -13
  247. package/dist/extensions/Blocks/Recommendation/controls/button/border.js +0 -13
  248. package/dist/extensions/Blocks/Recommendation/controls/button/borderRadius.js +0 -13
  249. package/dist/extensions/Blocks/Recommendation/controls/button/color.js +0 -13
  250. package/dist/extensions/Blocks/Recommendation/controls/button/fitToContent.js +0 -13
  251. package/dist/extensions/Blocks/Recommendation/controls/button/fontFamily.js +0 -13
  252. package/dist/extensions/Blocks/Recommendation/controls/button/margins.js +0 -13
  253. package/dist/extensions/Blocks/Recommendation/controls/button/paddings.js +0 -13
  254. package/dist/extensions/Blocks/Recommendation/controls/button/text.js +0 -13
  255. package/dist/extensions/Blocks/Recommendation/controls/button/textSize.js +0 -13
  256. package/dist/extensions/Blocks/Recommendation/controls/button/textStyleAndFontColor.js +0 -13
  257. package/dist/extensions/Blocks/Recommendation/controls/image/margins.js +0 -13
  258. package/dist/extensions/Blocks/Recommendation/controls/image/size.js +0 -13
  259. package/dist/extensions/Blocks/Recommendation/controls/name/align.js +0 -13
  260. package/dist/extensions/Blocks/Recommendation/controls/name/background.js +0 -13
  261. package/dist/extensions/Blocks/Recommendation/controls/name/color.js +0 -13
  262. package/dist/extensions/Blocks/Recommendation/controls/name/fontFamily.js +0 -13
  263. package/dist/extensions/Blocks/Recommendation/controls/name/paddings.js +0 -13
  264. package/dist/extensions/Blocks/Recommendation/controls/name/size.js +0 -13
  265. package/dist/extensions/Blocks/Recommendation/controls/name/style.js +0 -13
  266. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/align.js +0 -13
  267. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/background.js +0 -13
  268. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/color.js +0 -13
  269. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/fontFamily.js +0 -13
  270. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/paddings.js +0 -13
  271. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/size.js +0 -13
  272. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/style.js +0 -13
  273. package/dist/extensions/Blocks/Recommendation/controls/price/align.js +0 -13
  274. package/dist/extensions/Blocks/Recommendation/controls/price/background.js +0 -13
  275. package/dist/extensions/Blocks/Recommendation/controls/price/color.js +0 -13
  276. package/dist/extensions/Blocks/Recommendation/controls/price/fontFamily.js +0 -13
  277. package/dist/extensions/Blocks/Recommendation/controls/price/paddings.js +0 -13
  278. package/dist/extensions/Blocks/Recommendation/controls/price/size.js +0 -13
  279. package/dist/extensions/Blocks/Recommendation/controls/price/style.js +0 -13
  280. package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +0 -160
  281. package/dist/extensions/Blocks/Recommendation/templates/migrationTemplate.js +0 -152
  282. package/dist/extensions/Blocks/Recommendation/templates/templateUtils.js +0 -180
  283. package/dist/src/extensions/Blocks/Items/store/items-block.d.ts +0 -43
  284. package/dist/src/extensions/Blocks/Items/utils/configBlockUtils.d.ts +0 -23
  285. package/dist/src/extensions/Blocks/Items/utils/syncAttributeFromConfigBlock.d.ts +0 -32
  286. package/dist/src/extensions/Blocks/Items/utils/syncAttributesFromConfigBlock.d.ts +0 -50
  287. package/dist/src/extensions/Blocks/Items/utils/updateAttributes.d.ts +0 -8
  288. package/dist/src/extensions/Blocks/Recommendation/cardCompositionControl.d.ts +0 -28
  289. package/dist/src/extensions/Blocks/Recommendation/control.d.ts +0 -35
  290. package/dist/src/extensions/Blocks/Recommendation/controls/button/align.d.ts +0 -5
  291. package/dist/src/extensions/Blocks/Recommendation/controls/button/border.d.ts +0 -5
  292. package/dist/src/extensions/Blocks/Recommendation/controls/button/borderRadius.d.ts +0 -5
  293. package/dist/src/extensions/Blocks/Recommendation/controls/button/color.d.ts +0 -5
  294. package/dist/src/extensions/Blocks/Recommendation/controls/button/fitToContent.d.ts +0 -5
  295. package/dist/src/extensions/Blocks/Recommendation/controls/button/fontFamily.d.ts +0 -5
  296. package/dist/src/extensions/Blocks/Recommendation/controls/button/margins.d.ts +0 -5
  297. package/dist/src/extensions/Blocks/Recommendation/controls/button/paddings.d.ts +0 -5
  298. package/dist/src/extensions/Blocks/Recommendation/controls/button/text.d.ts +0 -5
  299. package/dist/src/extensions/Blocks/Recommendation/controls/button/textSize.d.ts +0 -5
  300. package/dist/src/extensions/Blocks/Recommendation/controls/button/textStyleAndFontColor.d.ts +0 -5
  301. package/dist/src/extensions/Blocks/Recommendation/controls/image/margins.d.ts +0 -5
  302. package/dist/src/extensions/Blocks/Recommendation/controls/image/size.d.ts +0 -5
  303. package/dist/src/extensions/Blocks/Recommendation/controls/name/align.d.ts +0 -5
  304. package/dist/src/extensions/Blocks/Recommendation/controls/name/background.d.ts +0 -5
  305. package/dist/src/extensions/Blocks/Recommendation/controls/name/color.d.ts +0 -5
  306. package/dist/src/extensions/Blocks/Recommendation/controls/name/fontFamily.d.ts +0 -5
  307. package/dist/src/extensions/Blocks/Recommendation/controls/name/paddings.d.ts +0 -5
  308. package/dist/src/extensions/Blocks/Recommendation/controls/name/size.d.ts +0 -5
  309. package/dist/src/extensions/Blocks/Recommendation/controls/name/style.d.ts +0 -5
  310. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/align.d.ts +0 -5
  311. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/background.d.ts +0 -5
  312. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/color.d.ts +0 -5
  313. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/fontFamily.d.ts +0 -5
  314. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/paddings.d.ts +0 -5
  315. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/size.d.ts +0 -5
  316. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/style.d.ts +0 -5
  317. package/dist/src/extensions/Blocks/Recommendation/controls/price/align.d.ts +0 -5
  318. package/dist/src/extensions/Blocks/Recommendation/controls/price/background.d.ts +0 -5
  319. package/dist/src/extensions/Blocks/Recommendation/controls/price/color.d.ts +0 -5
  320. package/dist/src/extensions/Blocks/Recommendation/controls/price/fontFamily.d.ts +0 -5
  321. package/dist/src/extensions/Blocks/Recommendation/controls/price/paddings.d.ts +0 -5
  322. package/dist/src/extensions/Blocks/Recommendation/controls/price/size.d.ts +0 -5
  323. package/dist/src/extensions/Blocks/Recommendation/controls/price/style.d.ts +0 -5
  324. package/dist/src/extensions/Blocks/Recommendation/templates/blockTemplate.d.ts +0 -16
  325. package/dist/src/extensions/Blocks/Recommendation/templates/templateUtils.d.ts +0 -44
  326. package/dist/static/assets/inbox-mockup.svg.js +0 -4
  327. package/dist/static/assets/phone-mockup.svg.js +0 -4
@@ -1,17 +1,17 @@
1
- var M = class u {
1
+ var B = class d {
2
2
  /**
3
3
  * Validates that all required methods are properly implemented in the subclass.
4
4
  * @param requiredMethods - Array of method names that must be implemented
5
5
  * @param classRef - Reference to the class constructor for validation caching
6
6
  */
7
- constructor(e, r) {
8
- if (r !== u) {
9
- u.validatedClasses.has(r) || this.validateImplementation(e, r);
10
- const s = u.validationErrors.get(r);
11
- if (s && s.length > 0)
7
+ constructor(t, n) {
8
+ if (n !== d) {
9
+ d.validatedClasses.has(n) || this.validateImplementation(t, n);
10
+ const i = d.validationErrors.get(n);
11
+ if (i && i.length > 0)
12
12
  throw new Error(
13
- `${r.name} has validation errors:
14
- ${s.map((E) => ` - ${E}`).join(`
13
+ `${n.name} has validation errors:
14
+ ${i.map((o) => ` - ${o}`).join(`
15
15
  `)}`
16
16
  );
17
17
  }
@@ -20,21 +20,21 @@ ${s.map((E) => ` - ${E}`).join(`
20
20
  * Validates that all required methods are properly implemented in the subclass.
21
21
  * This validation runs only once per class type and results are cached.
22
22
  */
23
- validateImplementation(e, r) {
24
- var I;
25
- const s = [], E = r.name, T = Object.getPrototypeOf(this);
26
- e.forEach((d) => {
27
- if (typeof this[d] != "function") {
28
- s.push(`Method ${d}() is not defined`);
23
+ validateImplementation(t, n) {
24
+ var x;
25
+ const i = [], o = n.name, Y = Object.getPrototypeOf(this);
26
+ t.forEach((u) => {
27
+ if (typeof this[u] != "function") {
28
+ i.push(`Method ${u}() is not defined`);
29
29
  return;
30
30
  }
31
- T[d] === r.prototype[d] && s.push(`Method ${d}() must be implemented (currently using base class error-throwing implementation)`);
32
- }), u.validatedClasses.add(r), s.length > 0 ? (u.validationErrors.set(r, s), console.error(`[${E} Validation] ${E} validation failed:`, s)) : typeof process < "u" && ((I = process.env) == null ? void 0 : I.NODE_ENV) === "development" && console.log(`[${E} Validation] ✅ ${E} validated successfully`);
31
+ Y[u] === n.prototype[u] && i.push(`Method ${u}() must be implemented (currently using base class error-throwing implementation)`);
32
+ }), d.validatedClasses.add(n), i.length > 0 ? (d.validationErrors.set(n, i), console.error(`[${o} Validation] ${o} validation failed:`, i)) : typeof process < "u" && ((x = process.env) == null ? void 0 : x.NODE_ENV) === "development" && console.log(`[${o} Validation] ✅ ${o} validated successfully`);
33
33
  }
34
34
  };
35
- M.validatedClasses = /* @__PURE__ */ new Set();
36
- M.validationErrors = /* @__PURE__ */ new Map();
37
- var a = M, et = /* @__PURE__ */ ((t) => (t.BLOCK = "BLOCK", t.STRUCTURE = "STRUCTURE", t.CONTAINER = "CONTAINER", t))(et || {}), y = class c extends a {
35
+ B.validatedClasses = /* @__PURE__ */ new Set();
36
+ B.validationErrors = /* @__PURE__ */ new Map();
37
+ var s = B, $ = /* @__PURE__ */ ((e) => (e.BLOCK = "BLOCK", e.STRUCTURE = "STRUCTURE", e.CONTAINER = "CONTAINER", e))($ || {}), v = class c extends s {
38
38
  constructor() {
39
39
  super(c.REQUIRED_METHODS, c);
40
40
  }
@@ -86,28 +86,28 @@ var a = M, et = /* @__PURE__ */ ((t) => (t.BLOCK = "BLOCK", t.STRUCTURE = "STRUC
86
86
  * @param node - The immutable HTML node representing the selected block instance.
87
87
  */
88
88
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
89
- onSelect(e) {
89
+ onSelect(t) {
90
90
  }
91
91
  /**
92
92
  * Lifecycle hook called when an instance of this block is copied.
93
93
  * @param modifier - The HTML node modifier to apply changes to the copied block instance.
94
94
  */
95
95
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
96
- onCopy(e) {
96
+ onCopy(t) {
97
97
  }
98
98
  /**
99
99
  * Lifecycle hook called when an instance of this block is deleted.
100
100
  * @param node - The immutable HTML node representing the block instance being deleted.
101
101
  */
102
102
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
103
- onDelete(e) {
103
+ onDelete(t) {
104
104
  }
105
105
  /**
106
106
  * Lifecycle hook called after a new instance of this block is created and added to the document (e.g., via drag-and-drop).
107
107
  * @param node - The immutable HTML node representing the newly created block instance.
108
108
  */
109
109
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
110
- onCreated(e) {
110
+ onCreated(t) {
111
111
  }
112
112
  /**
113
113
  * Lifecycle hook called when any part of the document template has changed.
@@ -115,7 +115,7 @@ var a = M, et = /* @__PURE__ */ ((t) => (t.BLOCK = "BLOCK", t.STRUCTURE = "STRUC
115
115
  * @param node - The immutable HTML node representing current node instance
116
116
  */
117
117
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
118
- onDocumentChanged(e) {
118
+ onDocumentChanged(t) {
119
119
  }
120
120
  /**
121
121
  * @description Determines if block is atomic or composite.
@@ -183,7 +183,7 @@ var a = M, et = /* @__PURE__ */ ((t) => (t.BLOCK = "BLOCK", t.STRUCTURE = "STRUC
183
183
  *
184
184
  * @return {string} The name of the block panel.
185
185
  */
186
- getSettingsPanelName() {
186
+ getSettingsPanelTitleHtml() {
187
187
  return "";
188
188
  }
189
189
  /**
@@ -195,28 +195,95 @@ var a = M, et = /* @__PURE__ */ ((t) => (t.BLOCK = "BLOCK", t.STRUCTURE = "STRUC
195
195
  throw new Error("Method getDescription() must be implemented by the subclass");
196
196
  }
197
197
  };
198
- y.REQUIRED_METHODS = ["getId", "getTemplate", "getIcon", "getName", "getDescription"];
199
- var Xt = y, rt = class _ extends a {
198
+ v.REQUIRED_METHODS = ["getId", "getTemplate", "getIcon", "getName", "getDescription"];
199
+ var Qe = v, W = class T extends s {
200
200
  constructor() {
201
- super(_.REQUIRED_METHODS, _);
201
+ super(T.REQUIRED_METHODS, T);
202
202
  }
203
203
  /**
204
204
  * @deprecated - use {@link getPreviewInnerHtml} instead
205
205
  */
206
206
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
207
- getPreviewHtml(e) {
207
+ getPreviewHtml(t) {
208
208
  }
209
209
  /**
210
210
  * @description returns custom content to be displayed inside the {@link Block} root TD element
211
211
  */
212
- getPreviewInnerHtml(e) {
212
+ getPreviewInnerHtml(t) {
213
213
  throw new Error("Method getPreviewInnerHtml() must be implemented by the subclass");
214
214
  }
215
215
  };
216
- rt.REQUIRED_METHODS = ["getPreviewInnerHtml"];
217
- var nt = class h extends a {
216
+ W.REQUIRED_METHODS = ["getPreviewInnerHtml"];
217
+ var fe = class {
218
+ /**
219
+ * Generates HTML representation for a block item
220
+ * @param block - The block item to generate HTML for
221
+ * @returns HTML string representation of the block or undefined if default representation should be used
222
+ */
223
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
224
+ getBlockItemHtml(e) {
225
+ }
226
+ /**
227
+ * Determines whether a hint should be displayed for the block
228
+ * @param block - The block item to check hint visibility for
229
+ * @returns True if the hint should be visible, false otherwise
230
+ */
231
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
232
+ isBlockHintVisible(e) {
233
+ return !0;
234
+ }
235
+ /**
236
+ * Gets the hint text for a block
237
+ * @param block - The block item to get hint for
238
+ * @returns The hint text for the block or undefined if default hint should be used
239
+ */
240
+ getBlockHint(e) {
241
+ return {
242
+ title: e.title,
243
+ description: e.description
244
+ };
245
+ }
246
+ /**
247
+ * Generates HTML representation for the blocks panel header
248
+ * @returns HTML string representation of the blocks panel header or undefined if header should not be shown
249
+ */
250
+ getBlocksPanelHeaderHtml() {
251
+ }
252
+ /**
253
+ * Generates HTML representation for the modules panel in collapsed state
254
+ * @returns HTML string representation of the collapsed modules panel or undefined if default representation should be used
255
+ */
256
+ getModulesPanelCollapsedHtml() {
257
+ }
258
+ /**
259
+ * Determines whether a hint should be displayed for the collapsed modules panel
260
+ * @returns True if the hint should be visible, false otherwise
261
+ */
262
+ isModulesPanelCollapsedHintVisible() {
263
+ return !0;
264
+ }
265
+ /**
266
+ * Gets the custom delay for showing hints
267
+ * @returns The delay in milliseconds or undefined to use the default delay
268
+ */
269
+ getHintDelay() {
270
+ }
271
+ /**
272
+ * Gets the hint text for a modules panel block
273
+ * @returns The hint text for the modules panel or undefined if default hint should be used
274
+ */
275
+ getModulesPanelHint() {
276
+ }
277
+ /**
278
+ * Gets the icon name for the modules tab
279
+ * @returns The icon name for the modules tab or undefined if default icon or text should be used
280
+ */
281
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
282
+ getModulesTabIconName(e) {
283
+ }
284
+ }, z = class b extends s {
218
285
  constructor() {
219
- super(h.REQUIRED_METHODS, h);
286
+ super(b.REQUIRED_METHODS, b);
220
287
  }
221
288
  getId() {
222
289
  throw new Error("Method getId() must be implemented by the subclass");
@@ -227,93 +294,148 @@ var nt = class h extends a {
227
294
  getLabel() {
228
295
  throw new Error("Method getLabel() must be implemented by the subclass");
229
296
  }
230
- onClick(e) {
297
+ onClick(t) {
231
298
  throw new Error("Method onClick() must be implemented by the subclass");
232
299
  }
233
300
  };
234
- nt.REQUIRED_METHODS = ["getId", "getIcon", "getLabel", "onClick"];
235
- var st = {
301
+ z.REQUIRED_METHODS = ["getId", "getIcon", "getLabel", "onClick"];
302
+ var Z = {
236
303
  src: "src",
237
304
  alt: "alt",
238
305
  href: "href",
239
- width: "width"
240
- }, at = {
241
- href: "href"
242
- }, kt = {
243
- BLOCK_IMAGE: st,
244
- BLOCK_BUTTON: at
245
- }, U = "esd-block-button", p = "esd-block-text", K = "esd-block-image", it = "esd-structure", ot = "esd-block-video", Et = "esd-block-social", lt = "esd-block-banner", dt = "esd-block-timer", ut = "esd-block-menu", It = "esd-block-html", Ot = "esd-block-spacer", Tt = "esd-container-frame", ct = "esd-stripe", _t = "esd-amp-form", O = ((t) => (t.BUTTON = `.${U}`, t.TEXT = `.${p}`, t.IMAGE = `.${K}`, t.STRUCTURE = `.${it}`, t.VIDEO = `.${ot}`, t.SOCIAL = `.${Et}`, t.BANNER = `.${lt}`, t.TIMER = `.${dt}`, t.MENU = `.${ut}`, t.HTML = `.${It}`, t.SPACER = `.${Ot}`, t.CONTAINER = `.${Tt}`, t.STRIPE = `.${ct}`, t.FORM = `.${_t}`, t))(O || {}), ht = /* @__PURE__ */ ((t) => (t.BLOCK_IMAGE = "BLOCK_IMAGE", t.BLOCK_TEXT = "BLOCK_TEXT", t.BLOCK_BUTTON = "BLOCK_BUTTON", t.BLOCK_SPACER = "BLOCK_SPACER", t.BLOCK_VIDEO = "BLOCK_VIDEO", t.BLOCK_SOCIAL = "BLOCK_SOCIAL", t.BLOCK_BANNER = "BLOCK_BANNER", t.BLOCK_TIMER = "BLOCK_TIMER", t.BLOCK_MENU = "BLOCK_MENU", t.BLOCK_MENU_ITEM = "BLOCK_MENU_ITEM", t.BLOCK_HTML = "BLOCK_HTML", t.BLOCK_AMP_CAROUSEL = "BLOCK_AMP_CAROUSEL", t.BLOCK_AMP_ACCORDION = "BLOCK_AMP_ACCORDION", t.BLOCK_AMP_FORM = "BLOCK_AMP_FORM", t.CONTAINER = "CONTAINER", t.FORM_CONTAINER = "FORM_CONTAINER", t.STRUCTURE = "STRUCTURE", t.STRIPE = "STRIPE", t.EMPTY_CONTAINER = "EMPTY_CONTAINER", t.CUSTOM_BLOCK_LINK = "CUSTOM_BLOCK_LINK", t.CUSTOM_BLOCK_IMAGE = "CUSTOM_BLOCK_IMAGE", t.CUSTOM_BLOCK_TEXT = "CUSTOM_BLOCK_TEXT", t))(ht || {}), F = /* @__PURE__ */ ((t) => (t.ANCHOR_LINK_CONTAINER = "anchorLinkFormContainer", t.APPLY_CONDITION = "applyCondition", t.APPLY_CONDITION_SWITCHER = "applyConditionSwitcher", t.BACKGROUND_COLOR = "backgroundColor", t.BACKGROUND_IMAGE = "generalImageContainer", t.TEXT_COLOR = "textColor", t.TEXT_STYLE = "textStyle", t.TEXT_SIZE = "textSize", t.TEXT_LINE_SPACING = "textLineSpacing", t.TEXT_ALIGN = "textAlign", t.FIXED_HEIGHT_SWITCHER = "fixedHeightSwitcherForm", t.HIDDEN_NODE = "hiddenNode", t.SMART_BLOCK = "smartBlock", t.SYNCHRONIZED_MODULE = "synchronizedModuleForm", t.FONT_FAMILY = "generalFontFamilyForm", t.BLOCK_INTERNAL_INDENTS = "generalBlockInternalIndents", t.STRUCTURE_INTERNAL_INDENTS = "generalStructureInternalIndents", t))(F || {}), w = /* @__PURE__ */ ((t) => (t.ADJUST_TO_WIDTH = "adjustToWidth", t.ALIGNMENT = "buttonAlignment", t.BORDER = "buttonBorder", t.BORDER_RADIUS = "buttonBorderRadius", t.COLOR = "buttonColor", t.BUTTON_BLOCK_BACKGROUND_COLOR = "buttonBlockBackgroundColor", t.EXTERNAL_INDENTS = "buttonExternalIndents", t.FIXED_HEIGHT = "buttonFixedHeightForm", t.FONT_COLOR = "buttonFontColor", t.FONT_FAMILY = "buttonFontFamily", t.FONT_SIZE = "buttonFontSize", t.ICON = "buttonIconContainer", t.ICON_ALIGN = "buttonIconAlign", t.ICON_INDENT = "buttonIconIndent", t.ICON_WIDTH = "buttonIconWidth", t.IMAGE = "buttonImageForm", t.INTERNAL_INDENTS = "buttonInternalIndents", t.LINK = "buttonLink", t.MIME_TYPE = "buttonMimeTypeForm", t.SWITCHER_HOVERED_STYLES = "buttonSwitcherHoveredStylesForm", t.TEXT = "buttonText", t.TEXT_STYLE_AND_COLOR = "buttonTextStyleAndColorForm", t.HOVERED_BORDER_COLOR = "hoveredStyleBorderButtonForm", t.HOVERED_COLOR = "hoveredButtonColorForm", t.HOVERED_TEXT_COLOR = "hoveredButtonTextColorForm", t))(w || {}), P = /* @__PURE__ */ ((t) => (t.HIDDEN_NODE = "hiddenNodeText", t.PARAGRAPH_STYLE = "paragraphStyleForm", t.ALIGN = "textAlignmentForm", t.ANCHOR_CONTAINER = "textAnchorForm", t.FONT_BACKGROUND_COLOR = "textBlockFontBackgroundColor", t.TEXT_BLOCK_BACKGROUND_COLOR = "textBlockBackgroundColor", t.FONT_COLOR = "textBlockFontColor", t.TEXT_BLOCK_FONT_FAMILY = "textBlockFontFamily", t.FONT_FAMILY = "textFontFamily", t.FONT_SIZE = "textBlockFontSize", t.DIRECTION = "textBlockDirectionForm", t.INSERT_FORM = "textBlockInsertForm", t.LINK_DATA = "textBlockLinkDataForm", t.FORMAT = "textBlockTextFormatForm", t.FIXED_HEIGHT = "textFixedHeightForm", t.INTERNAL_INDENTS = "textInternalIndents", t.LINE_HEIGHT = "textLineHeightForm", t.LINKS_COLOR = "textLinksFontColorForm", t.MIME_TYPE = "textMimeTypeForm", t.NO_LINE_WRAPS = "textNoLineWrapsForm", t))(P || {}), H = /* @__PURE__ */ ((t) => (t.ALT_TEXT = "altText", t.LINK = "blockLink", t.ALIGNMENT = "imageAlignment", t.ANCHOR_LINK_CONTAINER = "imageAnchorLinkContainerForm", t.BORDER_RADIUS = "imageBorderRadiusForm", t.IMAGE = "imageImageForm", t.EXTERNAL_INDENTS = "imageExternalIndents", t.MIME_TYPE = "imageMimeTypeForm", t.RESPONSIVE = "imageResponsive", t.ROLLOVER_IMAGE = "imageRolloverImageForm", t.ROLLOVER_SWITCHER = "imageRolloverSwitcherForm", t.SIZE = "imageSizeContainer", t))(H || {}), Rt = /* @__PURE__ */ ((t) => (t.BACKGROUND_COLOR = "containerBackgroundColorForm", t.BORDER_FORM = "containerBorderForm", t.BORDER_RADIUS = "containerBorderRadiusForm", t.EXTERNAL_INDENTS = "containerExternalIndentsForm", t.IMAGE_CONTAINER = "containerImageContainerForm", t.MIME_TYPE = "containerMimeTypeForm", t.DISPLAY_CONDITIONS = "displayConditions", t.HIDDEN_NODE = "containerHiddenNodeForm", t))(Rt || {}), n = {
246
- BLOCK_BUTTON: w,
247
- BLOCK_TEXT: P,
306
+ width: "width",
307
+ height: "height"
308
+ }, Ye = {
309
+ BLOCK_IMAGE: Z
310
+ }, y = "esd-block-button", U = "esd-block-text", P = "esd-block-image", j = "esd-structure", q = "esd-block-video", J = "esd-block-social", ee = "esd-block-banner", te = "esd-block-timer", re = "esd-block-menu", ne = "esd-block-html", ae = "esd-block-spacer", se = "esd-container-frame", ie = "esd-stripe", le = "esd-amp-form", I = ((e) => (e.BUTTON = `.${y}`, e.TEXT = `.${U}`, e.IMAGE = `.${P}`, e.STRUCTURE = `.${j}`, e.VIDEO = `.${q}`, e.SOCIAL = `.${J}`, e.BANNER = `.${ee}`, e.TIMER = `.${te}`, e.MENU = `.${re}`, e.HTML = `.${ne}`, e.SPACER = `.${ae}`, e.CONTAINER = `.${se}`, e.STRIPE = `.${ie}`, e.FORM = `.${le}`, e))(I || {}), 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.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.LINKS_COLOR = "textLinksFontColorForm", 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 || {}), oe = /* @__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))(oe || {}), a = {
311
+ BLOCK_BUTTON: K,
312
+ BLOCK_TEXT: F,
248
313
  BLOCK_IMAGE: H,
249
- GENERAL: F
250
- }, Lt = /* @__PURE__ */ ((t) => (t.SETTINGS = "settings", t.STYLES = "styles", t.DATA = "data", t))(Lt || {}), o = {
314
+ GENERAL: w
315
+ }, de = /* @__PURE__ */ ((e) => (e.previewDeviceMode = "previewDeviceMode", e.panelPosition = "panelPosition", e))(de || {}), ue = /* @__PURE__ */ ((e) => (e.DESKTOP = "DESKTOP", e.MOBILE = "MOBILE", e))(ue || {}), Ie = /* @__PURE__ */ ((e) => (e.SETTINGS = "settings", e.STYLES = "styles", e.DATA = "data", e))(Ie || {}), r = {
251
316
  name: "name",
252
317
  disabled: "disabled"
253
- }, Ct = {
254
- ...o,
318
+ }, ce = {
319
+ ...r,
255
320
  caption: "caption",
256
321
  icon: "icon"
257
- }, gt = {
258
- ...o,
322
+ }, Te = {
323
+ ...r,
259
324
  caption: "caption"
260
- }, mt = {
261
- ...o,
325
+ }, be = {
326
+ ...r,
262
327
  minValue: "min-value",
263
328
  maxValue: "max-value",
264
329
  step: "step"
265
- }, bt = {
266
- ...o,
267
- text: "text"
268
- }, Nt = {
269
- ...o
270
- }, X = {
271
- ...o,
330
+ }, Oe = {
331
+ ...r,
332
+ placeholder: "placeholder",
333
+ minDate: "min-date"
334
+ }, he = {
335
+ ...r,
336
+ text: "text",
337
+ hint: "hint"
338
+ }, ge = {
339
+ ...r,
340
+ type: "type"
341
+ }, me = {
342
+ ...r,
343
+ buttons: "buttons"
344
+ }, k = {
345
+ ...r,
272
346
  searchable: "searchable",
273
347
  multiSelect: "multi-select",
274
348
  placeholder: "placeholder",
275
349
  items: "items"
276
- }, At = {
277
- ...X
278
- }, Dt = {
350
+ }, Re = {
351
+ ...k,
352
+ addCustomFontOption: "add-custom-font-option"
353
+ }, Le = {
354
+ ...r,
355
+ text: "text",
356
+ value: "value"
357
+ }, _e = {
358
+ ...r,
279
359
  text: "text",
360
+ hint: "hint",
361
+ icon: "icon",
280
362
  value: "value"
281
- }, St = {
363
+ }, Ce = {
364
+ ...r,
365
+ buttons: "buttons"
366
+ }, Ae = {
367
+ ...r,
282
368
  text: "text",
369
+ hint: "hint",
283
370
  icon: "icon",
284
371
  value: "value"
285
- }, Bt = {
286
- ...o
287
- }, Mt = {
372
+ }, Ne = {
373
+ ...r,
374
+ placeholder: "placeholder"
375
+ }, De = {
376
+ ...r,
377
+ resizable: "resizable",
378
+ placeholder: "placeholder"
379
+ }, Se = {
380
+ ...r,
381
+ img: "img",
382
+ src: "src",
383
+ title: "title",
384
+ imageClass: "image-class",
385
+ hint: "hint",
386
+ disabled: "disabled",
387
+ isActive: "is-active",
388
+ visibility: "visibility",
389
+ transform: "transform"
390
+ }, Be = {
391
+ ...r,
288
392
  controlId: "control-id"
289
- }, xt = {
290
- ...o,
393
+ }, Me = {
394
+ ...r,
395
+ expanded: "expanded"
396
+ }, xe = {
397
+ ...r,
291
398
  icon: "icon",
292
399
  position: "position"
293
- }, vt = {
294
- ...o
295
- }, Gt = {
296
- BUTTON: Ct,
297
- CHECKBOX: gt,
298
- COLOR: o,
299
- COUNTER: mt,
300
- LABEL: bt,
301
- RADIO_BUTTONS: Nt,
302
- SELECTPICKER: X,
303
- FONT_FAMILY_SELECT: At,
304
- SWITCHER: o,
305
- TEXT: Bt,
306
- SELECT_ITEM: Dt,
307
- RADIO_ITEM: St,
308
- NESTED_CONTROL: Mt,
309
- ORDERABLE: xt,
310
- ORDERABLE_ITEM: vt
311
- }, yt = /* @__PURE__ */ ((t) => (t.BUTTON = "UE-BUTTON", t.CHECKBOX = "UE-CHECKBOX", t.CHECK_BUTTONS = "UE-CHECK-BUTTONS", t.COLOR = "UE-COLOR", t.COUNTER = "UE-COUNTER", t.DATEPICKER = "UE-DATEPICKER", t.LABEL = "UE-LABEL", t.MESSAGE = "UE-MESSAGE", t.RADIO_BUTTONS = "UE-RADIO-BUTTONS", t.SELECTPICKER = "UE-SELECT", t.SWITCHER = "UE-SWITCHER", t.TEXT = "UE-TEXT", t.TEXTAREA = "UE-TEXTAREA", t.CHECK_ITEM = "UE-CHECK-ITEM", t.RADIO_ITEM = "UE-RADIO-ITEM", t.SELECT_ITEM = "UE-SELECT-ITEM", t.ICON = "UE-ICON", t.MERGETAGS = "UE-MERGETAGS", t.FONT_FAMILY_SELECT = "UE-FONT-FAMILY-SELECT", t.NESTED_CONTROL = "UE-NESTED-CONTROL", t.EXPANDABLE = "UE-EXPANDABLE", t.EXPANDABLE_HEADER = "UE-EXPANDABLE_HEADER", t.EXPANDABLE_CONTENT = "UE-EXPANDABLE_CONTENT", t.ORDERABLE = "UE-ORDERABLE", t.ORDERABLE_ITEM = "UE-ORDERABLE-ITEM", t.ORDERABLE_ICON = "UE-ORDERABLE-ICON", t))(yt || {}), x = class {
400
+ }, ve = {
401
+ ...r
402
+ }, ye = {
403
+ ...r,
404
+ icon: "icon"
405
+ }, Ue = {
406
+ ...r
407
+ }, $e = {
408
+ DEFAULT: r,
409
+ BUTTON: ce,
410
+ CHECKBOX: Te,
411
+ CHECK_BUTTONS: Ce,
412
+ COLOR: r,
413
+ COUNTER: be,
414
+ DATEPICKER: Oe,
415
+ LABEL: he,
416
+ MESSAGE: ge,
417
+ RADIO_BUTTONS: me,
418
+ SELECTPICKER: k,
419
+ FONT_FAMILY_SELECT: Re,
420
+ SWITCHER: r,
421
+ TEXT: Ne,
422
+ TEXTAREA: De,
423
+ ICON: Se,
424
+ CHECK_ITEM: _e,
425
+ SELECT_ITEM: Le,
426
+ RADIO_ITEM: Ae,
427
+ NESTED_CONTROL: Be,
428
+ EXPANDABLE: Me,
429
+ ORDERABLE: xe,
430
+ ORDERABLE_ITEM: ve,
431
+ ORDERABLE_ICON: ye,
432
+ REPEATABLE: Ue
433
+ }, Pe = /* @__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))(Pe || {}), M = class {
312
434
  /**
313
435
  * @description returns map of nodes parent control operates on
314
436
  */
315
- getTargetNodes(t) {
316
- return [t];
437
+ getTargetNodes(e) {
438
+ return [e];
317
439
  }
318
440
  /**
319
441
  * @description returns map of labels used by parent control UI
@@ -328,7 +450,7 @@ var st = {
328
450
  /**
329
451
  * @description returns custom modifications to be included in the parent control patch
330
452
  */
331
- getAdditionalModifications(t) {
453
+ getAdditionalModifications(e) {
332
454
  }
333
455
  /**
334
456
  * Determines whether the specified HTML node is visible.
@@ -336,77 +458,77 @@ var st = {
336
458
  * @param _node - The HTML node to evaluate for visibility, provided as an immutable object.
337
459
  * @return A boolean value indicating whether the node is visible. Returns `true` if the node is visible, otherwise `false`.
338
460
  */
339
- isVisible(t) {
461
+ isVisible(e) {
340
462
  return !0;
341
463
  }
342
- }, i = class extends x {
343
- getTargetNodes(t) {
344
- const e = t.querySelectorAll(O.BUTTON), r = t.asElement().hasClass(U) ? [t] : [];
345
- return e.length ? e : r;
464
+ }, l = class extends M {
465
+ getTargetNodes(e) {
466
+ const t = e.querySelectorAll(I.BUTTON), n = e.asElement().hasClass(y) ? [e] : [];
467
+ return t.length ? t : n;
346
468
  }
347
- }, Vt = class extends i {
469
+ }, We = class extends l {
348
470
  getParentControlId() {
349
- return n.BLOCK_BUTTON.BORDER_RADIUS;
471
+ return a.BLOCK_BUTTON.BORDER_RADIUS;
350
472
  }
351
473
  getLabels() {
352
474
  }
353
- }, Qt = class extends i {
475
+ }, ze = class extends l {
354
476
  getParentControlId() {
355
- return n.BLOCK_BUTTON.ALIGNMENT;
477
+ return a.BLOCK_BUTTON.ALIGNMENT;
356
478
  }
357
- }, ft = class extends i {
479
+ }, Ze = class extends l {
358
480
  getParentControlId() {
359
- return n.GENERAL.BACKGROUND_COLOR;
481
+ return a.GENERAL.BACKGROUND_COLOR;
360
482
  }
361
- }, Yt = class extends i {
483
+ }, je = class extends l {
362
484
  getParentControlId() {
363
- return n.BLOCK_BUTTON.BORDER;
485
+ return a.BLOCK_BUTTON.BORDER;
364
486
  }
365
487
  getLabels() {
366
488
  }
367
- }, $t = class extends i {
489
+ }, qe = class extends l {
368
490
  getParentControlId() {
369
- return n.BLOCK_BUTTON.COLOR;
491
+ return a.BLOCK_BUTTON.COLOR;
370
492
  }
371
- }, Wt = class extends i {
493
+ }, Je = class extends l {
372
494
  getParentControlId() {
373
- return n.BLOCK_BUTTON.ADJUST_TO_WIDTH;
495
+ return a.BLOCK_BUTTON.ADJUST_TO_WIDTH;
374
496
  }
375
- }, zt = class extends i {
497
+ }, et = class extends l {
376
498
  getParentControlId() {
377
- return n.BLOCK_BUTTON.FONT_FAMILY;
499
+ return a.BLOCK_BUTTON.FONT_FAMILY;
378
500
  }
379
- }, Zt = class extends i {
501
+ }, tt = class extends l {
380
502
  getParentControlId() {
381
- return n.BLOCK_BUTTON.EXTERNAL_INDENTS;
503
+ return a.BLOCK_BUTTON.EXTERNAL_INDENTS;
382
504
  }
383
- }, jt = class extends i {
505
+ }, rt = class extends l {
384
506
  getParentControlId() {
385
- return n.BLOCK_BUTTON.INTERNAL_INDENTS;
507
+ return a.BLOCK_BUTTON.INTERNAL_INDENTS;
386
508
  }
387
- }, qt = class extends i {
509
+ }, nt = class extends l {
388
510
  getParentControlId() {
389
- return n.BLOCK_BUTTON.TEXT;
511
+ return a.BLOCK_BUTTON.TEXT;
390
512
  }
391
- }, Jt = class extends i {
513
+ }, at = class extends l {
392
514
  getParentControlId() {
393
- return n.BLOCK_BUTTON.FONT_SIZE;
515
+ return a.BLOCK_BUTTON.FONT_SIZE;
394
516
  }
395
- }, te = class extends i {
517
+ }, st = class extends l {
396
518
  getParentControlId() {
397
- return n.BLOCK_BUTTON.TEXT_STYLE_AND_COLOR;
519
+ return a.BLOCK_BUTTON.TEXT_STYLE_AND_COLOR;
398
520
  }
399
521
  getLabels() {
400
522
  }
401
- }, k = class R extends a {
523
+ }, X = class O extends s {
402
524
  constructor() {
403
- super(R.REQUIRED_METHODS, R);
525
+ super(O.REQUIRED_METHODS, O);
404
526
  }
405
527
  /**
406
528
  * @description Allows to determine if control should be visible or hidden in control panel.
407
529
  * Called on every node modification.
408
530
  */
409
- isVisible(e) {
531
+ isVisible(t) {
410
532
  return !0;
411
533
  }
412
534
  /**
@@ -443,42 +565,112 @@ var st = {
443
565
  * Implement this to react to changes in the block/structure and update the control's UI elements accordingly.
444
566
  * @param node - The updated immutable HTML node representing the control's context.
445
567
  */
446
- onTemplateNodeUpdated(e) {
568
+ onTemplateNodeUpdated(t) {
447
569
  }
448
570
  /**
449
571
  * Lifecycle hook called when any part of the document template has changed.
450
572
  * This can be frequent; use cautiously for performance-sensitive operations.
451
573
  * @param _node - The immutable HTML node representing current node instance
452
574
  */
453
- onDocumentChanged(e) {
575
+ onDocumentChanged(t) {
454
576
  }
455
577
  };
456
- k.REQUIRED_METHODS = ["getId", "getTemplate"];
457
- var ee = k, G = class extends x {
458
- getTargetNodes(t) {
459
- const e = t.querySelectorAll(O.IMAGE), r = t.asElement().hasClass(K) ? [t] : [];
460
- return e.length ? e : r;
578
+ X.REQUIRED_METHODS = ["getId", "getTemplate"];
579
+ var it = X, we = class h extends s {
580
+ constructor() {
581
+ super(h.REQUIRED_METHODS, h);
461
582
  }
462
- }, re = class extends G {
583
+ /**
584
+ * Gets the unique identifier for this tab.
585
+ * This ID is used for registration.
586
+ * @returns A unique string ID.
587
+ */
588
+ getId() {
589
+ throw new Error("Method getId() must be implemented by the subclass");
590
+ }
591
+ /**
592
+ * Gets the icon key representing this tab in the header.
593
+ * @returns A string representing the icon key from the IconsRegistry
594
+ */
595
+ getIcon() {
596
+ throw new Error("Method getIcon() must be implemented by the subclass");
597
+ }
598
+ /**
599
+ * Retrieves the index of the tab associated with the panel.
600
+ * The index represents the position/order of the tab in the UI.
601
+ *
602
+ * @returns {number} The index of the tab.
603
+ */
604
+ getTabIndex() {
605
+ throw new Error("Method getTabIndex() must be implemented by the subclass");
606
+ }
607
+ /**
608
+ * Gets the display name of the tab shown to the user in the header hint.
609
+ * Use `this.api.translate()` for localization.
610
+ * @returns The localized tab name string.
611
+ */
612
+ getName() {
613
+ throw new Error("Method getName() must be implemented by the subclass");
614
+ }
615
+ /**
616
+ * Determines if the tab should be available for use in the editor.
617
+ * Override to provide custom logic based on the editor state or configuration.
618
+ * @returns True if the tab is enabled, false otherwise. Defaults to true.
619
+ */
620
+ isEnabled() {
621
+ return !0;
622
+ }
623
+ /**
624
+ * Gets the HTML template string that defines the initial template of general tab.
625
+ * @returns An HTML string.
626
+ */
627
+ getTemplate() {
628
+ throw new Error("Method getTemplate() must be implemented by the subclass");
629
+ }
630
+ /**
631
+ * Lifecycle hook called when any part of the document template has changed.
632
+ * This can be frequent; use cautiously for performance-sensitive operations.
633
+ */
634
+ onDocumentChanged() {
635
+ }
636
+ /**
637
+ * Optional hook called when the general panel tab is initially rendered.
638
+ * Use this for setup tasks like attaching event listeners to the panel's template elements.
639
+ */
640
+ onRender() {
641
+ }
642
+ /**
643
+ * Optional cleanup hook called when the general panel tab is being destroyed.
644
+ */
645
+ onDestroy() {
646
+ }
647
+ };
648
+ we.REQUIRED_METHODS = ["getId", "getIcon", "getName", "getTemplate", "getTabIndex"];
649
+ var p = class extends M {
650
+ getTargetNodes(e) {
651
+ const t = e.querySelectorAll(I.IMAGE), n = e.asElement().hasClass(P) ? [e] : [];
652
+ return t.length ? t : n;
653
+ }
654
+ }, lt = class extends p {
463
655
  getParentControlId() {
464
- return n.BLOCK_IMAGE.EXTERNAL_INDENTS;
656
+ return a.BLOCK_IMAGE.EXTERNAL_INDENTS;
465
657
  }
466
- }, ne = class extends G {
658
+ }, Et = class extends p {
467
659
  getParentControlId() {
468
- return n.BLOCK_IMAGE.SIZE;
660
+ return a.BLOCK_IMAGE.SIZE;
469
661
  }
470
- }, V = class L extends a {
662
+ }, G = class g extends s {
471
663
  constructor() {
472
- super(L.REQUIRED_METHODS, L);
664
+ super(g.REQUIRED_METHODS, g);
473
665
  }
474
- registerBlockControls(e) {
666
+ registerBlockControls(t) {
475
667
  throw new Error("Method registerBlockControls() must be implemented by the subclass");
476
668
  }
477
669
  };
478
- V.REQUIRED_METHODS = ["registerBlockControls"];
479
- var se = V, ae = class {
480
- constructor(t, e) {
481
- this.tabId = t, this.controlsIds = e;
670
+ G.REQUIRED_METHODS = ["registerBlockControls"];
671
+ var ot = G, dt = class {
672
+ constructor(e, t) {
673
+ this.tabId = e, this.controlsIds = t;
482
674
  }
483
675
  getTabId() {
484
676
  return this.tabId;
@@ -489,56 +681,52 @@ var se = V, ae = class {
489
681
  getControlsIds() {
490
682
  return this.controlsIds;
491
683
  }
492
- withLabel(t) {
493
- return this.label = t, this;
684
+ withLabel(e) {
685
+ return this.label = e, this;
494
686
  }
495
- addControl(t, e) {
496
- return e < 0 ? this.controlsIds.unshift(t) : e > this.controlsIds.length ? this.controlsIds.push(t) : this.controlsIds.splice(e, 0, t), this;
687
+ addControl(e, t) {
688
+ return t < 0 ? this.controlsIds.unshift(e) : t > this.controlsIds.length ? this.controlsIds.push(e) : this.controlsIds.splice(t, 0, e), this;
497
689
  }
498
- deleteControl(t) {
499
- const e = this.controlsIds.indexOf(t);
500
- e !== -1 && this.controlsIds.splice(e, 1);
690
+ deleteControl(e) {
691
+ const t = this.controlsIds.indexOf(e);
692
+ t !== -1 && this.controlsIds.splice(t, 1);
501
693
  }
502
- }, l = class extends x {
503
- getTargetNodes(t) {
504
- const e = t.querySelectorAll(O.TEXT), r = t.asElement().hasClass(p) ? [t] : [];
505
- return e.length ? e : r;
506
- }
507
- }, ie = class extends l {
508
- getParentControlId() {
509
- return n.GENERAL.TEXT_ALIGN;
694
+ }, E = class extends M {
695
+ getTargetNodes(e) {
696
+ const t = e.querySelectorAll(I.TEXT), n = e.asElement().hasClass(U) ? [e] : [];
697
+ return t.length ? t : n;
510
698
  }
511
- }, oe = class extends l {
699
+ }, ut = class extends E {
512
700
  getParentControlId() {
513
- return n.BLOCK_TEXT.TEXT_BLOCK_BACKGROUND_COLOR;
701
+ return a.GENERAL.TEXT_ALIGN;
514
702
  }
515
- }, Ee = class extends l {
703
+ }, It = class extends E {
516
704
  getParentControlId() {
517
- return n.GENERAL.TEXT_COLOR;
705
+ return a.GENERAL.TEXT_COLOR;
518
706
  }
519
- }, le = class extends l {
707
+ }, ct = class extends E {
520
708
  getParentControlId() {
521
- return n.BLOCK_TEXT.FONT_FAMILY;
709
+ return a.BLOCK_TEXT.FONT_FAMILY;
522
710
  }
523
- }, de = class extends l {
711
+ }, Tt = class extends E {
524
712
  getParentControlId() {
525
- return n.GENERAL.TEXT_LINE_SPACING;
713
+ return a.GENERAL.TEXT_LINE_SPACING;
526
714
  }
527
- }, ue = class extends l {
715
+ }, bt = class extends E {
528
716
  getParentControlId() {
529
- return n.BLOCK_TEXT.INTERNAL_INDENTS;
717
+ return a.BLOCK_TEXT.INTERNAL_INDENTS;
530
718
  }
531
- }, Ie = class extends l {
719
+ }, Ot = class extends E {
532
720
  getParentControlId() {
533
- return n.GENERAL.TEXT_SIZE;
721
+ return a.GENERAL.TEXT_SIZE;
534
722
  }
535
- }, Oe = class extends l {
723
+ }, ht = class extends E {
536
724
  getParentControlId() {
537
- return n.GENERAL.TEXT_STYLE;
725
+ return a.GENERAL.TEXT_STYLE;
538
726
  }
539
- }, Ut = class {
540
- constructor(t, e, r = [], s, E = [], T, I = [], d = [], v, $, W, z, Z, j, q, J, tt) {
541
- this.uiElements = [], this.controls = [], this.contextActions = [], this.blocks = [], this.i18n = t, this.styles = e, this.previewStyles = W, this.uiElements = r, this.uiElementTagRegistry = s, this.controls = E, this.settingsPanelRegistry = T, this.contextActions = I, this.blocks = d, this.externalSmartElementsLibrary = v, this.externalImageLibrary = $, this.externalImageLibraryTab = tt, this.externalAiAssistant = z, this.externalDisplayConditionsLibrary = Z, this.externalVideoLibrary = j, this.blocksPanel = q, this.iconsRegistry = J, this.id = Math.random().toString(36).substring(2);
727
+ }, Ke = class {
728
+ constructor(e) {
729
+ this.uiElements = [], this.controls = [], this.contextActions = [], this.blocks = [], this.generalPanelTabs = [], 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.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);
542
730
  }
543
731
  getI18n() {
544
732
  return this.i18n;
@@ -594,104 +782,111 @@ var se = V, ae = class {
594
782
  getIconsRegistry() {
595
783
  return this.iconsRegistry;
596
784
  }
597
- }, Te = class {
785
+ getGeneralPanelTabs() {
786
+ return this.generalPanelTabs;
787
+ }
788
+ }, gt = class {
598
789
  constructor() {
599
- this.styles = [], this.uiElements = [], this.controls = [], this.contextActions = [], this.blocks = [];
790
+ this.styles = [], this.uiElements = [], this.controls = [], this.contextActions = [], this.blocks = [], this.generalPanelTabs = [];
600
791
  }
601
- withLocalization(t) {
602
- return this.i18n = t, this;
792
+ withLocalization(e) {
793
+ return this.i18n = e, this;
603
794
  }
604
795
  /**
605
796
  * @deprecated Use addStyles() instead. This method will be removed in a future version.
606
797
  */
607
- withStyles(t) {
608
- return this.styles = [t], this;
798
+ withStyles(e) {
799
+ return this.styles = [e], this;
609
800
  }
610
- addStyles(t) {
611
- return this.styles.push(t), this;
801
+ addStyles(e) {
802
+ return this.styles.push(e), this;
612
803
  }
613
804
  /**
614
805
  * @description defines custom developer styles to use inside the editor document preview
615
806
  */
616
- withPreviewStyles(t) {
617
- return this.previewStyles = t, this;
807
+ withPreviewStyles(e) {
808
+ return this.previewStyles = e, this;
809
+ }
810
+ addContextAction(e) {
811
+ return this.contextActions.push(e), this;
618
812
  }
619
- addContextAction(t) {
620
- return this.contextActions.push(t), this;
813
+ addUiElement(e) {
814
+ return this.uiElements.push(e), this;
621
815
  }
622
- addUiElement(t) {
623
- return this.uiElements.push(t), this;
816
+ withUiElementTagRegistry(e) {
817
+ return this.uiElementTagRegistry = e, this;
624
818
  }
625
- withUiElementTagRegistry(t) {
626
- return this.uiElementTagRegistry = t, this;
819
+ addControl(e) {
820
+ return this.controls.push(e), this;
627
821
  }
628
- addControl(t) {
629
- return this.controls.push(t), this;
822
+ withSettingsPanelRegistry(e) {
823
+ return this.settingsPanelRegistry = e, this;
630
824
  }
631
- withSettingsPanelRegistry(t) {
632
- return this.settingsPanelRegistry = t, this;
825
+ withExternalSmartElementsLibrary(e) {
826
+ return this.externalSmartElementsLibrary = e, this;
633
827
  }
634
- withExternalSmartElementsLibrary(t) {
635
- return this.externalSmartElementsLibrary = t, this;
828
+ withExternalImageLibrary(e) {
829
+ return this.externalImageLibrary = e, this;
636
830
  }
637
- withExternalImageLibrary(t) {
638
- return this.externalImageLibrary = t, this;
831
+ withExternalImageLibraryTab(e) {
832
+ return this.externalImageLibraryTab = e, this;
639
833
  }
640
- withExternalImageLibraryTab(t) {
641
- return this.externalImageLibraryTab = t, this;
834
+ withExternalAiAssistant(e) {
835
+ return this.externalAiAssistant = e, this;
642
836
  }
643
- withExternalAiAssistant(t) {
644
- return this.externalAiAssistant = t, this;
837
+ withExternalDisplayCondition(e) {
838
+ return this.externalDisplayConditionsLibrary = e, this;
645
839
  }
646
- withExternalDisplayCondition(t) {
647
- return this.externalDisplayConditionsLibrary = t, this;
840
+ withExternalVideosLibrary(e) {
841
+ return this.externalVideoLibrary = e, this;
648
842
  }
649
- withExternalVideosLibrary(t) {
650
- return this.externalVideoLibrary = t, this;
843
+ withBlocksPanel(e) {
844
+ return this.blocksPanel = e, this;
651
845
  }
652
- withBlocksPanel(t) {
653
- return this.blocksPanel = t, this;
846
+ addBlock(e) {
847
+ return this.blocks.push(e), this;
654
848
  }
655
- addBlock(t) {
656
- return this.blocks.push(t), this;
849
+ withIconsRegistry(e) {
850
+ return this.iconsRegistry = e, this;
657
851
  }
658
- withIconsRegistry(t) {
659
- return this.iconsRegistry = t, this;
852
+ addGeneralPanelTab(e) {
853
+ return this.generalPanelTabs.push(e), this;
660
854
  }
661
855
  build() {
662
- return new Ut(
663
- this.i18n,
664
- (this.styles || []).map((t) => t.trim()).join(`
856
+ return new Ke({
857
+ i18n: this.i18n,
858
+ styles: this.styles.map((e) => e.trim()).join(`
665
859
  `),
666
- this.uiElements,
667
- this.uiElementTagRegistry,
668
- this.controls,
669
- this.settingsPanelRegistry,
670
- this.contextActions,
671
- this.blocks,
672
- this.externalSmartElementsLibrary,
673
- this.externalImageLibrary,
674
- this.previewStyles,
675
- this.externalAiAssistant,
676
- this.externalDisplayConditionsLibrary,
677
- this.externalVideoLibrary,
678
- this.blocksPanel,
679
- this.iconsRegistry,
680
- this.externalImageLibraryTab
681
- );
682
- }
683
- }, pt = class C extends a {
860
+ uiElements: this.uiElements,
861
+ uiElementTagRegistry: this.uiElementTagRegistry,
862
+ controls: this.controls,
863
+ settingsPanelRegistry: this.settingsPanelRegistry,
864
+ contextActions: this.contextActions,
865
+ blocks: this.blocks,
866
+ externalSmartElementsLibrary: this.externalSmartElementsLibrary,
867
+ externalImageLibrary: this.externalImageLibrary,
868
+ previewStyles: this.previewStyles,
869
+ externalAiAssistant: this.externalAiAssistant,
870
+ externalDisplayConditionsLibrary: this.externalDisplayConditionsLibrary,
871
+ externalVideoLibrary: this.externalVideoLibrary,
872
+ blocksPanel: this.blocksPanel,
873
+ iconsRegistry: this.iconsRegistry,
874
+ externalImageLibraryTab: this.externalImageLibraryTab,
875
+ generalPanelTabs: this.generalPanelTabs
876
+ });
877
+ }
878
+ }, Fe = class m extends s {
684
879
  constructor() {
685
- super(C.REQUIRED_METHODS, C);
880
+ super(m.REQUIRED_METHODS, m);
686
881
  }
687
- openAiAssistant({ value: e, onDataSelectCallback: r, onCancelCallback: s, type: E }) {
882
+ openAiAssistant(t) {
688
883
  throw new Error("Method openAiAssistant() must be implemented by the subclass");
689
884
  }
690
885
  };
691
- pt.REQUIRED_METHODS = ["openAiAssistant"];
692
- var Kt = class g extends a {
886
+ Fe.REQUIRED_METHODS = ["openAiAssistant"];
887
+ var He = class R extends s {
693
888
  constructor() {
694
- super(g.REQUIRED_METHODS, g);
889
+ super(R.REQUIRED_METHODS, R);
695
890
  }
696
891
  /**
697
892
  * Retrieves the name of the category.
@@ -704,11 +899,11 @@ var Kt = class g extends a {
704
899
  /**
705
900
  * Opens a popup dialog for creating or updating a display condition.
706
901
  *
707
- * @param {DisplayCondition} currentCondition - The currently selected display condition to edit.
708
- * @param {ExternalDisplayConditionSelectedCB} successCallback - Callback executed with the updated or newly created condition upon success.
709
- * @param {() => void} cancelCallback - Callback executed when the dialog is closed without making changes.
902
+ * @param {DisplayCondition} _currentCondition - The currently selected display condition to edit.
903
+ * @param {ExternalDisplayConditionSelectedCB} _successCallback - Callback executed with the updated or newly created condition upon success.
904
+ * @param {() => void} _cancelCallback - Callback executed when the dialog is closed without making changes.
710
905
  */
711
- openExternalDisplayConditionsDialog(e, r, s) {
906
+ openExternalDisplayConditionsDialog(t, n, i) {
712
907
  throw new Error("Method openExternalDisplayConditionsDialog() must be implemented by the subclass");
713
908
  }
714
909
  /**
@@ -729,19 +924,19 @@ var Kt = class g extends a {
729
924
  throw new Error("Method getContextActionIndex() must be implemented by the subclass");
730
925
  }
731
926
  };
732
- Kt.REQUIRED_METHODS = ["getCategoryName", "openExternalDisplayConditionsDialog"];
733
- var Ft = class m extends a {
927
+ He.REQUIRED_METHODS = ["getCategoryName", "openExternalDisplayConditionsDialog"];
928
+ var ke = class L extends s {
734
929
  constructor() {
735
- super(m.REQUIRED_METHODS, m);
930
+ super(L.REQUIRED_METHODS, L);
736
931
  }
737
- openImageLibrary(e, r, s) {
932
+ openImageLibrary(t, n, i) {
738
933
  throw new Error("Method openImageLibrary() must be implemented by the subclass");
739
934
  }
740
935
  };
741
- Ft.REQUIRED_METHODS = ["openImageLibrary"];
742
- var wt = class b extends a {
936
+ ke.REQUIRED_METHODS = ["openImageLibrary"];
937
+ var Xe = class _ extends s {
743
938
  constructor() {
744
- super(b.REQUIRED_METHODS, b);
939
+ super(_.REQUIRED_METHODS, _);
745
940
  }
746
941
  /**
747
942
  * @description Returns the translated name/label for the tab
@@ -754,45 +949,46 @@ var wt = class b extends a {
754
949
  * @description Opens the external image library tab and provides a container for rendering
755
950
  * @param _container - DOM element container where the external library UI should be rendered
756
951
  * @param _onImageSelectCallback - Callback to invoke when an image is selected
952
+ * @param _selectedNode - (Optional) Selected node for which the gallery is being opened
757
953
  */
758
- openImageLibraryTab(e, r) {
954
+ openImageLibraryTab(t, n, i) {
759
955
  throw new Error("Method openImageLibraryTab() must be implemented by the subclass");
760
956
  }
761
957
  };
762
- wt.REQUIRED_METHODS = ["getName", "openImageLibraryTab"];
763
- var Pt = class N extends a {
958
+ Xe.REQUIRED_METHODS = ["getName", "openImageLibraryTab"];
959
+ var pe = class C extends s {
764
960
  constructor() {
765
- super(N.REQUIRED_METHODS, N);
961
+ super(C.REQUIRED_METHODS, C);
766
962
  }
767
- openSmartElementsLibrary(e, r) {
963
+ openSmartElementsLibrary(t, n) {
768
964
  throw new Error("Method openSmartElementsLibrary() must be implemented by the subclass");
769
965
  }
770
966
  };
771
- Pt.REQUIRED_METHODS = ["openSmartElementsLibrary"];
772
- var Ht = class A extends a {
967
+ pe.REQUIRED_METHODS = ["openSmartElementsLibrary"];
968
+ var Ge = class A extends s {
773
969
  constructor() {
774
970
  super(A.REQUIRED_METHODS, A);
775
971
  }
776
- openExternalVideosLibraryDialog(e, r, s) {
972
+ openExternalVideosLibraryDialog(t, n, i) {
777
973
  throw new Error("Method openExternalVideosLibraryDialog() must be implemented by the subclass");
778
974
  }
779
975
  };
780
- Ht.REQUIRED_METHODS = ["openExternalVideosLibraryDialog"];
781
- var Q = class D extends a {
976
+ Ge.REQUIRED_METHODS = ["openExternalVideosLibraryDialog"];
977
+ var V = class N extends s {
782
978
  constructor() {
783
- super(D.REQUIRED_METHODS, D);
979
+ super(N.REQUIRED_METHODS, N);
784
980
  }
785
- registerIconsSvg(e) {
981
+ registerIconsSvg(t) {
786
982
  throw new Error("Method registerIconsSvg() must be implemented by the subclass");
787
983
  }
788
984
  };
789
- Q.REQUIRED_METHODS = ["registerIconsSvg"];
790
- var ce = Q, _e = class {
791
- constructor(t) {
792
- this.key = t;
985
+ V.REQUIRED_METHODS = ["registerIconsSvg"];
986
+ var mt = V, Rt = class {
987
+ constructor(e) {
988
+ this.key = e;
793
989
  }
794
- withParams(t) {
795
- return this.params = t, this;
990
+ withParams(e) {
991
+ return this.params = e, this;
796
992
  }
797
993
  getValue() {
798
994
  return {
@@ -800,15 +996,15 @@ var ce = Q, _e = class {
800
996
  params: this.params
801
997
  };
802
998
  }
803
- }, f = class S extends a {
999
+ }, Q = class D extends s {
804
1000
  constructor() {
805
- super(S.REQUIRED_METHODS, S);
1001
+ super(D.REQUIRED_METHODS, D);
806
1002
  }
807
1003
  /**
808
1004
  * Called when the UI element should render its content into the provided container.
809
1005
  * @param container - The HTMLElement where the UI element should be rendered.
810
1006
  */
811
- onRender(e) {
1007
+ onRender(t) {
812
1008
  throw new Error("Method onRender() must be implemented by the subclass");
813
1009
  }
814
1010
  /**
@@ -829,7 +1025,7 @@ var ce = Q, _e = class {
829
1025
  * Implement this if the element manages a state or value and needs to be updated externally.
830
1026
  * @param value - The new value to set.
831
1027
  */
832
- setValue(e) {
1028
+ setValue(t) {
833
1029
  }
834
1030
  /**
835
1031
  * @description Optional hook called when one of the element's supported attributes ({@link UEAttr}) gets updated externally.
@@ -837,7 +1033,7 @@ var ce = Q, _e = class {
837
1033
  * @param name - The name of the attribute that was updated.
838
1034
  * @param value - The new value of the attribute.
839
1035
  */
840
- onAttributeUpdated(e, r) {
1036
+ onAttributeUpdated(t, n) {
841
1037
  }
842
1038
  /**
843
1039
  * Gets the unique identifier for this UI element type.
@@ -855,62 +1051,64 @@ var ce = Q, _e = class {
855
1051
  throw new Error("Method getTemplate() must be implemented by the subclass");
856
1052
  }
857
1053
  };
858
- f.REQUIRED_METHODS = ["onRender", "getId", "getTemplate"];
859
- var he = f, Y = class B extends a {
1054
+ Q.REQUIRED_METHODS = ["onRender", "getId", "getTemplate"];
1055
+ var Lt = Q, f = class S extends s {
860
1056
  constructor() {
861
- super(B.REQUIRED_METHODS, B);
1057
+ super(S.REQUIRED_METHODS, S);
862
1058
  }
863
- registerUiElements(e) {
1059
+ registerUiElements(t) {
864
1060
  throw new Error("Method registerUiElements() must be implemented by the subclass");
865
1061
  }
866
1062
  };
867
- Y.REQUIRED_METHODS = ["registerUiElements"];
868
- var Re = Y;
1063
+ f.REQUIRED_METHODS = ["registerUiElements"];
1064
+ var _t = f;
869
1065
  export {
870
- Xt as Block,
871
- kt as BlockAttr,
872
- et as BlockCompositionType,
873
- O as BlockSelector,
874
- ht as BlockType,
875
- x as BuiltInControl,
876
- n as BuiltInControlTypes,
877
- Qt as ButtonAlignBuiltInControl,
878
- ft as ButtonBackgroundColorBuiltInControl,
879
- Yt as ButtonBorderBuiltInControl,
880
- Vt as ButtonBorderRadiusBuiltInControl,
881
- $t as ButtonColorBuiltInControl,
882
- w as ButtonControls,
883
- Wt as ButtonFitToContainerBuiltInControl,
884
- zt as ButtonFontFamilyBuiltInControl,
885
- Zt as ButtonMarginsBuiltInControl,
886
- jt as ButtonPaddingsBuiltInControl,
887
- qt as ButtonTextBuiltInControl,
888
- Jt as ButtonTextSizeBuiltInControl,
889
- te as ButtonTextStyleAndFontColorBuiltInControl,
890
- Rt as ContainerControls,
891
- ee as Control,
892
- Ut as Extension,
893
- Te as ExtensionBuilder,
894
- F as GeneralControls,
895
- ce as IconsRegistry,
1066
+ Qe as Block,
1067
+ Ye as BlockAttr,
1068
+ $ as BlockCompositionType,
1069
+ I as BlockSelector,
1070
+ Ee as BlockType,
1071
+ fe as BlocksPanel,
1072
+ M as BuiltInControl,
1073
+ a as BuiltInControlTypes,
1074
+ ze as ButtonAlignBuiltInControl,
1075
+ Ze as ButtonBackgroundColorBuiltInControl,
1076
+ je as ButtonBorderBuiltInControl,
1077
+ We as ButtonBorderRadiusBuiltInControl,
1078
+ qe as ButtonColorBuiltInControl,
1079
+ K as ButtonControls,
1080
+ Je as ButtonFitToContainerBuiltInControl,
1081
+ et as ButtonFontFamilyBuiltInControl,
1082
+ tt as ButtonMarginsBuiltInControl,
1083
+ rt as ButtonPaddingsBuiltInControl,
1084
+ nt as ButtonTextBuiltInControl,
1085
+ at as ButtonTextSizeBuiltInControl,
1086
+ st as ButtonTextStyleAndFontColorBuiltInControl,
1087
+ oe as ContainerControls,
1088
+ it as Control,
1089
+ de as EditorStatePropertyType,
1090
+ Ke as Extension,
1091
+ gt as ExtensionBuilder,
1092
+ w as GeneralControls,
1093
+ mt as IconsRegistry,
896
1094
  H as ImageControls,
897
- re as ImageMarginsBuiltInControl,
898
- ne as ImageSizeBuiltInControl,
899
- _e as ModificationDescription,
900
- se as SettingsPanelRegistry,
901
- ae as SettingsPanelTab,
902
- Lt as SettingsTab,
903
- ie as TextAlignBuiltInControl,
904
- oe as TextBlockBackgroundBuiltInControl,
905
- Ee as TextColorBuiltInControl,
906
- P as TextControls,
907
- le as TextFontFamilyBuiltInControl,
908
- de as TextLineSpacingBuiltInControl,
909
- ue as TextPaddingsBuiltInControl,
910
- Ie as TextSizeBuiltInControl,
911
- Oe as TextStyleBuiltInControl,
912
- Gt as UEAttr,
913
- he as UIElement,
914
- Re as UIElementTagRegistry,
915
- yt as UIElementType
1095
+ lt as ImageMarginsBuiltInControl,
1096
+ Et as ImageSizeBuiltInControl,
1097
+ Rt as ModificationDescription,
1098
+ ue as PreviewDeviceMode,
1099
+ ot as SettingsPanelRegistry,
1100
+ dt as SettingsPanelTab,
1101
+ Ie as SettingsTab,
1102
+ ut as TextAlignBuiltInControl,
1103
+ It as TextColorBuiltInControl,
1104
+ F as TextControls,
1105
+ ct as TextFontFamilyBuiltInControl,
1106
+ Tt as TextLineSpacingBuiltInControl,
1107
+ bt as TextPaddingsBuiltInControl,
1108
+ Ot as TextSizeBuiltInControl,
1109
+ ht as TextStyleBuiltInControl,
1110
+ $e as UEAttr,
1111
+ Lt as UIElement,
1112
+ _t as UIElementTagRegistry,
1113
+ Pe as UIElementType
916
1114
  };