@graphcommerce/next-ui 5.2.0-canary.10 → 5.2.0-canary.11

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
+ ## 5.2.0-canary.11
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1794](https://github.com/graphcommerce-org/graphcommerce/pull/1794) [`29e15cf63`](https://github.com/graphcommerce-org/graphcommerce/commit/29e15cf63251cf98cf42325322fcf09fb7a6c0b7) - Fix scroll issue with bottom overlay on Android ([@bramvanderholst](https://github.com/bramvanderholst))
8
+
3
9
  ## 5.2.0-canary.10
4
10
 
5
11
  ### Minor Changes
@@ -287,7 +287,18 @@ export function OverlayBase(incomingProps: LayoutOverlayBaseProps) {
287
287
  borderTopLeftRadius: theme.shape.borderRadius * 3,
288
288
  borderTopRightRadius: theme.shape.borderRadius * 3,
289
289
  gridTemplate: `"beforeOverlay" "overlay"`,
290
- height: dvh(100),
290
+ height: `calc(${dvh(100)} - 1px)`,
291
+
292
+ '&::after': {
293
+ content: `""`,
294
+ display: 'block',
295
+ position: 'absolute',
296
+ width: '100%',
297
+ height: '1px',
298
+ top: 'calc(100% - 1px)',
299
+ left: '0',
300
+ background: theme.palette.background.paper,
301
+ },
291
302
  },
292
303
  },
293
304
  [theme.breakpoints.up('md')]: {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/next-ui",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "5.2.0-canary.10",
5
+ "version": "5.2.0-canary.11",
6
6
  "author": "",
7
7
  "license": "MIT",
8
8
  "sideEffects": false,
@@ -18,18 +18,18 @@
18
18
  "@emotion/react": "^11.10.5",
19
19
  "@emotion/server": "^11.4.0",
20
20
  "@emotion/styled": "^11.10.5",
21
- "@graphcommerce/framer-next-pages": "5.2.0-canary.10",
22
- "@graphcommerce/framer-scroller": "5.2.0-canary.10",
23
- "@graphcommerce/framer-utils": "5.2.0-canary.10",
24
- "@graphcommerce/image": "5.2.0-canary.10",
21
+ "@graphcommerce/framer-next-pages": "5.2.0-canary.11",
22
+ "@graphcommerce/framer-scroller": "5.2.0-canary.11",
23
+ "@graphcommerce/framer-utils": "5.2.0-canary.11",
24
+ "@graphcommerce/image": "5.2.0-canary.11",
25
25
  "cookie": "^0.5.0",
26
26
  "react-is": "^18.2.0",
27
27
  "schema-dts": "^1.1.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@graphcommerce/eslint-config-pwa": "5.2.0-canary.10",
31
- "@graphcommerce/prettier-config-pwa": "5.2.0-canary.10",
32
- "@graphcommerce/typescript-config-pwa": "5.2.0-canary.10",
30
+ "@graphcommerce/eslint-config-pwa": "5.2.0-canary.11",
31
+ "@graphcommerce/prettier-config-pwa": "5.2.0-canary.11",
32
+ "@graphcommerce/typescript-config-pwa": "5.2.0-canary.11",
33
33
  "@types/cookie": "^0.5.1",
34
34
  "@types/react-is": "^17.0.3",
35
35
  "typescript": "4.9.4"