@unmail/react 0.1.2 → 0.1.3

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.
@@ -0,0 +1,222 @@
1
+ import * as React$2 from "react";
2
+ import React$1 from "react";
3
+ import { HtmlToTextOptions } from "html-to-text";
4
+ import "css-tree";
5
+ import { Config } from "tailwindcss";
6
+
7
+ //#region src/components/body.d.ts
8
+ type BodyProps = Readonly<React$2.HtmlHTMLAttributes<HTMLBodyElement>>;
9
+ declare const Body: React$2.ForwardRefExoticComponent<Readonly<React$2.HtmlHTMLAttributes<HTMLBodyElement>> & React$2.RefAttributes<HTMLBodyElement>>;
10
+ //#endregion
11
+ //#region src/components/button.d.ts
12
+ type ButtonProps = Readonly<React$2.ComponentPropsWithoutRef<'a'>>;
13
+ declare module 'react' {
14
+ interface CSSProperties {
15
+ msoPaddingAlt?: string | number | undefined;
16
+ msoTextRaise?: string | number | undefined;
17
+ }
18
+ }
19
+ declare const Button: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">> & React$2.RefAttributes<HTMLAnchorElement>>;
20
+ //#endregion
21
+ //#region src/components/code-inline.d.ts
22
+ type RootProps = React$2.ComponentPropsWithoutRef<'code'> & React$2.ComponentPropsWithoutRef<'span'>;
23
+ type CodeInlineProps = Readonly<RootProps>;
24
+ /**
25
+ * Renders an inline `<code>` element with a compatibility fix for the
26
+ * Orange.fr email client, which strips `<code>` tags.
27
+ *
28
+ * A hidden `<span>` fallback is revealed via CSS when the `<head>` (and its
29
+ * `<meta>` tags) are removed — a behaviour specific to Orange.fr.
30
+ */
31
+ declare const CodeInline: React$2.ForwardRefExoticComponent<Readonly<RootProps> & React$2.RefAttributes<HTMLSpanElement>>;
32
+ //#endregion
33
+ //#region src/components/column.d.ts
34
+ type ColumnProps = Readonly<React$2.ComponentPropsWithoutRef<'td'>>;
35
+ declare const Column: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "ref">> & React$2.RefAttributes<HTMLTableCellElement>>;
36
+ //#endregion
37
+ //#region src/components/container.d.ts
38
+ type ContainerProps = Readonly<React$2.ComponentPropsWithoutRef<'table'>>;
39
+ declare const Container: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref">> & React$2.RefAttributes<HTMLTableElement>>;
40
+ //#endregion
41
+ //#region src/components/font.d.ts
42
+ type FallbackFont = 'Arial' | 'Helvetica' | 'Verdana' | 'Georgia' | 'Times New Roman' | 'serif' | 'sans-serif' | 'monospace' | 'cursive' | 'fantasy';
43
+ type FontFormat = 'woff' | 'woff2' | 'truetype' | 'opentype' | 'embedded-opentype' | 'svg';
44
+ type FontWeight = React$2.CSSProperties['fontWeight'];
45
+ type FontStyle = React$2.CSSProperties['fontStyle'];
46
+ interface FontProps {
47
+ /** The font you want to use. NOTE: Do not insert multiple fonts here, use fallbackFontFamily for that */
48
+ fontFamily: string;
49
+ /** An array is possible, but the order of the array is the priority order */
50
+ fallbackFontFamily: FallbackFont | FallbackFont[];
51
+ /** Not all clients support web fonts. For support check: https://www.caniemail.com/features/css-at-font-face/ */
52
+ webFont?: {
53
+ url: string;
54
+ format: FontFormat;
55
+ };
56
+ /** Default: 'normal' */
57
+ fontStyle?: FontStyle;
58
+ /** Default: 400 */
59
+ fontWeight?: FontWeight;
60
+ }
61
+ /** The component MUST be placed inside the <Head> component */
62
+ declare const Font: React$2.FC<Readonly<FontProps>>;
63
+ //#endregion
64
+ //#region src/components/head.d.ts
65
+ type HeadProps = Readonly<React$2.ComponentPropsWithoutRef<'head'>>;
66
+ declare const Head: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "ref">> & React$2.RefAttributes<HTMLHeadElement>>;
67
+ //#endregion
68
+ //#region src/utils/as.d.ts
69
+ type As<DefaultTag extends React.ElementType, T1 extends React.ElementType, T2 extends React.ElementType = T1, T3 extends React.ElementType = T1, T4 extends React.ElementType = T1, T5 extends React.ElementType = T1> = (React.ComponentPropsWithRef<DefaultTag> & {
70
+ as?: DefaultTag;
71
+ }) | (React.ComponentPropsWithRef<T1> & {
72
+ as: T1;
73
+ }) | (React.ComponentPropsWithRef<T2> & {
74
+ as: T2;
75
+ }) | (React.ComponentPropsWithRef<T3> & {
76
+ as: T3;
77
+ }) | (React.ComponentPropsWithRef<T4> & {
78
+ as: T4;
79
+ }) | (React.ComponentPropsWithRef<T5> & {
80
+ as: T5;
81
+ });
82
+ //#endregion
83
+ //#region src/utils/spaces.d.ts
84
+ interface Margin {
85
+ m?: number | string;
86
+ mx?: number | string;
87
+ my?: number | string;
88
+ mt?: number | string;
89
+ mr?: number | string;
90
+ mb?: number | string;
91
+ ml?: number | string;
92
+ }
93
+ //#endregion
94
+ //#region src/components/heading.d.ts
95
+ type HeadingAs = As<'h1', 'h2', 'h3', 'h4', 'h5', 'h6'>;
96
+ type HeadingProps = HeadingAs & Margin;
97
+ declare const Heading: React$2.ForwardRefExoticComponent<(Omit<Readonly<React$2.ClassAttributes<HTMLHeadingElement> & React$2.HTMLAttributes<HTMLHeadingElement> & {
98
+ as?: "h1" | undefined;
99
+ } & Margin>, "ref"> | Omit<Readonly<React$2.ClassAttributes<HTMLHeadingElement> & React$2.HTMLAttributes<HTMLHeadingElement> & {
100
+ as: "h2";
101
+ } & Margin>, "ref"> | Omit<Readonly<React$2.ClassAttributes<HTMLHeadingElement> & React$2.HTMLAttributes<HTMLHeadingElement> & {
102
+ as: "h3";
103
+ } & Margin>, "ref"> | Omit<Readonly<React$2.ClassAttributes<HTMLHeadingElement> & React$2.HTMLAttributes<HTMLHeadingElement> & {
104
+ as: "h4";
105
+ } & Margin>, "ref"> | Omit<Readonly<React$2.ClassAttributes<HTMLHeadingElement> & React$2.HTMLAttributes<HTMLHeadingElement> & {
106
+ as: "h5";
107
+ } & Margin>, "ref"> | Omit<Readonly<React$2.ClassAttributes<HTMLHeadingElement> & React$2.HTMLAttributes<HTMLHeadingElement> & {
108
+ as: "h6";
109
+ } & Margin>, "ref">) & React$2.RefAttributes<HTMLHeadingElement>>;
110
+ //#endregion
111
+ //#region src/components/hr.d.ts
112
+ type HrProps = Readonly<React$2.ComponentPropsWithoutRef<'hr'>>;
113
+ declare const Hr: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "ref">> & React$2.RefAttributes<HTMLHRElement>>;
114
+ //#endregion
115
+ //#region src/components/html.d.ts
116
+ type HtmlProps = Readonly<React$2.ComponentPropsWithoutRef<'html'>>;
117
+ declare const Html: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "ref">> & React$2.RefAttributes<HTMLHtmlElement>>;
118
+ //#endregion
119
+ //#region src/components/img.d.ts
120
+ type ImgProps = Readonly<React$2.ComponentPropsWithoutRef<'img'>>;
121
+ declare const Img: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "ref">> & React$2.RefAttributes<HTMLImageElement>>;
122
+ //#endregion
123
+ //#region src/components/link.d.ts
124
+ type LinkProps = Readonly<React$2.ComponentPropsWithoutRef<'a'>>;
125
+ declare const Link: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">> & React$2.RefAttributes<HTMLAnchorElement>>;
126
+ //#endregion
127
+ //#region src/utils/markdown-styles.d.ts
128
+ type MarkdownStylesType = {
129
+ h1?: React.CSSProperties;
130
+ h2?: React.CSSProperties;
131
+ h3?: React.CSSProperties;
132
+ h4?: React.CSSProperties;
133
+ h5?: React.CSSProperties;
134
+ h6?: React.CSSProperties;
135
+ blockQuote?: React.CSSProperties;
136
+ bold?: React.CSSProperties;
137
+ italic?: React.CSSProperties;
138
+ link?: React.CSSProperties;
139
+ codeBlock?: React.CSSProperties;
140
+ codeInline?: React.CSSProperties;
141
+ p?: React.CSSProperties;
142
+ li?: React.CSSProperties;
143
+ ul?: React.CSSProperties;
144
+ ol?: React.CSSProperties;
145
+ image?: React.CSSProperties;
146
+ br?: React.CSSProperties;
147
+ hr?: React.CSSProperties;
148
+ table?: React.CSSProperties;
149
+ thead?: React.CSSProperties;
150
+ tbody?: React.CSSProperties;
151
+ tr?: React.CSSProperties;
152
+ th?: React.CSSProperties;
153
+ td?: React.CSSProperties;
154
+ strikethrough?: React.CSSProperties;
155
+ };
156
+ //#endregion
157
+ //#region src/components/markdown.d.ts
158
+ type MarkdownProps = Readonly<{
159
+ children: string;
160
+ markdownCustomStyles?: MarkdownStylesType;
161
+ markdownContainerStyles?: React$2.CSSProperties;
162
+ }>;
163
+ declare const Markdown: React$2.ForwardRefExoticComponent<Readonly<{
164
+ children: string;
165
+ markdownCustomStyles?: MarkdownStylesType;
166
+ markdownContainerStyles?: React$2.CSSProperties;
167
+ }> & React$2.RefAttributes<HTMLDivElement>>;
168
+ //#endregion
169
+ //#region src/components/preview.d.ts
170
+ type PreviewProps = Readonly<React$2.ComponentPropsWithoutRef<'div'> & {
171
+ children: string | string[];
172
+ }>;
173
+ declare const Preview: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
174
+ children: string | string[];
175
+ }> & React$2.RefAttributes<HTMLDivElement>>;
176
+ //#endregion
177
+ //#region src/components/row.d.ts
178
+ type RowProps = Readonly<React$2.ComponentPropsWithoutRef<'table'> & {
179
+ children: React$2.ReactNode;
180
+ }>;
181
+ declare const Row: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & {
182
+ children: React$2.ReactNode;
183
+ }> & React$2.RefAttributes<HTMLTableElement>>;
184
+ //#endregion
185
+ //#region src/components/section.d.ts
186
+ type SectionProps = Readonly<React$2.ComponentPropsWithoutRef<'table'>>;
187
+ declare const Section: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref">> & React$2.RefAttributes<HTMLTableElement>>;
188
+ //#endregion
189
+ //#region src/components/text.d.ts
190
+ type TextProps = Readonly<React$2.ComponentPropsWithoutRef<'p'>>;
191
+ declare const Text: React$2.ForwardRefExoticComponent<Readonly<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">> & React$2.RefAttributes<HTMLParagraphElement>>;
192
+ //#endregion
193
+ //#region src/render/options.d.ts
194
+ type RenderOptions = {
195
+ plainText?: false;
196
+ } | {
197
+ plainText?: true;
198
+ htmlToTextOptions?: HtmlToTextOptions;
199
+ };
200
+ //#endregion
201
+ //#region src/render/render.d.ts
202
+ declare function render(element: React.ReactElement, options?: RenderOptions): Promise<string>;
203
+ //#endregion
204
+ //#region src/tailwind/tailwind.d.ts
205
+ type TailwindConfig = Omit<Config, 'content'>;
206
+ interface TailwindProps {
207
+ children: React$2.ReactNode;
208
+ config?: TailwindConfig;
209
+ }
210
+ interface EmailElementProps {
211
+ children?: React$2.ReactNode;
212
+ className?: string;
213
+ style?: React$2.CSSProperties;
214
+ }
215
+ declare const pixelBasedPreset: TailwindConfig;
216
+ declare function Tailwind({
217
+ children,
218
+ config
219
+ }: TailwindProps): React$2.ReactNode;
220
+ //#endregion
221
+ export { Body, type BodyProps, Button, type ButtonProps, CodeInline, type CodeInlineProps, Column, type ColumnProps, Container, type ContainerProps, type EmailElementProps, Font, type FontProps, Head, type HeadProps, Heading, type HeadingProps, Hr, type HrProps, Html, type HtmlProps, Img, type ImgProps, Link, type LinkProps, Markdown, type MarkdownProps, Preview, type PreviewProps, type RenderOptions, Row, type RowProps, Section, type SectionProps, Tailwind, type TailwindConfig, type TailwindProps, Text, type TextProps, pixelBasedPreset, render };
222
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/components/body.tsx","../src/components/button.tsx","../src/components/code-inline.tsx","../src/components/column.tsx","../src/components/container.tsx","../src/components/font.tsx","../src/components/head.tsx","../src/utils/as.ts","../src/utils/spaces.ts","../src/components/heading.tsx","../src/components/hr.tsx","../src/components/html.tsx","../src/components/img.tsx","../src/components/link.tsx","../src/utils/markdown-styles.ts","../src/components/markdown.tsx","../src/components/preview.tsx","../src/components/row.tsx","../src/components/section.tsx","../src/components/text.tsx","../src/render/options.ts","../src/render/render.tsx","../src/tailwind/tailwind.tsx"],"mappings":"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"}