handleBeforePaste(event){
const target = event.target
event.clipboardData.items[0].getAsString(text=>{
event.preventDefault()
if(this.props.disabled) return
const countNum = String(Math.abs(text)).length
countNum == 11 ? text = text.slice(1) : false
this.props.onChange(text, target, this.props.position)
})
}