easy-email-extensions 4.3.4 → 4.3.6
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.
@@ -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 {};
|