@kontakto/email-template-editor 2.12.0 → 2.13.0
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.
- package/dist/index.cjs +1025 -775
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +589 -33
- package/dist/index.d.ts +589 -33
- package/dist/index.js +810 -564
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1772,6 +1772,232 @@ declare const ImageProps: z.ZodObject<{
|
|
|
1772
1772
|
}>;
|
|
1773
1773
|
declare function Image({ style, props }: ImageProps): React.JSX.Element;
|
|
1774
1774
|
|
|
1775
|
+
declare const OtpPropsSchema: z.ZodObject<{
|
|
1776
|
+
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1777
|
+
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1778
|
+
}, "strip", z.ZodTypeAny, {
|
|
1779
|
+
code?: string | null | undefined;
|
|
1780
|
+
}, {
|
|
1781
|
+
code?: string | null | undefined;
|
|
1782
|
+
}>>>;
|
|
1783
|
+
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1784
|
+
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1785
|
+
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1786
|
+
borderColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1787
|
+
borderRadius: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1788
|
+
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1789
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1790
|
+
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
1791
|
+
letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1792
|
+
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
1793
|
+
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1794
|
+
top: z.ZodNumber;
|
|
1795
|
+
bottom: z.ZodNumber;
|
|
1796
|
+
right: z.ZodNumber;
|
|
1797
|
+
left: z.ZodNumber;
|
|
1798
|
+
}, "strip", z.ZodTypeAny, {
|
|
1799
|
+
top: number;
|
|
1800
|
+
bottom: number;
|
|
1801
|
+
right: number;
|
|
1802
|
+
left: number;
|
|
1803
|
+
}, {
|
|
1804
|
+
top: number;
|
|
1805
|
+
bottom: number;
|
|
1806
|
+
right: number;
|
|
1807
|
+
left: number;
|
|
1808
|
+
}>>>;
|
|
1809
|
+
}, "strip", z.ZodTypeAny, {
|
|
1810
|
+
color?: string | null | undefined;
|
|
1811
|
+
backgroundColor?: string | null | undefined;
|
|
1812
|
+
fontSize?: number | null | undefined;
|
|
1813
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1814
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1815
|
+
letterSpacing?: number | null | undefined;
|
|
1816
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
1817
|
+
padding?: {
|
|
1818
|
+
top: number;
|
|
1819
|
+
bottom: number;
|
|
1820
|
+
right: number;
|
|
1821
|
+
left: number;
|
|
1822
|
+
} | null | undefined;
|
|
1823
|
+
borderColor?: string | null | undefined;
|
|
1824
|
+
borderRadius?: number | null | undefined;
|
|
1825
|
+
}, {
|
|
1826
|
+
color?: string | null | undefined;
|
|
1827
|
+
backgroundColor?: string | null | undefined;
|
|
1828
|
+
fontSize?: number | null | undefined;
|
|
1829
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1830
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1831
|
+
letterSpacing?: number | null | undefined;
|
|
1832
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
1833
|
+
padding?: {
|
|
1834
|
+
top: number;
|
|
1835
|
+
bottom: number;
|
|
1836
|
+
right: number;
|
|
1837
|
+
left: number;
|
|
1838
|
+
} | null | undefined;
|
|
1839
|
+
borderColor?: string | null | undefined;
|
|
1840
|
+
borderRadius?: number | null | undefined;
|
|
1841
|
+
}>>>;
|
|
1842
|
+
}, "strip", z.ZodTypeAny, {
|
|
1843
|
+
style?: {
|
|
1844
|
+
color?: string | null | undefined;
|
|
1845
|
+
backgroundColor?: string | null | undefined;
|
|
1846
|
+
fontSize?: number | null | undefined;
|
|
1847
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1848
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1849
|
+
letterSpacing?: number | null | undefined;
|
|
1850
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
1851
|
+
padding?: {
|
|
1852
|
+
top: number;
|
|
1853
|
+
bottom: number;
|
|
1854
|
+
right: number;
|
|
1855
|
+
left: number;
|
|
1856
|
+
} | null | undefined;
|
|
1857
|
+
borderColor?: string | null | undefined;
|
|
1858
|
+
borderRadius?: number | null | undefined;
|
|
1859
|
+
} | null | undefined;
|
|
1860
|
+
props?: {
|
|
1861
|
+
code?: string | null | undefined;
|
|
1862
|
+
} | null | undefined;
|
|
1863
|
+
}, {
|
|
1864
|
+
style?: {
|
|
1865
|
+
color?: string | null | undefined;
|
|
1866
|
+
backgroundColor?: string | null | undefined;
|
|
1867
|
+
fontSize?: number | null | undefined;
|
|
1868
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1869
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1870
|
+
letterSpacing?: number | null | undefined;
|
|
1871
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
1872
|
+
padding?: {
|
|
1873
|
+
top: number;
|
|
1874
|
+
bottom: number;
|
|
1875
|
+
right: number;
|
|
1876
|
+
left: number;
|
|
1877
|
+
} | null | undefined;
|
|
1878
|
+
borderColor?: string | null | undefined;
|
|
1879
|
+
borderRadius?: number | null | undefined;
|
|
1880
|
+
} | null | undefined;
|
|
1881
|
+
props?: {
|
|
1882
|
+
code?: string | null | undefined;
|
|
1883
|
+
} | null | undefined;
|
|
1884
|
+
}>;
|
|
1885
|
+
type OtpProps = z.infer<typeof OtpPropsSchema>;
|
|
1886
|
+
declare const OtpProps: z.ZodObject<{
|
|
1887
|
+
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1888
|
+
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1889
|
+
}, "strip", z.ZodTypeAny, {
|
|
1890
|
+
code?: string | null | undefined;
|
|
1891
|
+
}, {
|
|
1892
|
+
code?: string | null | undefined;
|
|
1893
|
+
}>>>;
|
|
1894
|
+
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1895
|
+
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1896
|
+
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1897
|
+
borderColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1898
|
+
borderRadius: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1899
|
+
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1900
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1901
|
+
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
1902
|
+
letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1903
|
+
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
1904
|
+
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1905
|
+
top: z.ZodNumber;
|
|
1906
|
+
bottom: z.ZodNumber;
|
|
1907
|
+
right: z.ZodNumber;
|
|
1908
|
+
left: z.ZodNumber;
|
|
1909
|
+
}, "strip", z.ZodTypeAny, {
|
|
1910
|
+
top: number;
|
|
1911
|
+
bottom: number;
|
|
1912
|
+
right: number;
|
|
1913
|
+
left: number;
|
|
1914
|
+
}, {
|
|
1915
|
+
top: number;
|
|
1916
|
+
bottom: number;
|
|
1917
|
+
right: number;
|
|
1918
|
+
left: number;
|
|
1919
|
+
}>>>;
|
|
1920
|
+
}, "strip", z.ZodTypeAny, {
|
|
1921
|
+
color?: string | null | undefined;
|
|
1922
|
+
backgroundColor?: string | null | undefined;
|
|
1923
|
+
fontSize?: number | null | undefined;
|
|
1924
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1925
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1926
|
+
letterSpacing?: number | null | undefined;
|
|
1927
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
1928
|
+
padding?: {
|
|
1929
|
+
top: number;
|
|
1930
|
+
bottom: number;
|
|
1931
|
+
right: number;
|
|
1932
|
+
left: number;
|
|
1933
|
+
} | null | undefined;
|
|
1934
|
+
borderColor?: string | null | undefined;
|
|
1935
|
+
borderRadius?: number | null | undefined;
|
|
1936
|
+
}, {
|
|
1937
|
+
color?: string | null | undefined;
|
|
1938
|
+
backgroundColor?: string | null | undefined;
|
|
1939
|
+
fontSize?: number | null | undefined;
|
|
1940
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1941
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1942
|
+
letterSpacing?: number | null | undefined;
|
|
1943
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
1944
|
+
padding?: {
|
|
1945
|
+
top: number;
|
|
1946
|
+
bottom: number;
|
|
1947
|
+
right: number;
|
|
1948
|
+
left: number;
|
|
1949
|
+
} | null | undefined;
|
|
1950
|
+
borderColor?: string | null | undefined;
|
|
1951
|
+
borderRadius?: number | null | undefined;
|
|
1952
|
+
}>>>;
|
|
1953
|
+
}, "strip", z.ZodTypeAny, {
|
|
1954
|
+
style?: {
|
|
1955
|
+
color?: string | null | undefined;
|
|
1956
|
+
backgroundColor?: string | null | undefined;
|
|
1957
|
+
fontSize?: number | null | undefined;
|
|
1958
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1959
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1960
|
+
letterSpacing?: number | null | undefined;
|
|
1961
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
1962
|
+
padding?: {
|
|
1963
|
+
top: number;
|
|
1964
|
+
bottom: number;
|
|
1965
|
+
right: number;
|
|
1966
|
+
left: number;
|
|
1967
|
+
} | null | undefined;
|
|
1968
|
+
borderColor?: string | null | undefined;
|
|
1969
|
+
borderRadius?: number | null | undefined;
|
|
1970
|
+
} | null | undefined;
|
|
1971
|
+
props?: {
|
|
1972
|
+
code?: string | null | undefined;
|
|
1973
|
+
} | null | undefined;
|
|
1974
|
+
}, {
|
|
1975
|
+
style?: {
|
|
1976
|
+
color?: string | null | undefined;
|
|
1977
|
+
backgroundColor?: string | null | undefined;
|
|
1978
|
+
fontSize?: number | null | undefined;
|
|
1979
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1980
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1981
|
+
letterSpacing?: number | null | undefined;
|
|
1982
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
1983
|
+
padding?: {
|
|
1984
|
+
top: number;
|
|
1985
|
+
bottom: number;
|
|
1986
|
+
right: number;
|
|
1987
|
+
left: number;
|
|
1988
|
+
} | null | undefined;
|
|
1989
|
+
borderColor?: string | null | undefined;
|
|
1990
|
+
borderRadius?: number | null | undefined;
|
|
1991
|
+
} | null | undefined;
|
|
1992
|
+
props?: {
|
|
1993
|
+
code?: string | null | undefined;
|
|
1994
|
+
} | null | undefined;
|
|
1995
|
+
}>;
|
|
1996
|
+
declare const OtpPropsDefaults: {
|
|
1997
|
+
readonly code: "123456";
|
|
1998
|
+
};
|
|
1999
|
+
declare function Otp({ props, style }: OtpProps): React.JSX.Element;
|
|
2000
|
+
|
|
1775
2001
|
declare const SignaturePropsSchema: z.ZodObject<{
|
|
1776
2002
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1777
2003
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1831,6 +2057,7 @@ declare const SignaturePropsSchema: z.ZodObject<{
|
|
|
1831
2057
|
title?: string | null | undefined;
|
|
1832
2058
|
address?: string | null | undefined;
|
|
1833
2059
|
imageUrl?: string | null | undefined;
|
|
2060
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1834
2061
|
greeting?: string | null | undefined;
|
|
1835
2062
|
name?: string | null | undefined;
|
|
1836
2063
|
company?: string | null | undefined;
|
|
@@ -1839,7 +2066,6 @@ declare const SignaturePropsSchema: z.ZodObject<{
|
|
|
1839
2066
|
website?: string | null | undefined;
|
|
1840
2067
|
imageSize?: number | null | undefined;
|
|
1841
2068
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
1842
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1843
2069
|
nameColor?: string | null | undefined;
|
|
1844
2070
|
textColor?: string | null | undefined;
|
|
1845
2071
|
linkColor?: string | null | undefined;
|
|
@@ -1847,6 +2073,7 @@ declare const SignaturePropsSchema: z.ZodObject<{
|
|
|
1847
2073
|
title?: string | null | undefined;
|
|
1848
2074
|
address?: string | null | undefined;
|
|
1849
2075
|
imageUrl?: string | null | undefined;
|
|
2076
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1850
2077
|
greeting?: string | null | undefined;
|
|
1851
2078
|
name?: string | null | undefined;
|
|
1852
2079
|
company?: string | null | undefined;
|
|
@@ -1855,7 +2082,6 @@ declare const SignaturePropsSchema: z.ZodObject<{
|
|
|
1855
2082
|
website?: string | null | undefined;
|
|
1856
2083
|
imageSize?: number | null | undefined;
|
|
1857
2084
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
1858
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1859
2085
|
nameColor?: string | null | undefined;
|
|
1860
2086
|
textColor?: string | null | undefined;
|
|
1861
2087
|
linkColor?: string | null | undefined;
|
|
@@ -1875,6 +2101,7 @@ declare const SignaturePropsSchema: z.ZodObject<{
|
|
|
1875
2101
|
title?: string | null | undefined;
|
|
1876
2102
|
address?: string | null | undefined;
|
|
1877
2103
|
imageUrl?: string | null | undefined;
|
|
2104
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1878
2105
|
greeting?: string | null | undefined;
|
|
1879
2106
|
name?: string | null | undefined;
|
|
1880
2107
|
company?: string | null | undefined;
|
|
@@ -1883,7 +2110,6 @@ declare const SignaturePropsSchema: z.ZodObject<{
|
|
|
1883
2110
|
website?: string | null | undefined;
|
|
1884
2111
|
imageSize?: number | null | undefined;
|
|
1885
2112
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
1886
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1887
2113
|
nameColor?: string | null | undefined;
|
|
1888
2114
|
textColor?: string | null | undefined;
|
|
1889
2115
|
linkColor?: string | null | undefined;
|
|
@@ -1903,6 +2129,7 @@ declare const SignaturePropsSchema: z.ZodObject<{
|
|
|
1903
2129
|
title?: string | null | undefined;
|
|
1904
2130
|
address?: string | null | undefined;
|
|
1905
2131
|
imageUrl?: string | null | undefined;
|
|
2132
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1906
2133
|
greeting?: string | null | undefined;
|
|
1907
2134
|
name?: string | null | undefined;
|
|
1908
2135
|
company?: string | null | undefined;
|
|
@@ -1911,7 +2138,6 @@ declare const SignaturePropsSchema: z.ZodObject<{
|
|
|
1911
2138
|
website?: string | null | undefined;
|
|
1912
2139
|
imageSize?: number | null | undefined;
|
|
1913
2140
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
1914
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1915
2141
|
nameColor?: string | null | undefined;
|
|
1916
2142
|
textColor?: string | null | undefined;
|
|
1917
2143
|
linkColor?: string | null | undefined;
|
|
@@ -1977,6 +2203,7 @@ declare const SignatureProps: z.ZodObject<{
|
|
|
1977
2203
|
title?: string | null | undefined;
|
|
1978
2204
|
address?: string | null | undefined;
|
|
1979
2205
|
imageUrl?: string | null | undefined;
|
|
2206
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1980
2207
|
greeting?: string | null | undefined;
|
|
1981
2208
|
name?: string | null | undefined;
|
|
1982
2209
|
company?: string | null | undefined;
|
|
@@ -1985,7 +2212,6 @@ declare const SignatureProps: z.ZodObject<{
|
|
|
1985
2212
|
website?: string | null | undefined;
|
|
1986
2213
|
imageSize?: number | null | undefined;
|
|
1987
2214
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
1988
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1989
2215
|
nameColor?: string | null | undefined;
|
|
1990
2216
|
textColor?: string | null | undefined;
|
|
1991
2217
|
linkColor?: string | null | undefined;
|
|
@@ -1993,6 +2219,7 @@ declare const SignatureProps: z.ZodObject<{
|
|
|
1993
2219
|
title?: string | null | undefined;
|
|
1994
2220
|
address?: string | null | undefined;
|
|
1995
2221
|
imageUrl?: string | null | undefined;
|
|
2222
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
1996
2223
|
greeting?: string | null | undefined;
|
|
1997
2224
|
name?: string | null | undefined;
|
|
1998
2225
|
company?: string | null | undefined;
|
|
@@ -2001,7 +2228,6 @@ declare const SignatureProps: z.ZodObject<{
|
|
|
2001
2228
|
website?: string | null | undefined;
|
|
2002
2229
|
imageSize?: number | null | undefined;
|
|
2003
2230
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
2004
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
2005
2231
|
nameColor?: string | null | undefined;
|
|
2006
2232
|
textColor?: string | null | undefined;
|
|
2007
2233
|
linkColor?: string | null | undefined;
|
|
@@ -2021,6 +2247,7 @@ declare const SignatureProps: z.ZodObject<{
|
|
|
2021
2247
|
title?: string | null | undefined;
|
|
2022
2248
|
address?: string | null | undefined;
|
|
2023
2249
|
imageUrl?: string | null | undefined;
|
|
2250
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
2024
2251
|
greeting?: string | null | undefined;
|
|
2025
2252
|
name?: string | null | undefined;
|
|
2026
2253
|
company?: string | null | undefined;
|
|
@@ -2029,7 +2256,6 @@ declare const SignatureProps: z.ZodObject<{
|
|
|
2029
2256
|
website?: string | null | undefined;
|
|
2030
2257
|
imageSize?: number | null | undefined;
|
|
2031
2258
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
2032
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
2033
2259
|
nameColor?: string | null | undefined;
|
|
2034
2260
|
textColor?: string | null | undefined;
|
|
2035
2261
|
linkColor?: string | null | undefined;
|
|
@@ -2049,6 +2275,7 @@ declare const SignatureProps: z.ZodObject<{
|
|
|
2049
2275
|
title?: string | null | undefined;
|
|
2050
2276
|
address?: string | null | undefined;
|
|
2051
2277
|
imageUrl?: string | null | undefined;
|
|
2278
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
2052
2279
|
greeting?: string | null | undefined;
|
|
2053
2280
|
name?: string | null | undefined;
|
|
2054
2281
|
company?: string | null | undefined;
|
|
@@ -2057,7 +2284,6 @@ declare const SignatureProps: z.ZodObject<{
|
|
|
2057
2284
|
website?: string | null | undefined;
|
|
2058
2285
|
imageSize?: number | null | undefined;
|
|
2059
2286
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
2060
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
2061
2287
|
nameColor?: string | null | undefined;
|
|
2062
2288
|
textColor?: string | null | undefined;
|
|
2063
2289
|
linkColor?: string | null | undefined;
|
|
@@ -3017,16 +3243,129 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3017
3243
|
} | null | undefined;
|
|
3018
3244
|
} | null | undefined;
|
|
3019
3245
|
props?: {
|
|
3020
|
-
alt?: string | null | undefined;
|
|
3021
|
-
width?: number | null | undefined;
|
|
3022
|
-
height?: number | null | undefined;
|
|
3023
|
-
url?: string | null | undefined;
|
|
3024
|
-
contentAlignment?: "top" | "bottom" | "middle" | null | undefined;
|
|
3025
|
-
linkHref?: string | null | undefined;
|
|
3246
|
+
alt?: string | null | undefined;
|
|
3247
|
+
width?: number | null | undefined;
|
|
3248
|
+
height?: number | null | undefined;
|
|
3249
|
+
url?: string | null | undefined;
|
|
3250
|
+
contentAlignment?: "top" | "bottom" | "middle" | null | undefined;
|
|
3251
|
+
linkHref?: string | null | undefined;
|
|
3252
|
+
} | null | undefined;
|
|
3253
|
+
}, {
|
|
3254
|
+
style?: {
|
|
3255
|
+
backgroundColor?: string | null | undefined;
|
|
3256
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
3257
|
+
padding?: {
|
|
3258
|
+
top: number;
|
|
3259
|
+
bottom: number;
|
|
3260
|
+
right: number;
|
|
3261
|
+
left: number;
|
|
3262
|
+
} | null | undefined;
|
|
3263
|
+
} | null | undefined;
|
|
3264
|
+
props?: {
|
|
3265
|
+
alt?: string | null | undefined;
|
|
3266
|
+
width?: number | null | undefined;
|
|
3267
|
+
height?: number | null | undefined;
|
|
3268
|
+
url?: string | null | undefined;
|
|
3269
|
+
contentAlignment?: "top" | "bottom" | "middle" | null | undefined;
|
|
3270
|
+
linkHref?: string | null | undefined;
|
|
3271
|
+
} | null | undefined;
|
|
3272
|
+
}>;
|
|
3273
|
+
Otp: z.ZodObject<{
|
|
3274
|
+
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3275
|
+
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3276
|
+
}, "strip", z.ZodTypeAny, {
|
|
3277
|
+
code?: string | null | undefined;
|
|
3278
|
+
}, {
|
|
3279
|
+
code?: string | null | undefined;
|
|
3280
|
+
}>>>;
|
|
3281
|
+
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3282
|
+
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3283
|
+
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3284
|
+
borderColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3285
|
+
borderRadius: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
3286
|
+
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
3287
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
3288
|
+
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
3289
|
+
letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
3290
|
+
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
3291
|
+
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3292
|
+
top: z.ZodNumber;
|
|
3293
|
+
bottom: z.ZodNumber;
|
|
3294
|
+
right: z.ZodNumber;
|
|
3295
|
+
left: z.ZodNumber;
|
|
3296
|
+
}, "strip", z.ZodTypeAny, {
|
|
3297
|
+
top: number;
|
|
3298
|
+
bottom: number;
|
|
3299
|
+
right: number;
|
|
3300
|
+
left: number;
|
|
3301
|
+
}, {
|
|
3302
|
+
top: number;
|
|
3303
|
+
bottom: number;
|
|
3304
|
+
right: number;
|
|
3305
|
+
left: number;
|
|
3306
|
+
}>>>;
|
|
3307
|
+
}, "strip", z.ZodTypeAny, {
|
|
3308
|
+
color?: string | null | undefined;
|
|
3309
|
+
backgroundColor?: string | null | undefined;
|
|
3310
|
+
fontSize?: number | null | undefined;
|
|
3311
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
3312
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
3313
|
+
letterSpacing?: number | null | undefined;
|
|
3314
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
3315
|
+
padding?: {
|
|
3316
|
+
top: number;
|
|
3317
|
+
bottom: number;
|
|
3318
|
+
right: number;
|
|
3319
|
+
left: number;
|
|
3320
|
+
} | null | undefined;
|
|
3321
|
+
borderColor?: string | null | undefined;
|
|
3322
|
+
borderRadius?: number | null | undefined;
|
|
3323
|
+
}, {
|
|
3324
|
+
color?: string | null | undefined;
|
|
3325
|
+
backgroundColor?: string | null | undefined;
|
|
3326
|
+
fontSize?: number | null | undefined;
|
|
3327
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
3328
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
3329
|
+
letterSpacing?: number | null | undefined;
|
|
3330
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
3331
|
+
padding?: {
|
|
3332
|
+
top: number;
|
|
3333
|
+
bottom: number;
|
|
3334
|
+
right: number;
|
|
3335
|
+
left: number;
|
|
3336
|
+
} | null | undefined;
|
|
3337
|
+
borderColor?: string | null | undefined;
|
|
3338
|
+
borderRadius?: number | null | undefined;
|
|
3339
|
+
}>>>;
|
|
3340
|
+
}, "strip", z.ZodTypeAny, {
|
|
3341
|
+
style?: {
|
|
3342
|
+
color?: string | null | undefined;
|
|
3343
|
+
backgroundColor?: string | null | undefined;
|
|
3344
|
+
fontSize?: number | null | undefined;
|
|
3345
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
3346
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
3347
|
+
letterSpacing?: number | null | undefined;
|
|
3348
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
3349
|
+
padding?: {
|
|
3350
|
+
top: number;
|
|
3351
|
+
bottom: number;
|
|
3352
|
+
right: number;
|
|
3353
|
+
left: number;
|
|
3354
|
+
} | null | undefined;
|
|
3355
|
+
borderColor?: string | null | undefined;
|
|
3356
|
+
borderRadius?: number | null | undefined;
|
|
3357
|
+
} | null | undefined;
|
|
3358
|
+
props?: {
|
|
3359
|
+
code?: string | null | undefined;
|
|
3026
3360
|
} | null | undefined;
|
|
3027
3361
|
}, {
|
|
3028
3362
|
style?: {
|
|
3363
|
+
color?: string | null | undefined;
|
|
3029
3364
|
backgroundColor?: string | null | undefined;
|
|
3365
|
+
fontSize?: number | null | undefined;
|
|
3366
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
3367
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
3368
|
+
letterSpacing?: number | null | undefined;
|
|
3030
3369
|
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
3031
3370
|
padding?: {
|
|
3032
3371
|
top: number;
|
|
@@ -3034,14 +3373,11 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3034
3373
|
right: number;
|
|
3035
3374
|
left: number;
|
|
3036
3375
|
} | null | undefined;
|
|
3376
|
+
borderColor?: string | null | undefined;
|
|
3377
|
+
borderRadius?: number | null | undefined;
|
|
3037
3378
|
} | null | undefined;
|
|
3038
3379
|
props?: {
|
|
3039
|
-
|
|
3040
|
-
width?: number | null | undefined;
|
|
3041
|
-
height?: number | null | undefined;
|
|
3042
|
-
url?: string | null | undefined;
|
|
3043
|
-
contentAlignment?: "top" | "bottom" | "middle" | null | undefined;
|
|
3044
|
-
linkHref?: string | null | undefined;
|
|
3380
|
+
code?: string | null | undefined;
|
|
3045
3381
|
} | null | undefined;
|
|
3046
3382
|
}>;
|
|
3047
3383
|
Spacer: z.ZodObject<{
|
|
@@ -3230,6 +3566,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3230
3566
|
title?: string | null | undefined;
|
|
3231
3567
|
address?: string | null | undefined;
|
|
3232
3568
|
imageUrl?: string | null | undefined;
|
|
3569
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
3233
3570
|
greeting?: string | null | undefined;
|
|
3234
3571
|
name?: string | null | undefined;
|
|
3235
3572
|
company?: string | null | undefined;
|
|
@@ -3238,7 +3575,6 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3238
3575
|
website?: string | null | undefined;
|
|
3239
3576
|
imageSize?: number | null | undefined;
|
|
3240
3577
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
3241
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
3242
3578
|
nameColor?: string | null | undefined;
|
|
3243
3579
|
textColor?: string | null | undefined;
|
|
3244
3580
|
linkColor?: string | null | undefined;
|
|
@@ -3246,6 +3582,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3246
3582
|
title?: string | null | undefined;
|
|
3247
3583
|
address?: string | null | undefined;
|
|
3248
3584
|
imageUrl?: string | null | undefined;
|
|
3585
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
3249
3586
|
greeting?: string | null | undefined;
|
|
3250
3587
|
name?: string | null | undefined;
|
|
3251
3588
|
company?: string | null | undefined;
|
|
@@ -3254,7 +3591,6 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3254
3591
|
website?: string | null | undefined;
|
|
3255
3592
|
imageSize?: number | null | undefined;
|
|
3256
3593
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
3257
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
3258
3594
|
nameColor?: string | null | undefined;
|
|
3259
3595
|
textColor?: string | null | undefined;
|
|
3260
3596
|
linkColor?: string | null | undefined;
|
|
@@ -3274,6 +3610,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3274
3610
|
title?: string | null | undefined;
|
|
3275
3611
|
address?: string | null | undefined;
|
|
3276
3612
|
imageUrl?: string | null | undefined;
|
|
3613
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
3277
3614
|
greeting?: string | null | undefined;
|
|
3278
3615
|
name?: string | null | undefined;
|
|
3279
3616
|
company?: string | null | undefined;
|
|
@@ -3282,7 +3619,6 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3282
3619
|
website?: string | null | undefined;
|
|
3283
3620
|
imageSize?: number | null | undefined;
|
|
3284
3621
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
3285
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
3286
3622
|
nameColor?: string | null | undefined;
|
|
3287
3623
|
textColor?: string | null | undefined;
|
|
3288
3624
|
linkColor?: string | null | undefined;
|
|
@@ -3302,6 +3638,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3302
3638
|
title?: string | null | undefined;
|
|
3303
3639
|
address?: string | null | undefined;
|
|
3304
3640
|
imageUrl?: string | null | undefined;
|
|
3641
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
3305
3642
|
greeting?: string | null | undefined;
|
|
3306
3643
|
name?: string | null | undefined;
|
|
3307
3644
|
company?: string | null | undefined;
|
|
@@ -3310,7 +3647,6 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
3310
3647
|
website?: string | null | undefined;
|
|
3311
3648
|
imageSize?: number | null | undefined;
|
|
3312
3649
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
3313
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
3314
3650
|
nameColor?: string | null | undefined;
|
|
3315
3651
|
textColor?: string | null | undefined;
|
|
3316
3652
|
linkColor?: string | null | undefined;
|
|
@@ -4175,6 +4511,116 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
4175
4511
|
linkHref?: string | null | undefined;
|
|
4176
4512
|
} | null | undefined;
|
|
4177
4513
|
}>;
|
|
4514
|
+
Otp: z.ZodObject<{
|
|
4515
|
+
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
4516
|
+
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4517
|
+
}, "strip", z.ZodTypeAny, {
|
|
4518
|
+
code?: string | null | undefined;
|
|
4519
|
+
}, {
|
|
4520
|
+
code?: string | null | undefined;
|
|
4521
|
+
}>>>;
|
|
4522
|
+
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
4523
|
+
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4524
|
+
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4525
|
+
borderColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4526
|
+
borderRadius: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
4527
|
+
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
4528
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
4529
|
+
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
4530
|
+
letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
4531
|
+
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
4532
|
+
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
4533
|
+
top: z.ZodNumber;
|
|
4534
|
+
bottom: z.ZodNumber;
|
|
4535
|
+
right: z.ZodNumber;
|
|
4536
|
+
left: z.ZodNumber;
|
|
4537
|
+
}, "strip", z.ZodTypeAny, {
|
|
4538
|
+
top: number;
|
|
4539
|
+
bottom: number;
|
|
4540
|
+
right: number;
|
|
4541
|
+
left: number;
|
|
4542
|
+
}, {
|
|
4543
|
+
top: number;
|
|
4544
|
+
bottom: number;
|
|
4545
|
+
right: number;
|
|
4546
|
+
left: number;
|
|
4547
|
+
}>>>;
|
|
4548
|
+
}, "strip", z.ZodTypeAny, {
|
|
4549
|
+
color?: string | null | undefined;
|
|
4550
|
+
backgroundColor?: string | null | undefined;
|
|
4551
|
+
fontSize?: number | null | undefined;
|
|
4552
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
4553
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
4554
|
+
letterSpacing?: number | null | undefined;
|
|
4555
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
4556
|
+
padding?: {
|
|
4557
|
+
top: number;
|
|
4558
|
+
bottom: number;
|
|
4559
|
+
right: number;
|
|
4560
|
+
left: number;
|
|
4561
|
+
} | null | undefined;
|
|
4562
|
+
borderColor?: string | null | undefined;
|
|
4563
|
+
borderRadius?: number | null | undefined;
|
|
4564
|
+
}, {
|
|
4565
|
+
color?: string | null | undefined;
|
|
4566
|
+
backgroundColor?: string | null | undefined;
|
|
4567
|
+
fontSize?: number | null | undefined;
|
|
4568
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
4569
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
4570
|
+
letterSpacing?: number | null | undefined;
|
|
4571
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
4572
|
+
padding?: {
|
|
4573
|
+
top: number;
|
|
4574
|
+
bottom: number;
|
|
4575
|
+
right: number;
|
|
4576
|
+
left: number;
|
|
4577
|
+
} | null | undefined;
|
|
4578
|
+
borderColor?: string | null | undefined;
|
|
4579
|
+
borderRadius?: number | null | undefined;
|
|
4580
|
+
}>>>;
|
|
4581
|
+
}, "strip", z.ZodTypeAny, {
|
|
4582
|
+
style?: {
|
|
4583
|
+
color?: string | null | undefined;
|
|
4584
|
+
backgroundColor?: string | null | undefined;
|
|
4585
|
+
fontSize?: number | null | undefined;
|
|
4586
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
4587
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
4588
|
+
letterSpacing?: number | null | undefined;
|
|
4589
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
4590
|
+
padding?: {
|
|
4591
|
+
top: number;
|
|
4592
|
+
bottom: number;
|
|
4593
|
+
right: number;
|
|
4594
|
+
left: number;
|
|
4595
|
+
} | null | undefined;
|
|
4596
|
+
borderColor?: string | null | undefined;
|
|
4597
|
+
borderRadius?: number | null | undefined;
|
|
4598
|
+
} | null | undefined;
|
|
4599
|
+
props?: {
|
|
4600
|
+
code?: string | null | undefined;
|
|
4601
|
+
} | null | undefined;
|
|
4602
|
+
}, {
|
|
4603
|
+
style?: {
|
|
4604
|
+
color?: string | null | undefined;
|
|
4605
|
+
backgroundColor?: string | null | undefined;
|
|
4606
|
+
fontSize?: number | null | undefined;
|
|
4607
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
4608
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
4609
|
+
letterSpacing?: number | null | undefined;
|
|
4610
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
4611
|
+
padding?: {
|
|
4612
|
+
top: number;
|
|
4613
|
+
bottom: number;
|
|
4614
|
+
right: number;
|
|
4615
|
+
left: number;
|
|
4616
|
+
} | null | undefined;
|
|
4617
|
+
borderColor?: string | null | undefined;
|
|
4618
|
+
borderRadius?: number | null | undefined;
|
|
4619
|
+
} | null | undefined;
|
|
4620
|
+
props?: {
|
|
4621
|
+
code?: string | null | undefined;
|
|
4622
|
+
} | null | undefined;
|
|
4623
|
+
}>;
|
|
4178
4624
|
Spacer: z.ZodObject<{
|
|
4179
4625
|
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
4180
4626
|
height: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNumber>>>;
|
|
@@ -4361,6 +4807,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
4361
4807
|
title?: string | null | undefined;
|
|
4362
4808
|
address?: string | null | undefined;
|
|
4363
4809
|
imageUrl?: string | null | undefined;
|
|
4810
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
4364
4811
|
greeting?: string | null | undefined;
|
|
4365
4812
|
name?: string | null | undefined;
|
|
4366
4813
|
company?: string | null | undefined;
|
|
@@ -4369,7 +4816,6 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
4369
4816
|
website?: string | null | undefined;
|
|
4370
4817
|
imageSize?: number | null | undefined;
|
|
4371
4818
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
4372
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
4373
4819
|
nameColor?: string | null | undefined;
|
|
4374
4820
|
textColor?: string | null | undefined;
|
|
4375
4821
|
linkColor?: string | null | undefined;
|
|
@@ -4377,6 +4823,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
4377
4823
|
title?: string | null | undefined;
|
|
4378
4824
|
address?: string | null | undefined;
|
|
4379
4825
|
imageUrl?: string | null | undefined;
|
|
4826
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
4380
4827
|
greeting?: string | null | undefined;
|
|
4381
4828
|
name?: string | null | undefined;
|
|
4382
4829
|
company?: string | null | undefined;
|
|
@@ -4385,7 +4832,6 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
4385
4832
|
website?: string | null | undefined;
|
|
4386
4833
|
imageSize?: number | null | undefined;
|
|
4387
4834
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
4388
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
4389
4835
|
nameColor?: string | null | undefined;
|
|
4390
4836
|
textColor?: string | null | undefined;
|
|
4391
4837
|
linkColor?: string | null | undefined;
|
|
@@ -4405,6 +4851,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
4405
4851
|
title?: string | null | undefined;
|
|
4406
4852
|
address?: string | null | undefined;
|
|
4407
4853
|
imageUrl?: string | null | undefined;
|
|
4854
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
4408
4855
|
greeting?: string | null | undefined;
|
|
4409
4856
|
name?: string | null | undefined;
|
|
4410
4857
|
company?: string | null | undefined;
|
|
@@ -4413,7 +4860,6 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
4413
4860
|
website?: string | null | undefined;
|
|
4414
4861
|
imageSize?: number | null | undefined;
|
|
4415
4862
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
4416
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
4417
4863
|
nameColor?: string | null | undefined;
|
|
4418
4864
|
textColor?: string | null | undefined;
|
|
4419
4865
|
linkColor?: string | null | undefined;
|
|
@@ -4433,6 +4879,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
4433
4879
|
title?: string | null | undefined;
|
|
4434
4880
|
address?: string | null | undefined;
|
|
4435
4881
|
imageUrl?: string | null | undefined;
|
|
4882
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
4436
4883
|
greeting?: string | null | undefined;
|
|
4437
4884
|
name?: string | null | undefined;
|
|
4438
4885
|
company?: string | null | undefined;
|
|
@@ -4441,7 +4888,6 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
4441
4888
|
website?: string | null | undefined;
|
|
4442
4889
|
imageSize?: number | null | undefined;
|
|
4443
4890
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
4444
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
4445
4891
|
nameColor?: string | null | undefined;
|
|
4446
4892
|
textColor?: string | null | undefined;
|
|
4447
4893
|
linkColor?: string | null | undefined;
|
|
@@ -5528,6 +5974,116 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
5528
5974
|
linkHref?: string | null | undefined;
|
|
5529
5975
|
} | null | undefined;
|
|
5530
5976
|
}>;
|
|
5977
|
+
Otp: z.ZodObject<{
|
|
5978
|
+
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5979
|
+
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5980
|
+
}, "strip", z.ZodTypeAny, {
|
|
5981
|
+
code?: string | null | undefined;
|
|
5982
|
+
}, {
|
|
5983
|
+
code?: string | null | undefined;
|
|
5984
|
+
}>>>;
|
|
5985
|
+
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5986
|
+
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5987
|
+
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5988
|
+
borderColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5989
|
+
borderRadius: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
5990
|
+
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
5991
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
5992
|
+
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
5993
|
+
letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
5994
|
+
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
5995
|
+
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5996
|
+
top: z.ZodNumber;
|
|
5997
|
+
bottom: z.ZodNumber;
|
|
5998
|
+
right: z.ZodNumber;
|
|
5999
|
+
left: z.ZodNumber;
|
|
6000
|
+
}, "strip", z.ZodTypeAny, {
|
|
6001
|
+
top: number;
|
|
6002
|
+
bottom: number;
|
|
6003
|
+
right: number;
|
|
6004
|
+
left: number;
|
|
6005
|
+
}, {
|
|
6006
|
+
top: number;
|
|
6007
|
+
bottom: number;
|
|
6008
|
+
right: number;
|
|
6009
|
+
left: number;
|
|
6010
|
+
}>>>;
|
|
6011
|
+
}, "strip", z.ZodTypeAny, {
|
|
6012
|
+
color?: string | null | undefined;
|
|
6013
|
+
backgroundColor?: string | null | undefined;
|
|
6014
|
+
fontSize?: number | null | undefined;
|
|
6015
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
6016
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
6017
|
+
letterSpacing?: number | null | undefined;
|
|
6018
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
6019
|
+
padding?: {
|
|
6020
|
+
top: number;
|
|
6021
|
+
bottom: number;
|
|
6022
|
+
right: number;
|
|
6023
|
+
left: number;
|
|
6024
|
+
} | null | undefined;
|
|
6025
|
+
borderColor?: string | null | undefined;
|
|
6026
|
+
borderRadius?: number | null | undefined;
|
|
6027
|
+
}, {
|
|
6028
|
+
color?: string | null | undefined;
|
|
6029
|
+
backgroundColor?: string | null | undefined;
|
|
6030
|
+
fontSize?: number | null | undefined;
|
|
6031
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
6032
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
6033
|
+
letterSpacing?: number | null | undefined;
|
|
6034
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
6035
|
+
padding?: {
|
|
6036
|
+
top: number;
|
|
6037
|
+
bottom: number;
|
|
6038
|
+
right: number;
|
|
6039
|
+
left: number;
|
|
6040
|
+
} | null | undefined;
|
|
6041
|
+
borderColor?: string | null | undefined;
|
|
6042
|
+
borderRadius?: number | null | undefined;
|
|
6043
|
+
}>>>;
|
|
6044
|
+
}, "strip", z.ZodTypeAny, {
|
|
6045
|
+
style?: {
|
|
6046
|
+
color?: string | null | undefined;
|
|
6047
|
+
backgroundColor?: string | null | undefined;
|
|
6048
|
+
fontSize?: number | null | undefined;
|
|
6049
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
6050
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
6051
|
+
letterSpacing?: number | null | undefined;
|
|
6052
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
6053
|
+
padding?: {
|
|
6054
|
+
top: number;
|
|
6055
|
+
bottom: number;
|
|
6056
|
+
right: number;
|
|
6057
|
+
left: number;
|
|
6058
|
+
} | null | undefined;
|
|
6059
|
+
borderColor?: string | null | undefined;
|
|
6060
|
+
borderRadius?: number | null | undefined;
|
|
6061
|
+
} | null | undefined;
|
|
6062
|
+
props?: {
|
|
6063
|
+
code?: string | null | undefined;
|
|
6064
|
+
} | null | undefined;
|
|
6065
|
+
}, {
|
|
6066
|
+
style?: {
|
|
6067
|
+
color?: string | null | undefined;
|
|
6068
|
+
backgroundColor?: string | null | undefined;
|
|
6069
|
+
fontSize?: number | null | undefined;
|
|
6070
|
+
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
6071
|
+
fontWeight?: "bold" | "normal" | null | undefined;
|
|
6072
|
+
letterSpacing?: number | null | undefined;
|
|
6073
|
+
textAlign?: "right" | "left" | "center" | null | undefined;
|
|
6074
|
+
padding?: {
|
|
6075
|
+
top: number;
|
|
6076
|
+
bottom: number;
|
|
6077
|
+
right: number;
|
|
6078
|
+
left: number;
|
|
6079
|
+
} | null | undefined;
|
|
6080
|
+
borderColor?: string | null | undefined;
|
|
6081
|
+
borderRadius?: number | null | undefined;
|
|
6082
|
+
} | null | undefined;
|
|
6083
|
+
props?: {
|
|
6084
|
+
code?: string | null | undefined;
|
|
6085
|
+
} | null | undefined;
|
|
6086
|
+
}>;
|
|
5531
6087
|
Text: z.ZodObject<{
|
|
5532
6088
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5533
6089
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5843,6 +6399,7 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
5843
6399
|
title?: string | null | undefined;
|
|
5844
6400
|
address?: string | null | undefined;
|
|
5845
6401
|
imageUrl?: string | null | undefined;
|
|
6402
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
5846
6403
|
greeting?: string | null | undefined;
|
|
5847
6404
|
name?: string | null | undefined;
|
|
5848
6405
|
company?: string | null | undefined;
|
|
@@ -5851,7 +6408,6 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
5851
6408
|
website?: string | null | undefined;
|
|
5852
6409
|
imageSize?: number | null | undefined;
|
|
5853
6410
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
5854
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
5855
6411
|
nameColor?: string | null | undefined;
|
|
5856
6412
|
textColor?: string | null | undefined;
|
|
5857
6413
|
linkColor?: string | null | undefined;
|
|
@@ -5859,6 +6415,7 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
5859
6415
|
title?: string | null | undefined;
|
|
5860
6416
|
address?: string | null | undefined;
|
|
5861
6417
|
imageUrl?: string | null | undefined;
|
|
6418
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
5862
6419
|
greeting?: string | null | undefined;
|
|
5863
6420
|
name?: string | null | undefined;
|
|
5864
6421
|
company?: string | null | undefined;
|
|
@@ -5867,7 +6424,6 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
5867
6424
|
website?: string | null | undefined;
|
|
5868
6425
|
imageSize?: number | null | undefined;
|
|
5869
6426
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
5870
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
5871
6427
|
nameColor?: string | null | undefined;
|
|
5872
6428
|
textColor?: string | null | undefined;
|
|
5873
6429
|
linkColor?: string | null | undefined;
|
|
@@ -5887,6 +6443,7 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
5887
6443
|
title?: string | null | undefined;
|
|
5888
6444
|
address?: string | null | undefined;
|
|
5889
6445
|
imageUrl?: string | null | undefined;
|
|
6446
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
5890
6447
|
greeting?: string | null | undefined;
|
|
5891
6448
|
name?: string | null | undefined;
|
|
5892
6449
|
company?: string | null | undefined;
|
|
@@ -5895,7 +6452,6 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
5895
6452
|
website?: string | null | undefined;
|
|
5896
6453
|
imageSize?: number | null | undefined;
|
|
5897
6454
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
5898
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
5899
6455
|
nameColor?: string | null | undefined;
|
|
5900
6456
|
textColor?: string | null | undefined;
|
|
5901
6457
|
linkColor?: string | null | undefined;
|
|
@@ -5915,6 +6471,7 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
5915
6471
|
title?: string | null | undefined;
|
|
5916
6472
|
address?: string | null | undefined;
|
|
5917
6473
|
imageUrl?: string | null | undefined;
|
|
6474
|
+
layout?: "horizontal" | "vertical" | null | undefined;
|
|
5918
6475
|
greeting?: string | null | undefined;
|
|
5919
6476
|
name?: string | null | undefined;
|
|
5920
6477
|
company?: string | null | undefined;
|
|
@@ -5923,7 +6480,6 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
5923
6480
|
website?: string | null | undefined;
|
|
5924
6481
|
imageSize?: number | null | undefined;
|
|
5925
6482
|
imageShape?: "circle" | "square" | "rounded" | null | undefined;
|
|
5926
|
-
layout?: "horizontal" | "vertical" | null | undefined;
|
|
5927
6483
|
nameColor?: string | null | undefined;
|
|
5928
6484
|
textColor?: string | null | undefined;
|
|
5929
6485
|
linkColor?: string | null | undefined;
|
|
@@ -6170,4 +6726,4 @@ interface EmailEditorProps {
|
|
|
6170
6726
|
}
|
|
6171
6727
|
declare const EmailEditor: React.ForwardRefExoticComponent<EmailEditorProps & React.RefAttributes<EmailEditorRef>>;
|
|
6172
6728
|
|
|
6173
|
-
export { Avatar, AvatarProps, AvatarPropsDefaults, AvatarPropsSchema, BlockConfiguration, Button, ButtonProps, ButtonPropsDefaults, ButtonPropsSchema, ColumnsContainer, ColumnsContainerProps$1 as ColumnsContainerProps, ColumnsContainerPropsSchema$1 as ColumnsContainerPropsSchema, ColumnsContainerReader, Container, ContainerProps$1 as ContainerProps, ContainerPropsSchema$1 as ContainerPropsSchema, ContainerReader, type CustomBlock, Divider, DividerProps, DividerPropsDefaults, DividerPropsSchema, DocumentBlocksDictionary, EmailEditor, type EmailEditorContextType, type EmailEditorProps, EmailEditorProvider, type EmailEditorProviderProps, type EmailEditorRef, EmailLayoutPropsSchema, EmailLayoutReader, EmailMarkdown, type HandlebarsContext, Heading, HeadingProps, HeadingPropsDefaults, HeadingPropsSchema, Html, HtmlProps, HtmlPropsSchema, Image, type ImageCallbacks, ImageProps, ImagePropsSchema, type LibraryImage, Reader, ReaderBlock, ReaderBlockSchema, ReaderDocumentSchema, SUPPORTED_LOCALES, type SavePayload, Signature, SignatureProps, SignaturePropsDefaults, SignaturePropsSchema, Spacer, SpacerProps, SpacerPropsDefaults, SpacerPropsSchema, type SupportedLocale, type TReaderBlock, type TReaderBlockProps, type TReaderDocument, type TReaderProps, type TemplateKind, type TemplateListItem, TemplateVariableSchema, Text, TextProps, TextPropsDefaults, TextPropsSchema, type UploadedImage, buildBlockComponent, buildBlockConfigurationDictionary, buildBlockConfigurationSchema, editorHandlebars, evaluateHandlebars, htmlToEditorConfig, renderToStaticMarkup, renderToText, THEME as theme, useEmailEditor };
|
|
6729
|
+
export { Avatar, AvatarProps, AvatarPropsDefaults, AvatarPropsSchema, BlockConfiguration, Button, ButtonProps, ButtonPropsDefaults, ButtonPropsSchema, ColumnsContainer, ColumnsContainerProps$1 as ColumnsContainerProps, ColumnsContainerPropsSchema$1 as ColumnsContainerPropsSchema, ColumnsContainerReader, Container, ContainerProps$1 as ContainerProps, ContainerPropsSchema$1 as ContainerPropsSchema, ContainerReader, type CustomBlock, Divider, DividerProps, DividerPropsDefaults, DividerPropsSchema, DocumentBlocksDictionary, EmailEditor, type EmailEditorContextType, type EmailEditorProps, EmailEditorProvider, type EmailEditorProviderProps, type EmailEditorRef, EmailLayoutPropsSchema, EmailLayoutReader, EmailMarkdown, type HandlebarsContext, Heading, HeadingProps, HeadingPropsDefaults, HeadingPropsSchema, Html, HtmlProps, HtmlPropsSchema, Image, type ImageCallbacks, ImageProps, ImagePropsSchema, type LibraryImage, Otp, OtpProps, OtpPropsDefaults, OtpPropsSchema, Reader, ReaderBlock, ReaderBlockSchema, ReaderDocumentSchema, SUPPORTED_LOCALES, type SavePayload, Signature, SignatureProps, SignaturePropsDefaults, SignaturePropsSchema, Spacer, SpacerProps, SpacerPropsDefaults, SpacerPropsSchema, type SupportedLocale, type TReaderBlock, type TReaderBlockProps, type TReaderDocument, type TReaderProps, type TemplateKind, type TemplateListItem, TemplateVariableSchema, Text, TextProps, TextPropsDefaults, TextPropsSchema, type UploadedImage, buildBlockComponent, buildBlockConfigurationDictionary, buildBlockConfigurationSchema, editorHandlebars, evaluateHandlebars, htmlToEditorConfig, renderToStaticMarkup, renderToText, THEME as theme, useEmailEditor };
|