Skip to content

Releases: kevinongko/vue-numeric

v1.4.0

15 Mar 04:28
Compare
Choose a tag to compare

Changes

  • Update parent model value on input instead on blur.
  • minus props is false by default.
  • Improved docs.

v1.3.2

09 Mar 07:08
Compare
Choose a tag to compare

Fixed

  • Convert input value to number on focus

v1.3.1

24 Feb 15:49
Compare
Choose a tag to compare

Fixed

  • fixed disappearing default value

v1.3.0

24 Feb 01:30
Compare
Choose a tag to compare

Changes

  • use watch to apply default value

v.1.2.4

11 Jan 09:24
Compare
Choose a tag to compare

New Features

  • Enable/disable minus value using minus props

Other

  • Add docblock

v1.2.3

11 Jan 08:02
Compare
Choose a tag to compare

Changes

  • Input event return number instead of string

v1.2.2

11 Jan 07:35
Compare
Choose a tag to compare

Fixed

  • disable separator required warning

v1.2.1

10 Jan 10:29
Compare
Choose a tag to compare

Fixed

Fix NaN error when value is inputted incorrectly.

v1.2.0

10 Jan 10:21
Compare
Choose a tag to compare

New Features

  • Support decimals
 /**
  * Number of decimals.
  */
 precision: {
   type: [String, Number]
   required: false
 },
  • decimals symbol are the opposite of separator props
    ( if separator is , then the decimals symbol is .)

Changes

  • Input formatted when on blur instead of on changes because issue with decimals.
  • Separator props now accept either . or , (default)