@graphcommerce/magento-cart 9.1.0-canary.39 → 9.1.0-canary.41
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 +8 -0
- package/components/CartFab/CartFab.tsx +1 -6
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.1.0-canary.41
|
|
4
|
+
|
|
5
|
+
## 9.1.0-canary.40
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [#2529](https://github.com/graphcommerce-org/graphcommerce/pull/2529) [`b331f4d`](https://github.com/graphcommerce-org/graphcommerce/commit/b331f4d060c1385569fbbe1592ac245832de55bc) - Remove all usages of the NoSsr component as the GraphQL layer already handles this. ([@paales](https://github.com/paales))
|
|
10
|
+
|
|
3
11
|
## 9.1.0-canary.39
|
|
4
12
|
|
|
5
13
|
## 9.1.0-canary.38
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { WaitForQueries } from '@graphcommerce/ecommerce-ui'
|
|
2
1
|
import {
|
|
3
2
|
DesktopHeaderBadge,
|
|
4
3
|
extendableComponent,
|
|
@@ -111,9 +110,5 @@ export function CartFab(props: CartFabProps) {
|
|
|
111
110
|
})
|
|
112
111
|
if (!cartEnabled) return null
|
|
113
112
|
|
|
114
|
-
return
|
|
115
|
-
<WaitForQueries waitFor={cartQuery} fallback={<CartFabContent {...props} total_quantity={0} />}>
|
|
116
|
-
<CartFabContent total_quantity={cartQuery.data?.cart?.total_quantity ?? 0} {...props} />
|
|
117
|
-
</WaitForQueries>
|
|
118
|
-
)
|
|
113
|
+
return <CartFabContent total_quantity={cartQuery.data?.cart?.total_quantity ?? 0} {...props} />
|
|
119
114
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-cart",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "9.1.0-canary.
|
|
5
|
+
"version": "9.1.0-canary.41",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,20 +12,20 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/ecommerce-ui": "^9.1.0-canary.
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.
|
|
17
|
-
"@graphcommerce/framer-next-pages": "^9.1.0-canary.
|
|
18
|
-
"@graphcommerce/framer-scroller": "^9.1.0-canary.
|
|
19
|
-
"@graphcommerce/framer-utils": "^9.1.0-canary.
|
|
20
|
-
"@graphcommerce/graphql": "^9.1.0-canary.
|
|
21
|
-
"@graphcommerce/image": "^9.1.0-canary.
|
|
22
|
-
"@graphcommerce/magento-customer": "^9.1.0-canary.
|
|
23
|
-
"@graphcommerce/magento-graphql": "^9.1.0-canary.
|
|
24
|
-
"@graphcommerce/magento-store": "^9.1.0-canary.
|
|
25
|
-
"@graphcommerce/next-ui": "^9.1.0-canary.
|
|
26
|
-
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.
|
|
27
|
-
"@graphcommerce/react-hook-form": "^9.1.0-canary.
|
|
28
|
-
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^9.1.0-canary.41",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.41",
|
|
17
|
+
"@graphcommerce/framer-next-pages": "^9.1.0-canary.41",
|
|
18
|
+
"@graphcommerce/framer-scroller": "^9.1.0-canary.41",
|
|
19
|
+
"@graphcommerce/framer-utils": "^9.1.0-canary.41",
|
|
20
|
+
"@graphcommerce/graphql": "^9.1.0-canary.41",
|
|
21
|
+
"@graphcommerce/image": "^9.1.0-canary.41",
|
|
22
|
+
"@graphcommerce/magento-customer": "^9.1.0-canary.41",
|
|
23
|
+
"@graphcommerce/magento-graphql": "^9.1.0-canary.41",
|
|
24
|
+
"@graphcommerce/magento-store": "^9.1.0-canary.41",
|
|
25
|
+
"@graphcommerce/next-ui": "^9.1.0-canary.41",
|
|
26
|
+
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.41",
|
|
27
|
+
"@graphcommerce/react-hook-form": "^9.1.0-canary.41",
|
|
28
|
+
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.41",
|
|
29
29
|
"@lingui/core": "^4.2.1",
|
|
30
30
|
"@lingui/macro": "^4.2.1",
|
|
31
31
|
"@lingui/react": "^4.2.1",
|