You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 3, 2023. It is now read-only.
* Start migration of CartLineQuantityAdjustButton
Co-Authored-By: Jason Kurian <[email protected]>
* Get CartLineQuantity typescript tests passing
* Update tests for CartLineQuantityAdjustButton to use RTL
Fix a couple instances of unnecessary "data-testId" camel casing.
Update BuyNowButton tests to use a shared utility
Co-Authored-By: Jason Kurian <[email protected]>
* Add attributes to linesUpdate() so that they're not lost
When adjusting the quantity.
* Add documentation for the components
* Update docs icons
* Small update to PR template
* Allow dev to disable manually if they want.
* Make the typing DX better for these keys
---------
Co-authored-by: Jason Kurian <[email protected]>
Adding `<CartLineQuantity />` and `<CartLineQuantityAdjustButton />`
6
+
7
+
The `<CartLineQuantity />` and `<CartLineQuantityAdjustButton />` components have been added / migrated over from Hydrogen v1.
8
+
9
+
Additionally, fixed a bug when using `<CartLineQuantityAdjustButton />` that caused CartLine Attributes to be erased. CartLine Attributes should now be persisted when using that component.
10
+
11
+
## `useCartLine()` TypeScript types update
12
+
13
+
`useCartLine()`'s TypeScript type originally returned a `CartLine`. It has now been updated to be `PartialDeep<CartLine>`, which makes all the properties optional instead of required. This matches with the rest of hydrogen-react in that we can't know or guarnatee what properties exist on certain objects so we reflect that state in the TypeScript types.
Copy file name to clipboardexpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
13
13
### Before submitting the PR, please make sure you do the following:
14
14
15
-
-[ ] Read the [Contributing Guidelines](https://github.com/shopify/hydrogen-react/blob/main/contributing.md)
15
+
-[ ] Read the [Contributing Guidelines](https://github.com/Shopify/hydrogen-react/blob/main/CONTRIBUTING.md)
16
16
-[ ] Provide a description in this PR that addresses **what** the PR is solving, or reference the issue that it solves (e.g. `fixes #123`)
17
-
-[ ] Update docs in this repository according to your change
17
+
-[ ] Update docs in this repository according to your change, and run `yarn build-docs` in the `packages/react` folder.
18
18
-[ ] Run `yarn changeset add` if this PR cause a version bump based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). If you have a breaking change, it will need to wait until the next major version release. Otherwise, use patch updates even for new features. Read [more about Hydrogen React's versioning](https://github.com/shopify/hydrogen-react/blob/main/readme.md#versioning).
* The `useCartLine` hook provides access to the [CartLine object](https://shopify.dev/api/storefront/unstable/objects/cartline) from the Storefront API. It must be a descendent of a `CartProvider` component.
The \`<CartLineQuantity/>\` component renders a \`span\` (or another element / component that can be customized by the \`as\` prop) with the cart line's quantity.\n\nIt must be a descendent of a \`<CartLineProvider/>\` component, and uses the \`useCartLine()\` hook internally.
* The `<CartLineQuantity/>` component renders a `span` (or another element / component that can be customized by the `as` prop) with the cart line's quantity.
20
+
*
21
+
* It must be a descendent of a `<CartLineProvider/>` component, and uses the `useCartLine()` hook internally.
The \`<CartLineQuantityAdjustButton/>\` component renders a \`span\` (or another element / component that can be customized by the \`as\` prop) with the cart line's quantity.\n\nIt must be a descendent of a \`<CartLineProvider/>\` component, and uses the \`useCartLine()\` hook internally.
0 commit comments