UNPKG

@wordpress/block-library

Version:
50 lines (47 loc) 875 B
/** * Internal dependencies */ import migrateFontFamily from '../utils/migrate-font-family'; const v1 = { attributes: { format: { type: 'string', }, isLink: { type: 'boolean', default: false, }, }, supports: { html: false, color: { gradients: true, link: true, }, typography: { fontSize: true, lineHeight: true, __experimentalFontFamily: true, __experimentalFontWeight: true, __experimentalFontStyle: true, __experimentalTextTransform: true, __experimentalLetterSpacing: true, }, }, save() { return null; }, migrate: migrateFontFamily, isEligible( { style } ) { return style?.typography?.fontFamily; }, }; /** * New deprecations need to be placed first * for them to have higher priority. * * Old deprecations may need to be updated as well. * * See block-deprecation.md */ export default [ v1 ];