UNPKG

@wordpress/block-library

Version:
64 lines (61 loc) 1.1 kB
/** * Internal dependencies */ import migrateTextAlign from '../utils/migrate-text-align'; const v1 = { attributes: { linkTarget: { type: 'string', default: '_self', }, textAlign: { type: 'string', }, }, usesContext: [ 'commentId' ], supports: { anchor: true, html: false, color: { link: true, gradients: true, text: false, }, spacing: { margin: true, padding: true, }, typography: { fontSize: true, lineHeight: true, __experimentalFontFamily: true, __experimentalFontWeight: true, __experimentalFontStyle: true, __experimentalTextTransform: true, __experimentalTextDecoration: true, __experimentalLetterSpacing: true, }, interactivity: { clientNavigation: true, }, __experimentalBorder: { radius: true, color: true, width: true, style: true, }, }, save() { return null; }, migrate: migrateTextAlign, isEligible( attributes ) { return ( !! attributes.textAlign || !! attributes.className?.match( /\bhas-text-align-(left|center|right)\b/ ) ); }, }; export default [ v1 ];