This repository was archived by the owner on Mar 3, 2023. It is now read-only.
·
89 commits
to 2023-01
since this release
Patch Changes
-
6a3a0b3: Add
CartLinePrice
component -
ad4aca4: Update TypeScript types for
<MediaFile/>
so thatmediaOptions
's properties are all optional instead of required. -
669809a:
<ShopifyProvider/>
anduseShop()
updates:-
Added a function
getShopifyDomain()
which will return a fully-qualified domain URL for your Shopify backend. For example:const {getShopifyDomain} = useShop(); console.log(getShopifyDomain()); // 'https://test.myshopify.com'
This matches the function that was added to
createStorefrontClient()
. -
ShopifyProvider's
storeDomain
prop can now accept the Shopify backend subdomain, matching howcreateStorefrontClient()
'sstoreDomain
prop. ShopifyProvider still accepts a full domain, but that will be removed in a future breaking change.
// preferred <ShopifyProvider shopifyConfig={{storeDomain: 'shop'}}></ShopifyProvider> // still works, but will be removed in the future <ShopifyProvider shopifyConfig={{storeDomain: 'shop.myshopify.com'}}></ShopifyProvider>
-