@graphcommerce/hygraph-ui 9.0.4-canary.8 → 9.0.4

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,24 +1,24 @@
1
1
  # Change Log
2
2
 
3
- ## 9.0.4-canary.8
3
+ ## 9.0.4
4
4
 
5
- ## 9.0.4-canary.7
5
+ ## 9.0.3
6
6
 
7
- ## 9.0.4-canary.6
7
+ ## 9.0.3-canary.0
8
8
 
9
- ## 9.0.4-canary.5
9
+ ## 9.0.2
10
10
 
11
- ## 9.0.4-canary.4
11
+ ## 9.0.2-canary.0
12
12
 
13
- ## 9.0.4-canary.3
13
+ ## 9.0.1
14
14
 
15
- ## 9.0.4-canary.2
15
+ ### Patch Changes
16
16
 
17
- ## 9.0.4-canary.1
17
+ - [#2461](https://github.com/graphcommerce-org/graphcommerce/pull/2461) [`838fe30`](https://github.com/graphcommerce-org/graphcommerce/commit/838fe30a649f8feedbd2a9333430e724b0ebd67f) - Solve issue where the preview mode wouldn't initialize if the hygraphLocales weren't defined ([@paales](https://github.com/paales))
18
18
 
19
- ## 9.0.4-canary.0
19
+ - [#2461](https://github.com/graphcommerce-org/graphcommerce/pull/2461) [`68f2861`](https://github.com/graphcommerce-org/graphcommerce/commit/68f28616fd33aa64cb555e8cf9bf64954ea92383) - Support for new asset system of Hygraph ([@paales](https://github.com/paales))
20
20
 
21
- ## 9.0.1
21
+ ## 9.0.1-canary.1
22
22
 
23
23
  ### Patch Changes
24
24
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/hygraph-ui",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "9.0.4-canary.8",
5
+ "version": "9.0.4",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,13 +12,13 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/ecommerce-ui": "^9.0.4-canary.8",
16
- "@graphcommerce/eslint-config-pwa": "^9.0.4-canary.8",
17
- "@graphcommerce/graphql": "^9.0.4-canary.8",
18
- "@graphcommerce/image": "^9.0.4-canary.8",
19
- "@graphcommerce/next-ui": "^9.0.4-canary.8",
20
- "@graphcommerce/prettier-config-pwa": "^9.0.4-canary.8",
21
- "@graphcommerce/typescript-config-pwa": "^9.0.4-canary.8",
15
+ "@graphcommerce/ecommerce-ui": "^9.0.4",
16
+ "@graphcommerce/eslint-config-pwa": "^9.0.4",
17
+ "@graphcommerce/graphql": "^9.0.4",
18
+ "@graphcommerce/image": "^9.0.4",
19
+ "@graphcommerce/next-ui": "^9.0.4",
20
+ "@graphcommerce/prettier-config-pwa": "^9.0.4",
21
+ "@graphcommerce/typescript-config-pwa": "^9.0.4",
22
22
  "@mui/material": "^5.10.16",
23
23
  "next": "*",
24
24
  "react": "^18.2.0",
@@ -1,9 +1,9 @@
1
1
  import {
2
- previewModeDefaults,
2
+ type PreviewModeToolbarProps,
3
3
  SelectElement,
4
+ previewModeDefaults,
4
5
  usePreviewModeForm,
5
6
  useWatch,
6
- type PreviewModeToolbarProps,
7
7
  } from '@graphcommerce/ecommerce-ui'
8
8
  import type { TypedDocumentNode } from '@graphcommerce/graphql'
9
9
  import { gql, useQuery } from '@graphcommerce/graphql'
@@ -9,7 +9,7 @@ export const config: PluginConfig = {
9
9
 
10
10
  declare module '@graphcommerce/graphql/config' {
11
11
  interface PreviewData {
12
- hygraphStage: string | null
12
+ hygraphStage?: string
13
13
  }
14
14
  }
15
15