@wordpress/block-editor
Version:
19 lines (18 loc) • 463 B
JavaScript
/**
* WordPress dependencies
*/
import deprecated from '@wordpress/deprecated';
/**
* Scrolls the multi block selection end into view if not in view already. This
* is important to do after selection by keyboard.
*
* @deprecated
*/
export function MultiSelectScrollIntoView() {
deprecated('wp.blockEditor.MultiSelectScrollIntoView', {
hint: 'This behaviour is now built-in.',
since: '5.8'
});
return null;
}
//# sourceMappingURL=index.js.map