FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
cjs
Edit File: sc-product-quantity.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8acc3c89.js'); const watchers = require('./watchers-db03ec4e.js'); const quantity = require('./quantity-bff7f892.js'); require('./index-bcdafe6e.js'); require('./google-03835677.js'); require('./currency-71fce0f0.js'); require('./google-59d23803.js'); require('./utils-2e91d46c.js'); require('./util-b877b2bd.js'); require('./index-fb76df07.js'); const scProductQuantityCss = ":host{display:block}"; const ScProductQuantityStyle0 = scProductQuantityCss; let id = 0; const ScProductQuantity = class { constructor(hostRef) { index.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 = quantity.getMaxStockQuantity((_a = watchers.state[this.productId]) === null || _a === void 0 ? void 0 : _a.product, (_b = watchers.state[this.productId]) === null || _b === void 0 ? void 0 : _b.selectedVariant); return (index.h(index.Host, { key: 'd7b8eaa6f51daae0171e41153ad652b56761756a' }, index.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 }, index.h("sc-quantity-select", { key: '46b47dabcfc1bfe15adfe10516c386f816e16a22', size: this.size, quantity: Math.max(((_d = (_c = watchers.state[this.productId]) === null || _c === void 0 ? void 0 : _c.selectedPrice) === null || _d === void 0 ? void 0 : _d.ad_hoc) ? 1 : (_e = watchers.state[this.productId]) === null || _e === void 0 ? void 0 : _e.quantity, 1), disabled: (_g = (_f = watchers.state[this.productId]) === null || _f === void 0 ? void 0 : _f.selectedPrice) === null || _g === void 0 ? void 0 : _g.ad_hoc, onScInput: e => watchers.setProduct(this.productId, { quantity: e.detail }), ...(!!maxStockQuantity ? { max: maxStockQuantity } : {}) })))); } }; ScProductQuantity.style = ScProductQuantityStyle0; exports.sc_product_quantity = ScProductQuantity; //# sourceMappingURL=sc-product-quantity.cjs.entry.js.map
Save
Back