@gechiui/block-editor
Version:
18 lines (16 loc) • 406 B
JavaScript
/**
* GeChiUI dependencies
*/
import deprecated from '@gechiui/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( 'gc.blockEditor.MultiSelectScrollIntoView', {
hint: 'This behaviour is now built-in.',
} );
return null;
}