Skip to content

Releases: taiga-family/maskito

Release v0.6.0

15 Mar 13:10
Compare
Choose a tag to compare

0.6.0 (2023-03-15)

Features

  • angular: add CVA and pipe (#187)
    (a099257)
  • core: add deleteWordBackward & deleteWordForward support
    (#193)
    (24b761c)

Bug Fixes

  • core: show trailing fixed characters + duplicated fixed character on Drop
    (#185)
    (c7f6a1b)
  • kit: maskitoParseNumber incorrectly parses negative numbers
    (#190)
    (d713bd1)
  • kit: Number should drop decimal part on paste from clipboard if precision=0
    (#195)
    (ba85c38)

⚠️ Warning

Default value of decimalSeparator from Number mask becomes dot (it was comma).

Release v0.5.0

09 Mar 11:16
Compare
Choose a tag to compare

0.5.0 (2023-03-09)

Features

  • core: new utility maskitoTransform(value, maskitoOptions)
    (#177)
    (20316f1)
  • kit: new utility maskitoParseNumber (#178)
    (fc58141)

Bug Fixes

  • kit: Number mask throws an error on empty string in thousandSeparator
    (#176)
    (cd52fad)

Release v0.4.0

02 Mar 14:20
Compare
Choose a tag to compare

0.4.0 (2023-03-02)

Features

  • angular: maskitoElement add new input (#164)
    (407c131)

Bug Fixes

  • kit: Number pads empty integer part when paste from clipboard
    (#168)
    (d043a82)

Release v0.3.0

01 Mar 12:22
Compare
Choose a tag to compare

0.3.0 (2023-03-01)

Features

  • angular: add other maskito packages to ng-update.packageGroup of package.json
    (#161)
    (bdecdaa)

Bug Fixes

  • kit: Date-mask fix wrong year that appears using the min property
    (#157)
    (544e891)

Release v0.2.0

28 Feb 11:54
Compare
Choose a tag to compare

0.2.0 (2023-02-28)

Features

Bug Fixes

  • kit: Number is now replacing hyphen, en-dash and em-dash with minus sign
    (#153)
    (1f21f11)

Release v0.1.1

15 Feb 12:57
Compare
Choose a tag to compare

0.1.1 (2023-02-15)

Bug Fixes

  • core: Module parse failed: 'import' and 'export' may appear only with 'sourceType: module'
    (#131)
    (41e05c0)

Release v0.1.0

15 Feb 08:53
Compare
Choose a tag to compare

0.1.0 (2023-02-14)

This release introduces the first publishing of the following packages:

  • @maskito/core
    It is the main zero-dependency and framework-agnostic package. It can be used alone in Vanilla
    Javascript project. It listens beforeinput and input events to validate and calibrate textfield's value.
    Read more: https://tinkoff.github.io/maskito/core-concepts/overview
  • @maskito/kit
    The optional framework-agnostic package. It contains ready-to-use masks with configurable
    parameters. This release introduces the following masks:
  • @maskito/angular
    The Angular-specific library. It provides two convenient ways of using Maskito:
    • Basic directive approach (when developer has direct access to native input element).
    • Dependency Injection approach (when native input element is hidden somewhere deep inside another component).