Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/mjml-navbar/lib/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass")); var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits")); var _createSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/createSuper")); var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); var _mjmlCore = require("mjml-core"); var _conditionalTag = _interopRequireDefault(require("mjml-core/lib/helpers/conditionalTag")); let MjNavbarLink = /*#__PURE__*/function (_BodyComponent) { (0, _inherits2.default)(MjNavbarLink, _BodyComponent); var _super = (0, _createSuper2.default)(MjNavbarLink); function MjNavbarLink() { (0, _classCallCheck2.default)(this, MjNavbarLink); return _super.apply(this, arguments); } (0, _createClass2.default)(MjNavbarLink, [{ key: "getStyles", value: function getStyles() { return { a: { display: 'inline-block', color: this.getAttribute('color'), 'font-family': this.getAttribute('font-family'), 'font-size': this.getAttribute('font-size'), 'font-style': this.getAttribute('font-style'), 'font-weight': this.getAttribute('font-weight'), 'letter-spacing': this.getAttribute('letter-spacing'), 'line-height': this.getAttribute('line-height'), 'text-decoration': this.getAttribute('text-decoration'), 'text-transform': this.getAttribute('text-transform'), padding: this.getAttribute('padding'), 'padding-top': this.getAttribute('padding-top'), 'padding-left': this.getAttribute('padding-left'), 'padding-right': this.getAttribute('padding-right'), 'padding-bottom': this.getAttribute('padding-bottom') }, td: { padding: this.getAttribute('padding'), 'padding-top': this.getAttribute('padding-top'), 'padding-left': this.getAttribute('padding-left'), 'padding-right': this.getAttribute('padding-right'), 'padding-bottom': this.getAttribute('padding-bottom') } }; } }, { key: "renderContent", value: function renderContent() { const href = this.getAttribute('href'); const navbarBaseUrl = this.getAttribute('navbarBaseUrl'); const link = navbarBaseUrl ? `${navbarBaseUrl}${href}` : href; const cssClass = this.getAttribute('css-class') ? ` ${this.getAttribute('css-class')}` : ''; return ` <a ${this.htmlAttributes({ class: `mj-link${cssClass}`, href: link, rel: this.getAttribute('rel'), target: this.getAttribute('target'), name: this.getAttribute('name'), style: 'a' })} > ${this.getContent()} </a> `; } }, { key: "render", value: function render() { return ` ${(0, _conditionalTag.default)(` <td ${this.htmlAttributes({ style: 'td', class: (0, _mjmlCore.suffixCssClasses)(this.getAttribute('css-class'), 'outlook') })} > `)} ${this.renderContent()} ${(0, _conditionalTag.default)(` </td> `)} `; } }]); return MjNavbarLink; }(_mjmlCore.BodyComponent); exports.default = MjNavbarLink; (0, _defineProperty2.default)(MjNavbarLink, "componentName", 'mj-navbar-link'); (0, _defineProperty2.default)(MjNavbarLink, "endingTag", true); (0, _defineProperty2.default)(MjNavbarLink, "allowedAttributes", { color: 'color', 'font-family': 'string', 'font-size': 'unit(px)', 'font-style': 'string', 'font-weight': 'string', href: 'string', name: 'string', target: 'string', rel: 'string', 'letter-spacing': 'unitWithNegative(px,em)', 'line-height': 'unit(px,%,)', 'padding-bottom': 'unit(px,%)', 'padding-left': 'unit(px,%)', 'padding-right': 'unit(px,%)', 'padding-top': 'unit(px,%)', padding: 'unit(px,%){1,4}', 'text-decoration': 'string', 'text-transform': 'string' }); (0, _defineProperty2.default)(MjNavbarLink, "defaultAttributes", { color: '#000000', 'font-family': 'Ubuntu, Helvetica, Arial, sans-serif', 'font-size': '13px', 'font-weight': 'normal', 'line-height': '22px', padding: '15px 10px', target: '_blank', 'text-decoration': 'none', 'text-transform': 'uppercase' }); module.exports = exports.default;