wix-style-react
Version:
wix-style-react
13 lines • 494 B
JavaScript
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