@react-email/row 0.0.10 → 0.0.11

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 CHANGED
@@ -7,4 +7,4 @@ declare const Row: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedH
7
7
  children: React.ReactNode;
8
8
  }> & React.RefAttributes<HTMLTableElement>>;
9
9
 
10
- export { Row, RowProps };
10
+ export { Row, type RowProps };
package/dist/index.d.ts CHANGED
@@ -7,4 +7,4 @@ declare const Row: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedH
7
7
  children: React.ReactNode;
8
8
  }> & React.RefAttributes<HTMLTableElement>>;
9
9
 
10
- export { Row, RowProps };
10
+ export { Row, type RowProps };
package/dist/index.js CHANGED
@@ -73,13 +73,13 @@ var Row = React.forwardRef(
73
73
  "table",
74
74
  __spreadProps(__spreadValues({
75
75
  align: "center",
76
- width: "100%"
77
- }, props), {
76
+ width: "100%",
78
77
  border: 0,
79
78
  cellPadding: "0",
80
79
  cellSpacing: "0",
80
+ role: "presentation"
81
+ }, props), {
81
82
  ref,
82
- role: "presentation",
83
83
  style,
84
84
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("tbody", { style: { width: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("tr", { style: { width: "100%" }, children }) })
85
85
  })
package/dist/index.mjs CHANGED
@@ -40,13 +40,13 @@ var Row = React.forwardRef(
40
40
  "table",
41
41
  __spreadProps(__spreadValues({
42
42
  align: "center",
43
- width: "100%"
44
- }, props), {
43
+ width: "100%",
45
44
  border: 0,
46
45
  cellPadding: "0",
47
46
  cellSpacing: "0",
47
+ role: "presentation"
48
+ }, props), {
48
49
  ref,
49
- role: "presentation",
50
50
  style,
51
51
  children: /* @__PURE__ */ jsx("tbody", { style: { width: "100%" }, children: /* @__PURE__ */ jsx("tr", { style: { width: "100%" }, children }) })
52
52
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-email/row",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "A React row component",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -39,9 +39,9 @@
39
39
  },
40
40
  "devDependencies": {
41
41
  "typescript": "5.1.6",
42
- "eslint-config-custom": "0.0.0",
42
+ "@react-email/render": "1.0.2",
43
43
  "tsconfig": "0.0.0",
44
- "@react-email/render": "1.0.0"
44
+ "eslint-config-custom": "0.0.0"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"