primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
1 lines • 60.6 kB
Source Map (JSON)
{"version":3,"file":"index.mjs","sources":["../../src/inputmask/BaseInputMask.vue","../../src/inputmask/InputMask.vue","../../src/inputmask/InputMask.vue?vue&type=template&id=574dd81c&lang.js"],"sourcesContent":["<script>\nimport BaseInput from '@primevue/core/baseinput';\nimport InputMaskStyle from 'primevue/inputmask/style';\n\nexport default {\n name: 'BaseInputMask',\n extends: BaseInput,\n props: {\n slotChar: {\n type: String,\n default: '_'\n },\n id: {\n type: String,\n default: null\n },\n class: {\n type: [String, Object],\n default: null\n },\n mask: {\n type: String,\n default: null\n },\n placeholder: {\n type: String,\n default: null\n },\n autoClear: {\n type: Boolean,\n default: true\n },\n unmask: {\n type: Boolean,\n default: false\n },\n readonly: {\n type: Boolean,\n default: false\n }\n },\n style: InputMaskStyle,\n provide() {\n return {\n $pcInputMask: this,\n $parentInstance: this\n };\n }\n};\n</script>\n","<template>\n <InputText\n :id=\"id\"\n :value=\"currentVal\"\n :class=\"inputClass\"\n :readonly=\"readonly\"\n :disabled=\"disabled\"\n :invalid=\"invalid\"\n :size=\"size\"\n :name=\"name\"\n :variant=\"variant\"\n :placeholder=\"placeholder\"\n :fluid=\"$fluid\"\n :unstyled=\"unstyled\"\n @input=\"onInput\"\n @compositionend=\"onInput\"\n @focus=\"onFocus\"\n @blur=\"onBlur\"\n @keydown=\"onKeyDown\"\n @keypress=\"onKeyPress\"\n @paste=\"onPaste\"\n :pt=\"rootPTOptions\"\n />\n</template>\n\n<script>\nimport { getUserAgent } from '@primeuix/utils/dom';\nimport InputText from 'primevue/inputtext';\nimport { mergeProps } from 'vue';\nimport BaseInputMask from './BaseInputMask.vue';\n\nexport default {\n name: 'InputMask',\n extends: BaseInputMask,\n inheritAttrs: false,\n emits: ['focus', 'blur', 'keydown', 'complete', 'keypress', 'paste'],\n inject: {\n $pcFluid: { default: null }\n },\n data() {\n return {\n currentVal: ''\n };\n },\n watch: {\n mask(newMask, oldMask) {\n if (oldMask !== newMask) {\n this.initMask();\n }\n },\n disabled(newValue, oldValue) {\n if (newValue !== oldValue) {\n this.updateValue();\n }\n }\n },\n mounted() {\n this.initMask();\n },\n updated() {\n if (this.isValueUpdated()) {\n this.updateValue();\n }\n },\n methods: {\n onInput(event) {\n // Check if the event is part of a text composition process (e.g., for Asian languages).\n // If event.isComposing is true, it means the user is still composing text and the input is not finalized.\n if (!event.isComposing) {\n if (this.androidChrome) this.handleAndroidInput(event);\n else this.handleInputChange(event);\n\n this.updateModelValue(event.target.value);\n }\n },\n onFocus(event) {\n if (this.readonly) {\n return;\n }\n\n this.focus = true;\n this.focusText = this.$el.value;\n\n if (!this.$el.value || this.$el.value === this.defaultBuffer) {\n requestAnimationFrame(() => {\n if (this.$el === document.activeElement) {\n this.caret(0, 0);\n }\n });\n } else {\n let pos = this.checkVal();\n\n this.caretTimeoutId = setTimeout(() => {\n if (this.$el !== document.activeElement) {\n return;\n }\n\n this.writeBuffer();\n\n if (pos === this.mask.replace('?', '').length) {\n this.caret(0, pos);\n } else {\n this.caret(pos);\n }\n }, 10);\n }\n\n this.$emit('focus', event);\n },\n onBlur(event) {\n this.focus = false;\n this.checkVal();\n this.updateModelValue(event.target.value);\n\n if (this.$el.value !== this.focusText) {\n let e = document.createEvent('HTMLEvents');\n\n e.initEvent('change', true, false);\n this.$el.dispatchEvent(e);\n }\n\n this.$emit('blur', event);\n this.formField.onBlur?.(event);\n },\n onKeyDown(event) {\n if (this.readonly) {\n return;\n }\n\n let k = event.code,\n pos,\n begin,\n end;\n let iPhone = /iphone/i.test(getUserAgent());\n\n this.oldVal = this.$el.value;\n\n //backspace, delete, and escape get special treatment\n if (k === 'Backspace' || k === 'Delete' || (iPhone && k === 'Escape')) {\n pos = this.caret();\n begin = pos.begin;\n end = pos.end;\n\n if (end - begin === 0) {\n begin = k !== 'Delete' ? this.seekPrev(begin) : (end = this.seekNext(begin - 1));\n end = k === 'Delete' ? this.seekNext(end) : end;\n }\n\n this.clearBuffer(begin, end);\n this.shiftL(begin, end - 1);\n this.updateModelValue(event.target.value);\n\n event.preventDefault();\n } else if (k === 'Enter') {\n // enter\n this.$el.blur();\n this.updateModelValue(event.target.value);\n } else if (k === 'Escape') {\n // escape\n this.$el.value = this.focusText;\n this.caret(0, this.checkVal());\n this.updateModelValue(event.target.value);\n event.preventDefault();\n }\n\n this.$emit('keydown', event);\n },\n onKeyPress(event) {\n if (this.readonly) {\n return;\n }\n\n var k = event.code,\n pos = this.caret(),\n p,\n c,\n next,\n completed;\n\n if (event.ctrlKey || event.altKey || event.metaKey || event.shiftKey || event.key === 'CapsLock' || event.key === 'Escape' || event.key === 'Tab') {\n //Ignore\n return;\n } else if (k && k !== 'Enter') {\n if (pos.end - pos.begin !== 0) {\n this.clearBuffer(pos.begin, pos.end);\n this.shiftL(pos.begin, pos.end - 1);\n }\n\n p = this.seekNext(pos.begin - 1);\n\n if (p < this.len) {\n c = event.key;\n\n if (this.tests[p].test(c)) {\n this.shiftR(p);\n\n this.buffer[p] = c;\n this.writeBuffer();\n next = this.seekNext(p);\n\n if (/android/i.test(getUserAgent())) {\n //Path for CSP Violation on FireFox OS 1.1\n let proxy = () => {\n this.caret(next);\n };\n\n setTimeout(proxy, 0);\n } else {\n this.caret(next);\n }\n\n if (pos.begin <= this.lastRequiredNonMaskPos) {\n completed = this.isCompleted();\n }\n }\n }\n\n event.preventDefault();\n }\n\n this.updateModelValue(event.target.value);\n\n if (completed) {\n this.$emit('complete', event);\n }\n\n this.$emit('keypress', event);\n },\n onPaste(event) {\n this.handleInputChange(event);\n\n this.$emit('paste', event);\n },\n caret(first, last) {\n let range, begin, end;\n\n if (!this.$el.offsetParent || this.$el !== document.activeElement) {\n return;\n }\n\n if (typeof first === 'number') {\n begin = first;\n end = typeof last === 'number' ? last : begin;\n\n if (this.$el.setSelectionRange) {\n this.$el.setSelectionRange(begin, end);\n } else if (this.$el['createTextRange']) {\n range = this.$el['createTextRange']();\n range.collapse(true);\n range.moveEnd('character', end);\n range.moveStart('character', begin);\n range.select();\n }\n } else {\n if (this.$el.setSelectionRange) {\n begin = this.$el.selectionStart;\n end = this.$el.selectionEnd;\n } else if (document['selection'] && document['selection'].createRange) {\n range = document['selection'].createRange();\n begin = 0 - range.duplicate().moveStart('character', -100000);\n end = begin + range.text.length;\n }\n\n return { begin: begin, end: end };\n }\n },\n isCompleted() {\n for (let i = this.firstNonMaskPos; i <= this.lastRequiredNonMaskPos; i++) {\n if (this.tests[i] && this.buffer[i] === this.getPlaceholder(i)) {\n return false;\n }\n }\n\n return true;\n },\n getPlaceholder(i) {\n if (i < this.slotChar.length) {\n return this.slotChar.charAt(i);\n }\n\n return this.slotChar.charAt(0);\n },\n seekNext(pos) {\n while (++pos < this.len && !this.tests[pos]);\n\n return pos;\n },\n seekPrev(pos) {\n while (--pos >= 0 && !this.tests[pos]);\n\n return pos;\n },\n shiftL(begin, end) {\n let i, j;\n\n if (begin < 0) {\n return;\n }\n\n for (i = begin, j = this.seekNext(end); i < this.len; i++) {\n if (this.tests[i]) {\n if (j < this.len && this.tests[i].test(this.buffer[j])) {\n this.buffer[i] = this.buffer[j];\n this.buffer[j] = this.getPlaceholder(j);\n } else {\n break;\n }\n\n j = this.seekNext(j);\n }\n }\n\n this.writeBuffer();\n this.caret(Math.max(this.firstNonMaskPos, begin));\n },\n shiftR(pos) {\n let i, c, j, t;\n\n for (i = pos, c = this.getPlaceholder(pos); i < this.len; i++) {\n if (this.tests[i]) {\n j = this.seekNext(i);\n t = this.buffer[i];\n this.buffer[i] = c;\n\n if (j < this.len && this.tests[j].test(t)) {\n c = t;\n } else {\n break;\n }\n }\n }\n },\n handleAndroidInput(event) {\n var curVal = this.$el.value;\n var pos = this.caret();\n\n if (this.oldVal && this.oldVal.length && this.oldVal.length > curVal.length) {\n // a deletion or backspace happened\n this.checkVal(true);\n while (pos.begin > 0 && !this.tests[pos.begin - 1]) pos.begin--;\n\n if (pos.begin === 0) {\n while (pos.begin < this.firstNonMaskPos && !this.tests[pos.begin]) pos.begin++;\n }\n\n this.caret(pos.begin, pos.begin);\n } else {\n this.checkVal(true);\n while (pos.begin < this.len && !this.tests[pos.begin]) pos.begin++;\n\n this.caret(pos.begin, pos.begin);\n }\n\n if (this.isCompleted()) {\n this.$emit('complete', event);\n }\n },\n clearBuffer(start, end) {\n let i;\n\n for (i = start; i < end && i < this.len; i++) {\n if (this.tests[i]) {\n this.buffer[i] = this.getPlaceholder(i);\n }\n }\n },\n writeBuffer() {\n this.$el.value = this.buffer.join('');\n },\n checkVal(allow) {\n this.isValueChecked = true;\n //try to place characters where they belong\n let test = this.$el.value,\n lastMatch = -1,\n i,\n c,\n pos;\n\n for (i = 0, pos = 0; i < this.len; i++) {\n if (this.tests[i]) {\n this.buffer[i] = this.getPlaceholder(i);\n\n while (pos++ < test.length) {\n c = test.charAt(pos - 1);\n\n if (this.tests[i].test(c)) {\n this.buffer[i] = c;\n lastMatch = i;\n break;\n }\n }\n\n if (pos > test.length) {\n this.clearBuffer(i + 1, this.len);\n break;\n }\n } else {\n if (this.buffer[i] === test.charAt(pos)) {\n pos++;\n }\n\n if (i < this.partialPosition) {\n lastMatch = i;\n }\n }\n }\n\n if (allow) {\n this.writeBuffer();\n } else if (lastMatch + 1 < this.partialPosition) {\n if (this.autoClear || this.buffer.join('') === this.defaultBuffer) {\n // Invalid value. Remove it and replace it with the\n // mask, which is the default behavior.\n if (this.$el.value) this.$el.value = '';\n this.clearBuffer(0, this.len);\n } else {\n // Invalid value, but we opt to show the value to the\n // user and allow them to correct their mistake.\n this.writeBuffer();\n }\n } else {\n this.writeBuffer();\n this.$el.value = this.$el.value.substring(0, lastMatch + 1);\n }\n\n return this.partialPosition ? i : this.firstNonMaskPos;\n },\n handleInputChange(event) {\n const isPasteEvent = event.type === 'paste';\n\n if (this.readonly || isPasteEvent) {\n return;\n }\n\n var pos = this.checkVal(true);\n\n this.caret(pos);\n this.updateModelValue(event.target.value);\n\n if (this.isCompleted()) {\n this.$emit('complete', event);\n }\n },\n getUnmaskedValue() {\n let unmaskedBuffer = [];\n\n for (let i = 0; i < this.buffer.length; i++) {\n let c = this.buffer[i];\n\n if (this.tests[i] && c !== this.getPlaceholder(i)) {\n unmaskedBuffer.push(c);\n }\n }\n\n return unmaskedBuffer.join('');\n },\n unmaskValue(value) {\n let unmaskedBuffer = [];\n let thisbuffer = value.split('');\n\n for (let i = 0; i < thisbuffer.length; i++) {\n let c = thisbuffer[i];\n\n if (this.tests[i] && c !== this.getPlaceholder(i)) {\n unmaskedBuffer.push(c);\n }\n }\n\n return unmaskedBuffer.join('');\n },\n\n updateModelValue(value) {\n if (this.currentVal === value) return;\n const val = this.unmask ? this.unmaskValue(value) : value;\n\n this.currentVal = value;\n\n this.writeValue(this.defaultBuffer !== val ? val : '');\n },\n updateValue(updateModel = true) {\n if (this.$el) {\n if (this.d_value == null) {\n this.$el.value = '';\n updateModel && this.updateModelValue('');\n } else {\n this.$el.value = this.d_value;\n this.checkVal();\n\n setTimeout(() => {\n if (this.$el) {\n this.writeBuffer();\n this.checkVal();\n\n if (updateModel) this.updateModelValue(this.$el.value);\n }\n }, 10);\n }\n\n this.focusText = this.$el.value;\n }\n },\n initMask() {\n this.tests = [];\n this.partialPosition = this.mask.length;\n this.len = this.mask.length;\n this.firstNonMaskPos = null;\n this.defs = {\n 9: '[0-9]',\n a: '[A-Za-z]',\n '*': '[A-Za-z0-9]'\n };\n\n let ua = getUserAgent();\n\n this.androidChrome = /chrome/i.test(ua) && /android/i.test(ua);\n\n let maskTokens = this.mask.split('');\n\n for (let i = 0; i < maskTokens.length; i++) {\n let c = maskTokens[i];\n\n if (c === '?') {\n this.len--;\n this.partialPosition = i;\n } else if (this.defs[c]) {\n this.tests.push(new RegExp(this.defs[c]));\n\n if (this.firstNonMaskPos === null) {\n this.firstNonMaskPos = this.tests.length - 1;\n }\n\n if (i < this.partialPosition) {\n this.lastRequiredNonMaskPos = this.tests.length - 1;\n }\n } else {\n this.tests.push(null);\n }\n }\n\n this.buffer = [];\n\n for (let i = 0; i < maskTokens.length; i++) {\n let c = maskTokens[i];\n\n if (c !== '?') {\n if (this.defs[c]) this.buffer.push(this.getPlaceholder(i));\n else this.buffer.push(c);\n }\n }\n\n this.defaultBuffer = this.buffer.join('');\n this.updateValue(false);\n },\n isValueUpdated() {\n return this.unmask ? this.d_value != this.getUnmaskedValue() : this.defaultBuffer !== this.$el.value && this.$el.value !== this.d_value;\n }\n },\n computed: {\n inputClass() {\n return [this.cx('root'), this.class];\n },\n rootPTOptions() {\n return {\n root: mergeProps(this.ptm('pcInputText', this.ptmParams)['root'], this.ptmi('root', this.ptmParams))\n };\n },\n ptmParams() {\n return {\n context: {\n filled: this.$filled\n }\n };\n }\n },\n components: {\n InputText\n }\n};\n</script>\n","<template>\n <InputText\n :id=\"id\"\n :value=\"currentVal\"\n :class=\"inputClass\"\n :readonly=\"readonly\"\n :disabled=\"disabled\"\n :invalid=\"invalid\"\n :size=\"size\"\n :name=\"name\"\n :variant=\"variant\"\n :placeholder=\"placeholder\"\n :fluid=\"$fluid\"\n :unstyled=\"unstyled\"\n @input=\"onInput\"\n @compositionend=\"onInput\"\n @focus=\"onFocus\"\n @blur=\"onBlur\"\n @keydown=\"onKeyDown\"\n @keypress=\"onKeyPress\"\n @paste=\"onPaste\"\n :pt=\"rootPTOptions\"\n />\n</template>\n\n<script>\nimport { getUserAgent } from '@primeuix/utils/dom';\nimport InputText from 'primevue/inputtext';\nimport { mergeProps } from 'vue';\nimport BaseInputMask from './BaseInputMask.vue';\n\nexport default {\n name: 'InputMask',\n extends: BaseInputMask,\n inheritAttrs: false,\n emits: ['focus', 'blur', 'keydown', 'complete', 'keypress', 'paste'],\n inject: {\n $pcFluid: { default: null }\n },\n data() {\n return {\n currentVal: ''\n };\n },\n watch: {\n mask(newMask, oldMask) {\n if (oldMask !== newMask) {\n this.initMask();\n }\n },\n disabled(newValue, oldValue) {\n if (newValue !== oldValue) {\n this.updateValue();\n }\n }\n },\n mounted() {\n this.initMask();\n },\n updated() {\n if (this.isValueUpdated()) {\n this.updateValue();\n }\n },\n methods: {\n onInput(event) {\n // Check if the event is part of a text composition process (e.g., for Asian languages).\n // If event.isComposing is true, it means the user is still composing text and the input is not finalized.\n if (!event.isComposing) {\n if (this.androidChrome) this.handleAndroidInput(event);\n else this.handleInputChange(event);\n\n this.updateModelValue(event.target.value);\n }\n },\n onFocus(event) {\n if (this.readonly) {\n return;\n }\n\n this.focus = true;\n this.focusText = this.$el.value;\n\n if (!this.$el.value || this.$el.value === this.defaultBuffer) {\n requestAnimationFrame(() => {\n if (this.$el === document.activeElement) {\n this.caret(0, 0);\n }\n });\n } else {\n let pos = this.checkVal();\n\n this.caretTimeoutId = setTimeout(() => {\n if (this.$el !== document.activeElement) {\n return;\n }\n\n this.writeBuffer();\n\n if (pos === this.mask.replace('?', '').length) {\n this.caret(0, pos);\n } else {\n this.caret(pos);\n }\n }, 10);\n }\n\n this.$emit('focus', event);\n },\n onBlur(event) {\n this.focus = false;\n this.checkVal();\n this.updateModelValue(event.target.value);\n\n if (this.$el.value !== this.focusText) {\n let e = document.createEvent('HTMLEvents');\n\n e.initEvent('change', true, false);\n this.$el.dispatchEvent(e);\n }\n\n this.$emit('blur', event);\n this.formField.onBlur?.(event);\n },\n onKeyDown(event) {\n if (this.readonly) {\n return;\n }\n\n let k = event.code,\n pos,\n begin,\n end;\n let iPhone = /iphone/i.test(getUserAgent());\n\n this.oldVal = this.$el.value;\n\n //backspace, delete, and escape get special treatment\n if (k === 'Backspace' || k === 'Delete' || (iPhone && k === 'Escape')) {\n pos = this.caret();\n begin = pos.begin;\n end = pos.end;\n\n if (end - begin === 0) {\n begin = k !== 'Delete' ? this.seekPrev(begin) : (end = this.seekNext(begin - 1));\n end = k === 'Delete' ? this.seekNext(end) : end;\n }\n\n this.clearBuffer(begin, end);\n this.shiftL(begin, end - 1);\n this.updateModelValue(event.target.value);\n\n event.preventDefault();\n } else if (k === 'Enter') {\n // enter\n this.$el.blur();\n this.updateModelValue(event.target.value);\n } else if (k === 'Escape') {\n // escape\n this.$el.value = this.focusText;\n this.caret(0, this.checkVal());\n this.updateModelValue(event.target.value);\n event.preventDefault();\n }\n\n this.$emit('keydown', event);\n },\n onKeyPress(event) {\n if (this.readonly) {\n return;\n }\n\n var k = event.code,\n pos = this.caret(),\n p,\n c,\n next,\n completed;\n\n if (event.ctrlKey || event.altKey || event.metaKey || event.shiftKey || event.key === 'CapsLock' || event.key === 'Escape' || event.key === 'Tab') {\n //Ignore\n return;\n } else if (k && k !== 'Enter') {\n if (pos.end - pos.begin !== 0) {\n this.clearBuffer(pos.begin, pos.end);\n this.shiftL(pos.begin, pos.end - 1);\n }\n\n p = this.seekNext(pos.begin - 1);\n\n if (p < this.len) {\n c = event.key;\n\n if (this.tests[p].test(c)) {\n this.shiftR(p);\n\n this.buffer[p] = c;\n this.writeBuffer();\n next = this.seekNext(p);\n\n if (/android/i.test(getUserAgent())) {\n //Path for CSP Violation on FireFox OS 1.1\n let proxy = () => {\n this.caret(next);\n };\n\n setTimeout(proxy, 0);\n } else {\n this.caret(next);\n }\n\n if (pos.begin <= this.lastRequiredNonMaskPos) {\n completed = this.isCompleted();\n }\n }\n }\n\n event.preventDefault();\n }\n\n this.updateModelValue(event.target.value);\n\n if (completed) {\n this.$emit('complete', event);\n }\n\n this.$emit('keypress', event);\n },\n onPaste(event) {\n this.handleInputChange(event);\n\n this.$emit('paste', event);\n },\n caret(first, last) {\n let range, begin, end;\n\n if (!this.$el.offsetParent || this.$el !== document.activeElement) {\n return;\n }\n\n if (typeof first === 'number') {\n begin = first;\n end = typeof last === 'number' ? last : begin;\n\n if (this.$el.setSelectionRange) {\n this.$el.setSelectionRange(begin, end);\n } else if (this.$el['createTextRange']) {\n range = this.$el['createTextRange']();\n range.collapse(true);\n range.moveEnd('character', end);\n range.moveStart('character', begin);\n range.select();\n }\n } else {\n if (this.$el.setSelectionRange) {\n begin = this.$el.selectionStart;\n end = this.$el.selectionEnd;\n } else if (document['selection'] && document['selection'].createRange) {\n range = document['selection'].createRange();\n begin = 0 - range.duplicate().moveStart('character', -100000);\n end = begin + range.text.length;\n }\n\n return { begin: begin, end: end };\n }\n },\n isCompleted() {\n for (let i = this.firstNonMaskPos; i <= this.lastRequiredNonMaskPos; i++) {\n if (this.tests[i] && this.buffer[i] === this.getPlaceholder(i)) {\n return false;\n }\n }\n\n return true;\n },\n getPlaceholder(i) {\n if (i < this.slotChar.length) {\n return this.slotChar.charAt(i);\n }\n\n return this.slotChar.charAt(0);\n },\n seekNext(pos) {\n while (++pos < this.len && !this.tests[pos]);\n\n return pos;\n },\n seekPrev(pos) {\n while (--pos >= 0 && !this.tests[pos]);\n\n return pos;\n },\n shiftL(begin, end) {\n let i, j;\n\n if (begin < 0) {\n return;\n }\n\n for (i = begin, j = this.seekNext(end); i < this.len; i++) {\n if (this.tests[i]) {\n if (j < this.len && this.tests[i].test(this.buffer[j])) {\n this.buffer[i] = this.buffer[j];\n this.buffer[j] = this.getPlaceholder(j);\n } else {\n break;\n }\n\n j = this.seekNext(j);\n }\n }\n\n this.writeBuffer();\n this.caret(Math.max(this.firstNonMaskPos, begin));\n },\n shiftR(pos) {\n let i, c, j, t;\n\n for (i = pos, c = this.getPlaceholder(pos); i < this.len; i++) {\n if (this.tests[i]) {\n j = this.seekNext(i);\n t = this.buffer[i];\n this.buffer[i] = c;\n\n if (j < this.len && this.tests[j].test(t)) {\n c = t;\n } else {\n break;\n }\n }\n }\n },\n handleAndroidInput(event) {\n var curVal = this.$el.value;\n var pos = this.caret();\n\n if (this.oldVal && this.oldVal.length && this.oldVal.length > curVal.length) {\n // a deletion or backspace happened\n this.checkVal(true);\n while (pos.begin > 0 && !this.tests[pos.begin - 1]) pos.begin--;\n\n if (pos.begin === 0) {\n while (pos.begin < this.firstNonMaskPos && !this.tests[pos.begin]) pos.begin++;\n }\n\n this.caret(pos.begin, pos.begin);\n } else {\n this.checkVal(true);\n while (pos.begin < this.len && !this.tests[pos.begin]) pos.begin++;\n\n this.caret(pos.begin, pos.begin);\n }\n\n if (this.isCompleted()) {\n this.$emit('complete', event);\n }\n },\n clearBuffer(start, end) {\n let i;\n\n for (i = start; i < end && i < this.len; i++) {\n if (this.tests[i]) {\n this.buffer[i] = this.getPlaceholder(i);\n }\n }\n },\n writeBuffer() {\n this.$el.value = this.buffer.join('');\n },\n checkVal(allow) {\n this.isValueChecked = true;\n //try to place characters where they belong\n let test = this.$el.value,\n lastMatch = -1,\n i,\n c,\n pos;\n\n for (i = 0, pos = 0; i < this.len; i++) {\n if (this.tests[i]) {\n this.buffer[i] = this.getPlaceholder(i);\n\n while (pos++ < test.length) {\n c = test.charAt(pos - 1);\n\n if (this.tests[i].test(c)) {\n this.buffer[i] = c;\n lastMatch = i;\n break;\n }\n }\n\n if (pos > test.length) {\n this.clearBuffer(i + 1, this.len);\n break;\n }\n } else {\n if (this.buffer[i] === test.charAt(pos)) {\n pos++;\n }\n\n if (i < this.partialPosition) {\n lastMatch = i;\n }\n }\n }\n\n if (allow) {\n this.writeBuffer();\n } else if (lastMatch + 1 < this.partialPosition) {\n if (this.autoClear || this.buffer.join('') === this.defaultBuffer) {\n // Invalid value. Remove it and replace it with the\n // mask, which is the default behavior.\n if (this.$el.value) this.$el.value = '';\n this.clearBuffer(0, this.len);\n } else {\n // Invalid value, but we opt to show the value to the\n // user and allow them to correct their mistake.\n this.writeBuffer();\n }\n } else {\n this.writeBuffer();\n this.$el.value = this.$el.value.substring(0, lastMatch + 1);\n }\n\n return this.partialPosition ? i : this.firstNonMaskPos;\n },\n handleInputChange(event) {\n const isPasteEvent = event.type === 'paste';\n\n if (this.readonly || isPasteEvent) {\n return;\n }\n\n var pos = this.checkVal(true);\n\n this.caret(pos);\n this.updateModelValue(event.target.value);\n\n if (this.isCompleted()) {\n this.$emit('complete', event);\n }\n },\n getUnmaskedValue() {\n let unmaskedBuffer = [];\n\n for (let i = 0; i < this.buffer.length; i++) {\n let c = this.buffer[i];\n\n if (this.tests[i] && c !== this.getPlaceholder(i)) {\n unmaskedBuffer.push(c);\n }\n }\n\n return unmaskedBuffer.join('');\n },\n unmaskValue(value) {\n let unmaskedBuffer = [];\n let thisbuffer = value.split('');\n\n for (let i = 0; i < thisbuffer.length; i++) {\n let c = thisbuffer[i];\n\n if (this.tests[i] && c !== this.getPlaceholder(i)) {\n unmaskedBuffer.push(c);\n }\n }\n\n return unmaskedBuffer.join('');\n },\n\n updateModelValue(value) {\n if (this.currentVal === value) return;\n const val = this.unmask ? this.unmaskValue(value) : value;\n\n this.currentVal = value;\n\n this.writeValue(this.defaultBuffer !== val ? val : '');\n },\n updateValue(updateModel = true) {\n if (this.$el) {\n if (this.d_value == null) {\n this.$el.value = '';\n updateModel && this.updateModelValue('');\n } else {\n this.$el.value = this.d_value;\n this.checkVal();\n\n setTimeout(() => {\n if (this.$el) {\n this.writeBuffer();\n this.checkVal();\n\n if (updateModel) this.updateModelValue(this.$el.value);\n }\n }, 10);\n }\n\n this.focusText = this.$el.value;\n }\n },\n initMask() {\n this.tests = [];\n this.partialPosition = this.mask.length;\n this.len = this.mask.length;\n this.firstNonMaskPos = null;\n this.defs = {\n 9: '[0-9]',\n a: '[A-Za-z]',\n '*': '[A-Za-z0-9]'\n };\n\n let ua = getUserAgent();\n\n this.androidChrome = /chrome/i.test(ua) && /android/i.test(ua);\n\n let maskTokens = this.mask.split('');\n\n for (let i = 0; i < maskTokens.length; i++) {\n let c = maskTokens[i];\n\n if (c === '?') {\n this.len--;\n this.partialPosition = i;\n } else if (this.defs[c]) {\n this.tests.push(new RegExp(this.defs[c]));\n\n if (this.firstNonMaskPos === null) {\n this.firstNonMaskPos = this.tests.length - 1;\n }\n\n if (i < this.partialPosition) {\n this.lastRequiredNonMaskPos = this.tests.length - 1;\n }\n } else {\n this.tests.push(null);\n }\n }\n\n this.buffer = [];\n\n for (let i = 0; i < maskTokens.length; i++) {\n let c = maskTokens[i];\n\n if (c !== '?') {\n if (this.defs[c]) this.buffer.push(this.getPlaceholder(i));\n else this.buffer.push(c);\n }\n }\n\n this.defaultBuffer = this.buffer.join('');\n this.updateValue(false);\n },\n isValueUpdated() {\n return this.unmask ? this.d_value != this.getUnmaskedValue() : this.defaultBuffer !== this.$el.value && this.$el.value !== this.d_value;\n }\n },\n computed: {\n inputClass() {\n return [this.cx('root'), this.class];\n },\n rootPTOptions() {\n return {\n root: mergeProps(this.ptm('pcInputText', this.ptmParams)['root'], this.ptmi('root', this.ptmParams))\n };\n },\n ptmParams() {\n return {\n context: {\n filled: this.$filled\n }\n };\n }\n },\n components: {\n InputText\n }\n};\n</script>\n"],"names":["name","BaseInput","props","slotChar","type","String","id","Object","mask","placeholder","autoClear","Boolean","unmask","readonly","style","InputMaskStyle","provide","$pcInputMask","$parentInstance","BaseInputMask","inheritAttrs","emits","inject","$pcFluid","data","currentVal","watch","newMask","oldMask","initMask","disabled","newValue","oldValue","updateValue","mounted","updated","isValueUpdated","methods","onInput","event","isComposing","androidChrome","handleAndroidInput","handleInputChange","updateModelValue","target","value","onFocus","_this","focus","focusText","$el","defaultBuffer","requestAnimationFrame","document","activeElement","caret","pos","checkVal","caretTimeoutId","setTimeout","writeBuffer","replace","length","$emit","onBlur","_this$formField$onBlu","_this$formField","e","createEvent","initEvent","dispatchEvent","formField","call","onKeyDown","k","code","begin","end","iPhone","test","getUserAgent","oldVal","seekPrev","seekNext","clearBuffer","shiftL","preventDefault","blur","onKeyPress","_this2","p","c","next","completed","ctrlKey","altKey","metaKey","shiftKey","key","len","tests","shiftR","buffer","proxy","lastRequiredNonMaskPos","isCompleted","onPaste","first","last","range","offsetParent","setSelectionRange","collapse","moveEnd","moveStart","select","selectionStart","selectionEnd","createRange","duplicate","text","i","firstNonMaskPos","getPlaceholder","charAt","j","Math","max","t","curVal","start","join","allow","isValueChecked","lastMatch","partialPosition","substring","isPasteEvent","getUnmaskedValue","unmaskedBuffer","push","unmaskValue","thisbuffer","split","val","writeValue","_this3","updateModel","arguments","undefined","d_value","defs","a","ua","maskTokens","RegExp","computed","inputClass","cx","rootPTOptions","root","mergeProps","ptm","ptmParams","ptmi","context","filled","$filled","components","InputText","_createBlock","_component_InputText","_ctx","$data","$options","invalid","size","variant","fluid","$fluid","unstyled","onCompositionend","onKeydown","onKeypress","pt"],"mappings":"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