@graphcommerce/googleanalytics 3.1.0-canary.6 → 3.1.0-canary.8

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
+ ## 3.1.0-canary.8
4
+
5
+ ## 3.1.0-canary.7
6
+
7
+ ### Patch Changes
8
+
9
+ - [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`52882a63e`](https://github.com/graphcommerce-org/graphcommerce/commit/52882a63e96c0d3ba9641c3714d288fa4f420c82) - Do not forward the Prev prop in plugins ([@paales](https://github.com/paales))
10
+
3
11
  ## 3.1.0-canary.6
4
12
 
5
13
  ## 3.1.0-canary.5
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/googleanalytics",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.1.0-canary.6",
5
+ "version": "3.1.0-canary.8",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,13 +12,13 @@
12
12
  }
13
13
  },
14
14
  "dependencies": {
15
- "@graphcommerce/graphql-mesh": "4.31.0-canary.4",
16
- "@graphcommerce/magento-cart": "4.14.0-canary.6",
17
- "@graphcommerce/magento-cart-payment-method": "4.14.0-canary.6",
18
- "@graphcommerce/magento-cart-shipping-method": "4.14.0-canary.6",
19
- "@graphcommerce/magento-product": "4.14.0-canary.6",
20
- "@graphcommerce/next-ui": "4.31.0-canary.4",
21
- "@graphcommerce/next-config": "4.31.0-canary.4"
15
+ "@graphcommerce/graphql-mesh": "4.31.0-canary.5",
16
+ "@graphcommerce/magento-cart": "4.14.0-canary.8",
17
+ "@graphcommerce/magento-cart-payment-method": "4.14.0-canary.8",
18
+ "@graphcommerce/magento-cart-shipping-method": "4.14.0-canary.8",
19
+ "@graphcommerce/magento-product": "4.14.0-canary.8",
20
+ "@graphcommerce/next-ui": "4.31.0-canary.5",
21
+ "@graphcommerce/next-config": "4.31.0-canary.5"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@graphcommerce/eslint-config-pwa": "^4.1.11",
@@ -8,13 +8,13 @@ export const exported = '@graphcommerce/framer-next-pages'
8
8
  let warned = false
9
9
 
10
10
  function GaFramerNextPages(props: PluginProps<PagesProps>) {
11
- const { Prev } = props
11
+ const { Prev, ...rest } = props
12
12
 
13
13
  if (process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS) {
14
14
  return (
15
15
  <>
16
16
  <GoogleAnalyticsScript />
17
- <Prev {...props} />
17
+ <Prev {...rest} />
18
18
  </>
19
19
  )
20
20
  }
@@ -28,7 +28,7 @@ function GaFramerNextPages(props: PluginProps<PagesProps>) {
28
28
  }
29
29
  }
30
30
 
31
- return <Prev {...props} />
31
+ return <Prev {...rest} />
32
32
  }
33
33
 
34
34
  export const Plugin = GaFramerNextPages