UNPKG

@wordpress/block-library

Version:
51 lines (49 loc) 2.19 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // packages/block-library/src/tabs-menu-item/save.js var save_exports = {}; __export(save_exports, { default: () => save }); module.exports = __toCommonJS(save_exports); var import_i18n = require("@wordpress/i18n"); var import_block_editor = require("@wordpress/block-editor"); var import_jsx_runtime = require("react/jsx-runtime"); function save({ attributes }) { const customColorStyles = {}; if (attributes.customActiveBackgroundColor) { customColorStyles["--custom-tab-active-color"] = attributes.customActiveBackgroundColor; } if (attributes.customActiveTextColor) { customColorStyles["--custom-tab-active-text-color"] = attributes.customActiveTextColor; } if (attributes.customHoverBackgroundColor) { customColorStyles["--custom-tab-hover-color"] = attributes.customHoverBackgroundColor; } if (attributes.customHoverTextColor) { customColorStyles["--custom-tab-hover-text-color"] = attributes.customHoverTextColor; } const blockProps = import_block_editor.useBlockProps.save({ className: "wp-block-tabs-menu-item__template", style: customColorStyles, hidden: true }); return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("a", { ...blockProps, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "screen-reader-text", children: (0, import_i18n.__)("Tab menu item") }) }); } //# sourceMappingURL=save.cjs.map