@desource/phone-mask-svelte 1.1.1 → 1.2.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 +27 -0
- package/dist/index.cjs +1 -1475
- package/dist/index.mjs +1 -1458
- package/dist/phone-mask-svelte.css +2 -382
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @desource/phone-mask-svelte
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Core Upgrades:
|
|
8
|
+
- Core metadata minification redesigned for better performance and reliability
|
|
9
|
+
- Breaking changes (minor impact):
|
|
10
|
+
- Core mask shape normalized: `mask` is now always `string[]` (no `string | string[]` union) across core types/exports
|
|
11
|
+
- `toArray` removed from all packages
|
|
12
|
+
- Formatter edge case fixed: countries with no mask variants are now handled safely (`maxDigits = 0` path)
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies []:
|
|
17
|
+
- @desource/phone-mask@1.2.0
|
|
18
|
+
|
|
19
|
+
## 1.1.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Vue/React/Svelte Upgrades:
|
|
24
|
+
- Reduced package bundle size (optimized build output)
|
|
25
|
+
- No API changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies []:
|
|
28
|
+
- @desource/phone-mask@1.1.2
|
|
29
|
+
|
|
3
30
|
## 1.1.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|