@wordpress/block-library
Version:
Block library for the WordPress editor.
63 lines (62 loc) • 1.63 kB
JavaScript
// packages/block-library/src/tabs/index.js
import { __, sprintf } from "@wordpress/i18n";
import { tabs as icon } from "@wordpress/icons";
import initBlock from "../utils/init-block.mjs";
import edit from "./edit.mjs";
import save from "./save.mjs";
import metadata from "./block.json";
var { name } = metadata;
var settings = {
icon,
example: {
innerBlocks: [
{
name: "core/tab-list",
innerBlocks: [
{
name: "core/tab",
attributes: { anchor: "tab-1-button" }
},
{
name: "core/tab",
attributes: { anchor: "tab-2-button" }
}
]
},
{
name: "core/tab-panels",
innerBlocks: [1, 2].map((index) => ({
name: "core/tab-panel",
attributes: {
anchor: `tab-${index}`,
label: sprintf(
/** translators: %s: tab index number */
__("Tab %s"),
index
)
},
innerBlocks: [
{
name: "core/paragraph",
attributes: {
content: __(
"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing."
)
}
}
]
}))
}
]
},
edit,
save
};
var init = () => initBlock({ name, metadata, settings });
export {
init,
metadata,
name,
settings
};
//# sourceMappingURL=index.mjs.map