easy-email-extensions 4.3.4 → 4.3.5
Sign up to get free protection for your applications and to get access to all the features.
@@ -48,6 +48,7 @@ export declare const blocks: {
|
|
48
48
|
advanced_carousel: typeof Carousel;
|
49
49
|
advanced_navbar: typeof Navbar;
|
50
50
|
advanced_social: typeof Social;
|
51
|
+
advanced_hero: typeof Hero;
|
51
52
|
advanced_wrapper: typeof Wrapper;
|
52
53
|
advanced_section: typeof Section;
|
53
54
|
advanced_group: typeof Group;
|
@@ -4,7 +4,7 @@ declare type ObjectComponent = {
|
|
4
4
|
export declare class BlockAttributeConfigurationManager {
|
5
5
|
private static map;
|
6
6
|
static add(componentMap: ObjectComponent): void;
|
7
|
-
static get<T extends ObjectComponent>(name: keyof T):
|
7
|
+
static get<T extends ObjectComponent>(name: keyof T): () => JSX.Element | null;
|
8
8
|
static getMap(): ObjectComponent;
|
9
9
|
}
|
10
10
|
export {};
|
package/lib/index2.js
CHANGED
@@ -39147,6 +39147,7 @@ const blocks = {
|
|
39147
39147
|
[AdvancedType.CAROUSEL]: Carousel,
|
39148
39148
|
[AdvancedType.NAVBAR]: Navbar,
|
39149
39149
|
[AdvancedType.SOCIAL]: Social,
|
39150
|
+
[AdvancedType.HERO]: Hero,
|
39150
39151
|
[AdvancedType.WRAPPER]: Wrapper,
|
39151
39152
|
[AdvancedType.SECTION]: Section,
|
39152
39153
|
[AdvancedType.GROUP]: Group,
|
@@ -39246,6 +39247,7 @@ function MergeTags(props) {
|
|
39246
39247
|
position: "left",
|
39247
39248
|
popupVisible: visible,
|
39248
39249
|
onVisibleChange,
|
39250
|
+
style: { zIndex: 10 },
|
39249
39251
|
content: /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(MergeTags$1, {
|
39250
39252
|
value: "",
|
39251
39253
|
onChange
|