@useinsider/guido 2.0.0-beta.1c331b8 → 2.0.0-beta.1f72712

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 (52) hide show
  1. package/dist/extensions/Blocks/Recommendation/block.js +40 -6
  2. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +64 -0
  3. package/dist/extensions/Blocks/Recommendation/constants/layout.js +9 -4
  4. package/dist/extensions/Blocks/Recommendation/constants/selectors.js +17 -9
  5. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +48 -54
  6. package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +42 -36
  7. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +51 -27
  8. package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +146 -73
  9. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +49 -35
  10. package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +23 -13
  11. package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +41 -41
  12. package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +27 -16
  13. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +79 -67
  14. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.js +1 -1
  15. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.js +3 -3
  16. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +85 -79
  17. package/dist/extensions/Blocks/Recommendation/recommendation.css.js +8 -4
  18. package/dist/extensions/Blocks/Recommendation/services/configService.js +239 -0
  19. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +30 -28
  20. package/dist/extensions/Blocks/Recommendation/templates/horizontal/elementRenderer.js +49 -25
  21. package/dist/extensions/Blocks/Recommendation/templates/horizontal/template.js +18 -19
  22. package/dist/extensions/Blocks/Recommendation/templates/utils.js +44 -101
  23. package/dist/extensions/Blocks/Recommendation/templates/vertical/elementRenderer.js +60 -35
  24. package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +6 -0
  25. package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +29 -0
  26. package/dist/extensions/Blocks/Recommendation/utils/tagName.js +46 -0
  27. package/dist/extensions/Blocks/common-control.js +1 -1
  28. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +214 -157
  29. package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
  30. package/dist/src/extensions/Blocks/Recommendation/block.d.ts +34 -0
  31. package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +49 -0
  32. package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +3 -2
  33. package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +10 -0
  34. package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +12 -0
  35. package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +3 -1
  36. package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +13 -1
  37. package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +30 -1
  38. package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +19 -0
  39. package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +9 -0
  40. package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +4 -2
  41. package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +8 -0
  42. package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +19 -0
  43. package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +13 -2
  44. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +151 -0
  45. package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +6 -0
  46. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +1 -0
  47. package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +7 -0
  48. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +154 -0
  49. package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +33 -0
  50. package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +113 -0
  51. package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +77 -0
  52. package/package.json +1 -1
@@ -1,17 +1,17 @@
1
- var B = class d {
1
+ var x = 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(t, r) {
8
- if (r !== d) {
9
- d.validatedClasses.has(r) || this.validateImplementation(t, r);
10
- const s = d.validationErrors.get(r);
11
- if (s && s.length > 0)
7
+ constructor(t, a) {
8
+ if (a !== d) {
9
+ d.validatedClasses.has(a) || this.validateImplementation(t, a);
10
+ const i = d.validationErrors.get(a);
11
+ if (i && i.length > 0)
12
12
  throw new Error(
13
- `${r.name} has validation errors:
14
- ${s.map((o) => ` - ${o}`).join(`
13
+ `${a.name} has validation errors:
14
+ ${i.map((o) => ` - ${o}`).join(`
15
15
  `)}`
16
16
  );
17
17
  }
@@ -20,21 +20,21 @@ ${s.map((o) => ` - ${o}`).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(t, r) {
24
- var x;
25
- const s = [], o = r.name, Y = Object.getPrototypeOf(this);
23
+ validateImplementation(t, a) {
24
+ var M;
25
+ const i = [], o = a.name, Y = Object.getPrototypeOf(this);
26
26
  t.forEach((u) => {
27
27
  if (typeof this[u] != "function") {
28
- s.push(`Method ${u}() is not defined`);
28
+ i.push(`Method ${u}() is not defined`);
29
29
  return;
30
30
  }
31
- Y[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" && ((x = process.env) == null ? void 0 : x.NODE_ENV) === "development" && console.log(`[${o} Validation] ✅ ${o} validated successfully`);
31
+ Y[u] === a.prototype[u] && i.push(`Method ${u}() must be implemented (currently using base class error-throwing implementation)`);
32
+ }), d.validatedClasses.add(a), i.length > 0 ? (d.validationErrors.set(a, i), console.error(`[${o} Validation] ${o} validation failed:`, i)) : typeof process < "u" && ((M = process.env) == null ? void 0 : M.NODE_ENV) === "development" && console.log(`[${o} Validation] ✅ ${o} validated successfully`);
33
33
  }
34
34
  };
35
- B.validatedClasses = /* @__PURE__ */ new Set();
36
- B.validationErrors = /* @__PURE__ */ new Map();
37
- var a = B, $ = /* @__PURE__ */ ((e) => (e.BLOCK = "BLOCK", e.STRUCTURE = "STRUCTURE", e.CONTAINER = "CONTAINER", e))($ || {}), y = class T extends a {
35
+ x.validatedClasses = /* @__PURE__ */ new Set();
36
+ x.validationErrors = /* @__PURE__ */ new Map();
37
+ var s = x, $ = /* @__PURE__ */ ((e) => (e.BLOCK = "BLOCK", e.STRUCTURE = "STRUCTURE", e.CONTAINER = "CONTAINER", e))($ || {}), v = class T extends s {
38
38
  constructor() {
39
39
  super(T.REQUIRED_METHODS, T);
40
40
  }
@@ -195,8 +195,8 @@ var a = B, $ = /* @__PURE__ */ ((e) => (e.BLOCK = "BLOCK", e.STRUCTURE = "STRUCT
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 Ue = y, W = class c extends a {
198
+ v.REQUIRED_METHODS = ["getId", "getTemplate", "getIcon", "getName", "getDescription"];
199
+ var Ge = v, W = class c extends s {
200
200
  constructor() {
201
201
  super(c.REQUIRED_METHODS, c);
202
202
  }
@@ -214,9 +214,9 @@ var Ue = y, W = class c extends a {
214
214
  }
215
215
  };
216
216
  W.REQUIRED_METHODS = ["getPreviewInnerHtml"];
217
- var z = class O extends a {
217
+ var z = class b extends s {
218
218
  constructor() {
219
- super(O.REQUIRED_METHODS, O);
219
+ super(b.REQUIRED_METHODS, b);
220
220
  }
221
221
  getId() {
222
222
  throw new Error("Method getId() must be implemented by the subclass");
@@ -237,75 +237,132 @@ var Z = {
237
237
  alt: "alt",
238
238
  href: "href",
239
239
  width: "width"
240
- }, we = {
240
+ }, Ve = {
241
241
  BLOCK_IMAGE: Z
242
- }, v = "esd-block-button", U = "esd-block-text", w = "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", Ee = "esd-amp-form", I = ((e) => (e.BUTTON = `.${v}`, e.TEXT = `.${U}`, e.IMAGE = `.${w}`, 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 = `.${Ee}`, e))(I || {}), le = /* @__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))(le || {}), P = /* @__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))(P || {}), 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 || {}), n = {
242
+ }, 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", ae = "esd-block-html", ne = "esd-block-spacer", se = "esd-container-frame", ie = "esd-stripe", Ee = "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 = `.${ae}`, e.SPACER = `.${ne}`, e.CONTAINER = `.${se}`, e.STRIPE = `.${ie}`, e.FORM = `.${Ee}`, e))(I || {}), le = /* @__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))(le || {}), 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 || {}), n = {
243
243
  BLOCK_BUTTON: K,
244
244
  BLOCK_TEXT: F,
245
245
  BLOCK_IMAGE: H,
246
- GENERAL: P
247
- }, de = /* @__PURE__ */ ((e) => (e.SETTINGS = "settings", e.STYLES = "styles", e.DATA = "data", e))(de || {}), E = {
246
+ GENERAL: w
247
+ }, de = /* @__PURE__ */ ((e) => (e.SETTINGS = "settings", e.STYLES = "styles", e.DATA = "data", e))(de || {}), r = {
248
248
  name: "name",
249
249
  disabled: "disabled"
250
250
  }, ue = {
251
- ...E,
251
+ ...r,
252
252
  caption: "caption",
253
253
  icon: "icon"
254
254
  }, Ie = {
255
- ...E,
255
+ ...r,
256
256
  caption: "caption"
257
257
  }, Te = {
258
- ...E,
258
+ ...r,
259
259
  minValue: "min-value",
260
260
  maxValue: "max-value",
261
261
  step: "step"
262
262
  }, ce = {
263
- ...E,
264
- text: "text"
263
+ ...r,
264
+ placeholder: "placeholder",
265
+ minDate: "min-date"
266
+ }, be = {
267
+ ...r,
268
+ text: "text",
269
+ hint: "hint"
265
270
  }, Oe = {
266
- ...E
271
+ ...r,
272
+ type: "type"
273
+ }, he = {
274
+ ...r,
275
+ buttons: "buttons"
267
276
  }, X = {
268
- ...E,
277
+ ...r,
269
278
  searchable: "searchable",
270
279
  multiSelect: "multi-select",
271
280
  placeholder: "placeholder",
272
281
  items: "items"
273
- }, he = {
274
- ...X
282
+ }, me = {
283
+ ...X,
284
+ addCustomFontOption: "add-custom-font-option"
275
285
  }, ge = {
286
+ ...r,
276
287
  text: "text",
277
288
  value: "value"
278
- }, be = {
289
+ }, Re = {
290
+ ...r,
279
291
  text: "text",
292
+ hint: "hint",
280
293
  icon: "icon",
281
294
  value: "value"
282
- }, me = {
283
- ...E
284
- }, Re = {
285
- controlId: "control-id"
286
295
  }, _e = {
287
- ...E,
296
+ ...r,
297
+ buttons: "buttons"
298
+ }, Le = {
299
+ ...r,
300
+ text: "text",
301
+ hint: "hint",
302
+ icon: "icon",
303
+ value: "value"
304
+ }, Ce = {
305
+ ...r,
306
+ placeholder: "placeholder"
307
+ }, Ae = {
308
+ ...r,
309
+ resizable: "resizable",
310
+ placeholder: "placeholder"
311
+ }, Ne = {
312
+ ...r,
313
+ img: "img",
314
+ src: "src",
315
+ title: "title",
316
+ imageClass: "image-class",
317
+ hint: "hint",
318
+ disabled: "disabled",
319
+ isActive: "is-active",
320
+ visibility: "visibility",
321
+ transform: "transform"
322
+ }, De = {
323
+ ...r,
324
+ controlId: "control-id"
325
+ }, Se = {
326
+ ...r,
327
+ expanded: "expanded"
328
+ }, xe = {
329
+ ...r,
288
330
  icon: "icon",
289
331
  position: "position"
290
- }, Le = {
291
- ...E
292
- }, Pe = {
332
+ }, Be = {
333
+ ...r
334
+ }, Me = {
335
+ ...r,
336
+ icon: "icon"
337
+ }, ve = {
338
+ ...r
339
+ }, Qe = {
340
+ DEFAULT: r,
293
341
  BUTTON: ue,
294
342
  CHECKBOX: Ie,
295
- COLOR: E,
343
+ CHECK_BUTTONS: _e,
344
+ COLOR: r,
296
345
  COUNTER: Te,
297
- LABEL: ce,
298
- RADIO_BUTTONS: Oe,
346
+ DATEPICKER: ce,
347
+ LABEL: be,
348
+ MESSAGE: Oe,
349
+ RADIO_BUTTONS: he,
299
350
  SELECTPICKER: X,
300
- FONT_FAMILY_SELECT: he,
301
- SWITCHER: E,
302
- TEXT: me,
351
+ FONT_FAMILY_SELECT: me,
352
+ SWITCHER: r,
353
+ TEXT: Ce,
354
+ TEXTAREA: Ae,
355
+ ICON: Ne,
356
+ CHECK_ITEM: Re,
303
357
  SELECT_ITEM: ge,
304
- RADIO_ITEM: be,
305
- NESTED_CONTROL: Re,
306
- ORDERABLE: _e,
307
- ORDERABLE_ITEM: Le
308
- }, Ce = /* @__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))(Ce || {}), M = class {
358
+ RADIO_ITEM: Le,
359
+ NESTED_CONTROL: De,
360
+ EXPANDABLE: Se,
361
+ ORDERABLE: xe,
362
+ ORDERABLE_ITEM: Be,
363
+ ORDERABLE_ICON: Me,
364
+ REPEATABLE: ve
365
+ }, ye = /* @__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))(ye || {}), B = class {
309
366
  /**
310
367
  * @description returns map of nodes parent control operates on
311
368
  */
@@ -336,68 +393,68 @@ var Z = {
336
393
  isVisible(e) {
337
394
  return !0;
338
395
  }
339
- }, i = class extends M {
396
+ }, E = class extends B {
340
397
  getTargetNodes(e) {
341
- const t = e.querySelectorAll(I.BUTTON), r = e.asElement().hasClass(v) ? [e] : [];
342
- return t.length ? t : r;
398
+ const t = e.querySelectorAll(I.BUTTON), a = e.asElement().hasClass(y) ? [e] : [];
399
+ return t.length ? t : a;
343
400
  }
344
- }, Ke = class extends i {
401
+ }, fe = class extends E {
345
402
  getParentControlId() {
346
403
  return n.BLOCK_BUTTON.BORDER_RADIUS;
347
404
  }
348
405
  getLabels() {
349
406
  }
350
- }, Fe = class extends i {
407
+ }, Ye = class extends E {
351
408
  getParentControlId() {
352
409
  return n.BLOCK_BUTTON.ALIGNMENT;
353
410
  }
354
- }, He = class extends i {
411
+ }, $e = class extends E {
355
412
  getParentControlId() {
356
413
  return n.GENERAL.BACKGROUND_COLOR;
357
414
  }
358
- }, Xe = class extends i {
415
+ }, We = class extends E {
359
416
  getParentControlId() {
360
417
  return n.BLOCK_BUTTON.BORDER;
361
418
  }
362
419
  getLabels() {
363
420
  }
364
- }, ke = class extends i {
421
+ }, ze = class extends E {
365
422
  getParentControlId() {
366
423
  return n.BLOCK_BUTTON.COLOR;
367
424
  }
368
- }, Ge = class extends i {
425
+ }, Ze = class extends E {
369
426
  getParentControlId() {
370
427
  return n.BLOCK_BUTTON.ADJUST_TO_WIDTH;
371
428
  }
372
- }, Ve = class extends i {
429
+ }, je = class extends E {
373
430
  getParentControlId() {
374
431
  return n.BLOCK_BUTTON.FONT_FAMILY;
375
432
  }
376
- }, pe = class extends i {
433
+ }, qe = class extends E {
377
434
  getParentControlId() {
378
435
  return n.BLOCK_BUTTON.EXTERNAL_INDENTS;
379
436
  }
380
- }, Qe = class extends i {
437
+ }, Je = class extends E {
381
438
  getParentControlId() {
382
439
  return n.BLOCK_BUTTON.INTERNAL_INDENTS;
383
440
  }
384
- }, fe = class extends i {
441
+ }, et = class extends E {
385
442
  getParentControlId() {
386
443
  return n.BLOCK_BUTTON.TEXT;
387
444
  }
388
- }, Ye = class extends i {
445
+ }, tt = class extends E {
389
446
  getParentControlId() {
390
447
  return n.BLOCK_BUTTON.FONT_SIZE;
391
448
  }
392
- }, $e = class extends i {
449
+ }, rt = class extends E {
393
450
  getParentControlId() {
394
451
  return n.BLOCK_BUTTON.TEXT_STYLE_AND_COLOR;
395
452
  }
396
453
  getLabels() {
397
454
  }
398
- }, k = class h extends a {
455
+ }, k = class O extends s {
399
456
  constructor() {
400
- super(h.REQUIRED_METHODS, h);
457
+ super(O.REQUIRED_METHODS, O);
401
458
  }
402
459
  /**
403
460
  * @description Allows to determine if control should be visible or hidden in control panel.
@@ -451,9 +508,9 @@ var Z = {
451
508
  }
452
509
  };
453
510
  k.REQUIRED_METHODS = ["getId", "getTemplate"];
454
- var We = k, Ae = class g extends a {
511
+ var at = k, Ue = class h extends s {
455
512
  constructor() {
456
- super(g.REQUIRED_METHODS, g);
513
+ super(h.REQUIRED_METHODS, h);
457
514
  }
458
515
  /**
459
516
  * Gets the unique identifier for this tab.
@@ -520,30 +577,30 @@ var We = k, Ae = class g extends a {
520
577
  onDestroy() {
521
578
  }
522
579
  };
523
- Ae.REQUIRED_METHODS = ["getId", "getIcon", "getName", "getTemplate", "getTabIndex"];
524
- var G = class extends M {
580
+ Ue.REQUIRED_METHODS = ["getId", "getIcon", "getName", "getTemplate", "getTabIndex"];
581
+ var p = class extends B {
525
582
  getTargetNodes(e) {
526
- const t = e.querySelectorAll(I.IMAGE), r = e.asElement().hasClass(w) ? [e] : [];
527
- return t.length ? t : r;
583
+ const t = e.querySelectorAll(I.IMAGE), a = e.asElement().hasClass(P) ? [e] : [];
584
+ return t.length ? t : a;
528
585
  }
529
- }, ze = class extends G {
586
+ }, nt = class extends p {
530
587
  getParentControlId() {
531
588
  return n.BLOCK_IMAGE.EXTERNAL_INDENTS;
532
589
  }
533
- }, Ze = class extends G {
590
+ }, st = class extends p {
534
591
  getParentControlId() {
535
592
  return n.BLOCK_IMAGE.SIZE;
536
593
  }
537
- }, V = class b extends a {
594
+ }, G = class m extends s {
538
595
  constructor() {
539
- super(b.REQUIRED_METHODS, b);
596
+ super(m.REQUIRED_METHODS, m);
540
597
  }
541
598
  registerBlockControls(t) {
542
599
  throw new Error("Method registerBlockControls() must be implemented by the subclass");
543
600
  }
544
601
  };
545
- V.REQUIRED_METHODS = ["registerBlockControls"];
546
- var je = V, qe = class {
602
+ G.REQUIRED_METHODS = ["registerBlockControls"];
603
+ var it = G, Et = class {
547
604
  constructor(e, t) {
548
605
  this.tabId = e, this.controlsIds = t;
549
606
  }
@@ -566,40 +623,40 @@ var je = V, qe = class {
566
623
  const t = this.controlsIds.indexOf(e);
567
624
  t !== -1 && this.controlsIds.splice(t, 1);
568
625
  }
569
- }, l = class extends M {
626
+ }, l = class extends B {
570
627
  getTargetNodes(e) {
571
- const t = e.querySelectorAll(I.TEXT), r = e.asElement().hasClass(U) ? [e] : [];
572
- return t.length ? t : r;
628
+ const t = e.querySelectorAll(I.TEXT), a = e.asElement().hasClass(U) ? [e] : [];
629
+ return t.length ? t : a;
573
630
  }
574
- }, Je = class extends l {
631
+ }, lt = class extends l {
575
632
  getParentControlId() {
576
633
  return n.GENERAL.TEXT_ALIGN;
577
634
  }
578
- }, et = class extends l {
635
+ }, ot = class extends l {
579
636
  getParentControlId() {
580
637
  return n.GENERAL.TEXT_COLOR;
581
638
  }
582
- }, tt = class extends l {
639
+ }, dt = class extends l {
583
640
  getParentControlId() {
584
641
  return n.BLOCK_TEXT.FONT_FAMILY;
585
642
  }
586
- }, rt = class extends l {
643
+ }, ut = class extends l {
587
644
  getParentControlId() {
588
645
  return n.GENERAL.TEXT_LINE_SPACING;
589
646
  }
590
- }, nt = class extends l {
647
+ }, It = class extends l {
591
648
  getParentControlId() {
592
649
  return n.BLOCK_TEXT.INTERNAL_INDENTS;
593
650
  }
594
- }, at = class extends l {
651
+ }, Tt = class extends l {
595
652
  getParentControlId() {
596
653
  return n.GENERAL.TEXT_SIZE;
597
654
  }
598
- }, st = class extends l {
655
+ }, ct = class extends l {
599
656
  getParentControlId() {
600
657
  return n.GENERAL.TEXT_STYLE;
601
658
  }
602
- }, Ne = class {
659
+ }, Pe = class {
603
660
  constructor(e) {
604
661
  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);
605
662
  }
@@ -660,7 +717,7 @@ var je = V, qe = class {
660
717
  getGeneralPanelTabs() {
661
718
  return this.generalPanelTabs;
662
719
  }
663
- }, it = class {
720
+ }, bt = class {
664
721
  constructor() {
665
722
  this.styles = [], this.uiElements = [], this.controls = [], this.contextActions = [], this.blocks = [], this.generalPanelTabs = [];
666
723
  }
@@ -728,7 +785,7 @@ var je = V, qe = class {
728
785
  return this.generalPanelTabs.push(e), this;
729
786
  }
730
787
  build() {
731
- return new Ne({
788
+ return new Pe({
732
789
  i18n: this.i18n,
733
790
  styles: this.styles.map((e) => e.trim()).join(`
734
791
  `),
@@ -750,16 +807,16 @@ var je = V, qe = class {
750
807
  generalPanelTabs: this.generalPanelTabs
751
808
  });
752
809
  }
753
- }, De = class m extends a {
810
+ }, we = class g extends s {
754
811
  constructor() {
755
- super(m.REQUIRED_METHODS, m);
812
+ super(g.REQUIRED_METHODS, g);
756
813
  }
757
814
  openAiAssistant(t) {
758
815
  throw new Error("Method openAiAssistant() must be implemented by the subclass");
759
816
  }
760
817
  };
761
- De.REQUIRED_METHODS = ["openAiAssistant"];
762
- var Se = class R extends a {
818
+ we.REQUIRED_METHODS = ["openAiAssistant"];
819
+ var Ke = class R extends s {
763
820
  constructor() {
764
821
  super(R.REQUIRED_METHODS, R);
765
822
  }
@@ -778,7 +835,7 @@ var Se = class R extends a {
778
835
  * @param {ExternalDisplayConditionSelectedCB} _successCallback - Callback executed with the updated or newly created condition upon success.
779
836
  * @param {() => void} _cancelCallback - Callback executed when the dialog is closed without making changes.
780
837
  */
781
- openExternalDisplayConditionsDialog(t, r, s) {
838
+ openExternalDisplayConditionsDialog(t, a, i) {
782
839
  throw new Error("Method openExternalDisplayConditionsDialog() must be implemented by the subclass");
783
840
  }
784
841
  /**
@@ -799,17 +856,17 @@ var Se = class R extends a {
799
856
  throw new Error("Method getContextActionIndex() must be implemented by the subclass");
800
857
  }
801
858
  };
802
- Se.REQUIRED_METHODS = ["getCategoryName", "openExternalDisplayConditionsDialog"];
803
- var Be = class _ extends a {
859
+ Ke.REQUIRED_METHODS = ["getCategoryName", "openExternalDisplayConditionsDialog"];
860
+ var Fe = class _ extends s {
804
861
  constructor() {
805
862
  super(_.REQUIRED_METHODS, _);
806
863
  }
807
- openImageLibrary(t, r, s) {
864
+ openImageLibrary(t, a, i) {
808
865
  throw new Error("Method openImageLibrary() must be implemented by the subclass");
809
866
  }
810
867
  };
811
- Be.REQUIRED_METHODS = ["openImageLibrary"];
812
- var Me = class L extends a {
868
+ Fe.REQUIRED_METHODS = ["openImageLibrary"];
869
+ var He = class L extends s {
813
870
  constructor() {
814
871
  super(L.REQUIRED_METHODS, L);
815
872
  }
@@ -826,30 +883,30 @@ var Me = class L extends a {
826
883
  * @param _onImageSelectCallback - Callback to invoke when an image is selected
827
884
  * @param _selectedNode - (Optional) Selected node for which the gallery is being opened
828
885
  */
829
- openImageLibraryTab(t, r, s) {
886
+ openImageLibraryTab(t, a, i) {
830
887
  throw new Error("Method openImageLibraryTab() must be implemented by the subclass");
831
888
  }
832
889
  };
833
- Me.REQUIRED_METHODS = ["getName", "openImageLibraryTab"];
834
- var xe = class C extends a {
890
+ He.REQUIRED_METHODS = ["getName", "openImageLibraryTab"];
891
+ var Xe = class C extends s {
835
892
  constructor() {
836
893
  super(C.REQUIRED_METHODS, C);
837
894
  }
838
- openSmartElementsLibrary(t, r) {
895
+ openSmartElementsLibrary(t, a) {
839
896
  throw new Error("Method openSmartElementsLibrary() must be implemented by the subclass");
840
897
  }
841
898
  };
842
- xe.REQUIRED_METHODS = ["openSmartElementsLibrary"];
843
- var ye = class A extends a {
899
+ Xe.REQUIRED_METHODS = ["openSmartElementsLibrary"];
900
+ var ke = class A extends s {
844
901
  constructor() {
845
902
  super(A.REQUIRED_METHODS, A);
846
903
  }
847
- openExternalVideosLibraryDialog(t, r, s) {
904
+ openExternalVideosLibraryDialog(t, a, i) {
848
905
  throw new Error("Method openExternalVideosLibraryDialog() must be implemented by the subclass");
849
906
  }
850
907
  };
851
- ye.REQUIRED_METHODS = ["openExternalVideosLibraryDialog"];
852
- var p = class N extends a {
908
+ ke.REQUIRED_METHODS = ["openExternalVideosLibraryDialog"];
909
+ var V = class N extends s {
853
910
  constructor() {
854
911
  super(N.REQUIRED_METHODS, N);
855
912
  }
@@ -857,8 +914,8 @@ var p = class N extends a {
857
914
  throw new Error("Method registerIconsSvg() must be implemented by the subclass");
858
915
  }
859
916
  };
860
- p.REQUIRED_METHODS = ["registerIconsSvg"];
861
- var Et = p, lt = class {
917
+ V.REQUIRED_METHODS = ["registerIconsSvg"];
918
+ var Ot = V, ht = class {
862
919
  constructor(e) {
863
920
  this.key = e;
864
921
  }
@@ -871,7 +928,7 @@ var Et = p, lt = class {
871
928
  params: this.params
872
929
  };
873
930
  }
874
- }, Q = class D extends a {
931
+ }, Q = class D extends s {
875
932
  constructor() {
876
933
  super(D.REQUIRED_METHODS, D);
877
934
  }
@@ -908,7 +965,7 @@ var Et = p, lt = class {
908
965
  * @param name - The name of the attribute that was updated.
909
966
  * @param value - The new value of the attribute.
910
967
  */
911
- onAttributeUpdated(t, r) {
968
+ onAttributeUpdated(t, a) {
912
969
  }
913
970
  /**
914
971
  * Gets the unique identifier for this UI element type.
@@ -927,7 +984,7 @@ var Et = p, lt = class {
927
984
  }
928
985
  };
929
986
  Q.REQUIRED_METHODS = ["onRender", "getId", "getTemplate"];
930
- var ot = Q, f = class S extends a {
987
+ var mt = Q, f = class S extends s {
931
988
  constructor() {
932
989
  super(S.REQUIRED_METHODS, S);
933
990
  }
@@ -936,51 +993,51 @@ var ot = Q, f = class S extends a {
936
993
  }
937
994
  };
938
995
  f.REQUIRED_METHODS = ["registerUiElements"];
939
- var dt = f;
996
+ var gt = f;
940
997
  export {
941
- Ue as Block,
942
- we as BlockAttr,
998
+ Ge as Block,
999
+ Ve as BlockAttr,
943
1000
  $ as BlockCompositionType,
944
1001
  I as BlockSelector,
945
1002
  le as BlockType,
946
- M as BuiltInControl,
1003
+ B as BuiltInControl,
947
1004
  n as BuiltInControlTypes,
948
- Fe as ButtonAlignBuiltInControl,
949
- He as ButtonBackgroundColorBuiltInControl,
950
- Xe as ButtonBorderBuiltInControl,
951
- Ke as ButtonBorderRadiusBuiltInControl,
952
- ke as ButtonColorBuiltInControl,
1005
+ Ye as ButtonAlignBuiltInControl,
1006
+ $e as ButtonBackgroundColorBuiltInControl,
1007
+ We as ButtonBorderBuiltInControl,
1008
+ fe as ButtonBorderRadiusBuiltInControl,
1009
+ ze as ButtonColorBuiltInControl,
953
1010
  K as ButtonControls,
954
- Ge as ButtonFitToContainerBuiltInControl,
955
- Ve as ButtonFontFamilyBuiltInControl,
956
- pe as ButtonMarginsBuiltInControl,
957
- Qe as ButtonPaddingsBuiltInControl,
958
- fe as ButtonTextBuiltInControl,
959
- Ye as ButtonTextSizeBuiltInControl,
960
- $e as ButtonTextStyleAndFontColorBuiltInControl,
1011
+ Ze as ButtonFitToContainerBuiltInControl,
1012
+ je as ButtonFontFamilyBuiltInControl,
1013
+ qe as ButtonMarginsBuiltInControl,
1014
+ Je as ButtonPaddingsBuiltInControl,
1015
+ et as ButtonTextBuiltInControl,
1016
+ tt as ButtonTextSizeBuiltInControl,
1017
+ rt as ButtonTextStyleAndFontColorBuiltInControl,
961
1018
  oe as ContainerControls,
962
- We as Control,
963
- Ne as Extension,
964
- it as ExtensionBuilder,
965
- P as GeneralControls,
966
- Et as IconsRegistry,
1019
+ at as Control,
1020
+ Pe as Extension,
1021
+ bt as ExtensionBuilder,
1022
+ w as GeneralControls,
1023
+ Ot as IconsRegistry,
967
1024
  H as ImageControls,
968
- ze as ImageMarginsBuiltInControl,
969
- Ze as ImageSizeBuiltInControl,
970
- lt as ModificationDescription,
971
- je as SettingsPanelRegistry,
972
- qe as SettingsPanelTab,
1025
+ nt as ImageMarginsBuiltInControl,
1026
+ st as ImageSizeBuiltInControl,
1027
+ ht as ModificationDescription,
1028
+ it as SettingsPanelRegistry,
1029
+ Et as SettingsPanelTab,
973
1030
  de as SettingsTab,
974
- Je as TextAlignBuiltInControl,
975
- et as TextColorBuiltInControl,
1031
+ lt as TextAlignBuiltInControl,
1032
+ ot as TextColorBuiltInControl,
976
1033
  F as TextControls,
977
- tt as TextFontFamilyBuiltInControl,
978
- rt as TextLineSpacingBuiltInControl,
979
- nt as TextPaddingsBuiltInControl,
980
- at as TextSizeBuiltInControl,
981
- st as TextStyleBuiltInControl,
982
- Pe as UEAttr,
983
- ot as UIElement,
984
- dt as UIElementTagRegistry,
985
- Ce as UIElementType
1034
+ dt as TextFontFamilyBuiltInControl,
1035
+ ut as TextLineSpacingBuiltInControl,
1036
+ It as TextPaddingsBuiltInControl,
1037
+ Tt as TextSizeBuiltInControl,
1038
+ ct as TextStyleBuiltInControl,
1039
+ Qe as UEAttr,
1040
+ mt as UIElement,
1041
+ gt as UIElementTagRegistry,
1042
+ ye as UIElementType
986
1043
  };