UNPKG

@wordpress/block-library

Version:
123 lines (122 loc) 3.05 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: 3, 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: "rich-text", source: "rich-text", selector: "pre", __unstablePreserveWhiteSpace: true, role: "content" }, textAlign: { type: "string" } }, supports: { anchor: true, background: { backgroundImage: true, backgroundSize: true, __experimentalDefaultControls: { backgroundImage: true } }, color: { gradients: true, link: true, __experimentalDefaultControls: { background: true, text: true } }, dimensions: { minHeight: true, __experimentalDefaultControls: { minHeight: false } }, typography: { fontSize: true, __experimentalFontFamily: true, lineHeight: true, __experimentalFontStyle: true, __experimentalFontWeight: true, __experimentalLetterSpacing: true, __experimentalTextTransform: true, __experimentalTextDecoration: true, __experimentalWritingMode: true, __experimentalDefaultControls: { fontSize: true } }, spacing: { margin: true, padding: true, __experimentalDefaultControls: { margin: false, padding: false } }, __experimentalBorder: { radius: true, width: true, color: true, style: true }, interactivity: { clientNavigation: 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 + '\n\n' + attributesToMerge.content }; }, edit, save }; export const init = () => initBlock({ name, metadata, settings }); //# sourceMappingURL=index.js.map