UNPKG

wix-style-react

Version:
15 lines (13 loc) 423 B
import tableDriverFactory from './Table.driver'; export const tablePrivateDriverFactory = args => { const publicDriver = tableDriverFactory(args); return { ...publicDriver, exists: () => !!publicDriver.element, getInnerHtml: () => publicDriver.element.innerHTML, scrollHorizontallyTo: x => publicDriver.element .querySelector('[data-hook="table-content"]') .scroll(x, 0), }; };