UNPKG

wix-style-react

Version:
13 lines 494 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), }; }; //# sourceMappingURL=Table.private.driver.js.map