wix-style-react
Version:
wix-style-react
12 lines • 503 B
JavaScript
import { baseModalLayoutDriverFactory } from '../BaseModalLayout/BaseModalLayout.uni.driver';
export const customModalLayoutDriverFactory = (base, body) => {
return {
...baseModalLayoutDriverFactory(base, body),
/**
* Checks whether the modal content has padding
* @returns {Promise<boolean>}
* */
hasContentPadding: async () => (await base.attr('data-contentpadding')) === 'true',
};
};
//# sourceMappingURL=CustomModalLayout.uni.driver.js.map