@graphcommerce/docs 9.1.0-canary.44 → 9.1.0-canary.46

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,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.1.0-canary.46
4
+
5
+ ## 9.1.0-canary.45
6
+
3
7
  ## 9.1.0-canary.44
4
8
 
5
9
  ## 9.1.0-canary.43
@@ -203,7 +207,6 @@
203
207
  - [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`26239ef73`](https://github.com/graphcommerce-org/graphcommerce/commit/26239ef73e49731224b227f1eb850dde56d40584) - Updated the supported NodeJS versions to 16 and 18, removed support for NodeJS 14. ([@paales](https://github.com/paales))
204
208
 
205
209
  - [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
206
-
207
210
  - NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
208
211
  - NextLink automatically adds `target="_blank"` when the href is external.
209
212
  - NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
@@ -71,10 +71,10 @@ You can export configuration by running `yarn graphcommerce export-config`
71
71
  Create a graphql/Config.graphqls file in your project and extend the GraphCommerceConfig, GraphCommerceStorefrontConfig inputs to add configuration.
72
72
 
73
73
  ```graphql
74
- input GraphCommerceConfig {
74
+ extend input GraphCommerceConfig {
75
75
  myConfig: String # or Boolean, or Int, or Float, make required with `!`
76
76
  }
77
- input GraphCommerceStorefrontConfig {
77
+ extend input GraphCommerceStorefrontConfig {
78
78
  myField: Boolean
79
79
  }
80
80
  ```
@@ -541,4 +541,4 @@ SidebarGalleryConfig will contain all configuration values for the Sidebar Galle
541
541
 
542
542
  #### paginationVariant: DOTS | THUMBNAILS_BOTTOM
543
543
 
544
- Variant used for the pagination
544
+ Variant used for the pagination
package/package.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "name": "@graphcommerce/docs",
3
3
  "homepage": "https://www.graphcommerce.org/docs",
4
4
  "repository": "github:graphcommerce-org/graphcommerce/docs",
5
- "version": "9.1.0-canary.44",
5
+ "version": "9.1.0-canary.46",
6
6
  "sideEffects": true,
7
7
  "peerDependencies": {
8
- "@graphcommerce/prettier-config-pwa": "^9.1.0-canary.44"
8
+ "@graphcommerce/prettier-config-pwa": "^9.1.0-canary.46"
9
9
  },
10
10
  "prettier": "@graphcommerce/prettier-config-pwa"
11
11
  }
@@ -65,9 +65,7 @@ Compare your local /package.json with the example's
65
65
  `/upgrade/examples/magento-graphcms/package.json` you just downloaded and:
66
66
 
67
67
  1. Replace your local `dependencies` with the example's `dependencies`. Keep any
68
- additional installed local dependencies and
69
- [remove PSP's](./getting-started/create.md#remove-unused-psps) your backend
70
- doesn't support.
68
+ additional installed local dependencies and.
71
69
  2. Replace your local `devDependencies` with the example's `devDependencies`
72
70
  3. Replace your local `resolutions` with the example's `resolutions`
73
71