@desource/phone-mask-nuxt 0.2.2 → 0.3.0

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,5 +1,26 @@
1
1
  # @desource/phone-mask-nuxt
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - React: Design React version of phone-mask library
8
+ - Core: Add geoip reusable service for country detection based on IP address
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies []:
13
+ - @desource/phone-mask-vue@0.3.0
14
+
15
+ ## 0.2.3
16
+
17
+ ### Patch Changes
18
+
19
+ - Vue: Improve country dropdown scroll
20
+
21
+ - Updated dependencies []:
22
+ - @desource/phone-mask-vue@0.2.3
23
+
3
24
  ## 0.2.2
4
25
 
5
26
  ### Patch Changes
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 DeSource Labs
3
+ Copyright (c) 2026 DeSource Labs
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -385,7 +385,7 @@ No changes needed in your components!
385
385
 
386
386
  ## 📄 License
387
387
 
388
- [MIT](../../LICENSE) © 2025 DeSource Labs
388
+ [MIT](../../LICENSE) © 2026 DeSource Labs
389
389
 
390
390
  ## 🤝 Contributing
391
391
 
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "nuxt": ">=3.0.0"
5
5
  },
6
6
  "configKey": "phoneMask",
7
- "version": "0.2.2",
7
+ "version": "0.3.0",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "unknown"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@desource/phone-mask-nuxt",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "description": "🎯 Zero-config Nuxt module for international phone masking. Powered by @desource/phone-mask with Google libphonenumber sync.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -54,17 +54,17 @@
54
54
  "vue": "^3.4.33"
55
55
  },
56
56
  "dependencies": {
57
- "@desource/phone-mask-vue": "0.2.2"
57
+ "@desource/phone-mask-vue": "0.3.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@nuxt/kit": "^4.3.0",
60
+ "@nuxt/kit": "^4.3.1",
61
61
  "@nuxt/module-builder": "^1.0.2",
62
- "nuxt": "^4.3.0",
63
- "vue": "^3.5.27"
62
+ "nuxt": "^4.3.1",
63
+ "vue": "^3.5.28"
64
64
  },
65
65
  "scripts": {
66
66
  "dev:prepare": "nuxt prepare",
67
- "clean": "rimraf dist",
67
+ "clean": "rimraf dist .nuxt",
68
68
  "build": "pnpm dev:prepare && nuxt-module-build build"
69
69
  }
70
70
  }