Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

imask

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imask - npm Package Compare versions

Comparing version 3.4.0 to 4.0.0

2

dist/imask.es.min.js

@@ -1,2 +0,2 @@

function isString(e){return"string"==typeof e||e instanceof String}function conform(e,t,s=""){return isString(e)?e:e?t:s}const DIRECTION={NONE:0,LEFT:-1,RIGHT:1};function indexInDirection(e,t){return t===DIRECTION.LEFT&&--e,e}function escapeRegExp(e){return e.replace(/([.*+?^=!:${}()|[\]/\\])/g,"\\$1")}function objectIncludes(e,t){if(t===e)return!0;var s,u=Array.isArray(t),a=Array.isArray(e);if(u&&a){if(t.length!=e.length)return!1;for(s=0;s<t.length;s++)if(!objectIncludes(t[s],e[s]))return!1;return!0}if(u!=a)return!1;if(t&&e&&"object"==typeof t&&"object"==typeof e){var i=Object.keys(t),n=t instanceof Date,r=e instanceof Date;if(n&&r)return t.getTime()==e.getTime();if(n!=r)return!1;var h=t instanceof RegExp,l=e instanceof RegExp;if(h&&l)return t.toString()==e.toString();if(h!=l)return!1;for(s=0;s<i.length;s++)if(!Object.prototype.hasOwnProperty.call(e,i[s]))return!1;for(s=0;s<i.length;s++)if(!objectIncludes(t[i[s]],e[i[s]]))return!1;return!0}return!1}const g="undefined"!=typeof window&&window||"undefined"!=typeof global&&global.global===global&&global||"undefined"!=typeof self&&self.self===self&&self||{};class ActionDetails{constructor(e,t,s,u){for(this.value=e,this.cursorPos=t,this.oldValue=s,this.oldSelection=u;this.value.slice(0,this.startChangePos)!==this.oldValue.slice(0,this.startChangePos);)--this.oldSelection.start}get startChangePos(){return Math.min(this.cursorPos,this.oldSelection.start)}get insertedCount(){return this.cursorPos-this.startChangePos}get inserted(){return this.value.substr(this.startChangePos,this.insertedCount)}get removedCount(){return Math.max(this.oldSelection.end-this.startChangePos||this.oldValue.length-this.value.length,0)}get removed(){return this.oldValue.substr(this.startChangePos,this.removedCount)}get head(){return this.value.substring(0,this.startChangePos)}get tail(){return this.value.substring(this.startChangePos+this.insertedCount)}get removeDirection(){return!this.removedCount||this.insertedCount?DIRECTION.NONE:this.oldSelection.end===this.cursorPos||this.oldSelection.start===this.cursorPos?DIRECTION.RIGHT:DIRECTION.LEFT}}class ChangeDetails{constructor(e){Object.assign(this,{inserted:"",overflow:!1,shift:0},e)}aggregate(e){return e.rawInserted&&(this.rawInserted+=e.rawInserted),this.inserted+=e.inserted,this.shift+=e.shift,this.overflow=this.overflow||e.overflow,this}get offset(){return this.shift+this.inserted.length}get rawInserted(){return null!=this._rawInserted?this._rawInserted:this.inserted}set rawInserted(e){this._rawInserted=e}}class Masked{constructor(e){this._value="",this._update(e),this.isInitialized=!0}updateOptions(e){this.withValueRefresh(this._update.bind(this,e))}_update(e){Object.assign(this,e)}clone(){const e=new Masked(this);return e._value=this.value.slice(),e}assign(e){return Object.assign(this,e)}reset(){this._value=""}get value(){return this._value}set value(e){this.resolve(e)}resolve(e){return this.reset(),this._append(e,{input:!0}),this._appendTail(),this.doCommit(),this.value}get unmaskedValue(){return this.value}set unmaskedValue(e){this.reset(),this._append(e),this._appendTail(),this.doCommit()}get typedValue(){return this.unmaskedValue}set typedValue(e){this.unmaskedValue=e}get rawInputValue(){return this.extractInput(0,this.value.length,{raw:!0})}set rawInputValue(e){this.reset(),this._append(e,{raw:!0}),this._appendTail(),this.doCommit()}get isComplete(){return!0}nearestInputPos(e,t){return e}extractInput(e=0,t=this.value.length,s){return this.value.slice(e,t)}_extractTail(e=0,t=this.value.length){return{value:this.extractInput(e,t),fromPos:e,toPos:t}}_appendTail(e){return this._append(e?e.value:"",{tail:!0})}_append(e,t={}){const s=this.value.length;let u=this.clone(),a=!1;e=this.doPrepare(e,t);for(let s=0;s<e.length;++s){if(this._value+=e[s],!1===this.doValidate(t)&&(this.assign(u),!t.input)){a=!0;break}u=this.clone()}return new ChangeDetails({inserted:this.value.slice(s),overflow:a})}appendWithTail(e,t){const s=new ChangeDetails;let u,a=this.clone();for(let i=0;i<e.length;++i){const n=e[i],r=this._append(n,{input:!0});if(u=this.clone(),!(!r.overflow&&!this._appendTail(t).overflow)||!1===this.doValidate({tail:!0})){this.assign(a);break}this.assign(u),a=this.clone(),s.aggregate(r)}return s.shift+=this._appendTail(t).shift,s}remove(e=0,t=this.value.length-e){return this._value=this.value.slice(0,e)+this.value.slice(e+t),new ChangeDetails}withValueRefresh(e){if(this._refreshing||!this.isInitialized)return e();this._refreshing=!0;const t=this.unmaskedValue,s=this.value,u=e();return this.resolve(s)!==s&&(this.unmaskedValue=t),delete this._refreshing,u}doPrepare(e,t={}){return this.prepare?this.prepare(e,this,t):e}doValidate(e){return!this.validate||this.validate(this.value,this,e)}doCommit(){this.commit&&this.commit(this.value,this)}splice(e,t,s,u){const a=e+t,i=this._extractTail(a);let n=this.nearestInputPos(e,u);return new ChangeDetails({shift:n-e}).aggregate(this.remove(n)).aggregate(this.appendWithTail(s,i))}}function maskedClass(e){if(null==e)throw new Error("mask property should be defined");return e instanceof RegExp?g.IMask.MaskedRegExp:isString(e)?g.IMask.MaskedPattern:e instanceof Date||e===Date?g.IMask.MaskedDate:e instanceof Number||"number"==typeof e||e===Number?g.IMask.MaskedNumber:Array.isArray(e)||e===Array?g.IMask.MaskedDynamic:e.prototype instanceof g.IMask.Masked?e:e instanceof Function?g.IMask.MaskedFunction:(console.warn("Mask not found for mask",e),g.IMask.Masked)}function createMask(e){const t=(e=Object.assign({},e)).mask;return t instanceof g.IMask.Masked?t:new(maskedClass(t))(e)}class PatternDefinition{constructor(e){Object.assign(this,e),this.mask&&(this._masked=createMask(e))}reset(){this.isHollow=!1,this.isRawInput=!1,this._masked&&this._masked.reset()}get isInput(){return this.type===PatternDefinition.TYPES.INPUT}get isHiddenHollow(){return this.isHollow&&this.optional}resolve(e){return!!this._masked&&this._masked.resolve(e)}}PatternDefinition.DEFAULTS={0:/\d/,a:/[\u0041-\u005A\u0061-\u007A\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/,"*":/./},PatternDefinition.TYPES={INPUT:"input",FIXED:"fixed"};var _extends=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var s=arguments[t];for(var u in s)Object.prototype.hasOwnProperty.call(s,u)&&(e[u]=s[u])}return e},slicedToArray=function(){return function(e,t){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return function(e,t){var s=[],u=!0,a=!1,i=void 0;try{for(var n,r=e[Symbol.iterator]();!(u=(n=r.next()).done)&&(s.push(n.value),!t||s.length!==t);u=!0);}catch(e){a=!0,i=e}finally{try{!u&&r.return&&r.return()}finally{if(a)throw i}}return s}(e,t);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}();class PatternGroup{constructor(e,{name:t,offset:s,mask:u,validate:a}){this.masked=e,this.name=t,this.offset=s,this.mask=u,this.validate=a||(()=>!0)}get value(){return this.masked.value.slice(this.masked.mapDefIndexToPos(this.offset),this.masked.mapDefIndexToPos(this.offset+this.mask.length))}get unmaskedValue(){return this.masked.extractInput(this.masked.mapDefIndexToPos(this.offset),this.masked.mapDefIndexToPos(this.offset+this.mask.length))}doValidate(e){return this.validate(this.value,this,e)}}class RangeGroup{constructor([e,t],s=String(t).length){this._from=e,this._to=t,this._maxLength=s,this.validate=this.validate.bind(this),this._update()}get to(){return this._to}set to(e){this._to=e,this._update()}get from(){return this._from}set from(e){this._from=e,this._update()}get maxLength(){return this._maxLength}set maxLength(e){this._maxLength=e,this._update()}get _matchFrom(){return this.maxLength-String(this.from).length}_update(){this._maxLength=Math.max(this._maxLength,String(this.to).length),this.mask="0".repeat(this._maxLength)}validate(e){let t="",s="";var u=e.match(/^(\D*)(\d*)(\D*)/)||[],a=slicedToArray(u,3);const i=a[1],n=a[2];return n&&(t="0".repeat(i.length)+n,s="9".repeat(i.length)+n),-1===e.search(/[^0]/)&&e.length<=this._matchFrom||(t=t.padEnd(this._maxLength,"0"),s=s.padEnd(this._maxLength,"9"),this.from<=Number(s)&&Number(t)<=this.to)}}function EnumGroup(e){return{mask:"*".repeat(e[0].length),validate:(t,s,u)=>e.some(e=>e.indexOf(s.unmaskedValue)>=0)}}PatternGroup.Range=RangeGroup,PatternGroup.Enum=EnumGroup;class ChunksTailDetails{constructor(e){this.chunks=e}get value(){return this.chunks.map(e=>e.value).join("")}get fromPos(){const e=this.chunks[0];return e&&e.stop}get toPos(){const e=this.chunks[this.chunks.length-1];return e&&e.stop}}class MaskedPattern extends Masked{constructor(e={}){e.definitions=Object.assign({},PatternDefinition.DEFAULTS,e.definitions),super(_extends({},MaskedPattern.DEFAULTS,e))}_update(e={}){e.definitions=Object.assign({},this.definitions,e.definitions),super._update(e),this._rebuildMask()}_rebuildMask(){const e=this.definitions;this._charDefs=[],this._groupDefs=[];let t=this.mask;if(!t||!e)return;let s=!1,u=!1,a=!1;for(let i=0;i<t.length;++i){if(this.groups){const e=t.slice(i),s=Object.keys(this.groups).filter(t=>0===e.indexOf(t));s.sort((e,t)=>t.length-e.length);const u=s[0];if(u){const e=this.groups[u];this._groupDefs.push(new PatternGroup(this,{name:u,offset:this._charDefs.length,mask:e.mask,validate:e.validate})),t=t.replace(u,e.mask)}}let n=t[i],r=n in e?PatternDefinition.TYPES.INPUT:PatternDefinition.TYPES.FIXED;const h=r===PatternDefinition.TYPES.INPUT||s,l=r===PatternDefinition.TYPES.INPUT&&u;if(n!==MaskedPattern.STOP_CHAR)if("{"!==n&&"}"!==n)if("["!==n&&"]"!==n){if(n===MaskedPattern.ESCAPE_CHAR){if(!(n=t[++i]))break;r=PatternDefinition.TYPES.FIXED}this._charDefs.push(new PatternDefinition({char:n,type:r,optional:l,stopAlign:a,unmasking:h,mask:r===PatternDefinition.TYPES.INPUT?e[n]:e=>e===n})),a=!1}else u=!u;else s=!s;else a=!0}}doValidate(...e){return this._groupDefs.every(t=>t.doValidate(...e))&&super.doValidate(...e)}clone(){const e=new MaskedPattern(this);return e._value=this.value,e._charDefs.forEach((e,t)=>Object.assign(e,this._charDefs[t])),e._groupDefs.forEach((e,t)=>Object.assign(e,this._groupDefs[t])),e}reset(){super.reset(),this._charDefs.forEach(e=>{delete e.isHollow})}get isComplete(){return!this._charDefs.some((e,t)=>e.isInput&&!e.optional&&(e.isHollow||!this.extractInput(t,t+1)))}hiddenHollowsBefore(e){return this._charDefs.slice(0,e).filter(e=>e.isHiddenHollow).length}mapDefIndexToPos(e){return e-this.hiddenHollowsBefore(e)}mapPosToDefIndex(e){let t=e;for(let e=0;e<this._charDefs.length;++e){const s=this._charDefs[e];if(e>=t)break;s.isHiddenHollow&&++t}return t}get unmaskedValue(){const e=this.value;let t="";for(let s=0,u=0;s<e.length&&u<this._charDefs.length;++u){const a=e[s],i=this._charDefs[u];i.isHiddenHollow||(i.unmasking&&!i.isHollow&&(t+=a),++s)}return t}set unmaskedValue(e){super.unmaskedValue=e}_appendTail(e){const t=new ChangeDetails;return e&&t.aggregate(e instanceof ChunksTailDetails?this._appendChunks(e.chunks,{tail:!0}):super._appendTail(e)),t.aggregate(this._appendPlaceholder())}_append(e,t={}){const s=this.value.length;let u="",a=!1;e=this.doPrepare(e,t);for(let s=0,i=this.mapPosToDefIndex(this.value.length);s<e.length;){const n=e[s],r=this._charDefs[i];if(null==r){a=!0;break}let h,l;r.isHollow=!1;let o=conform(r.resolve(n),n);r.type===PatternDefinition.TYPES.INPUT?(o&&(this._value+=o,this.doValidate()||(o="",this._value=this.value.slice(0,-1))),h=!!o,l=!o&&!r.optional,o?u+=o:(r.optional||t.input||this.lazy||(this._value+=this.placeholderChar,l=!1),l||(r.isHollow=!0))):(this._value+=r.char,h=o&&(r.unmasking||t.input||t.raw)&&!t.tail,r.isRawInput=h&&(t.raw||t.input),r.isRawInput&&(u+=r.char)),l||++i,(h||l)&&++s}return new ChangeDetails({inserted:this.value.slice(s),rawInserted:u,overflow:a})}_appendChunks(e,...t){const s=new ChangeDetails;for(let a=0;a<e.length;++a){var u=e[a];const i=u.stop,n=u.value,r=null!=i&&this._charDefs[i];if(r&&r.stopAlign&&s.aggregate(this._appendPlaceholder(i)),s.aggregate(this._append(n,...t)).overflow)break}return s}_extractTail(e=0,t=this.value.length){return new ChunksTailDetails(this._extractInputChunks(e,t))}extractInput(e=0,t=this.value.length,s={}){if(e===t)return"";const u=this.value;let a="";const i=this.mapPosToDefIndex(t);for(let n=e,r=this.mapPosToDefIndex(e);n<t&&n<u.length&&r<i;++r){const e=u[n],t=this._charDefs[r];if(!t)break;t.isHiddenHollow||((t.isInput&&!t.isHollow||s.raw&&!t.isInput&&t.isRawInput)&&(a+=e),++n)}return a}_extractInputChunks(e=0,t=this.value.length){if(e===t)return[];const s=this.mapPosToDefIndex(e),u=this.mapPosToDefIndex(t),a=this._charDefs.map((e,t)=>[e,t]).slice(s,u).filter(([e])=>e.stopAlign).map(([,e])=>e),i=[s,...a,u];return i.map((e,t)=>({stop:a.indexOf(e)>=0?e:null,value:this.extractInput(this.mapDefIndexToPos(e),this.mapDefIndexToPos(i[++t]))})).filter(({stop:e,value:t})=>null!=e||t)}_appendPlaceholder(e){const t=this.value.length,s=e||this._charDefs.length;for(let t=this.mapPosToDefIndex(this.value.length);t<s;++t){const s=this._charDefs[t];s.isInput&&(s.isHollow=!0),this.lazy&&!e||(this._value+=s.isInput||null==s.char?s.optional?"":this.placeholderChar:s.char)}return new ChangeDetails({inserted:this.value.slice(t)})}remove(e=0,t=this.value.length-e){const s=this.mapPosToDefIndex(e),u=this.mapPosToDefIndex(e+t);return this._charDefs.slice(s,u).forEach(e=>e.reset()),super.remove(e,t)}nearestInputPos(e,t=DIRECTION.NONE){let s=t||DIRECTION.RIGHT;const u=this.mapPosToDefIndex(e),a=this._charDefs[u];let i,n,r,h,l=u;if(t!==DIRECTION.RIGHT&&(a&&a.isInput||t===DIRECTION.NONE&&e===this.value.length)&&(i=u,a&&!a.isHollow&&(n=u)),null==n&&t==DIRECTION.LEFT||null==i)for(h=indexInDirection(l,s);0<=h&&h<this._charDefs.length;l+=s,h+=s){const e=this._charDefs[h];if(null==i&&e.isInput&&(i=l,t===DIRECTION.NONE))break;if(null==r&&e.isHollow&&!e.isHiddenHollow&&(r=l),e.isInput&&!e.isHollow){n=l;break}}if(t!==DIRECTION.LEFT||0!==l||!this.lazy||this.extractInput()||a&&a.isInput||(i=0),t===DIRECTION.LEFT||null==i){let e=!1;for(h=indexInDirection(l,s=-s);0<=h&&h<this._charDefs.length;l+=s,h+=s){const t=this._charDefs[h];if(t.isInput&&(i=l,t.isHollow&&!t.isHiddenHollow))break;if(l===u&&(e=!0),e&&null!=i)break}(e=e||h>=this._charDefs.length)&&null!=i&&(l=i)}else null==n&&(l=null!=r?r:i);return this.mapDefIndexToPos(l)}group(e){return this.groupsByName(e)[0]}groupsByName(e){return this._groupDefs.filter(t=>t.name===e)}}MaskedPattern.DEFAULTS={lazy:!0,placeholderChar:"_"},MaskedPattern.STOP_CHAR="`",MaskedPattern.ESCAPE_CHAR="\\",MaskedPattern.Definition=PatternDefinition,MaskedPattern.Group=PatternGroup;class MaskedDate extends MaskedPattern{constructor(e){super(_extends({},MaskedDate.DEFAULTS,e))}_update(e){e.mask===Date&&delete e.mask,e.pattern&&(e.mask=e.pattern,delete e.pattern);const t=e.groups;e.groups=Object.assign({},MaskedDate.GET_DEFAULT_GROUPS()),e.min&&(e.groups.Y.from=e.min.getFullYear()),e.max&&(e.groups.Y.to=e.max.getFullYear()),Object.assign(e.groups,t),super._update(e)}doValidate(...e){const t=super.doValidate(...e),s=this.date;return t&&(!this.isComplete||this.isDateExist(this.value)&&s&&(null==this.min||this.min<=s)&&(null==this.max||s<=this.max))}isDateExist(e){return this.format(this.parse(e))===e}get date(){return this.isComplete?this.parse(this.value):null}set date(e){this.value=this.format(e)}get typedValue(){return this.date}set typedValue(e){this.date=e}}MaskedDate.DEFAULTS={pattern:"d{.}`m{.}`Y",format:e=>{return[String(e.getDate()).padStart(2,"0"),String(e.getMonth()+1).padStart(2,"0"),e.getFullYear()].join(".")},parse:e=>{var t=e.split("."),s=slicedToArray(t,3);const u=s[0],a=s[1],i=s[2];return new Date(i,a-1,u)}},MaskedDate.GET_DEFAULT_GROUPS=(()=>({d:new PatternGroup.Range([1,31]),m:new PatternGroup.Range([1,12]),Y:new PatternGroup.Range([1900,9999])}));class MaskElement{get selectionStart(){let e;try{e=this._unsafeSelectionStart}catch(e){}return null!=e?e:this.value.length}get selectionEnd(){let e;try{e=this._unsafeSelectionEnd}catch(e){}return null!=e?e:this.value.length}select(e,t){if(null!=e&&null!=t&&(e!==this.selectionStart||t!==this.selectionEnd))try{this._unsafeSelect(e,t)}catch(e){}}_unsafeSelect(e,t){}isActive(){return!1}bindEvents(e){}unbindEvents(){}}class HTMLMaskElement extends MaskElement{constructor(e){super(),this.input=e,this._handlers={}}isActive(){return this.input===document.activeElement}get _unsafeSelectionStart(){return this.input.selectionStart}get _unsafeSelectionEnd(){return this.input.selectionEnd}_unsafeSelect(e,t){this.input.setSelectionRange(e,t)}get value(){return this.input.value}set value(e){this.input.value=e}bindEvents(e){Object.keys(e).forEach(t=>this._toggleEventHandler(HTMLMaskElement.EVENTS_MAP[t],e[t]))}unbindEvents(){Object.keys(this._handlers).forEach(e=>this._toggleEventHandler(e))}_toggleEventHandler(e,t){this._handlers[e]&&(this.input.removeEventListener(e,this._handlers[e]),delete this._handlers[e]),t&&(this.input.addEventListener(e,t),this._handlers[e]=t)}}HTMLMaskElement.EVENTS_MAP={selectionChange:"keydown",input:"input",drop:"drop",click:"click",focus:"focus",commit:"change"};class InputMask{constructor(e,t){this.el=e instanceof MaskElement?e:new HTMLMaskElement(e),this.masked=createMask(t),this._listeners={},this._value="",this._unmaskedValue="",this._saveSelection=this._saveSelection.bind(this),this._onInput=this._onInput.bind(this),this._onChange=this._onChange.bind(this),this._onDrop=this._onDrop.bind(this),this.alignCursor=this.alignCursor.bind(this),this.alignCursorFriendly=this.alignCursorFriendly.bind(this),this._bindEvents(),this.updateValue(),this._onChange()}get mask(){return this.masked.mask}set mask(e){if(null==e||e===this.masked.mask||e===Date&&this.masked instanceof MaskedDate)return;if(this.masked.constructor===maskedClass(e))return void(this.masked.mask=e);const t=createMask({mask:e});t.unmaskedValue=this.masked.unmaskedValue,this.masked=t}get value(){return this._value}set value(e){this.masked.value=e,this.updateControl(),this.alignCursor()}get unmaskedValue(){return this._unmaskedValue}set unmaskedValue(e){this.masked.unmaskedValue=e,this.updateControl(),this.alignCursor()}get typedValue(){return this.masked.typedValue}set typedValue(e){this.masked.typedValue=e,this.updateControl(),this.alignCursor()}_bindEvents(){this.el.bindEvents({selectionChange:this._saveSelection,input:this._onInput,drop:this._onDrop,click:this.alignCursorFriendly,focus:this.alignCursorFriendly,commit:this._onChange})}_unbindEvents(){this.el.unbindEvents()}_fireEvent(e){const t=this._listeners[e];t&&t.forEach(e=>e())}get selectionStart(){return this._cursorChanging?this._changingCursorPos:this.el.selectionStart}get cursorPos(){return this._cursorChanging?this._changingCursorPos:this.el.selectionEnd}set cursorPos(e){this.el.isActive&&(this.el.select(e,e),this._saveSelection())}_saveSelection(){this.value!==this.el.value&&console.warn("Uncontrolled input change, refresh mask manually!"),this._selection={start:this.selectionStart,end:this.cursorPos}}updateValue(){this.masked.value=this.el.value}updateControl(){const e=this.masked.unmaskedValue,t=this.masked.value,s=this.unmaskedValue!==e||this.value!==t;this._unmaskedValue=e,this._value=t,this.el.value!==t&&(this.el.value=t),s&&this._fireChangeEvents()}updateOptions(e){e=_extends({},e),this.mask=e.mask,delete e.mask,objectIncludes(this.masked,e)||(this.masked.updateOptions(e),this.updateControl())}updateCursor(e){null!=e&&(this.cursorPos=e,this._delayUpdateCursor(e))}_delayUpdateCursor(e){this._abortUpdateCursor(),this._changingCursorPos=e,this._cursorChanging=setTimeout(()=>{this.el&&(this.cursorPos=this._changingCursorPos,this._abortUpdateCursor())},10)}_fireChangeEvents(){this._fireEvent("accept"),this.masked.isComplete&&this._fireEvent("complete")}_abortUpdateCursor(){this._cursorChanging&&(clearTimeout(this._cursorChanging),delete this._cursorChanging)}alignCursor(){this.cursorPos=this.masked.nearestInputPos(this.cursorPos,DIRECTION.LEFT)}alignCursorFriendly(){this.selectionStart===this.cursorPos&&this.alignCursor()}on(e,t){return this._listeners[e]||(this._listeners[e]=[]),this._listeners[e].push(t),this}off(e,t){if(!this._listeners[e])return;if(!t)return void delete this._listeners[e];const s=this._listeners[e].indexOf(t);return s>=0&&this._listeners[e].splice(s,1),this}_onInput(){if(this._abortUpdateCursor(),!this._selection)return this.updateValue();const e=new ActionDetails(this.el.value,this.cursorPos,this.value,this._selection),t=this.masked.splice(e.startChangePos,e.removed.length,e.inserted,e.removeDirection).offset,s=this.masked.nearestInputPos(e.startChangePos+t,e.removeDirection);this.updateControl(),this.updateCursor(s)}_onChange(){this.value!==this.el.value&&this.updateValue(),this.masked.doCommit(),this.updateControl()}_onDrop(e){e.preventDefault(),e.stopPropagation()}destroy(){this._unbindEvents(),this._listeners.length=0,delete this.el}}class MaskedNumber extends Masked{constructor(e){super(_extends({},MaskedNumber.DEFAULTS,e))}_update(e){super._update(e),this._updateRegExps()}_updateRegExps(){let e="",t="";this.allowNegative?(e+="([+|\\-]?|([+|\\-]?(0|([1-9]+\\d*))))",t+="[+|\\-]?"):e+="(0|([1-9]+\\d*))",t+="\\d*";let s=(this.scale?"("+this.radix+"\\d{0,"+this.scale+"})?":"")+"$";this._numberRegExpInput=new RegExp("^"+e+s),this._numberRegExp=new RegExp("^"+t+s),this._mapToRadixRegExp=new RegExp("["+this.mapToRadix.map(escapeRegExp).join("")+"]","g"),this._thousandsSeparatorRegExp=new RegExp(escapeRegExp(this.thousandsSeparator),"g")}_extractTail(e=0,t=this.value.length){const s=super._extractTail(e,t);return _extends({},s,{value:this._removeThousandsSeparators(s.value)})}_removeThousandsSeparators(e){return e.replace(this._thousandsSeparatorRegExp,"")}_insertThousandsSeparators(e){const t=e.split(this.radix);return t[0]=t[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.thousandsSeparator),t.join(this.radix)}doPrepare(e,...t){return super.doPrepare(this._removeThousandsSeparators(e.replace(this._mapToRadixRegExp,this.radix)),...t)}appendWithTail(...e){let t=this.value;this._value=this._removeThousandsSeparators(this.value);let s=this.value.length;const u=super.appendWithTail(...e);this._value=this._insertThousandsSeparators(this.value);let a=s+u.inserted.length;for(let e=0;e<=a;++e)this.value[e]===this.thousandsSeparator&&((e<s||e===s&&t[e]===this.thousandsSeparator)&&++s,e<a&&++a);return u.rawInserted=u.inserted,u.inserted=this.value.slice(s,a),u.shift+=s-t.length,u}nearestInputPos(e,t){if(!t)return e;const s=indexInDirection(e,t);return this.value[s]===this.thousandsSeparator&&(e+=t),e}doValidate(e){let t=(e.input?this._numberRegExpInput:this._numberRegExp).test(this._removeThousandsSeparators(this.value));if(t){const e=this.number;t=t&&!isNaN(e)&&(null==this.min||this.min>=0||this.min<=this.number)&&(null==this.max||this.max<=0||this.number<=this.max)}return t&&super.doValidate(e)}doCommit(){const e=this.number;let t=e;null!=this.min&&(t=Math.max(t,this.min)),null!=this.max&&(t=Math.min(t,this.max)),t!==e&&(this.unmaskedValue=String(t));let s=this.value;this.normalizeZeros&&(s=this._normalizeZeros(s)),this.padFractionalZeros&&(s=this._padFractionalZeros(s)),this._value=this._insertThousandsSeparators(s),super.doCommit()}_normalizeZeros(e){const t=this._removeThousandsSeparators(e).split(this.radix);return t[0]=t[0].replace(/^(\D*)(0*)(\d*)/,(e,t,s,u)=>t+u),e.length&&!/\d$/.test(t[0])&&(t[0]=t[0]+"0"),t.length>1&&(t[1]=t[1].replace(/0*$/,""),t[1].length||(t.length=1)),this._insertThousandsSeparators(t.join(this.radix))}_padFractionalZeros(e){if(!e)return e;const t=e.split(this.radix);return t.length<2&&t.push(""),t[1]=t[1].padEnd(this.scale,"0"),t.join(this.radix)}get unmaskedValue(){return this._removeThousandsSeparators(this._normalizeZeros(this.value)).replace(this.radix,".")}set unmaskedValue(e){super.unmaskedValue=e.replace(".",this.radix)}get number(){return Number(this.unmaskedValue)}set number(e){this.unmaskedValue=String(e)}get typedValue(){return this.number}set typedValue(e){this.number=e}get allowNegative(){return this.signed||null!=this.min&&this.min<0||null!=this.max&&this.max<0}}MaskedNumber.DEFAULTS={radix:",",thousandsSeparator:"",mapToRadix:["."],scale:2,signed:!1,normalizeZeros:!0,padFractionalZeros:!1};class MaskedRegExp extends Masked{_update(e){e.validate=(t=>t.search(e.mask)>=0),super._update(e)}}class MaskedFunction extends Masked{_update(e){e.validate=e.mask,super._update(e)}}class MaskedDynamic extends Masked{constructor(e){super(_extends({},MaskedDynamic.DEFAULTS,e)),this.currentMask=null}_update(e){super._update(e),this.compiledMasks=Array.isArray(e.mask)?e.mask.map(e=>createMask(e)):[]}_append(e,...t){e=this.doPrepare(e,...t);const s=this._applyDispatch(e,...t);return this.currentMask&&s.aggregate(this.currentMask._append(e,...t)),s}_applyDispatch(e="",...t){const s=this.value.length,u=this.rawInputValue,a=this.currentMask,i=new ChangeDetails;return this.currentMask=this.doDispatch(e,...t),this.currentMask&&this.currentMask!==a&&(this.currentMask.reset(),this.currentMask._append(u,{raw:!0}),i.shift=this.value.length-s),i}doDispatch(e,t={}){return this.dispatch(e,this,t)}clone(){const e=new MaskedDynamic(this);e._value=this.value;const t=this.compiledMasks.indexOf(this.currentMask);return this.currentMask&&(e.currentMask=t>=0?e.compiledMasks[t].assign(this.currentMask):this.currentMask.clone()),e}reset(){this.currentMask&&this.currentMask.reset(),this.compiledMasks.forEach(e=>e.reset())}get value(){return this.currentMask?this.currentMask.value:""}set value(e){super.value=e}get unmaskedValue(){return this.currentMask?this.currentMask.unmaskedValue:""}set unmaskedValue(e){super.unmaskedValue=e}get typedValue(){return this.currentMask?this.currentMask.typedValue:""}set typedValue(e){let t=String(e);this.currentMask&&(this.currentMask.typedValue=e,t=this.currentMask.unmaskedValue),this.unmaskedValue=t}get isComplete(){return!!this.currentMask&&this.currentMask.isComplete}remove(...e){const t=new ChangeDetails;return this.currentMask&&t.aggregate(this.currentMask.remove(...e)).aggregate(this._applyDispatch()),t}extractInput(...e){return this.currentMask?this.currentMask.extractInput(...e):""}_extractTail(...e){return this.currentMask?this.currentMask._extractTail(...e):super._extractTail(...e)}_appendTail(e){const t=new ChangeDetails;return e&&t.aggregate(this._applyDispatch(e.value)),t.aggregate(this.currentMask?this.currentMask._appendTail(e):super._appendTail(e))}doCommit(){this.currentMask&&this.currentMask.doCommit(),super.doCommit()}nearestInputPos(...e){return this.currentMask?this.currentMask.nearestInputPos(...e):super.nearestInputPos(...e)}}function IMask(e,t={}){return new InputMask(e,t)}MaskedDynamic.DEFAULTS={dispatch:(e,t,s)=>{if(!t.compiledMasks.length)return;const u=t.rawInputValue,a=t.compiledMasks.map((t,a)=>{const i=t.clone();return i.rawInputValue=u,i._append(e,s),{value:i.rawInputValue.length,index:a}});return a.sort((e,t)=>t.value-e.value),t.compiledMasks[a[0].index]}},IMask.InputMask=InputMask,IMask.Masked=Masked,IMask.MaskedPattern=MaskedPattern,IMask.MaskedNumber=MaskedNumber,IMask.MaskedDate=MaskedDate,IMask.MaskedRegExp=MaskedRegExp,IMask.MaskedFunction=MaskedFunction,IMask.MaskedDynamic=MaskedDynamic,IMask.createMask=createMask,IMask.MaskElement=MaskElement,IMask.HTMLMaskElement=HTMLMaskElement,g.IMask=IMask;export default IMask;
function isString(e){return"string"==typeof e||e instanceof String}const DIRECTION={NONE:"NONE",LEFT:"LEFT",FORCE_LEFT:"FORCE_LEFT",RIGHT:"RIGHT",FORCE_RIGHT:"FORCE_RIGHT"};function indexInDirection(e,t){return t===DIRECTION.LEFT&&--e,e}function posInDirection(e,t){switch(t){case DIRECTION.LEFT:return--e;case DIRECTION.RIGHT:case DIRECTION.FORCE_RIGHT:return++e;default:return e}}function forceDirection(e){switch(e){case DIRECTION.LEFT:return DIRECTION.FORCE_LEFT;case DIRECTION.RIGHT:return DIRECTION.FORCE_RIGHT;default:return e}}function escapeRegExp(e){return e.replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}function objectIncludes(e,t){if(t===e)return!0;var s,a=Array.isArray(t),u=Array.isArray(e);if(a&&u){if(t.length!=e.length)return!1;for(s=0;s<t.length;s++)if(!objectIncludes(t[s],e[s]))return!1;return!0}if(a!=u)return!1;if(t&&e&&"object"==typeof t&&"object"==typeof e){var i=t instanceof Date,r=e instanceof Date;if(i&&r)return t.getTime()==e.getTime();if(i!=r)return!1;var n=t instanceof RegExp,l=e instanceof RegExp;if(n&&l)return t.toString()==e.toString();if(n!=l)return!1;var o=Object.keys(t);for(s=0;s<o.length;s++)if(!Object.prototype.hasOwnProperty.call(e,o[s]))return!1;for(s=0;s<o.length;s++)if(!objectIncludes(e[o[s]],t[o[s]]))return!1;return!0}return!1}const g="undefined"!=typeof window&&window||"undefined"!=typeof global&&global.global===global&&global||"undefined"!=typeof self&&self.self===self&&self||{};function _defineProperty(e,t,s){return t in e?Object.defineProperty(e,t,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[t]=s,e}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var s=null!=arguments[t]?arguments[t]:{},a=Object.keys(s);"function"==typeof Object.getOwnPropertySymbols&&(a=a.concat(Object.getOwnPropertySymbols(s).filter(function(e){return Object.getOwnPropertyDescriptor(s,e).enumerable}))),a.forEach(function(t){_defineProperty(e,t,s[t])})}return e}function _objectWithoutPropertiesLoose(e,t){if(null==e)return{};var s,a,u={},i=Object.keys(e);for(a=0;a<i.length;a++)s=i[a],t.indexOf(s)>=0||(u[s]=e[s]);return u}function _objectWithoutProperties(e,t){if(null==e)return{};var s,a,u=_objectWithoutPropertiesLoose(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)s=i[a],t.indexOf(s)>=0||Object.prototype.propertyIsEnumerable.call(e,s)&&(u[s]=e[s])}return u}function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_nonIterableRest()}function _arrayWithHoles(e){if(Array.isArray(e))return e}function _iterableToArrayLimit(e,t){var s=[],a=!0,u=!1,i=void 0;try{for(var r,n=e[Symbol.iterator]();!(a=(r=n.next()).done)&&(s.push(r.value),!t||s.length!==t);a=!0);}catch(e){u=!0,i=e}finally{try{a||null==n.return||n.return()}finally{if(u)throw i}}return s}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}class ActionDetails{constructor(e,t,s,a){for(this.value=e,this.cursorPos=t,this.oldValue=s,this.oldSelection=a;this.value.slice(0,this.startChangePos)!==this.oldValue.slice(0,this.startChangePos);)--this.oldSelection.start}get startChangePos(){return Math.min(this.cursorPos,this.oldSelection.start)}get insertedCount(){return this.cursorPos-this.startChangePos}get inserted(){return this.value.substr(this.startChangePos,this.insertedCount)}get removedCount(){return Math.max(this.oldSelection.end-this.startChangePos||this.oldValue.length-this.value.length,0)}get removed(){return this.oldValue.substr(this.startChangePos,this.removedCount)}get head(){return this.value.substring(0,this.startChangePos)}get tail(){return this.value.substring(this.startChangePos+this.insertedCount)}get removeDirection(){return!this.removedCount||this.insertedCount?DIRECTION.NONE:this.oldSelection.end===this.cursorPos||this.oldSelection.start===this.cursorPos?DIRECTION.RIGHT:DIRECTION.LEFT}}class ChangeDetails{constructor(e){Object.assign(this,{inserted:"",rawInserted:"",skip:!1,tailShift:0},e)}aggregate(e){return this.rawInserted+=e.rawInserted,this.skip=this.skip||e.skip,this.inserted+=e.inserted,this.tailShift+=e.tailShift,this}get offset(){return this.tailShift+this.inserted.length}}class Masked{constructor(e){this._value="",this._update(e),this.isInitialized=!0}updateOptions(e){this.withValueRefresh(this._update.bind(this,e))}_update(e){Object.assign(this,e)}get state(){return{_value:this.value}}set state(e){this._value=e._value}reset(){this._value=""}get value(){return this._value}set value(e){this.resolve(e)}resolve(e){return this.reset(),this.append(e,{input:!0},{value:""}),this.doCommit(),this.value}get unmaskedValue(){return this.value}set unmaskedValue(e){this.reset(),this.append(e,{},{value:""}),this.doCommit()}get typedValue(){return this.unmaskedValue}set typedValue(e){this.unmaskedValue=e}get rawInputValue(){return this.extractInput(0,this.value.length,{raw:!0})}set rawInputValue(e){this.reset(),this.append(e,{raw:!0},{value:""}),this.doCommit()}get isComplete(){return!0}nearestInputPos(e,t){return e}extractInput(e=0,t=this.value.length,s){return this.value.slice(e,t)}extractTail(e=0,t=this.value.length){return{value:this.extractInput(e,t)}}_storeBeforeTailState(){this._beforeTailState=this.state}_restoreBeforeTailState(){this.state=this._beforeTailState}_resetBeforeTailState(){this._beforeTailState=null}appendTail(e){return this.append(e?e.value:"",{tail:!0})}_appendCharRaw(e,t={}){return this._value+=e,new ChangeDetails({inserted:e,rawInserted:e})}_appendChar(e,t={},s){if(!(e=this.doPrepare(e,t)))return new ChangeDetails;const a=this.state,u=this._appendCharRaw(e,t);if(u.inserted){let e=!1!==this.doValidate(t);if(e&&null!=s){this._storeBeforeTailState();const t=this.appendTail(s);(e=t.rawInserted===s.value)&&t.inserted&&this._restoreBeforeTailState()}e||(u.rawInserted=u.inserted="",this.state=a)}return u}append(e,t,s){this.value.length;const a=new ChangeDetails;for(let u=0;u<e.length;++u)a.aggregate(this._appendChar(e[u],t,s));return null!=s&&(this._storeBeforeTailState(),a.tailShift+=this.appendTail(s).tailShift),a}remove(e=0,t=this.value.length){return this._value=this.value.slice(0,e)+this.value.slice(t),new ChangeDetails}withValueRefresh(e){if(this._refreshing||!this.isInitialized)return e();this._refreshing=!0;const t=this.unmaskedValue,s=this.value,a=e();return this.resolve(s)!==s&&(this.unmaskedValue=t),delete this._refreshing,a}doPrepare(e,t={}){return this.prepare?this.prepare(e,this,t):e}doValidate(e){return(!this.validate||this.validate(this.value,this,e))&&(!this.parent||this.parent.doValidate(e))}doCommit(){this.commit&&this.commit(this.value,this)}splice(e,t,s,a){const u=e+t,i=this.extractTail(u);let r=this.nearestInputPos(e,a);return new ChangeDetails({tailShift:r-e}).aggregate(this.remove(r)).aggregate(this.append(s,{input:!0},i))}}function maskedClass(e){if(null==e)throw new Error("mask property should be defined");return e instanceof RegExp?g.IMask.MaskedRegExp:isString(e)?g.IMask.MaskedPattern:e instanceof Date||e===Date?g.IMask.MaskedDate:e instanceof Number||"number"==typeof e||e===Number?g.IMask.MaskedNumber:Array.isArray(e)||e===Array?g.IMask.MaskedDynamic:e.prototype instanceof g.IMask.Masked?e:e instanceof Function?g.IMask.MaskedFunction:(console.warn("Mask not found for mask",e),g.IMask.Masked)}function createMask(e){const t=(e=_objectSpread({},e)).mask;return t instanceof g.IMask.Masked?t:new(maskedClass(t))(e)}const DEFAULT_INPUT_DEFINITIONS={0:/\d/,a:/[\u0041-\u005A\u0061-\u007A\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/,"*":/./};class PatternInputDefinition{constructor(e){const t=e.mask,s=_objectWithoutProperties(e,["mask"]);this.masked=createMask({mask:t}),Object.assign(this,s)}reset(){this._isFilled=!1,this.masked.reset()}remove(e=0,t=this.value.length){return 0===e&&t>=1?(this._isFilled=!1,this.masked.remove(e,t)):new ChangeDetails}get value(){return this.masked.value||(this._isFilled&&!this.isOptional?this.placeholderChar:"")}get unmaskedValue(){return this.masked.unmaskedValue}get isComplete(){return Boolean(this.masked.value)||this.isOptional}_appendChar(e,t={}){if(this._isFilled)return new ChangeDetails;const s=this.masked.state,a=this.masked._appendChar(e,t);return a.inserted&&!1===this.doValidate(t)&&(a.inserted=a.rawInserted="",this.masked.state=s),a.inserted||this.isOptional||this.lazy||t.input||(a.inserted=this.placeholderChar),a.skip=!a.inserted&&!this.isOptional,this._isFilled=Boolean(a.inserted),a}_appendPlaceholder(){const e=new ChangeDetails;return this._isFilled||this.isOptional?e:(this._isFilled=!0,e.inserted=this.placeholderChar,e)}extractTail(...e){return this.masked.extractTail(...e)}appendTail(...e){return this.masked.appendTail(...e)}extractInput(e=0,t=this.value.length,s){return this.masked.extractInput(e,t,s)}nearestInputPos(e,t=DIRECTION.NONE){const s=this.value.length,a=Math.min(Math.max(e,0),s);switch(t){case DIRECTION.LEFT:case DIRECTION.FORCE_LEFT:return this.isComplete?a:0;case DIRECTION.RIGHT:case DIRECTION.FORCE_RIGHT:return this.isComplete?a:s;case DIRECTION.NONE:default:return a}}doValidate(...e){return this.masked.doValidate(...e)&&(!this.parent||this.parent.doValidate(...e))}doCommit(){this.masked.doCommit()}get state(){return{masked:this.masked.state,_isFilled:this._isFilled}}set state(e){this.masked.state=e.masked,this._isFilled=e._isFilled}}class PatternFixedDefinition{constructor(e){Object.assign(this,e),this._value=""}get value(){return this._value}get unmaskedValue(){return this.isUnmasking?this.value:""}reset(){this._isRawInput=!1,this._value=""}remove(e=0,t=this._value.length){return this._value=this._value.slice(0,e)+this._value.slice(t),this._value||(this._isRawInput=!1),new ChangeDetails}nearestInputPos(e,t=DIRECTION.NONE){const s=this._value.length;switch(t){case DIRECTION.LEFT:case DIRECTION.FORCE_LEFT:return 0;case DIRECTION.NONE:case DIRECTION.RIGHT:case DIRECTION.FORCE_RIGHT:default:return s}}extractInput(e=0,t=this._value.length,s={}){return s.raw&&this._isRawInput&&this._value.slice(e,t)||""}get isComplete(){return!0}_appendChar(e,t){const s=new ChangeDetails;if(this._value)return s;const a=this.char===e[0]&&(this.isUnmasking||t.input||t.raw)&&!t.tail;return a&&(s.rawInserted=this.char),this._value=s.inserted=this.char,this._isRawInput=a&&(t.raw||t.input),s}_appendPlaceholder(){const e=new ChangeDetails;return this._value?e:(this._value=e.inserted=this.char,e)}extractTail(e=0,t=this.value.length){return{value:""}}appendTail(e){return this._appendChar(e?e.value:"",{tail:!0})}doCommit(){}get state(){return{_value:this._value,_isRawInput:this._isRawInput}}set state(e){Object.assign(this,e)}}class ChunksTailDetails{constructor(e){this.chunks=e}get value(){return this.chunks.map(e=>e.value).join("")}}class MaskedPattern extends Masked{constructor(e={}){e.definitions=Object.assign({},DEFAULT_INPUT_DEFINITIONS,e.definitions),super(_objectSpread({},MaskedPattern.DEFAULTS,e))}_update(e={}){e.definitions=Object.assign({},this.definitions,e.definitions),super._update(e),this._rebuildMask()}_rebuildMask(){const e=this.definitions;this._blocks=[],this._stops=[],this._maskedBlocks={};let t=this.mask;if(!t||!e)return;let s=!1,a=!1;for(let u=0;u<t.length;++u){if(this.blocks){const e=t.slice(u),s=Object.keys(this.blocks).filter(t=>0===e.indexOf(t));s.sort((e,t)=>t.length-e.length);const a=s[0];if(a){const e=createMask(_objectSpread({parent:this,lazy:this.lazy,placeholderChar:this.placeholderChar},this.blocks[a]));e&&(this._blocks.push(e),this._maskedBlocks[a]||(this._maskedBlocks[a]=[]),this._maskedBlocks[a].push(this._blocks.length-1)),u+=a.length-1;continue}}let i,r=t[u],n=r in e;if(r!==MaskedPattern.STOP_CHAR)if("{"!==r&&"}"!==r)if("["!==r&&"]"!==r){if(r===MaskedPattern.ESCAPE_CHAR){if(!(r=t[++u]))break;n=!1}i=n?new PatternInputDefinition({parent:this,lazy:this.lazy,placeholderChar:this.placeholderChar,mask:e[r],isOptional:a}):new PatternFixedDefinition({char:r,isUnmasking:s}),this._blocks.push(i)}else a=!a;else s=!s;else this._stops.push(this._blocks.length)}}get state(){return _objectSpread({},super.state,{_blocks:this._blocks.map(e=>e.state)})}set state(e){const t=e._blocks,s=_objectWithoutProperties(e,["_blocks"]);this._blocks.forEach((e,s)=>e.state=t[s]),super.state=s}_storeBeforeTailState(){this._blocks.forEach(e=>{"function"==typeof e._storeBeforeTailState&&e._storeBeforeTailState()}),super._storeBeforeTailState()}_restoreBeforeTailState(){this._blocks.forEach(e=>{"function"==typeof e._restoreBeforeTailState&&e._restoreBeforeTailState()}),super._restoreBeforeTailState()}_resetBeforeTailState(){this._blocks.forEach(e=>{"function"==typeof e._resetBeforeTailState&&e._resetBeforeTailState()}),super._resetBeforeTailState()}reset(){super.reset(),this._blocks.forEach(e=>e.reset())}get isComplete(){return this._blocks.every(e=>e.isComplete)}doCommit(){this._blocks.forEach(e=>e.doCommit()),super.doCommit()}get unmaskedValue(){return this._blocks.reduce((e,t)=>e+=t.unmaskedValue,"")}set unmaskedValue(e){super.unmaskedValue=e}get value(){return this._blocks.reduce((e,t)=>e+=t.value,"")}set value(e){super.value=e}appendTail(e){const t=new ChangeDetails;return e&&t.aggregate(e instanceof ChunksTailDetails?this._appendTailChunks(e.chunks):super.appendTail(e)),t.aggregate(this._appendPlaceholder())}_appendCharRaw(e,t={}){const s=this._mapPosToBlock(this.value.length),a=new ChangeDetails;if(!s)return a;for(let u=s.index;;++u){const s=this._blocks[u];if(!s)break;const i=s._appendChar(e,t),r=i.skip;if(a.aggregate(i),r||i.rawInserted)break}return a}_appendTailChunks(e){const t=new ChangeDetails;for(let s=0;s<e.length&&!t.skip;++s){const a=e[s],u=this._mapPosToBlock(this.value.length),i=a instanceof ChunksTailDetails&&null!=a.index&&(!u||u.index<=a.index)&&this._blocks[a.index];if(i){t.aggregate(this._appendPlaceholder(a.index));const e=i.appendTail(a);e.skip=!1,t.aggregate(e),this._value+=e.inserted;const s=a.value.slice(e.rawInserted.length);s&&t.aggregate(this.append(s,{tail:!0}))}else{const e=a,s=e.stop,u=e.value;null!=s&&this._stops.indexOf(s)>=0&&t.aggregate(this._appendPlaceholder(s)),t.aggregate(this.append(u,{tail:!0}))}}return t}extractTail(e=0,t=this.value.length){return new ChunksTailDetails(this._extractTailChunks(e,t))}extractInput(e=0,t=this.value.length,s={}){if(e===t)return"";let a="";return this._forEachBlocksInRange(e,t,(e,t,u,i)=>{a+=e.extractInput(u,i,s)}),a}_extractTailChunks(e=0,t=this.value.length){if(e===t)return[];const s=[];let a;return this._forEachBlocksInRange(e,t,(e,t,u,i)=>{const r=e.extractTail(u,i);let n;for(let e=0;e<this._stops.length;++e){const s=this._stops[e];if(!(s<=t))break;n=s}if(r instanceof ChunksTailDetails){if(null==n){let e=r.chunks.length;for(let t=0;t<r.chunks.length;++t)if(null!=r.chunks[t].stop){e=t;break}r.chunks.splice(0,e).filter(e=>e.value).forEach(e=>{a?a.value+=e.value:a={value:e.value}})}r.chunks.length&&(a&&s.push(a),r.index=n,s.push(r),a=null)}else{if(null!=n)a&&s.push(a),r.stop=n;else if(a)return void(a.value+=r.value);a=r}}),a&&a.value&&s.push(a),s}_appendPlaceholder(e){const t=new ChangeDetails;if(this.lazy&&null==e)return t;const s=this._mapPosToBlock(this.value.length);if(!s)return t;const a=s.index,u=null!=e?e:this._blocks.length;return this._blocks.slice(a,u).forEach(e=>{if("function"==typeof e._appendPlaceholder){const s=null!=e._blocks?[e._blocks.length]:[],a=e._appendPlaceholder.apply(e,s);this._value+=a.inserted,t.aggregate(a)}}),t}_mapPosToBlock(e){let t="";for(let s=0;s<this._blocks.length;++s){const a=this._blocks[s],u=t.length;if(e<=(t+=a.value).length)return{index:s,offset:e-u}}}_blockStartPos(e){return this._blocks.slice(0,e).reduce((e,t)=>e+=t.value.length,0)}_forEachBlocksInRange(e,t=this.value.length,s){const a=this._mapPosToBlock(e);if(a){const e=this._mapPosToBlock(t),u=e&&a.index===e.index,i=a.offset,r=e&&u?e.offset:void 0;if(s(this._blocks[a.index],a.index,i,r),e&&!u){for(let t=a.index+1;t<e.index;++t)s(this._blocks[t],t);s(this._blocks[e.index],e.index,0,e.offset)}}}remove(e=0,t=this.value.length){const s=super.remove(e,t);return this._forEachBlocksInRange(e,t,(e,t,a,u)=>{s.aggregate(e.remove(a,u))}),s}nearestInputPos(e,t=DIRECTION.NONE){const s=this._mapPosToBlock(e)||{index:0,offset:0},a=s.offset,u=s.index,i=this._blocks[u];if(!i)return e;let r=a;0!==r&&r<i.value.length&&(r=i.nearestInputPos(a,forceDirection(t)));const n=r===i.value.length;if(!(0===r)&&!n)return this._blockStartPos(u)+r;const l=n?u+1:u;if(t===DIRECTION.NONE){if(l>0){const e=l-1,t=this._blocks[e],s=t.nearestInputPos(0,DIRECTION.NONE);if(!t.value.length||s!==t.value.length)return this._blockStartPos(l)}for(let e=l;e<this._blocks.length;++e){const t=this._blocks[e],s=t.nearestInputPos(0,DIRECTION.NONE);if(s!==t.value.length)return this._blockStartPos(e)+s}return this.value.length}if(t===DIRECTION.LEFT||t===DIRECTION.FORCE_LEFT){let s;for(let e=l;e<this._blocks.length;++e)if(this._blocks[e].value){s=e;break}if(null!=s){const e=this._blocks[s],t=e.nearestInputPos(0,DIRECTION.RIGHT);if(0===t&&e.unmaskedValue.length)return this._blockStartPos(s)+t}let a,u=-1;for(let e=l-1;e>=0;--e){const t=this._blocks[e],s=t.nearestInputPos(t.value.length,DIRECTION.FORCE_LEFT);if(null!=a||t.value&&0===s||(a=e),0!==s){if(s!==t.value.length)return this._blockStartPos(e)+s;u=e;break}}if(t===DIRECTION.LEFT)for(let t=u+1;t<=Math.min(l,this._blocks.length-1);++t){const s=this._blocks[t],a=s.nearestInputPos(0,DIRECTION.NONE),u=this._blockStartPos(t)+a;if((!s.value.length&&u===this.value.length||a!==s.value.length)&&u<=e)return u}if(u>=0)return this._blockStartPos(u)+this._blocks[u].value.length;if(t===DIRECTION.FORCE_LEFT||this.lazy&&!this.extractInput()&&!isInput(this._blocks[l]))return 0;if(null!=a)return this._blockStartPos(a);for(let e=l;e<this._blocks.length;++e){const t=this._blocks[e],s=t.nearestInputPos(0,DIRECTION.NONE);if(!t.value.length||s!==t.value.length)return this._blockStartPos(e)+s}return 0}if(t===DIRECTION.RIGHT||t===DIRECTION.FORCE_RIGHT){let s,a;for(let e=l;e<this._blocks.length;++e){const t=this._blocks[e],u=t.nearestInputPos(0,DIRECTION.NONE);if(u!==t.value.length){a=this._blockStartPos(e)+u,s=e;break}}if(null!=s&&null!=a){for(let e=s;e<this._blocks.length;++e){const t=this._blocks[e],s=t.nearestInputPos(0,DIRECTION.FORCE_RIGHT);if(s!==t.value.length)return this._blockStartPos(e)+s}return t===DIRECTION.FORCE_RIGHT?this.value.length:a}for(let t=Math.min(l,this._blocks.length-1);t>=0;--t){const s=this._blocks[t],a=s.nearestInputPos(s.value.length,DIRECTION.LEFT);if(0!==a){const s=this._blockStartPos(t)+a;if(s>=e)return s;break}}}return e}maskedBlock(e){return this.maskedBlocks(e)[0]}maskedBlocks(e){const t=this._maskedBlocks[e];return t?t.map(e=>this._blocks[e]):[]}}function isInput(e){if(!e)return!1;const t=e.value;return!t||e.nearestInputPos(0,DIRECTION.NONE)!==t.length}MaskedPattern.DEFAULTS={lazy:!0,placeholderChar:"_"},MaskedPattern.STOP_CHAR="`",MaskedPattern.ESCAPE_CHAR="\\",MaskedPattern.InputDefinition=PatternInputDefinition,MaskedPattern.FixedDefinition=PatternFixedDefinition;class MaskedRange extends MaskedPattern{get _matchFrom(){return this.maxLength-String(this.from).length}_update(e){let t=String(e.to).length;null!=e.maxLength&&(t=Math.max(t,e.maxLength)),e.maxLength=t;const s=String(e.to).padStart(t,"0"),a=String(e.from).padStart(t,"0");let u=0;for(;u<s.length&&s[u]===a[u];)++u;e.mask=s.slice(0,u).replace(/0/g,"\\0")+"0".repeat(t-u),super._update(e)}get isComplete(){return super.isComplete&&Boolean(this.value)}doValidate(...e){const t=this.value;let s="",a="";const u=_slicedToArray(t.match(/^(\D*)(\d*)(\D*)/)||[],3),i=u[1],r=u[2];return r&&(s="0".repeat(i.length)+r,a="9".repeat(i.length)+r),-1===t.search(/[^0]/)&&t.length<=this._matchFrom||(s=s.padEnd(this.maxLength,"0"),a=a.padEnd(this.maxLength,"9"),this.from<=Number(a)&&Number(s)<=this.to&&super.doValidate(...e))}}class MaskedDate extends MaskedPattern{constructor(e){super(_objectSpread({},MaskedDate.DEFAULTS,e))}_update(e){e.mask===Date&&delete e.mask,e.pattern&&(e.mask=e.pattern,delete e.pattern);const t=e.blocks;e.blocks=Object.assign({},MaskedDate.GET_DEFAULT_BLOCKS()),e.min&&(e.blocks.Y.from=e.min.getFullYear()),e.max&&(e.blocks.Y.to=e.max.getFullYear()),e.min&&e.max&&e.blocks.Y.from===e.blocks.Y.to&&(e.blocks.m.from=e.min.getMonth()+1,e.blocks.m.to=e.max.getMonth()+1,e.blocks.m.from===e.blocks.m.to&&(e.blocks.d.from=e.min.getDate(),e.blocks.d.to=e.max.getDate())),Object.assign(e.blocks,t),super._update(e)}doValidate(...e){const t=this.date;return super.doValidate(...e)&&(!this.isComplete||this.isDateExist(this.value)&&null!=t&&(null==this.min||this.min<=t)&&(null==this.max||t<=this.max))}isDateExist(e){return this.format(this.parse(e))===e}get date(){return this.isComplete?this.parse(this.value):null}set date(e){this.value=this.format(e)}get typedValue(){return this.date}set typedValue(e){this.date=e}}MaskedDate.DEFAULTS={pattern:"d{.}`m{.}`Y",format:e=>{return[String(e.getDate()).padStart(2,"0"),String(e.getMonth()+1).padStart(2,"0"),e.getFullYear()].join(".")},parse:e=>{const t=_slicedToArray(e.split("."),3),s=t[0],a=t[1],u=t[2];return new Date(u,a-1,s)}},MaskedDate.GET_DEFAULT_BLOCKS=(()=>({d:{mask:MaskedRange,from:1,to:31,maxLength:2},m:{mask:MaskedRange,from:1,to:12,maxLength:2},Y:{mask:MaskedRange,from:1900,to:9999}}));class MaskElement{get selectionStart(){let e;try{e=this._unsafeSelectionStart}catch(e){}return null!=e?e:this.value.length}get selectionEnd(){let e;try{e=this._unsafeSelectionEnd}catch(e){}return null!=e?e:this.value.length}select(e,t){if(null!=e&&null!=t&&(e!==this.selectionStart||t!==this.selectionEnd))try{this._unsafeSelect(e,t)}catch(e){}}_unsafeSelect(e,t){}get isActive(){return!1}bindEvents(e){}unbindEvents(){}}class HTMLMaskElement extends MaskElement{constructor(e){super(),this.input=e,this._handlers={}}get isActive(){return this.input===document.activeElement}get _unsafeSelectionStart(){return this.input.selectionStart}get _unsafeSelectionEnd(){return this.input.selectionEnd}_unsafeSelect(e,t){this.input.setSelectionRange(e,t)}get value(){return this.input.value}set value(e){this.input.value=e}bindEvents(e){Object.keys(e).forEach(t=>this._toggleEventHandler(HTMLMaskElement.EVENTS_MAP[t],e[t]))}unbindEvents(){Object.keys(this._handlers).forEach(e=>this._toggleEventHandler(e))}_toggleEventHandler(e,t){this._handlers[e]&&(this.input.removeEventListener(e,this._handlers[e]),delete this._handlers[e]),t&&(this.input.addEventListener(e,t),this._handlers[e]=t)}}HTMLMaskElement.EVENTS_MAP={selectionChange:"keydown",input:"input",drop:"drop",click:"click",focus:"focus",commit:"change"};class InputMask{constructor(e,t){this.el=e instanceof MaskElement?e:new HTMLMaskElement(e),this.masked=createMask(t),this._listeners={},this._value="",this._unmaskedValue="",this._saveSelection=this._saveSelection.bind(this),this._onInput=this._onInput.bind(this),this._onChange=this._onChange.bind(this),this._onDrop=this._onDrop.bind(this),this.alignCursor=this.alignCursor.bind(this),this.alignCursorFriendly=this.alignCursorFriendly.bind(this),this._bindEvents(),this.updateValue(),this._onChange()}get mask(){return this.masked.mask}set mask(e){if(null==e||e===this.masked.mask||e===Date&&this.masked instanceof MaskedDate)return;if(this.masked.constructor===maskedClass(e))return void this.masked.updateOptions({mask:e});const t=createMask({mask:e});t.unmaskedValue=this.masked.unmaskedValue,this.masked=t}get value(){return this._value}set value(e){this.masked.value=e,this.updateControl(),this.alignCursor()}get unmaskedValue(){return this._unmaskedValue}set unmaskedValue(e){this.masked.unmaskedValue=e,this.updateControl(),this.alignCursor()}get typedValue(){return this.masked.typedValue}set typedValue(e){this.masked.typedValue=e,this.updateControl(),this.alignCursor()}_bindEvents(){this.el.bindEvents({selectionChange:this._saveSelection,input:this._onInput,drop:this._onDrop,click:this.alignCursorFriendly,focus:this.alignCursorFriendly,commit:this._onChange})}_unbindEvents(){this.el.unbindEvents()}_fireEvent(e){const t=this._listeners[e];t&&t.forEach(e=>e())}get selectionStart(){return this._cursorChanging?this._changingCursorPos:this.el.selectionStart}get cursorPos(){return this._cursorChanging?this._changingCursorPos:this.el.selectionEnd}set cursorPos(e){this.el.isActive&&(this.el.select(e,e),this._saveSelection())}_saveSelection(){this.value!==this.el.value&&console.warn("Element value was changed outside of mask. Syncronize mask using `mask.updateValue()` to work properly."),this._selection={start:this.selectionStart,end:this.cursorPos}}updateValue(){this.masked.value=this.el.value}updateControl(){const e=this.masked.unmaskedValue,t=this.masked.value,s=this.unmaskedValue!==e||this.value!==t;this._unmaskedValue=e,this._value=t,this.el.value!==t&&(this.el.value=t),s&&this._fireChangeEvents()}updateOptions(e){e=_objectSpread({},e),this.mask=e.mask,delete e.mask,objectIncludes(this.masked,e)||this.masked.updateOptions(e),this.updateControl()}updateCursor(e){null!=e&&(this.cursorPos=e,this._delayUpdateCursor(e))}_delayUpdateCursor(e){this._abortUpdateCursor(),this._changingCursorPos=e,this._cursorChanging=setTimeout(()=>{this.el&&(this.cursorPos=this._changingCursorPos,this._abortUpdateCursor())},10)}_fireChangeEvents(){this._fireEvent("accept"),this.masked.isComplete&&this._fireEvent("complete")}_abortUpdateCursor(){this._cursorChanging&&(clearTimeout(this._cursorChanging),delete this._cursorChanging)}alignCursor(){this.cursorPos=this.masked.nearestInputPos(this.cursorPos,DIRECTION.LEFT)}alignCursorFriendly(){this.selectionStart===this.cursorPos&&this.alignCursor()}on(e,t){return this._listeners[e]||(this._listeners[e]=[]),this._listeners[e].push(t),this}off(e,t){if(!this._listeners[e])return;if(!t)return void delete this._listeners[e];const s=this._listeners[e].indexOf(t);return s>=0&&this._listeners[e].splice(s,1),this}_onInput(){if(this._abortUpdateCursor(),!this._selection)return this.updateValue();const e=new ActionDetails(this.el.value,this.cursorPos,this.value,this._selection),t=this.masked.splice(e.startChangePos,e.removed.length,e.inserted,e.removeDirection).offset,s=this.masked.nearestInputPos(e.startChangePos+t,e.removeDirection);this.updateControl(),this.updateCursor(s)}_onChange(){this.value!==this.el.value&&this.updateValue(),this.masked.doCommit(),this.updateControl()}_onDrop(e){e.preventDefault(),e.stopPropagation()}destroy(){this._unbindEvents(),this._listeners.length=0,delete this.el}}class MaskedEnum extends MaskedPattern{_update(e){e.enum&&(e.mask="*".repeat(e.enum[0].length)),super._update(e)}doValidate(...e){return this.enum.some(e=>e.indexOf(this.unmaskedValue)>=0)&&super.doValidate(...e)}}class MaskedNumber extends Masked{constructor(e){super(_objectSpread({},MaskedNumber.DEFAULTS,e))}_update(e){super._update(e),this._updateRegExps()}_updateRegExps(){let e="",t="";this.allowNegative?(e+="([+|\\-]?|([+|\\-]?(0|([1-9]+\\d*))))",t+="[+|\\-]?"):e+="(0|([1-9]+\\d*))",t+="\\d*";let s=(this.scale?"("+this.radix+"\\d{0,"+this.scale+"})?":"")+"$";this._numberRegExpInput=new RegExp("^"+e+s),this._numberRegExp=new RegExp("^"+t+s),this._mapToRadixRegExp=new RegExp("["+this.mapToRadix.map(escapeRegExp).join("")+"]","g"),this._thousandsSeparatorRegExp=new RegExp(escapeRegExp(this.thousandsSeparator),"g")}extractTail(e=0,t=this.value.length){const s=super.extractTail(e,t);return _objectSpread({},s,{value:this._removeThousandsSeparators(s.value)})}_removeThousandsSeparators(e){return e.replace(this._thousandsSeparatorRegExp,"")}_insertThousandsSeparators(e){const t=e.split(this.radix);return t[0]=t[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.thousandsSeparator),t.join(this.radix)}doPrepare(e,...t){return super.doPrepare(this._removeThousandsSeparators(e.replace(this._mapToRadixRegExp,this.radix)),...t)}_separatorsCount(e=this._value){let t=this._removeThousandsSeparators(e).length,s=t;for(let e=0;e<=s;++e)this._value[e]===this.thousandsSeparator&&++s;return s-t}_appendCharRaw(e,t={}){if(!this.thousandsSeparator)return super._appendCharRaw(e,t);const s=this._separatorsCount(t.tail&&this._beforeTailState?this._beforeTailState._value:this._value);this._value=this._removeThousandsSeparators(this.value);const a=super._appendCharRaw(e,t);this._value=this._insertThousandsSeparators(this._value);const u=this._separatorsCount(t.tail&&this._beforeTailState?this._beforeTailState._value:this._value);return a.tailShift+=u-s,a}remove(e=0,t=this.value.length){const s=this.value.slice(0,e),a=this.value.slice(t),u=this._separatorsCount(s);this._value=this._insertThousandsSeparators(this._removeThousandsSeparators(s+a));const i=this._separatorsCount(s);return new ChangeDetails({tailShift:i-u})}nearestInputPos(e,t){if(!t)return e;const s=indexInDirection(e,t);return this.value[s]===this.thousandsSeparator&&(e=posInDirection(e,t)),e}doValidate(e){let t=(e.input?this._numberRegExpInput:this._numberRegExp).test(this._removeThousandsSeparators(this.value));if(t){const e=this.number;t=t&&!isNaN(e)&&(null==this.min||this.min>=0||this.min<=this.number)&&(null==this.max||this.max<=0||this.number<=this.max)}return t&&super.doValidate(e)}doCommit(){const e=this.number;let t=e;null!=this.min&&(t=Math.max(t,this.min)),null!=this.max&&(t=Math.min(t,this.max)),t!==e&&(this.unmaskedValue=String(t));let s=this.value;this.normalizeZeros&&(s=this._normalizeZeros(s)),this.padFractionalZeros&&(s=this._padFractionalZeros(s)),this._value=this._insertThousandsSeparators(s),super.doCommit()}_normalizeZeros(e){const t=this._removeThousandsSeparators(e).split(this.radix);return t[0]=t[0].replace(/^(\D*)(0*)(\d*)/,(e,t,s,a)=>t+a),e.length&&!/\d$/.test(t[0])&&(t[0]=t[0]+"0"),t.length>1&&(t[1]=t[1].replace(/0*$/,""),t[1].length||(t.length=1)),this._insertThousandsSeparators(t.join(this.radix))}_padFractionalZeros(e){if(!e)return e;const t=e.split(this.radix);return t.length<2&&t.push(""),t[1]=t[1].padEnd(this.scale,"0"),t.join(this.radix)}get unmaskedValue(){return this._removeThousandsSeparators(this._normalizeZeros(this.value)).replace(this.radix,".")}set unmaskedValue(e){super.unmaskedValue=e.replace(".",this.radix)}get number(){return Number(this.unmaskedValue)}set number(e){this.unmaskedValue=String(e)}get typedValue(){return this.number}set typedValue(e){this.number=e}get allowNegative(){return this.signed||null!=this.min&&this.min<0||null!=this.max&&this.max<0}}MaskedNumber.DEFAULTS={radix:",",thousandsSeparator:"",mapToRadix:["."],scale:2,signed:!1,normalizeZeros:!0,padFractionalZeros:!1};class MaskedRegExp extends Masked{_update(e){e.validate=(t=>t.search(e.mask)>=0),super._update(e)}}class MaskedFunction extends Masked{_update(e){e.validate=e.mask,super._update(e)}}class MaskedDynamic extends Masked{constructor(e){super(_objectSpread({},MaskedDynamic.DEFAULTS,e)),this.currentMask=null}_update(e){super._update(e),this.compiledMasks=Array.isArray(e.mask)?e.mask.map(e=>createMask(e)):[]}_appendCharRaw(...e){const t=this._applyDispatch(...e);return this.currentMask&&t.aggregate(this.currentMask._appendChar(...e)),t}_storeBeforeTailState(){super._storeBeforeTailState(),this.currentMask&&this.currentMask._storeBeforeTailState()}_restoreBeforeTailState(){super._restoreBeforeTailState(),this.currentMask&&this.currentMask._restoreBeforeTailState()}_resetBeforeTailState(){super._resetBeforeTailState(),this.currentMask&&this.currentMask._resetBeforeTailState()}_applyDispatch(e="",t={}){const s=t.tail&&this._beforeTailState?this._beforeTailState._value:this.value,a=this.rawInputValue,u=t.tail&&this._beforeTailState?this._beforeTailState._rawInputValue:a,i=a.slice(u.length),r=this.currentMask,n=new ChangeDetails;if(this.currentMask=this.doDispatch(e,t),this.currentMask&&this.currentMask!==r){this.currentMask.reset();const e=this.currentMask.append(u,{raw:!0});n.tailShift=e.inserted.length-s.length,this._storeBeforeTailState(),i&&(n.tailShift+=this.currentMask.append(i,{raw:!0,tail:!0}).tailShift)}return n}doDispatch(e,t={}){return this.dispatch(e,this,t)}doValidate(...e){return super.doValidate(...e)&&(!this.currentMask||this.currentMask.doValidate(...e))}reset(){this.currentMask&&this.currentMask.reset(),this.compiledMasks.forEach(e=>e.reset())}get value(){return this.currentMask?this.currentMask.value:""}set value(e){super.value=e}get unmaskedValue(){return this.currentMask?this.currentMask.unmaskedValue:""}set unmaskedValue(e){super.unmaskedValue=e}get typedValue(){return this.currentMask?this.currentMask.typedValue:""}set typedValue(e){let t=String(e);this.currentMask&&(this.currentMask.typedValue=e,t=this.currentMask.unmaskedValue),this.unmaskedValue=t}get isComplete(){return!!this.currentMask&&this.currentMask.isComplete}remove(...e){const t=new ChangeDetails;return this.currentMask&&t.aggregate(this.currentMask.remove(...e)).aggregate(this._applyDispatch()),t}get state(){return _objectSpread({},super.state,{_rawInputValue:this.rawInputValue,compiledMasks:this.compiledMasks.map(e=>e.state),currentMaskRef:this.currentMask,currentMask:this.currentMask&&this.currentMask.state})}set state(e){const t=e.compiledMasks,s=e.currentMaskRef,a=e.currentMask,u=_objectWithoutProperties(e,["compiledMasks","currentMaskRef","currentMask"]);this.compiledMasks.forEach((e,s)=>e.state=t[s]),null!=s&&(this.currentMask=s,this.currentMask.state=a),super.state=u}extractInput(...e){return this.currentMask?this.currentMask.extractInput(...e):""}extractTail(...e){return this.currentMask?this.currentMask.extractTail(...e):super.extractTail(...e)}doCommit(){this.currentMask&&this.currentMask.doCommit(),super.doCommit()}nearestInputPos(...e){return this.currentMask?this.currentMask.nearestInputPos(...e):super.nearestInputPos(...e)}}function IMask(e,t={}){return new InputMask(e,t)}MaskedDynamic.DEFAULTS={dispatch:(e,t,s)=>{if(!t.compiledMasks.length)return;const a=t.rawInputValue,u=t.compiledMasks.map((t,u)=>{const i=t.state;t.rawInputValue=a,t.append(e,s);const r=t.rawInputValue.length;return t.state=i,{weight:r,index:u}});return u.sort((e,t)=>t.weight-e.weight),t.compiledMasks[u[0].index]}},IMask.InputMask=InputMask,IMask.Masked=Masked,IMask.MaskedPattern=MaskedPattern,IMask.MaskedEnum=MaskedEnum,IMask.MaskedRange=MaskedRange,IMask.MaskedNumber=MaskedNumber,IMask.MaskedDate=MaskedDate,IMask.MaskedRegExp=MaskedRegExp,IMask.MaskedFunction=MaskedFunction,IMask.MaskedDynamic=MaskedDynamic,IMask.createMask=createMask,IMask.MaskElement=MaskElement,IMask.HTMLMaskElement=HTMLMaskElement,g.IMask=IMask;export default IMask;
//# sourceMappingURL=imask.es.min.js.map

@@ -1,2 +0,2 @@

!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.IMask=e()}(this,function(){"use strict";var t=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},e={}.hasOwnProperty,u=function(t,u){return e.call(t,u)},n={}.toString,r=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==function(t){return n.call(t).slice(8,-1)}(t)?t.split(""):Object(t)},i=function(e){return r(t(e))},s=Math.ceil,a=Math.floor,o=function(t){return isNaN(t=+t)?0:(t>0?a:s)(t)},l=Math.min,h=function(t){return t>0?l(o(t),9007199254740991):0},c=Math.max,f=Math.min;function p(t,e){return t(e={exports:{}},e.exports),e.exports}var d,v,g=p(function(t){var e=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)}),y=g["__core-js_shared__"]||(g["__core-js_shared__"]={}),_=0,k=Math.random(),m=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++_+k).toString(36))},A=y[d="keys"]||(y[d]={}),F=(v=!1,function(t,e,u){var n,r=i(t),s=h(r.length),a=function(t,e){return(t=o(t))<0?c(t+e,0):f(t,e)}(u,s);if(v&&e!=e){for(;s>a;)if((n=r[a++])!=n)return!0}else for(;s>a;a++)if((v||a in r)&&r[a]===e)return v||a||0;return!v&&-1}),D=function(t){return A[t]||(A[t]=m(t))}("IE_PROTO"),E="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(","),C=Object.keys||function(t){return function(t,e){var n,r=i(t),s=0,a=[];for(n in r)n!=D&&u(r,n)&&a.push(n);for(;e.length>s;)u(r,n=e[s++])&&(~F(a,n)||a.push(n));return a}(t,E)},b=p(function(t){var e=t.exports={version:"2.5.5"};"number"==typeof __e&&(__e=e)}),B=(b.version,function(t){return"object"==typeof t?null!==t:"function"==typeof t}),P=function(t){if(!B(t))throw TypeError(t+" is not an object!");return t},w=function(t){try{return!!t()}catch(t){return!0}},S=!w(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}),O=g.document,x=B(O)&&B(O.createElement),T=!S&&!w(function(){return 7!=Object.defineProperty((t="div",x?O.createElement(t):{}),"a",{get:function(){return 7}}).a;var t}),I=Object.defineProperty,M={f:S?Object.defineProperty:function(t,e,u){if(P(t),e=function(t,e){if(!B(t))return t;var u,n;if(e&&"function"==typeof(u=t.toString)&&!B(n=u.call(t)))return n;if("function"==typeof(u=t.valueOf)&&!B(n=u.call(t)))return n;if(!e&&"function"==typeof(u=t.toString)&&!B(n=u.call(t)))return n;throw TypeError("Can't convert object to primitive value")}(e,!0),P(u),T)try{return I(t,e,u)}catch(t){}if("get"in u||"set"in u)throw TypeError("Accessors not supported!");return"value"in u&&(t[e]=u.value),t}},j=S?function(t,e,u){return M.f(t,e,function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}(1,u))}:function(t,e,u){return t[e]=u,t},V=p(function(t){var e=m("src"),n=Function.toString,r=(""+n).split("toString");b.inspectSource=function(t){return n.call(t)},(t.exports=function(t,n,i,s){var a="function"==typeof i;a&&(u(i,"name")||j(i,"name",n)),t[n]!==i&&(a&&(u(i,e)||j(i,e,t[n]?""+t[n]:r.join(String(n)))),t===g?t[n]=i:s?t[n]?t[n]=i:j(t,n,i):(delete t[n],j(t,n,i)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[e]||n.call(this)})}),R=function(t,e,u){if(function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!")}(t),void 0===e)return t;switch(u){case 1:return function(u){return t.call(e,u)};case 2:return function(u,n){return t.call(e,u,n)};case 3:return function(u,n,r){return t.call(e,u,n,r)}}return function(){return t.apply(e,arguments)}},H=function(t,e,u){var n,r,i,s,a=t&H.F,o=t&H.G,l=t&H.S,h=t&H.P,c=t&H.B,f=o?g:l?g[e]||(g[e]={}):(g[e]||{}).prototype,p=o?b:b[e]||(b[e]={}),d=p.prototype||(p.prototype={});for(n in o&&(u=e),u)i=((r=!a&&f&&void 0!==f[n])?f:u)[n],s=c&&r?R(i,g):h&&"function"==typeof i?R(Function.call,i):i,f&&V(f,n,i,t&H.U),p[n]!=i&&j(p,n,s),h&&d[n]!=i&&(d[n]=i)};g.core=b,H.F=1,H.G=2,H.S=4,H.P=8,H.B=16,H.W=32,H.U=64,H.R=128;var N,L,U,Y,z=H;N="keys",L=function(){return function(e){return C(function(e){return Object(t(e))}(e))}},U=(b.Object||{})[N]||Object[N],(Y={})[N]=L(U),z(z.S+z.F*w(function(){U(1)}),"Object",Y);b.Object.keys;var G=function(e){var u=String(t(this)),n="",r=o(e);if(r<0||r==1/0)throw RangeError("Count can't be negative");for(;r>0;(r>>>=1)&&(u+=u))1&r&&(n+=u);return n};z(z.P,"String",{repeat:G});b.String.repeat;var Z=function(e,u,n,r){var i=String(t(e)),s=i.length,a=void 0===n?" ":String(n),o=h(u);if(o<=s||""==a)return i;var l=o-s,c=G.call(a,Math.ceil(l/a.length));return c.length>l&&(c=c.slice(0,l)),r?c+i:i+c},W=g.navigator,$=W&&W.userAgent||"";z(z.P+z.F*/Version\/10\.\d+(\.\d+)? Safari\//.test($),"String",{padStart:function(t){return Z(this,t,arguments.length>1?arguments[1]:void 0,!0)}});b.String.padStart;z(z.P+z.F*/Version\/10\.\d+(\.\d+)? Safari\//.test($),"String",{padEnd:function(t){return Z(this,t,arguments.length>1?arguments[1]:void 0,!1)}});b.String.padEnd;var X="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},q=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},J=function(){function t(t,e){for(var u=0;u<e.length;u++){var n=e[u];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,u,n){return u&&t(e.prototype,u),n&&t(e,n),e}}(),K=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var u=arguments[e];for(var n in u)Object.prototype.hasOwnProperty.call(u,n)&&(t[n]=u[n])}return t},Q=function t(e,u,n){null===e&&(e=Function.prototype);var r=Object.getOwnPropertyDescriptor(e,u);if(void 0===r){var i=Object.getPrototypeOf(e);return null===i?void 0:t(i,u,n)}if("value"in r)return r.value;var s=r.get;return void 0!==s?s.call(n):void 0},tt=function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)},et=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e},ut=function t(e,u,n,r){var i=Object.getOwnPropertyDescriptor(e,u);if(void 0===i){var s=Object.getPrototypeOf(e);null!==s&&t(s,u,n,r)}else if("value"in i&&i.writable)i.value=n;else{var a=i.set;void 0!==a&&a.call(r,n)}return n},nt=function(){return function(t,e){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return function(t,e){var u=[],n=!0,r=!1,i=void 0;try{for(var s,a=t[Symbol.iterator]();!(n=(s=a.next()).done)&&(u.push(s.value),!e||u.length!==e);n=!0);}catch(t){r=!0,i=t}finally{try{!n&&a.return&&a.return()}finally{if(r)throw i}}return u}(t,e);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),rt=function(t){if(Array.isArray(t)){for(var e=0,u=Array(t.length);e<t.length;e++)u[e]=t[e];return u}return Array.from(t)};function it(t){return"string"==typeof t||t instanceof String}function st(t,e){var u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";return it(t)?t:t?e:u}var at={NONE:0,LEFT:-1,RIGHT:1};function ot(t,e){return e===at.LEFT&&--t,t}function lt(t){return t.replace(/([.*+?^=!:${}()|[\]/\\])/g,"\\$1")}var ht="undefined"!=typeof window&&window||"undefined"!=typeof global&&global.global===global&&global||"undefined"!=typeof self&&self.self===self&&self||{},ct=function(){function t(e,u,n,r){for(q(this,t),this.value=e,this.cursorPos=u,this.oldValue=n,this.oldSelection=r;this.value.slice(0,this.startChangePos)!==this.oldValue.slice(0,this.startChangePos);)--this.oldSelection.start}return J(t,[{key:"startChangePos",get:function(){return Math.min(this.cursorPos,this.oldSelection.start)}},{key:"insertedCount",get:function(){return this.cursorPos-this.startChangePos}},{key:"inserted",get:function(){return this.value.substr(this.startChangePos,this.insertedCount)}},{key:"removedCount",get:function(){return Math.max(this.oldSelection.end-this.startChangePos||this.oldValue.length-this.value.length,0)}},{key:"removed",get:function(){return this.oldValue.substr(this.startChangePos,this.removedCount)}},{key:"head",get:function(){return this.value.substring(0,this.startChangePos)}},{key:"tail",get:function(){return this.value.substring(this.startChangePos+this.insertedCount)}},{key:"removeDirection",get:function(){return!this.removedCount||this.insertedCount?at.NONE:this.oldSelection.end===this.cursorPos||this.oldSelection.start===this.cursorPos?at.RIGHT:at.LEFT}}]),t}(),ft=function(){function t(e){q(this,t),K(this,{inserted:"",overflow:!1,shift:0},e)}return J(t,[{key:"aggregate",value:function(t){return t.rawInserted&&(this.rawInserted+=t.rawInserted),this.inserted+=t.inserted,this.shift+=t.shift,this.overflow=this.overflow||t.overflow,this}},{key:"offset",get:function(){return this.shift+this.inserted.length}},{key:"rawInserted",get:function(){return null!=this._rawInserted?this._rawInserted:this.inserted},set:function(t){this._rawInserted=t}}]),t}(),pt=function(){function t(e){q(this,t),this._value="",this._update(e),this.isInitialized=!0}return J(t,[{key:"updateOptions",value:function(t){this.withValueRefresh(this._update.bind(this,t))}},{key:"_update",value:function(t){K(this,t)}},{key:"clone",value:function(){var e=new t(this);return e._value=this.value.slice(),e}},{key:"assign",value:function(t){return K(this,t)}},{key:"reset",value:function(){this._value=""}},{key:"resolve",value:function(t){return this.reset(),this._append(t,{input:!0}),this._appendTail(),this.doCommit(),this.value}},{key:"nearestInputPos",value:function(t,e){return t}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return this.value.slice(t,e)}},{key:"_extractTail",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return{value:this.extractInput(t,e),fromPos:t,toPos:e}}},{key:"_appendTail",value:function(t){return this._append(t?t.value:"",{tail:!0})}},{key:"_append",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},u=this.value.length,n=this.clone(),r=!1;t=this.doPrepare(t,e);for(var i=0;i<t.length;++i){if(this._value+=t[i],!1===this.doValidate(e)&&(this.assign(n),!e.input)){r=!0;break}n=this.clone()}return new ft({inserted:this.value.slice(u),overflow:r})}},{key:"appendWithTail",value:function(t,e){for(var u=new ft,n=this.clone(),r=void 0,i=0;i<t.length;++i){var s=t[i],a=this._append(s,{input:!0});if(r=this.clone(),!(!a.overflow&&!this._appendTail(e).overflow)||!1===this.doValidate({tail:!0})){this.assign(n);break}this.assign(r),n=this.clone(),u.aggregate(a)}return u.shift+=this._appendTail(e).shift,u}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length-t;return this._value=this.value.slice(0,t)+this.value.slice(t+e),new ft}},{key:"withValueRefresh",value:function(t){if(this._refreshing||!this.isInitialized)return t();this._refreshing=!0;var e=this.unmaskedValue,u=this.value,n=t();return this.resolve(u)!==u&&(this.unmaskedValue=e),delete this._refreshing,n}},{key:"doPrepare",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.prepare?this.prepare(t,this,e):t}},{key:"doValidate",value:function(t){return!this.validate||this.validate(this.value,this,t)}},{key:"doCommit",value:function(){this.commit&&this.commit(this.value,this)}},{key:"splice",value:function(t,e,u,n){var r=t+e,i=this._extractTail(r),s=this.nearestInputPos(t,n);return new ft({shift:s-t}).aggregate(this.remove(s)).aggregate(this.appendWithTail(u,i))}},{key:"value",get:function(){return this._value},set:function(t){this.resolve(t)}},{key:"unmaskedValue",get:function(){return this.value},set:function(t){this.reset(),this._append(t),this._appendTail(),this.doCommit()}},{key:"typedValue",get:function(){return this.unmaskedValue},set:function(t){this.unmaskedValue=t}},{key:"rawInputValue",get:function(){return this.extractInput(0,this.value.length,{raw:!0})},set:function(t){this.reset(),this._append(t,{raw:!0}),this._appendTail(),this.doCommit()}},{key:"isComplete",get:function(){return!0}}]),t}();function dt(t){if(null==t)throw new Error("mask property should be defined");return t instanceof RegExp?ht.IMask.MaskedRegExp:it(t)?ht.IMask.MaskedPattern:t instanceof Date||t===Date?ht.IMask.MaskedDate:t instanceof Number||"number"==typeof t||t===Number?ht.IMask.MaskedNumber:Array.isArray(t)||t===Array?ht.IMask.MaskedDynamic:t.prototype instanceof ht.IMask.Masked?t:t instanceof Function?ht.IMask.MaskedFunction:(console.warn("Mask not found for mask",t),ht.IMask.Masked)}function vt(t){var e=(t=K({},t)).mask;return e instanceof ht.IMask.Masked?e:new(dt(e))(t)}var gt=function(){function t(e){q(this,t),K(this,e),this.mask&&(this._masked=vt(e))}return J(t,[{key:"reset",value:function(){this.isHollow=!1,this.isRawInput=!1,this._masked&&this._masked.reset()}},{key:"resolve",value:function(t){return!!this._masked&&this._masked.resolve(t)}},{key:"isInput",get:function(){return this.type===t.TYPES.INPUT}},{key:"isHiddenHollow",get:function(){return this.isHollow&&this.optional}}]),t}();gt.DEFAULTS={0:/\d/,a:/[\u0041-\u005A\u0061-\u007A\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/,"*":/./},gt.TYPES={INPUT:"input",FIXED:"fixed"};var yt=function(){function t(e,u){var n=u.name,r=u.offset,i=u.mask,s=u.validate;q(this,t),this.masked=e,this.name=n,this.offset=r,this.mask=i,this.validate=s||function(){return!0}}return J(t,[{key:"doValidate",value:function(t){return this.validate(this.value,this,t)}},{key:"value",get:function(){return this.masked.value.slice(this.masked.mapDefIndexToPos(this.offset),this.masked.mapDefIndexToPos(this.offset+this.mask.length))}},{key:"unmaskedValue",get:function(){return this.masked.extractInput(this.masked.mapDefIndexToPos(this.offset),this.masked.mapDefIndexToPos(this.offset+this.mask.length))}}]),t}(),_t=function(){function t(e){var u=nt(e,2),n=u[0],r=u[1],i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:String(r).length;q(this,t),this._from=n,this._to=r,this._maxLength=i,this.validate=this.validate.bind(this),this._update()}return J(t,[{key:"_update",value:function(){this._maxLength=Math.max(this._maxLength,String(this.to).length),this.mask="0".repeat(this._maxLength)}},{key:"validate",value:function(t){var e="",u="",n=t.match(/^(\D*)(\d*)(\D*)/)||[],r=nt(n,3),i=r[1],s=r[2];return s&&(e="0".repeat(i.length)+s,u="9".repeat(i.length)+s),-1===t.search(/[^0]/)&&t.length<=this._matchFrom||(e=e.padEnd(this._maxLength,"0"),u=u.padEnd(this._maxLength,"9"),this.from<=Number(u)&&Number(e)<=this.to)}},{key:"to",get:function(){return this._to},set:function(t){this._to=t,this._update()}},{key:"from",get:function(){return this._from},set:function(t){this._from=t,this._update()}},{key:"maxLength",get:function(){return this._maxLength},set:function(t){this._maxLength=t,this._update()}},{key:"_matchFrom",get:function(){return this.maxLength-String(this.from).length}}]),t}();yt.Range=_t,yt.Enum=function(t){return{mask:"*".repeat(t[0].length),validate:function(e,u,n){return t.some(function(t){return t.indexOf(u.unmaskedValue)>=0})}}};var kt=function(){function t(e){q(this,t),this.chunks=e}return J(t,[{key:"value",get:function(){return this.chunks.map(function(t){return t.value}).join("")}},{key:"fromPos",get:function(){var t=this.chunks[0];return t&&t.stop}},{key:"toPos",get:function(){var t=this.chunks[this.chunks.length-1];return t&&t.stop}}]),t}(),mt=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return q(this,e),t.definitions=K({},gt.DEFAULTS,t.definitions),et(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,K({},e.DEFAULTS,t)))}return tt(e,pt),J(e,[{key:"_update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t.definitions=K({},this.definitions,t.definitions),Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_update",this).call(this,t),this._rebuildMask()}},{key:"_rebuildMask",value:function(){var t=this,u=this.definitions;this._charDefs=[],this._groupDefs=[];var n=this.mask;if(n&&u){var r=!1,i=!1,s=!1,a=function(a){if(t.groups){var l=n.slice(a),h=Object.keys(t.groups).filter(function(t){return 0===l.indexOf(t)});h.sort(function(t,e){return e.length-t.length});var c=h[0];if(c){var f=t.groups[c];t._groupDefs.push(new yt(t,{name:c,offset:t._charDefs.length,mask:f.mask,validate:f.validate})),n=n.replace(c,f.mask)}}var p=n[a],d=p in u?gt.TYPES.INPUT:gt.TYPES.FIXED,v=d===gt.TYPES.INPUT||r,g=d===gt.TYPES.INPUT&&i;if(p===e.STOP_CHAR)return s=!0,"continue";if("{"===p||"}"===p)return r=!r,"continue";if("["===p||"]"===p)return i=!i,"continue";if(p===e.ESCAPE_CHAR){if(!(p=n[++a]))return"break";d=gt.TYPES.FIXED}t._charDefs.push(new gt({char:p,type:d,optional:g,stopAlign:s,unmasking:v,mask:d===gt.TYPES.INPUT?u[p]:function(t){return t===p}})),s=!1,o=a};t:for(var o=0;o<n.length;++o){switch(a(o)){case"continue":continue;case"break":break t}}}}},{key:"doValidate",value:function(){for(var t,u=arguments.length,n=Array(u),r=0;r<u;r++)n[r]=arguments[r];return this._groupDefs.every(function(t){return t.doValidate.apply(t,rt(n))})&&(t=Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"doValidate",this)).call.apply(t,[this].concat(rt(n)))}},{key:"clone",value:function(){var t=this,u=new e(this);return u._value=this.value,u._charDefs.forEach(function(e,u){return K(e,t._charDefs[u])}),u._groupDefs.forEach(function(e,u){return K(e,t._groupDefs[u])}),u}},{key:"reset",value:function(){Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"reset",this).call(this),this._charDefs.forEach(function(t){delete t.isHollow})}},{key:"hiddenHollowsBefore",value:function(t){return this._charDefs.slice(0,t).filter(function(t){return t.isHiddenHollow}).length}},{key:"mapDefIndexToPos",value:function(t){return t-this.hiddenHollowsBefore(t)}},{key:"mapPosToDefIndex",value:function(t){for(var e=t,u=0;u<this._charDefs.length;++u){var n=this._charDefs[u];if(u>=e)break;n.isHiddenHollow&&++e}return e}},{key:"_appendTail",value:function(t){var u=new ft;return t&&u.aggregate(t instanceof kt?this._appendChunks(t.chunks,{tail:!0}):Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_appendTail",this).call(this,t)),u.aggregate(this._appendPlaceholder())}},{key:"_append",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},u=this.value.length,n="",r=!1;t=this.doPrepare(t,e);for(var i=0,s=this.mapPosToDefIndex(this.value.length);i<t.length;){var a=t[i],o=this._charDefs[s];if(null==o){r=!0;break}o.isHollow=!1;var l=void 0,h=void 0,c=st(o.resolve(a),a);o.type===gt.TYPES.INPUT?(c&&(this._value+=c,this.doValidate()||(c="",this._value=this.value.slice(0,-1))),l=!!c,h=!c&&!o.optional,c?n+=c:(o.optional||e.input||this.lazy||(this._value+=this.placeholderChar,h=!1),h||(o.isHollow=!0))):(this._value+=o.char,l=c&&(o.unmasking||e.input||e.raw)&&!e.tail,o.isRawInput=l&&(e.raw||e.input),o.isRawInput&&(n+=o.char)),h||++s,(l||h)&&++i}return new ft({inserted:this.value.slice(u),rawInserted:n,overflow:r})}},{key:"_appendChunks",value:function(t){for(var e=new ft,u=arguments.length,n=Array(u>1?u-1:0),r=1;r<u;r++)n[r-1]=arguments[r];for(var i=0;i<t.length;++i){var s=t[i],a=s.stop,o=s.value,l=null!=a&&this._charDefs[a];if(l&&l.stopAlign&&e.aggregate(this._appendPlaceholder(a)),e.aggregate(this._append.apply(this,[o].concat(rt(n)))).overflow)break}return e}},{key:"_extractTail",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return new kt(this._extractInputChunks(t,e))}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(t===e)return"";for(var n=this.value,r="",i=this.mapPosToDefIndex(e),s=t,a=this.mapPosToDefIndex(t);s<e&&s<n.length&&a<i;++a){var o=n[s],l=this._charDefs[a];if(!l)break;l.isHiddenHollow||((l.isInput&&!l.isHollow||u.raw&&!l.isInput&&l.isRawInput)&&(r+=o),++s)}return r}},{key:"_extractInputChunks",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,u=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;if(e===u)return[];var n=this.mapPosToDefIndex(e),r=this.mapPosToDefIndex(u),i=this._charDefs.map(function(t,e){return[t,e]}).slice(n,r).filter(function(t){return nt(t,1)[0].stopAlign}).map(function(t){return nt(t,2)[1]}),s=[n].concat(rt(i),[r]);return s.map(function(e,u){return{stop:i.indexOf(e)>=0?e:null,value:t.extractInput(t.mapDefIndexToPos(e),t.mapDefIndexToPos(s[++u]))}}).filter(function(t){var e=t.stop,u=t.value;return null!=e||u})}},{key:"_appendPlaceholder",value:function(t){for(var e=this.value.length,u=t||this._charDefs.length,n=this.mapPosToDefIndex(this.value.length);n<u;++n){var r=this._charDefs[n];r.isInput&&(r.isHollow=!0),this.lazy&&!t||(this._value+=r.isInput||null==r.char?r.optional?"":this.placeholderChar:r.char)}return new ft({inserted:this.value.slice(e)})}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,u=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length-t,n=this.mapPosToDefIndex(t),r=this.mapPosToDefIndex(t+u);return this._charDefs.slice(n,r).forEach(function(t){return t.reset()}),Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"remove",this).call(this,t,u)}},{key:"nearestInputPos",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:at.NONE,u=e||at.RIGHT,n=this.mapPosToDefIndex(t),r=this._charDefs[n],i=n,s=void 0,a=void 0,o=void 0,l=void 0;if(e!==at.RIGHT&&(r&&r.isInput||e===at.NONE&&t===this.value.length)&&(s=n,r&&!r.isHollow&&(a=n)),null==a&&e==at.LEFT||null==s)for(l=ot(i,u);0<=l&&l<this._charDefs.length;i+=u,l+=u){var h=this._charDefs[l];if(null==s&&h.isInput&&(s=i,e===at.NONE))break;if(null==o&&h.isHollow&&!h.isHiddenHollow&&(o=i),h.isInput&&!h.isHollow){a=i;break}}if(e!==at.LEFT||0!==i||!this.lazy||this.extractInput()||r&&r.isInput||(s=0),e===at.LEFT||null==s){var c=!1;for(l=ot(i,u=-u);0<=l&&l<this._charDefs.length;i+=u,l+=u){var f=this._charDefs[l];if(f.isInput&&(s=i,f.isHollow&&!f.isHiddenHollow))break;if(i===n&&(c=!0),c&&null!=s)break}(c=c||l>=this._charDefs.length)&&null!=s&&(i=s)}else null==a&&(i=null!=o?o:s);return this.mapDefIndexToPos(i)}},{key:"group",value:function(t){return this.groupsByName(t)[0]}},{key:"groupsByName",value:function(t){return this._groupDefs.filter(function(e){return e.name===t})}},{key:"isComplete",get:function(){var t=this;return!this._charDefs.some(function(e,u){return e.isInput&&!e.optional&&(e.isHollow||!t.extractInput(u,u+1))})}},{key:"unmaskedValue",get:function(){for(var t=this.value,e="",u=0,n=0;u<t.length&&n<this._charDefs.length;++n){var r=t[u],i=this._charDefs[n];i.isHiddenHollow||(i.unmasking&&!i.isHollow&&(e+=r),++u)}return e},set:function(t){ut(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"unmaskedValue",t,this)}}]),e}();mt.DEFAULTS={lazy:!0,placeholderChar:"_"},mt.STOP_CHAR="`",mt.ESCAPE_CHAR="\\",mt.Definition=gt,mt.Group=yt;var At=function(t){function e(t){return q(this,e),et(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,K({},e.DEFAULTS,t)))}return tt(e,mt),J(e,[{key:"_update",value:function(t){t.mask===Date&&delete t.mask,t.pattern&&(t.mask=t.pattern,delete t.pattern);var u=t.groups;t.groups=K({},e.GET_DEFAULT_GROUPS()),t.min&&(t.groups.Y.from=t.min.getFullYear()),t.max&&(t.groups.Y.to=t.max.getFullYear()),K(t.groups,u),Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_update",this).call(this,t)}},{key:"doValidate",value:function(){for(var t,u=arguments.length,n=Array(u),r=0;r<u;r++)n[r]=arguments[r];var i=(t=Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"doValidate",this)).call.apply(t,[this].concat(rt(n))),s=this.date;return i&&(!this.isComplete||this.isDateExist(this.value)&&s&&(null==this.min||this.min<=s)&&(null==this.max||s<=this.max))}},{key:"isDateExist",value:function(t){return this.format(this.parse(t))===t}},{key:"date",get:function(){return this.isComplete?this.parse(this.value):null},set:function(t){this.value=this.format(t)}},{key:"typedValue",get:function(){return this.date},set:function(t){this.date=t}}]),e}();At.DEFAULTS={pattern:"d{.}`m{.}`Y",format:function(t){return[String(t.getDate()).padStart(2,"0"),String(t.getMonth()+1).padStart(2,"0"),t.getFullYear()].join(".")},parse:function(t){var e=t.split("."),u=nt(e,3),n=u[0],r=u[1],i=u[2];return new Date(i,r-1,n)}},At.GET_DEFAULT_GROUPS=function(){return{d:new yt.Range([1,31]),m:new yt.Range([1,12]),Y:new yt.Range([1900,9999])}};var Ft=function(){function t(){q(this,t)}return J(t,[{key:"select",value:function(t,e){if(null!=t&&null!=e&&(t!==this.selectionStart||e!==this.selectionEnd))try{this._unsafeSelect(t,e)}catch(t){}}},{key:"_unsafeSelect",value:function(t,e){}},{key:"isActive",value:function(){return!1}},{key:"bindEvents",value:function(t){}},{key:"unbindEvents",value:function(){}},{key:"selectionStart",get:function(){var t=void 0;try{t=this._unsafeSelectionStart}catch(t){}return null!=t?t:this.value.length}},{key:"selectionEnd",get:function(){var t=void 0;try{t=this._unsafeSelectionEnd}catch(t){}return null!=t?t:this.value.length}}]),t}(),Dt=function(t){function e(t){q(this,e);var u=et(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return u.input=t,u._handlers={},u}return tt(e,Ft),J(e,[{key:"isActive",value:function(){return this.input===document.activeElement}},{key:"_unsafeSelect",value:function(t,e){this.input.setSelectionRange(t,e)}},{key:"bindEvents",value:function(t){var u=this;Object.keys(t).forEach(function(n){return u._toggleEventHandler(e.EVENTS_MAP[n],t[n])})}},{key:"unbindEvents",value:function(){var t=this;Object.keys(this._handlers).forEach(function(e){return t._toggleEventHandler(e)})}},{key:"_toggleEventHandler",value:function(t,e){this._handlers[t]&&(this.input.removeEventListener(t,this._handlers[t]),delete this._handlers[t]),e&&(this.input.addEventListener(t,e),this._handlers[t]=e)}},{key:"_unsafeSelectionStart",get:function(){return this.input.selectionStart}},{key:"_unsafeSelectionEnd",get:function(){return this.input.selectionEnd}},{key:"value",get:function(){return this.input.value},set:function(t){this.input.value=t}}]),e}();Dt.EVENTS_MAP={selectionChange:"keydown",input:"input",drop:"drop",click:"click",focus:"focus",commit:"change"};var Et=function(){function t(e,u){q(this,t),this.el=e instanceof Ft?e:new Dt(e),this.masked=vt(u),this._listeners={},this._value="",this._unmaskedValue="",this._saveSelection=this._saveSelection.bind(this),this._onInput=this._onInput.bind(this),this._onChange=this._onChange.bind(this),this._onDrop=this._onDrop.bind(this),this.alignCursor=this.alignCursor.bind(this),this.alignCursorFriendly=this.alignCursorFriendly.bind(this),this._bindEvents(),this.updateValue(),this._onChange()}return J(t,[{key:"_bindEvents",value:function(){this.el.bindEvents({selectionChange:this._saveSelection,input:this._onInput,drop:this._onDrop,click:this.alignCursorFriendly,focus:this.alignCursorFriendly,commit:this._onChange})}},{key:"_unbindEvents",value:function(){this.el.unbindEvents()}},{key:"_fireEvent",value:function(t){var e=this._listeners[t];e&&e.forEach(function(t){return t()})}},{key:"_saveSelection",value:function(){this.value!==this.el.value&&console.warn("Uncontrolled input change, refresh mask manually!"),this._selection={start:this.selectionStart,end:this.cursorPos}}},{key:"updateValue",value:function(){this.masked.value=this.el.value}},{key:"updateControl",value:function(){var t=this.masked.unmaskedValue,e=this.masked.value,u=this.unmaskedValue!==t||this.value!==e;this._unmaskedValue=t,this._value=e,this.el.value!==e&&(this.el.value=e),u&&this._fireChangeEvents()}},{key:"updateOptions",value:function(t){t=K({},t),this.mask=t.mask,delete t.mask,function t(e,u){if(u===e)return!0;var n,r=Array.isArray(u),i=Array.isArray(e);if(r&&i){if(u.length!=e.length)return!1;for(n=0;n<u.length;n++)if(!t(u[n],e[n]))return!1;return!0}if(r!=i)return!1;if(u&&e&&"object"===(void 0===u?"undefined":X(u))&&"object"===(void 0===e?"undefined":X(e))){var s=Object.keys(u),a=u instanceof Date,o=e instanceof Date;if(a&&o)return u.getTime()==e.getTime();if(a!=o)return!1;var l=u instanceof RegExp,h=e instanceof RegExp;if(l&&h)return u.toString()==e.toString();if(l!=h)return!1;for(n=0;n<s.length;n++)if(!Object.prototype.hasOwnProperty.call(e,s[n]))return!1;for(n=0;n<s.length;n++)if(!t(u[s[n]],e[s[n]]))return!1;return!0}return!1}(this.masked,t)||(this.masked.updateOptions(t),this.updateControl())}},{key:"updateCursor",value:function(t){null!=t&&(this.cursorPos=t,this._delayUpdateCursor(t))}},{key:"_delayUpdateCursor",value:function(t){var e=this;this._abortUpdateCursor(),this._changingCursorPos=t,this._cursorChanging=setTimeout(function(){e.el&&(e.cursorPos=e._changingCursorPos,e._abortUpdateCursor())},10)}},{key:"_fireChangeEvents",value:function(){this._fireEvent("accept"),this.masked.isComplete&&this._fireEvent("complete")}},{key:"_abortUpdateCursor",value:function(){this._cursorChanging&&(clearTimeout(this._cursorChanging),delete this._cursorChanging)}},{key:"alignCursor",value:function(){this.cursorPos=this.masked.nearestInputPos(this.cursorPos,at.LEFT)}},{key:"alignCursorFriendly",value:function(){this.selectionStart===this.cursorPos&&this.alignCursor()}},{key:"on",value:function(t,e){return this._listeners[t]||(this._listeners[t]=[]),this._listeners[t].push(e),this}},{key:"off",value:function(t,e){if(this._listeners[t]){if(e){var u=this._listeners[t].indexOf(e);return u>=0&&this._listeners[t].splice(u,1),this}delete this._listeners[t]}}},{key:"_onInput",value:function(){if(this._abortUpdateCursor(),!this._selection)return this.updateValue();var t=new ct(this.el.value,this.cursorPos,this.value,this._selection),e=this.masked.splice(t.startChangePos,t.removed.length,t.inserted,t.removeDirection).offset,u=this.masked.nearestInputPos(t.startChangePos+e,t.removeDirection);this.updateControl(),this.updateCursor(u)}},{key:"_onChange",value:function(){this.value!==this.el.value&&this.updateValue(),this.masked.doCommit(),this.updateControl()}},{key:"_onDrop",value:function(t){t.preventDefault(),t.stopPropagation()}},{key:"destroy",value:function(){this._unbindEvents(),this._listeners.length=0,delete this.el}},{key:"mask",get:function(){return this.masked.mask},set:function(t){if(!(null==t||t===this.masked.mask||t===Date&&this.masked instanceof At))if(this.masked.constructor!==dt(t)){var e=vt({mask:t});e.unmaskedValue=this.masked.unmaskedValue,this.masked=e}else this.masked.mask=t}},{key:"value",get:function(){return this._value},set:function(t){this.masked.value=t,this.updateControl(),this.alignCursor()}},{key:"unmaskedValue",get:function(){return this._unmaskedValue},set:function(t){this.masked.unmaskedValue=t,this.updateControl(),this.alignCursor()}},{key:"typedValue",get:function(){return this.masked.typedValue},set:function(t){this.masked.typedValue=t,this.updateControl(),this.alignCursor()}},{key:"selectionStart",get:function(){return this._cursorChanging?this._changingCursorPos:this.el.selectionStart}},{key:"cursorPos",get:function(){return this._cursorChanging?this._changingCursorPos:this.el.selectionEnd},set:function(t){this.el.isActive&&(this.el.select(t,t),this._saveSelection())}}]),t}(),Ct=function(t){function e(t){return q(this,e),et(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,K({},e.DEFAULTS,t)))}return tt(e,pt),J(e,[{key:"_update",value:function(t){Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_update",this).call(this,t),this._updateRegExps()}},{key:"_updateRegExps",value:function(){var t="",e="";this.allowNegative?(t+="([+|\\-]?|([+|\\-]?(0|([1-9]+\\d*))))",e+="[+|\\-]?"):t+="(0|([1-9]+\\d*))",e+="\\d*";var u=(this.scale?"("+this.radix+"\\d{0,"+this.scale+"})?":"")+"$";this._numberRegExpInput=new RegExp("^"+t+u),this._numberRegExp=new RegExp("^"+e+u),this._mapToRadixRegExp=new RegExp("["+this.mapToRadix.map(lt).join("")+"]","g"),this._thousandsSeparatorRegExp=new RegExp(lt(this.thousandsSeparator),"g")}},{key:"_extractTail",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,u=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,n=Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_extractTail",this).call(this,t,u);return K({},n,{value:this._removeThousandsSeparators(n.value)})}},{key:"_removeThousandsSeparators",value:function(t){return t.replace(this._thousandsSeparatorRegExp,"")}},{key:"_insertThousandsSeparators",value:function(t){var e=t.split(this.radix);return e[0]=e[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.thousandsSeparator),e.join(this.radix)}},{key:"doPrepare",value:function(t){for(var u,n=arguments.length,r=Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];return(u=Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"doPrepare",this)).call.apply(u,[this,this._removeThousandsSeparators(t.replace(this._mapToRadixRegExp,this.radix))].concat(rt(r)))}},{key:"appendWithTail",value:function(){var t,u=this.value;this._value=this._removeThousandsSeparators(this.value);for(var n=this.value.length,r=arguments.length,i=Array(r),s=0;s<r;s++)i[s]=arguments[s];var a=(t=Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"appendWithTail",this)).call.apply(t,[this].concat(rt(i)));this._value=this._insertThousandsSeparators(this.value);for(var o=n+a.inserted.length,l=0;l<=o;++l)this.value[l]===this.thousandsSeparator&&((l<n||l===n&&u[l]===this.thousandsSeparator)&&++n,l<o&&++o);return a.rawInserted=a.inserted,a.inserted=this.value.slice(n,o),a.shift+=n-u.length,a}},{key:"nearestInputPos",value:function(t,e){if(!e)return t;var u=ot(t,e);return this.value[u]===this.thousandsSeparator&&(t+=e),t}},{key:"doValidate",value:function(t){var u=(t.input?this._numberRegExpInput:this._numberRegExp).test(this._removeThousandsSeparators(this.value));if(u){var n=this.number;u=u&&!isNaN(n)&&(null==this.min||this.min>=0||this.min<=this.number)&&(null==this.max||this.max<=0||this.number<=this.max)}return u&&Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"doValidate",this).call(this,t)}},{key:"doCommit",value:function(){var t=this.number,u=t;null!=this.min&&(u=Math.max(u,this.min)),null!=this.max&&(u=Math.min(u,this.max)),u!==t&&(this.unmaskedValue=String(u));var n=this.value;this.normalizeZeros&&(n=this._normalizeZeros(n)),this.padFractionalZeros&&(n=this._padFractionalZeros(n)),this._value=this._insertThousandsSeparators(n),Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"doCommit",this).call(this)}},{key:"_normalizeZeros",value:function(t){var e=this._removeThousandsSeparators(t).split(this.radix);return e[0]=e[0].replace(/^(\D*)(0*)(\d*)/,function(t,e,u,n){return e+n}),t.length&&!/\d$/.test(e[0])&&(e[0]=e[0]+"0"),e.length>1&&(e[1]=e[1].replace(/0*$/,""),e[1].length||(e.length=1)),this._insertThousandsSeparators(e.join(this.radix))}},{key:"_padFractionalZeros",value:function(t){if(!t)return t;var e=t.split(this.radix);return e.length<2&&e.push(""),e[1]=e[1].padEnd(this.scale,"0"),e.join(this.radix)}},{key:"unmaskedValue",get:function(){return this._removeThousandsSeparators(this._normalizeZeros(this.value)).replace(this.radix,".")},set:function(t){ut(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"unmaskedValue",t.replace(".",this.radix),this)}},{key:"number",get:function(){return Number(this.unmaskedValue)},set:function(t){this.unmaskedValue=String(t)}},{key:"typedValue",get:function(){return this.number},set:function(t){this.number=t}},{key:"allowNegative",get:function(){return this.signed||null!=this.min&&this.min<0||null!=this.max&&this.max<0}}]),e}();Ct.DEFAULTS={radix:",",thousandsSeparator:"",mapToRadix:["."],scale:2,signed:!1,normalizeZeros:!0,padFractionalZeros:!1};var bt=function(t){function e(){return q(this,e),et(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return tt(e,pt),J(e,[{key:"_update",value:function(t){t.validate=function(e){return e.search(t.mask)>=0},Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_update",this).call(this,t)}}]),e}(),Bt=function(t){function e(){return q(this,e),et(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return tt(e,pt),J(e,[{key:"_update",value:function(t){t.validate=t.mask,Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_update",this).call(this,t)}}]),e}(),Pt=function(t){function e(t){q(this,e);var u=et(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,K({},e.DEFAULTS,t)));return u.currentMask=null,u}return tt(e,pt),J(e,[{key:"_update",value:function(t){Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_update",this).call(this,t),this.compiledMasks=Array.isArray(t.mask)?t.mask.map(function(t){return vt(t)}):[]}},{key:"_append",value:function(t){for(var e=arguments.length,u=Array(e>1?e-1:0),n=1;n<e;n++)u[n-1]=arguments[n];t=this.doPrepare.apply(this,[t].concat(rt(u)));var r,i=this._applyDispatch.apply(this,[t].concat(rt(u)));this.currentMask&&i.aggregate((r=this.currentMask)._append.apply(r,[t].concat(rt(u))));return i}},{key:"_applyDispatch",value:function(){for(var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",e=this.value.length,u=this.rawInputValue,n=this.currentMask,r=new ft,i=arguments.length,s=Array(i>1?i-1:0),a=1;a<i;a++)s[a-1]=arguments[a];return this.currentMask=this.doDispatch.apply(this,[t].concat(rt(s))),this.currentMask&&this.currentMask!==n&&(this.currentMask.reset(),this.currentMask._append(u,{raw:!0}),r.shift=this.value.length-e),r}},{key:"doDispatch",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.dispatch(t,this,e)}},{key:"clone",value:function(){var t=new e(this);t._value=this.value;var u=this.compiledMasks.indexOf(this.currentMask);return this.currentMask&&(t.currentMask=u>=0?t.compiledMasks[u].assign(this.currentMask):this.currentMask.clone()),t}},{key:"reset",value:function(){this.currentMask&&this.currentMask.reset(),this.compiledMasks.forEach(function(t){return t.reset()})}},{key:"remove",value:function(){var t,e=new ft;this.currentMask&&e.aggregate((t=this.currentMask).remove.apply(t,arguments)).aggregate(this._applyDispatch());return e}},{key:"extractInput",value:function(){var t;return this.currentMask?(t=this.currentMask).extractInput.apply(t,arguments):""}},{key:"_extractTail",value:function(){for(var t,u,n=arguments.length,r=Array(n),i=0;i<n;i++)r[i]=arguments[i];return this.currentMask?(t=this.currentMask)._extractTail.apply(t,rt(r)):(u=Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_extractTail",this)).call.apply(u,[this].concat(rt(r)))}},{key:"_appendTail",value:function(t){var u=new ft;return t&&u.aggregate(this._applyDispatch(t.value)),u.aggregate(this.currentMask?this.currentMask._appendTail(t):Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"_appendTail",this).call(this,t))}},{key:"doCommit",value:function(){this.currentMask&&this.currentMask.doCommit(),Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"doCommit",this).call(this)}},{key:"nearestInputPos",value:function(){for(var t,u,n=arguments.length,r=Array(n),i=0;i<n;i++)r[i]=arguments[i];return this.currentMask?(t=this.currentMask).nearestInputPos.apply(t,rt(r)):(u=Q(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"nearestInputPos",this)).call.apply(u,[this].concat(rt(r)))}},{key:"value",get:function(){return this.currentMask?this.currentMask.value:""},set:function(t){ut(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"value",t,this)}},{key:"unmaskedValue",get:function(){return this.currentMask?this.currentMask.unmaskedValue:""},set:function(t){ut(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"unmaskedValue",t,this)}},{key:"typedValue",get:function(){return this.currentMask?this.currentMask.typedValue:""},set:function(t){var e=String(t);this.currentMask&&(this.currentMask.typedValue=t,e=this.currentMask.unmaskedValue),this.unmaskedValue=e}},{key:"isComplete",get:function(){return!!this.currentMask&&this.currentMask.isComplete}}]),e}();function wt(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Et(t,e)}return Pt.DEFAULTS={dispatch:function(t,e,u){if(e.compiledMasks.length){var n=e.rawInputValue,r=e.compiledMasks.map(function(e,r){var i=e.clone();return i.rawInputValue=n,i._append(t,u),{value:i.rawInputValue.length,index:r}});return r.sort(function(t,e){return e.value-t.value}),e.compiledMasks[r[0].index]}}},wt.InputMask=Et,wt.Masked=pt,wt.MaskedPattern=mt,wt.MaskedNumber=Ct,wt.MaskedDate=At,wt.MaskedRegExp=bt,wt.MaskedFunction=Bt,wt.MaskedDynamic=Pt,wt.createMask=vt,wt.MaskElement=Ft,wt.HTMLMaskElement=Dt,ht.IMask=wt,wt});
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.IMask=e()}(this,function(){"use strict";var t=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},e={}.hasOwnProperty,n=function(t,n){return e.call(t,n)},u={}.toString,i=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==function(t){return u.call(t).slice(8,-1)}(t)?t.split(""):Object(t)},r=function(e){return i(t(e))},a=Math.ceil,s=Math.floor,o=function(t){return isNaN(t=+t)?0:(t>0?s:a)(t)},l=Math.min,h=function(t){return t>0?l(o(t),9007199254740991):0},c=Math.max,f=Math.min;function p(t,e){return t(e={exports:{}},e.exports),e.exports}var d,v,k=p(function(t){var e=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)}),g=k["__core-js_shared__"]||(k["__core-js_shared__"]={}),y=0,_=Math.random(),m=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++y+_).toString(36))},A=g[d="keys"]||(g[d]={}),C=(v=!1,function(t,e,n){var u,i=r(t),a=h(i.length),s=function(t,e){return(t=o(t))<0?c(t+e,0):f(t,e)}(n,a);if(v&&e!=e){for(;a>s;)if((u=i[s++])!=u)return!0}else for(;a>s;s++)if((v||s in i)&&i[s]===e)return v||s||0;return!v&&-1}),F=function(t){return A[t]||(A[t]=m(t))}("IE_PROTO"),E="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(","),b=Object.keys||function(t){return function(t,e){var u,i=r(t),a=0,s=[];for(u in i)u!=F&&n(i,u)&&s.push(u);for(;e.length>a;)n(i,u=e[a++])&&(~C(s,u)||s.push(u));return s}(t,E)},B=p(function(t){var e=t.exports={version:"2.5.5"};"number"==typeof __e&&(__e=e)}),S=(B.version,function(t){return"object"==typeof t?null!==t:"function"==typeof t}),D=function(t){if(!S(t))throw TypeError(t+" is not an object!");return t},T=function(t){try{return!!t()}catch(t){return!0}},w=!T(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}),x=k.document,M=S(x)&&S(x.createElement),P=!w&&!T(function(){return 7!=Object.defineProperty((t="div",M?x.createElement(t):{}),"a",{get:function(){return 7}}).a;var t}),O=Object.defineProperty,I={f:w?Object.defineProperty:function(t,e,n){if(D(t),e=function(t,e){if(!S(t))return t;var n,u;if(e&&"function"==typeof(n=t.toString)&&!S(u=n.call(t)))return u;if("function"==typeof(n=t.valueOf)&&!S(u=n.call(t)))return u;if(!e&&"function"==typeof(n=t.toString)&&!S(u=n.call(t)))return u;throw TypeError("Can't convert object to primitive value")}(e,!0),D(n),P)try{return O(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},R=w?function(t,e,n){return I.f(t,e,function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}(1,n))}:function(t,e,n){return t[e]=n,t},V=p(function(t){var e=m("src"),u=Function.toString,i=(""+u).split("toString");B.inspectSource=function(t){return u.call(t)},(t.exports=function(t,u,r,a){var s="function"==typeof r;s&&(n(r,"name")||R(r,"name",u)),t[u]!==r&&(s&&(n(r,e)||R(r,e,t[u]?""+t[u]:i.join(String(u)))),t===k?t[u]=r:a?t[u]?t[u]=r:R(t,u,r):(delete t[u],R(t,u,r)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[e]||u.call(this)})}),j=function(t,e,n){if(function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!")}(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,u){return t.call(e,n,u)};case 3:return function(n,u,i){return t.call(e,n,u,i)}}return function(){return t.apply(e,arguments)}},N=function(t,e,n){var u,i,r,a,s=t&N.F,o=t&N.G,l=t&N.S,h=t&N.P,c=t&N.B,f=o?k:l?k[e]||(k[e]={}):(k[e]||{}).prototype,p=o?B:B[e]||(B[e]={}),d=p.prototype||(p.prototype={});for(u in o&&(n=e),n)r=((i=!s&&f&&void 0!==f[u])?f:n)[u],a=c&&i?j(r,k):h&&"function"==typeof r?j(Function.call,r):r,f&&V(f,u,r,t&N.U),p[u]!=r&&R(p,u,a),h&&d[u]!=r&&(d[u]=r)};k.core=B,N.F=1,N.G=2,N.S=4,N.P=8,N.B=16,N.W=32,N.U=64,N.R=128;var L,H,G,U,z=N;L="keys",H=function(){return function(e){return b(function(e){return Object(t(e))}(e))}},G=(B.Object||{})[L]||Object[L],(U={})[L]=H(G),z(z.S+z.F*T(function(){G(1)}),"Object",U);B.Object.keys;var Y=function(e){var n=String(t(this)),u="",i=o(e);if(i<0||i==1/0)throw RangeError("Count can't be negative");for(;i>0;(i>>>=1)&&(n+=n))1&i&&(u+=n);return u};z(z.P,"String",{repeat:Y});B.String.repeat;var Z=function(e,n,u,i){var r=String(t(e)),a=r.length,s=void 0===u?" ":String(u),o=h(n);if(o<=a||""==s)return r;var l=o-a,c=Y.call(s,Math.ceil(l/s.length));return c.length>l&&(c=c.slice(0,l)),i?c+r:r+c},$=k.navigator,K=$&&$.userAgent||"";z(z.P+z.F*/Version\/10\.\d+(\.\d+)? Safari\//.test(K),"String",{padStart:function(t){return Z(this,t,arguments.length>1?arguments[1]:void 0,!0)}});B.String.padStart;z(z.P+z.F*/Version\/10\.\d+(\.\d+)? Safari\//.test(K),"String",{padEnd:function(t){return Z(this,t,arguments.length>1?arguments[1]:void 0,!1)}});B.String.padEnd;function W(t){return(W="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function q(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function J(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function Q(t,e,n){return e&&J(t.prototype,e),n&&J(t,n),t}function X(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function tt(){return(tt=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var u in n)Object.prototype.hasOwnProperty.call(n,u)&&(t[u]=n[u])}return t}).apply(this,arguments)}function et(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},u=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(u=u.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),u.forEach(function(e){X(t,e,n[e])})}return t}function nt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&it(t,e)}function ut(t){return(ut=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function it(t,e){return(it=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function rt(t,e){if(null==t)return{};var n,u,i=function(t,e){if(null==t)return{};var n,u,i={},r=Object.keys(t);for(u=0;u<r.length;u++)n=r[u],e.indexOf(n)>=0||(i[n]=t[n]);return i}(t,e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);for(u=0;u<r.length;u++)n=r[u],e.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(i[n]=t[n])}return i}function at(t,e){return!e||"object"!=typeof e&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function st(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=ut(t)););return t}function ot(t,e,n){return(ot="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var u=st(t,e);if(u){var i=Object.getOwnPropertyDescriptor(u,e);return i.get?i.get.call(n):i.value}})(t,e,n||t)}function lt(t,e,n,u){return(lt="undefined"!=typeof Reflect&&Reflect.set?Reflect.set:function(t,e,n,u){var i,r=st(t,e);if(r){if((i=Object.getOwnPropertyDescriptor(r,e)).set)return i.set.call(u,n),!0;if(!i.writable)return!1}if(i=Object.getOwnPropertyDescriptor(u,e)){if(!i.writable)return!1;i.value=n,Object.defineProperty(u,e,i)}else X(u,e,n);return!0})(t,e,n,u)}function ht(t,e,n,u,i){if(!lt(t,e,n,u||t)&&i)throw new Error("failed to set property");return n}function ct(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=[],u=!0,i=!1,r=void 0;try{for(var a,s=t[Symbol.iterator]();!(u=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);u=!0);}catch(t){i=!0,r=t}finally{try{u||null==s.return||s.return()}finally{if(i)throw r}}return n}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}var ft={NONE:"NONE",LEFT:"LEFT",FORCE_LEFT:"FORCE_LEFT",RIGHT:"RIGHT",FORCE_RIGHT:"FORCE_RIGHT"};function pt(t){return t.replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}var dt="undefined"!=typeof window&&window||"undefined"!=typeof global&&global.global===global&&global||"undefined"!=typeof self&&self.self===self&&self||{},vt=function(){function t(e,n,u,i){for(q(this,t),this.value=e,this.cursorPos=n,this.oldValue=u,this.oldSelection=i;this.value.slice(0,this.startChangePos)!==this.oldValue.slice(0,this.startChangePos);)--this.oldSelection.start}return Q(t,[{key:"startChangePos",get:function(){return Math.min(this.cursorPos,this.oldSelection.start)}},{key:"insertedCount",get:function(){return this.cursorPos-this.startChangePos}},{key:"inserted",get:function(){return this.value.substr(this.startChangePos,this.insertedCount)}},{key:"removedCount",get:function(){return Math.max(this.oldSelection.end-this.startChangePos||this.oldValue.length-this.value.length,0)}},{key:"removed",get:function(){return this.oldValue.substr(this.startChangePos,this.removedCount)}},{key:"head",get:function(){return this.value.substring(0,this.startChangePos)}},{key:"tail",get:function(){return this.value.substring(this.startChangePos+this.insertedCount)}},{key:"removeDirection",get:function(){return!this.removedCount||this.insertedCount?ft.NONE:this.oldSelection.end===this.cursorPos||this.oldSelection.start===this.cursorPos?ft.RIGHT:ft.LEFT}}]),t}(),kt=function(){function t(e){q(this,t),tt(this,{inserted:"",rawInserted:"",skip:!1,tailShift:0},e)}return Q(t,[{key:"aggregate",value:function(t){return this.rawInserted+=t.rawInserted,this.skip=this.skip||t.skip,this.inserted+=t.inserted,this.tailShift+=t.tailShift,this}},{key:"offset",get:function(){return this.tailShift+this.inserted.length}}]),t}(),gt=function(){function t(e){q(this,t),this._value="",this._update(e),this.isInitialized=!0}return Q(t,[{key:"updateOptions",value:function(t){this.withValueRefresh(this._update.bind(this,t))}},{key:"_update",value:function(t){tt(this,t)}},{key:"reset",value:function(){this._value=""}},{key:"resolve",value:function(t){return this.reset(),this.append(t,{input:!0},{value:""}),this.doCommit(),this.value}},{key:"nearestInputPos",value:function(t,e){return t}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return this.value.slice(t,e)}},{key:"extractTail",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return{value:this.extractInput(t,e)}}},{key:"_storeBeforeTailState",value:function(){this._beforeTailState=this.state}},{key:"_restoreBeforeTailState",value:function(){this.state=this._beforeTailState}},{key:"_resetBeforeTailState",value:function(){this._beforeTailState=null}},{key:"appendTail",value:function(t){return this.append(t?t.value:"",{tail:!0})}},{key:"_appendCharRaw",value:function(t){return this._value+=t,new kt({inserted:t,rawInserted:t})}},{key:"_appendChar",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0;if(!(t=this.doPrepare(t,e)))return new kt;var u=this.state,i=this._appendCharRaw(t,e);if(i.inserted){var r=!1!==this.doValidate(e);if(r&&null!=n){this._storeBeforeTailState();var a=this.appendTail(n);(r=a.rawInserted===n.value)&&a.inserted&&this._restoreBeforeTailState()}r||(i.rawInserted=i.inserted="",this.state=u)}return i}},{key:"append",value:function(t,e,n){this.value.length;for(var u=new kt,i=0;i<t.length;++i)u.aggregate(this._appendChar(t[i],e,n));return null!=n&&(this._storeBeforeTailState(),u.tailShift+=this.appendTail(n).tailShift),u}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return this._value=this.value.slice(0,t)+this.value.slice(e),new kt}},{key:"withValueRefresh",value:function(t){if(this._refreshing||!this.isInitialized)return t();this._refreshing=!0;var e=this.unmaskedValue,n=this.value,u=t();return this.resolve(n)!==n&&(this.unmaskedValue=e),delete this._refreshing,u}},{key:"doPrepare",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.prepare?this.prepare(t,this,e):t}},{key:"doValidate",value:function(t){return(!this.validate||this.validate(this.value,this,t))&&(!this.parent||this.parent.doValidate(t))}},{key:"doCommit",value:function(){this.commit&&this.commit(this.value,this)}},{key:"splice",value:function(t,e,n,u){var i=t+e,r=this.extractTail(i),a=this.nearestInputPos(t,u);return new kt({tailShift:a-t}).aggregate(this.remove(a)).aggregate(this.append(n,{input:!0},r))}},{key:"state",get:function(){return{_value:this.value}},set:function(t){this._value=t._value}},{key:"value",get:function(){return this._value},set:function(t){this.resolve(t)}},{key:"unmaskedValue",get:function(){return this.value},set:function(t){this.reset(),this.append(t,{},{value:""}),this.doCommit()}},{key:"typedValue",get:function(){return this.unmaskedValue},set:function(t){this.unmaskedValue=t}},{key:"rawInputValue",get:function(){return this.extractInput(0,this.value.length,{raw:!0})},set:function(t){this.reset(),this.append(t,{raw:!0},{value:""}),this.doCommit()}},{key:"isComplete",get:function(){return!0}}]),t}();function yt(t){if(null==t)throw new Error("mask property should be defined");return t instanceof RegExp?dt.IMask.MaskedRegExp:"string"==typeof(e=t)||e instanceof String?dt.IMask.MaskedPattern:t instanceof Date||t===Date?dt.IMask.MaskedDate:t instanceof Number||"number"==typeof t||t===Number?dt.IMask.MaskedNumber:Array.isArray(t)||t===Array?dt.IMask.MaskedDynamic:t.prototype instanceof dt.IMask.Masked?t:t instanceof Function?dt.IMask.MaskedFunction:(console.warn("Mask not found for mask",t),dt.IMask.Masked);var e}function _t(t){var e=(t=et({},t)).mask;return e instanceof dt.IMask.Masked?e:new(yt(e))(t)}var mt={0:/\d/,a:/[\u0041-\u005A\u0061-\u007A\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/,"*":/./},At=function(){function t(e){q(this,t);var n=e.mask,u=rt(e,["mask"]);this.masked=_t({mask:n}),tt(this,u)}return Q(t,[{key:"reset",value:function(){this._isFilled=!1,this.masked.reset()}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return 0===t&&e>=1?(this._isFilled=!1,this.masked.remove(t,e)):new kt}},{key:"_appendChar",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this._isFilled)return new kt;var n=this.masked.state,u=this.masked._appendChar(t,e);return u.inserted&&!1===this.doValidate(e)&&(u.inserted=u.rawInserted="",this.masked.state=n),u.inserted||this.isOptional||this.lazy||e.input||(u.inserted=this.placeholderChar),u.skip=!u.inserted&&!this.isOptional,this._isFilled=Boolean(u.inserted),u}},{key:"_appendPlaceholder",value:function(){var t=new kt;return this._isFilled||this.isOptional?t:(this._isFilled=!0,t.inserted=this.placeholderChar,t)}},{key:"extractTail",value:function(){var t;return(t=this.masked).extractTail.apply(t,arguments)}},{key:"appendTail",value:function(){var t;return(t=this.masked).appendTail.apply(t,arguments)}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,n=arguments.length>2?arguments[2]:void 0;return this.masked.extractInput(t,e,n)}},{key:"nearestInputPos",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ft.NONE,n=this.value.length,u=Math.min(Math.max(t,0),n);switch(e){case ft.LEFT:case ft.FORCE_LEFT:return this.isComplete?u:0;case ft.RIGHT:case ft.FORCE_RIGHT:return this.isComplete?u:n;case ft.NONE:default:return u}}},{key:"doValidate",value:function(){var t,e;return(t=this.masked).doValidate.apply(t,arguments)&&(!this.parent||(e=this.parent).doValidate.apply(e,arguments))}},{key:"doCommit",value:function(){this.masked.doCommit()}},{key:"value",get:function(){return this.masked.value||(this._isFilled&&!this.isOptional?this.placeholderChar:"")}},{key:"unmaskedValue",get:function(){return this.masked.unmaskedValue}},{key:"isComplete",get:function(){return Boolean(this.masked.value)||this.isOptional}},{key:"state",get:function(){return{masked:this.masked.state,_isFilled:this._isFilled}},set:function(t){this.masked.state=t.masked,this._isFilled=t._isFilled}}]),t}(),Ct=function(){function t(e){q(this,t),tt(this,e),this._value=""}return Q(t,[{key:"reset",value:function(){this._isRawInput=!1,this._value=""}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this._value.length;return this._value=this._value.slice(0,t)+this._value.slice(e),this._value||(this._isRawInput=!1),new kt}},{key:"nearestInputPos",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ft.NONE,n=this._value.length;switch(e){case ft.LEFT:case ft.FORCE_LEFT:return 0;case ft.NONE:case ft.RIGHT:case ft.FORCE_RIGHT:default:return n}}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this._value.length;return(arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}).raw&&this._isRawInput&&this._value.slice(t,e)||""}},{key:"_appendChar",value:function(t,e){var n=new kt;if(this._value)return n;var u=this.char===t[0]&&(this.isUnmasking||e.input||e.raw)&&!e.tail;return u&&(n.rawInserted=this.char),this._value=n.inserted=this.char,this._isRawInput=u&&(e.raw||e.input),n}},{key:"_appendPlaceholder",value:function(){var t=new kt;return this._value?t:(this._value=t.inserted=this.char,t)}},{key:"extractTail",value:function(){arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return{value:""}}},{key:"appendTail",value:function(t){return this._appendChar(t?t.value:"",{tail:!0})}},{key:"doCommit",value:function(){}},{key:"value",get:function(){return this._value}},{key:"unmaskedValue",get:function(){return this.isUnmasking?this.value:""}},{key:"isComplete",get:function(){return!0}},{key:"state",get:function(){return{_value:this._value,_isRawInput:this._isRawInput}},set:function(t){tt(this,t)}}]),t}(),Ft=function(){function t(e){q(this,t),this.chunks=e}return Q(t,[{key:"value",get:function(){return this.chunks.map(function(t){return t.value}).join("")}}]),t}(),Et=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return q(this,e),t.definitions=tt({},mt,t.definitions),at(this,ut(e).call(this,et({},e.DEFAULTS,t)))}return nt(e,gt),Q(e,[{key:"_update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t.definitions=tt({},this.definitions,t.definitions),ot(ut(e.prototype),"_update",this).call(this,t),this._rebuildMask()}},{key:"_rebuildMask",value:function(){var t=this,n=this.definitions;this._blocks=[],this._stops=[],this._maskedBlocks={};var u=this.mask;if(u&&n)for(var i=!1,r=!1,a=0;a<u.length;++a){if(this.blocks)if("continue"===function(){var e=u.slice(a),n=Object.keys(t.blocks).filter(function(t){return 0===e.indexOf(t)});n.sort(function(t,e){return e.length-t.length});var i=n[0];if(i){var r=_t(et({parent:t,lazy:t.lazy,placeholderChar:t.placeholderChar},t.blocks[i]));return r&&(t._blocks.push(r),t._maskedBlocks[i]||(t._maskedBlocks[i]=[]),t._maskedBlocks[i].push(t._blocks.length-1)),a+=i.length-1,"continue"}}())continue;var s=u[a],o=s in n;if(s!==e.STOP_CHAR)if("{"!==s&&"}"!==s)if("["!==s&&"]"!==s){if(s===e.ESCAPE_CHAR){if(!(s=u[++a]))break;o=!1}var l=void 0;l=o?new At({parent:this,lazy:this.lazy,placeholderChar:this.placeholderChar,mask:n[s],isOptional:r}):new Ct({char:s,isUnmasking:i}),this._blocks.push(l)}else r=!r;else i=!i;else this._stops.push(this._blocks.length)}}},{key:"_storeBeforeTailState",value:function(){this._blocks.forEach(function(t){"function"==typeof t._storeBeforeTailState&&t._storeBeforeTailState()}),ot(ut(e.prototype),"_storeBeforeTailState",this).call(this)}},{key:"_restoreBeforeTailState",value:function(){this._blocks.forEach(function(t){"function"==typeof t._restoreBeforeTailState&&t._restoreBeforeTailState()}),ot(ut(e.prototype),"_restoreBeforeTailState",this).call(this)}},{key:"_resetBeforeTailState",value:function(){this._blocks.forEach(function(t){"function"==typeof t._resetBeforeTailState&&t._resetBeforeTailState()}),ot(ut(e.prototype),"_resetBeforeTailState",this).call(this)}},{key:"reset",value:function(){ot(ut(e.prototype),"reset",this).call(this),this._blocks.forEach(function(t){return t.reset()})}},{key:"doCommit",value:function(){this._blocks.forEach(function(t){return t.doCommit()}),ot(ut(e.prototype),"doCommit",this).call(this)}},{key:"appendTail",value:function(t){var n=new kt;return t&&n.aggregate(t instanceof Ft?this._appendTailChunks(t.chunks):ot(ut(e.prototype),"appendTail",this).call(this,t)),n.aggregate(this._appendPlaceholder())}},{key:"_appendCharRaw",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=this._mapPosToBlock(this.value.length),u=new kt;if(!n)return u;for(var i=n.index;;++i){var r=this._blocks[i];if(!r)break;var a=r._appendChar(t,e),s=a.skip;if(u.aggregate(a),s||a.rawInserted)break}return u}},{key:"_appendTailChunks",value:function(t){for(var e=new kt,n=0;n<t.length&&!e.skip;++n){var u=t[n],i=this._mapPosToBlock(this.value.length),r=u instanceof Ft&&null!=u.index&&(!i||i.index<=u.index)&&this._blocks[u.index];if(r){e.aggregate(this._appendPlaceholder(u.index));var a=r.appendTail(u);a.skip=!1,e.aggregate(a),this._value+=a.inserted;var s=u.value.slice(a.rawInserted.length);s&&e.aggregate(this.append(s,{tail:!0}))}else{var o=u,l=o.stop,h=o.value;null!=l&&this._stops.indexOf(l)>=0&&e.aggregate(this._appendPlaceholder(l)),e.aggregate(this.append(h,{tail:!0}))}}return e}},{key:"extractTail",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return new Ft(this._extractTailChunks(t,e))}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(t===e)return"";var u="";return this._forEachBlocksInRange(t,e,function(t,e,i,r){u+=t.extractInput(i,r,n)}),u}},{key:"_extractTailChunks",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;if(e===n)return[];var u,i=[];return this._forEachBlocksInRange(e,n,function(e,n,r,a){for(var s,o=e.extractTail(r,a),l=0;l<t._stops.length;++l){var h=t._stops[l];if(!(h<=n))break;s=h}if(o instanceof Ft){if(null==s){for(var c=o.chunks.length,f=0;f<o.chunks.length;++f)if(null!=o.chunks[f].stop){c=f;break}o.chunks.splice(0,c).filter(function(t){return t.value}).forEach(function(t){u?u.value+=t.value:u={value:t.value}})}o.chunks.length&&(u&&i.push(u),o.index=s,i.push(o),u=null)}else{if(null!=s)u&&i.push(u),o.stop=s;else if(u)return void(u.value+=o.value);u=o}}),u&&u.value&&i.push(u),i}},{key:"_appendPlaceholder",value:function(t){var e=this,n=new kt;if(this.lazy&&null==t)return n;var u=this._mapPosToBlock(this.value.length);if(!u)return n;var i=u.index,r=null!=t?t:this._blocks.length;return this._blocks.slice(i,r).forEach(function(t){if("function"==typeof t._appendPlaceholder){var u=null!=t._blocks?[t._blocks.length]:[],i=t._appendPlaceholder.apply(t,u);e._value+=i.inserted,n.aggregate(i)}}),n}},{key:"_mapPosToBlock",value:function(t){for(var e="",n=0;n<this._blocks.length;++n){var u=this._blocks[n],i=e.length;if(t<=(e+=u.value).length)return{index:n,offset:t-i}}}},{key:"_blockStartPos",value:function(t){return this._blocks.slice(0,t).reduce(function(t,e){return t+e.value.length},0)}},{key:"_forEachBlocksInRange",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,n=arguments.length>2?arguments[2]:void 0,u=this._mapPosToBlock(t);if(u){var i=this._mapPosToBlock(e),r=i&&u.index===i.index,a=u.offset,s=i&&r?i.offset:void 0;if(n(this._blocks[u.index],u.index,a,s),i&&!r){for(var o=u.index+1;o<i.index;++o)n(this._blocks[o],o);n(this._blocks[i.index],i.index,0,i.offset)}}}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,u=ot(ut(e.prototype),"remove",this).call(this,t,n);return this._forEachBlocksInRange(t,n,function(t,e,n,i){u.aggregate(t.remove(n,i))}),u}},{key:"nearestInputPos",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ft.NONE,n=this._mapPosToBlock(t)||{index:0,offset:0},u=n.offset,i=n.index,r=this._blocks[i];if(!r)return t;var a=u;0!==a&&a<r.value.length&&(a=r.nearestInputPos(u,function(t){switch(t){case ft.LEFT:return ft.FORCE_LEFT;case ft.RIGHT:return ft.FORCE_RIGHT;default:return t}}(e)));var s=a===r.value.length;if(!(0===a)&&!s)return this._blockStartPos(i)+a;var o=s?i+1:i;if(e===ft.NONE){if(o>0){var l=o-1,h=this._blocks[l],c=h.nearestInputPos(0,ft.NONE);if(!h.value.length||c!==h.value.length)return this._blockStartPos(o)}for(var f=o;f<this._blocks.length;++f){var p=this._blocks[f],d=p.nearestInputPos(0,ft.NONE);if(d!==p.value.length)return this._blockStartPos(f)+d}return this.value.length}if(e===ft.LEFT||e===ft.FORCE_LEFT){for(var v,k=o;k<this._blocks.length;++k)if(this._blocks[k].value){v=k;break}if(null!=v){var g=this._blocks[v],y=g.nearestInputPos(0,ft.RIGHT);if(0===y&&g.unmaskedValue.length)return this._blockStartPos(v)+y}for(var _,m=-1,A=o-1;A>=0;--A){var C=this._blocks[A],F=C.nearestInputPos(C.value.length,ft.FORCE_LEFT);if(null!=_||C.value&&0===F||(_=A),0!==F){if(F!==C.value.length)return this._blockStartPos(A)+F;m=A;break}}if(e===ft.LEFT)for(var E=m+1;E<=Math.min(o,this._blocks.length-1);++E){var b=this._blocks[E],B=b.nearestInputPos(0,ft.NONE),S=this._blockStartPos(E)+B;if((!b.value.length&&S===this.value.length||B!==b.value.length)&&S<=t)return S}if(m>=0)return this._blockStartPos(m)+this._blocks[m].value.length;if(e===ft.FORCE_LEFT||this.lazy&&!this.extractInput()&&!function(t){if(!t)return!1;var e=t.value;return!e||t.nearestInputPos(0,ft.NONE)!==e.length}(this._blocks[o]))return 0;if(null!=_)return this._blockStartPos(_);for(var D=o;D<this._blocks.length;++D){var T=this._blocks[D],w=T.nearestInputPos(0,ft.NONE);if(!T.value.length||w!==T.value.length)return this._blockStartPos(D)+w}return 0}if(e===ft.RIGHT||e===ft.FORCE_RIGHT){for(var x,M,P=o;P<this._blocks.length;++P){var O=this._blocks[P],I=O.nearestInputPos(0,ft.NONE);if(I!==O.value.length){M=this._blockStartPos(P)+I,x=P;break}}if(null!=x&&null!=M){for(var R=x;R<this._blocks.length;++R){var V=this._blocks[R],j=V.nearestInputPos(0,ft.FORCE_RIGHT);if(j!==V.value.length)return this._blockStartPos(R)+j}return e===ft.FORCE_RIGHT?this.value.length:M}for(var N=Math.min(o,this._blocks.length-1);N>=0;--N){var L=this._blocks[N],H=L.nearestInputPos(L.value.length,ft.LEFT);if(0!==H){var G=this._blockStartPos(N)+H;if(G>=t)return G;break}}}return t}},{key:"maskedBlock",value:function(t){return this.maskedBlocks(t)[0]}},{key:"maskedBlocks",value:function(t){var e=this,n=this._maskedBlocks[t];return n?n.map(function(t){return e._blocks[t]}):[]}},{key:"state",get:function(){return et({},ot(ut(e.prototype),"state",this),{_blocks:this._blocks.map(function(t){return t.state})})},set:function(t){var n=t._blocks,u=rt(t,["_blocks"]);this._blocks.forEach(function(t,e){return t.state=n[e]}),ht(ut(e.prototype),"state",u,this,!0)}},{key:"isComplete",get:function(){return this._blocks.every(function(t){return t.isComplete})}},{key:"unmaskedValue",get:function(){return this._blocks.reduce(function(t,e){return t+e.unmaskedValue},"")},set:function(t){ht(ut(e.prototype),"unmaskedValue",t,this,!0)}},{key:"value",get:function(){return this._blocks.reduce(function(t,e){return t+e.value},"")},set:function(t){ht(ut(e.prototype),"value",t,this,!0)}}]),e}();Et.DEFAULTS={lazy:!0,placeholderChar:"_"},Et.STOP_CHAR="`",Et.ESCAPE_CHAR="\\",Et.InputDefinition=At,Et.FixedDefinition=Ct;var bt=function(t){function e(){return q(this,e),at(this,ut(e).apply(this,arguments))}return nt(e,Et),Q(e,[{key:"_update",value:function(t){var n=String(t.to).length;null!=t.maxLength&&(n=Math.max(n,t.maxLength)),t.maxLength=n;for(var u=String(t.to).padStart(n,"0"),i=String(t.from).padStart(n,"0"),r=0;r<u.length&&u[r]===i[r];)++r;t.mask=u.slice(0,r).replace(/0/g,"\\0")+"0".repeat(n-r),ot(ut(e.prototype),"_update",this).call(this,t)}},{key:"doValidate",value:function(){var t,n=this.value,u="",i="",r=ct(n.match(/^(\D*)(\d*)(\D*)/)||[],3),a=r[1],s=r[2];if(s&&(u="0".repeat(a.length)+s,i="9".repeat(a.length)+s),-1===n.search(/[^0]/)&&n.length<=this._matchFrom)return!0;u=u.padEnd(this.maxLength,"0"),i=i.padEnd(this.maxLength,"9");for(var o=arguments.length,l=new Array(o),h=0;h<o;h++)l[h]=arguments[h];return this.from<=Number(i)&&Number(u)<=this.to&&(t=ot(ut(e.prototype),"doValidate",this)).call.apply(t,[this].concat(l))}},{key:"_matchFrom",get:function(){return this.maxLength-String(this.from).length}},{key:"isComplete",get:function(){return ot(ut(e.prototype),"isComplete",this)&&Boolean(this.value)}}]),e}(),Bt=function(t){function e(t){return q(this,e),at(this,ut(e).call(this,et({},e.DEFAULTS,t)))}return nt(e,Et),Q(e,[{key:"_update",value:function(t){t.mask===Date&&delete t.mask,t.pattern&&(t.mask=t.pattern,delete t.pattern);var n=t.blocks;t.blocks=tt({},e.GET_DEFAULT_BLOCKS()),t.min&&(t.blocks.Y.from=t.min.getFullYear()),t.max&&(t.blocks.Y.to=t.max.getFullYear()),t.min&&t.max&&t.blocks.Y.from===t.blocks.Y.to&&(t.blocks.m.from=t.min.getMonth()+1,t.blocks.m.to=t.max.getMonth()+1,t.blocks.m.from===t.blocks.m.to&&(t.blocks.d.from=t.min.getDate(),t.blocks.d.to=t.max.getDate())),tt(t.blocks,n),ot(ut(e.prototype),"_update",this).call(this,t)}},{key:"doValidate",value:function(){for(var t,n=this.date,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return(t=ot(ut(e.prototype),"doValidate",this)).call.apply(t,[this].concat(i))&&(!this.isComplete||this.isDateExist(this.value)&&null!=n&&(null==this.min||this.min<=n)&&(null==this.max||n<=this.max))}},{key:"isDateExist",value:function(t){return this.format(this.parse(t))===t}},{key:"date",get:function(){return this.isComplete?this.parse(this.value):null},set:function(t){this.value=this.format(t)}},{key:"typedValue",get:function(){return this.date},set:function(t){this.date=t}}]),e}();Bt.DEFAULTS={pattern:"d{.}`m{.}`Y",format:function(t){return[String(t.getDate()).padStart(2,"0"),String(t.getMonth()+1).padStart(2,"0"),t.getFullYear()].join(".")},parse:function(t){var e=ct(t.split("."),3),n=e[0],u=e[1],i=e[2];return new Date(i,u-1,n)}},Bt.GET_DEFAULT_BLOCKS=function(){return{d:{mask:bt,from:1,to:31,maxLength:2},m:{mask:bt,from:1,to:12,maxLength:2},Y:{mask:bt,from:1900,to:9999}}};var St=function(){function t(){q(this,t)}return Q(t,[{key:"select",value:function(t,e){if(null!=t&&null!=e&&(t!==this.selectionStart||e!==this.selectionEnd))try{this._unsafeSelect(t,e)}catch(t){}}},{key:"_unsafeSelect",value:function(t,e){}},{key:"bindEvents",value:function(t){}},{key:"unbindEvents",value:function(){}},{key:"selectionStart",get:function(){var t;try{t=this._unsafeSelectionStart}catch(t){}return null!=t?t:this.value.length}},{key:"selectionEnd",get:function(){var t;try{t=this._unsafeSelectionEnd}catch(t){}return null!=t?t:this.value.length}},{key:"isActive",get:function(){return!1}}]),t}(),Dt=function(t){function e(t){var n;return q(this,e),(n=at(this,ut(e).call(this))).input=t,n._handlers={},n}return nt(e,St),Q(e,[{key:"_unsafeSelect",value:function(t,e){this.input.setSelectionRange(t,e)}},{key:"bindEvents",value:function(t){var n=this;Object.keys(t).forEach(function(u){return n._toggleEventHandler(e.EVENTS_MAP[u],t[u])})}},{key:"unbindEvents",value:function(){var t=this;Object.keys(this._handlers).forEach(function(e){return t._toggleEventHandler(e)})}},{key:"_toggleEventHandler",value:function(t,e){this._handlers[t]&&(this.input.removeEventListener(t,this._handlers[t]),delete this._handlers[t]),e&&(this.input.addEventListener(t,e),this._handlers[t]=e)}},{key:"isActive",get:function(){return this.input===document.activeElement}},{key:"_unsafeSelectionStart",get:function(){return this.input.selectionStart}},{key:"_unsafeSelectionEnd",get:function(){return this.input.selectionEnd}},{key:"value",get:function(){return this.input.value},set:function(t){this.input.value=t}}]),e}();Dt.EVENTS_MAP={selectionChange:"keydown",input:"input",drop:"drop",click:"click",focus:"focus",commit:"change"};var Tt=function(){function t(e,n){q(this,t),this.el=e instanceof St?e:new Dt(e),this.masked=_t(n),this._listeners={},this._value="",this._unmaskedValue="",this._saveSelection=this._saveSelection.bind(this),this._onInput=this._onInput.bind(this),this._onChange=this._onChange.bind(this),this._onDrop=this._onDrop.bind(this),this.alignCursor=this.alignCursor.bind(this),this.alignCursorFriendly=this.alignCursorFriendly.bind(this),this._bindEvents(),this.updateValue(),this._onChange()}return Q(t,[{key:"_bindEvents",value:function(){this.el.bindEvents({selectionChange:this._saveSelection,input:this._onInput,drop:this._onDrop,click:this.alignCursorFriendly,focus:this.alignCursorFriendly,commit:this._onChange})}},{key:"_unbindEvents",value:function(){this.el.unbindEvents()}},{key:"_fireEvent",value:function(t){var e=this._listeners[t];e&&e.forEach(function(t){return t()})}},{key:"_saveSelection",value:function(){this.value!==this.el.value&&console.warn("Element value was changed outside of mask. Syncronize mask using `mask.updateValue()` to work properly."),this._selection={start:this.selectionStart,end:this.cursorPos}}},{key:"updateValue",value:function(){this.masked.value=this.el.value}},{key:"updateControl",value:function(){var t=this.masked.unmaskedValue,e=this.masked.value,n=this.unmaskedValue!==t||this.value!==e;this._unmaskedValue=t,this._value=e,this.el.value!==e&&(this.el.value=e),n&&this._fireChangeEvents()}},{key:"updateOptions",value:function(t){t=et({},t),this.mask=t.mask,delete t.mask,function t(e,n){if(n===e)return!0;var u,i=Array.isArray(n),r=Array.isArray(e);if(i&&r){if(n.length!=e.length)return!1;for(u=0;u<n.length;u++)if(!t(n[u],e[u]))return!1;return!0}if(i!=r)return!1;if(n&&e&&"object"===W(n)&&"object"===W(e)){var a=n instanceof Date,s=e instanceof Date;if(a&&s)return n.getTime()==e.getTime();if(a!=s)return!1;var o=n instanceof RegExp,l=e instanceof RegExp;if(o&&l)return n.toString()==e.toString();if(o!=l)return!1;var h=Object.keys(n);for(u=0;u<h.length;u++)if(!Object.prototype.hasOwnProperty.call(e,h[u]))return!1;for(u=0;u<h.length;u++)if(!t(e[h[u]],n[h[u]]))return!1;return!0}return!1}(this.masked,t)||this.masked.updateOptions(t),this.updateControl()}},{key:"updateCursor",value:function(t){null!=t&&(this.cursorPos=t,this._delayUpdateCursor(t))}},{key:"_delayUpdateCursor",value:function(t){var e=this;this._abortUpdateCursor(),this._changingCursorPos=t,this._cursorChanging=setTimeout(function(){e.el&&(e.cursorPos=e._changingCursorPos,e._abortUpdateCursor())},10)}},{key:"_fireChangeEvents",value:function(){this._fireEvent("accept"),this.masked.isComplete&&this._fireEvent("complete")}},{key:"_abortUpdateCursor",value:function(){this._cursorChanging&&(clearTimeout(this._cursorChanging),delete this._cursorChanging)}},{key:"alignCursor",value:function(){this.cursorPos=this.masked.nearestInputPos(this.cursorPos,ft.LEFT)}},{key:"alignCursorFriendly",value:function(){this.selectionStart===this.cursorPos&&this.alignCursor()}},{key:"on",value:function(t,e){return this._listeners[t]||(this._listeners[t]=[]),this._listeners[t].push(e),this}},{key:"off",value:function(t,e){if(this._listeners[t]){if(e){var n=this._listeners[t].indexOf(e);return n>=0&&this._listeners[t].splice(n,1),this}delete this._listeners[t]}}},{key:"_onInput",value:function(){if(this._abortUpdateCursor(),!this._selection)return this.updateValue();var t=new vt(this.el.value,this.cursorPos,this.value,this._selection),e=this.masked.splice(t.startChangePos,t.removed.length,t.inserted,t.removeDirection).offset,n=this.masked.nearestInputPos(t.startChangePos+e,t.removeDirection);this.updateControl(),this.updateCursor(n)}},{key:"_onChange",value:function(){this.value!==this.el.value&&this.updateValue(),this.masked.doCommit(),this.updateControl()}},{key:"_onDrop",value:function(t){t.preventDefault(),t.stopPropagation()}},{key:"destroy",value:function(){this._unbindEvents(),this._listeners.length=0,delete this.el}},{key:"mask",get:function(){return this.masked.mask},set:function(t){if(!(null==t||t===this.masked.mask||t===Date&&this.masked instanceof Bt))if(this.masked.constructor!==yt(t)){var e=_t({mask:t});e.unmaskedValue=this.masked.unmaskedValue,this.masked=e}else this.masked.updateOptions({mask:t})}},{key:"value",get:function(){return this._value},set:function(t){this.masked.value=t,this.updateControl(),this.alignCursor()}},{key:"unmaskedValue",get:function(){return this._unmaskedValue},set:function(t){this.masked.unmaskedValue=t,this.updateControl(),this.alignCursor()}},{key:"typedValue",get:function(){return this.masked.typedValue},set:function(t){this.masked.typedValue=t,this.updateControl(),this.alignCursor()}},{key:"selectionStart",get:function(){return this._cursorChanging?this._changingCursorPos:this.el.selectionStart}},{key:"cursorPos",get:function(){return this._cursorChanging?this._changingCursorPos:this.el.selectionEnd},set:function(t){this.el.isActive&&(this.el.select(t,t),this._saveSelection())}}]),t}(),wt=function(t){function e(){return q(this,e),at(this,ut(e).apply(this,arguments))}return nt(e,Et),Q(e,[{key:"_update",value:function(t){t.enum&&(t.mask="*".repeat(t.enum[0].length)),ot(ut(e.prototype),"_update",this).call(this,t)}},{key:"doValidate",value:function(){for(var t,n=this,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return this.enum.some(function(t){return t.indexOf(n.unmaskedValue)>=0})&&(t=ot(ut(e.prototype),"doValidate",this)).call.apply(t,[this].concat(i))}}]),e}(),xt=function(t){function e(t){return q(this,e),at(this,ut(e).call(this,et({},e.DEFAULTS,t)))}return nt(e,gt),Q(e,[{key:"_update",value:function(t){ot(ut(e.prototype),"_update",this).call(this,t),this._updateRegExps()}},{key:"_updateRegExps",value:function(){var t="",e="";this.allowNegative?(t+="([+|\\-]?|([+|\\-]?(0|([1-9]+\\d*))))",e+="[+|\\-]?"):t+="(0|([1-9]+\\d*))",e+="\\d*";var n=(this.scale?"("+this.radix+"\\d{0,"+this.scale+"})?":"")+"$";this._numberRegExpInput=new RegExp("^"+t+n),this._numberRegExp=new RegExp("^"+e+n),this._mapToRadixRegExp=new RegExp("["+this.mapToRadix.map(pt).join("")+"]","g"),this._thousandsSeparatorRegExp=new RegExp(pt(this.thousandsSeparator),"g")}},{key:"extractTail",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,u=ot(ut(e.prototype),"extractTail",this).call(this,t,n);return et({},u,{value:this._removeThousandsSeparators(u.value)})}},{key:"_removeThousandsSeparators",value:function(t){return t.replace(this._thousandsSeparatorRegExp,"")}},{key:"_insertThousandsSeparators",value:function(t){var e=t.split(this.radix);return e[0]=e[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.thousandsSeparator),e.join(this.radix)}},{key:"doPrepare",value:function(t){for(var n,u=arguments.length,i=new Array(u>1?u-1:0),r=1;r<u;r++)i[r-1]=arguments[r];return(n=ot(ut(e.prototype),"doPrepare",this)).call.apply(n,[this,this._removeThousandsSeparators(t.replace(this._mapToRadixRegExp,this.radix))].concat(i))}},{key:"_separatorsCount",value:function(){for(var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this._value,e=this._removeThousandsSeparators(t).length,n=e,u=0;u<=n;++u)this._value[u]===this.thousandsSeparator&&++n;return n-e}},{key:"_appendCharRaw",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.thousandsSeparator)return ot(ut(e.prototype),"_appendCharRaw",this).call(this,t,n);var u=this._separatorsCount(n.tail&&this._beforeTailState?this._beforeTailState._value:this._value);this._value=this._removeThousandsSeparators(this.value);var i=ot(ut(e.prototype),"_appendCharRaw",this).call(this,t,n);this._value=this._insertThousandsSeparators(this._value);var r=this._separatorsCount(n.tail&&this._beforeTailState?this._beforeTailState._value:this._value);return i.tailShift+=r-u,i}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,n=this.value.slice(0,t),u=this.value.slice(e),i=this._separatorsCount(n);this._value=this._insertThousandsSeparators(this._removeThousandsSeparators(n+u));var r=this._separatorsCount(n);return new kt({tailShift:r-i})}},{key:"nearestInputPos",value:function(t,e){if(!e)return t;var n=function(t,e){return e===ft.LEFT&&--t,t}(t,e);return this.value[n]===this.thousandsSeparator&&(t=function(t,e){switch(e){case ft.LEFT:return--t;case ft.RIGHT:case ft.FORCE_RIGHT:return++t;default:return t}}(t,e)),t}},{key:"doValidate",value:function(t){var n=(t.input?this._numberRegExpInput:this._numberRegExp).test(this._removeThousandsSeparators(this.value));if(n){var u=this.number;n=n&&!isNaN(u)&&(null==this.min||this.min>=0||this.min<=this.number)&&(null==this.max||this.max<=0||this.number<=this.max)}return n&&ot(ut(e.prototype),"doValidate",this).call(this,t)}},{key:"doCommit",value:function(){var t=this.number,n=t;null!=this.min&&(n=Math.max(n,this.min)),null!=this.max&&(n=Math.min(n,this.max)),n!==t&&(this.unmaskedValue=String(n));var u=this.value;this.normalizeZeros&&(u=this._normalizeZeros(u)),this.padFractionalZeros&&(u=this._padFractionalZeros(u)),this._value=this._insertThousandsSeparators(u),ot(ut(e.prototype),"doCommit",this).call(this)}},{key:"_normalizeZeros",value:function(t){var e=this._removeThousandsSeparators(t).split(this.radix);return e[0]=e[0].replace(/^(\D*)(0*)(\d*)/,function(t,e,n,u){return e+u}),t.length&&!/\d$/.test(e[0])&&(e[0]=e[0]+"0"),e.length>1&&(e[1]=e[1].replace(/0*$/,""),e[1].length||(e.length=1)),this._insertThousandsSeparators(e.join(this.radix))}},{key:"_padFractionalZeros",value:function(t){if(!t)return t;var e=t.split(this.radix);return e.length<2&&e.push(""),e[1]=e[1].padEnd(this.scale,"0"),e.join(this.radix)}},{key:"unmaskedValue",get:function(){return this._removeThousandsSeparators(this._normalizeZeros(this.value)).replace(this.radix,".")},set:function(t){ht(ut(e.prototype),"unmaskedValue",t.replace(".",this.radix),this,!0)}},{key:"number",get:function(){return Number(this.unmaskedValue)},set:function(t){this.unmaskedValue=String(t)}},{key:"typedValue",get:function(){return this.number},set:function(t){this.number=t}},{key:"allowNegative",get:function(){return this.signed||null!=this.min&&this.min<0||null!=this.max&&this.max<0}}]),e}();xt.DEFAULTS={radix:",",thousandsSeparator:"",mapToRadix:["."],scale:2,signed:!1,normalizeZeros:!0,padFractionalZeros:!1};var Mt=function(t){function e(){return q(this,e),at(this,ut(e).apply(this,arguments))}return nt(e,gt),Q(e,[{key:"_update",value:function(t){t.validate=function(e){return e.search(t.mask)>=0},ot(ut(e.prototype),"_update",this).call(this,t)}}]),e}(),Pt=function(t){function e(){return q(this,e),at(this,ut(e).apply(this,arguments))}return nt(e,gt),Q(e,[{key:"_update",value:function(t){t.validate=t.mask,ot(ut(e.prototype),"_update",this).call(this,t)}}]),e}(),Ot=function(t){function e(t){var n;return q(this,e),(n=at(this,ut(e).call(this,et({},e.DEFAULTS,t)))).currentMask=null,n}return nt(e,gt),Q(e,[{key:"_update",value:function(t){ot(ut(e.prototype),"_update",this).call(this,t),this.compiledMasks=Array.isArray(t.mask)?t.mask.map(function(t){return _t(t)}):[]}},{key:"_appendCharRaw",value:function(){var t,e=this._applyDispatch.apply(this,arguments);this.currentMask&&e.aggregate((t=this.currentMask)._appendChar.apply(t,arguments));return e}},{key:"_storeBeforeTailState",value:function(){ot(ut(e.prototype),"_storeBeforeTailState",this).call(this),this.currentMask&&this.currentMask._storeBeforeTailState()}},{key:"_restoreBeforeTailState",value:function(){ot(ut(e.prototype),"_restoreBeforeTailState",this).call(this),this.currentMask&&this.currentMask._restoreBeforeTailState()}},{key:"_resetBeforeTailState",value:function(){ot(ut(e.prototype),"_resetBeforeTailState",this).call(this),this.currentMask&&this.currentMask._resetBeforeTailState()}},{key:"_applyDispatch",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.tail&&this._beforeTailState?this._beforeTailState._value:this.value,u=this.rawInputValue,i=e.tail&&this._beforeTailState?this._beforeTailState._rawInputValue:u,r=u.slice(i.length),a=this.currentMask,s=new kt;if(this.currentMask=this.doDispatch(t,e),this.currentMask&&this.currentMask!==a){this.currentMask.reset();var o=this.currentMask.append(i,{raw:!0});s.tailShift=o.inserted.length-n.length,this._storeBeforeTailState(),r&&(s.tailShift+=this.currentMask.append(r,{raw:!0,tail:!0}).tailShift)}return s}},{key:"doDispatch",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.dispatch(t,this,e)}},{key:"doValidate",value:function(){for(var t,n,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return(t=ot(ut(e.prototype),"doValidate",this)).call.apply(t,[this].concat(i))&&(!this.currentMask||(n=this.currentMask).doValidate.apply(n,i))}},{key:"reset",value:function(){this.currentMask&&this.currentMask.reset(),this.compiledMasks.forEach(function(t){return t.reset()})}},{key:"remove",value:function(){var t,e=new kt;this.currentMask&&e.aggregate((t=this.currentMask).remove.apply(t,arguments)).aggregate(this._applyDispatch());return e}},{key:"extractInput",value:function(){var t;return this.currentMask?(t=this.currentMask).extractInput.apply(t,arguments):""}},{key:"extractTail",value:function(){for(var t,n,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return this.currentMask?(t=this.currentMask).extractTail.apply(t,i):(n=ot(ut(e.prototype),"extractTail",this)).call.apply(n,[this].concat(i))}},{key:"doCommit",value:function(){this.currentMask&&this.currentMask.doCommit(),ot(ut(e.prototype),"doCommit",this).call(this)}},{key:"nearestInputPos",value:function(){for(var t,n,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return this.currentMask?(t=this.currentMask).nearestInputPos.apply(t,i):(n=ot(ut(e.prototype),"nearestInputPos",this)).call.apply(n,[this].concat(i))}},{key:"value",get:function(){return this.currentMask?this.currentMask.value:""},set:function(t){ht(ut(e.prototype),"value",t,this,!0)}},{key:"unmaskedValue",get:function(){return this.currentMask?this.currentMask.unmaskedValue:""},set:function(t){ht(ut(e.prototype),"unmaskedValue",t,this,!0)}},{key:"typedValue",get:function(){return this.currentMask?this.currentMask.typedValue:""},set:function(t){var e=String(t);this.currentMask&&(this.currentMask.typedValue=t,e=this.currentMask.unmaskedValue),this.unmaskedValue=e}},{key:"isComplete",get:function(){return!!this.currentMask&&this.currentMask.isComplete}},{key:"state",get:function(){return et({},ot(ut(e.prototype),"state",this),{_rawInputValue:this.rawInputValue,compiledMasks:this.compiledMasks.map(function(t){return t.state}),currentMaskRef:this.currentMask,currentMask:this.currentMask&&this.currentMask.state})},set:function(t){var n=t.compiledMasks,u=t.currentMaskRef,i=t.currentMask,r=rt(t,["compiledMasks","currentMaskRef","currentMask"]);this.compiledMasks.forEach(function(t,e){return t.state=n[e]}),null!=u&&(this.currentMask=u,this.currentMask.state=i),ht(ut(e.prototype),"state",r,this,!0)}}]),e}();function It(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Tt(t,e)}return Ot.DEFAULTS={dispatch:function(t,e,n){if(e.compiledMasks.length){var u=e.rawInputValue,i=e.compiledMasks.map(function(e,i){var r=e.state;e.rawInputValue=u,e.append(t,n);var a=e.rawInputValue.length;return e.state=r,{weight:a,index:i}});return i.sort(function(t,e){return e.weight-t.weight}),e.compiledMasks[i[0].index]}}},It.InputMask=Tt,It.Masked=gt,It.MaskedPattern=Et,It.MaskedEnum=wt,It.MaskedRange=bt,It.MaskedNumber=xt,It.MaskedDate=Bt,It.MaskedRegExp=Mt,It.MaskedFunction=Pt,It.MaskedDynamic=Ot,It.createMask=_t,It.MaskElement=St,It.HTMLMaskElement=Dt,dt.IMask=It,It});
//# sourceMappingURL=imask.min.js.map
{
"name": "imask",
"version": "3.4.0",
"version": "4.0.0",
"author": "Alexey Kryazhev",

@@ -17,3 +17,3 @@ "license": "MIT",

"pretest": "flow check",
"watch": "rollup -c -w",
"watch": "rollup -c -w --environment format:umd,env:production",
"build": "npm run build:dev && npm run build:prod",

@@ -20,0 +20,0 @@ "build:dev": "npm run build:dev:es && npm run build:dev:umd",

@@ -23,2 +23,4 @@ # imaskjs

## Support Development
[https://www.paypal.me/alexeykryazhev](https://www.paypal.me/alexeykryazhev)
If you enjoyed working with it, you can buy me a cup of coffee :)
<a href='https://ko-fi.com/unmanner' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://az743702.vo.msecnd.net/cdn/kofi1.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc