@wordpress/block-library
Version:
Block library for the WordPress editor.
44 lines (43 loc) • 800 B
JavaScript
// packages/block-library/src/query-title/deprecated.js
import migrateFontFamily from "../utils/migrate-font-family";
var v1 = {
attributes: {
type: {
type: "string"
},
textAlign: {
type: "string"
},
level: {
type: "number",
default: 1
}
},
supports: {
align: ["wide", "full"],
html: false,
color: {
gradients: true
},
spacing: {
margin: true
},
typography: {
fontSize: true,
lineHeight: true,
__experimentalFontFamily: true
}
},
save() {
return null;
},
migrate: migrateFontFamily,
isEligible({ style }) {
return style?.typography?.fontFamily;
}
};
var deprecated_default = [v1];
export {
deprecated_default as default
};
//# sourceMappingURL=deprecated.js.map