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

Updates Dawn to use the new structured_data filter #3380

Merged
merged 2 commits into from
May 30, 2024

Conversation

lhoffbeck
Copy link
Contributor

@lhoffbeck lhoffbeck commented Mar 29, 2024

PR Summary:

Replace product and article structured data generated in the theme with structured data generated by the structured_data filter.

Why are these changes introduced?

Updating themes to stay on the greenpath of structured data developments is currently pretty painful.

What approach did you take?

Other considerations

Decision log

# Decision Alternatives Rationale Downsides
1

Visual impact on existing themes

Testing steps/scenarios

  • Step 1

Demo links

Checklist

@bakura10
Copy link

bakura10 commented Apr 4, 2024

That's a very nice update. A few notes though:

@willbroderick
Copy link

willbroderick commented Apr 4, 2024

May I suggest this be implemented as a containerless {{ structured_data }} added to layout/theme.liquid?

This would allow Shopify to contextually include Organization, WebSite, Article, BreadcrumbList, FAQPage, anything else that might be useful, and adapt to best practices in future.

@lhoffbeck
Copy link
Contributor Author

lhoffbeck commented Apr 4, 2024

That's a very nice update. A few notes though:

Awesome, I'll take a look at the gist 🙌 This approach will let us roll out support for new features like ProductGroup and multipage (hello combined listings) without requiring theme updates

Totally, it's on the roadmap

@lhoffbeck
Copy link
Contributor Author

May I suggest this be implemented as a containerless {{ structured_data }} added to layout/theme.liquid?

This would allow Shopify to contextually include Organization, WebSite, Article, BreadcrumbList, FAQPage, anything else that might be useful, and adapt to best practices in future.

That's great feedback, I'll take this back to the team

@tairli
Copy link
Contributor

tairli commented Apr 16, 2024

What would be the recommended way to integrate product reviews?
It was popular to add the data from metafields into the ld+json element like in @bakura10 gist.

@bakura10
Copy link

@lhoffbeck , just an idea here, but what about simplifying this to:

{% structured_data %}

or:

{{ request | structured_data }}

This way Shopify could automatically generate either product or blog post metadata, but also the website metadata that you guys already have ; see my Gist for all the data). That would simplify it a bit and would handle any other metadata that Google might add in the future.

@lhoffbeck
Copy link
Contributor Author

lhoffbeck commented Apr 24, 2024

@bakura10 yeah good idea, I have it in a backlog ticket. It could be a both/and improvement along with this :)

What would be the recommended way to integrate product reviews?
It was popular to add the data from metafields into the ld+json element like in @bakura10 gist.

@tairli great question! Shopify-generated data only includes information that does not require any inference. Since reviews tend to be stored as metafields and don't have a standard definition, they don't fall under this case. However, the Shopify data can be trivially extended by adding another block with the same @id to the page. For example:

<!-- data from {{ product | structured_data }} -->
<script type="application/ld+json">
{
   "@context":"http://schema.org/",
   "@id":"/products/my-product#product",
   "name":"My product",
   ... other fields ...
}
</script>

<!-- @tairli's enhanced data -->
<script type="application/ld+json">
{
   "@context":"http://schema.org/",
   "@id":"/products/my-product#product",
   "aggregateRating": {
        "@type": "AggregateRating",
        "ratingValue": "5",
        "reviewCount": "100"
   }
}
</script>

@bakura10
Copy link

@lhoffbeck I don't agree with that. This is what the standard rating metafield is for :).

@lhoffbeck
Copy link
Contributor Author

@bakura10 Because it's a metafield the type is standardized but not the data, so surfacing it to everyone using the filter could return the wrong values. Something we could potentially explore is adding an option in the metafield definition to surface it in structured_data 🤔 For now I'd recommend extending though.

@bakura10
Copy link

Makes sense, but I think this will cause us a lot of support :/. Not all review apps actually output this, so merchants will see the missing review and will just come back to us on how to add it. It would definitely be needed for merchants to have control over that.

@joshistoast
Copy link

One edge case to look out for is 3rd party review apps, would it be worth exploring an argument expecting a specific reviews structure so we can format and use those?

@lhoffbeck
Copy link
Contributor Author

Thanks @joshistoast ! This should support 3p reviews apps already, the flow would look something like this:

  • Review app sets metafields on the product
  • Merchant's theme outputs product structured data using the filter
  • App injects structured data for the review into the storefront, with an "@id": "{{ product.url }}#product". Google combines the app block with the structured_data filter block by the @id prop.

App dev guidance to the merchant would be something like: if you use the structured_data filter, review app structured data works automatically. If you customize structured_data, either ensure an "@id": "{{ product.url }}#product" is present or include this review block: {"aggregateRating": ...}

would it be worth exploring an argument expecting a specific reviews structure so we can format and use those

Can you tell me more about what you're thinking here?

@lhoffbeck lhoffbeck force-pushed the lh-migrate-product-structured-data-to-server branch from 047bf3a to d07e613 Compare May 14, 2024 17:10
@joshistoast
Copy link

Can you tell me more about what you're thinking here?

I'm more-so curious to overriding values in case the shape of data is odd or id I's like to change it in some way, in which case I'm sure the traditional structured data approach would be best.

@lhoffbeck

@lhoffbeck
Copy link
Contributor Author

Can you tell me more about what you're thinking here?

I'm more-so curious to overriding values in case the shape of data is odd or id I's like to change it in some way, in which case I'm sure the traditional structured data approach would be best.

@lhoffbeck

@joshistoast Gotcha. Google doesn't seem to allow for overriding values by linking multiple structured data blocks by @id, only extending the definitions. If you need more customization than that, then continuing with the liquid-generated structured data is probably your best bet.

@lhoffbeck lhoffbeck force-pushed the lh-migrate-product-structured-data-to-server branch from d07e613 to 8861398 Compare May 29, 2024 17:11
@lhoffbeck lhoffbeck marked this pull request as ready for review May 29, 2024 17:12
@lhoffbeck lhoffbeck requested a review from dan-menard May 29, 2024 17:12
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I removed the property-based SEO from this file. Google interprets this as a duplicate item when present along with ld+json: https://search.google.com/test/rich-results/result?id=6ClESn2Nb85_l_LNc1XbVA

@PaulNewton
Copy link

Another reason we need to be able to override an objects properties , create custom objects*, or some sort of preprocessing in liquid.

Google doesn't seem to allow for overriding values by linking multiple structured data blocks by @id, only extending the definitions. If you need more customization than that, then continuing with the liquid-generated structured data is probably your best bet.

And shopify doesn't let us override object values either , for countless business scenarios situations such as contact-for-pricing ad nausem infinity there's all the surfaces that have to be edited AND merchants then get locked out of future enhancements like the structured_data filter that won't have granular parameters.

Though if there's a non-liquid workaround to that let us override ld+json with just another ld+json block containt only the slice that needs to be customized that would be just as amazing and simplify a lot of customizations by taking advantage of the structured_data for the core of the admin data then simple snippets for the one offs in the theme without the error proneness of editing themes liquid-templated-json, or capture & replace tactics.

*also can't use metaobjects because their access structure doesn't let use create pseudo products we could slap in. i.e. {% assign catalog_products = shop.metaobjects.catalog_product.values | first %} ...metaobject forloop... {{ catalog_product | structured_data }}

Copy link
Contributor

@tyleralsbury tyleralsbury left a comment

Choose a reason for hiding this comment

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

Tested. Loving the net -71 line diff, too. :chefs-kiss:

@lhoffbeck lhoffbeck merged commit abbf0dd into main May 30, 2024
8 checks passed
@lhoffbeck lhoffbeck deleted the lh-migrate-product-structured-data-to-server branch May 30, 2024 15:49
@haroldao
Copy link

image An error is returned in the article template...

@lhoffbeck
Copy link
Contributor Author

@haroldao can you send me which page this is on?

@haroldao
Copy link

I imported the updated theme on my demo store

@lhoffbeck
Copy link
Contributor Author

Can you drop a link so I can take a look?

@haroldao
Copy link

image
It seems like it has been fixed! Ty @lhoffbeck!

@lhoffbeck
Copy link
Contributor Author

No problem! Thanks for reporting it :)

@joshistoast
Copy link

Created a ticket with yotpo so they can start supporting this new filter 👀

@bakura10
Copy link

aaaaand as expected, support debt started after we upgraded to the structured_data filter :( !

image

Unfortunately, Shopify structured_data does not output all the data, and this leads to warnings on Google merchants. I agree that those are just warning and won't affect in any way SEO ranking, but merchants tend do be super picky about those stuff and it is hard for us to explain that to merchants, as they see the warning and expect it to be fixed.

As we now use the structured_data we are going to redirect all merchants to Shopify support, but still, this create some support debt on our end that we would like to avoid.

For reference, please find again my final implementation of the structured data: https://gist.github.com/bakura10/7704584dc866d7ae3754789a6fdc66b4

@lhoffbeck can you please escalate this issue and ensure that this field (and in general all fields triggering a warning for which you have the info ; which is the case here) can be part of the schema outputted by the filter?

@lhoffbeck
Copy link
Contributor Author

Hey Michael, we should be able to add that field :)

@bakura10
Copy link

Thanks, please let me know once added so I can let the merchant know! :)

NathanScheele pushed a commit to Misha-Puff/dawn that referenced this pull request Jul 1, 2024
* Updates Dawn to use the new filter

* Add support for article structured data
@bakura10
Copy link

bakura10 commented Jul 2, 2024

@lhoffbeck any news on when this can be added? We're receiving daily support requests about the missing hasMerchantReturnPolicy warning... :/

@lhoffbeck
Copy link
Contributor Author

Hey @bakura10 , hasMerchantReturnPolicy should be supported as part of the filter now.

@bakura10
Copy link

Thanks! I can confirm thsi is here now!

Rabter1 pushed a commit to Rabter1/dawn-icletta that referenced this pull request Jul 31, 2024
commit 28b21ab
Author: Ludo <ludo.segura@shopify.com>
Date:   Fri Jul 26 17:09:58 2024 +0200

    Revert a small tweak that wasn't necessary and a reference to the product (Shopify#3573)

commit a723f14
Author: Ludo <ludo.segura@shopify.com>
Date:   Thu Jul 25 18:10:16 2024 +0200

    Show default price for placeholder content (Shopify#3572)

    * Make sure a default price is shown when we're showing placeholder content

    * address review comments

    * update one more spot to use the new variable

commit 3fac840
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed Jul 24 11:21:38 2024 +0200

    Update 1 translation file (Shopify#3569)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 7a0f6e9
Author: Dan Menard <dan-menard@users.noreply.github.com>
Date:   Thu Jul 18 11:00:31 2024 -0400

    Escape product variant option names, as they can include quote characters and this renders undesirably. (Shopify#3567)

commit 544c61e
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Mon Jul 15 09:45:20 2024 -0400

    Fixed issues when header is hidden (Shopify#3545)

    * Fixed issues when header is hidden

    * Fixed predictive search on search page

    * Made it so that the drawer still shows up

commit 8071714
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Tue Jul 9 10:52:09 2024 +0200

    Update 3 translation files (Shopify#3557)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 51205de
Author: Ludo <ludo.segura@shopify.com>
Date:   Fri Jul 5 20:08:49 2024 +0200

    Update release notes and version number (Shopify#3554)

commit 0993057
Author: Dan Menard <dan-menard@users.noreply.github.com>
Date:   Fri Jul 5 11:40:07 2024 -0400

    v15 fixes (Shopify#3547)

    * [Product] Zoom on hover fix on variant change (Shopify#3511)

    * Zoom on hover fix on variant change

    * add conditional

    * Add early return in updateQuantityRules function if no quantity selector is present (Shopify#3515)

    * Fix bug where request url contains duplicated params when switching before the prior response is returned (Shopify#3521)

    * Fixes bug where image flashes when switching to variant with the same featured image; fixes bug where variant without featured image would fallback to the product image (Shopify#3516)

    Fix issue with thumbnail not updating

    * Fixed bug when reading selected option values. Removed unused script tag containing variant json. (Shopify#3520)

    * escape titles that weren't (Shopify#3514)

    * Support multiple product templates for the same combined listing (Shopify#3526)

    * Updated quick order list to rely on the variant title field (Shopify#3528)

    * Release15fix (Shopify#3531)

    * Revert "Update from Shopify for theme dawn/release/15.0.0"

    This reverts commit 5b20d89.

    * Revert "Update from Shopify for theme dawn/release/15.0.0"

    This reverts commit f0b822d.

    * Revert "Update from Shopify for theme dawn/release/15.0.0"

    This reverts commit 64e1d8e.

    * Revert "Update from Shopify for theme dawn/release/15.0.0"

    This reverts commit a8a7529.

    ---------

    Co-authored-by: Ludo <ludo.segura@shopify.com>
    Co-authored-by: Arthur <48017311+Roi-Arthur@users.noreply.github.com>
    Co-authored-by: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Co-authored-by: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>

commit 77459d4
Author: Ludo <ludo.segura@shopify.com>
Date:   Wed Jul 3 16:09:15 2024 +0200

    switch to textContent (Shopify#3544)

commit 6495238
Author: Mateusz Krzeszowiak <mateusz.krzeszowiak@shopify.com>
Date:   Fri Jun 7 16:11:13 2024 +0200

    Limit the number of stylesheets on the page (Shopify#3509)

    * Limit the number of stylesheets on the page

    * Apply suggestions from code review

    Co-authored-by: Ludo <ludo.segura@shopify.com>

    * Improve the logic and wording a bit

    ---------

    Co-authored-by: Ludo <ludo.segura@shopify.com>

commit 4b7a19b
Author: Kjell Reigstad <kjell@kjellr.com>
Date:   Fri Jun 7 08:31:49 2024 -0400

    Standardize heading font size options, add larger size (Shopify#3498)

    * Add gigantic heading size.

    * Use global translations in multirow.

    * Standardize heading font size offerings.

    * Change "Gigantic" to "Giant"

    * Set line height for new font size.

    * Update 10 translation files

    * Decrease Giant font size, update line height too.

    * Define line height for hxl.

    * Fix incorrect reference.

    * Set large line height to 1.1 all the time.

    * Adjust `vw` value in clamp so that the Giant font size is always larger than the Extra Large.

    * Change string to "Extra Extra Large"

    * Change text case.

    * Update 13 translation files

    * Update 4 translation files

    * Update 2 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 7a917b8
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Thu Jun 6 11:57:37 2024 -0400

    Changed show policy default to true (Shopify#3470)

commit 0e20f98
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu Jun 6 11:22:59 2024 -0400

    Dedupe quick add modal option value ids (Shopify#3504)

    * Deduplicate the option value IDs after option value selection changes in quick add modal

commit 1c09285
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu Jun 6 11:16:08 2024 -0400

    Migrate featured product template to use structured data filter (Shopify#3507)

commit ff1789e
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu Jun 6 11:15:49 2024 -0400

    Update request url and handlers to support featured products (Shopify#3497)

commit e4dddd0
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu Jun 6 08:11:46 2024 -0400

    Update variantselects to publish an option value selection change event instead of a variant change start event, defer variant info until section rendering API request comes back (Shopify#3495)

    Only update media when the selection has an associated variant

commit f85cd24
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu Jun 6 08:09:20 2024 -0400

    Set thumbnail when variant selection changes (Shopify#3505)

commit 8616c24
Author: Joey <joeyg.tedeschi@gmail.com>
Date:   Wed Jun 5 15:55:12 2024 -0400

    Create CSS variables to support the base-focus focus-visible properties, to be injected into components not naturally on the DOM (Shopify#3503)

commit 6e3f3c6
Author: Michael Bottens <mtbottens@gmail.com>
Date:   Wed Jun 5 11:47:46 2024 -0400

    adds theme toggle for avatar widget to allow opt-out without code change (Shopify#3496)

    * adds theme toggle for avatar widget to allow opt-out without code change

    * resolve spacing differences when account-icon is present in the DOM

    * Update 15 translation files

    * Update 5 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 8cadefd
Author: Dan Menard <dan-menard@users.noreply.github.com>
Date:   Tue Jun 4 10:32:08 2024 -0400

    Quick add modal fixes for Desktop (Shopify#3488)

    * Centre 'view cart' label in quick add modal.

    * Remove extra spacing at the bottom of quick order modal.

    * Fix the extra underlined space between the 'view full details' text and the arrow.

    * Make the product title a link to the product page.

    * Tweak breakpoints for consistently when the viewport is exactly 989 or 990 px wide

commit faa9caf
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Tue Jun 4 10:16:11 2024 -0400

    🐛 Combined listings bugfixes (Shopify#3492)

    * (Shopify#3492) Fix volume pricing message jumpiness when switching between combined listings; update page title when switching between combined listings; fix unselected option value bug in Safari

    * Update ID deduplication for quick add modal

commit 8352758
Author: Dan Menard <dan-menard@users.noreply.github.com>
Date:   Mon Jun 3 13:03:53 2024 -0400

    Add an out of stock note for quick add bulk, like the one for quick add standard. (Shopify#3487)

commit abbf0dd
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu May 30 11:49:01 2024 -0400

    Updates Dawn to use the new structured_data filter (Shopify#3380)

    * Updates Dawn to use the new filter

    * Add support for article structured data

commit 99d9188
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu May 30 09:07:25 2024 -0400

    Dedupe IDs when replacing content (Shopify#3494)

    * Dedupe IDs when replacing content

    * Dedupe form attributes

commit 651d170
Author: Donn Pasiliao <dpasiliao@gmail.com>
Date:   Wed May 29 16:18:36 2024 -0400

    Use translation keys for default values in liquid files (Shopify#3484)

    * Use translation keys for default values in liquid files

    * Update 10 translation files

    * Update 10 translation files

    * Update 10 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit bcd1850
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue May 28 16:50:55 2024 -0400

    [Quick Order List] Ensure variant id is converted to an integer (Shopify#3491)

commit ecdc76b
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Tue May 28 14:19:51 2024 -0400

    (Shopify#3289) This PR adds a product wrapper class by repurposing the existing product-info class and migrating product-update specific logic out of the VariantSelects class. A product wrapper enables children to more trivially perform global updates by providing a heirarchical "namespace"--i.e. child publishes event, parent captures and declaratively updates other children VS child updates siblings. By extracting the VariantSelects onChange logic to use this pattern, VariantSelects is able to be a single-purpose class, it is easier to understand why siblings are updated, and we were able to eliminate some really gross logic that handled variant change updates differently depending on the wrapping context. (Shopify#3289)

    Refetch entire page on product swap

    Remove unused unsubscriber function

    Stability improvements for quick-add modal

    PR feedback - fixed padding + minor tweaks

    Un-privatize class methods for consistency with the rest of Dawn

    Move css to be in section-main-product.css

commit aa4353a
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue May 28 10:32:41 2024 -0400

    Quick Add Bulk Modal - Increase performance with Intersection Observer and clean up network requests (Shopify#3480)

commit 091a371
Author: Logan Gunn <44077842+lgunn4@users.noreply.github.com>
Date:   Fri May 24 09:32:13 2024 -0400

    Added duties inclusive text to PDP and Cart page (Shopify#3475)

    * Added duties inclusive text to PDP and Cart page
    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 89472ef
Author: Ludo <ludo.segura@shopify.com>
Date:   Thu May 23 11:17:46 2024 +0200

    [Product] fix product modal not showing variant image (Shopify#3483)

    * fix product modal not showing variant image

    * reuse existing const var as per feedback

commit a2f5a98
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Wed May 22 16:06:33 2024 -0400

    Combined listings and 2k variants (Shopify#3378)

    * (Shopify#3378) Add support for combined listings and 2k variants

commit 080ff5b
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Fri May 17 16:54:54 2024 +0200

    Update 1 translation file (Shopify#3472)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit a4e898d
Author: Logan Gunn <44077842+lgunn4@users.noreply.github.com>
Date:   Wed May 15 14:27:19 2024 -0400

    renamed regional locales to default (Shopify#3473)

commit 636b6b7
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Wed May 15 11:50:47 2024 -0400

    Add qty rules client side validation to cart (Shopify#3471)

commit f5e5566
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Mon May 13 16:18:01 2024 -0400

    [Quick Add Bulk] Don't block quantity input during cart API call (Shopify#3461)

commit db146ef
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Fri May 10 09:53:26 2024 -0400

    Update 1 translation file (Shopify#3468)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit c67c833
Author: Ludo <ludo.segura@shopify.com>
Date:   Thu May 9 16:36:12 2024 +0200

    prevent vertical overflow on slideshow (Shopify#3455)

commit 27d2d84
Author: Ludo <ludo.segura@shopify.com>
Date:   Thu May 9 16:30:02 2024 +0200

    Version 14 bump and release notes (Shopify#3466)

commit e5e08d7
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Thu May 9 08:59:29 2024 -0400

    Update settings.json to add missing validation (Shopify#3464)

commit 85b75b0
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Mon May 6 16:07:19 2024 -0400

    [Fix] QOL Cart race conditions (Shopify#3395)

commit 55d2d5c
Author: Ludo <ludo.segura@shopify.com>
Date:   Mon May 6 17:09:38 2024 +0200

    Fix variant media not changing in the quick add modal (Shopify#3451)

    * Fix variant media not changing in the quick add modal

    * update approach based on review's feedback

commit d627f21
Author: Dan Menard <dan-menard@users.noreply.github.com>
Date:   Fri May 3 09:16:09 2024 -0400

    Override the ::after element for variant images in the quick add modal and quick order list to remove shadows. (Shopify#3449)

commit ba52194
Author: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
Date:   Wed May 1 14:13:21 2024 -0400

    Allow searching for country names with diacritics (Shopify#3443)

commit eefc111
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed May 1 11:50:16 2024 -0300

    Update translations: merchant (Shopify#3438)

    * Update 1 translation file

    * Update 8 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 3f4284a
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Wed Apr 24 15:29:50 2024 -0400

    Release/14.0.0 duplicate (Shopify#3436)
Rabter1 pushed a commit to Rabter1/dawn-icletta that referenced this pull request Jul 31, 2024
commit ef897dc5fd6ecddc80e8f39b252e29250bcbe167
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 17:22:29 2024 +0200

    Fix main-search.liquid

commit 948d4bc99eb3d3f3b0b15db6d99a2743575c8721
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 17:22:09 2024 +0200

    Reapply "Squashed commit of the following:"

    This reverts commit 59c65606a3c6c7e3deb6f39665970ab268bde676.

commit 59c65606a3c6c7e3deb6f39665970ab268bde676
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 17:12:54 2024 +0200

    Revert "Squashed commit of the following:"

    This reverts commit 813a53173e07bc8e2b01802db4e98ae354e0201f.

commit 813a53173e07bc8e2b01802db4e98ae354e0201f
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 17:09:07 2024 +0200

    Squashed commit of the following:

    commit 28b21ab2f50b949d34229db14a990adbcdc04f27
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Fri Jul 26 17:09:58 2024 +0200

        Revert a small tweak that wasn't necessary and a reference to the product (#3573)

    commit a723f144d4627e6d113d1f688d72707f78782cb2
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Thu Jul 25 18:10:16 2024 +0200

        Show default price for placeholder content (#3572)

        * Make sure a default price is shown when we're showing placeholder content

        * address review comments

        * update one more spot to use the new variable

    commit 3fac8400efb50c97afeb230e2076632884f7832b
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Wed Jul 24 11:21:38 2024 +0200

        Update 1 translation file (#3569)

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 7a0f6e95fe2c3e204fe2ae2d29f01790071f0ce7
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Thu Jul 18 11:00:31 2024 -0400

        Escape product variant option names, as they can include quote characters and this renders undesirably. (#3567)

    commit 544c61eb0bef54d0a7ccab4d79cf09fc81ef0212
    Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
    Date:   Mon Jul 15 09:45:20 2024 -0400

        Fixed issues when header is hidden (#3545)

        * Fixed issues when header is hidden

        * Fixed predictive search on search page

        * Made it so that the drawer still shows up

    commit 80717145c48825433df26a63ed61ed25ebc66889
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Tue Jul 9 10:52:09 2024 +0200

        Update 3 translation files (#3557)

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 51205de2d7ca9b6f692355ab352c8a1942d81ff6
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Fri Jul 5 20:08:49 2024 +0200

        Update release notes and version number (#3554)

    commit 099305756d8c75f5c8fa54d54bdbeb0de6d1b2a1
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Fri Jul 5 11:40:07 2024 -0400

        v15 fixes (#3547)

        * [Product] Zoom on hover fix on variant change (#3511)

        * Zoom on hover fix on variant change

        * add conditional

        * Add early return in updateQuantityRules function if no quantity selector is present (#3515)

        * Fix bug where request url contains duplicated params when switching before the prior response is returned (#3521)

        * Fixes bug where image flashes when switching to variant with the same featured image; fixes bug where variant without featured image would fallback to the product image (#3516)

        Fix issue with thumbnail not updating

        * Fixed bug when reading selected option values. Removed unused script tag containing variant json. (#3520)

        * escape titles that weren't (#3514)

        * Support multiple product templates for the same combined listing (#3526)

        * Updated quick order list to rely on the variant title field (#3528)

        * Release15fix (#3531)

        * Revert "Update from Shopify for theme dawn/release/15.0.0"

        This reverts commit 5b20d897767f48370d6fba9ecefa5aeb97a6902b.

        * Revert "Update from Shopify for theme dawn/release/15.0.0"

        This reverts commit f0b822dbeaa934ecbb6f02704194b5dfef381f3f.

        * Revert "Update from Shopify for theme dawn/release/15.0.0"

        This reverts commit 64e1d8ef792fb4a2f95ae258b7250813d23b7bca.

        * Revert "Update from Shopify for theme dawn/release/15.0.0"

        This reverts commit a8a7529234296fe6313ea2ed5b1dcf187fef4408.

        ---------

        Co-authored-by: Ludo <ludo.segura@shopify.com>
        Co-authored-by: Arthur <48017311+Roi-Arthur@users.noreply.github.com>
        Co-authored-by: Lars Hoffbeck <lars.hoffbeck@shopify.com>
        Co-authored-by: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>

    commit 77459d42316b78a827cae9ba9fee8b8e8e928c7b
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Wed Jul 3 16:09:15 2024 +0200

        switch to textContent (#3544)

    commit 64952383e78eae6f73ccb2abcd3a7614f2f5b5a2
    Author: Mateusz Krzeszowiak <mateusz.krzeszowiak@shopify.com>
    Date:   Fri Jun 7 16:11:13 2024 +0200

        Limit the number of stylesheets on the page (#3509)

        * Limit the number of stylesheets on the page

        * Apply suggestions from code review

        Co-authored-by: Ludo <ludo.segura@shopify.com>

        * Improve the logic and wording a bit

        ---------

        Co-authored-by: Ludo <ludo.segura@shopify.com>

    commit 4b7a19bf026e6b7da2b8b836770c25e9914fb40d
    Author: Kjell Reigstad <kjell@kjellr.com>
    Date:   Fri Jun 7 08:31:49 2024 -0400

        Standardize heading font size options, add larger size (#3498)

        * Add gigantic heading size.

        * Use global translations in multirow.

        * Standardize heading font size offerings.

        * Change "Gigantic" to "Giant"

        * Set line height for new font size.

        * Update 10 translation files

        * Decrease Giant font size, update line height too.

        * Define line height for hxl.

        * Fix incorrect reference.

        * Set large line height to 1.1 all the time.

        * Adjust `vw` value in clamp so that the Giant font size is always larger than the Extra Large.

        * Change string to "Extra Extra Large"

        * Change text case.

        * Update 13 translation files

        * Update 4 translation files

        * Update 2 translation files

        * Update 1 translation file

        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 7a917b850b32a96bf47de9829a431998e0e13143
    Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
    Date:   Thu Jun 6 11:57:37 2024 -0400

        Changed show policy default to true (#3470)

    commit 0e20f98ac210b9cc9c681acf64adeab391b27c16
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 11:22:59 2024 -0400

        Dedupe quick add modal option value ids (#3504)

        * Deduplicate the option value IDs after option value selection changes in quick add modal

    commit 1c092851646bd0d1c1dfa853a4c5e81095bcddd2
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 11:16:08 2024 -0400

        Migrate featured product template to use structured data filter (#3507)

    commit ff1789e88029509fa59032a37c3b2608ca129efa
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 11:15:49 2024 -0400

        Update request url and handlers to support featured products (#3497)

    commit e4dddd056c0f07607928f7cce0d6d89b5bb74247
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 08:11:46 2024 -0400

        Update variantselects to publish an option value selection change event instead of a variant change start event, defer variant info until section rendering API request comes back (#3495)

        Only update media when the selection has an associated variant

    commit f85cd247a0f55a1ddf0da78a363a3fb5c4c4df5e
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 08:09:20 2024 -0400

        Set thumbnail when variant selection changes (#3505)

    commit 8616c24452deb7c16168343777bb392d6eae081e
    Author: Joey <joeyg.tedeschi@gmail.com>
    Date:   Wed Jun 5 15:55:12 2024 -0400

        Create CSS variables to support the base-focus focus-visible properties, to be injected into components not naturally on the DOM (#3503)

    commit 6e3f3c6adf5018b1e59759fc8c1e6c5469df0d48
    Author: Michael Bottens <mtbottens@gmail.com>
    Date:   Wed Jun 5 11:47:46 2024 -0400

        adds theme toggle for avatar widget to allow opt-out without code change (#3496)

        * adds theme toggle for avatar widget to allow opt-out without code change

        * resolve spacing differences when account-icon is present in the DOM

        * Update 15 translation files

        * Update 5 translation files

        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 8cadefd7b5ee91ca0e5afa62263dce0f5f0fcd8e
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Tue Jun 4 10:32:08 2024 -0400

        Quick add modal fixes for Desktop (#3488)

        * Centre 'view cart' label in quick add modal.

        * Remove extra spacing at the bottom of quick order modal.

        * Fix the extra underlined space between the 'view full details' text and the arrow.

        * Make the product title a link to the product page.

        * Tweak breakpoints for consistently when the viewport is exactly 989 or 990 px wide

    commit faa9caf193a5f20474ac800621637f581cf1b5c8
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Tue Jun 4 10:16:11 2024 -0400

        🐛 Combined listings bugfixes (#3492)

        * (#3492) Fix volume pricing message jumpiness when switching between combined listings; update page title when switching between combined listings; fix unselected option value bug in Safari

        * Update ID deduplication for quick add modal

    commit 83527586708e7fa0bdd713d86761f9390abd9569
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Mon Jun 3 13:03:53 2024 -0400

        Add an out of stock note for quick add bulk, like the one for quick add standard. (#3487)

    commit abbf0ddec98a1141975691b2d9c3b4cb0d774970
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu May 30 11:49:01 2024 -0400

        Updates Dawn to use the new structured_data filter (#3380)

        * Updates Dawn to use the new filter

        * Add support for article structured data

    commit 99d918855166e67753b726a9e4854ae49cc01dcd
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu May 30 09:07:25 2024 -0400

        Dedupe IDs when replacing content (#3494)

        * Dedupe IDs when replacing content

        * Dedupe form attributes

    commit 651d170ec6b8d086816c4d497f4bc20ff705913f
    Author: Donn Pasiliao <dpasiliao@gmail.com>
    Date:   Wed May 29 16:18:36 2024 -0400

        Use translation keys for default values in liquid files (#3484)

        * Use translation keys for default values in liquid files

        * Update 10 translation files

        * Update 10 translation files

        * Update 10 translation files

        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit bcd18508cf3d4e46c34e1301afe2e381658da20e
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Tue May 28 16:50:55 2024 -0400

        [Quick Order List] Ensure variant id is converted to an integer (#3491)

    commit ecdc76b348b1a847a4edf4c25e4150d4a908eb82
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Tue May 28 14:19:51 2024 -0400

        (#3289) This PR adds a product wrapper class by repurposing the existing product-info class and migrating product-update specific logic out of the VariantSelects class. A product wrapper enables children to more trivially perform global updates by providing a heirarchical "namespace"--i.e. child publishes event, parent captures and declaratively updates other children VS child updates siblings. By extracting the VariantSelects onChange logic to use this pattern, VariantSelects is able to be a single-purpose class, it is easier to understand why siblings are updated, and we were able to eliminate some really gross logic that handled variant change updates differently depending on the wrapping context. (#3289)

        Refetch entire page on product swap

        Remove unused unsubscriber function

        Stability improvements for quick-add modal

        PR feedback - fixed padding + minor tweaks

        Un-privatize class methods for consistency with the rest of Dawn

        Move css to be in section-main-product.css

    commit aa4353a5b25f238aebcbd38d864e744bd095559f
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Tue May 28 10:32:41 2024 -0400

        Quick Add Bulk Modal - Increase performance with Intersection Observer and clean up network requests (#3480)

    commit 091a371be1a94a2705086fd818d560585f52f6f3
    Author: Logan Gunn <44077842+lgunn4@users.noreply.github.com>
    Date:   Fri May 24 09:32:13 2024 -0400

        Added duties inclusive text to PDP and Cart page (#3475)

        * Added duties inclusive text to PDP and Cart page
        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 89472efdd57f6732e2898a16f512f74d2f23fcee
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Thu May 23 11:17:46 2024 +0200

        [Product] fix product modal not showing variant image (#3483)

        * fix product modal not showing variant image

        * reuse existing const var as per feedback

    commit a2f5a98d22b581d10207c531a87ab57d12b07919
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Wed May 22 16:06:33 2024 -0400

        Combined listings and 2k variants (#3378)

        * (#3378) Add support for combined listings and 2k variants

    commit 080ff5b3c01d8b167977fcf5aab1938d5f51d78e
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Fri May 17 16:54:54 2024 +0200

        Update 1 translation file (#3472)

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit a4e898d7b4216cbb21323324e7dae1b9bb7e703a
    Author: Logan Gunn <44077842+lgunn4@users.noreply.github.com>
    Date:   Wed May 15 14:27:19 2024 -0400

        renamed regional locales to default (#3473)

    commit 636b6b756b06cb9760673ebe60c73a34dd514614
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Wed May 15 11:50:47 2024 -0400

        Add qty rules client side validation to cart (#3471)

    commit f5e55665d6943350badc8acf493be8939a5ef745
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Mon May 13 16:18:01 2024 -0400

        [Quick Add Bulk] Don't block quantity input during cart API call (#3461)

    commit db146ef798eb97467b193508b0167abed041cca5
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Fri May 10 09:53:26 2024 -0400

        Update 1 translation file (#3468)

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit c67c83387ba7b654e8f4cca683727d14c06b5c5c
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Thu May 9 16:36:12 2024 +0200

        prevent vertical overflow on slideshow (#3455)

    commit 27d2d84b05b28385db0374aa1b07ec2cedd0be2a
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Thu May 9 16:30:02 2024 +0200

        Version 14 bump and release notes (#3466)

    commit e5e08d71ba92f4788fbcacff020fab1f8c080c44
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Thu May 9 08:59:29 2024 -0400

        Update settings.json to add missing validation (#3464)

    commit 85b75b0aea3ce2ea81bf4e81d2e001528772de73
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Mon May 6 16:07:19 2024 -0400

        [Fix] QOL Cart race conditions (#3395)

    commit 55d2d5cfc372ee25ce3cab850bd0f43610fcf712
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Mon May 6 17:09:38 2024 +0200

        Fix variant media not changing in the quick add modal (#3451)

        * Fix variant media not changing in the quick add modal

        * update approach based on review's feedback

    commit d627f2160527792efffadc83c749080507772767
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Fri May 3 09:16:09 2024 -0400

        Override the ::after element for variant images in the quick add modal and quick order list to remove shadows. (#3449)

    commit ba521944671204efcee199c3b53b9ce7b8b3dac5
    Author: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
    Date:   Wed May 1 14:13:21 2024 -0400

        Allow searching for country names with diacritics (#3443)

    commit eefc111956b28151a931e900898312be4127fb50
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Wed May 1 11:50:16 2024 -0300

        Update translations: merchant (#3438)

        * Update 1 translation file

        * Update 8 translation files

        * Update 1 translation file

        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 3f4284a1284c7c2bf3708a2f9f3c5a3bd69d0597
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Wed Apr 24 15:29:50 2024 -0400

        Release/14.0.0 duplicate (#3436)

commit f73839893e0925d8bb9f0ba69cc536844144e46c
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 16:56:45 2024 +0200

    Squashed commit of the following:

    commit 8cc621b02d92f7d8cd23c00ae6ff62c533256e14
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:14:12 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit 07ac0af70f275b2c374e606caf9735fa3f68a127
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:13:46 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit 1ad54db4310fccdd7cdb8575c56e613b541c9ab5
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:09:16 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit 1f927a880b38164b432010f107956f7b16a771d3
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:07:43 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit c79c8b70530d43d7b48cd4ef7d382cbfa51f4219
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:06:31 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit 45134432942066cf63aae4cf20976a58a3335dad
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Tue Jun 25 00:56:37 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit ab4e573c5741b9db45df71b658e06e223da92679
    Author: Lars Emig <lars.emig@pickware.de>
    Date:   Thu May 30 10:39:41 2024 +0200

        Fix broken translation missing detection

commit f15667434aead26f1aa6231873befdb384b36015
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Wed Jul 31 14:02:09 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit d834fdf7c7eba4748b861362670deba92337285f
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 15 11:11:35 2024 +0200

    Remove old metafield filters

commit 7004c10bde294a13512339600557a15ac6c5a1fa
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 15 10:48:22 2024 +0200

    Use original facets

commit 4db772b1c960a643220536f42840cedb2f2c119e
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 18:36:01 2024 +0200

    Fix

commit d00c799ee1e18ff74d8a340726b28556ef70fb74
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 18:33:45 2024 +0200

    Fix radio button background color

commit 68df26bfabc666824928ee19e4e2a3ec598ad698
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 18:23:48 2024 +0200

    Revert "Update from Shopify for theme dawn-icletta/icletta-dev"

    This reverts commit c8cfe5387fc9244aec079e4762cd8a11504d4d56.

commit c8cfe5387fc9244aec079e4762cd8a11504d4d56
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 16:23:18 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit beb037ab64181937d00e1077e722faa9eae13517
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 16:15:14 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit b93644a019e29a4e3fdb9e820d4096f4f7952a6a
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 16:13:49 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit ccb4d6de5b8545c90746a99d59fa9dac5fc956a8
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 18:12:13 2024 +0200

    Add missing translation

commit 35cb17aee29db9e90c23f3bf04ec4caee94935c2
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 16:06:56 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit 62a9890906602887a410065b4df67b4d53ab9ca8
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 15:57:52 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit 6e0a4b9722a9406ef9f215c07bef68a2be7f13f2
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 15:47:16 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit 549682ff11a21494f26509a35219d79877b04ba0
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 15:41:41 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit f92db8c933bb1307ded4ea326fa0f6c7777707b2
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 17:31:25 2024 +0200

    Fix json

commit 810e6bd315d79591ef54d94789ef99dc65ddacc4
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 17:31:08 2024 +0200

    Add default color schemes

commit 3063ad100981c26e3da87083742070a931418fc2
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:38:22 2024 +0200

    Udate

commit ec3a17c8465c0f938682d93eccb6e80a33c20106
Merge: f4604c52 87da4ff1
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:32:48 2024 +0200

    Merge commit '87da4ff11c74518a8b02b8784d7d37a3a3abf661' into icletta-dev

commit f4604c52df93d001e151e25183cdebfaa9afaf47
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:17:38 2024 +0200

    Revert "Remove all settings"

    This reverts commit 676f511f4e64e36d1e7bbc417313094f8975705e.

commit e607290dd440b201159b79269a103b744b916f3a
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:17:35 2024 +0200

    Revert "Update from Shopify for theme dawn-icletta/icletta-dev"

    This reverts commit a2662a40fc377615c670acfa3462e0018db63533.

commit a2662a40fc377615c670acfa3462e0018db63533
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Thu May 30 08:10:43 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit 676f511f4e64e36d1e7bbc417313094f8975705e
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:08:46 2024 +0200

    Remove all settings

commit dea28231299b23f651934123f0d2370032d8fc4c
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 09:57:24 2024 +0200

    Update settings_schema

commit fdd2eedb9bbecda375ac1b2dbb6c2b81e62e0a20
Merge: 51e5d359 1247c8b4
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 09:08:08 2024 +0200

    Merge commit '1247c8b4f97602a7d11f583ab354b1fe1a260ed0' into icletta-dev

commit 87da4ff11c74518a8b02b8784d7d37a3a3abf661
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Mon Apr 22 13:12:12 2024 -0400

    Modal colour scheme fix (#3432)

commit fb081e00492780089ce39747d284af5b55808633
Author: Dan Menard <dan-menard@users.noreply.github.com>
Date:   Fri Apr 19 15:30:40 2024 -0400

    Restore standard quick add to complementary products (#3430)

commit 9bd88c3a42c41d3c9c4ea8f51ab1033f52ae662d
Author: Ludo <ludo.segura@shopify.com>
Date:   Fri Apr 19 12:38:58 2024 -0300

    [Prod page] Add check to prevent errors if no feat. image exists (#3429)

    * Add check to prevent errors if no feat. image exists

    * remove redundancy

commit 6a40bba529c0a49262408fcdeb68cc190c2193f2
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu Apr 18 15:00:27 2024 -0400

    Add optional chaining to prevent JS error (#3428)

    Added optional chaining to setActiveMedia call

commit 591d2915669ce27f0001ecc8f8814273a1df4e50
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Thu Apr 18 10:04:26 2024 -0400

    [Fix] quick add bulk disabled state (#3423)

commit b2b5883ea644b2746c951364849df849646806a7
Author: Ludo <ludo.segura@shopify.com>
Date:   Wed Apr 17 05:34:39 2024 -0300

    run linter in updates files for the latest release (#3422)

commit c51b4be43917bef193a5ab75a9b0ac6ed2132f07
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Mon Apr 15 18:06:09 2024 -0400

    Fix selector for Quick Add Bulk (#3421)

commit ce39a3c05d6ef90b2451c67737ee0f058a318602
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Thu Apr 11 11:15:05 2024 -0400

    Update 1 translation file (#3405)

commit 0d8c306f0ff4b84385100faec64bcc4118b64ec3
Author: Michael Bottens <mtbottens@gmail.com>
Date:   Thu Apr 11 09:36:12 2024 -0400

    Adds eligibility check to prevent orphaned DOM from rendering (#3412)

commit 9fd29b2254ce0f1b33867ebbd3a070c313d44f91
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Wed Apr 10 09:45:45 2024 -0400

    Fix padding for popover product card spacing mobile and cart popover media query (#3410)

commit b8f8b9c4b3f4f220eb9805be05b5bd44d6d2b99d
Author: Kjell Reigstad <kjell@kjellr.com>
Date:   Tue Apr 9 15:59:00 2024 -0400

    Allow proper vertical axis alignment of text in the Image Banner (#3402)

    * Remove left/right padding for transparent banner_box.

    * Fix padding on mobile as well.

commit 2061f4f636a46279e76b5db84899814cf4dc93b9
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Apr 9 15:55:04 2024 -0400

    Fix indent of line (#3409)

commit 7eb51b755f8bbb2ef0e1d1d93db746ce6b9b1e9d
Author: Dan Menard <dan-menard@users.noreply.github.com>
Date:   Tue Apr 9 15:48:19 2024 -0400

    Add min/max values for single-variant products with quantity rules in Quick Add (#3408)

commit 089b8d04e38f3aef05e45988e4064d653f60f6b6
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Apr 9 07:53:42 2024 -0400

    Popover Quick Add Bulk enhancements (#3403)

commit 98211ba98df2286ac07eeb61b30b059db806d964
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Fri Apr 5 16:03:33 2024 -0500

    Update translations: #3390 (#3397)

    * Update 13 translation files

    * Update 2 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Sofia Matulis <sofiamatulis@users.noreply.github.com>

commit 784ccd2055f8e61ed482594010ee61a6ace06265
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Fri Apr 5 16:18:57 2024 -0400

    Fix width of popover in product card (#3398)

commit 34ec5b9cb006dab8e08b86fc27b13c3cedf8d520
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Fri Apr 5 10:50:56 2024 -0400

    Add Volume Pricing and Qty Rules Popover to Quick Add Bulk Input (#3393)

commit 5ad5d4436e0691306e9ca882e46ca9f15d71b5e4
Author: Quinton Chester <quinton.chester@shopify.com>
Date:   Thu Apr 4 11:13:07 2024 -0500

    Adds Shop Login Button liquid drop provider on login template (#3390)

    * Adds Shop Login Button liquid drop provider on login template

    * Update 20 translation files

    * Update 9 translation files

    * Update 4 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 1b34f48a81f9e9618b8c63c438020eaa17c3f858
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Wed Apr 3 10:21:22 2024 -0400

    Add disabled state to Quick Add Bulk (#3391)

commit 8c82f064b76ccdd514bf218aec8fa21fe7b4fc73
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Wed Apr 3 10:16:20 2024 -0400

    Fixed minor bug with multicolumn padding (#3375)

    * Fixed minor bug with multicolumn padding

    * nicer code organization

commit bb1e198c6fe6e6c0b81e6ef13518f4055fe07846
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Wed Apr 3 09:24:41 2024 -0400

    Changed max products per page to 36 (#3384)

commit 8b1099bba78ffe295358881a4b701a495c700f8c
Author: Michael Bottens <mtbottens@gmail.com>
Date:   Tue Apr 2 16:53:29 2024 -0400

    Add customer avatar (#3376)

commit 3c99075b1a88acf937e0842b0d96849b634f67ec
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Apr 2 13:00:31 2024 -0400

    [BUG] Fix pagination for Quick Add bulk on section rendering api (#3382)

commit e48852177a1dcbf0c0cf476ef9125592d67cfe21
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu Mar 28 16:25:51 2024 -0400

    Revert "Support Combined Listings and 2k Variants (#3246)" (#3377)

    * Revert "Support Combined Listings and 2k Variants (#3246)"

    This reverts commit a2c6f54c28bb705f64305bb2227fcf07ff64e027.

    * Revert stylelint changes

commit 2bf1bf78913d08f5ce44bc35569ed85400fad5b6
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Thu Mar 28 16:18:31 2024 -0400

    Quick add bulk bug fixes (#3374)

commit 889e2a08a6bdb452381a07cd9bcd5088e1018be6
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Mar 26 15:48:21 2024 -0400

    Quick Add bulk (#3217)

commit ee4cacb7ea3383d04baaa68ea304a985bc9848fc
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Mon Mar 25 16:20:45 2024 -0400

    Fix  qty rules when there is no max set (#3356)

commit 6b8535826a6a311fea4260827fb9ae256411f1ce
Author: Donn Pasiliao <dpasiliao@gmail.com>
Date:   Mon Mar 25 10:54:12 2024 -0400

    Increase max columns from 5 to 6 (#3367)

commit 35e21a76d15d9d50241e6b8b4ea872399a9abb12
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Thu Mar 21 13:02:02 2024 -0700

    [Quick Order List] Remove the keyboard interaction feature on mobiles (#3358)

    * Cut the keyboard navigation feature for mobile

    * Rename variable

    Co-authored-by: Sofia Matulis  <sofiamatulis@users.noreply.github.com>

    * Change variant name

    ---------

    Co-authored-by: Sofia Matulis <sofiamatulis@users.noreply.github.com>

commit a2c6f54c28bb705f64305bb2227fcf07ff64e027
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Tue Mar 19 10:23:22 2024 -0400

    Support Combined Listings and 2k Variants (#3246)

    * Updated option value picker to use product_option_value.variant, update availability handling to rely on async variant pagination

    Removed old event handler, update buy-buttons to handle selected_variant undefined case

    Fix for cases where selected_or_first_available_variant is null

    Only pass variant if present

    Fix JS error where param wasn't being passed to callback

    Added support for duplicated option names in option value picker and swatches

    Fix misnamed function in quick order list

    Add parent option values to quick order list

    Fix JS error if active media is not found

    Fix mismatched unsubscriber function name

    * fix bad merge

commit 74595afbfd1845d1ecdf01592a65cb0a317e97a7
Author: Lars Hoffbeck <larshoffbeck@gmail.com>
Date:   Mon Mar 18 16:58:21 2024 -0400

    Simplify `product-media-gallery` snippet and consumers (#3233)

    * Simplify featured product to use the same media gallery snippet as main-product, simplify product-media-gallery, simplify main-product

    Updated CSS to fix overflow issue on mobile browsers

    * Set images with the network response instead of by rendering hidden images

    * Removed unnecessary assignment

    * Update media refresh handling to minimize rerenders

    * Tweaks to fix JS error and modal content not updating when switching away from a variant with a featured image

    * Removed dead code

    * Update fallback selector

commit eb4bc418f0469618972e7e912e538dbc174d73c7
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Mar 18 09:13:12 2024 -0400

    Update 1 translation file (#3346)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit b10f3120e032f7f6ad8129e1c1790b513945572f
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Fri Mar 15 16:40:05 2024 -0400

    Changed price filter to use text input (#3280)

    * Changed price filter to use text input

    * Removed stepping and enabled all meta key inputs

    * Turned price filter into a snippet to remove duplicate code

    * Removed need for nbsp, added escape and apostrophe, slightly changed debounce delay

    * Retain focus in text inputs

commit 609435aec4b9bc5d7dc1a601f9a0ff4101e66039
Author: Lars Hoffbeck <larshoffbeck@gmail.com>
Date:   Fri Mar 15 16:16:13 2024 -0400

    Removed noscript and IE-specific code (#3245)

    Removed no-JS requirement from the contribution guidelines

    Remove CSS and no-js-only HTML

    add JS class to <html>

    remove noscript css selectors

    Update README

commit f907e3d7858abc9482aa36a76531b9f7dc9e0b97
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Fri Mar 15 14:29:58 2024 -0400

    Change size of swatch on mobile (#3348)

commit 5a332f55f55d111f2ff22bac907a8005bbacb74d
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Thu Mar 14 11:39:01 2024 -0400

    Add image filters and do UX tweaks for swatches (#3334)

    * Add image filters and do UX tweaks for swatches

    * Andy PR changes

    * Change how default presentation is set

commit d1a69392965a8839460c5a70393cdfd9b386303b
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Tue Mar 12 12:47:40 2024 -0700

    [Quick Order List] Clean and reset qty errors (#3321)

    * Clean errors

    * Move cleanErrors() to onChange()

    * Move cleanErrors to make sure it runs when you click trach icon

commit 93935239f634eaa99636f161df15fc8d42ba2c16
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Tue Mar 12 14:11:17 2024 -0400

    Update 1 translation file (#3316)

commit 6e45a2b59e5c5bdd5367c32a0a46384f3546b9f8
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Tue Mar 12 10:41:42 2024 -0700

    [Quick Order List] Fix an issue for one-variant product (#3332)

    * Fix QOL for one variant product

    * Move total bar position logic inside an if condition

commit afa073abd018f78e1b9883dd1fba1b5364b1e28a
Author: Kjell Reigstad <kjell@kjellr.com>
Date:   Mon Mar 4 14:59:25 2024 -0500

    Update twitter icon to the new X logo (#3309)

    * Update twitter icon to x logo.

    * Refine X logo

    * Update label and info text.

    * Remove strokes from icon, use currentColor

    * Update text strings to reflect Twitter's new name.

    * Update en.default.json

    * Update 20 translation files

    * Update 14 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 5 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 24a8cd020443b9e77d19aaac2b3aa36b86c4b20f
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Thu Feb 29 17:17:41 2024 -0400

    Update 1 translation file (#3311)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit d585fa542758657cb62f89ff9e5ccb6265c2b57e
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Thu Feb 29 13:59:59 2024 -0400

    Update 1 translation file (#3310)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 1d047b92d76cb6fe81f6b4c957588070abcc1310
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Thu Feb 29 09:55:42 2024 -0800

    Quick order keyboard interactions (#2962)

    * Add basic functionality.
    Add placeholder.
    Make a row rerender instead of the whole section.

    * Style placeholder

    * Fix removeAll button

    * Remove comments and unnecessary code.

    * Remove debouncing.

    * Remove placeholder for input

    * Add selection on focus for inputs

    * Move eventListener to a parent element

    * Put debouncing back

    * Refactor switchVariants method

    * Refactor allInputs array

    * Remove unnecessary input placeholder

    * Fix typo

    * Refactor variants names

    * Remove unused prop

    * Put back prop 'name' for updateQuantity

    * Refactoring

    * [Quick Order List] Prevent selected inputs being covered by total bar or header (#3278)

    * Prevent input elements going under total bar or sticky header during keyboard navigation.

    * Fix a typo

    * Refactoring

    * Increase z-index for volume pricing popup

    * Fix conflicts after merge

commit 88faef38515390ab02f58bd27795df7fbd4621c9
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Wed Feb 28 15:15:50 2024 -0500

    Switch the filter swatches to use the swatch api (#3303)

    * Switch swatch filters to use swatch API

    * Rename to facets__label

commit bfae862567c415a112104d41e64d57bdca3252f8
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Tue Feb 27 11:08:48 2024 -0500

    Bring back swatch-input snippet (#3299)

    Additional changes

    Update styles

    PR fix

    Bring back disabled, just in case

commit 0f1bd0a04199a3f6ac59e1375cfd5ad6025801c4
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Tue Feb 27 11:11:19 2024 -0400

    Update 1 translation file (#3302)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 76152c54e5d20dae7ccf5962f543a7fc9bd7c845
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Feb 26 15:18:44 2024 -0400

    Update 1 translation file (#3298)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 53a287261a26e5d0013e7df08d6346f4c963f04b
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Feb 26 09:20:51 2024 -0500

    Update 1 translation file (#3294)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit c5ba94b19e6ffe804ad0c2ebe1d03257df0f1ba7
Author: Ludo <ludo.segura@shopify.com>
Date:   Fri Feb 23 13:39:21 2024 -0400

    Pull in latest release 13.0.1 (#3292)

    * Fix translation path (#3198)

    * Change product variant swatches' border color (#3204)

    * change color reference

    * remove character

    * increase to meet contrast ratio of 3

    * Update swatch setting info text (#3205)

    * Update info text

    * remove duplication

    * add space

    * clean up language and association

    * add to second place

    * Update 9 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * [Quick order list] Change 'plural' string to 'singular' when removing '1 item' on 'Remove all' confirmation (#3203)

    * Change the message when removing only one item from the QOL

    * Update 20 translation files

    * Update 6 translation files

    * Update 4 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Fix drawer stylings (#3248)

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Pull update from release branch and update version number and release notes (#3229)

    * Fix translation path (#3198)

    * Change product variant swatches' border color (#3204)

    * change color reference

    * remove character

    * increase to meet contrast ratio of 3

    * Update swatch setting info text (#3205)

    * Update info text

    * remove duplication

    * add space

    * clean up language and association

    * add to second place

    * Update 9 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * [Quick order list] Change 'plural' string to 'singular' when removing '1 item' on 'Remove all' confirmation (#3203)

    * Change the message when removing only one item from the QOL

    * Update 20 translation files

    * Update 6 translation files

    * Update 4 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * update version number and release notes

    ---------

    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>

    * Update 1 translation file (#3232)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Fix cart drawer header background and cart note summary spacing

    * more cart drawer touch ups

    * remove some of the unwanted changes

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>

    * fix missing alt tags for collection images (#3262)

    * Update titles (#3265)

    * Condense country selector width when there are no currencies (#3269)

    * Recreate existing PR based on the right branch (#3274)

    * Fix product review alignment when product doesn't have medias (#3264)

    * Fix product review alignment when product doesn't have medias

    * Add the escape to match with branch target

    * Touch up scroll into view PDP (#3276)

    * Fix mobile behaviour for scroll into view

    * remove conditions

    * remove unused data attribute (#3277)

    * Remove sticky header on cart drawer to avoid overlap of content (#3279)

    * fix scrolling scenario on mobile (#3286)

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Pull update from release branch and update version number and release notes (#3229)

    * Fix translation path (#3198)

    * Change product variant swatches' border color (#3204)

    * change color reference

    * remove character

    * increase to meet contrast ratio of 3

    * Update swatch setting info text (#3205)

    * Update info text

    * remove duplication

    * add space

    * clean up language and association

    * add to second place

    * Update 9 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * [Quick order list] Change 'plural' string to 'singular' when removing '1 item' on 'Remove all' confirmation (#3203)

    * Change the message when removing only one item from the QOL

    * Update 20 translation files

    * Update 6 translation files

    * Update 4 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * update version number and release notes

    ---------

    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>

    * Update 1 translation file (#3232)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Update README.md (#3128)

    * Update README.md

    * fix url formatting

    ---------

    Co-authored-by: Ludo <ludo.segura@shopify.com>

    * Fix Theme Check offences (#3283)

    * Fix schema JSON formatting

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * Add loading=eager attribute to gift card page img

    * Use liquid tag to combine successive liquid statements

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * Remove snippet to avoid > 3 levels of nested snippets

    * Ignore AssetPreload theme check for font links

    ---------

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * update release notes

    ---------

    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
    Co-authored-by: Renan Souza <77407058+renanvsouza@users.noreply.github.com>
    Co-authored-by: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
    Co-authored-by: Benjamin Sehl <ben@sehl.ca>
    Co-authored-by: Kai <KaichenWang@users.noreply.github.com>
    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

commit a42f2349fe36127e7d89d449e469742d22e1f2e2
Author: Kai <KaichenWang@users.noreply.github.com>
Date:   Fri Feb 16 16:14:22 2024 +0000

    Fix Theme Check offences (#3283)

    * Fix schema JSON formatting

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * Add loading=eager attribute to gift card page img

    * Use liquid tag to combine successive liquid statements

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * Remove snippet to avoid > 3 levels of nested snippets

    * Ignore AssetPreload theme check for font links

    ---------

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

commit 9309102f80eb9f08069e35daf376aea9f6667b20
Author: Benjamin Sehl <ben@sehl.ca>
Date:   Wed Feb 7 14:21:03 2024 -0500

    Update README.md (#3128)

    * Update README.md

    * fix url formatting

    ---------

    Co-authored-by: Ludo <ludo.segura@shopify.com>

commit 7aa16a8da85849ff5b24ba80020d6540a55ef08c
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Feb 5 10:23:49 2024 -0400

    Update 1 translation file (#3232)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit c77ebf5e86756831e1bc85cc24881ea8ae9eca98
Author: Ludo <ludo.segura@shopify.com>
Date:   Wed Jan 31 14:15:25 2024 -0400

    Pull update from release branch and update version number and release notes (#3229)

    * Fix translation path (#3198)

    * Change product variant swatches' border color (#3204)

    * change color reference

    * remove character

    * increase to meet contrast ratio of 3

    * Update swatch setting info text (#3205)

    * Update info text

    * remove duplication

    * add space

    * clean up language and association

    * add to second place

    * Update 9 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * [Quick order list] Change 'plural' string to 'singular' when removing '1 item' on 'Remove all' confirmation (#3203)

    * Change the message when removing only one item from the QOL

    * Update 20 translation files

    * Update 6 translation files

    * Update 4 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * update version number and release notes

    ---------

    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>

commit 436e1045db73d1dec121dc4f1151984fab516c86
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed Jan 24 10:17:33 2024 -0400

    Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit b700fc970ac5a7499c967995b4c20c7c0716a8af
Author: Ludo <ludo.segura@shopify.com>
Date:   Mon Jan 15 15:17:54 2024 -0400

    Escape filter label consistently (#3192)

commit bfa56e0607a924eb5d1a10e5dd8a00ad399ce36e
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Mon Jan 15 12:13:23 2024 -0500

    [Variant Picker] Simplify swatch settings (#3189)

    * [Variant Picker] Simplify swatch settings

    * Update 7 translation files

    * Update 12 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 767f62f5b5641be1182c1400e2f21fd5a52c6464
Author: melissaperreault <melissa.perreault@shopify.com>
Date:   Fri Jan 12 11:57:15 2024 -0500

    change to 100% (#3190)

commit 27e62053d02bd5d815699986ebc38fb66cf1fb73
Author: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
Date:   Thu Jan 11 12:45:58 2024 -0500

    Prevent sticky header from hiding when country selector is open (#3188)

commit bfd5e92579c917058b0ea6463e375907f0ac130c
Author: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
Date:   Wed Jan 10 16:05:10 2024 -0500

    Focus search on country selector open and fix iOS bug (#3183)

    * Focus search on country selector open

    * Set stacking context

commit 97bca2e8d4ce725a5403fdae7d7d7da84fcd4499
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Wed Jan 10 15:05:00 2024 -0500

    [Variant Picker] Ensure that swatches wrap correctly (#3185)

commit e43316035f75f5f9b73f93884b5457151e60716a
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed Jan 10 15:52:55 2024 -0400

    Update translations: merchant (#3178)

    * Update 1 translation file

    * Update 1 translation file

    * Update 2 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 0de57d445a74c4e388065c2c781a43c8fca32352
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Wed Jan 10 14:29:11 2024 -0500

    Update swatch border (#3184)

commit 05e61a33d45358b09b85a089e0dd1b19109320c9
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Tue Jan 9 17:01:43 2024 -0500

    [Variant Picker] Add swatch display type (#3180)

    * [VariantPicker] Unify variant selects and radios under new component

    * [VariantPicker] Add swatch settings

    * [VariantPicker] Move styles to dedicated CSS file

    * [Variant Picker] Update settings copy

    * [VariantPicker] Add swatch component

    * [VariantPicker] Add a swatch to selected dropdown option

    * [Variant Picker] Update disabled state

    * [Variant Picker] Swatch snippet

    * [Variant Picker] Swatch input snippet

    * [Variant Picker] Tweak swatch border colors

commit e6a8f03e213fb5cb318428ffe556264f27962389
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Tue Jan 9 16:14:00 2024 -0500

    Adjusted Featured Collection placeholders to work with any number of desktop columns (#3182)

    * Adjusted featured collection placeholders to work with any number of desktop columns

commit 8ef242b994ddf8e2ba6e10e0521230e0b74bfee6
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Mon Jan 8 13:52:47 2024 -0500

    Changed slider to work on tablet for multicolumn (#3176)

    * Changed slider to work on tablet for multicolumn

    * Adjusted to prevent early cutoff on tablet

commit 57d21dfc1b08311f62299032f38a2e469d47df3e
Author: CP Clermont <cp.clermont@shopify.com>
Date:   Mon Jan 8 11:56:01 2024 -0500

    Bring back the lighthouse-ci-action to v1 (#3181)

    This will make sure new releases are automatically used.

    Better for forks as well.

commit 0e9938c2ec22a519b4feb0545da88892611827a9
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Fri Jan 5 16:08:27 2024 -0500

    [Variant Picker] Update settings copy (#3173)

commit 144ba4b4f7723a981884180a6785a73d9a145e46
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Fri Jan 5 16:35:15 2024 -0400

    Update 1 translation file (#3177)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 9e6f6ca40852fb8a00a4941ff46ddf19047880b8
Author: Kjell Reigstad <kjell@kjellr.com>
Date:   Fri Jan 5 14:43:20 2024 -0500

    Update inline quantity error styles. (#3150)

commit b1696f1b460dae8dc4f618e5af2fe36ef68bbd45
Author: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
Date:   Fri Jan 5 12:42:35 2024 -0500

    Improved country selectors (#3175)

    Original PR with review comments -> https://github.com/Shopify/dawn/pull/3135

commit 9376e598614b19878be99f09200745162d104f4d
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Thu Dec 21 12:02:43 2023 -0500

    [Visual Display] Display accurate filter colors when high contrast mode is enabled (#3165)

commit 1ac327ac06142a335c4938c8cd02a823d2f91d64
Author: Louisa Goncharenko <93098869+lougoncharenko@users.noreply.github.com>
Date:   Wed Dec 20 13:20:00 2023 -0500

    Applied image shape and ratio to placeholder images (#2817)

    added classes and styles to get image shape and image ratio working

    added styling on portrait placeholders

    aligned placeholder when in potrait mode

    applying code review suggestions and removed image-ratio

commit 19f68280177e56b37744e8ea7cece7c869b41087
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed Dec 20 09:39:26 2023 -0500

    Update 2 translation files (#3160)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 41e4604a808746a012b16d9406acda20a73674e3
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed Dec 20 10:30:10 2023 -0400

    Update 1 translation file (#3161)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit cdba06653f0b65d05b18430bdd0d09eb5dd6315e
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Dec 18 09:57:50 2023 -0500

    Update 1 translation file (#3158)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 67b82a7091010caaf2354da4f25788d0e2c503fb
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Dec 18 09:51:21 2023 -0500

    Update 1 translation file (#3157)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 8c2518beaaa3fe07fc61f03ce94b8fac2411d252
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Fri Dec 15 16:19:22 2023 -0400

    Update 1 translation file (#3155)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit fce1573a1ea36ca653582296d4ca70fa0def3a84
Author: Kjell Reigstad <kjell@kjellr.com>
Date:   Thu Dec 14 13:21:44 2023 -0500

    Assign font family to input fields (#2871)

    * Price per item, Popover and global style bugs (#2851)

    * Fix cart submission on Quick Order List (#2868)

    * Social icons: Visual fixes (#2855)

    * Adjust spacing.

    * Facebook + Tumblr icon size adjustments.

    * Update social icon SVGs.

    * Tidy up new icon sizes again.

    * Resize icons.

    * Make spacing slightly smaller.

    * Make icons larger so they're more similar to the old sizes.

    * Remove padding to compensate for extra viewbox space.

    * Try a smaller Twitter icon.

    * Update snapchat icon.

    * Resize social links in menu drawer to 44x44

    * replace translation string to have the translation visible (#2869)

    * B2B compare at price with price range (#2858)

    * Add sale badge and price-range for volume-pricing

    * Add compare_at price to PDP and Feat Prod.

    * Change opacity to 100% for price per item.

    * Update the logic

    * Hide price per item for unavailable variants.

    * Remove margin for dl.

    * Refactoring

    * Correct a mistake in liquid.

    * Change the JS logic back for updating price per item

    * Add compare at to prod card. Add style to compare at

    * Assign font family to input fields.

    * Update assets/base.css

    Co-authored-by: Kai <KaichenWang@users.noreply.github.com>

    * Use the theme's font style + weight in form elements.

    ---------

    Co-authored-by: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
    Co-authored-by: Kai <KaichenWang@users.noreply.github.com>

commit a204f20eb3c25b0c544a41492937b2749c209777
Author: Patrick Racicot <patrick.racicot@shopify.com>
Date:   Thu Dec 14 11:37:04 2023 -0500

    [Facets] support dynamic facet lists (#3123)

commit 2c847245ea3dfec6f248dcbb2dd76c4ceb65c437
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Thu Nov 23 15:02:23 2023 -0500

    Fixed race condition for cart note updates (#3125)

commit b0ba46d4bb716f073e6ddbdc3560517c5c86c53e
Author: Louisa Goncharenko <93098869+lougoncharenko@users.noreply.github.com>
Date:   Thu Nov 9 10:44:17 2023 -0500

    updated code to match new color scheme naming (#2801)

    * updated code to match new color scheme naming

    * removing additional background-1 after rebase

commit ab71c57171bd0d06a037fd8a3c0b47f959385862
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Thu Nov 2 14:12:02 2023 -0400

    Update 1 translation file (#3093)

commit 1247c8b4f97602a7d11f583ab354b1fe1a260ed0
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Oct 31 14:51:55 2023 -0400

    12.0.0 Version Bump and release notes (#3092)

commit f56a6869ba5bd449007e51f9d9c4f0a216c1c4c0
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Oct 31 14:32:41 2023 -0400

    [VisualDisplay] bump the active outline width (#3083) (#3091)

commit a96d0f94b117d8e6bf6d1097c7283f0c45e857ea
Author: Ludo <ludo.segura@shopify.com>
Date:   Mon Oct 23 16:43:57 2023 -0400

    [Product] Add color scheme picker (#3015)

    * [Product] Add color scheme picker

    * support gradient

    * apply background color to be full width

    * address review comments: color scheme applied to quick add modal and lightbox modal

    * add color scheme to product availability drawer and move color settings up

    * fix color classes to work properly with gradients

    * Add support for gradient on modal

    * remove console log

commit c7e455f61078cc200a8486eb168b01575164330d
Author: Ludo <ludo.segura@shopify.com>
Date:   Mon Oct 23 14:15:59 2023 -0400

    [Cart] Add color picker on cart page and in general cart settings (#3021)

    * rebase final final

    * use the update for the loading spinner

    * add color picker for the cart drawer and cart popup

    * fix spacing issues on cart page

    * add gradient support

    * address review comments

    * adjust where the class is added. Fix gradient issue

    * isolation needed for shadow

    * add comment

    * Remove unnecessary isolate

    * use the isolate class instead

commit bc86ac38dcbc3363b2ba30c4d695d65f00ddc603
Author: Ludo <ludo.segura@shopify.com>
Date:   Fri Oct 20 14:22:58 2023 -0400

    [Collection template] Product grid color scheme picker (#3017)

    * [Collection template] Product grid color scheme picker]

    * move color setting up in the list

    * support gradient

commit 168ba32fae2a1c27b6404fd46da0f4235e082699
Author: Patrick Racicot <patrick.racicot@shopify.com>
Date:   Fri Oct 20 13:44:54 2023 -0400

    [Facets] update visual representation of facets operators (#3061)

commit fac0e41c4daf16b1a74fbfe38f0320cc1d4da59b
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Thu Oct 19 18:00:03 2023 -0400

    Add visual representation for filters (#3045)

commit 069c198c18dc8300e7caeb70d86f02b509aafc83
Author: Ludo <ludo.segura@shopify.com>
Date:   Thu Oct 19 08:35:59 2023 -0400

    [Sliders] Regression fix. Apply CSS only when necessary in theme editor (#3070)

    * [Sliders] Regretion fix. Apply CSS only when necessary in theme editor

    * change of approach

    * add comment to explain CSS

commit d50698b3d8ffd06dff31dbf6e6c9c96f8b979509
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Wed Oct 11 08:55:17 2023 -0700

    [Refactoring] Replace loading spinner with snippet (#2996)

    * Change spinner for main-cart-items

    * Change spinner for cart-drawer

    * remove extra div and change classes

    * Replace spinner with snippet for pdp and fead prod

    * Remove unnecessary classes

    * Add comment for snippet

    * Change naming for files and css classes

    * Put back deleted elements

    * Remove unused classes

    * Put back loading-overlay for cases when no spinner

    * Chnage loading-overlay--error name

    * Minor change in CSS

    * Move loading-overlay styles …
Rabter1 pushed a commit to Rabter1/dawn-icletta that referenced this pull request Jul 31, 2024
commit 625327e6316d861d03169ebcbbb8306e069ad107
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 22:05:13 2024 +0200

    Replace color variables with hardcoded values

commit ef897dc5fd6ecddc80e8f39b252e29250bcbe167
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 17:22:29 2024 +0200

    Fix main-search.liquid

commit 948d4bc99eb3d3f3b0b15db6d99a2743575c8721
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 17:22:09 2024 +0200

    Reapply "Squashed commit of the following:"

    This reverts commit 59c65606a3c6c7e3deb6f39665970ab268bde676.

commit 59c65606a3c6c7e3deb6f39665970ab268bde676
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 17:12:54 2024 +0200

    Revert "Squashed commit of the following:"

    This reverts commit 813a53173e07bc8e2b01802db4e98ae354e0201f.

commit 813a53173e07bc8e2b01802db4e98ae354e0201f
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 17:09:07 2024 +0200

    Squashed commit of the following:

    commit 28b21ab2f50b949d34229db14a990adbcdc04f27
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Fri Jul 26 17:09:58 2024 +0200

        Revert a small tweak that wasn't necessary and a reference to the product (#3573)

    commit a723f144d4627e6d113d1f688d72707f78782cb2
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Thu Jul 25 18:10:16 2024 +0200

        Show default price for placeholder content (#3572)

        * Make sure a default price is shown when we're showing placeholder content

        * address review comments

        * update one more spot to use the new variable

    commit 3fac8400efb50c97afeb230e2076632884f7832b
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Wed Jul 24 11:21:38 2024 +0200

        Update 1 translation file (#3569)

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 7a0f6e95fe2c3e204fe2ae2d29f01790071f0ce7
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Thu Jul 18 11:00:31 2024 -0400

        Escape product variant option names, as they can include quote characters and this renders undesirably. (#3567)

    commit 544c61eb0bef54d0a7ccab4d79cf09fc81ef0212
    Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
    Date:   Mon Jul 15 09:45:20 2024 -0400

        Fixed issues when header is hidden (#3545)

        * Fixed issues when header is hidden

        * Fixed predictive search on search page

        * Made it so that the drawer still shows up

    commit 80717145c48825433df26a63ed61ed25ebc66889
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Tue Jul 9 10:52:09 2024 +0200

        Update 3 translation files (#3557)

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 51205de2d7ca9b6f692355ab352c8a1942d81ff6
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Fri Jul 5 20:08:49 2024 +0200

        Update release notes and version number (#3554)

    commit 099305756d8c75f5c8fa54d54bdbeb0de6d1b2a1
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Fri Jul 5 11:40:07 2024 -0400

        v15 fixes (#3547)

        * [Product] Zoom on hover fix on variant change (#3511)

        * Zoom on hover fix on variant change

        * add conditional

        * Add early return in updateQuantityRules function if no quantity selector is present (#3515)

        * Fix bug where request url contains duplicated params when switching before the prior response is returned (#3521)

        * Fixes bug where image flashes when switching to variant with the same featured image; fixes bug where variant without featured image would fallback to the product image (#3516)

        Fix issue with thumbnail not updating

        * Fixed bug when reading selected option values. Removed unused script tag containing variant json. (#3520)

        * escape titles that weren't (#3514)

        * Support multiple product templates for the same combined listing (#3526)

        * Updated quick order list to rely on the variant title field (#3528)

        * Release15fix (#3531)

        * Revert "Update from Shopify for theme dawn/release/15.0.0"

        This reverts commit 5b20d897767f48370d6fba9ecefa5aeb97a6902b.

        * Revert "Update from Shopify for theme dawn/release/15.0.0"

        This reverts commit f0b822dbeaa934ecbb6f02704194b5dfef381f3f.

        * Revert "Update from Shopify for theme dawn/release/15.0.0"

        This reverts commit 64e1d8ef792fb4a2f95ae258b7250813d23b7bca.

        * Revert "Update from Shopify for theme dawn/release/15.0.0"

        This reverts commit a8a7529234296fe6313ea2ed5b1dcf187fef4408.

        ---------

        Co-authored-by: Ludo <ludo.segura@shopify.com>
        Co-authored-by: Arthur <48017311+Roi-Arthur@users.noreply.github.com>
        Co-authored-by: Lars Hoffbeck <lars.hoffbeck@shopify.com>
        Co-authored-by: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>

    commit 77459d42316b78a827cae9ba9fee8b8e8e928c7b
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Wed Jul 3 16:09:15 2024 +0200

        switch to textContent (#3544)

    commit 64952383e78eae6f73ccb2abcd3a7614f2f5b5a2
    Author: Mateusz Krzeszowiak <mateusz.krzeszowiak@shopify.com>
    Date:   Fri Jun 7 16:11:13 2024 +0200

        Limit the number of stylesheets on the page (#3509)

        * Limit the number of stylesheets on the page

        * Apply suggestions from code review

        Co-authored-by: Ludo <ludo.segura@shopify.com>

        * Improve the logic and wording a bit

        ---------

        Co-authored-by: Ludo <ludo.segura@shopify.com>

    commit 4b7a19bf026e6b7da2b8b836770c25e9914fb40d
    Author: Kjell Reigstad <kjell@kjellr.com>
    Date:   Fri Jun 7 08:31:49 2024 -0400

        Standardize heading font size options, add larger size (#3498)

        * Add gigantic heading size.

        * Use global translations in multirow.

        * Standardize heading font size offerings.

        * Change "Gigantic" to "Giant"

        * Set line height for new font size.

        * Update 10 translation files

        * Decrease Giant font size, update line height too.

        * Define line height for hxl.

        * Fix incorrect reference.

        * Set large line height to 1.1 all the time.

        * Adjust `vw` value in clamp so that the Giant font size is always larger than the Extra Large.

        * Change string to "Extra Extra Large"

        * Change text case.

        * Update 13 translation files

        * Update 4 translation files

        * Update 2 translation files

        * Update 1 translation file

        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 7a917b850b32a96bf47de9829a431998e0e13143
    Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
    Date:   Thu Jun 6 11:57:37 2024 -0400

        Changed show policy default to true (#3470)

    commit 0e20f98ac210b9cc9c681acf64adeab391b27c16
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 11:22:59 2024 -0400

        Dedupe quick add modal option value ids (#3504)

        * Deduplicate the option value IDs after option value selection changes in quick add modal

    commit 1c092851646bd0d1c1dfa853a4c5e81095bcddd2
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 11:16:08 2024 -0400

        Migrate featured product template to use structured data filter (#3507)

    commit ff1789e88029509fa59032a37c3b2608ca129efa
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 11:15:49 2024 -0400

        Update request url and handlers to support featured products (#3497)

    commit e4dddd056c0f07607928f7cce0d6d89b5bb74247
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 08:11:46 2024 -0400

        Update variantselects to publish an option value selection change event instead of a variant change start event, defer variant info until section rendering API request comes back (#3495)

        Only update media when the selection has an associated variant

    commit f85cd247a0f55a1ddf0da78a363a3fb5c4c4df5e
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu Jun 6 08:09:20 2024 -0400

        Set thumbnail when variant selection changes (#3505)

    commit 8616c24452deb7c16168343777bb392d6eae081e
    Author: Joey <joeyg.tedeschi@gmail.com>
    Date:   Wed Jun 5 15:55:12 2024 -0400

        Create CSS variables to support the base-focus focus-visible properties, to be injected into components not naturally on the DOM (#3503)

    commit 6e3f3c6adf5018b1e59759fc8c1e6c5469df0d48
    Author: Michael Bottens <mtbottens@gmail.com>
    Date:   Wed Jun 5 11:47:46 2024 -0400

        adds theme toggle for avatar widget to allow opt-out without code change (#3496)

        * adds theme toggle for avatar widget to allow opt-out without code change

        * resolve spacing differences when account-icon is present in the DOM

        * Update 15 translation files

        * Update 5 translation files

        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 8cadefd7b5ee91ca0e5afa62263dce0f5f0fcd8e
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Tue Jun 4 10:32:08 2024 -0400

        Quick add modal fixes for Desktop (#3488)

        * Centre 'view cart' label in quick add modal.

        * Remove extra spacing at the bottom of quick order modal.

        * Fix the extra underlined space between the 'view full details' text and the arrow.

        * Make the product title a link to the product page.

        * Tweak breakpoints for consistently when the viewport is exactly 989 or 990 px wide

    commit faa9caf193a5f20474ac800621637f581cf1b5c8
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Tue Jun 4 10:16:11 2024 -0400

        🐛 Combined listings bugfixes (#3492)

        * (#3492) Fix volume pricing message jumpiness when switching between combined listings; update page title when switching between combined listings; fix unselected option value bug in Safari

        * Update ID deduplication for quick add modal

    commit 83527586708e7fa0bdd713d86761f9390abd9569
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Mon Jun 3 13:03:53 2024 -0400

        Add an out of stock note for quick add bulk, like the one for quick add standard. (#3487)

    commit abbf0ddec98a1141975691b2d9c3b4cb0d774970
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu May 30 11:49:01 2024 -0400

        Updates Dawn to use the new structured_data filter (#3380)

        * Updates Dawn to use the new filter

        * Add support for article structured data

    commit 99d918855166e67753b726a9e4854ae49cc01dcd
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Thu May 30 09:07:25 2024 -0400

        Dedupe IDs when replacing content (#3494)

        * Dedupe IDs when replacing content

        * Dedupe form attributes

    commit 651d170ec6b8d086816c4d497f4bc20ff705913f
    Author: Donn Pasiliao <dpasiliao@gmail.com>
    Date:   Wed May 29 16:18:36 2024 -0400

        Use translation keys for default values in liquid files (#3484)

        * Use translation keys for default values in liquid files

        * Update 10 translation files

        * Update 10 translation files

        * Update 10 translation files

        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit bcd18508cf3d4e46c34e1301afe2e381658da20e
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Tue May 28 16:50:55 2024 -0400

        [Quick Order List] Ensure variant id is converted to an integer (#3491)

    commit ecdc76b348b1a847a4edf4c25e4150d4a908eb82
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Tue May 28 14:19:51 2024 -0400

        (#3289) This PR adds a product wrapper class by repurposing the existing product-info class and migrating product-update specific logic out of the VariantSelects class. A product wrapper enables children to more trivially perform global updates by providing a heirarchical "namespace"--i.e. child publishes event, parent captures and declaratively updates other children VS child updates siblings. By extracting the VariantSelects onChange logic to use this pattern, VariantSelects is able to be a single-purpose class, it is easier to understand why siblings are updated, and we were able to eliminate some really gross logic that handled variant change updates differently depending on the wrapping context. (#3289)

        Refetch entire page on product swap

        Remove unused unsubscriber function

        Stability improvements for quick-add modal

        PR feedback - fixed padding + minor tweaks

        Un-privatize class methods for consistency with the rest of Dawn

        Move css to be in section-main-product.css

    commit aa4353a5b25f238aebcbd38d864e744bd095559f
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Tue May 28 10:32:41 2024 -0400

        Quick Add Bulk Modal - Increase performance with Intersection Observer and clean up network requests (#3480)

    commit 091a371be1a94a2705086fd818d560585f52f6f3
    Author: Logan Gunn <44077842+lgunn4@users.noreply.github.com>
    Date:   Fri May 24 09:32:13 2024 -0400

        Added duties inclusive text to PDP and Cart page (#3475)

        * Added duties inclusive text to PDP and Cart page
        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 89472efdd57f6732e2898a16f512f74d2f23fcee
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Thu May 23 11:17:46 2024 +0200

        [Product] fix product modal not showing variant image (#3483)

        * fix product modal not showing variant image

        * reuse existing const var as per feedback

    commit a2f5a98d22b581d10207c531a87ab57d12b07919
    Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
    Date:   Wed May 22 16:06:33 2024 -0400

        Combined listings and 2k variants (#3378)

        * (#3378) Add support for combined listings and 2k variants

    commit 080ff5b3c01d8b167977fcf5aab1938d5f51d78e
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Fri May 17 16:54:54 2024 +0200

        Update 1 translation file (#3472)

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit a4e898d7b4216cbb21323324e7dae1b9bb7e703a
    Author: Logan Gunn <44077842+lgunn4@users.noreply.github.com>
    Date:   Wed May 15 14:27:19 2024 -0400

        renamed regional locales to default (#3473)

    commit 636b6b756b06cb9760673ebe60c73a34dd514614
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Wed May 15 11:50:47 2024 -0400

        Add qty rules client side validation to cart (#3471)

    commit f5e55665d6943350badc8acf493be8939a5ef745
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Mon May 13 16:18:01 2024 -0400

        [Quick Add Bulk] Don't block quantity input during cart API call (#3461)

    commit db146ef798eb97467b193508b0167abed041cca5
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Fri May 10 09:53:26 2024 -0400

        Update 1 translation file (#3468)

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit c67c83387ba7b654e8f4cca683727d14c06b5c5c
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Thu May 9 16:36:12 2024 +0200

        prevent vertical overflow on slideshow (#3455)

    commit 27d2d84b05b28385db0374aa1b07ec2cedd0be2a
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Thu May 9 16:30:02 2024 +0200

        Version 14 bump and release notes (#3466)

    commit e5e08d71ba92f4788fbcacff020fab1f8c080c44
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Thu May 9 08:59:29 2024 -0400

        Update settings.json to add missing validation (#3464)

    commit 85b75b0aea3ce2ea81bf4e81d2e001528772de73
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Mon May 6 16:07:19 2024 -0400

        [Fix] QOL Cart race conditions (#3395)

    commit 55d2d5cfc372ee25ce3cab850bd0f43610fcf712
    Author: Ludo <ludo.segura@shopify.com>
    Date:   Mon May 6 17:09:38 2024 +0200

        Fix variant media not changing in the quick add modal (#3451)

        * Fix variant media not changing in the quick add modal

        * update approach based on review's feedback

    commit d627f2160527792efffadc83c749080507772767
    Author: Dan Menard <dan-menard@users.noreply.github.com>
    Date:   Fri May 3 09:16:09 2024 -0400

        Override the ::after element for variant images in the quick add modal and quick order list to remove shadows. (#3449)

    commit ba521944671204efcee199c3b53b9ce7b8b3dac5
    Author: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
    Date:   Wed May 1 14:13:21 2024 -0400

        Allow searching for country names with diacritics (#3443)

    commit eefc111956b28151a931e900898312be4127fb50
    Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Date:   Wed May 1 11:50:16 2024 -0300

        Update translations: merchant (#3438)

        * Update 1 translation file

        * Update 8 translation files

        * Update 1 translation file

        ---------

        Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    commit 3f4284a1284c7c2bf3708a2f9f3c5a3bd69d0597
    Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Date:   Wed Apr 24 15:29:50 2024 -0400

        Release/14.0.0 duplicate (#3436)

commit f73839893e0925d8bb9f0ba69cc536844144e46c
Author: Lars Emig <lars.emig@pickware.de>
Date:   Wed Jul 31 16:56:45 2024 +0200

    Squashed commit of the following:

    commit 8cc621b02d92f7d8cd23c00ae6ff62c533256e14
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:14:12 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit 07ac0af70f275b2c374e606caf9735fa3f68a127
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:13:46 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit 1ad54db4310fccdd7cdb8575c56e613b541c9ab5
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:09:16 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit 1f927a880b38164b432010f107956f7b16a771d3
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:07:43 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit c79c8b70530d43d7b48cd4ef7d382cbfa51f4219
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Thu Jul 11 15:06:31 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit 45134432942066cf63aae4cf20976a58a3335dad
    Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
    Date:   Tue Jun 25 00:56:37 2024 +0000

        Update from Shopify for theme dawn-icletta/icletta

        Committed from shop: ICLETTA Liegerad Zubehör

    commit ab4e573c5741b9db45df71b658e06e223da92679
    Author: Lars Emig <lars.emig@pickware.de>
    Date:   Thu May 30 10:39:41 2024 +0200

        Fix broken translation missing detection

commit f15667434aead26f1aa6231873befdb384b36015
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Wed Jul 31 14:02:09 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit d834fdf7c7eba4748b861362670deba92337285f
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 15 11:11:35 2024 +0200

    Remove old metafield filters

commit 7004c10bde294a13512339600557a15ac6c5a1fa
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 15 10:48:22 2024 +0200

    Use original facets

commit 4db772b1c960a643220536f42840cedb2f2c119e
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 18:36:01 2024 +0200

    Fix

commit d00c799ee1e18ff74d8a340726b28556ef70fb74
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 18:33:45 2024 +0200

    Fix radio button background color

commit 68df26bfabc666824928ee19e4e2a3ec598ad698
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 18:23:48 2024 +0200

    Revert "Update from Shopify for theme dawn-icletta/icletta-dev"

    This reverts commit c8cfe5387fc9244aec079e4762cd8a11504d4d56.

commit c8cfe5387fc9244aec079e4762cd8a11504d4d56
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 16:23:18 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit beb037ab64181937d00e1077e722faa9eae13517
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 16:15:14 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit b93644a019e29a4e3fdb9e820d4096f4f7952a6a
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 16:13:49 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit ccb4d6de5b8545c90746a99d59fa9dac5fc956a8
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 18:12:13 2024 +0200

    Add missing translation

commit 35cb17aee29db9e90c23f3bf04ec4caee94935c2
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 16:06:56 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit 62a9890906602887a410065b4df67b4d53ab9ca8
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 15:57:52 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit 6e0a4b9722a9406ef9f215c07bef68a2be7f13f2
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 15:47:16 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit 549682ff11a21494f26509a35219d79877b04ba0
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Sat Jun 8 15:41:41 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit f92db8c933bb1307ded4ea326fa0f6c7777707b2
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 17:31:25 2024 +0200

    Fix json

commit 810e6bd315d79591ef54d94789ef99dc65ddacc4
Author: Lars Emig <lars.emig@pickware.de>
Date:   Sat Jun 8 17:31:08 2024 +0200

    Add default color schemes

commit 3063ad100981c26e3da87083742070a931418fc2
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:38:22 2024 +0200

    Udate

commit ec3a17c8465c0f938682d93eccb6e80a33c20106
Merge: f4604c52 87da4ff1
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:32:48 2024 +0200

    Merge commit '87da4ff11c74518a8b02b8784d7d37a3a3abf661' into icletta-dev

commit f4604c52df93d001e151e25183cdebfaa9afaf47
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:17:38 2024 +0200

    Revert "Remove all settings"

    This reverts commit 676f511f4e64e36d1e7bbc417313094f8975705e.

commit e607290dd440b201159b79269a103b744b916f3a
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:17:35 2024 +0200

    Revert "Update from Shopify for theme dawn-icletta/icletta-dev"

    This reverts commit a2662a40fc377615c670acfa3462e0018db63533.

commit a2662a40fc377615c670acfa3462e0018db63533
Author: shopify[bot] <79544226+shopify[bot]@users.noreply.github.com>
Date:   Thu May 30 08:10:43 2024 +0000

    Update from Shopify for theme dawn-icletta/icletta-dev

    Committed from shop: ICLETTA Liegerad Zubehör

commit 676f511f4e64e36d1e7bbc417313094f8975705e
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 10:08:46 2024 +0200

    Remove all settings

commit dea28231299b23f651934123f0d2370032d8fc4c
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 09:57:24 2024 +0200

    Update settings_schema

commit fdd2eedb9bbecda375ac1b2dbb6c2b81e62e0a20
Merge: 51e5d359 1247c8b4
Author: Lars Emig <lars.emig@pickware.de>
Date:   Thu May 30 09:08:08 2024 +0200

    Merge commit '1247c8b4f97602a7d11f583ab354b1fe1a260ed0' into icletta-dev

commit 87da4ff11c74518a8b02b8784d7d37a3a3abf661
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Mon Apr 22 13:12:12 2024 -0400

    Modal colour scheme fix (#3432)

commit fb081e00492780089ce39747d284af5b55808633
Author: Dan Menard <dan-menard@users.noreply.github.com>
Date:   Fri Apr 19 15:30:40 2024 -0400

    Restore standard quick add to complementary products (#3430)

commit 9bd88c3a42c41d3c9c4ea8f51ab1033f52ae662d
Author: Ludo <ludo.segura@shopify.com>
Date:   Fri Apr 19 12:38:58 2024 -0300

    [Prod page] Add check to prevent errors if no feat. image exists (#3429)

    * Add check to prevent errors if no feat. image exists

    * remove redundancy

commit 6a40bba529c0a49262408fcdeb68cc190c2193f2
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu Apr 18 15:00:27 2024 -0400

    Add optional chaining to prevent JS error (#3428)

    Added optional chaining to setActiveMedia call

commit 591d2915669ce27f0001ecc8f8814273a1df4e50
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Thu Apr 18 10:04:26 2024 -0400

    [Fix] quick add bulk disabled state (#3423)

commit b2b5883ea644b2746c951364849df849646806a7
Author: Ludo <ludo.segura@shopify.com>
Date:   Wed Apr 17 05:34:39 2024 -0300

    run linter in updates files for the latest release (#3422)

commit c51b4be43917bef193a5ab75a9b0ac6ed2132f07
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Mon Apr 15 18:06:09 2024 -0400

    Fix selector for Quick Add Bulk (#3421)

commit ce39a3c05d6ef90b2451c67737ee0f058a318602
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Thu Apr 11 11:15:05 2024 -0400

    Update 1 translation file (#3405)

commit 0d8c306f0ff4b84385100faec64bcc4118b64ec3
Author: Michael Bottens <mtbottens@gmail.com>
Date:   Thu Apr 11 09:36:12 2024 -0400

    Adds eligibility check to prevent orphaned DOM from rendering (#3412)

commit 9fd29b2254ce0f1b33867ebbd3a070c313d44f91
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Wed Apr 10 09:45:45 2024 -0400

    Fix padding for popover product card spacing mobile and cart popover media query (#3410)

commit b8f8b9c4b3f4f220eb9805be05b5bd44d6d2b99d
Author: Kjell Reigstad <kjell@kjellr.com>
Date:   Tue Apr 9 15:59:00 2024 -0400

    Allow proper vertical axis alignment of text in the Image Banner (#3402)

    * Remove left/right padding for transparent banner_box.

    * Fix padding on mobile as well.

commit 2061f4f636a46279e76b5db84899814cf4dc93b9
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Apr 9 15:55:04 2024 -0400

    Fix indent of line (#3409)

commit 7eb51b755f8bbb2ef0e1d1d93db746ce6b9b1e9d
Author: Dan Menard <dan-menard@users.noreply.github.com>
Date:   Tue Apr 9 15:48:19 2024 -0400

    Add min/max values for single-variant products with quantity rules in Quick Add (#3408)

commit 089b8d04e38f3aef05e45988e4064d653f60f6b6
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Apr 9 07:53:42 2024 -0400

    Popover Quick Add Bulk enhancements (#3403)

commit 98211ba98df2286ac07eeb61b30b059db806d964
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Fri Apr 5 16:03:33 2024 -0500

    Update translations: #3390 (#3397)

    * Update 13 translation files

    * Update 2 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Sofia Matulis <sofiamatulis@users.noreply.github.com>

commit 784ccd2055f8e61ed482594010ee61a6ace06265
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Fri Apr 5 16:18:57 2024 -0400

    Fix width of popover in product card (#3398)

commit 34ec5b9cb006dab8e08b86fc27b13c3cedf8d520
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Fri Apr 5 10:50:56 2024 -0400

    Add Volume Pricing and Qty Rules Popover to Quick Add Bulk Input (#3393)

commit 5ad5d4436e0691306e9ca882e46ca9f15d71b5e4
Author: Quinton Chester <quinton.chester@shopify.com>
Date:   Thu Apr 4 11:13:07 2024 -0500

    Adds Shop Login Button liquid drop provider on login template (#3390)

    * Adds Shop Login Button liquid drop provider on login template

    * Update 20 translation files

    * Update 9 translation files

    * Update 4 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 1b34f48a81f9e9618b8c63c438020eaa17c3f858
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Wed Apr 3 10:21:22 2024 -0400

    Add disabled state to Quick Add Bulk (#3391)

commit 8c82f064b76ccdd514bf218aec8fa21fe7b4fc73
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Wed Apr 3 10:16:20 2024 -0400

    Fixed minor bug with multicolumn padding (#3375)

    * Fixed minor bug with multicolumn padding

    * nicer code organization

commit bb1e198c6fe6e6c0b81e6ef13518f4055fe07846
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Wed Apr 3 09:24:41 2024 -0400

    Changed max products per page to 36 (#3384)

commit 8b1099bba78ffe295358881a4b701a495c700f8c
Author: Michael Bottens <mtbottens@gmail.com>
Date:   Tue Apr 2 16:53:29 2024 -0400

    Add customer avatar (#3376)

commit 3c99075b1a88acf937e0842b0d96849b634f67ec
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Apr 2 13:00:31 2024 -0400

    [BUG] Fix pagination for Quick Add bulk on section rendering api (#3382)

commit e48852177a1dcbf0c0cf476ef9125592d67cfe21
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Thu Mar 28 16:25:51 2024 -0400

    Revert "Support Combined Listings and 2k Variants (#3246)" (#3377)

    * Revert "Support Combined Listings and 2k Variants (#3246)"

    This reverts commit a2c6f54c28bb705f64305bb2227fcf07ff64e027.

    * Revert stylelint changes

commit 2bf1bf78913d08f5ce44bc35569ed85400fad5b6
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Thu Mar 28 16:18:31 2024 -0400

    Quick add bulk bug fixes (#3374)

commit 889e2a08a6bdb452381a07cd9bcd5088e1018be6
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Mar 26 15:48:21 2024 -0400

    Quick Add bulk (#3217)

commit ee4cacb7ea3383d04baaa68ea304a985bc9848fc
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Mon Mar 25 16:20:45 2024 -0400

    Fix  qty rules when there is no max set (#3356)

commit 6b8535826a6a311fea4260827fb9ae256411f1ce
Author: Donn Pasiliao <dpasiliao@gmail.com>
Date:   Mon Mar 25 10:54:12 2024 -0400

    Increase max columns from 5 to 6 (#3367)

commit 35e21a76d15d9d50241e6b8b4ea872399a9abb12
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Thu Mar 21 13:02:02 2024 -0700

    [Quick Order List] Remove the keyboard interaction feature on mobiles (#3358)

    * Cut the keyboard navigation feature for mobile

    * Rename variable

    Co-authored-by: Sofia Matulis  <sofiamatulis@users.noreply.github.com>

    * Change variant name

    ---------

    Co-authored-by: Sofia Matulis <sofiamatulis@users.noreply.github.com>

commit a2c6f54c28bb705f64305bb2227fcf07ff64e027
Author: Lars Hoffbeck <lars.hoffbeck@shopify.com>
Date:   Tue Mar 19 10:23:22 2024 -0400

    Support Combined Listings and 2k Variants (#3246)

    * Updated option value picker to use product_option_value.variant, update availability handling to rely on async variant pagination

    Removed old event handler, update buy-buttons to handle selected_variant undefined case

    Fix for cases where selected_or_first_available_variant is null

    Only pass variant if present

    Fix JS error where param wasn't being passed to callback

    Added support for duplicated option names in option value picker and swatches

    Fix misnamed function in quick order list

    Add parent option values to quick order list

    Fix JS error if active media is not found

    Fix mismatched unsubscriber function name

    * fix bad merge

commit 74595afbfd1845d1ecdf01592a65cb0a317e97a7
Author: Lars Hoffbeck <larshoffbeck@gmail.com>
Date:   Mon Mar 18 16:58:21 2024 -0400

    Simplify `product-media-gallery` snippet and consumers (#3233)

    * Simplify featured product to use the same media gallery snippet as main-product, simplify product-media-gallery, simplify main-product

    Updated CSS to fix overflow issue on mobile browsers

    * Set images with the network response instead of by rendering hidden images

    * Removed unnecessary assignment

    * Update media refresh handling to minimize rerenders

    * Tweaks to fix JS error and modal content not updating when switching away from a variant with a featured image

    * Removed dead code

    * Update fallback selector

commit eb4bc418f0469618972e7e912e538dbc174d73c7
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Mar 18 09:13:12 2024 -0400

    Update 1 translation file (#3346)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit b10f3120e032f7f6ad8129e1c1790b513945572f
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Fri Mar 15 16:40:05 2024 -0400

    Changed price filter to use text input (#3280)

    * Changed price filter to use text input

    * Removed stepping and enabled all meta key inputs

    * Turned price filter into a snippet to remove duplicate code

    * Removed need for nbsp, added escape and apostrophe, slightly changed debounce delay

    * Retain focus in text inputs

commit 609435aec4b9bc5d7dc1a601f9a0ff4101e66039
Author: Lars Hoffbeck <larshoffbeck@gmail.com>
Date:   Fri Mar 15 16:16:13 2024 -0400

    Removed noscript and IE-specific code (#3245)

    Removed no-JS requirement from the contribution guidelines

    Remove CSS and no-js-only HTML

    add JS class to <html>

    remove noscript css selectors

    Update README

commit f907e3d7858abc9482aa36a76531b9f7dc9e0b97
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Fri Mar 15 14:29:58 2024 -0400

    Change size of swatch on mobile (#3348)

commit 5a332f55f55d111f2ff22bac907a8005bbacb74d
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Thu Mar 14 11:39:01 2024 -0400

    Add image filters and do UX tweaks for swatches (#3334)

    * Add image filters and do UX tweaks for swatches

    * Andy PR changes

    * Change how default presentation is set

commit d1a69392965a8839460c5a70393cdfd9b386303b
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Tue Mar 12 12:47:40 2024 -0700

    [Quick Order List] Clean and reset qty errors (#3321)

    * Clean errors

    * Move cleanErrors() to onChange()

    * Move cleanErrors to make sure it runs when you click trach icon

commit 93935239f634eaa99636f161df15fc8d42ba2c16
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Tue Mar 12 14:11:17 2024 -0400

    Update 1 translation file (#3316)

commit 6e45a2b59e5c5bdd5367c32a0a46384f3546b9f8
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Tue Mar 12 10:41:42 2024 -0700

    [Quick Order List] Fix an issue for one-variant product (#3332)

    * Fix QOL for one variant product

    * Move total bar position logic inside an if condition

commit afa073abd018f78e1b9883dd1fba1b5364b1e28a
Author: Kjell Reigstad <kjell@kjellr.com>
Date:   Mon Mar 4 14:59:25 2024 -0500

    Update twitter icon to the new X logo (#3309)

    * Update twitter icon to x logo.

    * Refine X logo

    * Update label and info text.

    * Remove strokes from icon, use currentColor

    * Update text strings to reflect Twitter's new name.

    * Update en.default.json

    * Update 20 translation files

    * Update 14 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 5 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 24a8cd020443b9e77d19aaac2b3aa36b86c4b20f
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Thu Feb 29 17:17:41 2024 -0400

    Update 1 translation file (#3311)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit d585fa542758657cb62f89ff9e5ccb6265c2b57e
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Thu Feb 29 13:59:59 2024 -0400

    Update 1 translation file (#3310)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 1d047b92d76cb6fe81f6b4c957588070abcc1310
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Thu Feb 29 09:55:42 2024 -0800

    Quick order keyboard interactions (#2962)

    * Add basic functionality.
    Add placeholder.
    Make a row rerender instead of the whole section.

    * Style placeholder

    * Fix removeAll button

    * Remove comments and unnecessary code.

    * Remove debouncing.

    * Remove placeholder for input

    * Add selection on focus for inputs

    * Move eventListener to a parent element

    * Put debouncing back

    * Refactor switchVariants method

    * Refactor allInputs array

    * Remove unnecessary input placeholder

    * Fix typo

    * Refactor variants names

    * Remove unused prop

    * Put back prop 'name' for updateQuantity

    * Refactoring

    * [Quick Order List] Prevent selected inputs being covered by total bar or header (#3278)

    * Prevent input elements going under total bar or sticky header during keyboard navigation.

    * Fix a typo

    * Refactoring

    * Increase z-index for volume pricing popup

    * Fix conflicts after merge

commit 88faef38515390ab02f58bd27795df7fbd4621c9
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Wed Feb 28 15:15:50 2024 -0500

    Switch the filter swatches to use the swatch api (#3303)

    * Switch swatch filters to use swatch API

    * Rename to facets__label

commit bfae862567c415a112104d41e64d57bdca3252f8
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Tue Feb 27 11:08:48 2024 -0500

    Bring back swatch-input snippet (#3299)

    Additional changes

    Update styles

    PR fix

    Bring back disabled, just in case

commit 0f1bd0a04199a3f6ac59e1375cfd5ad6025801c4
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Tue Feb 27 11:11:19 2024 -0400

    Update 1 translation file (#3302)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 76152c54e5d20dae7ccf5962f543a7fc9bd7c845
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Feb 26 15:18:44 2024 -0400

    Update 1 translation file (#3298)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 53a287261a26e5d0013e7df08d6346f4c963f04b
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Feb 26 09:20:51 2024 -0500

    Update 1 translation file (#3294)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit c5ba94b19e6ffe804ad0c2ebe1d03257df0f1ba7
Author: Ludo <ludo.segura@shopify.com>
Date:   Fri Feb 23 13:39:21 2024 -0400

    Pull in latest release 13.0.1 (#3292)

    * Fix translation path (#3198)

    * Change product variant swatches' border color (#3204)

    * change color reference

    * remove character

    * increase to meet contrast ratio of 3

    * Update swatch setting info text (#3205)

    * Update info text

    * remove duplication

    * add space

    * clean up language and association

    * add to second place

    * Update 9 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * [Quick order list] Change 'plural' string to 'singular' when removing '1 item' on 'Remove all' confirmation (#3203)

    * Change the message when removing only one item from the QOL

    * Update 20 translation files

    * Update 6 translation files

    * Update 4 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Fix drawer stylings (#3248)

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Pull update from release branch and update version number and release notes (#3229)

    * Fix translation path (#3198)

    * Change product variant swatches' border color (#3204)

    * change color reference

    * remove character

    * increase to meet contrast ratio of 3

    * Update swatch setting info text (#3205)

    * Update info text

    * remove duplication

    * add space

    * clean up language and association

    * add to second place

    * Update 9 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * [Quick order list] Change 'plural' string to 'singular' when removing '1 item' on 'Remove all' confirmation (#3203)

    * Change the message when removing only one item from the QOL

    * Update 20 translation files

    * Update 6 translation files

    * Update 4 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * update version number and release notes

    ---------

    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>

    * Update 1 translation file (#3232)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Fix cart drawer header background and cart note summary spacing

    * more cart drawer touch ups

    * remove some of the unwanted changes

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>

    * fix missing alt tags for collection images (#3262)

    * Update titles (#3265)

    * Condense country selector width when there are no currencies (#3269)

    * Recreate existing PR based on the right branch (#3274)

    * Fix product review alignment when product doesn't have medias (#3264)

    * Fix product review alignment when product doesn't have medias

    * Add the escape to match with branch target

    * Touch up scroll into view PDP (#3276)

    * Fix mobile behaviour for scroll into view

    * remove conditions

    * remove unused data attribute (#3277)

    * Remove sticky header on cart drawer to avoid overlap of content (#3279)

    * fix scrolling scenario on mobile (#3286)

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Pull update from release branch and update version number and release notes (#3229)

    * Fix translation path (#3198)

    * Change product variant swatches' border color (#3204)

    * change color reference

    * remove character

    * increase to meet contrast ratio of 3

    * Update swatch setting info text (#3205)

    * Update info text

    * remove duplication

    * add space

    * clean up language and association

    * add to second place

    * Update 9 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * [Quick order list] Change 'plural' string to 'singular' when removing '1 item' on 'Remove all' confirmation (#3203)

    * Change the message when removing only one item from the QOL

    * Update 20 translation files

    * Update 6 translation files

    * Update 4 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * update version number and release notes

    ---------

    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>

    * Update 1 translation file (#3232)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Update README.md (#3128)

    * Update README.md

    * fix url formatting

    ---------

    Co-authored-by: Ludo <ludo.segura@shopify.com>

    * Fix Theme Check offences (#3283)

    * Fix schema JSON formatting

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * Add loading=eager attribute to gift card page img

    * Use liquid tag to combine successive liquid statements

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * Remove snippet to avoid > 3 levels of nested snippets

    * Ignore AssetPreload theme check for font links

    ---------

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * update release notes

    ---------

    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
    Co-authored-by: Renan Souza <77407058+renanvsouza@users.noreply.github.com>
    Co-authored-by: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
    Co-authored-by: Benjamin Sehl <ben@sehl.ca>
    Co-authored-by: Kai <KaichenWang@users.noreply.github.com>
    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

commit a42f2349fe36127e7d89d449e469742d22e1f2e2
Author: Kai <KaichenWang@users.noreply.github.com>
Date:   Fri Feb 16 16:14:22 2024 +0000

    Fix Theme Check offences (#3283)

    * Fix schema JSON formatting

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * Add loading=eager attribute to gift card page img

    * Use liquid tag to combine successive liquid statements

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

    * Remove snippet to avoid > 3 levels of nested snippets

    * Ignore AssetPreload theme check for font links

    ---------

    Co-authored-by: Abhishek Jani <abhishekdarshanjani@gmail.com>

commit 9309102f80eb9f08069e35daf376aea9f6667b20
Author: Benjamin Sehl <ben@sehl.ca>
Date:   Wed Feb 7 14:21:03 2024 -0500

    Update README.md (#3128)

    * Update README.md

    * fix url formatting

    ---------

    Co-authored-by: Ludo <ludo.segura@shopify.com>

commit 7aa16a8da85849ff5b24ba80020d6540a55ef08c
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Feb 5 10:23:49 2024 -0400

    Update 1 translation file (#3232)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit c77ebf5e86756831e1bc85cc24881ea8ae9eca98
Author: Ludo <ludo.segura@shopify.com>
Date:   Wed Jan 31 14:15:25 2024 -0400

    Pull update from release branch and update version number and release notes (#3229)

    * Fix translation path (#3198)

    * Change product variant swatches' border color (#3204)

    * change color reference

    * remove character

    * increase to meet contrast ratio of 3

    * Update swatch setting info text (#3205)

    * Update info text

    * remove duplication

    * add space

    * clean up language and association

    * add to second place

    * Update 9 translation files

    * Update 4 translation files

    * Update 6 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * [Quick order list] Change 'plural' string to 'singular' when removing '1 item' on 'Remove all' confirmation (#3203)

    * Change the message when removing only one item from the QOL

    * Update 20 translation files

    * Update 6 translation files

    * Update 4 translation files

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

    * update version number and release notes

    ---------

    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>

commit 436e1045db73d1dec121dc4f1151984fab516c86
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed Jan 24 10:17:33 2024 -0400

    Update 1 translation file (#3202)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit b700fc970ac5a7499c967995b4c20c7c0716a8af
Author: Ludo <ludo.segura@shopify.com>
Date:   Mon Jan 15 15:17:54 2024 -0400

    Escape filter label consistently (#3192)

commit bfa56e0607a924eb5d1a10e5dd8a00ad399ce36e
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Mon Jan 15 12:13:23 2024 -0500

    [Variant Picker] Simplify swatch settings (#3189)

    * [Variant Picker] Simplify swatch settings

    * Update 7 translation files

    * Update 12 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 767f62f5b5641be1182c1400e2f21fd5a52c6464
Author: melissaperreault <melissa.perreault@shopify.com>
Date:   Fri Jan 12 11:57:15 2024 -0500

    change to 100% (#3190)

commit 27e62053d02bd5d815699986ebc38fb66cf1fb73
Author: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
Date:   Thu Jan 11 12:45:58 2024 -0500

    Prevent sticky header from hiding when country selector is open (#3188)

commit bfd5e92579c917058b0ea6463e375907f0ac130c
Author: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
Date:   Wed Jan 10 16:05:10 2024 -0500

    Focus search on country selector open and fix iOS bug (#3183)

    * Focus search on country selector open

    * Set stacking context

commit 97bca2e8d4ce725a5403fdae7d7d7da84fcd4499
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Wed Jan 10 15:05:00 2024 -0500

    [Variant Picker] Ensure that swatches wrap correctly (#3185)

commit e43316035f75f5f9b73f93884b5457151e60716a
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed Jan 10 15:52:55 2024 -0400

    Update translations: merchant (#3178)

    * Update 1 translation file

    * Update 1 translation file

    * Update 2 translation files

    * Update 1 translation file

    ---------

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 0de57d445a74c4e388065c2c781a43c8fca32352
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Wed Jan 10 14:29:11 2024 -0500

    Update swatch border (#3184)

commit 05e61a33d45358b09b85a089e0dd1b19109320c9
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Tue Jan 9 17:01:43 2024 -0500

    [Variant Picker] Add swatch display type (#3180)

    * [VariantPicker] Unify variant selects and radios under new component

    * [VariantPicker] Add swatch settings

    * [VariantPicker] Move styles to dedicated CSS file

    * [Variant Picker] Update settings copy

    * [VariantPicker] Add swatch component

    * [VariantPicker] Add a swatch to selected dropdown option

    * [Variant Picker] Update disabled state

    * [Variant Picker] Swatch snippet

    * [Variant Picker] Swatch input snippet

    * [Variant Picker] Tweak swatch border colors

commit e6a8f03e213fb5cb318428ffe556264f27962389
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Tue Jan 9 16:14:00 2024 -0500

    Adjusted Featured Collection placeholders to work with any number of desktop columns (#3182)

    * Adjusted featured collection placeholders to work with any number of desktop columns

commit 8ef242b994ddf8e2ba6e10e0521230e0b74bfee6
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Mon Jan 8 13:52:47 2024 -0500

    Changed slider to work on tablet for multicolumn (#3176)

    * Changed slider to work on tablet for multicolumn

    * Adjusted to prevent early cutoff on tablet

commit 57d21dfc1b08311f62299032f38a2e469d47df3e
Author: CP Clermont <cp.clermont@shopify.com>
Date:   Mon Jan 8 11:56:01 2024 -0500

    Bring back the lighthouse-ci-action to v1 (#3181)

    This will make sure new releases are automatically used.

    Better for forks as well.

commit 0e9938c2ec22a519b4feb0545da88892611827a9
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Fri Jan 5 16:08:27 2024 -0500

    [Variant Picker] Update settings copy (#3173)

commit 144ba4b4f7723a981884180a6785a73d9a145e46
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Fri Jan 5 16:35:15 2024 -0400

    Update 1 translation file (#3177)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 9e6f6ca40852fb8a00a4941ff46ddf19047880b8
Author: Kjell Reigstad <kjell@kjellr.com>
Date:   Fri Jan 5 14:43:20 2024 -0500

    Update inline quantity error styles. (#3150)

commit b1696f1b460dae8dc4f618e5af2fe36ef68bbd45
Author: Abdulrahman Hamideh <abdulrahman.hamideh@shopify.com>
Date:   Fri Jan 5 12:42:35 2024 -0500

    Improved country selectors (#3175)

    Original PR with review comments -> https://github.com/Shopify/dawn/pull/3135

commit 9376e598614b19878be99f09200745162d104f4d
Author: Alex Ilea <6627543+alisterdev@users.noreply.github.com>
Date:   Thu Dec 21 12:02:43 2023 -0500

    [Visual Display] Display accurate filter colors when high contrast mode is enabled (#3165)

commit 1ac327ac06142a335c4938c8cd02a823d2f91d64
Author: Louisa Goncharenko <93098869+lougoncharenko@users.noreply.github.com>
Date:   Wed Dec 20 13:20:00 2023 -0500

    Applied image shape and ratio to placeholder images (#2817)

    added classes and styles to get image shape and image ratio working

    added styling on portrait placeholders

    aligned placeholder when in potrait mode

    applying code review suggestions and removed image-ratio

commit 19f68280177e56b37744e8ea7cece7c869b41087
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed Dec 20 09:39:26 2023 -0500

    Update 2 translation files (#3160)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 41e4604a808746a012b16d9406acda20a73674e3
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Wed Dec 20 10:30:10 2023 -0400

    Update 1 translation file (#3161)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit cdba06653f0b65d05b18430bdd0d09eb5dd6315e
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Dec 18 09:57:50 2023 -0500

    Update 1 translation file (#3158)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 67b82a7091010caaf2354da4f25788d0e2c503fb
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Mon Dec 18 09:51:21 2023 -0500

    Update 1 translation file (#3157)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit 8c2518beaaa3fe07fc61f03ce94b8fac2411d252
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Fri Dec 15 16:19:22 2023 -0400

    Update 1 translation file (#3155)

    Co-authored-by: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>

commit fce1573a1ea36ca653582296d4ca70fa0def3a84
Author: Kjell Reigstad <kjell@kjellr.com>
Date:   Thu Dec 14 13:21:44 2023 -0500

    Assign font family to input fields (#2871)

    * Price per item, Popover and global style bugs (#2851)

    * Fix cart submission on Quick Order List (#2868)

    * Social icons: Visual fixes (#2855)

    * Adjust spacing.

    * Facebook + Tumblr icon size adjustments.

    * Update social icon SVGs.

    * Tidy up new icon sizes again.

    * Resize icons.

    * Make spacing slightly smaller.

    * Make icons larger so they're more similar to the old sizes.

    * Remove padding to compensate for extra viewbox space.

    * Try a smaller Twitter icon.

    * Update snapchat icon.

    * Resize social links in menu drawer to 44x44

    * replace translation string to have the translation visible (#2869)

    * B2B compare at price with price range (#2858)

    * Add sale badge and price-range for volume-pricing

    * Add compare_at price to PDP and Feat Prod.

    * Change opacity to 100% for price per item.

    * Update the logic

    * Hide price per item for unavailable variants.

    * Remove margin for dl.

    * Refactoring

    * Correct a mistake in liquid.

    * Change the JS logic back for updating price per item

    * Add compare at to prod card. Add style to compare at

    * Assign font family to input fields.

    * Update assets/base.css

    Co-authored-by: Kai <KaichenWang@users.noreply.github.com>

    * Use the theme's font style + weight in form elements.

    ---------

    Co-authored-by: Sofia Matulis <sofiamatulis@users.noreply.github.com>
    Co-authored-by: melissaperreault <melissa.perreault@shopify.com>
    Co-authored-by: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
    Co-authored-by: Kai <KaichenWang@users.noreply.github.com>

commit a204f20eb3c25b0c544a41492937b2749c209777
Author: Patrick Racicot <patrick.racicot@shopify.com>
Date:   Thu Dec 14 11:37:04 2023 -0500

    [Facets] support dynamic facet lists (#3123)

commit 2c847245ea3dfec6f248dcbb2dd76c4ceb65c437
Author: Tyler Alsbury <60230011+tyleralsbury@users.noreply.github.com>
Date:   Thu Nov 23 15:02:23 2023 -0500

    Fixed race condition for cart note updates (#3125)

commit b0ba46d4bb716f073e6ddbdc3560517c5c86c53e
Author: Louisa Goncharenko <93098869+lougoncharenko@users.noreply.github.com>
Date:   Thu Nov 9 10:44:17 2023 -0500

    updated code to match new color scheme naming (#2801)

    * updated code to match new color scheme naming

    * removing additional background-1 after rebase

commit ab71c57171bd0d06a037fd8a3c0b47f959385862
Author: translation-platform[bot] <34770790+translation-platform[bot]@users.noreply.github.com>
Date:   Thu Nov 2 14:12:02 2023 -0400

    Update 1 translation file (#3093)

commit 1247c8b4f97602a7d11f583ab354b1fe1a260ed0
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Oct 31 14:51:55 2023 -0400

    12.0.0 Version Bump and release notes (#3092)

commit f56a6869ba5bd449007e51f9d9c4f0a216c1c4c0
Author: Sofia Matulis <sofiamatulis@users.noreply.github.com>
Date:   Tue Oct 31 14:32:41 2023 -0400

    [VisualDisplay] bump the active outline width (#3083) (#3091)

commit a96d0f94b117d8e6bf6d1097c7283f0c45e857ea
Author: Ludo <ludo.segura@shopify.com>
Date:   Mon Oct 23 16:43:57 2023 -0400

    [Product] Add color scheme picker (#3015)

    * [Product] Add color scheme picker

    * support gradient

    * apply background color to be full width

    * address review comments: color scheme applied to quick add modal and lightbox modal

    * add color scheme to product availability drawer and move color settings up

    * fix color classes to work properly with gradients

    * Add support for gradient on modal

    * remove console log

commit c7e455f61078cc200a8486eb168b01575164330d
Author: Ludo <ludo.segura@shopify.com>
Date:   Mon Oct 23 14:15:59 2023 -0400

    [Cart] Add color picker on cart page and in general cart settings (#3021)

    * rebase final final

    * use the update for the loading spinner

    * add color picker for the cart drawer and cart popup

    * fix spacing issues on cart page

    * add gradient support

    * address review comments

    * adjust where the class is added. Fix gradient issue

    * isolation needed for shadow

    * add comment

    * Remove unnecessary isolate

    * use the isolate class instead

commit bc86ac38dcbc3363b2ba30c4d695d65f00ddc603
Author: Ludo <ludo.segura@shopify.com>
Date:   Fri Oct 20 14:22:58 2023 -0400

    [Collection template] Product grid color scheme picker (#3017)

    * [Collection template] Product grid color scheme picker]

    * move color setting up in the list

    * support gradient

commit 168ba32fae2a1c27b6404fd46da0f4235e082699
Author: Patrick Racicot <patrick.racicot@shopify.com>
Date:   Fri Oct 20 13:44:54 2023 -0400

    [Facets] update visual representation of facets operators (#3061)

commit fac0e41c4daf16b1a74fbfe38f0320cc1d4da59b
Author: Jason Addleman <jason.addleman@shopify.com>
Date:   Thu Oct 19 18:00:03 2023 -0400

    Add visual representation for filters (#3045)

commit 069c198c18dc8300e7caeb70d86f02b509aafc83
Author: Ludo <ludo.segura@shopify.com>
Date:   Thu Oct 19 08:35:59 2023 -0400

    [Sliders] Regression fix. Apply CSS only when necessary in theme editor (#3070)

    * [Sliders] Regretion fix. Apply CSS only when necessary in theme editor

    * change of approach

    * add comment to explain CSS

commit d50698b3d8ffd06dff31dbf6e6c9c96f8b979509
Author: Eugene Kasimov <105315663+eugenekasimov@users.noreply.github.com>
Date:   Wed Oct 11 08:55:17 2023 -0700

    [Refactoring] Replace loading spinner with snippet (#2996)

    * Change spinner for main-cart-items

    * Change spinner for cart-drawer

    * remove extra div and change classes

    * Replace spinner with snippet for pdp and fead prod

    * Remove unnecessary classes

    * Add comment for snippet

    * Change naming for files and css classes

    * Put back deleted elements

    * Rem…
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

9 participants