@graphcommerce/image 2.105.2 → 2.105.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.
@@ -450,9 +450,13 @@ const Image = React.forwardRef<HTMLImageElement, ImageProps>(
450
450
  />
451
451
  ) : (
452
452
  <picture {...pictureProps}>
453
- <source media='(-webkit-min-device-pixel-ratio: 2.5)' srcSet={srcSet3x} />
454
- <source media='(-webkit-min-device-pixel-ratio: 1.5)' srcSet={srcSet2x} />
455
- <source media='(-webkit-max-device-pixel-ratio: 1.49)' srcSet={srcSet1x} />
453
+ <source media='(-webkit-min-device-pixel-ratio: 2.5)' srcSet={srcSet3x} sizes={sizes} />
454
+ <source media='(-webkit-min-device-pixel-ratio: 1.5)' srcSet={srcSet2x} sizes={sizes} />
455
+ <source
456
+ media='(-webkit-max-device-pixel-ratio: 1.49)'
457
+ srcSet={srcSet1x}
458
+ sizes={sizes}
459
+ />
456
460
  <img
457
461
  ref={combinedRef}
458
462
  {...imgProps}
@@ -1,24 +1,24 @@
1
1
  {
2
2
  "name": "@graphcommerce/image-example",
3
3
  "private": true,
4
- "version": "2.103.7",
4
+ "version": "2.103.43",
5
5
  "scripts": {
6
6
  "dev": "next",
7
7
  "build": "next build",
8
8
  "start": "next start"
9
9
  },
10
10
  "dependencies": {
11
- "@graphcommerce/image": "^2.105.2",
12
- "@graphcommerce/next-config": "^2.107.2",
13
- "@graphcommerce/next-ui": "^3.11.4",
11
+ "@graphcommerce/image": "^2.105.6",
12
+ "@graphcommerce/next-config": "^2.109.1",
13
+ "@graphcommerce/next-ui": "^3.20.6",
14
14
  "framer-motion": "^4.1.17",
15
- "next": "^12.0.2",
15
+ "next": "^12.0.7",
16
16
  "react": "^17.0.2",
17
17
  "react-dom": "^17.0.2",
18
- "react-focus-lock": "^2.5.2"
18
+ "react-focus-lock": "^2.7.0"
19
19
  },
20
20
  "license": "MIT",
21
21
  "devDependencies": {
22
- "typescript": "^4.4.4"
22
+ "typescript": "^4.5.3"
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/image",
3
- "version": "2.105.2",
3
+ "version": "2.105.6",
4
4
  "sideEffects": false,
5
5
  "scripts": {
6
6
  "dev": "tsc -W"
@@ -16,21 +16,21 @@
16
16
  }
17
17
  },
18
18
  "dependencies": {
19
- "@graphcommerce/framer-utils": "^2.103.13"
19
+ "@graphcommerce/framer-utils": "^2.103.17"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@graphcommerce/browserslist-config-pwa": "^3.0.2",
23
- "@graphcommerce/eslint-config-pwa": "^3.1.3",
24
- "@graphcommerce/prettier-config-pwa": "^3.0.3",
23
+ "@graphcommerce/eslint-config-pwa": "^3.1.7",
24
+ "@graphcommerce/prettier-config-pwa": "^3.0.4",
25
25
  "@graphcommerce/typescript-config-pwa": "^3.1.1",
26
- "@playwright/test": "^1.16.2"
26
+ "@playwright/test": "^1.17.1"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "clsx": "^1.1.1",
30
- "next": "^12.0.2",
30
+ "next": "^12.0.7",
31
31
  "react": "^17.0.2",
32
32
  "react-dom": "^17.0.2",
33
33
  "type-fest": "^1.0.1"
34
34
  },
35
- "gitHead": "b6321b8f479a0ef6e4b1b543702158d964bbeac6"
35
+ "gitHead": "d1e17a76798279be4ceb3429238e1e736061899b"
36
36
  }