@desource/phone-mask-nuxt 0.2.1 → 0.2.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/CHANGELOG.md CHANGED
@@ -1,11 +1,30 @@
1
1
  # @desource/phone-mask-nuxt
2
2
 
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Vue: Improve country dropdown scroll
8
+
9
+ - Updated dependencies []:
10
+ - @desource/phone-mask-vue@0.2.3
11
+
12
+ ## 0.2.2
13
+
14
+ ### Patch Changes
15
+
16
+ - Core: Sync country masks with google-libphonenumber (Morocco & Western Sahara updates)
17
+
18
+ - Updated dependencies []:
19
+ - @desource/phone-mask-vue@0.2.2
20
+
3
21
  ## 0.2.1
4
22
 
5
23
  ### Patch Changes
6
24
 
7
25
  - Nuxt: Improve install process of the package
8
- Vue: Improve locale init of PhoneMask
26
+ - Vue: Improve locale init of PhoneMask
27
+
9
28
  - Updated dependencies []:
10
29
  - @desource/phone-mask-vue@0.2.1
11
30
 
@@ -16,7 +35,7 @@
16
35
  - Initial release of phone-mask monorepo packages
17
36
  - Core phone masking library with Google libphonenumber integration
18
37
  - Vue 3 component and directive for phone input
19
- - Nuxt 3 module with zero-config setup
38
+ - Nuxt module with zero-config setup
20
39
 
21
40
  ### Patch Changes
22
41
 
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # @desource/phone-mask-nuxt
2
2
 
3
- > Nuxt 3 module for phone input with Google's libphonenumber data
3
+ > Nuxt module for phone input with Google's libphonenumber data
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/@desource/phone-mask-nuxt?color=blue&logo=nuxt.js)](https://www.npmjs.com/package/@desource/phone-mask-nuxt)
6
6
  [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/DeSource-Labs/phone-mask/blob/main/LICENSE)
7
7
 
8
- Drop-in Nuxt 3 module with auto-imports, SSR support, and zero configuration.
8
+ Drop-in Nuxt module with auto-imports, SSR support, and zero configuration.
9
9
 
10
10
  ## ✨ Features
11
11
 
package/dist/module.d.mts CHANGED
@@ -6,7 +6,7 @@ interface ModuleOptions {
6
6
  directive?: boolean;
7
7
  helpers?: boolean;
8
8
  }
9
- declare const module: NuxtModule<ModuleOptions>;
9
+ declare const module$1: NuxtModule<ModuleOptions>;
10
10
 
11
- export { module as default };
11
+ export { module$1 as default };
12
12
  export type { ModuleOptions };
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.1",
7
+ "version": "0.2.3",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "unknown"
package/dist/module.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { defineNuxtModule, createResolver, isNuxtMajorVersion, addPlugin, addImports, addComponent } from '@nuxt/kit';
2
2
  import { fileURLToPath } from 'url';
3
3
 
4
- const module = defineNuxtModule({
4
+ const module$1 = defineNuxtModule({
5
5
  meta: {
6
6
  name: "phoneMask",
7
7
  compatibility: {
@@ -58,4 +58,4 @@ const module = defineNuxtModule({
58
58
  }
59
59
  });
60
60
 
61
- export { module as default };
61
+ export { module$1 as default };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@desource/phone-mask-nuxt",
3
- "version": "0.2.1",
4
- "description": "🎯 Zero-config Nuxt 3 module for international phone masking. Powered by @desource/phone-mask with Google libphonenumber sync.",
3
+ "version": "0.2.3",
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": {
7
7
  ".": {
@@ -20,6 +20,7 @@
20
20
  "nuxt",
21
21
  "nuxt-module",
22
22
  "nuxt3",
23
+ "nuxt4",
23
24
  "vue",
24
25
  "vue3",
25
26
  "phone",
@@ -53,13 +54,13 @@
53
54
  "vue": "^3.4.33"
54
55
  },
55
56
  "dependencies": {
56
- "@desource/phone-mask-vue": "0.2.1"
57
+ "@desource/phone-mask-vue": "0.2.3"
57
58
  },
58
59
  "devDependencies": {
59
- "@nuxt/kit": "^4.2.0",
60
+ "@nuxt/kit": "^4.3.1",
60
61
  "@nuxt/module-builder": "^1.0.2",
61
- "nuxt": "^4.1.3",
62
- "vue": "^3.5.22"
62
+ "nuxt": "^4.3.1",
63
+ "vue": "^3.5.27"
63
64
  },
64
65
  "scripts": {
65
66
  "dev:prepare": "nuxt prepare",