UNPKG

@wordpress/block-editor

Version:
19 lines (17 loc) 426 B
/** * 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; }