UNPKG

@wordpress/block-library

Version:
101 lines (97 loc) 2.52 kB
/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; import { verse as icon } from '@wordpress/icons'; /** * Internal dependencies */ import initBlock from '../utils/init-block'; import deprecated from './deprecated'; import edit from './edit'; const metadata = { $schema: "https://schemas.wp.org/trunk/block.json", apiVersion: 2, name: "core/verse", title: "Verse", category: "text", description: "Insert poetry. Use special spacing formats. Or quote song lyrics.", keywords: ["poetry", "poem"], textdomain: "default", attributes: { content: { type: "string", source: "html", selector: "pre", "default": "", __unstablePreserveWhiteSpace: true, __experimentalRole: "content" }, textAlign: { type: "string" } }, supports: { anchor: true, color: { gradients: true, link: true, __experimentalDefaultControls: { background: true, text: true } }, typography: { fontSize: true, __experimentalFontFamily: true, lineHeight: true, __experimentalFontStyle: true, __experimentalFontWeight: true, __experimentalLetterSpacing: true, __experimentalTextTransform: true, __experimentalTextDecoration: true, __experimentalDefaultControls: { fontSize: true, fontAppearance: true } }, spacing: { margin: true, padding: true } }, style: "wp-block-verse", editorStyle: "wp-block-verse-editor" }; import save from './save'; import transforms from './transforms'; const { name } = metadata; export { metadata, name }; export const settings = { icon, example: { attributes: { /* eslint-disable @wordpress/i18n-no-collapsible-whitespace */ // translators: Sample content for the Verse block. Can be replaced with a more locale-adequate work. content: __('WHAT was he doing, the great god Pan,\n Down in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.') /* eslint-enable @wordpress/i18n-no-collapsible-whitespace */ } }, transforms, deprecated, merge(attributes, attributesToMerge) { return { content: attributes.content + attributesToMerge.content }; }, edit, save }; export const init = () => initBlock({ name, metadata, settings }); //# sourceMappingURL=index.js.map