@wordpress/dom
Version:
DOM utilities module for WordPress.
16 lines (13 loc) • 353 B
JavaScript
/**
* Internal dependencies
*/
import * as focusable from './focusable';
import * as tabbable from './tabbable';
/**
* Object grouping `focusable` and `tabbable` utils
* under the keys with the same name.
*/
export const focus = { focusable, tabbable };
export * from './dom';
export * from './phrasing-content';
export * from './data-transfer';