UNPKG

@wordpress/block-library

Version:
80 lines (79 loc) 1.88 kB
// packages/block-library/src/cover/index.js import { __ } from "@wordpress/i18n"; import { cover as icon } from "@wordpress/icons"; import { privateApis as blocksPrivateApis } from "@wordpress/blocks"; import initBlock from "../utils/init-block"; import deprecated from "./deprecated"; import edit from "./edit"; import metadata from "./block.json"; import save from "./save"; import transforms from "./transforms"; import variations from "./variations"; import { unlock } from "../lock-unlock"; var { fieldsKey, formKey } = unlock(blocksPrivateApis); var { name } = metadata; var settings = { icon, example: { attributes: { customOverlayColor: "#065174", dimRatio: 40, url: "https://s.w.org/images/core/5.3/Windbuchencom.jpg", style: { typography: { fontSize: 48 }, color: { text: "white" } } }, innerBlocks: [ { name: "core/paragraph", attributes: { content: `<strong>${__("Snow Patrol")}</strong>`, align: "center" } } ] }, transforms, save, edit, deprecated, variations }; if (window.__experimentalContentOnlyInspectorFields) { settings[fieldsKey] = [ { id: "background", label: __("Background"), type: "media", mapping: { type: "backgroundType", id: "id", url: "url", alt: "alt", featuredImage: "useFeaturedImage" }, args: { // TODO - How to support custom gradient? // Build it into Media, or use a custom control? allowedTypes: ["image", "video"], multiple: false } } ]; settings[formKey] = { fields: ["background"] }; } var init = () => initBlock({ name, metadata, settings }); export { init, metadata, name, settings }; //# sourceMappingURL=index.js.map