FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
cjs
Edit File: sc-form-row.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8acc3c89.js'); const scFormRowCss = ".form-row{display:flex;align-items:flex-start;justify-content:space-between;gap:calc(var(--sc-form-row-spacing, 0.75em) * 2.5)}::slotted(*){flex:1;width:0}"; const ScFormRowStyle0 = scFormRowCss; const ScFormRow = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.width = undefined; } componentDidLoad() { if ('ResizeObserver' in window) { this.observer = new window.ResizeObserver(entries => { this.width = entries === null || entries === void 0 ? void 0 : entries[0].contentRect.width; }); this.observer.observe(this.el); } } render() { return (index.h("div", { key: '481897829415787fb75adbb251272b0cf28438e3', part: "base", class: { 'form-row': true, 'breakpoint-sm': this.width < 384, 'breakpoint-md': this.width >= 384 && this.width < 576, 'breakpoint-lg': this.width >= 576 && this.width < 768, 'breakpoint-xl': this.width >= 768, } }, index.h("slot", { key: 'e4304a7a74bcccb89561e8dcb5ff0a2a36de93c9' }))); } get el() { return index.getElement(this); } }; ScFormRow.style = ScFormRowStyle0; exports.sc_form_row = ScFormRow; //# sourceMappingURL=sc-form-row.cjs.entry.js.map
Save
Back