FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
cjs
Edit File: sc-form-control_2.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8acc3c89.js'); const pageAlign = require('./page-align-5a2ab493.js'); const formData = require('./form-data-0da9940f.js'); const scFormControlCss = ".form-control{font-family:var(--sc-font-sans);font-size:var(--sc-font-size-medium);font-weight:var(--sc-font-weight-normal);display:flex;flex-direction:column;gap:var(--sc-input-label-margin)}.form-control .form-control__label{display:none}.form-control .form-control__help-text{display:none}.form-control--has-label .form-control__label{display:inline-block;color:var(--sc-input-label-color);font-weight:var(--sc-input-label-font-weight);text-transform:var(--sc-input-label-text-transform, none);letter-spacing:var(--sc-input-label-letter-spacing, 0)}.form-control--has-label.form-control--small .form-control__label{font-size:var(--sc-input-label-font-size-small)}.form-control--has-label.form-control--medium .form-control__label{font-size:var(--sc-input-label-font-size-medium)}.form-control--has-label.form-control--large .form-control_label{font-size:var(--sc-input-label-font-size-large)}::slotted(.control--errors){margin-top:var(--sc-spacing-small);color:var(--sc-color-danger-500)}::slotted([slot=label-end]){float:right}.form-control--is-required .required{color:var(--sc-color-danger-500)}.form-control--has-help-text .form-control__help-text{display:block;color:var(--sc-input-help-text-color)}.form-control--has-help-text.form-control--small .form-control__help-text{font-size:var(--sc-input-help-text-font-size-small)}.form-control--has-help-text.form-control--medium .form-control__help-text{font-size:var(--sc-input-help-text-font-size-medium)}.form-control--has-help-text.form-control--large .form-control__help-text{font-size:var(--sc-input-help-text-font-size-large)}.form-control--has-error .form-control__error-text{display:block;color:var(--sc-input-error-text-color)}.form-control--has-error.form-control--small .form-control__error-text{font-size:var(--sc-input-error-text-font-size-small)}.form-control--has-error.form-control--medium .form-control__error-text{font-size:var(--sc-input-error-text-font-size-medium)}.form-control--has-error.form-control--large .form-control__error-text{font-size:var(--sc-input-error-text-font-size-large)}.form-control--has-error ::part(base){border-color:rgb(var(--sl-color-danger-500))}.form-control--is-rtl.form-control--has-label .form-control__label{text-align:right}"; const ScFormControlStyle0 = scFormControlCss; const ScFormControl = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.size = 'medium'; this.name = undefined; this.showLabel = true; this.label = undefined; this.labelId = undefined; this.inputId = undefined; this.required = false; this.help = undefined; this.helpId = undefined; } render() { return (index.h("div", { key: '24e43d2d6e2ba673265e023367aeb65701082390', part: "form-control", class: { 'form-control': true, 'form-control--small': this.size === 'small', 'form-control--medium': this.size === 'medium', 'form-control--large': this.size === 'large', 'form-control--has-label': !!this.label && this.showLabel, 'form-control--has-help-text': !!this.help, 'form-control--is-required': !!this.required, 'form-control--is-rtl': pageAlign.isRtl(), } }, index.h("label", { key: '1f115a25706725f3933321816751b859b17ee7aa', part: "label", id: this.labelId, class: "form-control__label", htmlFor: this.inputId, "aria-hidden": !!this.label ? 'false' : 'true' }, index.h("slot", { key: '653035aa670583a46d95d63420262a0fe10bec2e', name: "label" }, this.label), index.h("slot", { key: '53a1b86381e4a4d0ae1850af3660f1ca1191cf79', name: "label-end" }), !!this.required && (index.h("span", { key: '9270a60510aa7a9766387d035f780319d82c2486', "aria-hidden": "true", class: "required" }, ' ', "*")), index.h("sc-visually-hidden", { key: '7800575c5fd78f4482da12b4296d874a5fffa1a3' }, !!this.required ? wp.i18n.__('required', 'surecart') : '')), index.h("div", { key: 'c177fa0dc65c59100474674f8c2940ceaf23e10e', part: "input", class: "form-control__input" }, index.h("slot", { key: '183b9c2ec880dbfc6b0f04f93b0bdd42dc63939f' })), this.help && (index.h("div", { key: 'e8d8b2d777016f3a6ecebc338ba456714f988564', part: "help-text", id: this.helpId, class: "form-control__help-text" }, index.h("slot", { key: 'b0f80387affd157418d541fd3727b3ab253ef481', name: "help-text" }, this.help))))); } get el() { return index.getElement(this); } }; ScFormControl.style = ScFormControlStyle0; const scInputCss = ":host{--focus-ring:0 0 0 var(--sc-focus-ring-width) var(--sc-focus-ring-color-primary);display:block;position:relative}.input__control[type=number]{-moz-appearance:textfield}.input__control::-webkit-outer-spin-button,.input__control::-webkit-inner-spin-button{-webkit-appearance:none}.input{flex:1 1 auto;display:inline-flex;align-items:center;justify-content:start;position:relative;width:100%;box-sizing:border-box;font-family:var(--sc-input-font-family);font-weight:var(--sc-input-font-weight);letter-spacing:var(--sc-input-letter-spacing);background-color:var(--sc-input-background-color);border:solid 1px var(--sc-input-border-color, var(--sc-input-border));vertical-align:middle;box-shadow:var(--sc-input-box-shadow);transition:var(--sc-input-transition, var(--sc-transition-medium)) color, var(--sc-input-transition, var(--sc-transition-medium)) border, var(--sc-input-transition, var(--sc-transition-medium)) box-shadow;cursor:var(--sc-input-cursor, text)}.input:hover:not(.input--disabled){background-color:var(--sc-input-background-color-hover);border-color:var(--sc-input-border-color-hover);z-index:7}.input:hover:not(.input--disabled) .input__control{color:var(--sc-input-color-hover)}.input.input--focused:not(.input--disabled){background-color:var(--sc-input-background-color-focus);border-color:var(--sc-input-border-color-focus);box-shadow:var(--focus-ring);z-index:8}.input.input--focused:not(.input--disabled) .input__control{color:var(--sc-input-color-focus)}.input.input--disabled{background-color:var(--sc-input-background-color-disabled);border-color:var(--sc-input-border-color-disabled);opacity:0.5;cursor:not-allowed}.input.input--disabled .input__control{color:var(--sc-input-color-disabled)}.input.input--disabled .input__control::placeholder{color:var(--sc-input-placeholder-color-disabled)}.input__control{flex:1 1 auto;font-family:inherit;font-size:inherit;font-weight:inherit;min-width:0;height:100%;color:var(--sc-input-color);border:none;background:none;box-shadow:none;padding:0;margin:0;cursor:inherit;-webkit-appearance:none;box-sizing:border-box;width:100%}.input__control::-webkit-search-decoration,.input__control::-webkit-search-cancel-button,.input__control::-webkit-search-results-button,.input__control::-webkit-search-results-decoration{-webkit-appearance:none}.input__control:-webkit-autofill,.input__control:-webkit-autofill:hover,.input__control:-webkit-autofill:focus,.input__control:-webkit-autofill:active{box-shadow:0 0 0 var(--sc-input-height-large) var(--sc-input-background-color-hover) inset !important;-webkit-text-fill-color:var(--sc-input-color)}.input__control::placeholder{color:var(--sc-input-placeholder-color);user-select:none}.input__control:focus{outline:none}.input__prefix,.input__suffix{display:inline-flex;flex:0 0 auto;align-items:center;color:var(--sc-input-color);cursor:default}.input__prefix ::slotted(sc-icon),.input__suffix ::slotted(sc-icon){color:var(--sc-input-icon-color)}.input--small{border-radius:var(--sc-input-border-radius-small);font-size:var(--sc-input-font-size-small);height:var(--sc-input-height-small)}.input--small .input__control{height:calc(var(--sc-input-height-small) - var(--sc-input-border-width) * 2);padding:0 var(--sc-input-spacing-small)}.input--small .input__clear,.input--small .input__password-toggle{margin-right:var(--sc-input-spacing-small)}.input--small .input__prefix ::slotted(*){margin-left:var(--sc-input-spacing-small)}.input--small .input__suffix ::slotted(*){margin-right:var(--sc-input-spacing-small)}.input--small .input__suffix ::slotted(sc-dropdown){margin:0}.input--medium{border-radius:var(--sc-input-border-radius-medium);font-size:var(--sc-input-font-size-medium);height:var(--sc-input-height-medium)}.input--medium .input__control{height:calc(var(--sc-input-height-medium) - var(--sc-input-border-width) * 2);padding:0 var(--sc-input-spacing-medium)}.input--medium .input__clear,.input--medium .input__password-toggle{margin-right:var(--sc-input-spacing-medium)}.input--medium .input__prefix ::slotted(*){margin-left:var(--sc-input-spacing-medium) !important}.input--medium .input__suffix ::slotted(:not(sc-button[size=medium]):not(sc-button[size=small])){margin-right:var(--sc-input-spacing-medium) !important}.input--medium .input__suffix ::slotted(sc-tag),.input--medium .input__suffix ::slotted(sc-button[size=small]){line-height:1;margin-right:var(--sc-input-spacing-small) !important}.input--medium .input__suffix ::slotted(sc-dropdown){margin:3px}.input--large{border-radius:var(--sc-input-border-radius-large);font-size:var(--sc-input-font-size-large);height:var(--sc-input-height-large)}.input--large .input__control{height:calc(var(--sc-input-height-large) - var(--sc-input-border-width) * 2);padding:0 var(--sc-input-spacing-large)}.input--large .input__clear,.input--large .input__password-toggle{margin-right:var(--sc-input-spacing-large)}.input--large .input__prefix ::slotted(*){margin-left:var(--sc-input-spacing-large)}.input--large .input__suffix ::slotted(*){margin-right:var(--sc-input-spacing-large)}.input--large .input__suffix ::slotted(sc-dropdown){margin:3px}.input--pill.input--small{border-radius:var(--sc-input-height-small)}.input--pill.input--medium{border-radius:var(--sc-input-height-medium)}.input--pill.input--large{border-radius:var(--sc-input-height-large)}.input__clear,.input__password-toggle{display:inline-flex;align-items:center;font-size:inherit;color:var(--sc-input-icon-color);border:none;background:none;padding:0;transition:var(--sc-input-transition, var(--sc-transition-medium)) color;cursor:pointer}.input__clear:hover,.input__password-toggle:hover{color:var(--sc-input-icon-color-hover)}.input__clear:focus,.input__password-toggle:focus{outline:none}.input--empty .input__clear{visibility:hidden}.input--squared{border-radius:0}.input--squared-top{border-top-left-radius:0;border-top-right-radius:0}.input--squared-bottom{border-bottom-left-radius:0;border-bottom-right-radius:0}.input--squared-left{border-top-left-radius:0;border-bottom-left-radius:0}.input--squared-right{border-top-right-radius:0;border-bottom-right-radius:0}"; const ScInputStyle0 = scInputCss; let id = 0; const ScInput = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.scChange = index.createEvent(this, "scChange", 7); this.scClear = index.createEvent(this, "scClear", 7); this.scInput = index.createEvent(this, "scInput", 7); this.scFocus = index.createEvent(this, "scFocus", 7); this.scBlur = index.createEvent(this, "scBlur", 7); this.inputId = `input-${++id}`; this.helpId = `input-help-text-${id}`; this.labelId = `input-label-${id}`; this.squared = undefined; this.squaredBottom = undefined; this.squaredTop = undefined; this.squaredLeft = undefined; this.squaredRight = undefined; this.hidden = false; this.type = 'text'; this.size = 'medium'; this.name = undefined; this.value = ''; this.pill = false; this.label = undefined; this.showLabel = true; this.help = ''; this.clearable = false; this.togglePassword = false; this.placeholder = undefined; this.disabled = false; this.readonly = false; this.minlength = undefined; this.maxlength = undefined; this.min = undefined; this.max = undefined; this.step = undefined; this.pattern = undefined; this.customValidity = undefined; this.required = false; this.invalid = false; this.autocorrect = undefined; this.autocomplete = undefined; this.autofocus = undefined; this.spellcheck = undefined; this.inputmode = undefined; this.hasFocus = undefined; this.isPasswordVisible = false; } async reportValidity() { return this.input.reportValidity(); } /** Sets focus on the input. */ async triggerFocus(options) { return this.input.focus(options); } /** Sets a custom validation message. If `message` is not empty, the field will be considered invalid. */ async setCustomValidity(message) { this.input.setCustomValidity(message); this.invalid = !this.input.checkValidity(); } /** Removes focus from the input. */ async triggerBlur() { return this.input.blur(); } /** Prevent mouse scroll wheel from modifying input value */ handleWheel() { var _a; if (this.type === 'number') { (_a = this.input) === null || _a === void 0 ? void 0 : _a.blur(); } } /** Selects all the text in the input. */ select() { return this.input.select(); } handleBlur() { this.hasFocus = false; this.scBlur.emit(); } handleFocus() { this.hasFocus = true; this.scFocus.emit(); } handleChange() { this.value = this.input.value; this.scChange.emit(); } handleInput() { this.value = this.input.value; // Clear custom validity so browser can re-validate. this.input.setCustomValidity(''); this.scInput.emit(); } handleInvalid() { // Only show custom validity message for pattern mismatch, not for required/empty fields. if (this.customValidity && this.input.validity.patternMismatch) { this.input.setCustomValidity(this.customValidity); } else { // this is needed if the user switches from a country with a regex to one without. // we want to clear out the custom validity so it does not persist. this.input.setCustomValidity(''); } } handleClearClick(event) { this.value = ''; this.scClear.emit(); this.scInput.emit(); this.scChange.emit(); this.input.focus(); event.stopPropagation(); } handlePasswordToggle() { this.isPasswordVisible = !this.isPasswordVisible; } handleFocusChange() { setTimeout(() => { this.hasFocus && this.input ? this.input.focus() : this.input.blur(); }, 0); } handleValueChange() { if (this.input) { this.invalid = !this.input.checkValidity(); } } componentDidLoad() { this.formController = new formData.FormSubmitController(this.el).addFormData(); this.handleFocusChange(); } disconnectedCallback() { var _a; (_a = this.formController) === null || _a === void 0 ? void 0 : _a.removeFormData(); } render() { var _a; return (index.h(index.Host, { key: '0715e6f9e57ef6698e9809e78f22ca113e8048eb', hidden: this.hidden }, index.h("sc-form-control", { key: '6dbb2d9e7c84e6a5bc9e19aa155267b9e1d47e1d', 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("slot", { key: '958bb6e855f9715db52e8d6141c0b36d2b52eac0', name: "label-end", slot: "label-end" }), index.h("div", { key: 'fb9a297c934d8167ed007302c84738eb44ab85d0', part: "base", class: { 'input': true, // Sizes 'input--small': this.size === 'small', 'input--medium': this.size === 'medium', 'input--large': this.size === 'large', // States 'input--focused': this.hasFocus, 'input--invalid': this.invalid, 'input--disabled': this.disabled, 'input--squared': this.squared, 'input--squared-bottom': this.squaredBottom, 'input--squared-top': this.squaredTop, 'input--squared-left': this.squaredLeft, 'input--squared-right': this.squaredRight, } }, index.h("span", { key: '818169159332aa5392844e91b47349c2bba3eee0', part: "prefix", class: "input__prefix" }, index.h("slot", { key: 'd702a16101d86416f7e3505efa9351854fb6e5a4', name: "prefix" })), index.h("slot", { key: 'df082e052816aaff1ded8b61f152c455b4931654' }, index.h("input", { key: '34bc2b02d8cff5200b2729d8d5bdf2776f1225ae', part: "input", id: this.inputId, class: "input__control", ref: el => (this.input = el), type: this.type === 'password' && this.isPasswordVisible ? 'text' : this.type, name: this.name, disabled: this.disabled, readonly: this.readonly, required: this.required, placeholder: this.placeholder, minlength: this.minlength, maxlength: this.maxlength, min: this.min, max: this.max, step: this.step, // TODO: Test These below autocomplete: this.autocomplete, autocorrect: this.autocorrect, autofocus: this.autofocus, spellcheck: this.spellcheck, pattern: this.pattern, inputmode: this.inputmode, "aria-label": this.label, "aria-labelledby": this.labelId, "aria-invalid": this.invalid ? true : false, value: this.value, onChange: () => this.handleChange(), onInput: () => this.handleInput(), onInvalid: () => this.handleInvalid(), onFocus: () => this.handleFocus(), onBlur: () => this.handleBlur(), onKeyDown: e => { // Only stop propagation on keys that are not handled by the browser if (!['Enter', 'ArrowRight', 'ArrowLeft', 'ArrowUp', 'ArrowDown', 'Tab'].includes(e.key)) { e.stopPropagation(); } } })), index.h("span", { key: '632484a0a9ac1ab4ab19221d83b402a2ae0c782c', part: "suffix", class: "input__suffix" }, index.h("slot", { key: '4c2c334b0406a66e9684c3fde32931aee6c0f5fb', name: "suffix" })), this.clearable && ((_a = this.value) === null || _a === void 0 ? void 0 : _a.length) > 0 && (index.h("button", { key: '713c51cfef3f95b83460ed9fccd683a70a7aa449', part: "clear-button", class: "input__clear", type: "button", onClick: e => this.handleClearClick(e), tabindex: "-1" }, index.h("slot", { key: '4176ced3a6b6a0a0430b1caa3251c03b0fbeba69', name: "clear-icon" }, index.h("svg", { key: 'b2d23c95dab0bc35e0223b60375612221c1f29c6', xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round", class: "feather feather-x" }, index.h("line", { key: '41d2e74851ad317dddfc42e748fc6e157c43a700', x1: "18", y1: "6", x2: "6", y2: "18" }), index.h("line", { key: '221f3eed3ac053b2c261d7703dbc0a6e410553fe', x1: "6", y1: "6", x2: "18", y2: "18" }))))))))); } get el() { return index.getElement(this); } static get watchers() { return { "hasFocus": ["handleFocusChange"], "value": ["handleValueChange"] }; } }; ScInput.style = ScInputStyle0; exports.sc_form_control = ScFormControl; exports.sc_input = ScInput; //# sourceMappingURL=sc-form-control_2.cjs.entry.js.map
Save
Back