@graphcommerce/framer-next-pages 3.2.0 → 3.2.1

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1432](https://github.com/graphcommerce-org/graphcommerce/pull/1432) [`99600dd09`](https://github.com/graphcommerce-org/graphcommerce/commit/99600dd091980dd9ef335c04d2efac0835c20b2f) Thanks [@paales](https://github.com/paales)! - make sure the background isn’t visible to screen readers
8
+
3
9
  ## 3.2.0
4
10
 
5
11
  ### Minor Changes
@@ -36,7 +36,10 @@ export function Page(props: PageProps) {
36
36
  return (
37
37
  <m.div
38
38
  style={{ position, top, zIndex, minHeight: clientSizeCssVar.y, left: 0, right: 0 }}
39
- data-nosnippet
39
+ // @ts-expect-error inert is not in the type definition yet
40
+ inert={!active ? true : undefined}
41
+ data-nosnippet={!active ? true : undefined}
42
+ aria-hidden={!active ? true : undefined}
40
43
  >
41
44
  {children}
42
45
  </m.div>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/framer-next-pages",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.2.0",
5
+ "version": "3.2.1",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {