adopted-ember-addons / ember-inputmask

Ember wrapper around Inputmask.js
https://adopted-ember-addons.github.io/ember-inputmask/
MIT License
68 stars 45 forks source link

clearMaskOnLostFocus does not clear the mask in Octane #135

Open gspain opened 4 years ago

gspain commented 4 years ago

In Ember Octane, on the latest addon version 0.11, using the options hash clearMaskOnLostFocus=true on the currency mask does not clear the mask when I type something in, delete it (so it's back to 0.00), and then focus on another input.

<OneWayCurrencyMask
   @value={{@changeset.price}}
   @update={{fn (mut @changeset.price)}}
   @options={{hash clearMaskOnLostFocus=true showMaskOnHover=false}}
   @placeholder="Price"
/>