v-money3 3.22.2 → 3.22.3

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/README.md CHANGED
@@ -261,7 +261,7 @@ A console warn with more information will be shown!
261
261
  Use it directly in the browser!
262
262
 
263
263
  ```html
264
- <script src="https://unpkg.com/v-money3@3.22.2/dist/v-money3.umd.js"></script>
264
+ <script src="https://unpkg.com/v-money3@3.22.3/dist/v-money3.umd.js"></script>
265
265
  ```
266
266
 
267
267
  Take a look at issue [#15](https://github.com/jonathanpmartins/v-money3/issues/15#issuecomment-830988807) and also this [codesandbox](https://codesandbox.io/s/mystifying-paper-bpfyn?file=/index.html) working example.
@@ -1,4 +1,4 @@
1
- declare type NumberParam = bigint | number | string;
1
+ type NumberParam = bigint | number | string;
2
2
  export default class BigNumber {
3
3
  private number;
4
4
  private decimal;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "v-money3",
3
- "version": "3.22.2",
3
+ "version": "3.22.3",
4
4
  "description": "Vue3 currency input/directive mask",
5
5
  "main": "./dist/v-money3.umd.js",
6
6
  "module": "./dist/v-money3.mjs",
@@ -22,7 +22,7 @@
22
22
  "lock": "npm i --package-lock-only",
23
23
  "pack": "npm run build; npm pack;",
24
24
  "prepublish": "npm run build",
25
- "update": "export PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=true; npm update --verbose;"
25
+ "update": "export PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=true; export PUPPETEER_SKIP_DOWNLOAD=true; npm update --verbose;"
26
26
  },
27
27
  "files": [
28
28
  "dist"