@wordpress/edit-post
Version:
Edit Post module for WordPress.
28 lines (27 loc) • 860 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* WordPress dependencies
*/
import { useInstanceId } from '@wordpress/compose';
import { FormToggle } from '@wordpress/components';
import { __ } from '@wordpress/i18n';
export default function BlockManagerShowAll({
checked,
onChange
}) {
const instanceId = useInstanceId(BlockManagerShowAll);
const id = 'edit-post-manage-blocks-modal__show-all-' + instanceId;
return createElement("div", {
className: "edit-post-manage-blocks-modal__show-all"
}, createElement("label", {
htmlFor: id,
className: "edit-post-manage-blocks-modal__show-all-label"
},
/* translators: Checkbox toggle label */
__('Show section')), createElement(FormToggle, {
id: id,
checked: checked,
onChange: event => onChange(event.target.checked)
}));
}
//# sourceMappingURL=show-all.js.map