@graphcommerce/framer-scroller 5.0.0-canary.9 → 5.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 +22 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@github-actions](https://github.com/apps/github-actions))
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- [#1719](https://github.com/graphcommerce-org/graphcommerce/pull/1719) [`dc4996bfe`](https://github.com/graphcommerce-org/graphcommerce/commit/dc4996bfe8a3d6aa950ec79972b3b0c84dfe1c9d) - Changed pan gesture in useScroller to look at pan state instead of the root component ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`6407e8719`](https://github.com/graphcommerce-org/graphcommerce/commit/6407e87191aaf3ad49eca536efcabf3641296e80) - ScrollerPageCounter shouldn’t set visibleItems to a string as that isn’t the correct type ([@paales](https://github.com/paales))
|
|
16
|
+
|
|
17
|
+
- [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`6171ad02c`](https://github.com/graphcommerce-org/graphcommerce/commit/6171ad02c19782b1e1f0eb00ea25ea6b764250b5) - Added topological sorting to plugins and added ifEnv export to plugins to conditionally load plugins ([@paales](https://github.com/paales))
|
|
18
|
+
|
|
19
|
+
## 5.0.0-canary.14
|
|
20
|
+
|
|
3
21
|
## 5.0.0-canary.9
|
|
4
22
|
|
|
5
23
|
### Major Changes
|
|
@@ -36,6 +54,10 @@
|
|
|
36
54
|
|
|
37
55
|
- [#1719](https://github.com/graphcommerce-org/graphcommerce/pull/1719) [`dc4996bfe`](https://github.com/graphcommerce-org/graphcommerce/commit/dc4996bfe8a3d6aa950ec79972b3b0c84dfe1c9d) Thanks [@mikekeehnen](https://github.com/mikekeehnen)! - Changed pan gesture in useScroller to look at pan state instead of the root component
|
|
38
56
|
|
|
57
|
+
## 4.30.2
|
|
58
|
+
|
|
59
|
+
## 4.30.1
|
|
60
|
+
|
|
39
61
|
## 4.30.0
|
|
40
62
|
|
|
41
63
|
### Patch Changes
|
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": "5.0.0
|
|
5
|
+
"version": "5.0.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"scripts": {
|
|
8
8
|
"dev": "tsc -W"
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@graphcommerce/framer-utils": "5.0.0
|
|
19
|
-
"@graphcommerce/image": "5.0.0
|
|
18
|
+
"@graphcommerce/framer-utils": "5.0.0",
|
|
19
|
+
"@graphcommerce/image": "5.0.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@graphcommerce/eslint-config-pwa": "^5.0.0
|
|
23
|
-
"@graphcommerce/prettier-config-pwa": "^
|
|
24
|
-
"@graphcommerce/typescript-config-pwa": "^
|
|
22
|
+
"@graphcommerce/eslint-config-pwa": "^5.0.0",
|
|
23
|
+
"@graphcommerce/prettier-config-pwa": "^5.0.0",
|
|
24
|
+
"@graphcommerce/typescript-config-pwa": "^5.0.0",
|
|
25
25
|
"@playwright/test": "^1.21.1"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|