@react-email/body 0.0.10 → 0.0.11-canary.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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -3,4 +3,4 @@ import * as React from 'react';
|
|
|
3
3
|
type BodyProps = Readonly<React.HtmlHTMLAttributes<HTMLBodyElement>>;
|
|
4
4
|
declare const Body: React.ForwardRefExoticComponent<Readonly<React.HtmlHTMLAttributes<HTMLBodyElement>> & React.RefAttributes<HTMLBodyElement>>;
|
|
5
5
|
|
|
6
|
-
export { Body, BodyProps };
|
|
6
|
+
export { Body, type BodyProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ import * as React from 'react';
|
|
|
3
3
|
type BodyProps = Readonly<React.HtmlHTMLAttributes<HTMLBodyElement>>;
|
|
4
4
|
declare const Body: React.ForwardRefExoticComponent<Readonly<React.HtmlHTMLAttributes<HTMLBodyElement>> & React.RefAttributes<HTMLBodyElement>>;
|
|
5
5
|
|
|
6
|
-
export { Body, BodyProps };
|
|
6
|
+
export { Body, type BodyProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-email/body",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11-canary.0",
|
|
4
4
|
"description": "A React body component to wrap emails",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
|
-
"
|
|
25
|
+
"dependencies": {
|
|
26
26
|
"react": "^18.0 || ^19.0 || ^19.0.0-rc"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"typescript": "5.1.6",
|
|
30
30
|
"tsconfig": "0.0.0",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
31
|
+
"eslint-config-custom": "0.0.0",
|
|
32
|
+
"@react-email/render": "1.0.3-canary.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|