@hmcts/ccpay-web-component 5.2.0-beta05 → 5.2.0-beta07
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/bundles/hmcts-ccpay-web-component.umd.js +2 -2
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/lib/components/contact-details/contact-details.component.js +3 -3
- package/fesm2015/hmcts-ccpay-web-component.js +2 -2
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/package.json +1 -1
|
@@ -2163,13 +2163,13 @@
|
|
|
2163
2163
|
this.emailAddressForm = this.formBuilder.group({
|
|
2164
2164
|
email: new forms.FormControl('', forms.Validators.compose([
|
|
2165
2165
|
forms.Validators.required,
|
|
2166
|
-
forms.Validators.pattern('
|
|
2166
|
+
forms.Validators.pattern('@+.+')
|
|
2167
2167
|
]))
|
|
2168
2168
|
});
|
|
2169
2169
|
this.postCodeForm = this.formBuilder.group({
|
|
2170
2170
|
postcode: new forms.FormControl('', forms.Validators.compose([
|
|
2171
2171
|
forms.Validators.required,
|
|
2172
|
-
forms.Validators.pattern('^[
|
|
2172
|
+
forms.Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')
|
|
2173
2173
|
]))
|
|
2174
2174
|
});
|
|
2175
2175
|
this.manualAddressForm = this.formBuilder.group({
|