@graphcommerce/framer-scroller 4.31.0-canary.0 → 4.31.0-canary.2

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,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.31.0-canary.2
4
+
5
+ ## 4.31.0-canary.1
6
+
7
+ ### Patch Changes
8
+
9
+ - [#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))
10
+
3
11
  ## 4.31.0-canary.0
4
12
 
5
13
  ### Minor Changes
@@ -24,7 +24,7 @@ export const ScrollerPageCounter = React.forwardRef<HTMLDivElement, SliderPageCo
24
24
  .filter((i) => i[1] > 0)
25
25
  .sort((a, b) => b[1] - a[1])
26
26
 
27
- setCurrent(visibleItems[0]?.[0] ?? '?')
27
+ setCurrent(visibleItems[0]?.[0] ?? 1)
28
28
  })
29
29
 
30
30
  return (
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": "4.31.0-canary.0",
5
+ "version": "4.31.0-canary.2",
6
6
  "sideEffects": false,
7
7
  "scripts": {
8
8
  "dev": "tsc -W"
@@ -15,9 +15,9 @@
15
15
  }
16
16
  },
17
17
  "dependencies": {
18
- "@graphcommerce/framer-utils": "4.31.0-canary.0",
19
- "@graphcommerce/image": "4.31.0-canary.0",
20
- "@graphcommerce/next-ui": "4.31.0-canary.0"
18
+ "@graphcommerce/framer-utils": "4.31.0-canary.2",
19
+ "@graphcommerce/image": "4.31.0-canary.2",
20
+ "@graphcommerce/next-ui": "4.31.0-canary.2"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@graphcommerce/eslint-config-pwa": "^4.1.11",