FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
esm
Edit File: sc-product-quantity.entry.js
import { r as registerInstance, h, H as Host } from './index-745b6bec.js'; import { s as state, b as setProduct } from './watchers-fbf07f32.js'; import { g as getMaxStockQuantity } from './quantity-1f39f750.js'; import './index-06061d4e.js'; import './google-dd89f242.js'; import './currency-a0c9bff4.js'; import './google-a86aa761.js'; import './utils-cd1431df.js'; import './util-50af2a83.js'; import './index-c5a96d53.js'; const scProductQuantityCss = ":host{display:block}"; const ScProductQuantityStyle0 = scProductQuantityCss; let id = 0; const ScProductQuantity = class { constructor(hostRef) { registerInstance(this, hostRef); this.inputId = `sc-quantity-${++id}`; this.helpId = `sc-quantity-help-text-${id}`; this.labelId = `sc-quantity-label-${id}`; this.size = 'medium'; this.name = undefined; this.errors = undefined; this.showLabel = true; this.label = undefined; this.required = false; this.help = undefined; this.productId = undefined; } render() { var _a, _b, _c, _d, _e, _f, _g; const maxStockQuantity = getMaxStockQuantity((_a = state[this.productId]) === null || _a === void 0 ? void 0 : _a.product, (_b = state[this.productId]) === null || _b === void 0 ? void 0 : _b.selectedVariant); return (h(Host, { key: 'd7b8eaa6f51daae0171e41153ad652b56761756a' }, h("sc-form-control", { key: '2a36b259b7c8c97dc53f92a1d78fda3fd90a6a3f', exportparts: "label, help-text, form-control", size: this.size, required: this.required, label: this.label, showLabel: this.showLabel, help: this.help, inputId: this.inputId, helpId: this.helpId, labelId: this.labelId, name: this.name }, h("sc-quantity-select", { key: '46b47dabcfc1bfe15adfe10516c386f816e16a22', size: this.size, quantity: Math.max(((_d = (_c = state[this.productId]) === null || _c === void 0 ? void 0 : _c.selectedPrice) === null || _d === void 0 ? void 0 : _d.ad_hoc) ? 1 : (_e = state[this.productId]) === null || _e === void 0 ? void 0 : _e.quantity, 1), disabled: (_g = (_f = state[this.productId]) === null || _f === void 0 ? void 0 : _f.selectedPrice) === null || _g === void 0 ? void 0 : _g.ad_hoc, onScInput: e => setProduct(this.productId, { quantity: e.detail }), ...(!!maxStockQuantity ? { max: maxStockQuantity } : {}) })))); } }; ScProductQuantity.style = ScProductQuantityStyle0; export { ScProductQuantity as sc_product_quantity }; //# sourceMappingURL=sc-product-quantity.entry.js.map
Save
Back