easy-email-extensions 3.2.1-alpha.1 → 3.2.1-alpha.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1,3 @@
1
- export declare function FontFamily(): JSX.Element;
1
+ export declare function FontFamily({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function FontStyle(): JSX.Element;
1
+ export declare function FontStyle({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function FontWeight(): JSX.Element;
1
+ export declare function FontWeight({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function LetterSpacing(): JSX.Element;
1
+ export declare function LetterSpacing({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function LineHeight(): JSX.Element;
1
+ export declare function LineHeight({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1,5 +1,6 @@
1
1
  export interface PaddingProps {
2
2
  title?: string;
3
3
  attributeName?: 'padding' | 'inner-padding' | 'text-padding';
4
+ name?: string;
4
5
  }
5
6
  export declare function Padding(props?: PaddingProps): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function TextAlign(): JSX.Element;
1
+ export declare function TextAlign({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function TextDecoration(): JSX.Element;
1
+ export declare function TextDecoration({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function TextTransform(): JSX.Element;
1
+ export declare function TextTransform({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -2,4 +2,5 @@ import React from 'react';
2
2
  import { BlockLayerProps } from '../BlockLayer';
3
3
  export declare const SimpleLayout: React.FC<{
4
4
  showSourceCode?: boolean;
5
+ defaultShowLayer?: boolean;
5
6
  } & BlockLayerProps>;