@graphcommerce/next-ui 3.14.8 → 3.15.0

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
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.15.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.14.8...@graphcommerce/next-ui@3.15.0) (2021-11-11)
7
+
8
+
9
+ ### Features
10
+
11
+ * lingui configuration and integration greatly simplified and fixed ssr ([d8ec22a](https://github.com/ho-nl/m2-pwa/commit/d8ec22a80295af854a4cf6f357c4fb137c5b550d))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.14.8](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.14.7...@graphcommerce/next-ui@3.14.8) (2021-11-09)
7
18
 
8
19
 
package/Page/Document.tsx CHANGED
@@ -1,10 +1,10 @@
1
1
  import { ServerStyleSheets } from '@material-ui/core/styles'
2
2
  // eslint-disable-next-line @next/next/no-document-import-in-page
3
- import NextDocument, { DocumentContext } from 'next/document'
3
+ import NextDocument, { DocumentContext, DocumentInitialProps } from 'next/document'
4
4
  import React from 'react'
5
5
 
6
6
  export default class Document extends NextDocument {
7
- static getInitialProps = async (ctx: DocumentContext) => {
7
+ static getInitialProps = async (ctx: DocumentContext): Promise<DocumentInitialProps> => {
8
8
  const sheets = new ServerStyleSheets()
9
9
  const originalRenderPage = ctx.renderPage
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/next-ui",
3
- "version": "3.14.8",
3
+ "version": "3.15.0",
4
4
  "author": "",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -53,5 +53,5 @@
53
53
  "project": "./tsconfig.json"
54
54
  }
55
55
  },
56
- "gitHead": "4e309955dd02ff7c4da55483871edb689f2a6aa3"
56
+ "gitHead": "0d7e797850cec8d51ef8d88937a104aab6af4c35"
57
57
  }