UNPKG

@wordpress/block-editor

Version:
18 lines (17 loc) 445 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.' }); return null; } //# sourceMappingURL=index.js.map