Skip to content

Commit 7769761

Browse files
author
Christian Ewald
authored
Merge branch 'hotfix/v1.12.3' into bugfix/multi-tab-cart-sync-in-multistore
2 parents 19eb0bd + 75d7e1b commit 7769761

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4747
- Bump dependencies versions (#4715, #4696, #4951)
4848
- Using dayjs for dates in taxCalc.ts to make it work properly in Safari (#5364)
4949
- Awaiting addItem action call inside mergeServerItem action (#5165)
50+
- Moved `phoneNum` to proper branch - @lukaszjedrasik ([#5730](https://github.com/vuestorefront/vue-storefront/issues/5730))
51+
5052
## [1.12.2] - 2020.07.28
5153

5254
### Added

core/helpers/validators/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@ export const unicodeAlpha = (value: string): boolean => /[A-Za-z\xAA\xB5\xBA\xC0
33

44
/** check if string contains some any unicode alphabet characters or digits */
55
export const unicodeAlphaNum = (value: string): boolean => unicodeAlpha(value) || /[0-9]+/.test(value)
6-
7-
/** check if string contains between 6 and 14 digits and can consist of plus sign with national code and spaces between groups of digits */
8-
export const phoneNum = (value: string): boolean => /^\+?(?:[0-9] ?){6,14}[0-9]$/.test(value)

src/themes/default

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)