@graphcommerce/docs 9.1.0-canary.43 → 9.1.0-canary.45

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.45
4
+
5
+ ## 9.1.0-canary.44
6
+
3
7
  ## 9.1.0-canary.43
4
8
 
5
9
  ## 9.1.0-canary.42
@@ -201,7 +205,6 @@
201
205
  - [#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))
202
206
 
203
207
  - [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
204
-
205
208
  - NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
206
209
  - NextLink automatically adds `target="_blank"` when the href is external.
207
210
  - NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
@@ -225,7 +228,6 @@
225
228
  ### Patch Changes
226
229
 
227
230
  - [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
228
-
229
231
  - Updated the @mui/material package
230
232
  - Removed dependencies on react-hook-form-mui and @playwright/test
231
233
  - Upgraded dependencies including type-fest and graphql-mesh
@@ -244,7 +246,6 @@
244
246
  - [#1729](https://github.com/graphcommerce-org/graphcommerce/pull/1729) [`c37187a51`](https://github.com/graphcommerce-org/graphcommerce/commit/c37187a513670ebcf09e99eb4a762c8bdb5df7e4) - Moved Magento Cart Pickup shipping method to the [GraphCommerce plugin system](https://www.graphcommerce.org/docs/framework/plugins)
245
247
 
246
248
  Upgrade guide:
247
-
248
249
  - The upgrade removes `@graphcommerce/magento-cart-pickup` package from your `package.json`, remove them for now.
249
250
  - Proceed to upgrade normally
250
251
  - Add back `@graphcommerce/magento-cart-pickup`, following the [GraphCommerce Magento docs](https://graphcommerce.org/docs/magento). ([@paales](https://github.com/paales))
@@ -262,7 +263,6 @@
262
263
  - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`f08bffd63`](https://github.com/graphcommerce-org/graphcommerce/commit/f08bffd63780cb626f072b25c2fd4da37543b6f7) - Moved all Payment methods to the [GraphCommerce plugin system](https://www.graphcommerce.org/docs/framework/plugins)
263
264
 
264
265
  Upgrade guide:
265
-
266
266
  - The upgrade removes all the payment gateway packages from the `package.json`, remove them for now.
267
267
  - Proceed to upgrade normally
268
268
  - Add back all the payment modules following the [GraphCommerce Magento docs](https://graphcommerce.org/docs/magento).
@@ -568,7 +568,6 @@
568
568
  * [#1278](https://github.com/ho-nl/m2-pwa/pull/1278) [`81ea406d5`](https://github.com/ho-nl/m2-pwa/commit/81ea406d54d6b5c662c030a7fea444abc4117a20) Thanks [@ErwinOtten](https://github.com/ErwinOtten)! - Written documentation for GraphCommerce! 👩‍🏫🧑‍🏫📚📖
569
569
 
570
570
  - [#1284](https://github.com/ho-nl/m2-pwa/pull/1284) [`5ffcb56bf`](https://github.com/ho-nl/m2-pwa/commit/5ffcb56bfcbe49ebeaf24f9341e819a145ab9a14) Thanks [@paales](https://github.com/paales)! - SvgIcon is now more extenable and flexible:
571
-
572
571
  - It will automatically calculate the stroke-width of the SVG based on the rendered size, allowing for a more flexible use for icons.
573
572
 
574
573
  - Make SvgIcon themable in your own Theme.
@@ -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.43",
5
+ "version": "9.1.0-canary.45",
6
6
  "sideEffects": true,
7
7
  "peerDependencies": {
8
- "@graphcommerce/prettier-config-pwa": "^9.1.0-canary.43"
8
+ "@graphcommerce/prettier-config-pwa": "^9.1.0-canary.45"
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