UNPKG

@wordpress/block-library

Version:
52 lines (50 loc) 2.04 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/terms-query/edit/inspector-controls/advanced-controls.js var advanced_controls_exports = {}; __export(advanced_controls_exports, { default: () => AdvancedControls }); module.exports = __toCommonJS(advanced_controls_exports); var import_i18n = require("@wordpress/i18n"); var import_block_editor = require("@wordpress/block-editor"); var import_lock_unlock = require("../../../lock-unlock"); var import_jsx_runtime = require("react/jsx-runtime"); var { HTMLElementControl } = (0, import_lock_unlock.unlock)(import_block_editor.privateApis); function AdvancedControls({ TagName, setAttributes, clientId }) { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_block_editor.InspectorControls, { group: "advanced", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)( HTMLElementControl, { tagName: TagName, onChange: (value) => setAttributes({ tagName: value }), clientId, options: [ { label: (0, import_i18n.__)("Default (<div>)"), value: "div" }, { label: "<main>", value: "main" }, { label: "<section>", value: "section" }, { label: "<aside>", value: "aside" } ] } ) }); } //# sourceMappingURL=advanced-controls.js.map