@liquidcommerce/elements-sdk 2.7.27 → 2.7.28
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/README.md +3 -2
- package/dist/index.checkout.esm.js +7518 -8002
- package/dist/index.esm.js +12271 -12755
- package/dist/types/modules/checkout/checkout.commands.d.ts +1 -0
- package/dist/types/modules/ui-components/lce-element/lce-element.component.d.ts +1 -9
- package/dist/types/utils/format.d.ts +4 -0
- package/docs/v1/api/configuration.md +3 -3
- package/docs/v1/guides/accessibility.md +14 -31
- package/docs/v1/guides/theming.md +2 -2
- package/package.json +1 -1
- package/dist/types/modules/theme-provider/services/contrast-guard.service.d.ts +0 -19
- package/dist/types/utils/color-contrast.d.ts +0 -16
package/README.md
CHANGED
|
@@ -154,8 +154,9 @@ Works with any framework. See:
|
|
|
154
154
|
## Accessibility
|
|
155
155
|
|
|
156
156
|
Elements target WCAG 2.1 AA out of the box: single-tab-stop keyboard groups with arrow-key
|
|
157
|
-
navigation, managed focus for every overlay, screen-reader announcements for content that
|
|
158
|
-
without navigation
|
|
157
|
+
navigation, managed focus for every overlay, and screen-reader announcements for content that
|
|
158
|
+
changes without navigation. Colour contrast depends on the theme you supply — the SDK renders your
|
|
159
|
+
colours as given.
|
|
159
160
|
|
|
160
161
|
See the [Accessibility Guide](./docs/v1/guides/accessibility.md) for the keyboard map, the list of
|
|
161
162
|
announcements, and what your page is responsible for.
|