@graphcommerce/next-ui 6.0.0-canary.32 → 6.0.0-canary.33

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,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 6.0.0-canary.33
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1831](https://github.com/graphcommerce-org/graphcommerce/pull/1831) [`f4008bae3`](https://github.com/graphcommerce-org/graphcommerce/commit/f4008bae3e3ac8288c731b1dd87e6c6aef8e81fc) - Added a linting rule that disallows `import { Theme } from '@emotion/react'` because that causes huge performance issues. Added tsc:trace to the root project to debug typescript performance issues. ([@paales](https://github.com/paales))
8
+
3
9
  ## 6.0.0-canary.32
4
10
 
5
11
  ### Minor Changes
@@ -1,5 +1,4 @@
1
- import { Theme } from '@emotion/react'
2
- import { SxProps } from '@mui/material'
1
+ import { Theme, SxProps } from '@mui/material'
3
2
  import React from 'react'
4
3
 
5
4
  export type PanelActionsProps = {
@@ -1,4 +1,4 @@
1
- import { EmotionJSX } from '@emotion/react/types/jsx-namespace'
1
+ import type { EmotionJSX } from '@emotion/react/types/jsx-namespace'
2
2
  import createEmotionServer from '@emotion/server/create-instance'
3
3
  // eslint-disable-next-line @next/next/no-document-import-in-page
4
4
  import type NextDocument from 'next/document'
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/next-ui",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "6.0.0-canary.32",
5
+ "version": "6.0.0-canary.33",
6
6
  "author": "",
7
7
  "license": "MIT",
8
8
  "sideEffects": false,
@@ -18,18 +18,18 @@
18
18
  "@emotion/react": "^11.10.6",
19
19
  "@emotion/server": "^11.4.0",
20
20
  "@emotion/styled": "^11.10.6",
21
- "@graphcommerce/framer-next-pages": "6.0.0-canary.32",
22
- "@graphcommerce/framer-scroller": "6.0.0-canary.32",
23
- "@graphcommerce/framer-utils": "6.0.0-canary.32",
24
- "@graphcommerce/image": "6.0.0-canary.32",
21
+ "@graphcommerce/framer-next-pages": "6.0.0-canary.33",
22
+ "@graphcommerce/framer-scroller": "6.0.0-canary.33",
23
+ "@graphcommerce/framer-utils": "6.0.0-canary.33",
24
+ "@graphcommerce/image": "6.0.0-canary.33",
25
25
  "cookie": "^0.5.0",
26
26
  "react-is": "^18.2.0",
27
27
  "schema-dts": "^1.1.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@graphcommerce/eslint-config-pwa": "6.0.0-canary.32",
31
- "@graphcommerce/prettier-config-pwa": "6.0.0-canary.32",
32
- "@graphcommerce/typescript-config-pwa": "6.0.0-canary.32",
30
+ "@graphcommerce/eslint-config-pwa": "6.0.0-canary.33",
31
+ "@graphcommerce/prettier-config-pwa": "6.0.0-canary.33",
32
+ "@graphcommerce/typescript-config-pwa": "6.0.0-canary.33",
33
33
  "@types/cookie": "^0.5.1",
34
34
  "@types/react-is": "^17.0.3",
35
35
  "typescript": "4.9.5"