@useinsider/guido 1.0.2-beta.bfb23c2 → 1.0.2-beta.c3f86dc

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 (217) hide show
  1. package/README.md +2 -40
  2. package/dist/@types/events.d.ts +0 -6
  3. package/dist/@types/generic.d.ts +0 -4
  4. package/dist/_virtual/AddCustomFont.js +4 -0
  5. package/dist/_virtual/AiAssistantValueType.js +4 -0
  6. package/dist/_virtual/BackgroundColorBuiltInControl.js +4 -0
  7. package/dist/_virtual/BackgroundImageBuiltInControl.js +4 -0
  8. package/dist/_virtual/Block.js +4 -0
  9. package/dist/_virtual/BlockAttributes.js +4 -0
  10. package/dist/_virtual/BlockCompositionType.js +4 -0
  11. package/dist/_virtual/BlockPaddingsBuiltInControl.js +4 -0
  12. package/dist/_virtual/BlockRenderer.js +4 -0
  13. package/dist/_virtual/BlockType.js +4 -0
  14. package/dist/_virtual/BlocksPanel.js +4 -0
  15. package/dist/_virtual/BuiltInControl.js +4 -0
  16. package/dist/_virtual/BuiltInControlTypes.js +4 -0
  17. package/dist/_virtual/ButtonBorderBuiltInControl.js +4 -0
  18. package/dist/_virtual/ButtonColorBuiltInControl.js +4 -0
  19. package/dist/_virtual/ButtonFontColorBuiltInControl.js +4 -0
  20. package/dist/_virtual/ButtonInternalIndentsBuiltInControl.js +4 -0
  21. package/dist/_virtual/ButtonTextBuiltInControl.js +4 -0
  22. package/dist/_virtual/ContextAction.js +4 -0
  23. package/dist/_virtual/ContextActionType.js +4 -0
  24. package/dist/_virtual/Control.js +4 -0
  25. package/dist/_virtual/EditorStatePropertyType.js +4 -0
  26. package/dist/_virtual/Extension.js +4 -0
  27. package/dist/_virtual/ExtensionBuilder.js +4 -0
  28. package/dist/_virtual/FontFamilyBuiltInControl.js +4 -0
  29. package/dist/_virtual/LinkColorBuiltInControl.js +4 -0
  30. package/dist/_virtual/ModificationDescription.js +4 -0
  31. package/dist/_virtual/PanelPosition.js +4 -0
  32. package/dist/_virtual/PreviewDeviceMode.js +4 -0
  33. package/dist/_virtual/SettingsPanelRegistry.js +4 -0
  34. package/dist/_virtual/SettingsPanelTab.js +4 -0
  35. package/dist/_virtual/SettingsTab.js +4 -0
  36. package/dist/_virtual/StructureBorderBuiltInControl.js +4 -0
  37. package/dist/_virtual/StructurePaddingsBuiltInControl.js +4 -0
  38. package/dist/_virtual/TextColorBuiltInControl.js +4 -0
  39. package/dist/_virtual/TextLineSpacingBuiltInControl.js +4 -0
  40. package/dist/_virtual/TextSizeBuiltInControl.js +4 -0
  41. package/dist/_virtual/TextStyleBuiltInControl.js +4 -0
  42. package/dist/_virtual/UIElement.js +4 -0
  43. package/dist/_virtual/UIElementTagRegistry.js +4 -0
  44. package/dist/_virtual/UIElementType.js +4 -0
  45. package/dist/_virtual/UIElementsAttributes.js +4 -0
  46. package/dist/_virtual/index.js +5 -0
  47. package/dist/_virtual/index2.js +4 -0
  48. package/dist/components/Guido.vue.d.ts +1 -3
  49. package/dist/components/Guido.vue.js +5 -5
  50. package/dist/components/Guido.vue2.js +59 -73
  51. package/dist/components/organisms/LoadingWrapper.vue.js +1 -1
  52. package/dist/components/organisms/email-preview/amp/AmpToggle.vue.js +2 -3
  53. package/dist/components/organisms/header/HeaderWrapper.vue.d.ts +1 -3
  54. package/dist/components/organisms/header/HeaderWrapper.vue.js +6 -6
  55. package/dist/components/organisms/header/HeaderWrapper.vue2.js +9 -15
  56. package/dist/components/organisms/header/RightSlot.vue.d.ts +1 -3
  57. package/dist/components/organisms/header/RightSlot.vue.js +3 -5
  58. package/dist/components/organisms/header/RightSlot.vue2.js +27 -26
  59. package/dist/components/organisms/header/ViewOptions.vue.js +11 -11
  60. package/dist/components/organisms/header/ViewOptions.vue2.js +5 -5
  61. package/dist/components/organisms/header/version-history/ViewOptions.vue.js +11 -11
  62. package/dist/components/organisms/header/version-history/ViewOptions.vue2.js +5 -5
  63. package/dist/composables/useCustomInterfaceAppearance.js +18 -22
  64. package/dist/composables/useHtmlCompiler.js +9 -17
  65. package/dist/composables/usePartner.d.ts +0 -1
  66. package/dist/composables/usePartner.js +9 -16
  67. package/dist/composables/useStripo.js +39 -49
  68. package/dist/composables/useToaster.js +17 -17
  69. package/dist/config/compiler/outlookCompilerRules.d.ts +0 -2
  70. package/dist/enums/defaults.d.ts +1 -6
  71. package/dist/enums/defaults.js +9 -45
  72. package/dist/extensions/DynamicContent/dynamic-content.js +27 -41
  73. package/dist/extensions/DynamicContent/extension.js +6 -18
  74. package/dist/guido.css +1 -1
  75. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/Extension.js +48 -72
  76. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/ExtensionBuilder.js +49 -74
  77. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/blocks/Block.js +38 -120
  78. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/blocks/BlockRenderer.js +18 -0
  79. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/blocks/BlocksPanel.js +32 -0
  80. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/blocks/ContextAction.js +18 -0
  81. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/AddCustomFont.js +8 -0
  82. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/AiAssistantValueType.js +11 -5
  83. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BlockAttributes.js +34 -0
  84. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BlockCompositionType.js +11 -5
  85. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BlockType.js +11 -5
  86. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BuiltInControlTypes.js +101 -116
  87. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/ContextActionType.js +11 -5
  88. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/EditorStatePropertyType.js +11 -5
  89. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/PanelPosition.js +11 -5
  90. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/PreviewDeviceMode.js +11 -5
  91. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/SettingsTab.js +11 -5
  92. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/UIElementType.js +11 -5
  93. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/UIElementsAttributes.js +43 -22
  94. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/BackgroundColorBuiltInControl.js +43 -0
  95. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/BackgroundImageBuiltInControl.js +46 -0
  96. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/BlockPaddingsBuiltInControl.js +44 -0
  97. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/BuiltInControl.js +22 -0
  98. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonBorderBuiltInControl.js +46 -0
  99. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonColorBuiltInControl.js +46 -0
  100. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonFontColorBuiltInControl.js +45 -0
  101. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonInternalIndentsBuiltInControl.js +45 -0
  102. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonTextBuiltInControl.js +45 -0
  103. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/Control.js +17 -21
  104. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/FontFamilyBuiltInControl.js +43 -0
  105. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/LinkColorBuiltInControl.js +45 -0
  106. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/SettingsPanelRegistry.js +15 -8
  107. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/SettingsPanelTab.js +29 -30
  108. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/StructureBorderBuiltInControl.js +46 -0
  109. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/StructurePaddingsBuiltInControl.js +44 -0
  110. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/TextColorBuiltInControl.js +43 -0
  111. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/TextLineSpacingBuiltInControl.js +43 -0
  112. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/TextSizeBuiltInControl.js +45 -0
  113. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/TextStyleBuiltInControl.js +43 -0
  114. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/index.js +266 -0
  115. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/modifications/ModificationDescription.js +23 -19
  116. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/ui-elements/UIElement.js +19 -37
  117. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/ui-elements/UIElementTagRegistry.js +15 -2
  118. package/dist/static/styles/components/alert-message.css.js +2 -32
  119. package/dist/static/styles/components/button.css.js +2 -32
  120. package/dist/static/styles/components/wide-panel.css.js +1 -5
  121. package/dist/static/styles/customEditorStyle.css.js +0 -6
  122. package/dist/static/styles/variables.css.js +0 -10
  123. package/dist/stores/dynamic-content.d.ts +0 -12
  124. package/dist/stores/dynamic-content.js +6 -7
  125. package/dist/stores/editor.d.ts +0 -21
  126. package/dist/stores/editor.js +1 -2
  127. package/dist/utils/genericUtil.js +6 -9
  128. package/dist/utils/templatePreparation.js +14 -21
  129. package/package.json +3 -5
  130. package/dist/components/organisms/onboarding/AMPOnboarding.vue.d.ts +0 -2
  131. package/dist/components/organisms/onboarding/AMPOnboarding.vue.js +0 -20
  132. package/dist/components/organisms/onboarding/AMPOnboarding.vue2.js +0 -37
  133. package/dist/components/organisms/onboarding/GenericOnboarding.vue.d.ts +0 -2
  134. package/dist/components/organisms/onboarding/GenericOnboarding.vue.js +0 -21
  135. package/dist/components/organisms/onboarding/GenericOnboarding.vue2.js +0 -83
  136. package/dist/components/organisms/onboarding/NewVersionPopup.vue.d.ts +0 -2
  137. package/dist/components/organisms/onboarding/NewVersionPopup.vue.js +0 -17
  138. package/dist/components/organisms/onboarding/NewVersionPopup.vue2.js +0 -30
  139. package/dist/components/organisms/onboarding/OnboardingWrapper.vue.d.ts +0 -2
  140. package/dist/components/organisms/onboarding/OnboardingWrapper.vue.js +0 -19
  141. package/dist/components/organisms/onboarding/OnboardingWrapper.vue2.js +0 -43
  142. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.d.ts +0 -2
  143. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.js +0 -21
  144. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue2.js +0 -74
  145. package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue.d.ts +0 -2
  146. package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue.js +0 -20
  147. package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue2.js +0 -37
  148. package/dist/composables/useHtmlValidator.d.ts +0 -4
  149. package/dist/composables/useHtmlValidator.js +0 -148
  150. package/dist/composables/useRecommendation.d.ts +0 -19
  151. package/dist/composables/useRecommendation.js +0 -27
  152. package/dist/composables/useSave.d.ts +0 -4
  153. package/dist/composables/useSave.js +0 -15
  154. package/dist/composables/useStripoEventHandler.d.ts +0 -3
  155. package/dist/composables/useStripoEventHandler.js +0 -20
  156. package/dist/config/compiler/outlookCompilerRules.js +0 -36
  157. package/dist/config/compiler/recommendationCompilerRules.d.ts +0 -2
  158. package/dist/config/compiler/recommendationCompilerRules.js +0 -83
  159. package/dist/config/compiler/socialCompilerRules.d.ts +0 -2
  160. package/dist/config/compiler/socialCompilerRules.js +0 -21
  161. package/dist/config/compiler/unsubscribeCompilerRules.d.ts +0 -2
  162. package/dist/config/compiler/unsubscribeCompilerRules.js +0 -64
  163. package/dist/config/migrator/checkboxMigrator.d.ts +0 -1
  164. package/dist/config/migrator/checkboxMigrator.js +0 -83
  165. package/dist/config/migrator/index.d.ts +0 -1
  166. package/dist/config/migrator/index.js +0 -9
  167. package/dist/config/migrator/radioButtonMigrator.d.ts +0 -1
  168. package/dist/config/migrator/radioButtonMigrator.js +0 -86
  169. package/dist/enums/html-validator.d.ts +0 -6
  170. package/dist/enums/html-validator.js +0 -7
  171. package/dist/enums/onboarding.d.ts +0 -1
  172. package/dist/enums/onboarding.js +0 -8
  173. package/dist/enums/recommendation.d.ts +0 -54
  174. package/dist/enums/recommendation.js +0 -56
  175. package/dist/enums/unsubscribe.d.ts +0 -15
  176. package/dist/enums/unsubscribe.js +0 -17
  177. package/dist/extensions/Blocks/Checkbox/block.d.ts +0 -10
  178. package/dist/extensions/Blocks/Checkbox/block.js +0 -39
  179. package/dist/extensions/Blocks/Checkbox/control.d.ts +0 -22
  180. package/dist/extensions/Blocks/Checkbox/control.js +0 -104
  181. package/dist/extensions/Blocks/Checkbox/extension.d.ts +0 -2
  182. package/dist/extensions/Blocks/Checkbox/extension.js +0 -20
  183. package/dist/extensions/Blocks/Checkbox/settingsPanel.d.ts +0 -4
  184. package/dist/extensions/Blocks/Checkbox/settingsPanel.js +0 -38
  185. package/dist/extensions/Blocks/Checkbox/template.d.ts +0 -6
  186. package/dist/extensions/Blocks/Checkbox/template.js +0 -75
  187. package/dist/extensions/Blocks/RadioButton/block.d.ts +0 -10
  188. package/dist/extensions/Blocks/RadioButton/block.js +0 -39
  189. package/dist/extensions/Blocks/RadioButton/control.d.ts +0 -17
  190. package/dist/extensions/Blocks/RadioButton/control.js +0 -104
  191. package/dist/extensions/Blocks/RadioButton/extension.d.ts +0 -2
  192. package/dist/extensions/Blocks/RadioButton/extension.js +0 -20
  193. package/dist/extensions/Blocks/RadioButton/settingsPanel.d.ts +0 -4
  194. package/dist/extensions/Blocks/RadioButton/settingsPanel.js +0 -39
  195. package/dist/extensions/Blocks/RadioButton/template.d.ts +0 -6
  196. package/dist/extensions/Blocks/RadioButton/template.js +0 -160
  197. package/dist/extensions/Blocks/_Boilerplate/block.d.ts +0 -10
  198. package/dist/extensions/Blocks/_Boilerplate/control.d.ts +0 -17
  199. package/dist/extensions/Blocks/_Boilerplate/extension.d.ts +0 -2
  200. package/dist/extensions/Blocks/_Boilerplate/settingsPanel.d.ts +0 -4
  201. package/dist/extensions/Blocks/_Boilerplate/template.d.ts +0 -6
  202. package/dist/mock/api/unsubscribe.d.ts +0 -2
  203. package/dist/mock/api/user-modal-state.d.ts +0 -2
  204. package/dist/mock/api/validator.d.ts +0 -2
  205. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BlockName.js +0 -12
  206. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/Popover.js +0 -12
  207. package/dist/services/onboardingApi.d.ts +0 -4
  208. package/dist/services/onboardingApi.js +0 -23
  209. package/dist/static/assets/onboarding-img.svg.js +0 -4
  210. package/dist/static/styles/components/notification.css.js +0 -55
  211. package/dist/static/styles/components/popup.css.js +0 -68
  212. package/dist/stores/onboarding.d.ts +0 -1068
  213. package/dist/stores/onboarding.js +0 -95
  214. package/dist/stores/recommendation.d.ts +0 -10
  215. package/dist/stores/recommendation.js +0 -9
  216. package/dist/stores/unsubscribe.d.ts +0 -8
  217. package/dist/stores/unsubscribe.js +0 -9
@@ -0,0 +1,44 @@
1
+ import { __exports as o } from "../../../../../_virtual/StructurePaddingsBuiltInControl.js";
2
+ import { __require as _ } from "./BuiltInControl.js";
3
+ import { __require as f } from "../constants/BuiltInControlTypes.js";
4
+ var l;
5
+ function I() {
6
+ if (l) return o;
7
+ l = 1;
8
+ var a = o && o.__extends || /* @__PURE__ */ (function() {
9
+ var n = function(t, r) {
10
+ return n = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(e, u) {
11
+ e.__proto__ = u;
12
+ } || function(e, u) {
13
+ for (var i in u) Object.prototype.hasOwnProperty.call(u, i) && (e[i] = u[i]);
14
+ }, n(t, r);
15
+ };
16
+ return function(t, r) {
17
+ if (typeof r != "function" && r !== null)
18
+ throw new TypeError("Class extends value " + String(r) + " is not a constructor or null");
19
+ n(t, r);
20
+ function e() {
21
+ this.constructor = t;
22
+ }
23
+ t.prototype = r === null ? Object.create(r) : (e.prototype = r.prototype, new e());
24
+ };
25
+ })();
26
+ Object.defineProperty(o, "__esModule", { value: !0 }), o.StructurePaddingsBuiltInControl = void 0;
27
+ var s = _(), c = f(), p = (
28
+ /** @class */
29
+ (function(n) {
30
+ a(t, n);
31
+ function t() {
32
+ return n !== null && n.apply(this, arguments) || this;
33
+ }
34
+ return t.prototype.getParentControlId = function() {
35
+ return c.BuiltInControlTypes.GENERAL.STRUCTURE_PADDINGS;
36
+ }, t.prototype.getLabels = function() {
37
+ }, t;
38
+ })(s.BuiltInControl)
39
+ );
40
+ return o.StructurePaddingsBuiltInControl = p, o;
41
+ }
42
+ export {
43
+ I as __require
44
+ };
@@ -0,0 +1,43 @@
1
+ import { __exports as n } from "../../../../../_virtual/TextColorBuiltInControl.js";
2
+ import { __require as p } from "./BuiltInControl.js";
3
+ import { __require as C } from "../constants/BuiltInControlTypes.js";
4
+ var u;
5
+ function x() {
6
+ if (u) return n;
7
+ u = 1;
8
+ var a = n && n.__extends || /* @__PURE__ */ (function() {
9
+ var r = function(t, o) {
10
+ return r = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(e, l) {
11
+ e.__proto__ = l;
12
+ } || function(e, l) {
13
+ for (var i in l) Object.prototype.hasOwnProperty.call(l, i) && (e[i] = l[i]);
14
+ }, r(t, o);
15
+ };
16
+ return function(t, o) {
17
+ if (typeof o != "function" && o !== null)
18
+ throw new TypeError("Class extends value " + String(o) + " is not a constructor or null");
19
+ r(t, o);
20
+ function e() {
21
+ this.constructor = t;
22
+ }
23
+ t.prototype = o === null ? Object.create(o) : (e.prototype = o.prototype, new e());
24
+ };
25
+ })();
26
+ Object.defineProperty(n, "__esModule", { value: !0 }), n.TextColorBuiltInControl = void 0;
27
+ var _ = p(), s = C(), c = (
28
+ /** @class */
29
+ (function(r) {
30
+ a(t, r);
31
+ function t() {
32
+ return r !== null && r.apply(this, arguments) || this;
33
+ }
34
+ return t.prototype.getParentControlId = function() {
35
+ return s.BuiltInControlTypes.GENERAL.TEXT_COLOR;
36
+ }, t;
37
+ })(_.BuiltInControl)
38
+ );
39
+ return n.TextColorBuiltInControl = c, n;
40
+ }
41
+ export {
42
+ x as __require
43
+ };
@@ -0,0 +1,43 @@
1
+ import { __exports as o } from "../../../../../_virtual/TextLineSpacingBuiltInControl.js";
2
+ import { __require as s } from "./BuiltInControl.js";
3
+ import { __require as f } from "../constants/BuiltInControlTypes.js";
4
+ var l;
5
+ function x() {
6
+ if (l) return o;
7
+ l = 1;
8
+ var a = o && o.__extends || /* @__PURE__ */ (function() {
9
+ var r = function(t, n) {
10
+ return r = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(e, i) {
11
+ e.__proto__ = i;
12
+ } || function(e, i) {
13
+ for (var u in i) Object.prototype.hasOwnProperty.call(i, u) && (e[u] = i[u]);
14
+ }, r(t, n);
15
+ };
16
+ return function(t, n) {
17
+ if (typeof n != "function" && n !== null)
18
+ throw new TypeError("Class extends value " + String(n) + " is not a constructor or null");
19
+ r(t, n);
20
+ function e() {
21
+ this.constructor = t;
22
+ }
23
+ t.prototype = n === null ? Object.create(n) : (e.prototype = n.prototype, new e());
24
+ };
25
+ })();
26
+ Object.defineProperty(o, "__esModule", { value: !0 }), o.TextLineSpacingBuiltInControl = void 0;
27
+ var c = s(), p = f(), _ = (
28
+ /** @class */
29
+ (function(r) {
30
+ a(t, r);
31
+ function t() {
32
+ return r !== null && r.apply(this, arguments) || this;
33
+ }
34
+ return t.prototype.getParentControlId = function() {
35
+ return p.BuiltInControlTypes.GENERAL.TEXT_LINE_SPACING;
36
+ }, t;
37
+ })(c.BuiltInControl)
38
+ );
39
+ return o.TextLineSpacingBuiltInControl = _, o;
40
+ }
41
+ export {
42
+ x as __require
43
+ };
@@ -0,0 +1,45 @@
1
+ import { __exports as o } from "../../../../../_virtual/TextSizeBuiltInControl.js";
2
+ import { __require as s } from "./BuiltInControl.js";
3
+ import { __require as _ } from "../constants/BuiltInControlTypes.js";
4
+ var l;
5
+ function T() {
6
+ if (l) return o;
7
+ l = 1;
8
+ var c = o && o.__extends || /* @__PURE__ */ (function() {
9
+ var r = function(t, e) {
10
+ return r = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(n, i) {
11
+ n.__proto__ = i;
12
+ } || function(n, i) {
13
+ for (var u in i) Object.prototype.hasOwnProperty.call(i, u) && (n[u] = i[u]);
14
+ }, r(t, e);
15
+ };
16
+ return function(t, e) {
17
+ if (typeof e != "function" && e !== null)
18
+ throw new TypeError("Class extends value " + String(e) + " is not a constructor or null");
19
+ r(t, e);
20
+ function n() {
21
+ this.constructor = t;
22
+ }
23
+ t.prototype = e === null ? Object.create(e) : (n.prototype = e.prototype, new n());
24
+ };
25
+ })();
26
+ Object.defineProperty(o, "__esModule", { value: !0 }), o.TextSizeBuiltInControl = void 0;
27
+ var p = s(), a = _(), f = (
28
+ /** @class */
29
+ (function(r) {
30
+ c(t, r);
31
+ function t() {
32
+ return r !== null && r.apply(this, arguments) || this;
33
+ }
34
+ return t.prototype.getParentControlId = function() {
35
+ return a.BuiltInControlTypes.GENERAL.TEXT_SIZE;
36
+ }, t.prototype.getTargetNodes = function(e) {
37
+ }, t.prototype.getMobileClassSpecificSelector = function() {
38
+ }, t;
39
+ })(p.BuiltInControl)
40
+ );
41
+ return o.TextSizeBuiltInControl = f, o;
42
+ }
43
+ export {
44
+ T as __require
45
+ };
@@ -0,0 +1,43 @@
1
+ import { __exports as n } from "../../../../../_virtual/TextStyleBuiltInControl.js";
2
+ import { __require as p } from "./BuiltInControl.js";
3
+ import { __require as f } from "../constants/BuiltInControlTypes.js";
4
+ var u;
5
+ function T() {
6
+ if (u) return n;
7
+ u = 1;
8
+ var a = n && n.__extends || /* @__PURE__ */ (function() {
9
+ var o = function(t, r) {
10
+ return o = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(e, l) {
11
+ e.__proto__ = l;
12
+ } || function(e, l) {
13
+ for (var i in l) Object.prototype.hasOwnProperty.call(l, i) && (e[i] = l[i]);
14
+ }, o(t, r);
15
+ };
16
+ return function(t, r) {
17
+ if (typeof r != "function" && r !== null)
18
+ throw new TypeError("Class extends value " + String(r) + " is not a constructor or null");
19
+ o(t, r);
20
+ function e() {
21
+ this.constructor = t;
22
+ }
23
+ t.prototype = r === null ? Object.create(r) : (e.prototype = r.prototype, new e());
24
+ };
25
+ })();
26
+ Object.defineProperty(n, "__esModule", { value: !0 }), n.TextStyleBuiltInControl = void 0;
27
+ var _ = p(), s = f(), c = (
28
+ /** @class */
29
+ (function(o) {
30
+ a(t, o);
31
+ function t() {
32
+ return o !== null && o.apply(this, arguments) || this;
33
+ }
34
+ return t.prototype.getParentControlId = function() {
35
+ return s.BuiltInControlTypes.GENERAL.TEXT_STYLE;
36
+ }, t;
37
+ })(_.BuiltInControl)
38
+ );
39
+ return n.TextStyleBuiltInControl = c, n;
40
+ }
41
+ export {
42
+ T as __require
43
+ };
@@ -0,0 +1,266 @@
1
+ import { __exports as t } from "../../../../_virtual/index2.js";
2
+ import { __require as J } from "./ui-elements/UIElement.js";
3
+ import { __require as K } from "./controls/Control.js";
4
+ import { __require as Q } from "./controls/SettingsPanelRegistry.js";
5
+ import { __require as W } from "./blocks/ContextAction.js";
6
+ import { __require as X } from "./blocks/BlockRenderer.js";
7
+ import { __require as Y } from "./blocks/Block.js";
8
+ import { __require as Z } from "./ExtensionBuilder.js";
9
+ import { __require as $ } from "./Extension.js";
10
+ import { __require as x } from "./ui-elements/UIElementTagRegistry.js";
11
+ import { __require as ee } from "./modifications/ModificationDescription.js";
12
+ import { __require as re } from "./controls/SettingsPanelTab.js";
13
+ import { __require as te } from "./constants/UIElementType.js";
14
+ import { __require as ne } from "./constants/BuiltInControlTypes.js";
15
+ import { __require as oe } from "./constants/SettingsTab.js";
16
+ import { __require as ie } from "./constants/UIElementsAttributes.js";
17
+ import { __require as ue } from "./constants/BlockType.js";
18
+ import { __require as le } from "./constants/ContextActionType.js";
19
+ import { __require as ae } from "./constants/BlockCompositionType.js";
20
+ import { __require as ce } from "./constants/BlockAttributes.js";
21
+ import { __require as Ce } from "./constants/AiAssistantValueType.js";
22
+ import { __require as me } from "./constants/AddCustomFont.js";
23
+ import { __require as Be } from "./controls/BuiltInControl.js";
24
+ import { __require as fe } from "./controls/FontFamilyBuiltInControl.js";
25
+ import { __require as de } from "./controls/BackgroundColorBuiltInControl.js";
26
+ import { __require as be } from "./controls/BlockPaddingsBuiltInControl.js";
27
+ import { __require as _e } from "./controls/BackgroundImageBuiltInControl.js";
28
+ import { __require as ge } from "./constants/EditorStatePropertyType.js";
29
+ import { __require as Ie } from "./constants/PreviewDeviceMode.js";
30
+ import { __require as ye } from "./controls/StructurePaddingsBuiltInControl.js";
31
+ import { __require as Pe } from "./controls/TextColorBuiltInControl.js";
32
+ import { __require as se } from "./controls/ButtonFontColorBuiltInControl.js";
33
+ import { __require as Te } from "./controls/ButtonColorBuiltInControl.js";
34
+ import { __require as qe } from "./controls/ButtonInternalIndentsBuiltInControl.js";
35
+ import { __require as Oe } from "./controls/StructureBorderBuiltInControl.js";
36
+ import { __require as je } from "./controls/TextSizeBuiltInControl.js";
37
+ import { __require as Se } from "./controls/TextStyleBuiltInControl.js";
38
+ import { __require as ve } from "./controls/LinkColorBuiltInControl.js";
39
+ import { __require as ke } from "./controls/ButtonTextBuiltInControl.js";
40
+ import { __require as pe } from "./controls/ButtonBorderBuiltInControl.js";
41
+ import { __require as Ae } from "./controls/TextLineSpacingBuiltInControl.js";
42
+ import { __require as Ee } from "./blocks/BlocksPanel.js";
43
+ import { __require as Fe } from "./constants/PanelPosition.js";
44
+ var n;
45
+ function Tr() {
46
+ return n ? t : (n = 1, (function(e) {
47
+ Object.defineProperty(e, "__esModule", { value: !0 }), e.ButtonTextBuiltInControl = e.LinkColorBuiltInControl = e.BackgroundImageBuiltInControl = e.BackgroundColorBuiltInControl = e.FontFamilyBuiltInControl = e.BuiltInControl = e.ADD_CUSTOM_FONT_OPTION = e.BlockAttr = e.AiAssistantValueType = e.BlockCompositionType = e.AmpFormControls = e.GeneralControls = e.GeneralStylesControls = e.MessageSettingsControls = e.ContainerControls = e.StructureControls = e.StripeControls = e.CarouselControls = e.AccordionControls = e.MenuControls = e.SocialControls = e.CustomTextControls = e.CustomImageControls = e.CustomLinkControls = e.HTMLControls = e.ImageControls = e.SpacerControls = e.TimerControls = e.VideoControls = e.TextControls = e.ButtonControls = e.BannerChildControls = e.BannerControls = e.BlockType = e.SettingsTab = e.BuiltInControlTypes = e.ContextActionType = e.UEAttr = e.UIElementType = e.ModificationDescription = e.Extension = e.ExtensionBuilder = e.SettingsPanelTab = e.Block = e.BlockRenderer = e.ContextAction = e.SettingsPanelRegistry = e.Control = e.UIElementTagRegistry = e.UIElement = void 0, e.TextLineSpacingBuiltInControl = e.ButtonBorderBuiltInControl = e.PanelPosition = e.BlocksPanel = e.StructureBorderBuiltInControl = e.TextStyleBuiltInControl = e.TextSizeBuiltInControl = e.PreviewDeviceMode = e.EditorStatePropertyType = e.ButtonColorBuiltInControl = e.ButtonFontColorBuiltInControl = e.TextColorBuiltInControl = e.ButtonInternalIndentsBuiltInControl = e.StructurePaddingsBuiltInControl = e.BlockPaddingsBuiltInControl = void 0;
48
+ var o = J();
49
+ Object.defineProperty(e, "UIElement", { enumerable: !0, get: function() {
50
+ return o.UIElement;
51
+ } });
52
+ var i = K();
53
+ Object.defineProperty(e, "Control", { enumerable: !0, get: function() {
54
+ return i.Control;
55
+ } });
56
+ var u = Q();
57
+ Object.defineProperty(e, "SettingsPanelRegistry", { enumerable: !0, get: function() {
58
+ return u.SettingsPanelRegistry;
59
+ } });
60
+ var l = W();
61
+ Object.defineProperty(e, "ContextAction", { enumerable: !0, get: function() {
62
+ return l.ContextAction;
63
+ } });
64
+ var a = X();
65
+ Object.defineProperty(e, "BlockRenderer", { enumerable: !0, get: function() {
66
+ return a.BlockRenderer;
67
+ } });
68
+ var c = Y();
69
+ Object.defineProperty(e, "Block", { enumerable: !0, get: function() {
70
+ return c.Block;
71
+ } });
72
+ var C = Z();
73
+ Object.defineProperty(e, "ExtensionBuilder", { enumerable: !0, get: function() {
74
+ return C.ExtensionBuilder;
75
+ } });
76
+ var m = $();
77
+ Object.defineProperty(e, "Extension", { enumerable: !0, get: function() {
78
+ return m.Extension;
79
+ } });
80
+ var B = x();
81
+ Object.defineProperty(e, "UIElementTagRegistry", { enumerable: !0, get: function() {
82
+ return B.UIElementTagRegistry;
83
+ } });
84
+ var f = ee();
85
+ Object.defineProperty(e, "ModificationDescription", { enumerable: !0, get: function() {
86
+ return f.ModificationDescription;
87
+ } });
88
+ var d = re();
89
+ Object.defineProperty(e, "SettingsPanelTab", { enumerable: !0, get: function() {
90
+ return d.SettingsPanelTab;
91
+ } });
92
+ var b = te();
93
+ Object.defineProperty(e, "UIElementType", { enumerable: !0, get: function() {
94
+ return b.UIElementType;
95
+ } });
96
+ var r = ne();
97
+ Object.defineProperty(e, "AccordionControls", { enumerable: !0, get: function() {
98
+ return r.AccordionControls;
99
+ } }), Object.defineProperty(e, "AmpFormControls", { enumerable: !0, get: function() {
100
+ return r.AmpFormControls;
101
+ } }), Object.defineProperty(e, "BannerChildControls", { enumerable: !0, get: function() {
102
+ return r.BannerChildControls;
103
+ } }), Object.defineProperty(e, "BannerControls", { enumerable: !0, get: function() {
104
+ return r.BannerControls;
105
+ } }), Object.defineProperty(e, "BuiltInControlTypes", { enumerable: !0, get: function() {
106
+ return r.BuiltInControlTypes;
107
+ } }), Object.defineProperty(e, "ButtonControls", { enumerable: !0, get: function() {
108
+ return r.ButtonControls;
109
+ } }), Object.defineProperty(e, "CarouselControls", { enumerable: !0, get: function() {
110
+ return r.CarouselControls;
111
+ } }), Object.defineProperty(e, "ContainerControls", { enumerable: !0, get: function() {
112
+ return r.ContainerControls;
113
+ } }), Object.defineProperty(e, "CustomImageControls", { enumerable: !0, get: function() {
114
+ return r.CustomImageControls;
115
+ } }), Object.defineProperty(e, "CustomLinkControls", { enumerable: !0, get: function() {
116
+ return r.CustomLinkControls;
117
+ } }), Object.defineProperty(e, "CustomTextControls", { enumerable: !0, get: function() {
118
+ return r.CustomTextControls;
119
+ } }), Object.defineProperty(e, "GeneralControls", { enumerable: !0, get: function() {
120
+ return r.GeneralControls;
121
+ } }), Object.defineProperty(e, "GeneralStylesControls", { enumerable: !0, get: function() {
122
+ return r.GeneralStylesControls;
123
+ } }), Object.defineProperty(e, "HTMLControls", { enumerable: !0, get: function() {
124
+ return r.HTMLControls;
125
+ } }), Object.defineProperty(e, "ImageControls", { enumerable: !0, get: function() {
126
+ return r.ImageControls;
127
+ } }), Object.defineProperty(e, "MenuControls", { enumerable: !0, get: function() {
128
+ return r.MenuControls;
129
+ } }), Object.defineProperty(e, "MessageSettingsControls", { enumerable: !0, get: function() {
130
+ return r.MessageSettingsControls;
131
+ } }), Object.defineProperty(e, "SocialControls", { enumerable: !0, get: function() {
132
+ return r.SocialControls;
133
+ } }), Object.defineProperty(e, "SpacerControls", { enumerable: !0, get: function() {
134
+ return r.SpacerControls;
135
+ } }), Object.defineProperty(e, "StripeControls", { enumerable: !0, get: function() {
136
+ return r.StripeControls;
137
+ } }), Object.defineProperty(e, "StructureControls", { enumerable: !0, get: function() {
138
+ return r.StructureControls;
139
+ } }), Object.defineProperty(e, "TextControls", { enumerable: !0, get: function() {
140
+ return r.TextControls;
141
+ } }), Object.defineProperty(e, "TimerControls", { enumerable: !0, get: function() {
142
+ return r.TimerControls;
143
+ } }), Object.defineProperty(e, "VideoControls", { enumerable: !0, get: function() {
144
+ return r.VideoControls;
145
+ } });
146
+ var _ = oe();
147
+ Object.defineProperty(e, "SettingsTab", { enumerable: !0, get: function() {
148
+ return _.SettingsTab;
149
+ } });
150
+ var g = ie();
151
+ Object.defineProperty(e, "UEAttr", { enumerable: !0, get: function() {
152
+ return g.UEAttr;
153
+ } });
154
+ var I = ue();
155
+ Object.defineProperty(e, "BlockType", { enumerable: !0, get: function() {
156
+ return I.BlockType;
157
+ } });
158
+ var y = le();
159
+ Object.defineProperty(e, "ContextActionType", { enumerable: !0, get: function() {
160
+ return y.ContextActionType;
161
+ } });
162
+ var P = ae();
163
+ Object.defineProperty(e, "BlockCompositionType", { enumerable: !0, get: function() {
164
+ return P.BlockCompositionType;
165
+ } });
166
+ var s = ce();
167
+ Object.defineProperty(e, "BlockAttr", { enumerable: !0, get: function() {
168
+ return s.BlockAttr;
169
+ } });
170
+ var T = Ce();
171
+ Object.defineProperty(e, "AiAssistantValueType", { enumerable: !0, get: function() {
172
+ return T.AiAssistantValueType;
173
+ } });
174
+ var q = me();
175
+ Object.defineProperty(e, "ADD_CUSTOM_FONT_OPTION", { enumerable: !0, get: function() {
176
+ return q.ADD_CUSTOM_FONT_OPTION;
177
+ } });
178
+ var O = Be();
179
+ Object.defineProperty(e, "BuiltInControl", { enumerable: !0, get: function() {
180
+ return O.BuiltInControl;
181
+ } });
182
+ var j = fe();
183
+ Object.defineProperty(e, "FontFamilyBuiltInControl", { enumerable: !0, get: function() {
184
+ return j.FontFamilyBuiltInControl;
185
+ } });
186
+ var S = de();
187
+ Object.defineProperty(e, "BackgroundColorBuiltInControl", { enumerable: !0, get: function() {
188
+ return S.BackgroundColorBuiltInControl;
189
+ } });
190
+ var v = be();
191
+ Object.defineProperty(e, "BlockPaddingsBuiltInControl", { enumerable: !0, get: function() {
192
+ return v.BlockPaddingsBuiltInControl;
193
+ } });
194
+ var k = _e();
195
+ Object.defineProperty(e, "BackgroundImageBuiltInControl", { enumerable: !0, get: function() {
196
+ return k.BackgroundImageBuiltInControl;
197
+ } });
198
+ var p = ge();
199
+ Object.defineProperty(e, "EditorStatePropertyType", { enumerable: !0, get: function() {
200
+ return p.EditorStatePropertyType;
201
+ } });
202
+ var A = Ie();
203
+ Object.defineProperty(e, "PreviewDeviceMode", { enumerable: !0, get: function() {
204
+ return A.PreviewDeviceMode;
205
+ } });
206
+ var E = ye();
207
+ Object.defineProperty(e, "StructurePaddingsBuiltInControl", { enumerable: !0, get: function() {
208
+ return E.StructurePaddingsBuiltInControl;
209
+ } });
210
+ var F = Pe();
211
+ Object.defineProperty(e, "TextColorBuiltInControl", { enumerable: !0, get: function() {
212
+ return F.TextColorBuiltInControl;
213
+ } });
214
+ var M = se();
215
+ Object.defineProperty(e, "ButtonFontColorBuiltInControl", { enumerable: !0, get: function() {
216
+ return M.ButtonFontColorBuiltInControl;
217
+ } });
218
+ var U = Te();
219
+ Object.defineProperty(e, "ButtonColorBuiltInControl", { enumerable: !0, get: function() {
220
+ return U.ButtonColorBuiltInControl;
221
+ } });
222
+ var D = qe();
223
+ Object.defineProperty(e, "ButtonInternalIndentsBuiltInControl", { enumerable: !0, get: function() {
224
+ return D.ButtonInternalIndentsBuiltInControl;
225
+ } });
226
+ var L = Oe();
227
+ Object.defineProperty(e, "StructureBorderBuiltInControl", { enumerable: !0, get: function() {
228
+ return L.StructureBorderBuiltInControl;
229
+ } });
230
+ var R = je();
231
+ Object.defineProperty(e, "TextSizeBuiltInControl", { enumerable: !0, get: function() {
232
+ return R.TextSizeBuiltInControl;
233
+ } });
234
+ var V = Se();
235
+ Object.defineProperty(e, "TextStyleBuiltInControl", { enumerable: !0, get: function() {
236
+ return V.TextStyleBuiltInControl;
237
+ } });
238
+ var G = ve();
239
+ Object.defineProperty(e, "LinkColorBuiltInControl", { enumerable: !0, get: function() {
240
+ return G.LinkColorBuiltInControl;
241
+ } });
242
+ var N = ke();
243
+ Object.defineProperty(e, "ButtonTextBuiltInControl", { enumerable: !0, get: function() {
244
+ return N.ButtonTextBuiltInControl;
245
+ } });
246
+ var w = pe();
247
+ Object.defineProperty(e, "ButtonBorderBuiltInControl", { enumerable: !0, get: function() {
248
+ return w.ButtonBorderBuiltInControl;
249
+ } });
250
+ var z = Ae();
251
+ Object.defineProperty(e, "TextLineSpacingBuiltInControl", { enumerable: !0, get: function() {
252
+ return z.TextLineSpacingBuiltInControl;
253
+ } });
254
+ var h = Ee();
255
+ Object.defineProperty(e, "BlocksPanel", { enumerable: !0, get: function() {
256
+ return h.BlocksPanel;
257
+ } });
258
+ var H = Fe();
259
+ Object.defineProperty(e, "PanelPosition", { enumerable: !0, get: function() {
260
+ return H.PanelPosition;
261
+ } });
262
+ })(t), t);
263
+ }
264
+ export {
265
+ Tr as __require
266
+ };
@@ -1,22 +1,26 @@
1
- var i = Object.defineProperty;
2
- var e = (t, s, a) => s in t ? i(t, s, { enumerable: !0, configurable: !0, writable: !0, value: a }) : t[s] = a;
3
- var r = (t, s, a) => e(t, typeof s != "symbol" ? s + "" : s, a);
4
- class o {
5
- constructor(s) {
6
- r(this, "key");
7
- r(this, "params");
8
- this.key = s;
9
- }
10
- withParams(s) {
11
- return this.params = s, this;
12
- }
13
- getValue() {
14
- return {
15
- key: this.key,
16
- params: this.params
17
- };
18
- }
1
+ import { __exports as i } from "../../../../../_virtual/ModificationDescription.js";
2
+ var r;
3
+ function a() {
4
+ if (r) return i;
5
+ r = 1, Object.defineProperty(i, "__esModule", { value: !0 }), i.ModificationDescription = void 0;
6
+ var e = (
7
+ /** @class */
8
+ (function() {
9
+ function t(o) {
10
+ this.key = o;
11
+ }
12
+ return t.prototype.withParams = function(o) {
13
+ return this.params = o, this;
14
+ }, t.prototype.getValue = function() {
15
+ return {
16
+ key: this.key,
17
+ params: this.params
18
+ };
19
+ }, t;
20
+ })()
21
+ );
22
+ return i.ModificationDescription = e, i;
19
23
  }
20
24
  export {
21
- o as ModificationDescription
25
+ a as __require
22
26
  };
@@ -1,40 +1,22 @@
1
- var u = Object.defineProperty;
2
- var n = (t, e, a) => e in t ? u(t, e, { enumerable: !0, configurable: !0, writable: !0, value: a }) : t[e] = a;
3
- var l = (t, e, a) => n(t, typeof e != "symbol" ? e + "" : e, a);
4
- class s {
5
- constructor() {
6
- /** Provides access to editor functionalities specific to this UI element instance. */
7
- l(this, "api");
8
- }
9
- /**
10
- * Optional cleanup hook called when the UI element is being destroyed.
11
- * Use this to remove event listeners or perform other cleanup tasks.
12
- */
13
- onDestroy() {
14
- }
15
- /**
16
- * Optional method to get the current value of the UI element.
17
- * Implement this if the element manages a state or value (e.g., input fields).
18
- * @returns The current value of the element.
19
- */
20
- getValue() {
21
- }
22
- /**
23
- * Optional method to set the value of the UI element.
24
- * Implement this if the element manages a state or value and needs to be updated externally.
25
- * @param value - The new value to set.
26
- */
27
- setValue(e) {
28
- }
29
- /**
30
- * @description Optional hook called when one of the element's supported attributes ({@link UEAttr}) gets updated externally.
31
- * Implement this to react to attribute changes (e.g., visibility, disabled state).
32
- * @param name - The name of the attribute that was updated.
33
- * @param value - The new value of the attribute.
34
- */
35
- onAttributeUpdated(e, a) {
36
- }
1
+ import { __exports as t } from "../../../../../_virtual/UIElement.js";
2
+ var n;
3
+ function l() {
4
+ if (n) return t;
5
+ n = 1, Object.defineProperty(t, "__esModule", { value: !0 }), t.UIElement = void 0;
6
+ var r = (
7
+ /** @class */
8
+ (function() {
9
+ function e() {
10
+ }
11
+ return e.prototype.onDestroy = function() {
12
+ }, e.prototype.getValue = function() {
13
+ }, e.prototype.setValue = function(o) {
14
+ }, e.prototype.onAttributeUpdated = function(o, u) {
15
+ }, e;
16
+ })()
17
+ );
18
+ return t.UIElement = r, t;
37
19
  }
38
20
  export {
39
- s as UIElement
21
+ l as __require
40
22
  };
@@ -1,5 +1,18 @@
1
- class s {
1
+ import { __exports as e } from "../../../../../_virtual/UIElementTagRegistry.js";
2
+ var r;
3
+ function g() {
4
+ if (r) return e;
5
+ r = 1, Object.defineProperty(e, "__esModule", { value: !0 }), e.UIElementTagRegistry = void 0;
6
+ var t = (
7
+ /** @class */
8
+ /* @__PURE__ */ (function() {
9
+ function i() {
10
+ }
11
+ return i;
12
+ })()
13
+ );
14
+ return e.UIElementTagRegistry = t, e;
2
15
  }
3
16
  export {
4
- s as UIElementTagRegistry
17
+ g as __require
5
18
  };
@@ -1,4 +1,4 @@
1
- const r = `.alert-message-wrapper {
1
+ const n = `.alert-message-wrapper {
2
2
  box-shadow: none;
3
3
  border: 1px solid var(--guido-color-gray-300);
4
4
  color: var(--guido-color-gray-600);
@@ -16,36 +16,6 @@ const r = `.alert-message-wrapper {
16
16
  color: var(--guido-color-border-onpage-message-info);
17
17
  }
18
18
 
19
- .alert-message-wrapper.warn {
20
- background: var(--guido-color-background-onpage-message-warn);
21
- border-color: var(--guido-color-border-onpage-message-warn);
22
- color: inherit;
23
- }
24
-
25
- .alert-message-wrapper.warn ue-icon-component.icon {
26
- color: var(--guido-color-border-onpage-message-warn);
27
- }
28
-
29
- .alert-message-wrapper.success {
30
- background: var(--guido-color-background-onpage-message-success);
31
- border-color: var(--guido-color-border-onpage-message-success);
32
- color: inherit;
33
- }
34
-
35
- .alert-message-wrapper.success ue-icon-component.icon {
36
- color: var(--guido-color-border-onpage-message-success);
37
- }
38
-
39
- .alert-message-wrapper.error {
40
- background: var(--guido-color-background-onpage-message-error);
41
- border-color: var(--guido-color-border-onpage-message-error);
42
- color: inherit;
43
- }
44
-
45
- .alert-message-wrapper.error ue-icon-component.icon {
46
- color: var(--guido-color-border-onpage-message-error);
47
- }
48
-
49
19
  .alert-message-wrapper ue-button {
50
20
  padding: 0;
51
21
  }
@@ -65,5 +35,5 @@ const r = `.alert-message-wrapper {
65
35
  }
66
36
  `;
67
37
  export {
68
- r as default
38
+ n as default
69
39
  };