UNPKG

jsx-email

Version:

Render JSX email components to HTML email

54 lines 3.24 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.Container = void 0; const jsx_runtime_1 = require("react/jsx-runtime"); const config = __importStar(require("../config.js")); const debug_js_1 = require("../debug.js"); const debugProps = debug_js_1.debug.elements.enabled ? { dataType: 'jsx-email/container' } : {}; const Container = ({ alignment = 'center', children, disableDefaultStyle, style, containerWidth = 600, ...props }) => { const configDds = config.current().render.disableDefaultStyle; return ((0, jsx_runtime_1.jsx)("div", { ...debugProps, style: { tableLayout: 'fixed', width: '100%' }, children: (0, jsx_runtime_1.jsxs)("div", { style: { margin: '0 auto', maxWidth: containerWidth }, children: [(0, jsx_runtime_1.jsx)("span", { dangerouslySetInnerHTML: { __html: `<!--[if mso]><table align="${alignment}" width="${containerWidth}" style="border-spacing: 0; width:${containerWidth}px;" role="presentation"><tr><td><![endif]-->` } }), (0, jsx_runtime_1.jsx)("table", { align: alignment, width: "100%", role: "presentation", cellSpacing: "0", cellPadding: "0", border: 0, ...props, style: { ...(configDds || disableDefaultStyle ? {} : { maxWidth: `${containerWidth}px` }), ...style }, children: (0, jsx_runtime_1.jsx)("tbody", { children: (0, jsx_runtime_1.jsx)("tr", { style: configDds || disableDefaultStyle ? {} : { width: '100%' }, children: (0, jsx_runtime_1.jsx)("td", { align: alignment, children: children }) }) }) }), (0, jsx_runtime_1.jsx)("span", { dangerouslySetInnerHTML: { __html: `<!--[if mso]></td></tr></table><![endif]-->` } })] }) })); }; exports.Container = Container; exports.Container.displayName = 'Container'; //# sourceMappingURL=container.js.map