v-money3 3.24.0 → 3.24.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -3
package/README.md CHANGED
@@ -266,7 +266,7 @@ A console warn with more information will be shown!
266
266
  Use it directly in the browser!
267
267
 
268
268
  ```html
269
- <script src="https://unpkg.com/v-money3@3.24.0/dist/v-money3.umd.js"></script>
269
+ <script src="https://unpkg.com/v-money3@3.24.1/dist/v-money3.umd.js"></script>
270
270
  ```
271
271
 
272
272
  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.
package/package.json CHANGED
@@ -1,13 +1,19 @@
1
1
  {
2
2
  "name": "v-money3",
3
- "version": "3.24.0",
3
+ "version": "3.24.1",
4
4
  "description": "Vue3 currency input/directive mask",
5
5
  "main": "./dist/v-money3.umd.js",
6
6
  "module": "./dist/v-money3.mjs",
7
7
  "exports": {
8
8
  ".": {
9
- "import": "./dist/v-money3.mjs",
10
- "require": "./dist/v-money3.umd.js"
9
+ "import": {
10
+ "types": "./dist/index.d.ts",
11
+ "default": "./dist/v-money3.mjs"
12
+ },
13
+ "require": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/v-money3.umd.js"
16
+ }
11
17
  }
12
18
  },
13
19
  "typings": "./dist/index.d.ts",