use-mask-input 3.3.6 → 3.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [3.3.7](https://github.com/eduardoborges/use-mask-input/compare/3.3.6...3.3.7) (2023-11-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fix options spread in getMaskOptions function ([e857424](https://github.com/eduardoborges/use-mask-input/commit/e85742442a375f85edfd819475071b29b4bc0af8))
7
+
1
8
  ## [3.3.6](https://github.com/eduardoborges/use-mask-input/compare/3.3.5...3.3.6) (2023-10-02)
2
9
 
3
10
 
package/dist/index.cjs CHANGED
@@ -3646,8 +3646,8 @@ const isServer = !(typeof window !== "undefined" && window.document && window.do
3646
3646
 
3647
3647
  const getMaskOptions = (mask, _options) => {
3648
3648
  const options = {
3649
- ..._options,
3650
- jitMasking: false
3649
+ jitMasking: false,
3650
+ ..._options
3651
3651
  };
3652
3652
  if (!mask)
3653
3653
  return options;