feat: update input-number to 4.3.1

pull/309/head
tangjinzhou 2018-11-02 21:23:29 +08:00
parent 6ab4c3db68
commit bbff1e56b5
1 changed files with 34 additions and 6 deletions

View File

@ -1,7 +1,7 @@
// based on rc-input-number 4.0.12 // based on rc-input-number 4.3.1
import PropTypes from '../../_util/vue-types' import PropTypes from '../../_util/vue-types'
import BaseMixin from '../../_util/BaseMixin' import BaseMixin from '../../_util/BaseMixin'
import { initDefaultProps, hasProp } from '../../_util/props-util' import { initDefaultProps, hasProp, getOptionProps } from '../../_util/props-util'
import classNames from 'classnames' import classNames from 'classnames'
import isNegativeZero from 'is-negative-zero' import isNegativeZero from 'is-negative-zero'
import KeyCode from '../../_util/KeyCode' import KeyCode from '../../_util/KeyCode'
@ -72,6 +72,7 @@ const inputNumberProps = {
precision: PropTypes.number, precision: PropTypes.number,
required: PropTypes.bool, required: PropTypes.bool,
pattern: PropTypes.string, pattern: PropTypes.string,
decimalSeparator: PropTypes.string,
} }
export default { export default {
@ -142,6 +143,22 @@ export default {
inputValue: this.inputting ? value : this.toPrecisionAsStep(value), inputValue: this.inputting ? value : this.toPrecisionAsStep(value),
}) })
}, },
max (val) {
const props = getOptionProps(this)
// Trigger onChange when max or min change
// https://github.com/ant-design/ant-design/issues/11574
const nextValue = 'value' in props ? props.value : this.sValue
if (nextValue > val) {
this.__emit('change', val)
}
},
min (val) {
const props = getOptionProps(this)
const nextValue = 'value' in props ? props.value : this.sValue
if (nextValue < val) {
this.__emit('change', val)
}
},
}, },
methods: { methods: {
updatedFunc () { updatedFunc () {
@ -158,7 +175,7 @@ export default {
if ( if (
// If not match full str, try to match part of str // If not match full str, try to match part of str
!this.partRestoreByAfter(this.cursorAfter) !this.partRestoreByAfter(this.cursorAfter) && this.sValue !== this.value
) { ) {
// If not match any of then, let's just keep the position // If not match any of then, let's just keep the position
// TODO: Logic should not reach here, need check if happens // TODO: Logic should not reach here, need check if happens
@ -275,8 +292,14 @@ export default {
}, },
getValueFromEvent (e) { getValueFromEvent (e) {
// optimize for chinese input expierence // optimize for chinese input expierence
// https://github.com/ant-design/ant-design/issues/8196 // https://github.com/ant-design/ant-design/issues/8196
return e.target.value.trim().replace(/。/g, '.') let value = e.target.value.trim().replace(/。/g, '.')
if (this.decimalSeparator !== undefined) {
value = value.replace(this.decimalSeparator, '.')
}
return value
}, },
getValidValue (value, min = this.min, max = this.max) { getValidValue (value, min = this.min, max = this.max) {
let val = parseFloat(value, 10) let val = parseFloat(value, 10)
@ -622,7 +645,12 @@ export default {
mouseleave: this.stop, mouseleave: this.stop,
} }
} }
const inputDisplayValueFormat = this.formatWrapper(inputDisplayValue) let inputDisplayValueFormat = this.formatWrapper(inputDisplayValue)
if (this.decimalSeparator !== undefined) {
inputDisplayValueFormat = inputDisplayValueFormat
.toString()
.replace('.', this.decimalSeparator)
}
const isUpDisabled = !!upDisabledClass || disabled || readOnly const isUpDisabled = !!upDisabledClass || disabled || readOnly
const isDownDisabled = !!downDisabledClass || disabled || readOnly const isDownDisabled = !!downDisabledClass || disabled || readOnly
const { mouseenter = noop, mouseleave = noop, mouseover = noop, mouseout = noop } = this.$listeners const { mouseenter = noop, mouseleave = noop, mouseover = noop, mouseout = noop } = this.$listeners