Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Infinite loading and pagination #75

Closed
wants to merge 4 commits into from
Closed

Conversation

juanpprieto
Copy link
Contributor

@juanpprieto juanpprieto commented Oct 14, 2022

This is a clean PR replacing #59 which became too difficult to merge back to main.

Quick demo:

https://screenshot.click/13-23-iwnci-10qow.mp4

Completed:

  • Adds infinite loading & pagination (optional) to /products & /collections/$handle
  • Adds infinite loading /collections

Todo:

  • Extend MoreGridItems to add infinite on /journal
  • Add orders pagination on /account
  • Sync with @brophdawg11 about leveraging Link.state in the pagination.

@brophdawg11's comment

One nuance here that Ryan and I chatted about after the huddles - this location state will work great for client-side back/forward navigations, but won't available during SSR if the user does a hard reload - and then will be available client side so could result in hydration issues or flickers of SSR-ing only the "trailing" pages and then client-side rendering the prepended pages from location state.

To avoid this, hard reloads should ignore the client side state and should effectively be treated as if you shared the URL to a new browser. Probably requires some form of isHydrated check to see if we got SSR'd without the previous pages and then we know not to prepend them.


@benjaminsehl @cartogram @brophdawg11

return (
<div className={className} ref={ref} {...props}>
{/* placeholder row of item that will be observed */}
{new Array(pageBy).fill('').map((_, i) => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
{new Array(pageBy).fill('').map((_, i) => {
Array.from({ length: pageBy }, (_, i) => {

if (state !== 'idle') return;
if (!data) return;

const result =
Copy link
Contributor

@cartogram cartogram Oct 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you think about breaking this out into a small helper.

function normalizeResultForResource(resource: ResourceType, data: any) {
  let result;
  switch (resource) {
    case "product":
      result = data?.products;
      break;
   case "collection/handle":
      result = data?.collection?.product
      break;
    case "collection":
      result = data?.collection
      break;
    case "blog":
      // TODO
    case "article":
      // TODO
  }

  return {
    hasNextPage: result?.pageInfo?.hasNextPage || false,
    endCursor: result?.pageInfo?.endCursor || null,
    nodes: result?.nodes || [],
  };
}

Copy link

@brophdawg11 brophdawg11 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good! Hit me up in slack if you wanna chat about the location state approach 👍

preventScrollReset
prefetch="intent"
>
{transition.state !== 'idle' ? 'Loading...' : 'Load more products'}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These loading states will go into Loading... on any navigation, including clicking "load previous" (unlikely to be in viewport) or clicking through to a product (more likely to be in viewport). We can narrow the condition a bit, maybe:

transition.state === 'loading' && new URLSearchParams(transition.location.search).get('direction') === 'next'

setItems,
...props
}: MoreGridItems) {
const {load, type, data, state} = useFetcher();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a fetcher works here but won't provide URL updates, so if the user is scrolled down a few pages and shares the link or reloads the page they'll lose their spot. I was envisioning this being the same type of flow as the Load More but automatically triggering the navigations when the button of the current "page" scrolled into view. You could either omit/hide the load more button or leave it as an indicator to the user that more products are loading (but skeleton tiles may be a more seamless UX)

Happy to chat on a meet but the way that would work in my head (using Load More clicks for the time being) would be something like this (for the simple scroll forward case):

// The route would get the current page products from loader data 
let currentPageProducts = useLoaderData().products;
// And if it found products from prior pages in location state...
let locationProducts = useLocation().state;
// It would prepend them and show the full set
let currentlyShownProducts = [...locationProducts || [], ...loaderProducts];

// Then the Load More link would pass current products through in location 
// state for the next page to prepend
<ProductGrid products={currentlyShownProducts}
<Link to="?cursor=abc&direction=next" state="currentlyShownProducts">

That way, assuming we show 4 products per page:

  • On initial load location.state is empty and we just render the first 4 products from the loader
  • Clicking load more sends 1-4 through location.state, loads 5-8 from the loader, and renders all 8 products
  • Clicking load more again sends 1-8 through location.state, loads 9-12 from the loader, and renders all 12 products
  • ...and so on

I think @ryanflorence and @developit looked into browser limits on the size of location state in SF and 640kb sticks in my head, but we thought it plenty large to hold product metadata.

Then, if you want to enable automatic infinite scrolling, you would just trigger the navigations automatically via useNavigation, sending the same to URL and location state

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This also introduces the nuance mentioned in the description, so we'll need to figure out a good solve for that

juanpprieto and others added 2 commits October 14, 2022 08:29
@benjaminsehl
Copy link
Member

@cartogram @juanpprieto

The goal for Pagination should be to provide a generic enough abstraction where you can pass any paginated Storefront API query to it, and easily configure the pagination style.

This could also be applied to something like a product carousel where you only want to load the first four products unless the shopper starts scrolling to the end; or clicking a "next" arrow.

@juanpprieto
Copy link
Contributor Author

The goal for Pagination should be to provide a generic enough abstraction where you can pass any paginated Storefront API query to it, and easily configure the pagination style.

This could also be applied to something like a product carousel where you only want to load the first four products unless the shopper starts scrolling to the end; or clicking a "next" arrow.

I have a local commit with a reusable <Paginated /> component based on this approach.

There are still some important nuances and caveats that I'd love to show/discuss in a video-call before pushing for review

More info here: https://shopify.slack.com/archives/C02A5S8LNP9/p1666022331264459?thread_ts=1665775151.336469&cid=C02A5S8LNP9

@benjaminsehl
Copy link
Member

From link to Slack above:

Spent a Friday trying to fix the hydration issues and refactoring with the goal of creating a reusable <Paginated /> component. Here are some points/downsides I'd like to share:

  • Hydration issues — Mostly fixed but it's added additional boilerplate to avoid it
  • Scroll position issues — When navigating to a new page the scroll resets to the top. It appears the feature to prevent reset is not yet available in Remix's Link
  • Complexity. Are we using too much platform history.state? Worried the common dev will struggle to understand this caching + pagination mechanism (I did)
  • Navigating back to the root of a fully fetched collection does not show the fully cached collection because the root link doesn’t have the cursor in the url when going to a collection via the menu or a link on the site
  • Paginated urls are really long due to the cursor. Worried how they will end up once utm params kick in
  • Unsure how well this approach will work with Modal based grids like search results displayed in a modal

@cartogram
Copy link
Contributor

Moved to #207

@cartogram cartogram closed this Nov 22, 2022
frehner added a commit that referenced this pull request Feb 27, 2023
* npm script for new system and some test .doc.ts files

* updated to v 0.2.7 generate-docs

* New docs system (#75)

* add ProductPrice doc

* add ProductPrice example

* add MediaFile doc

* add MediaFile example

* add Image example

* Metafield and update to MediaFile

* Add ModelViewer

* Add Money

* fix metafield and money

* fix generation error

* add ProductProvider and ShopifyProvider

* ShopPayButton

* fix ShopifyProvider

* update ShopPayButton type and add Video

* generate data

* some cleanup

* update data

* Static page docs (#82)

* use new folder structure for docs

* move doc file

* updated some types for landing pages

* update to newer version of generate-docs and update content to React Storefront Kit

* update to newer version of generate-docs and update content to React Storefront Kit

* update to newer version of generate-docs and update content to React Storefront Kit

* Update examples to have their own extension

Config TS and ESLint so that there aren't any issues with some checks that will always fail in the example files

* Update to latest and fix various issues

* Updated docs with better names, types, and examples

* Cleanup shoppaybutton

Co-authored-by: John Collett <john.collett@shopify.com>
Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>
Co-authored-by: John Collett <92598453+johndcollett@users.noreply.github.com>
Co-authored-by: Alex Harvey <alex.harvey@shopify.com>
frehner added a commit that referenced this pull request Mar 3, 2023
* Initial commit from Create Turborepo

* Save progress on migration

* Get storefront api schema and graphql generation working

* Update deps, add changeset, fix types with new version

* Add turbo ci checks

Add github workflows

* create the 2022-7 branch

* Change naming, update docs, move readme and contributing

* Config alex and get checks passing

* Add cla github action

* Update actions versions, and run checks before build

* Fix branch references to main

* test to see if alex is breaking ci stuff (#1)

* test to see if alex is breaking ci stuff

* add alex back, and check changeset checker

* downgrade alex, and add better words/docs on changeset reminder

* revert alex downgrade

* see if we can figure out where this is coming from

* remove testing as it didn't find anything

* remove diff command on alex

* remove comment that tests changeset checker

* add publish config

* Fix readmes (#2)

* Fix readmes

* update terminology

* Add CoC and update package description

* Fix docs

* Simplify the logic for external video urls (#3)

* Remove unnecessary tsconfig items (#4)

Add the variant source header for SFAPI calls.

* Update README.md

* Fix issues with formatting and filename

* update dependencies (#5)

* README updates for content type and pkg name (#6)

* provide guidance on setting the header content type

* language lint

* change pkg name

* Update README (#7)

* update readme

* fix links

Co-authored-by: Elise Yang <eliseyang@elises-mbp-2.lan>

* CI action for publishing the next version automatically (#8)

* CI action for publishing the next version automatically

* remove output to file

* Publish next2 (#9)

* CI action for publishing the next version automatically

* remove output to file

* Don't use the action to run these commands

* Try manually doing the publish now (#10)

* Go into dir so script can find package.json (#11)

* Try this configs

* Change ts moduleresolution (#13)

* Change TS's module resolution to 'node' instead of nodenext

* Include stories in TS checking now, and fix issues

* Feat/cart provider (#12)

* Copy CartProvider from hydrogen repo

* Add worktop lib to use the cookies package for CartProvider

* Modify CartProvider to fit hydrogen-ui

* Add CartProvider story

* add changeset

* Cart provider updates (#14)

* Change ts moduleresolution (#13)

* Change TS's module resolution to 'node' instead of nodenext

* Include stories in TS checking now, and fix issues

* Starting work on simplifying the cart code in hui

* Simply more cart-related files and remove a bunch of them

* All CI checks are passing, and types are improved.

* Better file names

* Fix mock import filename

* Remove any type

* Improve release notes, update type names, fix typo

* Correct alex config file and allow hooks

Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>

* udpate readmes (#18)

* udpate readmes

* format

* update

* Fix issue with file output not being correct (#16)

* Fix issue with file output not being correct

Also update deps, and move npmrc.

* downgrade happy-dom to pass tests

* fix publishing?

* cleanup script

* update naming for workflow

* remove from npmrc and add to script

* show an error when next publish doesn't work

* fix cd script

* Make the URLs a little more permanent. (#19)

* Fix TS typings on moduleResolution: node (#20)

* [ci] release 2022-7 (#15)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Update to 2022-10

Also, add documentation for next time.

* Update package.json version

* Fix output bundles, maybe. (#22)

* Convert project to CJS with ESM files ending in .mjs (#23)

* Convert project to CJS with ESM files ending in .mjs

Helps fix issues with the build output + dependencies processed by Vite.

* fix small typo in message

* move script to .mjs

* And update reference to mjs script

* Initial release of 2022-10 (#24)

* [ci] release 2022-10 (#25)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* externalize the deps (#29)

* externalize the deps

* Add changelog

* wrap comments

* Revert package updates as it causes issues still in nextjs (#31)

* metafieldParser() (#45)

* Save progress on a new metafield parser

* Fix type issue, and get some generics passed in

* Fix tests and add additional TS docs to the types

* handle no 'type' field, and prep for list metafields

* Save progress on metafield parser and tests

* Finished the tests and docs

* Deprecate parseMetafield; add changelog; export functions

* fix bad variable name

* Update packages/react/src/metafield-parser.test.ts

Co-authored-by: Daniel Rios <ieldanr@gmail.com>

* Clarify wording around naming and deprecation

* remove todo

Co-authored-by: Daniel Rios <ieldanr@gmail.com>

* Create CartCost (#46)

* Create CartCost

* Add changeset

* Update packages/react/src/CartCost.tsx

Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>

* Update packages/react/src/CartCost.tsx

Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>

* Fix lint

* Fix lint

Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>

* Adding NextJS as an e2e testing point / app (#49)

* save progress

* Save progress and updates

* Saving prettier output

* Cleanup the repo and get dev scripts working across packages

* Build before typecheck as nextjs relies on the output

* fix linting setup for nextjs

* add a todo note

* Fix build issues with outputting a node_modules folder

Always remove the dist folder as part of dev (and prod) to make sure that the dist folder looks accurate across starts

Move unneeded ts-expect in sourcecode and move to test

Fix some tsconfig issues with included files

* Update issue templates

* Update issue templates

* format fixing :)

* Update the types for MediaFile to allow className (#57)

* Add <AddToCartButton /> component (#58)

* Add component

* Add tests

* add changeset

* fix typo

* Update AddToCartButton.tsx

* Move base button (#59)

* Cart checkout button (#60)

* Add CartCheckoutButton

* Create curly-turtles-itch.md

* use basebutton on checkoutbutton (#61)

* Buy now button (#62)

* buy now button

* minor fixusps and change set

* include xstate in builds (#64)

* include xstate in builds

* Fix NextJS issues by including files with sideeffects

See vitejs/vite#10866 for more details

* [ci] release 2022-10 (#47)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Add node-specific builds using Vite's --ssr flag (#66)

* Add node-specific builds using Vite's --ssr flag

Should help use the correct code for each environment in places where that's important, e.g. using node-specific stuff when in node.

* add changeset

* Fix additional issues with node builds (#68)

* Fix additional issues with node builds

Tested in the standalone nextjs app for sanity's sake, and this is working

* comment update

* Cart line provider (#48)

* Initial thing

* Make old tests pass

* Adding stories

* fix up test/stories more

* remove unneeded fixtures

* Update sharp-squids-accept.md

* Update CartLineProvider.test.tsx

* remove cartlines component

* Add additional functions to ShopifyProvider (#71)

* Added new functions to shopify provider

* Update cart to use the new methods

Add changeset

* feedback updates

* Add our scalars to the package for other developers (#69)

* Add our scalars to the package for other developers

* Update .changeset/swift-olives-beam.md

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update .changeset/swift-olives-beam.md

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update apps/nextjs/codegen.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update apps/nextjs/codegen.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update apps/nextjs/codegen.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update packages/react/codegen.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update packages/react/codegen.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update packages/react/README.md

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update packages/react/README.md

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update packages/react/codegen.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update packages/react/codegen.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update packages/react/codegen.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update packages/react/codegen.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Update packages/react/src/codegen.helpers.ts

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Add a new utility helper for getting the myshopify domain for the site (#70)

* [ci] release 2022-10 (#67)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Update all deps except Vitest and ModelViewer (#74)

Not vitest because of an issue with the latest version causing us to fail our tests.

* Update MediaFile types (#76)

* Update MediaFile types

* Update packages/react/src/MediaFile.tsx

Co-authored-by: Matt Seccafien <mseccafien@gmail.com>

* Update packages/react/src/MediaFile.test.tsx

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

Co-authored-by: Matt Seccafien <mseccafien@gmail.com>
Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Add stackblitz links and info to issue template (#72)

* Add stackblitz links and info to issue template

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: Matt Seccafien <mseccafien@gmail.com>

* feedback

Co-authored-by: Matt Seccafien <mseccafien@gmail.com>

* Update ShopifyProvider to have storeDomain match (#78)

Add tests, and add some small notes to the upgrade guide.

* `CartLinePrice` component (#50)

* Improve fixture mocks merging

* Migrate `CartLineImage` component

* Migrate `CartLinePrice` component

* changesets

* fix typescript

* Update `CartLinePrice` to be consistent with `ProductPrice`

* Revert "Migrate `CartLineImage` component"

This reverts commit 096f6e57752d8bdfc1571c53856c0817dcc7d2e8.

* Update changeset

* [ci] release 2022-10 (#77)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Update the types for <Money/> (#80)

* Update the types for <Money/>

* fix test

* Show development warnings only once (#85)

* Show client warnings only once

* Changeset

* Double space

* Fix main / module fields in package.json (#87)

* update workflow files to not used deprecated apis (#88)

* Saving progress (#90)

* [ci] release 2022-10 (#81)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* remove file that prevents publishing

* Fix/cart optimistic (#93)

* fix optimistic UI for CartProvider

* Add changeset

* add graphql comments, remove duplicated query, add new field names (#94)

* Fixes issues with require() calls in non-node envs (#99)

Also remove unnecessary "production" conditions as it'll just use the default condition which is the same.

* [ci] release 2022-10 (#96)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Add final changelog (#109)

* [ci] release 2022-10 (#110)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Final for reals, but with readme updates now (#112)

* [ci] release 2022-10 (#113)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Start work on 2023-01

* Update instances in code of 2022-10

* Update the schema and types

* Update to shopifyDomain to only provide exactly what is passed in

* Deprecated the old metafield parser and updated it to the new way

* Update package.json version

* Update readmes

* Get flattenConnection return types better. (#118)

* Readme cleanup a bit

* Update all possible deps

* [React Storefront Kit]: Rename product, `npm` package, and GitHub repo references (#98)

* rename product and package

* link

* prettier

* Update package.json

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>

* Cleanup some naming things, and fix build names and repo names

* Remove unneeded note

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>
Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>

* Documentation setup (#101)

* npm script for new system and some test .doc.ts files

* updated to v 0.2.7 generate-docs

* New docs system (#75)

* add ProductPrice doc

* add ProductPrice example

* add MediaFile doc

* add MediaFile example

* add Image example

* Metafield and update to MediaFile

* Add ModelViewer

* Add Money

* fix metafield and money

* fix generation error

* add ProductProvider and ShopifyProvider

* ShopPayButton

* fix ShopifyProvider

* update ShopPayButton type and add Video

* generate data

* some cleanup

* update data

* Static page docs (#82)

* use new folder structure for docs

* move doc file

* updated some types for landing pages

* update to newer version of generate-docs and update content to React Storefront Kit

* update to newer version of generate-docs and update content to React Storefront Kit

* update to newer version of generate-docs and update content to React Storefront Kit

* Update examples to have their own extension

Config TS and ESLint so that there aren't any issues with some checks that will always fail in the example files

* Update to latest and fix various issues

* Updated docs with better names, types, and examples

* Cleanup shoppaybutton

Co-authored-by: John Collett <john.collett@shopify.com>
Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>
Co-authored-by: John Collett <92598453+johndcollett@users.noreply.github.com>
Co-authored-by: Alex Harvey <alex.harvey@shopify.com>

* Get publishing back on

* update changelog name

* Remove migration text

* [ci] release 2023-01 (#123)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Small changelog updates

* add additional note to contributing

* Shopify analytics (#108)

* working shopify analytics

* add to cart analytics

* workign all events

* file renames

* file paths

* lint

* lint

* fix nextjs app lint

* fix nextjs app lint

* test for schemas

* lint test

* fix nextjs app

* add analytic-utils tests and refactor (#117)

* add analytic-utils tests and refactor

* fix name

* fix test

* add test for coverage

* fix no product payload test

* @juanpprieto/fix-failing-tests (#120)

* add support for parsing complex gids and fix failing test

* shorten cond checks

* remove incorrect complex id parsing

* fix typo

* sendShopifyAnalytics tests

* better test naming

* lint

* some PR feedbacks

* more PR feedbacks

* lint

* more test

* more test

* better name test

* @juanpprieto/cookie util test (#121)

* fix lint complains

* fix weird ts complain

* fix format

* clean up constants

* convert ShopifyCookie to a hook

* ts clean up

* ts clean up

* more ts clean up

* more feedback

* update ShopPayButton

* make sure monorail endpoint can be updated to the shop domain alternative

* mock failed response

* add doc

* prettier

* ci browser different?

* return explicit type

* see if this works

* fix type prettier

* fix package path

* full cookie test

* prettier

* move shopify cookie constants back into cart constant

* missed a return type

* Update .changeset/plenty-moles-listen.md

Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>

* remove console log

* update exposed methods, constants, and types

* prettier

* fix file name

* fix file name again

* Small updates

Co-authored-by: Juan P. Prieto <jp@calltheguys.co>
Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>

* [ci] release 2023-01 (#124)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Update README.md

* Update README.md

* Fix bug in storefront client. (#125)

Update the nextjs app to reflect that

Fix issue with latest graphql codegen needing ts-node

Add tests

* [ci] release 2023-01 (#126)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Update docs and cleanup references (#127)

* update(packages): Updated Generate-docs package to solve errors from existing docs (#129)

* Updating the docs links to work (#131)

Cleaning up naming and editorial stuff.

* Adding docs for AddToCart and BuyNow buttons (#132)

* generate docs

Cleanup package.json

Update contributing.md

* AddToCartButton

* Add BuyNowButton

* Update README.md

* Adds CartLinePrice and CartCost components to index.ts (#134)

* Add cart checkout docs and rearrange index.ts

* Add cartcost component

* Add CartLinePrice

* format readme

* Update README.md

* Adding docs for cartlineprovider (#141)

* getting cartprovider docs up (#142)

* getting cartprovider docs up

* update name

* Graphql ts docs (#143)

* Add some graphql and TypeScript related docs for utilities

* Delete generated_docs_data.json

* Add docs for flatten connection (#144)

* Enforce alphabetical exports only in index.ts (#145)

* Add parse-metafield docs (#149)

* Add parse-metafield docs

* Add storefront-client docs as well

* fix ci for now

* Adding analytics docs (#138)

* Adding analytics docs basic setup

* Fix doc typing to use the magic generated one

* clean up eslint errors and ts errors

* break functions into each own files for documentation

* move fn back to analytics file and fix up doc

* fix up test

* add more docs

* create doc for constants

* more updates

* add changeset

* fix types

* format

* lint

* rename to shopify constants

* fix type again

* add related docs

* fix type in test

* fix types

* add type for other const

* One more fix

---------

Co-authored-by: Helen Lin <helen.lin@shopify.com>

* Update the SFAPI docs to use satisfies (#151)

* Add useMoney docs (#152)

* Add useMoney docs

* Revert Money.doc changes

* remove ts error in jsx file

* Update README.md

* update reference landing page (#146)

* update landing page (#153)

* update landing page

* edits

* update examples

* fix example

* format

* Update packages/react/docs/staticPages/hook.example.jsx

Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>

* Update packages/react/docs/staticPages/hydrogenReact.doc.ts

---------

Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>

* Fix some documentation issues (#154)

* Cleanup some docs and how they're presented (#155)

* Update ShopifyProvider with flattened props (#156)

* Renaming it again to hydrogen-react (#157)

Hopefully the last time... :)

* [ci] release 2023-01 (#135)

* [ci] release 2023-01

* [ci] release 2023-01

* Add release notes documentation

* fix link text

* Update packages/react/CHANGELOG.md

Co-authored-by: Bret Little <bret.little@shopify.com>

* Update packages/react/CHANGELOG.md

Co-authored-by: Bret Little <bret.little@shopify.com>

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Anthony Frehner <frehner@users.noreply.github.com>
Co-authored-by: Bret Little <bret.little@shopify.com>

* remove duplicated info

* Update the umd global variable name (#159)

* Update the umd global variable name

* add changeset

* Tweak docs (#161)

* Make better button docs (#164)

* Tweak docs 2 (#163)

* Update the docs for any Money-related components (#165)

* Last bit of small cleanup (#166)

* Fix flattenConnection doc (#168)

* Landing page fixes (#167)

* new landing page for react hydrogen

* more changes to the landing page

* undo changes to generated_docs_data

* updated generated content with new version

* fixed some rogue commas

* updated generation

* fix links to storefront schema (#169)

* fix links to storefront schema

* update generated file

* storefront-api-types link

* landing page typo (#170)

* Update README.md

* Deprecate CartLinePrice (#173)

* Deprecate CartLinePrice

* cleanup changelog

* Fix some docs (#175)

* Lint updates (#174)

* migrate to just be in the package alone

* Ignore or fix lint errors

* Add explicit return types on functions only for source code

* Configure turbo to run eslint in each package

* Get linting working on the react package

* Get tests to pass by preserving the act behavior as it was before

* Migrate cartlinequantityadjustbutton (#180)

* Start migration of CartLineQuantityAdjustButton

Co-Authored-By: Jason Kurian <2642545+JaKXz@users.noreply.github.com>

* 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 <2642545+JaKXz@users.noreply.github.com>

* 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 <2642545+JaKXz@users.noreply.github.com>

* [ci] release 2023-01 (#160)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Updating the readmes to use the official docs more (#182)

* Fix two small docs issues (#183)

* Fix two small docs issues

* fix the source and run the build-docs command

* Fix UMD builds by defining process.env.NODE_ENV (#188)

* Fix bug in storefront-client checking on the server (#195)

* Fix issue with props on cartlinequantityadjustbutton (#196)

* Update all the deps besides model-viewer (#199)

* Update all the deps besides model-viewer

* Create lazy-dolphins-develop.md

* Npm migration (#201)

* use package-lock

* Migrate tooling to use npm

* Fix some commands to use npx; add changelog

* [ci] release 2023-01 (#197)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* prep for migration and renaming to hydrogen-react

* step 1: migrated hydrogen-react source code

Updated package.json

Verified that most of the package scripts in hydrogen-react work.

* Get the dev command working from monorepo root

* dev scripts working with reloads

* CI checks are passing locally for the most part

Waiting on Matt's updates to the hydrogen tests to work in other timezones before this is 100% done.

* Get ci:checks script working

* Update docs and readme for new repo location

* Update issue templates to better include hydrogen-react

And other tools, too!

* Update Hydrogen readme to make room for multiple packages

Graham did most of the work here 😄

Co-Authored-By: Graham F. Scott <gfscott@users.noreply.github.com>

* Add a versioning section

* update entry.server.tsx based on new remix template

* Revert "update entry.server.tsx based on new remix template"

This reverts commit 7ef939e.

* Update README.md

Co-authored-by: Daniel Rios <daniel.riospavia@shopify.com>

* PR feedback

* remove npm version

* triggering a revalidation maybe?

* Revert "triggering a revalidation maybe?"

This reverts commit d85ba01.

* try with turbo platform workaround?

---------

Co-authored-by: Ren Chaturvedi <63201605+rennyG@users.noreply.github.com>
Co-authored-by: Elise Yang <elise.yang@shopify.com>
Co-authored-by: Elise Yang <eliseyang@elises-mbp-2.lan>
Co-authored-by: Daniel Rios <ieldanr@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Elise Yang <elisenarai@gmail.com>
Co-authored-by: Matt Seccafien <mseccafien@gmail.com>
Co-authored-by: Bret Little <bret.little@shopify.com>
Co-authored-by: Daniel Rios <daniel.riospavia@shopify.com>
Co-authored-by: Fran Dios <frankdiox@gmail.com>
Co-authored-by: Michelle Vinci <michelle.vinci@shopify.com>
Co-authored-by: John Collett <john.collett@shopify.com>
Co-authored-by: John Collett <92598453+johndcollett@users.noreply.github.com>
Co-authored-by: Alex Harvey <alex.harvey@shopify.com>
Co-authored-by: Helen Lin <helen.lin@shopify.com>
Co-authored-by: Juan P. Prieto <jp@calltheguys.co>
Co-authored-by: Jason Kurian <2642545+JaKXz@users.noreply.github.com>
Co-authored-by: Graham F. Scott <gfscott@users.noreply.github.com>
remcolakens added a commit to remcolakens/hydrogen that referenced this pull request Jul 14, 2023
## Context

At the top of the navigation I added a new Announcement Bar to show
messages to the users

## Changes

- Added new package `<AnnouncementBar />` following the CBT-design
guidelines
- Made 'primary' variant and the ability to add more variants to the
future
- Added the `<AnnouncementBar />` to the pages

## Screenshot


![announcement](https://github.com/code-internet-applications/cbt-hydrogen/assets/2558163/2dab0e08-ff1c-4644-afc6-41c345ebee7d)

## Paperwork

[SCH-17](https://codeinternetapplications.atlassian.net/browse/SCH-17)

## Checklist

- [x] My code follows the style guidelines of this project
- [x] I've performed a self-review of my own code
- [x] I've added a changeset if this PR contains user-facing or
noteworthy changes
- [x] I've commented my code, particularly in hard-to-understand areas
- [x] I've made corresponding changes to the documentation
- [x] I've tested my code for breaking changes and added the
corresponding
      footer in this PR if needed


[SCH-17]:
https://codeinternetapplications.atlassian.net/browse/SCH-17?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
remcolakens added a commit to remcolakens/hydrogen that referenced this pull request Jul 14, 2023
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## @code-internet-applications/announcement-bar@0.1.0

### Minor Changes

-
[Shopify#75](https://github.com/code-internet-applications/cbt-hydrogen/pull/75)

[`0486806`](https://github.com/code-internet-applications/cbt-hydrogen/commit/0486806eba4e19371c2de948a38017407486a056)
Thanks [@remcolakens](https://github.com/remcolakens)! - Add
announcement bar

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/button@0.2.0

### Minor Changes

-
[Shopify#72](https://github.com/code-internet-applications/cbt-hydrogen/pull/72)

[`21f5a89`](https://github.com/code-internet-applications/cbt-hydrogen/commit/21f5a89c63988ca10444b86a8b5e7205a219fec9)
Thanks [@remcolakens](https://github.com/remcolakens)! - SCH-93: Add
hero
    banner component

-
[Shopify#74](https://github.com/code-internet-applications/cbt-hydrogen/pull/74)

[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408)
Thanks [@remcolakens](https://github.com/remcolakens)! - Exported button
type
    to make it easier to reuse

-
[Shopify#73](https://github.com/code-internet-applications/cbt-hydrogen/pull/73)

[`563ce94`](https://github.com/code-internet-applications/cbt-hydrogen/commit/563ce94141d7535664e51bdd6190761a70d16164)
Thanks [@remcolakens](https://github.com/remcolakens)! - Added button
variants
    type for Typescript

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0
    -   @code-internet-applications/icon@0.2.1

## @code-internet-applications/card@0.2.0

### Minor Changes

-
[Shopify#74](https://github.com/code-internet-applications/cbt-hydrogen/pull/74)

[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408)
Thanks [@remcolakens](https://github.com/remcolakens)! - Minor
responsive
    tweaks

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/container@0.2.0

### Minor Changes

-
[Shopify#72](https://github.com/code-internet-applications/cbt-hydrogen/pull/72)

[`21f5a89`](https://github.com/code-internet-applications/cbt-hydrogen/commit/21f5a89c63988ca10444b86a8b5e7205a219fec9)
    Thanks [@remcolakens](https://github.com/remcolakens)! - Introduced
    <ContainerDebug /> component for a better debugging experience

-
[Shopify#73](https://github.com/code-internet-applications/cbt-hydrogen/pull/73)

[`563ce94`](https://github.com/code-internet-applications/cbt-hydrogen/commit/563ce94141d7535664e51bdd6190761a70d16164)
Thanks [@remcolakens](https://github.com/remcolakens)! - add debug grid
for
    mobile

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/heading@0.3.0

### Minor Changes

-
[Shopify#72](https://github.com/code-internet-applications/cbt-hydrogen/pull/72)

[`21f5a89`](https://github.com/code-internet-applications/cbt-hydrogen/commit/21f5a89c63988ca10444b86a8b5e7205a219fec9)
Thanks [@remcolakens](https://github.com/remcolakens)! - SCH-93: Add
hero
    banner component

-
[Shopify#69](https://github.com/code-internet-applications/cbt-hydrogen/pull/69)

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80)
Thanks [@remcolakens](https://github.com/remcolakens)! - Fixed issue in
    twMerge where custom theme scales are not recognized

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/navigation-menu@0.1.0

### Minor Changes

-
[Shopify#69](https://github.com/code-internet-applications/cbt-hydrogen/pull/69)

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80)
Thanks [@remcolakens](https://github.com/remcolakens)! - SCH-13: Added
basic
    header styling and new react component

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0
    -   @code-internet-applications/icon@0.2.1

## @code-internet-applications/react@0.5.0

### Minor Changes

-
[Shopify#75](https://github.com/code-internet-applications/cbt-hydrogen/pull/75)

[`0486806`](https://github.com/code-internet-applications/cbt-hydrogen/commit/0486806eba4e19371c2de948a38017407486a056)
Thanks [@remcolakens](https://github.com/remcolakens)! - Add
announcement bar

-
[Shopify#69](https://github.com/code-internet-applications/cbt-hydrogen/pull/69)

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80)
Thanks [@remcolakens](https://github.com/remcolakens)! - SCH-13: Added
basic
    header styling and new react component

### Patch Changes

-   Updated dependencies

\[[`0486806`](https://github.com/code-internet-applications/cbt-hydrogen/commit/0486806eba4e19371c2de948a38017407486a056),

[`21f5a89`](https://github.com/code-internet-applications/cbt-hydrogen/commit/21f5a89c63988ca10444b86a8b5e7205a219fec9),

[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`21f5a89`](https://github.com/code-internet-applications/cbt-hydrogen/commit/21f5a89c63988ca10444b86a8b5e7205a219fec9),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7),

[`563ce94`](https://github.com/code-internet-applications/cbt-hydrogen/commit/563ce94141d7535664e51bdd6190761a70d16164),

[`563ce94`](https://github.com/code-internet-applications/cbt-hydrogen/commit/563ce94141d7535664e51bdd6190761a70d16164),

[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408)]:
    -   @code-internet-applications/announcement-bar@0.1.0
    -   @code-internet-applications/heading@0.3.0
    -   @code-internet-applications/button@0.2.0
    -   @code-internet-applications/text@0.3.0
    -   @code-internet-applications/navigation-menu@0.1.0
    -   @code-internet-applications/container@0.2.0
    -   @code-internet-applications/quantity-selector@0.1.1
    -   @code-internet-applications/textarea@0.1.1
    -   @code-internet-applications/select@0.1.1
    -   @code-internet-applications/input@0.1.1
    -   @code-internet-applications/card@0.2.0
    -   @code-internet-applications/accordion@0.1.1
    -   @code-internet-applications/badge@0.2.1
    -   @code-internet-applications/label@0.2.1
    -   @code-internet-applications/price@0.1.1
    -   @code-internet-applications/radio@0.1.1

## @code-internet-applications/text@0.3.0

### Minor Changes

-
[Shopify#69](https://github.com/code-internet-applications/cbt-hydrogen/pull/69)

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80)
Thanks [@remcolakens](https://github.com/remcolakens)! - Fixed issue in
    twMerge where custom theme scales are not recognized

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/eslint-config-code@0.3.0

### Minor Changes

-
[Shopify#74](https://github.com/code-internet-applications/cbt-hydrogen/pull/74)

[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408)
Thanks [@remcolakens](https://github.com/remcolakens)! - Added
eslint-comments
    for better support with Hydrogen linting

## @code-internet-applications/tailwind-config@0.6.0

### Minor Changes

-
[Shopify#72](https://github.com/code-internet-applications/cbt-hydrogen/pull/72)

[`21f5a89`](https://github.com/code-internet-applications/cbt-hydrogen/commit/21f5a89c63988ca10444b86a8b5e7205a219fec9)
Thanks [@remcolakens](https://github.com/remcolakens)! - SCH-93: Add
hero
    banner component

-
[Shopify#69](https://github.com/code-internet-applications/cbt-hydrogen/pull/69)

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80)
Thanks [@remcolakens](https://github.com/remcolakens)! - Fixed issue in
    twMerge where custom theme scales are not recognized

### Patch Changes

-
[Shopify#76](https://github.com/code-internet-applications/cbt-hydrogen/pull/76)

[`9d42df4`](https://github.com/code-internet-applications/cbt-hydrogen/commit/9d42df4444896b28c0b955b1283df2c8996d5e51)
Thanks [@remcolakens](https://github.com/remcolakens)! - Fixed issue
with
    eslint comments

## @code-internet-applications/hydrogen-utils@0.1.0

### Minor Changes

-
[Shopify#76](https://github.com/code-internet-applications/cbt-hydrogen/pull/76)

[`9d42df4`](https://github.com/code-internet-applications/cbt-hydrogen/commit/9d42df4444896b28c0b955b1283df2c8996d5e51)
Thanks [@remcolakens](https://github.com/remcolakens)! - add relevance
filter
    to hydrogen-utils

## @code-internet-applications/tailwind-utils@0.4.0

### Minor Changes

-
[Shopify#74](https://github.com/code-internet-applications/cbt-hydrogen/pull/74)

[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408)
Thanks [@remcolakens](https://github.com/remcolakens)! - Add default
grid
    classes

-
[Shopify#69](https://github.com/code-internet-applications/cbt-hydrogen/pull/69)

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80)
Thanks [@remcolakens](https://github.com/remcolakens)! - Fixed issue in
    twMerge where custom theme scales are not recognized

### Patch Changes

-
[Shopify#71](https://github.com/code-internet-applications/cbt-hydrogen/pull/71)

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)
Thanks [@remcolakens](https://github.com/remcolakens)! - The form
styling has
    been refactored to improve the IDE experience.

## @code-internet-applications/accordion@0.1.1

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0
    -   @code-internet-applications/icon@0.2.1

## @code-internet-applications/badge@0.2.1

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0
    -   @code-internet-applications/icon@0.2.1

## @code-internet-applications/icon@0.2.1

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/input@0.1.1

### Patch Changes

-
[Shopify#71](https://github.com/code-internet-applications/cbt-hydrogen/pull/71)

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)
Thanks [@remcolakens](https://github.com/remcolakens)! - The form
styling has
    been refactored to improve the IDE experience.

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/label@0.2.1

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/price@0.1.1

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/quantity-selector@0.1.1

### Patch Changes

-
[Shopify#71](https://github.com/code-internet-applications/cbt-hydrogen/pull/71)

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)
Thanks [@remcolakens](https://github.com/remcolakens)! - The form
styling has
    been refactored to improve the IDE experience.

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/radio@0.1.1

### Patch Changes

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/select@0.1.1

### Patch Changes

-
[Shopify#71](https://github.com/code-internet-applications/cbt-hydrogen/pull/71)

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)
Thanks [@remcolakens](https://github.com/remcolakens)! - The form
styling has
    been refactored to improve the IDE experience.

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

## @code-internet-applications/textarea@0.1.1

### Patch Changes

-
[Shopify#71](https://github.com/code-internet-applications/cbt-hydrogen/pull/71)

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)
Thanks [@remcolakens](https://github.com/remcolakens)! - The form
styling has
    been refactored to improve the IDE experience.

-   Updated dependencies

\[[`b18a13b`](https://github.com/code-internet-applications/cbt-hydrogen/commit/b18a13bd0b95bdb9fb8bf492c0ff471a0a594408),

[`85661c1`](https://github.com/code-internet-applications/cbt-hydrogen/commit/85661c187763889d037909a68fc718b3e7280c80),

[`92907c5`](https://github.com/code-internet-applications/cbt-hydrogen/commit/92907c5c2d639caf3e987616207a12faeabb12c7)]:
    -   @code-internet-applications/tailwind-utils@0.4.0

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants