@graphcommerce/framer-scroller 8.0.0-canary.98 → 8.0.0
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 +29 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2085](https://github.com/graphcommerce-org/graphcommerce/pull/2085) [`3c92993`](https://github.com/graphcommerce-org/graphcommerce/commit/3c92993d9ca74f24ea784b20448958ca1bb8e224) - Fixes issue where the `<SidebarGallery />` would start jumping around if a user clicks the next button multiple times in short succession.
|
|
8
|
+
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
9
|
+
|
|
10
|
+
- [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - Accessibility improvements for the frontend: Added skip content link. Removed empty buttons from tab flow. Gave focus to elements (such as the menu) that appear when after clicking a button. Improved aria labels where needed
|
|
11
|
+
([@FrankHarland](https://github.com/FrankHarland))
|
|
12
|
+
|
|
13
|
+
- [#2157](https://github.com/graphcommerce-org/graphcommerce/pull/2157) [`b1afcd0`](https://github.com/graphcommerce-org/graphcommerce/commit/b1afcd00b6680cd5167691e47a691461382226d3) - Solved an issue where the Previous and Next buttons would become unclickable for Scrollers.
|
|
14
|
+
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
15
|
+
|
|
16
|
+
- [#2066](https://github.com/graphcommerce-org/graphcommerce/pull/2066) [`3b1f585`](https://github.com/graphcommerce-org/graphcommerce/commit/3b1f585153672a644a613411134e5ad36aa4c266) - Add `showButtons` prop to `<ScrollerButton/>`
|
|
17
|
+
([@StefanAngenent](https://github.com/StefanAngenent))
|
|
18
|
+
|
|
19
|
+
- [#2045](https://github.com/graphcommerce-org/graphcommerce/pull/2045) [`1ac1e09`](https://github.com/graphcommerce-org/graphcommerce/commit/1ac1e09897daadd646200cb3ddc2aa75a51e182e) - Make sure the product image gallery traps focus and scrollbar doesn't disappear suddenly
|
|
20
|
+
([@JoshuaS98](https://github.com/JoshuaS98))
|
|
21
|
+
|
|
22
|
+
- [#2011](https://github.com/graphcommerce-org/graphcommerce/pull/2011) [`da821af`](https://github.com/graphcommerce-org/graphcommerce/commit/da821af185bf6419fa2aeca31e5985bf99b7bbb9) - Added a new Gallery Thumbnails feature that shows product thumbnails below the product gallery on the product page.
|
|
23
|
+
([@mikekeehnen](https://github.com/mikekeehnen))
|
|
24
|
+
|
|
25
|
+
- [`dc86f2f`](https://github.com/graphcommerce-org/graphcommerce/commit/dc86f2fbd439a63a2c9f2deaee38abe87a3c3bab) - Log the related element if the ScrollerProvider couldn’t find any children during load.
|
|
26
|
+
([@paales](https://github.com/paales))
|
|
27
|
+
|
|
28
|
+
## 8.0.0-canary.100
|
|
29
|
+
|
|
30
|
+
## 8.0.0-canary.99
|
|
31
|
+
|
|
3
32
|
## 8.0.0-canary.98
|
|
4
33
|
|
|
5
34
|
## 8.0.0-canary.97
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/framer-scroller",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "8.0.0
|
|
5
|
+
"version": "8.0.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"scripts": {
|
|
8
8
|
"dev": "tsc -W"
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"popmotion": "11.0.5"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.0
|
|
22
|
-
"@graphcommerce/framer-utils": "^8.0.0
|
|
23
|
-
"@graphcommerce/image": "^8.0.0
|
|
24
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.0
|
|
25
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.0
|
|
21
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.0",
|
|
22
|
+
"@graphcommerce/framer-utils": "^8.0.0",
|
|
23
|
+
"@graphcommerce/image": "^8.0.0",
|
|
24
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.0",
|
|
25
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.0",
|
|
26
26
|
"@lingui/core": "^4.2.1",
|
|
27
27
|
"@lingui/react": "^4.2.1",
|
|
28
28
|
"@mui/material": "^5.10.16",
|