react-email 6.3.1 → 6.3.2
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/CHANGELOG.md
CHANGED
package/dist/cli/index.mjs
CHANGED
|
@@ -6523,7 +6523,7 @@ const getEmailsDirectoryMetadata = async (absolutePathToEmailsDirectory, keepFil
|
|
|
6523
6523
|
//#region package.json
|
|
6524
6524
|
var package_default = {
|
|
6525
6525
|
name: "react-email",
|
|
6526
|
-
version: "6.3.
|
|
6526
|
+
version: "6.3.2",
|
|
6527
6527
|
description: "A live preview of your emails right in your browser.",
|
|
6528
6528
|
bin: { "email": "./dist/cli/index.mjs" },
|
|
6529
6529
|
type: "module",
|
package/dist/index.cjs
CHANGED
|
@@ -17874,7 +17874,7 @@ const Markdown = react.forwardRef(({ children, markdownContainerStyles, markdown
|
|
|
17874
17874
|
Markdown.displayName = "Markdown";
|
|
17875
17875
|
//#endregion
|
|
17876
17876
|
//#region src/components/preview/preview.tsx
|
|
17877
|
-
const PREVIEW_MAX_LENGTH =
|
|
17877
|
+
const PREVIEW_MAX_LENGTH = 200;
|
|
17878
17878
|
const Preview = react.forwardRef(({ children = "", ...props }, ref) => {
|
|
17879
17879
|
const text = (Array.isArray(children) ? children.join("") : children).substring(0, PREVIEW_MAX_LENGTH);
|
|
17880
17880
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
package/dist/index.mjs
CHANGED
|
@@ -17853,7 +17853,7 @@ const Markdown = React$1.forwardRef(({ children, markdownContainerStyles, markdo
|
|
|
17853
17853
|
Markdown.displayName = "Markdown";
|
|
17854
17854
|
//#endregion
|
|
17855
17855
|
//#region src/components/preview/preview.tsx
|
|
17856
|
-
const PREVIEW_MAX_LENGTH =
|
|
17856
|
+
const PREVIEW_MAX_LENGTH = 200;
|
|
17857
17857
|
const Preview = React$1.forwardRef(({ children = "", ...props }, ref) => {
|
|
17858
17858
|
const text = (Array.isArray(children) ? children.join("") : children).substring(0, PREVIEW_MAX_LENGTH);
|
|
17859
17859
|
return /* @__PURE__ */ jsxs("div", {
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ describe('<Preview> component', () => {
|
|
|
5
5
|
it('renders correctly', async () => {
|
|
6
6
|
const actualOutput = await render(<Preview>Email preview text</Preview>);
|
|
7
7
|
expect(actualOutput).toMatchInlineSnapshot(
|
|
8
|
-
`"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><div style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0" data-skip-in-text="true">Email preview text<div> </div></div><!--/$-->"`,
|
|
8
|
+
`"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><div style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0" data-skip-in-text="true">Email preview text<div> </div></div><!--/$-->"`,
|
|
9
9
|
);
|
|
10
10
|
});
|
|
11
11
|
|
|
@@ -14,7 +14,7 @@ describe('<Preview> component', () => {
|
|
|
14
14
|
<Preview>Email preview text</Preview>,
|
|
15
15
|
);
|
|
16
16
|
expect(actualOutputArray).toMatchInlineSnapshot(
|
|
17
|
-
`"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><div style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0" data-skip-in-text="true">Email preview text<div> </div></div><!--/$-->"`,
|
|
17
|
+
`"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><div style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0" data-skip-in-text="true">Email preview text<div> </div></div><!--/$-->"`,
|
|
18
18
|
);
|
|
19
19
|
});
|
|
20
20
|
|
|
@@ -22,15 +22,15 @@ describe('<Preview> component', () => {
|
|
|
22
22
|
const longText = 'really long'.repeat(100);
|
|
23
23
|
const actualOutputLong = await render(<Preview>{longText}</Preview>);
|
|
24
24
|
expect(actualOutputLong).toMatchInlineSnapshot(
|
|
25
|
-
`"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><div style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0" data-skip-in-text="true">really longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally </div><!--/$-->"`,
|
|
25
|
+
`"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><div style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0" data-skip-in-text="true">really longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longreally longre</div><!--/$-->"`,
|
|
26
26
|
);
|
|
27
27
|
});
|
|
28
28
|
});
|
|
29
29
|
|
|
30
30
|
describe('renderWhiteSpace', () => {
|
|
31
|
-
it('renders null when text length is greater than or equal to PREVIEW_MAX_LENGTH (
|
|
31
|
+
it('renders null when text length is greater than or equal to PREVIEW_MAX_LENGTH (200)', () => {
|
|
32
32
|
const text =
|
|
33
|
-
'Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur dolore mollitia dignissimos itaque. At excepturi reiciendis iure molestias incidunt. Ab saepe, nostrum dicta dolor maiores tenetur eveniet odio amet ipsum?';
|
|
33
|
+
'Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur dolore mollitia dignissimos itaque. At excepturi reiciendis iure molestias incidunt. Ab saepe, nostrum dicta dolor maiores tenetur eveniet odio amet ipsum? Lorem ipsum extra.';
|
|
34
34
|
const html = renderWhiteSpace(text);
|
|
35
35
|
expect(html).toBeNull();
|
|
36
36
|
});
|
|
@@ -43,7 +43,7 @@ describe('renderWhiteSpace', () => {
|
|
|
43
43
|
expect(html).not.toBeNull();
|
|
44
44
|
|
|
45
45
|
const actualTextContent = html?.props.children;
|
|
46
|
-
const expectedTextContent = whiteSpaceCharacters.repeat(
|
|
46
|
+
const expectedTextContent = whiteSpaceCharacters.repeat(200 - text.length);
|
|
47
47
|
expect(actualTextContent).toBe(expectedTextContent);
|
|
48
48
|
});
|
|
49
49
|
});
|