@wordpress/block-library
Version:
Block library for the WordPress editor.
50 lines (49 loc) • 1.22 kB
JavaScript
// packages/block-library/src/post-navigation-link/variations.js
import { __ } from "@wordpress/i18n";
import { next, previous } from "@wordpress/icons";
var variations = [
{
name: "post-previous",
title: __("Previous Post"),
description: __(
"Displays the post link that precedes the current post."
),
icon: previous,
attributes: { type: "previous" },
scope: ["inserter", "transform"],
example: {
attributes: {
label: __("Previous post"),
arrow: "arrow"
}
}
},
{
isDefault: true,
name: "post-next",
title: __("Next Post"),
description: __(
"Displays the post link that follows the current post."
),
icon: next,
attributes: { type: "next" },
scope: ["inserter", "transform"],
example: {
attributes: {
label: __("Next post"),
arrow: "arrow"
}
}
}
];
variations.forEach((variation) => {
if (variation.isActive) {
return;
}
variation.isActive = (blockAttributes, variationAttributes) => blockAttributes.type === variationAttributes.type;
});
var variations_default = variations;
export {
variations_default as default
};
//# sourceMappingURL=variations.js.map