@dropins/storefront-account 4.1.0-beta.0 → 4.1.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/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @dropins/storefront-account
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b3826fd: Begin next development cycle
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 9afe8a2: fix(AddressesWrapper): show keyboard focus indicator on the "use a different address" radio option (WCAG 2.4.7)
|
|
12
|
+
- 7f35291: fix(AddressesWrapper): mark address section title as a heading (WCAG 2.4.6) and align the "use a different address" radio's accessible name with its visible text (WCAG 2.5.3)
|
|
13
|
+
- 0e45792: Fix incorrect and missing `autocomplete` attributes on form fields (WCAG 1.3.5).
|
|
14
|
+
|
|
15
|
+
The first name, last name, and email fields on the customer account and addresses forms were missing an `autocomplete` attribute entirely; they now use `given-name`, `family-name`, and `email` respectively.
|
|
16
|
+
|
|
17
|
+
The current password, new password, and confirm password fields on the change password form, and the password confirmation field shown when changing the account email, used invalid `autocomplete` values (`currentPassword`, `newPassword`, `confirmPassword`, `password`, none of which are valid HTML5 tokens). They now use the correct `current-password` / `new-password` values.
|
|
18
|
+
|
|
19
|
+
This helps browsers and assistive technology correctly identify the purpose of each field, making autofill and form-filling easier for everyone, including people using screen readers or who have difficulty typing.
|
|
20
|
+
|
|
21
|
+
- 660a316: Fix visual heading text not marked as heading across orders, addresses, payment methods and customer information sections
|
|
22
|
+
- 952c2ec: Bump SDK stable versions
|
|
23
|
+
|
|
24
|
+
## 4.1.0-beta.1
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 952c2ec: Bump SDK stable versions
|
|
29
|
+
|
|
3
30
|
## 4.1.0-beta.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
package/package.json
CHANGED