You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Using inputmask in certain build environments can cause a JavaScript error when calling mask():
core.js:4352 ERROR TypeError: Inputmask.prototype.analyseMask is not a function
at generateMask (mask-lexer.js:40)
at generateMaskSet (mask-lexer.js:91)
at inputmask.js:87
at Array.forEach (<anonymous>)
at Inputmask.mask (inputmask.js:84)
Reproduction: I don't have one, but hopefully the issue is apparent. This is occurring when using Inputmask from an Angular Custom Element that imports via ES6 import.
Browser: Chrome 92 Inputmask version: 5.0.6
Analysis:
I troubleshot this issue for awhile, and only after I changed my import to node_modules/inputmask/bundle did I see the more helpful stack trace above. This is happening because Inputmask is exported to window in inputmask.js, but is not imported in mask-lexer.js which means that the Inputmask.prototype being imported is the one from window.Inputmask -- this does not have an analyseMask function in my environment.
Fix:
By explicitly importing in mask-lexer.js, the error goes away:
import Inputmask from './inputmask';
The text was updated successfully, but these errors were encountered:
antch
changed the title
Issues with Inputmask.prototype enhancement on global reference
Issues with Inputmask.prototype enhancement on global reference (easy fix)
Sep 2, 2021
antch
changed the title
Issues with Inputmask.prototype enhancement on global reference (easy fix)
Issue with global Inputmask.prototype reference (easy fix)
Sep 2, 2021
Description: Using inputmask in certain build environments can cause a JavaScript error when calling
mask()
:Reproduction: I don't have one, but hopefully the issue is apparent. This is occurring when using Inputmask from an Angular Custom Element that imports via ES6
import
.Browser: Chrome 92
Inputmask version: 5.0.6
Analysis:
I troubleshot this issue for awhile, and only after I changed my import to
node_modules/inputmask/bundle
did I see the more helpful stack trace above. This is happening becauseInputmask
is exported to window ininputmask.js
, but is not imported inmask-lexer.js
which means that theInputmask.prototype
being imported is the one fromwindow.Inputmask
-- this does not have ananalyseMask
function in my environment.Fix:
By explicitly importing in
mask-lexer.js
, the error goes away:The text was updated successfully, but these errors were encountered: