@graphcommerce/framer-scroller 2.0.1 → 2.0.4

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,63 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1285](https://github.com/ho-nl/m2-pwa/pull/1285)
8
+ [`16d77b280`](https://github.com/ho-nl/m2-pwa/commit/16d77b2806e49e376d06bc0d578d38eb724b0c17)
9
+ Thanks [@paales](https://github.com/paales)! - allow scroller button to be overwritten
10
+
11
+ - Updated dependencies
12
+ [[`c85294ba6`](https://github.com/ho-nl/m2-pwa/commit/c85294ba6d742ce78c074559a1e95409b25a5017)]:
13
+ - @graphcommerce/next-ui@4.1.3
14
+
15
+ ## 2.0.3
16
+
17
+ ### Patch Changes
18
+
19
+ - [`973ff8645`](https://github.com/ho-nl/m2-pwa/commit/973ff86452a70ade9f4db13fdda6e963d7220e96)
20
+ Thanks [@paales](https://github.com/paales)! - made packages public
21
+
22
+ - Updated dependencies
23
+ [[`973ff8645`](https://github.com/ho-nl/m2-pwa/commit/973ff86452a70ade9f4db13fdda6e963d7220e96),
24
+ [`81ea406d5`](https://github.com/ho-nl/m2-pwa/commit/81ea406d54d6b5c662c030a7fea444abc4117a20),
25
+ [`3a719c88c`](https://github.com/ho-nl/m2-pwa/commit/3a719c88cad1eab58602de28c41adc0fc4827e1d),
26
+ [`5ffcb56bf`](https://github.com/ho-nl/m2-pwa/commit/5ffcb56bfcbe49ebeaf24f9341e819a145ab9a14)]:
27
+ - @graphcommerce/framer-utils@3.0.3
28
+ - @graphcommerce/image@3.1.0
29
+ - @graphcommerce/next-ui@4.1.2
30
+
31
+ ## 2.0.2
32
+
33
+ ### Patch Changes
34
+
35
+ - [#1276](https://github.com/ho-nl/m2-pwa/pull/1276)
36
+ [`ce09388e0`](https://github.com/ho-nl/m2-pwa/commit/ce09388e0d7ef33aee660612340f6fbae15ceec2)
37
+ Thanks [@paales](https://github.com/paales)! - We've moved lots of internal packages from
38
+ `dependencies` to `peerDependencies`. The result of this is that there will be significantly less
39
+ duplicate packages in the node_modules folders.
40
+
41
+ * [#1276](https://github.com/ho-nl/m2-pwa/pull/1276)
42
+ [`52a45bba4`](https://github.com/ho-nl/m2-pwa/commit/52a45bba4dc6dd6df3c81f5023df7d23ed8a534d)
43
+ Thanks [@paales](https://github.com/paales)! - Upgraded to
44
+ [NextJS 12.1](https://nextjs.org/blog/next-12-1)! This is just for compatibility, but we'll be
45
+ implementing
46
+ [On-demand Incremental Static Regeneration](https://nextjs.org/blog/next-12-1#on-demand-incremental-static-regeneration-beta)
47
+ soon.
48
+
49
+ This will greatly reduce the requirement to rebuid stuff and we'll add a management UI on the
50
+ frontend to be able to revalidate pages manually.
51
+
52
+ * Updated dependencies
53
+ [[`381e4c86a`](https://github.com/ho-nl/m2-pwa/commit/381e4c86a8321ce96e1fa5c7d3c0a0c0ff3e02c7),
54
+ [`ce09388e0`](https://github.com/ho-nl/m2-pwa/commit/ce09388e0d7ef33aee660612340f6fbae15ceec2),
55
+ [`e7c8e2756`](https://github.com/ho-nl/m2-pwa/commit/e7c8e2756d637cbcd2e793d62ef5721d35d9fa7b),
56
+ [`52a45bba4`](https://github.com/ho-nl/m2-pwa/commit/52a45bba4dc6dd6df3c81f5023df7d23ed8a534d)]:
57
+ - @graphcommerce/next-ui@4.1.1
58
+ - @graphcommerce/framer-utils@3.0.2
59
+ - @graphcommerce/image@3.0.2
60
+
3
61
  ## 2.0.1
4
62
 
5
63
  ### Patch Changes
@@ -34,10 +34,10 @@ const ScrollerFab = m(
34
34
  <m.div ref={ref} style={{ scale, opacity: scale, willChange: 'scale, opacity', zIndex: 1 }}>
35
35
  <Fab
36
36
  type='button'
37
+ size='small'
37
38
  {...buttonProps}
38
39
  onClick={handleClick}
39
40
  aria-label={direction}
40
- size='small'
41
41
  sx={[{ display: { xs: 'none', md: 'flex' } }, ...(Array.isArray(sx) ? sx : [sx])]}
42
42
  />
43
43
  </m.div>
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": "2.0.1",
5
+ "version": "2.0.4",
6
6
  "sideEffects": false,
7
7
  "scripts": {
8
8
  "dev": "tsc -W"
@@ -15,22 +15,23 @@
15
15
  }
16
16
  },
17
17
  "dependencies": {
18
- "@graphcommerce/framer-utils": "^3.0.1",
19
- "@graphcommerce/image": "^3.0.1",
20
- "@graphcommerce/next-ui": "^4.0.1",
21
- "@mui/material": "^5.4.1",
22
- "popmotion": "11.0.3"
18
+ "@graphcommerce/framer-utils": "^3.0.3",
19
+ "@graphcommerce/image": "^3.1.0",
20
+ "@graphcommerce/next-ui": "^4.1.3"
23
21
  },
24
22
  "devDependencies": {
25
- "@graphcommerce/eslint-config-pwa": "^4.0.1",
26
- "@graphcommerce/prettier-config-pwa": "^4.0.1",
27
- "@graphcommerce/typescript-config-pwa": "^4.0.1",
28
- "@playwright/test": "^1.18.1"
23
+ "@graphcommerce/eslint-config-pwa": "^4.0.4",
24
+ "@graphcommerce/prettier-config-pwa": "^4.0.2",
25
+ "@graphcommerce/typescript-config-pwa": "^4.0.2",
26
+ "@playwright/test": "^1.19.1"
29
27
  },
30
28
  "peerDependencies": {
29
+ "@mui/material": "^5.4.1",
30
+ "@lingui/macro": "^3.13.2",
31
31
  "framer-motion": "^6.2.4",
32
+ "next": "^12.0.10",
33
+ "popmotion": "11.0.3",
32
34
  "react": "^17.0.2",
33
- "react-dom": "^17.0.2",
34
- "type-fest": "^2.11.2"
35
+ "react-dom": "^17.0.2"
35
36
  }
36
37
  }