@wordpress/block-library
Version:
Block library for the WordPress editor.
113 lines (112 loc) • 2.26 kB
JavaScript
// packages/block-library/src/query-title/deprecated.js
import migrateFontFamily from "../utils/migrate-font-family.mjs";
import migrateTextAlign from "../utils/migrate-text-align.mjs";
var v2 = {
attributes: {
type: {
type: "string"
},
textAlign: {
type: "string"
},
level: {
type: "number",
default: 1
},
levelOptions: {
type: "array"
}
},
supports: {
anchor: true,
align: ["wide", "full"],
html: false,
color: {
gradients: true,
__experimentalDefaultControls: {
background: true,
text: true
}
},
spacing: {
padding: true,
margin: true
},
typography: {
fontSize: true,
lineHeight: true,
__experimentalFontFamily: true,
__experimentalTextTransform: true,
__experimentalTextDecoration: true,
__experimentalFontStyle: true,
__experimentalFontWeight: true,
__experimentalLetterSpacing: true,
__experimentalDefaultControls: {
fontSize: true
}
},
interactivity: {
clientNavigation: true
},
__experimentalBorder: {
radius: true,
color: true,
width: true,
style: true,
__experimentalDefaultControls: {
radius: true,
color: true,
width: true,
style: true
}
}
},
migrate: migrateTextAlign,
isEligible(attributes) {
return !!attributes.textAlign || !!attributes.className?.match(
/\bhas-text-align-(left|center|right)\b/
);
},
save: () => null
};
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 = [v2, v1];
export {
deprecated_default as default
};
//# sourceMappingURL=deprecated.mjs.map