@graphcommerce/next-ui 3.20.2 → 3.20.6
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 +22 -0
- package/FlagAvatar/index.tsx +1 -1
- package/FramerScroller/components/SidebarGallery.tsx +3 -1
- package/Layout/components/LayoutHeaderContent.tsx +6 -10
- package/LayoutOverlay/components/LayoutOverlayBase.tsx +10 -2
- package/TextInputNumber/index.tsx +5 -2
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.20.5](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.4...@graphcommerce/next-ui@3.20.5) (2021-12-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Accessibility, SEO ([a258837](https://github.com/ho-nl/m2-pwa/commit/a258837476d94d20d33e13a4c4f950fff57f7dca))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.20.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.3...@graphcommerce/next-ui@3.20.4) (2021-12-06)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* use Locale to set storeSwitcher icons ([65ea397](https://github.com/ho-nl/m2-pwa/commit/65ea397ec53aa27f545b43feda8e35227e119ebe))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [3.20.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.20.1...@graphcommerce/next-ui@3.20.2) (2021-12-03)
|
|
7
29
|
|
|
8
30
|
|
package/FlagAvatar/index.tsx
CHANGED
|
@@ -20,7 +20,7 @@ export default function FlagAvatar(props: FlagAvatarProps) {
|
|
|
20
20
|
classes={classes}
|
|
21
21
|
imgProps={{ loading: 'lazy' }}
|
|
22
22
|
alt={country}
|
|
23
|
-
src={`https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.4.3/flags/
|
|
23
|
+
src={`https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.4.3/flags/1x1/${country}.svg`}
|
|
24
24
|
>
|
|
25
25
|
{country.toLocaleUpperCase()}
|
|
26
26
|
</Avatar>
|
|
@@ -159,7 +159,8 @@ const useStyles = makeStyles(
|
|
|
159
159
|
top: `calc(50% - 28px)`,
|
|
160
160
|
},
|
|
161
161
|
dots: {
|
|
162
|
-
background: alpha(theme.palette.background.paper,
|
|
162
|
+
background: alpha(theme.palette.background.paper, 1),
|
|
163
|
+
boxShadow: theme.shadows[6],
|
|
163
164
|
},
|
|
164
165
|
}),
|
|
165
166
|
{ name: 'SidebarGallery' },
|
|
@@ -258,6 +259,7 @@ export default function SidebarGallery(props: SidebarGalleryProps) {
|
|
|
258
259
|
0: '100vw',
|
|
259
260
|
[theme.breakpoints.values.md]: zoomed ? '100vw' : '60vw',
|
|
260
261
|
}}
|
|
262
|
+
alt={image.alt || `Product Image ${idx}` || undefined}
|
|
261
263
|
dontReportWronglySizedImages
|
|
262
264
|
/>
|
|
263
265
|
</CenterSlide>
|
|
@@ -17,6 +17,7 @@ const useStyles = makeStyles(
|
|
|
17
17
|
left: 0,
|
|
18
18
|
width: '100%',
|
|
19
19
|
backgroundColor: theme.palette.background.default,
|
|
20
|
+
boxShadow: theme.shadows[2],
|
|
20
21
|
opacity: 0,
|
|
21
22
|
transition: `opacity ${time}`,
|
|
22
23
|
|
|
@@ -25,6 +26,9 @@ const useStyles = makeStyles(
|
|
|
25
26
|
height: theme.appShell.appBarHeightMd,
|
|
26
27
|
},
|
|
27
28
|
},
|
|
29
|
+
bgDivider: {
|
|
30
|
+
boxShadow: 'unset',
|
|
31
|
+
},
|
|
28
32
|
bgFloatingSm: {
|
|
29
33
|
[theme.breakpoints.down('sm')]: {
|
|
30
34
|
display: 'none',
|
|
@@ -112,14 +116,6 @@ const useStyles = makeStyles(
|
|
|
112
116
|
bottom: 0,
|
|
113
117
|
left: 0,
|
|
114
118
|
right: 0,
|
|
115
|
-
transition: `opacity ${time}`,
|
|
116
|
-
opacity: 0,
|
|
117
|
-
},
|
|
118
|
-
dividerCustomDivider: {
|
|
119
|
-
opacity: 1,
|
|
120
|
-
},
|
|
121
|
-
dividerScrolled: {
|
|
122
|
-
opacity: 1,
|
|
123
119
|
},
|
|
124
120
|
dividerFloatingSm: {
|
|
125
121
|
[theme.breakpoints.down('sm')]: {
|
|
@@ -165,7 +161,7 @@ export default function LayoutHeaderContent(props: ContentProps) {
|
|
|
165
161
|
floatingSm,
|
|
166
162
|
floatingMd,
|
|
167
163
|
scrolled,
|
|
168
|
-
|
|
164
|
+
divider: !!divider,
|
|
169
165
|
})
|
|
170
166
|
|
|
171
167
|
return (
|
|
@@ -175,7 +171,7 @@ export default function LayoutHeaderContent(props: ContentProps) {
|
|
|
175
171
|
<div {...className('left')}>{left}</div>
|
|
176
172
|
<div {...className('center')}>{children}</div>
|
|
177
173
|
<div {...className('right')}>{right}</div>
|
|
178
|
-
<div {...className('divider')}>{divider
|
|
174
|
+
{divider && <div {...className('divider')}>{divider}</div>}
|
|
179
175
|
</div>
|
|
180
176
|
</>
|
|
181
177
|
)
|
|
@@ -26,6 +26,14 @@ const useStyles = makeStyles(
|
|
|
26
26
|
'@supports (-webkit-touch-callout: none)': {
|
|
27
27
|
height: '-webkit-fill-available',
|
|
28
28
|
},
|
|
29
|
+
[theme.breakpoints.down('sm')]: {
|
|
30
|
+
width: '100vw',
|
|
31
|
+
borderRadius: theme.shape.borderRadius * 3,
|
|
32
|
+
},
|
|
33
|
+
[theme.breakpoints.up('md')]: {
|
|
34
|
+
width: '100vw',
|
|
35
|
+
borderRadius: theme.shape.borderRadius * 4,
|
|
36
|
+
},
|
|
29
37
|
},
|
|
30
38
|
rootVariantSmLeft: {
|
|
31
39
|
[theme.breakpoints.down('sm')]: {
|
|
@@ -152,13 +160,13 @@ const useStyles = makeStyles(
|
|
|
152
160
|
overlayPaneVariantSmBottom: {
|
|
153
161
|
[theme.breakpoints.down('sm')]: {
|
|
154
162
|
width: '100vw',
|
|
155
|
-
borderRadius:
|
|
163
|
+
borderRadius: theme.shape.borderRadius * 3,
|
|
156
164
|
},
|
|
157
165
|
},
|
|
158
166
|
overlayPaneVariantMdBottom: {
|
|
159
167
|
[theme.breakpoints.up('md')]: {
|
|
160
168
|
width: '100vw',
|
|
161
|
-
borderRadius:
|
|
169
|
+
borderRadius: theme.shape.borderRadius * 4,
|
|
162
170
|
},
|
|
163
171
|
},
|
|
164
172
|
overlayPaneVariantSmLeft: {
|
|
@@ -114,12 +114,15 @@ export default function TextInputNumber(props: TextInputNumberProps) {
|
|
|
114
114
|
inputRef={forkRef}
|
|
115
115
|
className={clsx(textFieldProps.className, classes.quantity)}
|
|
116
116
|
autoComplete='off'
|
|
117
|
+
label={' '}
|
|
118
|
+
id='quantity-input'
|
|
119
|
+
InputLabelProps={{ shrink: false }}
|
|
117
120
|
InputProps={{
|
|
118
121
|
...textFieldProps.InputProps,
|
|
119
122
|
startAdornment: (
|
|
120
123
|
<IconButton
|
|
121
124
|
aria-label='step down'
|
|
122
|
-
size='
|
|
125
|
+
size='medium'
|
|
123
126
|
edge='start'
|
|
124
127
|
onPointerDown={() => setDirection('down')}
|
|
125
128
|
onPointerUp={stop}
|
|
@@ -135,7 +138,7 @@ export default function TextInputNumber(props: TextInputNumberProps) {
|
|
|
135
138
|
endAdornment: (
|
|
136
139
|
<IconButton
|
|
137
140
|
aria-label='step up'
|
|
138
|
-
size='
|
|
141
|
+
size='medium'
|
|
139
142
|
edge='end'
|
|
140
143
|
onPointerDown={() => setDirection('up')}
|
|
141
144
|
onPointerUp={() => setDirection(null)}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
3
|
-
"version": "3.20.
|
|
3
|
+
"version": "3.20.6",
|
|
4
4
|
"author": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -9,23 +9,23 @@
|
|
|
9
9
|
"start": "next start"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@apollo/client": "^3.
|
|
13
|
-
"@graphcommerce/framer-next-pages": "^2.108.
|
|
14
|
-
"@graphcommerce/framer-scroller": "^1.1.
|
|
15
|
-
"@graphcommerce/framer-utils": "^2.103.
|
|
16
|
-
"@graphcommerce/graphql": "^2.105.
|
|
17
|
-
"@graphcommerce/image": "^2.105.
|
|
18
|
-
"@lingui/macro": "^3.
|
|
12
|
+
"@apollo/client": "^3.5.6",
|
|
13
|
+
"@graphcommerce/framer-next-pages": "^2.108.1",
|
|
14
|
+
"@graphcommerce/framer-scroller": "^1.1.6",
|
|
15
|
+
"@graphcommerce/framer-utils": "^2.103.17",
|
|
16
|
+
"@graphcommerce/graphql": "^2.105.7",
|
|
17
|
+
"@graphcommerce/image": "^2.105.6",
|
|
18
|
+
"@lingui/macro": "^3.13.0",
|
|
19
19
|
"@material-ui/core": "^4.12.3",
|
|
20
20
|
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
21
21
|
"@material-ui/styles": "^4.11.4",
|
|
22
22
|
"clsx": "^1.1.1",
|
|
23
23
|
"framer-motion": "^4.1.17",
|
|
24
|
-
"graphql": "^
|
|
25
|
-
"next": "^12.0.
|
|
24
|
+
"graphql": "^16.1.0",
|
|
25
|
+
"next": "^12.0.7",
|
|
26
26
|
"react": "^17.0.2",
|
|
27
27
|
"react-dom": "^17.0.2",
|
|
28
|
-
"react-focus-lock": "^2.
|
|
28
|
+
"react-focus-lock": "^2.7.0",
|
|
29
29
|
"react-is": "^17.0.2",
|
|
30
30
|
"react-schemaorg": "^2.0.0",
|
|
31
31
|
"schema-dts": "^1.0.0",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@graphcommerce/browserslist-config-pwa": "^3.0.2",
|
|
36
|
-
"@graphcommerce/eslint-config-pwa": "^3.1.
|
|
36
|
+
"@graphcommerce/eslint-config-pwa": "^3.1.7",
|
|
37
37
|
"@graphcommerce/prettier-config-pwa": "^3.0.4",
|
|
38
38
|
"@graphcommerce/typescript-config-pwa": "^3.1.1",
|
|
39
|
-
"@playwright/test": "^1.
|
|
39
|
+
"@playwright/test": "^1.17.1",
|
|
40
40
|
"@types/react-is": "^17.0.3",
|
|
41
|
-
"graphql-tag": "2.12.
|
|
42
|
-
"typescript": "^4.
|
|
41
|
+
"graphql-tag": "2.12.6",
|
|
42
|
+
"typescript": "^4.5.3"
|
|
43
43
|
},
|
|
44
44
|
"sideEffects": false,
|
|
45
45
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"project": "./tsconfig.json"
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "d1e17a76798279be4ceb3429238e1e736061899b"
|
|
56
56
|
}
|